Usage: make will yield pdf for all SVG file in the directory. make png will rasterize them to png
          Created
          June 2, 2016 17:23 
        
      - 
      
- 
        Save arthurmensch/634884e52d7852586fd1171179e7fa6a to your computer and use it in GitHub Desktop. 
    SVG + latex to png/pdf converter
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | %!TEX root = modl_tsp.tex | |
| \def\EE{{\mathbb E}} | |
| \def\RR{{\mathbb R}} | |
| \def\PP{{\mathbb P}} | |
| \def\x{{\mathbf x}} | |
| \def\f{{\mathbf f}} | |
| \def\e{{\mathbf e}} | |
| \def\c{{\mathbf c}} | |
| \def\n{{\mathbf n}} | |
| \def\v{{\mathbf v}} | |
| \def\A{{\mathbf A}} | |
| \def\B{{\mathbf B}} | |
| \def\C{{\mathbf C}} | |
| \def\D{{\mathbf D}} | |
| \def\E{{\mathbf E}} | |
| \def\F{{\mathbf F}} | |
| \def\I{{\mathbf I}} | |
| \def\L{{\mathbf L}} | |
| \def\M{{\mathbf M}} | |
| \def\N{{\mathbf N}} | |
| \def\R{{\mathbf R}} | |
| \def\T{{\mathbf T}} | |
| \def\U{{\mathbf U}} | |
| \def\V{{\mathbf V}} | |
| \def\X{{\mathbf X}} | |
| \def\Y{{\mathbf Y}} | |
| \def\b{{\mathbf b}} | |
| \def\a{{\mathbf a}} | |
| \def\d{{\mathbf d}} | |
| \def\q{{\mathbf q}} | |
| \def\u{{\mathbf u}} | |
| \def\x{{\mathbf x}} | |
| \newcommand{\balpha}{\boldsymbol{\alpha}} | |
| \newcommand{\bbeta}{\boldsymbol{\beta}} | |
| \newcommand{\bGamma}{\boldsymbol{\Gamma}} | |
| \newcommand{\bgamma}{\boldsymbol{\gamma}} | |
| \newcommand{\bxi}{\boldsymbol{\xi}} | |
| \def\trace{{\mathrm{Tr}\;}} | |
| \def\sample{{\mathtt{sample}}} | |
| \def\exactsurr{\mathcal{S}_{\rho, L}(f, \theta)} | |
| \def\approxsurr{\mathcal{T}_{\rho, L}(f, \theta, \mu)} | |
| \newcommand{\argmin}{\operatornamewithlimits{\mathrm{argmin}}} | |
| \newcommand{\argmax}{\operatornamewithlimits{\mathrm{argmax}}} | |
| \newcommand{\transpose}{^\top} | |
| \newenvironment{sansfont}{\fontfamily{fvs}\selectfont}{\par} | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | SRC=$(wildcard *.svg) | |
| OBJS_PDF=$(SRC:.svg=_latex.pdf) | |
| OBJS_PNG=$(SRC:.svg=.png) | |
| OBJS_PDF_TEX=$(SRC:.svg=.pdf_tex) | |
| all: pdf | |
| pdf: $(OBJS_PDF) | |
| png: $(OBJS_PNG) | |
| %.pdf_tex %.pdf: %.svg | |
| inkscape -z -f $< --export-latex -A $*.pdf -C; \ | |
| # This won't be useful once the bug is fixed | |
| PAGES=$$(pdfinfo "$*.pdf" | grep Pages | cut -d" " -f11); \ | |
| for j in $$(egrep "includegraphics.*page=" "$*.pdf_tex"); do\ | |
| CHECKPAGE="$$(echo $$j | sed 's/^.*page=\([0-9]*\).*$$/\1/g')";\ | |
| if [ $$CHECKPAGE -gt $$PAGES ]; then\ | |
| sed -i 's/^.*includegraphics.*page='$$CHECKPAGE'.*$$//g' $<;\ | |
| fi;\ | |
| done | |
| %_latex.pdf: %.pdf %.pdf_tex wrapper.tex | |
| cp wrapper.tex wrapper_temp.tex; \ | |
| sed -i 's/FILENAME/'$*'.pdf_tex/g' wrapper_temp.tex; \ | |
| PAGEWIDTH=$$(pdfinfo "$*.pdf" | grep "Page size" | cut -d" " -f8); \ | |
| sed -i 's/PAGEWIDTH/'$$PAGEWIDTH'/g' wrapper_temp.tex; \ | |
| PAGEHEIGHT=$$(pdfinfo "$*.pdf" | grep 'Page size' | cut -d" " -f10); \ | |
| sed -i 's/PAGEHEIGHT/'$$PAGEHEIGHT'/g' wrapper_temp.tex; \ | |
| pdflatex wrapper_temp.tex; \ | |
| mv wrapper_temp.pdf $@; \ | |
| rm wrapper_temp.*; | |
| %.png: %_latex.pdf | |
| convert -density 600 $< $@ | |
| clean: | |
| echo 'clean';\ | |
| rm -f *.pdf *.pdf_tex *.aux *.log *.png wrapper_temp.*; | |
| .INTERMEDIATE: $(OBJS_PDF_TEX) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
| <svg | |
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| xmlns:cc="http://creativecommons.org/ns#" | |
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| xmlns:svg="http://www.w3.org/2000/svg" | |
| xmlns="http://www.w3.org/2000/svg" | |
| xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| width="185.79111mm" | |
| height="60.192822mm" | |
| viewBox="0 0 658.31495 213.28165" | |
| id="svg78458" | |
| version="1.1" | |
| inkscape:version="0.91 r13725" | |
| sodipodi:docname="model.svg"> | |
| <defs | |
| id="defs78460"> | |
| <marker | |
| inkscape:isstock="true" | |
| style="overflow:visible" | |
| id="marker5019-0" | |
| refX="0" | |
| refY="0" | |
| orient="auto" | |
| inkscape:stockid="Arrow1Lend" | |
| inkscape:collect="always"> | |
| <path | |
| transform="matrix(-0.8,0,0,-0.8,-10,0)" | |
| style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" | |
| d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" | |
| id="path5021-6" | |
| inkscape:connector-curvature="0" /> | |
| </marker> | |
| <marker | |
| inkscape:stockid="Arrow1Lend" | |
| orient="auto" | |
| refY="0" | |
| refX="0" | |
| id="marker20949" | |
| style="overflow:visible" | |
| inkscape:isstock="true"> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path20951" | |
| d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" | |
| style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" | |
| transform="matrix(-0.8,0,0,-0.8,-10,0)" /> | |
| </marker> | |
| <marker | |
| inkscape:stockid="Arrow1Lend" | |
| orient="auto" | |
| refY="0" | |
| refX="0" | |
| id="Arrow1Lend-4" | |
| style="overflow:visible" | |
| inkscape:isstock="true" | |
| inkscape:collect="always"> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path4506-3" | |
| d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" | |
| style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" | |
| transform="matrix(-0.8,0,0,-0.8,-10,0)" /> | |
| </marker> | |
| <marker | |
| inkscape:stockid="Arrow1Lend" | |
| orient="auto" | |
| refY="0" | |
| refX="0" | |
| id="marker6546" | |
| style="overflow:visible" | |
| inkscape:isstock="true" | |
| inkscape:collect="always"> | |
| <path | |
| id="path6548" | |
| d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" | |
| style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" | |
| transform="matrix(-0.8,0,0,-0.8,-10,0)" | |
| inkscape:connector-curvature="0" /> | |
| </marker> | |
| <marker | |
| inkscape:stockid="Arrow1Lend" | |
| orient="auto" | |
| refY="0" | |
| refX="0" | |
| id="marker78505" | |
| style="overflow:visible" | |
| inkscape:isstock="true"> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path78507" | |
| d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" | |
| style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" | |
| transform="matrix(-0.8,0,0,-0.8,-10,0)" /> | |
| </marker> | |
| <marker | |
| inkscape:stockid="Arrow1Lend" | |
| orient="auto" | |
| refY="0" | |
| refX="0" | |
| id="Arrow1Lend" | |
| style="overflow:visible" | |
| inkscape:isstock="true" | |
| inkscape:collect="always"> | |
| <path | |
| id="path4506" | |
| d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" | |
| style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" | |
| transform="matrix(-0.8,0,0,-0.8,-10,0)" | |
| inkscape:connector-curvature="0" /> | |
| </marker> | |
| <marker | |
| inkscape:isstock="true" | |
| style="overflow:visible" | |
| id="marker5019" | |
| refX="0" | |
| refY="0" | |
| orient="auto" | |
| inkscape:stockid="Arrow1Lend"> | |
| <path | |
| transform="matrix(-0.8,0,0,-0.8,-10,0)" | |
| style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" | |
| d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" | |
| id="path5021" | |
| inkscape:connector-curvature="0" /> | |
| </marker> | |
| </defs> | |
| <sodipodi:namedview | |
| id="base" | |
| pagecolor="#ffffff" | |
| bordercolor="#666666" | |
| borderopacity="1.0" | |
| inkscape:pageopacity="0.0" | |
| inkscape:pageshadow="2" | |
| inkscape:zoom="0.7" | |
| inkscape:cx="566.54545" | |
| inkscape:cy="281.22644" | |
| inkscape:document-units="px" | |
| inkscape:current-layer="layer1" | |
| showgrid="false" | |
| inkscape:window-width="1920" | |
| inkscape:window-height="1028" | |
| inkscape:window-x="0" | |
| inkscape:window-y="27" | |
| inkscape:window-maximized="1" | |
| fit-margin-top="0" | |
| fit-margin-left="0" | |
| fit-margin-right="0" | |
| fit-margin-bottom="0" /> | |
| <metadata | |
| id="metadata78463"> | |
| <rdf:RDF> | |
| <cc:Work | |
| rdf:about=""> | |
| <dc:format>image/svg+xml</dc:format> | |
| <dc:type | |
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
| <dc:title></dc:title> | |
| </cc:Work> | |
| </rdf:RDF> | |
| </metadata> | |
| <g | |
| inkscape:label="Layer 1" | |
| inkscape:groupmode="layer" | |
| id="layer1" | |
| transform="translate(-61.884274,-112.89755)"> | |
| <g | |
| transform="translate(-72.451423,1723.438)" | |
| id="g28339"> | |
| <text | |
| sodipodi:linespacing="125%" | |
| id="text3670" | |
| y="-1399.7109" | |
| x="267.85199" | |
| style="font-style:normal;font-weight:normal;font-size:16.68390465px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| xml:space="preserve"><tspan | |
| y="-1399.7109" | |
| x="267.85199" | |
| id="tspan3672" | |
| sodipodi:role="line">$\X$</tspan></text> | |
| <g | |
| transform="translate(68.690373,-1973.4804)" | |
| id="g5308"> | |
| <path | |
| style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.37822506px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)" | |
| d="m 83.844671,399.34863 0,139.96881" | |
| id="path3697" | |
| inkscape:connector-curvature="0" /> | |
| <text | |
| xml:space="preserve" | |
| style="font-style:normal;font-weight:normal;font-size:16.68390465px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| x="64.260429" | |
| y="472.61401" | |
| id="text4779" | |
| sodipodi:linespacing="125%"><tspan | |
| sodipodi:role="line" | |
| id="tspan4781" | |
| x="64.260429" | |
| y="472.61401">$p$</tspan></text> | |
| </g> | |
| <g | |
| transform="translate(68.690373,-1971.5364)" | |
| id="g5361" | |
| style="fill:#3a3aff;fill-opacity:1"> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.40439" | |
| y="395.42041" /> | |
| <rect | |
| y="395.42041" | |
| x="144.79208" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32951" | |
| y="395.42041" /> | |
| <rect | |
| y="395.42041" | |
| x="115.86695" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25465" | |
| y="395.42041" /> | |
| <rect | |
| y="395.42041" | |
| x="202.64233" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17978" | |
| y="395.42041" /> | |
| <rect | |
| y="395.42041" | |
| x="173.71721" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-4" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.4044" | |
| y="409.88297" /> | |
| <rect | |
| y="409.88297" | |
| x="144.79208" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-6" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-7" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32953" | |
| y="409.88297" /> | |
| <rect | |
| y="409.88297" | |
| x="115.86696" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-8" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3-3" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25465" | |
| y="409.88297" /> | |
| <rect | |
| y="409.883" | |
| x="202.64235" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4-8" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1-0" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17978" | |
| y="409.883" /> | |
| <rect | |
| y="409.883" | |
| x="173.71721" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5-2" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-5" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.4044" | |
| y="424.34555" /> | |
| <rect | |
| y="424.34555" | |
| x="144.79208" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-1" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-6" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32953" | |
| y="424.34555" /> | |
| <rect | |
| y="424.34555" | |
| x="115.86697" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-59" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3-1" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25465" | |
| y="424.34555" /> | |
| <rect | |
| y="424.34555" | |
| x="202.64235" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4-5" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1-5" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17978" | |
| y="424.34555" /> | |
| <rect | |
| y="424.34555" | |
| x="173.71721" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5-7" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-6" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.4044" | |
| y="438.80811" /> | |
| <rect | |
| y="438.80811" | |
| x="144.7921" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-3" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-5" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32953" | |
| y="438.80811" /> | |
| <rect | |
| y="438.80811" | |
| x="115.86697" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-7" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3-2" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25465" | |
| y="438.80811" /> | |
| <rect | |
| y="438.80811" | |
| x="202.64235" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4-3" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1-2" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17978" | |
| y="438.80811" /> | |
| <rect | |
| y="438.80811" | |
| x="173.71721" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5-5" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-4-6" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.40442" | |
| y="453.27066" /> | |
| <rect | |
| y="453.27066" | |
| x="144.7921" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-6-3" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-7-8" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32954" | |
| y="453.27066" /> | |
| <rect | |
| y="453.27066" | |
| x="115.86698" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-8-0" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3-3-5" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25467" | |
| y="453.27066" /> | |
| <rect | |
| y="453.27069" | |
| x="202.64235" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4-8-5" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1-0-6" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17978" | |
| y="453.27069" /> | |
| <rect | |
| y="453.27069" | |
| x="173.71722" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5-2-3" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-5-4" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.40442" | |
| y="467.73322" /> | |
| <rect | |
| y="467.73322" | |
| x="144.7921" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-1-7" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-6-9" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32954" | |
| y="467.73322" /> | |
| <rect | |
| y="467.73322" | |
| x="115.86698" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-59-5" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3-1-7" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25467" | |
| y="467.73322" /> | |
| <rect | |
| y="467.73322" | |
| x="202.64235" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4-5-1" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1-5-0" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17978" | |
| y="467.73322" /> | |
| <rect | |
| y="467.73322" | |
| x="173.71722" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5-7-0" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-9" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.4044" | |
| y="482.1958" /> | |
| <rect | |
| y="482.1958" | |
| x="144.7921" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-8" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-9" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32953" | |
| y="482.1958" /> | |
| <rect | |
| y="482.1958" | |
| x="115.86697" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-0" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3-37" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25467" | |
| y="482.1958" /> | |
| <rect | |
| y="482.19583" | |
| x="202.64235" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4-7" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1-1" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17978" | |
| y="482.19583" /> | |
| <rect | |
| y="482.19583" | |
| x="173.71722" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5-0" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-4-4" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.40441" | |
| y="496.65836" /> | |
| <rect | |
| y="496.65836" | |
| x="144.7921" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-6-9" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-7-4" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32954" | |
| y="496.65836" /> | |
| <rect | |
| y="496.65836" | |
| x="115.86697" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-8-7" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3-3-3" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25467" | |
| y="496.65836" /> | |
| <rect | |
| y="496.65839" | |
| x="202.64235" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4-8-9" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1-0-68" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17979" | |
| y="496.65839" /> | |
| <rect | |
| y="496.65839" | |
| x="173.71722" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5-2-0" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-5-8" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.40442" | |
| y="511.12091" /> | |
| <rect | |
| y="511.12091" | |
| x="144.7921" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-1-3" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-6-5" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32954" | |
| y="511.12091" /> | |
| <rect | |
| y="511.12091" | |
| x="115.86698" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-59-59" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3-1-0" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25467" | |
| y="511.12091" /> | |
| <rect | |
| y="511.12091" | |
| x="202.64235" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4-5-2" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1-5-8" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17979" | |
| y="511.12091" /> | |
| <rect | |
| y="511.12091" | |
| x="173.71722" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5-7-5" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-6-1" | |
| width="14.462563" | |
| height="14.462563" | |
| x="101.40442" | |
| y="525.5835" /> | |
| <rect | |
| y="525.5835" | |
| x="144.79211" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-3-1" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-5-7" | |
| width="14.462563" | |
| height="14.462563" | |
| x="130.32954" | |
| y="525.5835" /> | |
| <rect | |
| y="525.5835" | |
| x="115.86698" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-7-2" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-3-2-2" | |
| width="14.462563" | |
| height="14.462563" | |
| x="159.25467" | |
| y="525.5835" /> | |
| <rect | |
| y="525.5835" | |
| x="202.64235" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3342-4-3-5" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-1-2-3" | |
| width="14.462563" | |
| height="14.462563" | |
| x="188.17979" | |
| y="525.5835" /> | |
| <rect | |
| y="525.5835" | |
| x="173.71722" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-5-5-2" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| y="395.42041" | |
| x="217.10489" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4783" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4785" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49258" | |
| y="395.42041" /> | |
| <rect | |
| y="395.42041" | |
| x="246.03003" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4787" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4789" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56747" | |
| y="395.42041" /> | |
| <rect | |
| y="395.42041" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4791" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4797" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="395.42044" /> | |
| <rect | |
| y="409.883" | |
| x="217.1049" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4799" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4801" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49258" | |
| y="409.883" /> | |
| <rect | |
| y="409.883" | |
| x="246.03004" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4803" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4805" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56747" | |
| y="409.883" /> | |
| <rect | |
| y="409.883" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4807" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4813" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="409.883" /> | |
| <rect | |
| y="424.34555" | |
| x="217.10492" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4815" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4817" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49258" | |
| y="424.34555" /> | |
| <rect | |
| y="424.34555" | |
| x="246.03004" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4819" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4821" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56747" | |
| y="424.34555" /> | |
| <rect | |
| y="424.34555" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4823" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4829" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="424.34555" /> | |
| <rect | |
| y="438.80811" | |
| x="217.10492" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4831" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4833" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49261" | |
| y="438.80811" /> | |
| <rect | |
| y="438.80811" | |
| x="246.03004" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4835" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4837" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56747" | |
| y="438.80811" /> | |
| <rect | |
| y="438.80811" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4839" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4845" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="438.80811" /> | |
| <rect | |
| y="453.27069" | |
| x="217.10492" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4847" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4849" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49261" | |
| y="453.27069" /> | |
| <rect | |
| y="453.27069" | |
| x="246.03004" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4851" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4853" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56749" | |
| y="453.27069" /> | |
| <rect | |
| y="453.27069" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4855" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4861" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="453.27069" /> | |
| <rect | |
| y="467.73325" | |
| x="217.10492" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4863" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4865" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49261" | |
| y="467.73325" /> | |
| <rect | |
| y="467.73325" | |
| x="246.03006" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4867" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4869" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56749" | |
| y="467.73325" /> | |
| <rect | |
| y="467.73325" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4871" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4877" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="467.73325" /> | |
| <rect | |
| y="482.19583" | |
| x="217.10492" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4879" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4881" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49261" | |
| y="482.19583" /> | |
| <rect | |
| y="482.19583" | |
| x="246.03004" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4883" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4885" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56747" | |
| y="482.19583" /> | |
| <rect | |
| y="482.19583" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4887" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4893" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="482.19583" /> | |
| <rect | |
| y="496.65836" | |
| x="217.10492" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4895" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4897" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49261" | |
| y="496.65836" /> | |
| <rect | |
| y="496.65836" | |
| x="246.03004" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4899" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4901" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56747" | |
| y="496.65836" /> | |
| <rect | |
| y="496.65836" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4903" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4909" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="496.65839" /> | |
| <rect | |
| y="511.12091" | |
| x="217.10492" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4911" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4913" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49261" | |
| y="511.12091" /> | |
| <rect | |
| y="511.12091" | |
| x="246.03006" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4915" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4917" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56749" | |
| y="511.12091" /> | |
| <rect | |
| y="511.12091" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4919" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4925" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="511.12091" /> | |
| <rect | |
| y="525.5835" | |
| x="217.10492" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4927" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4929" | |
| width="14.462563" | |
| height="14.462563" | |
| x="260.49261" | |
| y="525.5835" /> | |
| <rect | |
| y="525.5835" | |
| x="246.03006" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4931" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4933" | |
| width="14.462563" | |
| height="14.462563" | |
| x="231.56749" | |
| y="525.5835" /> | |
| <rect | |
| y="525.5835" | |
| x="274.95517" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect4935" | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#3a3aff;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect4941" | |
| width="14.462563" | |
| height="14.462563" | |
| x="289.41772" | |
| y="525.5835" /> | |
| </g> | |
| <g | |
| id="g28334"> | |
| <path | |
| style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.4170976px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker5019)" | |
| d="m 172.33936,-1590.4508 c 197.22758,0 197.22758,0 197.22758,0" | |
| id="path5011" | |
| inkscape:connector-curvature="0" /> | |
| <text | |
| xml:space="preserve" | |
| style="font-style:normal;font-weight:normal;font-size:16.68390465px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| x="265.9968" | |
| y="-1597.8646" | |
| id="text5047" | |
| sodipodi:linespacing="125%"><tspan | |
| sodipodi:role="line" | |
| x="265.9968" | |
| y="-1597.8646" | |
| id="tspan28330">$n$</tspan></text> | |
| </g> | |
| </g> | |
| <g | |
| transform="translate(-72.451423,1723.438)" | |
| id="g34210"> | |
| <text | |
| sodipodi:linespacing="125%" | |
| id="text5299" | |
| y="-1399.7096" | |
| x="478.95816" | |
| style="font-style:normal;font-weight:normal;font-size:16.67499924px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| xml:space="preserve"><tspan | |
| y="-1399.7096" | |
| x="478.95816" | |
| id="tspan5301" | |
| sodipodi:role="line">$\D$</tspan></text> | |
| <g | |
| transform="translate(355.48088,-2160.6907)" | |
| id="g5503"> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-7" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10059" | |
| y="584.57465" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-99" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02571" | |
| y="584.57465" /> | |
| <rect | |
| y="584.57465" | |
| x="121.56316" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-71" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-4-9" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10061" | |
| y="599.03723" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-7-44" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02573" | |
| y="599.03723" /> | |
| <rect | |
| y="599.03723" | |
| x="121.56316" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-8-2" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-5-46" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10061" | |
| y="613.49982" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-6-4" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02573" | |
| y="613.49982" /> | |
| <rect | |
| y="613.49982" | |
| x="121.56317" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-59-9" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-6-2" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10061" | |
| y="627.96234" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-5-8" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02573" | |
| y="627.96234" /> | |
| <rect | |
| y="627.96234" | |
| x="121.56317" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-7-0" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-4-6-2" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10062" | |
| y="642.42493" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-7-8-0" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02574" | |
| y="642.42493" /> | |
| <rect | |
| y="642.42493" | |
| x="121.56319" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-8-0-1" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-5-4-7" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10062" | |
| y="656.88745" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-6-9-8" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02574" | |
| y="656.88745" /> | |
| <rect | |
| y="656.88745" | |
| x="121.56319" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-59-5-4" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-9-5" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10061" | |
| y="671.35004" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-9-5" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02573" | |
| y="671.35004" /> | |
| <rect | |
| y="671.35004" | |
| x="121.56317" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-0-1" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-4-4-5" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10062" | |
| y="685.81262" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-7-4-1" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02574" | |
| y="685.81262" /> | |
| <rect | |
| y="685.81262" | |
| x="121.56317" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-8-7-8" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-5-8-5" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10062" | |
| y="700.27515" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-6-5-3" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02574" | |
| y="700.27515" /> | |
| <rect | |
| y="700.27515" | |
| x="121.56319" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-59-59-0" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3340-6-1-3" | |
| width="14.462563" | |
| height="14.462563" | |
| x="107.10062" | |
| y="714.73773" /> | |
| <rect | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| id="rect3344-5-7-4" | |
| width="14.462563" | |
| height="14.462563" | |
| x="136.02574" | |
| y="714.73773" /> | |
| <rect | |
| y="714.73773" | |
| x="121.56319" | |
| height="14.462563" | |
| width="14.462563" | |
| id="rect3346-7-2-2" | |
| style="fill:#ff893a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" /> | |
| </g> | |
| <g | |
| transform="translate(52.261802,-1978.7598)" | |
| id="g8186"> | |
| <path | |
| style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.37822506px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend-4)" | |
| d="m 392.95501,404.62802 0,139.96881" | |
| id="path3697-2" | |
| inkscape:connector-curvature="0" /> | |
| <text | |
| xml:space="preserve" | |
| style="font-style:normal;font-weight:normal;font-size:16.68390465px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| x="373.37076" | |
| y="477.8934" | |
| id="text4779-7" | |
| sodipodi:linespacing="125%"><tspan | |
| sodipodi:role="line" | |
| id="tspan4781-0" | |
| x="373.37076" | |
| y="477.8934">$p$</tspan></text> | |
| </g> | |
| <g | |
| id="g27664"> | |
| <path | |
| style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.37799999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6546)" | |
| d="m 464.01561,-1587.0702 39.83146,0" | |
| id="path6540" | |
| inkscape:connector-curvature="0" /> | |
| <text | |
| xml:space="preserve" | |
| style="font-style:normal;font-weight:normal;font-size:16.68390465px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| x="478.7113" | |
| y="-1595.3795" | |
| id="text6542" | |
| sodipodi:linespacing="125%"><tspan | |
| sodipodi:role="line" | |
| id="tspan6544" | |
| x="478.7113" | |
| y="-1595.3795">$k$</tspan></text> | |
| </g> | |
| </g> | |
| <text | |
| xml:space="preserve" | |
| style="font-style:normal;font-weight:normal;font-size:16.67499924px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| x="325.54868" | |
| y="275.95398" | |
| id="text8620" | |
| sodipodi:linespacing="125%"><tspan | |
| sodipodi:role="line" | |
| id="tspan8622" | |
| x="325.54868" | |
| y="275.95398">=</tspan></text> | |
| <g | |
| transform="translate(-72.451423,1723.438)" | |
| id="g39786"> | |
| <g | |
| transform="translate(366.9207,-2105.526)" | |
| id="g5535" | |
| style="fill:#79ff3a;fill-opacity:1"> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 174.02861,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3340-2" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 217.41632,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3342-5" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 202.95375,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3344-19" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 188.49118,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3346-9" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 231.87889,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3340-3-6" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 275.26657,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3342-4-38" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 260.80402,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3344-1-22" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 246.34145,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3346-5-21" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 174.02863,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect3340-4-5" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 217.41632,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect3342-6-4" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 202.95377,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect3344-7-3" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 188.49118,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect3346-8-6" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 231.87889,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect3340-3-3-33" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 275.26657,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect3342-4-8-2" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 260.80402,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect3344-1-0-1" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 246.34145,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect3346-5-2-05" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 174.02863,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3340-5-6" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 217.41632,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3342-1-1" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 202.95377,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3344-6-54" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 188.4912,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3346-59-6" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 231.87889,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3340-3-1-6" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 275.26657,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3342-4-5-9" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 260.80402,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3344-1-5-08" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 246.34145,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect3346-5-7-3" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 289.72913,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4783-7" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 333.11679,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4785-1" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 318.65427,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4787-2" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 304.19171,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4789-9" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 347.57938,630.64789 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4791-7" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 362.04193,630.64795 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4797-7" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 289.72913,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect4799-9" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 333.11679,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect4801-2" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 318.65427,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect4803-2" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 304.19171,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect4805-1" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 347.57938,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect4807-3" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 362.04193,645.11047 14.46256,0 0,14.46257 -14.46256,0 z" | |
| id="rect4813-7" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 289.72916,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4815-7" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 333.11679,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4817-8" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 318.65427,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4819-5" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 304.19171,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4821-1" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 347.57938,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4823-3" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#79ff3a;fill-opacity:1;stroke:#000000;stroke-width:0.14462563" | |
| d="m 362.04193,659.57306 14.46256,0 0,14.46256 -14.46256,0 z" | |
| id="rect4829-7" | |
| inkscape:connector-curvature="0" /> | |
| </g> | |
| <text | |
| xml:space="preserve" | |
| style="font-style:normal;font-weight:normal;font-size:16.67499924px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| x="635.70892" | |
| y="-1399.7096" | |
| id="text22800" | |
| sodipodi:linespacing="125%"><tspan | |
| sodipodi:role="line" | |
| id="tspan22802" | |
| x="635.70892" | |
| y="-1399.7096">$\A$</tspan></text> | |
| <g | |
| id="g27604"> | |
| <path | |
| style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.4170976px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker5019-0)" | |
| d="m 543.1939,-1482.1157 c 197.22758,0 197.22758,0 197.22758,0" | |
| id="path5011-2" | |
| inkscape:connector-curvature="0" /> | |
| <text | |
| xml:space="preserve" | |
| style="font-style:normal;font-weight:normal;font-size:16.68390465px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| x="637.4223" | |
| y="-1489.5297" | |
| id="text5047-01" | |
| sodipodi:linespacing="125%"><tspan | |
| sodipodi:role="line" | |
| id="tspan5049-9" | |
| x="637.4223" | |
| y="-1489.5297">$n$</tspan></text> | |
| </g> | |
| <g | |
| id="g27599"> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path7450" | |
| d="m 759.30761,-1473.444 0,39.8315" | |
| style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.37799999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker20949)" | |
| inkscape:transform-center-x="-9.5964491" | |
| inkscape:transform-center-y="-22.062259" /> | |
| <text | |
| xml:space="preserve" | |
| style="font-style:normal;font-weight:normal;font-size:16.68390465px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| x="763.11981" | |
| y="-1448.0724" | |
| id="text6542-28" | |
| sodipodi:linespacing="125%"><tspan | |
| sodipodi:role="line" | |
| id="tspan6544-7" | |
| x="763.11981" | |
| y="-1448.0724">$k$</tspan></text> | |
| </g> | |
| </g> | |
| </g> | |
| </svg> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | \documentclass{minimal} | |
| \usepackage[margin=0pt, paperwidth=PAGEWIDTHpt, paperheight= PAGEHEIGHTpt]{geometry} | |
| % *** Math | |
| \usepackage{{color}} | |
| \usepackage{amsmath} | |
| \usepackage{amsfonts} | |
| \usepackage[pdftex]{graphicx} | |
| \renewcommand{\familydefault}{\sfdefault} | |
| \input{commands.tex} | |
| \def\svgwidth{.97\paperwidth} | |
| \begin{document}% | |
| \input{FILENAME} | |
| \end{document} | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment