Lecture slides

This commit is contained in:
Oliver Kennedy 2018-02-19 00:15:53 -05:00
parent aba881a375
commit b081fbd285
16 changed files with 3612 additions and 0 deletions

View file

@ -0,0 +1,355 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSE 4/562 - Spring 2018</title>
<meta name="description" content="CSE 4/562 - Spring 2018">
<meta name="author" content="Oliver Kennedy">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="../reveal.js-3.6.0/css/reveal.css">
<link rel="stylesheet" href="ubodin.css" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="../reveal.js-3.6.0/lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../reveal.js-3.6.0/css/print/pdf.css' : '../reveal.js-3.6.0/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<script src="../reveal.js-3.6.0/lib/js/head.min.js"></script>
<!--[if lt IE 9]>
<script src="../reveal.js-3.6.0/lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="header">
<!-- Any Talk-Specific Header Content Goes Here -->
CSE 4/562 - Database Systems
</div>
<div class="slides">
<section>
<h1>Indexes</h1>
<h3>CSE 4/562 Database Systems</h3>
<h5>February 19, 2018</h5>
</section>
<section>
<section>
<table>
<tr>
<td>
<img src="graphics/Books/DBSystemsHardcover.jpg" height="200px">
</td>
<td>
<img src="graphics/Books/DBSystemsSoftcover.jpg" height="200px">
</td>
</tr>
<tr class="fragment">
<td>$150</td>
<td>$50</td>
</tr>
<tr class="fragment">
<td>Index<br/>ToC</td>
<td>No Index<br/>ToC Summary</td>
</tr>
</table>
</section>
<section>
<h3>Today's Focus</h3>
<p style="margin: 100px;">
$\sigma_C(R)$ <span style="margin: 50px">and</span> $(\ldots \bowtie_C R)$
</p>
<p class="fragment" style="font-size: 70%">(Finding records in a table <span class="fragment">really fast</span>)</p>
</section>
<section>
<h3>Indexing Strategies</h3>
<dl>
<div class="fragment">
<dt>Rearrange the data.</dt>
<dd>Put things in a predictable location or a specific order.</dd>
<dd class="fragment">("clustering" the data)</dd>
</div>
<div class="fragment">
<dt>Wrap the data.</dt>
<dd>Record where specific data values live</dd>
<dd class="fragment">("indexing" the data).</dd>
</div>
</dl>
</section>
<section>
<h3>Data Organization</h3>
<dl>
<div class="fragment">
<dt>Unordered Heap</dt>
<dd>No organization at all. $O(N)$ reads.</dd>
</div>
<div class="fragment">
<dt>(Secondary) Index</dt>
<dd>Index structure over unorganized data. $O(\ll N)$ <b>random</b> reads for <b>some</b> queries.</dd>
</div>
<div class="fragment">
<dt>Clustered (Primary) Index</dt>
<dd>Index structure over clustered data. $O(\ll N)$ <b>sequential</b> reads for <b>some</b> queries.</dd>
</div>
</dl>
</section>
<section>
<h3>Data Organization</h3>
<img src="graphics/2018-02-19-Index-Types.svg" />
</section>
<section>
<h3>Data Organization</h3>
<img src="graphics/2018-02-19-PrimaryVsSecondary.png" />
</section>
<section>
<h3>Index Types</h3>
<dl>
<dt>Tree-Based</dt>
<dd>A hierarchy of decisions lead to data at the leaves.</dd>
<div class="fragment highlight-grey" data-fragment-index=2>
<dt>Hash-Based</dt>
<dd>A hash function puts data in predictable locations.</dd>
<dt>CDF-Based <span style="color: red" class="fragment" data-fragment-index=1>(new)</span></dt>
<dd>A more complex function predicts where data lives.</dd>
</div>
</dl>
</section>
</section>
<section>
<section>
<h3>Tree-Based Indexes</h3>
<svg data-src="graphics/2018-02-19-Tree-BinSearch.svg"/>
</section>
<section>
<h3>Tree-Based Indexes</h3>
<svg data-src="graphics/2018-02-19-Tree-Motivation.svg"/>
</section>
<section>
<h3>Challenges</h3>
<dl>
<dt>Balance</dt>
<dd>Bad question orders lead to poor performance!</dd>
<dt>IO</dt>
<dd>Each access to a binary tree node is a random access.</dd>
<dt class="fragment highlight-grey" data-fragment-index="1">Which Dimension</dt>
<dd class="fragment highlight-grey" data-fragment-index="1">Why limit ourselves to asking about one dimension?</dd>
</dl>
</section>
<section>
<svg data-src="graphics/2018-02-19-Tree-Unbalanced.svg" class="stretch"/>
</section>
<section>
<h3>Worst-Case Tree?</h3>
<div class="fragment" style="margin: 100px">$O(N)$ with the tree laid out left/right-deep</div>
<h3 class="fragment">Best-Case Tree?</h3>
<div class="fragment" style="margin: 100px">$O(\log N)$ with the tree perfectly balanced</div>
</section>
</section>
<section>
<section>
<h3>Binary Trees are Bad for IO</h3>
<p style="margin-top: 100px;">Every step of binary search is a random access</p>
<p style="margin-top: 100px;" class="fragment">Every tree node access is a random access</p>
</section>
<section>
<p>Random access IO is bad.</p>
</section>
<section>
<p><b>Idea: </b> Load a bunch of binary tree nodes together.</p>
</section>
<section>
<p><b>Binary Tree: </b> $1$ separator &amp; $2$ pointers</p>
<p>$log_2(N)$ Deep</p>
<p class="fragment" data-fragment-index="1" style="margin-top: 50px;"><b>$K$-ary Tree: </b> $(K-1)$ separators &amp; $K$ pointers</p>
<p class="fragment" data-fragment-index="1">$log_K(N)$ Deep</p>
</section>
<section>
<p><b>Important:</b> You still need to do binary search on each node of a $K$-ary tree, but now you're doing random access on memory (or cache) instead of disk (or memory)</p>
</section>
<section>
<h3>ISAM Trees</h3>
<img src="graphics/2018-02-19-ISAM.png" height="500px">
</section>
</section>
<section>
<section>
<p>How do you handle updates?</p>
<p style="margin-top: 50px;" class="fragment">B+Tree = ISAM + Updates</p>
</section>
<section>
<h3>Challenges</h3>
<ul>
<li class="fragment">Finding space for new records</li>
<li class="fragment">Keeping the tree balanced as new records are added</li>
</ul>
</section>
<section>
<p><b>Idea 1:</b> Reserve space for new records</p>
</section>
<section>
<svg data-src="graphics/2018-02-19-BTree-Reserved.svg" />
</section>
<section>
<p>Just maintaining open space won't work forever...</p>
</section>
<section>
<h3>Rules of B+Trees</h3>
<dl>
<dt>Keep space open for insertions in inner/data nodes.</dt>
<dd>Split nodes when theyre full</dd>
<dt>Avoid under-using space</dt>
<dd>Merge nodes when theyre under-filled</dd>
</dl>
<p class="fragment"><b>Maintain Invariant:</b> All Nodes ≥ 50% Full</p>
<p class="fragment">(Exception: The Root)</p>
</section>
</section>
<section>
<section><img src="graphics/2018-02-19-InsertExample-1.png" height="300px"/></section>
<section><img src="graphics/2018-02-19-InsertExample-2.png" height="300px"/></section>
<section><img src="graphics/2018-02-19-InsertExample-3.png" height="300px"/></section>
<section><img src="graphics/2018-02-19-InsertExample-4.png" height="300px"/></section>
<section><img src="graphics/2018-02-19-InsertExample-5.png" height="300px"/></section>
<section><img src="graphics/2018-02-19-InsertExample-6.png" height="300px"/></section>
<section><img src="graphics/2018-02-19-InsertExample-7.png" height="300px"/></section>
<section><img src="graphics/2018-02-19-InsertExample-8.png" height="300px"/></section>
<section><p>Deletions reverse this process (at 50% fill).</p></section>
</section>
<section>
<p><b>Next Class</b>: Hash- and CDF-Based Indexes</p>
</section>
</div></div>
<script src="../reveal.js-3.6.0/js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/../reveal.js#configuration
Reveal.initialize({
controls: false,
progress: true,
history: true,
center: true,
slideNumber: true,
transition: 'fade', // none/fade/slide/convex/concave/zoom
chart: {
defaults: {
global: {
title: { fontColor: "#333", fontSize: 24 },
legend: {
labels: { fontColor: "#333", fontSize: 20 },
},
responsiveness: true
},
scale: {
scaleLabel: { fontColor: "#333", fontSize: 20 },
gridLines: { color: "#333", zeroLineColor: "#333" },
ticks: { fontColor: "#333", fontSize: 16 },
}
},
line: { borderColor: [ "rgba(20,220,220,.8)" , "rgba(220,120,120,.8)", "rgba(20,120,220,.8)" ], "borderDash": [ [5,10], [0,0] ]},
bar: { backgroundColor: [
"rgba(220,220,220,0.8)",
"rgba(151,187,205,0.8)",
"rgba(205,151,187,0.8)",
"rgba(187,205,151,0.8)"
]
},
pie: { backgroundColor: [ ["rgba(0,0,0,.8)" , "rgba(220,20,20,.8)", "rgba(20,220,20,.8)", "rgba(220,220,20,.8)", "rgba(20,20,220,.8)"] ]},
radar: { borderColor: [ "rgba(20,220,220,.8)" , "rgba(220,120,120,.8)", "rgba(20,120,220,.8)" ]},
},
// Optional ../reveal.js plugins
dependencies: [
{ src: '../reveal.js-3.6.0/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: '../reveal.js-3.6.0/plugin/math/math.js',
condition: function() { return true; },
mathjax: '../reveal.js-3.6.0/js/MathJax.js'
},
{ src: '../reveal.js-3.6.0/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '../reveal.js-3.6.0/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '../reveal.js-3.6.0/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: '../reveal.js-3.6.0/plugin/zoom-js/zoom.js', async: true },
{ src: '../reveal.js-3.6.0/plugin/notes/notes.js', async: true },
// Chart.min.js
{ src: '../reveal.js-3.6.0/plugin/chart/Chart.min.js'},
// the plugin
{ src: '../reveal.js-3.6.0/plugin/chart/csv2chart.js'},
{ src: '../reveal.js-3.6.0/plugin/svginline/es6-promise.auto.js', async: false },
{ src: '../reveal.js-3.6.0/plugin/svginline/data-src-svg.js', async: false }
]
});
</script>
</body>
</html>

View file

@ -0,0 +1,827 @@
<?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="175.94066mm"
height="119.5406mm"
viewBox="0 0 175.94066 119.5406"
version="1.1"
id="svg8"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
sodipodi:docname="2018-02-19-BTree-Reserved.svg">
<defs
id="defs2">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker5820"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path5818"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker5640"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5638"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker5490"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
inkscape:connector-curvature="0"
id="path5488"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker4921"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4919" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker3887"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path3885"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker3763"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3761" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker3013"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path3011"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker2959"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2957" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker2726"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path2724"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker2388"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path2386"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker1854"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1852"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1362"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1360"
inkscape:connector-curvature="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="path1079"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker3887-7"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path3885-9"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
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="1.4"
inkscape:cx="257.10554"
inkscape:cy="154.15193"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1031"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<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(-2.2068452,-19.337364)">
<g
id="g53"
transform="translate(4.5357143,-30.238095)">
<rect
y="49.950726"
x="47.070549"
height="20.872351"
width="76.002533"
id="rect10"
style="fill:#ffffff;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.75053322;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
transform="translate(6.8791675)"
id="g20">
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 44.601185,50.181546 V 70.970237"
id="path14"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path16"
d="M 57.452375,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="translate(25.059825)"
id="g26">
<path
inkscape:connector-curvature="0"
id="path22"
d="M 44.601185,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 57.452375,50.181546 V 70.970237"
id="path24"
inkscape:connector-curvature="0" />
</g>
<g
id="g32"
transform="translate(43.240482)">
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 44.601185,50.181546 V 70.970237"
id="path28"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path30"
d="M 57.452375,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="translate(61.421139,-0.13229166)"
id="g38">
<path
inkscape:connector-curvature="0"
id="path34"
d="M 44.601185,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 57.452375,50.181546 V 70.970237"
id="path36"
inkscape:connector-curvature="0" />
</g>
</g>
<g
transform="translate(-43.089286,11.717262)"
id="g81">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.75053322;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect55"
width="76.002533"
height="20.872351"
x="47.070549"
y="49.950726" />
<g
id="g61"
transform="translate(6.8791675)">
<path
inkscape:connector-curvature="0"
id="path57"
d="M 44.601185,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 57.452375,50.181546 V 70.970237"
id="path59"
inkscape:connector-curvature="0" />
</g>
<g
id="g67"
transform="translate(25.059825)">
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 44.601185,50.181546 V 70.970237"
id="path63"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path65"
d="M 57.452375,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="translate(43.240482)"
id="g73">
<path
inkscape:connector-curvature="0"
id="path69"
d="M 44.601185,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 57.452375,50.181546 V 70.970237"
id="path71"
inkscape:connector-curvature="0" />
</g>
<g
id="g79"
transform="translate(61.421139,-0.13229166)">
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 44.601185,50.181546 V 70.970237"
id="path75"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path77"
d="M 57.452375,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
<g
id="g120"
transform="translate(51.371003,16.105813)">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.62927228;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect115"
width="37.101383"
height="16.879656"
x="-48.849522"
y="81.765366" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="-45.89035"
y="94.17395"
id="text113"><tspan
sodipodi:role="line"
id="tspan111"
x="-45.89035"
y="94.17395"
style="stroke-width:0.26458332">1,3</tspan></text>
</g>
<g
id="g229">
<g
id="g136"
transform="translate(97.29511,16.105813)">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.62927228;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect130"
width="37.101383"
height="16.879656"
x="-48.849522"
y="81.765366" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="-45.89035"
y="94.17395"
id="text134"><tspan
sodipodi:role="line"
id="tspan132"
x="-45.89035"
y="94.17395"
style="stroke-width:0.26458332">5,7</tspan></text>
</g>
</g>
<g
id="g180"
transform="translate(45.735119,11.717262)">
<rect
y="49.950726"
x="47.070549"
height="20.872351"
width="76.002533"
id="rect154"
style="fill:#ffffff;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.75053322;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
transform="translate(6.8791675)"
id="g160">
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 44.601185,50.181546 V 70.970237"
id="path156"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path158"
d="M 57.452375,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="translate(25.059825)"
id="g166">
<path
inkscape:connector-curvature="0"
id="path162"
d="M 44.601185,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 57.452375,50.181546 V 70.970237"
id="path164"
inkscape:connector-curvature="0" />
</g>
<g
id="g172"
transform="translate(43.240482)">
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 44.601185,50.181546 V 70.970237"
id="path168"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path170"
d="M 57.452375,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="translate(61.421139,-0.13229166)"
id="g178">
<path
inkscape:connector-curvature="0"
id="path174"
d="M 44.601185,50.181546 V 70.970237"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 57.452375,50.181546 V 70.970237"
id="path176"
inkscape:connector-curvature="0" />
</g>
</g>
<g
transform="translate(189.58101,16.105813)"
id="g239">
<g
id="g237">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.62927228;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect231"
width="37.101383"
height="16.879656"
x="-48.849522"
y="81.765366" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="-47.477852"
y="94.17395"
id="text235"><tspan
sodipodi:role="line"
id="tspan233"
x="-47.477852"
y="94.17395"
style="stroke-width:0.26458332">15</tspan></text>
</g>
</g>
<text
id="text255"
y="75.883926"
x="10.96131"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="75.883926"
x="10.96131"
id="tspan253"
sodipodi:role="line">5</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="58.775299"
y="34.117558"
id="text263"><tspan
sodipodi:role="line"
id="tspan261"
x="58.775299"
y="34.117558"
style="stroke-width:0.26458332">9</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
d="M 53.672618,39.484821 39.422914,61.898807"
id="path269"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path1358"
d="M 71.437499,39.484821 128.24732,61.898808"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1362)"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path1850"
d="M 6.2743997,81.099998 21.128862,97.655349"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1854)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2388)"
d="M 23.7369,81.099998 66.297017,97.466361"
id="path2384"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2726)"
d="M 94.53184,81.099998 109.3863,97.655349"
id="path2720"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="g4142"
class="fragment fade-out"
data-fragment-index="2">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="96.799698"
y="75.883926"
id="text267"><tspan
sodipodi:role="line"
id="tspan265"
x="96.799698"
y="75.883926"
style="stroke-width:0.26458332">15</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2959)"
d="m 111.99434,81.099998 42.56012,16.366363"
id="path2722"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
id="g4171"
class="fragment"
data-fragment-index="2">
<g
id="g2955"
transform="translate(163.68964,39.918313)">
<g
id="g2953">
<rect
y="81.765366"
x="-48.849522"
height="16.879656"
width="37.101383"
id="rect2947"
style="fill:#ffffff;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.62927228;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text2951"
y="94.17395"
x="-45.89035"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="94.17395"
x="-45.89035"
id="tspan2949"
sodipodi:role="line">13</tspan></text>
</g>
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3009"
d="m 111.99434,81.099998 12.88899,40.367852"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3013)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3883"
d="m 130.89315,81.099998 23.66131,16.366363"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3887)" />
<text
id="text4131"
y="75.883926"
x="114.94256"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="75.883926"
x="114.94256"
id="tspan4129"
sodipodi:role="line">15</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="96.988686"
y="75.883926"
id="text4146"><tspan
sodipodi:role="line"
id="tspan4144"
x="96.988686"
y="75.883926"
style="stroke-width:0.26458332">13</tspan></text>
</g>
<g
id="g144"
transform="translate(141.95601,16.105813)">
<g
id="g223">
<rect
y="81.765366"
x="-48.849522"
height="16.879656"
width="37.101383"
id="rect138"
style="fill:#ffffff;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.62927228;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text142"
y="94.17395"
x="-45.89035"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="94.17395"
x="-45.89035"
id="tspan140"
sodipodi:role="line">9</tspan></text>
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="103.61787"
y="110.52975"
id="text2945"
class="fragment"
data-fragment-index="1"><tspan
sodipodi:role="line"
id="tspan2943"
x="103.61787"
y="110.52975"
style="stroke-width:0.26458332">...12</tspan></text>
<g
id="g4185"
fragment=""
class="fragment"
data-fragment-index="3"
transform="translate(0.52916667)">
<text
id="text4175"
y="75.944923"
x="133.40239"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="75.944923"
x="133.40239"
id="tspan4173"
sodipodi:role="line">21</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="151.65863"
y="75.944931"
id="text4179"><tspan
sodipodi:role="line"
id="tspan4177"
x="151.65863"
y="75.944931"
style="stroke-width:0.26458332">27</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4921)"
d="m 166.87665,81.099998 23.66131,16.36636"
id="path4917"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3883-3"
d="m 149.41408,81.099998 37.45744,19.201182"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3887-7)" />
</g>
<g
id="g6359"
class="fragment"
data-fragment-index="4">
<text
id="text5464"
y="34.027374"
x="74.551483"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="34.027374"
x="74.551483"
id="tspan5462"
sodipodi:role="line">30</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="92.543152"
y="34.027374"
id="text5468"><tspan
sodipodi:role="line"
id="tspan5466"
x="92.543152"
y="34.027374"
style="stroke-width:0.26458332">40</tspan></text>
<text
id="text5472"
y="34.027374"
x="111.40417"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="34.027374"
x="111.40417"
id="tspan5470"
sodipodi:role="line">50</tspan></text>
<path
inkscape:connector-curvature="0"
id="path5486"
d="M 89.618155,39.484821 196.8878,68.135415"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5490)"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5640)"
d="M 106.81607,39.484821 197.07679,62.65476"
id="path5636"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path5816"
d="m 124.76994,39.484821 77.9765,22.224999"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5820)"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View file

@ -0,0 +1,572 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="153.72629mm"
height="59.078072mm"
viewBox="0 0 153.72629 59.078072"
version="1.1"
id="svg8"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
sodipodi:docname="2018-02-19-Index-Types.svg">
<defs
id="defs2">
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker2355"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2353"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker2199"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path2197"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker1947"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1945"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker1809"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path1807"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker1731"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1729"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker1671"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path1669"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker1311"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1309"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1271"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1269"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1237"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1235"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1209"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1207"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1187"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1185"
inkscape:connector-curvature="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="path906"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Noise Fill"
id="filter453">
<feTurbulence
type="fractalNoise"
baseFrequency="0.02 0.04"
numOctaves="5"
seed="1"
result="turbulence"
id="feTurbulence437" />
<feComposite
in="SourceGraphic"
in2="turbulence"
operator="in"
result="composite1"
id="feComposite439" />
<feColorMatrix
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 3 -1 "
result="color"
id="feColorMatrix441" />
<feFlood
flood-opacity="1"
flood-color="rgb(21,40,57)"
result="flood"
id="feFlood443" />
<feMerge
result="merge"
id="feMerge449">
<feMergeNode
in="flood"
id="feMergeNode445" />
<feMergeNode
in="color"
id="feMergeNode447" />
</feMerge>
<feComposite
in2="SourceGraphic"
operator="in"
result="fbSourceGraphic"
id="feComposite451" />
<feColorMatrix
result="fbSourceGraphicAlpha"
in="fbSourceGraphic"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
id="feColorMatrix797" />
<feTurbulence
id="feTurbulence799"
type="fractalNoise"
baseFrequency="9.06915 1e-05"
numOctaves="5"
seed="2"
result="turbulence" />
<feComposite
in2="turbulence"
id="feComposite801"
in="fbSourceGraphic"
operator="in"
result="composite1" />
<feColorMatrix
id="feColorMatrix803"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 3 -1 "
result="color" />
<feFlood
id="feFlood805"
flood-opacity="1"
flood-color="rgb(255,255,255)"
result="flood" />
<feMerge
id="feMerge807"
result="merge">
<feMergeNode
id="feMergeNode809"
in="flood" />
<feMergeNode
id="feMergeNode811"
in="color" />
</feMerge>
<feComposite
in2="fbSourceGraphic"
id="feComposite813"
operator="in"
result="composite2" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient405"
id="linearGradient407"
x1="81.64286"
y1="47.006561"
x2="105.47425"
y2="47.006561"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(39.697351,32.52484)" />
<linearGradient
inkscape:collect="always"
id="linearGradient405">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop401" />
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="1"
id="stop403" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient405"
id="linearGradient78"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(78.510331,32.52484)"
x1="81.64286"
y1="47.006561"
x2="105.47425"
y2="47.006561" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="143.45636"
inkscape:cy="7.425462"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1031"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<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(-34.838071,-35.416608)">
<g
id="g1646"
transform="translate(51.622993,44.620078)"
class="fragment">
<rect
y="23.836615"
x="28.726189"
height="11.07471"
width="23.831392"
id="rect108"
style="fill:#000000;fill-opacity:1;stroke:#00ff00;stroke-width:3.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#filter453)" />
<rect
y="23.836613"
x="28.726189"
height="11.07471"
width="23.831392"
id="rect1640"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.465;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<rect
y="68.456696"
x="121.34023"
height="11.07471"
width="23.831392"
id="rect383"
style="fill:url(#linearGradient407);fill-opacity:1;stroke:#000000;stroke-width:0.465;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
class="fragment" />
<g
class="fragment"
transform="translate(8.4950213,44.620078)"
id="g74">
<rect
style="fill:#000000;fill-opacity:1;stroke:#00ff00;stroke-width:3.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#filter453)"
id="rect70"
width="23.831392"
height="11.07471"
x="28.726189"
y="23.836615" />
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.465;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect72"
width="23.831392"
height="11.07471"
x="28.726189"
y="23.836613" />
</g>
<rect
class="fragment"
style="fill:url(#linearGradient78);fill-opacity:1;stroke:#000000;stroke-width:0.465;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect76"
width="23.831392"
height="11.07471"
x="160.1532"
y="68.456696" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1271)"
d="M 99.785714,55.473213 84.950148,67.946428"
id="path86"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1237)"
d="M 85.044641,55.662202 91.09226,68.135414"
id="path88"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1209)"
d="M 93.549106,55.662202 97.13988,68.135414"
id="path90"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1187)"
d="m 81.483111,55.511009 1.01019,12.529912"
id="path92"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
d="m 83.15476,55.851189 18.80432,12.284225"
id="path94"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1311)"
d="M 101.95908,55.851189 93.360116,68.135412"
id="path96"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:transform-center-y="-3.3539676"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="6.7110734"
sodipodi:r1="13.422147"
sodipodi:cy="61.745621"
sodipodi:cx="133.534"
sodipodi:sides="3"
id="path82"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="matrix(1.023922,0,0,0.99953221,-44.477228,-12.384495)" />
<path
transform="matrix(1.023922,0,0,0.99953221,-3.4724711,-12.384495)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path84"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.3539676" />
<g
id="g2591"
transform="translate(1.0115057)">
<path
inkscape:connector-curvature="0"
id="path1661"
d="m 123.50372,56.134671 v 11.90625"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker1671)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker1731)"
d="m 127,56.134671 v 11.90625"
id="path1727"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path1805"
d="m 130.30729,56.134671 v 11.90625"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker1809)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker1947)"
d="m 133.70908,56.134671 v 11.90625"
id="path1943"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path2195"
d="m 137.29985,56.134671 v 11.90625"
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2199)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2355)"
d="m 140.98512,56.134671 v 11.90625"
id="path2351"
inkscape:connector-curvature="0" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="34.962799"
y="91.191963"
id="text2661"><tspan
sodipodi:role="line"
id="tspan2659"
x="34.962799"
y="91.191963"
style="stroke-width:0.26458332">Heap</tspan></text>
<text
id="text2665"
y="91.191963"
x="77.863098"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="91.191963"
x="77.863098"
id="tspan2663"
sodipodi:role="line">Index</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="133.20154"
y="86.467262"
id="text2669"><tspan
sodipodi:role="line"
id="tspan2667"
x="133.20154"
y="86.467262"
style="font-size:6.3499999px;text-align:center;text-anchor:middle;stroke-width:0.26458332">Clustered</tspan><tspan
sodipodi:role="line"
x="133.20154"
y="94.404762"
style="font-size:6.3499999px;text-align:center;text-anchor:middle;stroke-width:0.26458332"
id="tspan2671">Index</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="154.59227"
y="91.191963"
id="text2675"><tspan
sodipodi:role="line"
id="tspan2673"
x="154.59227"
y="91.191963"
style="stroke-width:0.26458332">Sorted</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

View file

@ -0,0 +1,346 @@
<?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="181.37929mm"
height="119.85467mm"
viewBox="0 0 181.37929 119.85467"
version="1.1"
id="svg2764"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
sodipodi:docname="2018-02-19-Tree-BinSearch.svg">
<defs
id="defs2758">
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker1391"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow2Lend">
<path
transform="scale(1.1) rotate(180) translate(1,0)"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
id="path1389" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Lend"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path968"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(1.1) rotate(180) translate(1,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker897"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path895" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker5837"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path5835" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker4009"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path4007" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker3741"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path3739" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="-97.865732"
inkscape:cy="45.2901"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1031"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata2761">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-7.0984881,-18.773311)">
<text
id="text2922"
y="136.60889"
x="34.892597"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="34.892597"
id="tspan2920"
sodipodi:role="line">2</tspan></text>
<text
id="text2918"
y="136.60889"
x="16.479761"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="16.479761"
id="tspan2916"
sodipodi:role="line">1</tspan></text>
<text
id="text2926"
y="136.60889"
x="59.731033"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="59.731033"
id="tspan2924"
sodipodi:role="line">3</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="78.143875"
y="136.60889"
id="text2930"><tspan
sodipodi:role="line"
id="tspan2928"
x="78.143875"
y="136.60889"
style="stroke-width:0.26458332">4</tspan></text>
<text
id="text2934"
y="136.60889"
x="101.77277"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="101.77277"
id="tspan2932"
sodipodi:role="line">5</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="121.01716"
y="136.60889"
id="text2938"><tspan
sodipodi:role="line"
id="tspan2936"
x="121.01716"
y="136.60889"
style="stroke-width:0.26458332">6</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="145.09966"
y="136.60889"
id="text2942"><tspan
sodipodi:role="line"
id="tspan2940"
x="145.09966"
y="136.60889"
style="stroke-width:0.26458332">7</tspan></text>
<text
id="text2946"
y="136.60889"
x="163.89047"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="163.89047"
id="tspan2944"
sodipodi:role="line">8</tspan></text>
<g
id="g6387"
class="fragment">
<path
inkscape:transform-center-x="0.00011491714"
transform="matrix(7.4659812,0,0,0.97224634,-898.50136,-25.606218)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path82"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.2624094" />
<text
id="text2910"
y="36.312511"
x="76.327591"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="36.312511"
x="76.327591"
id="tspan2908"
sodipodi:role="line">All things</tspan></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)"
d="m 81.666685,114.57372 v 11.49259"
id="path52"
inkscape:connector-curvature="0"
class="fragment" />
<g
id="g1274"
class="fragment">
<path
inkscape:transform-center-y="-3.2104213"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="6.7110734"
sodipodi:r1="13.422147"
sodipodi:cy="61.745621"
sodipodi:cx="133.534"
sodipodi:sides="3"
id="path2772"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="matrix(3.7369087,0,0,0.95675279,-445.68353,11.955609)"
inkscape:transform-center-x="-4.2068237e-06" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="44.601192"
y="73.238098"
id="text2914"><tspan
sodipodi:role="line"
id="tspan2912"
x="44.601192"
y="73.238098"
style="stroke-width:0.26458332">≤4</tspan></text>
</g>
<path
inkscape:connector-curvature="0"
id="path1387"
d="m 38.369021,114.57372 v 11.49259"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1391)"
class="fragment" />
<g
id="g1379"
class="fragment">
<path
inkscape:transform-center-x="2.9975064e-06"
transform="matrix(1.8375132,0,0,0.96726437,-216.11722,47.592279)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2778"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.2456933" />
<text
id="text6141"
y="110.2974"
x="20.461962"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="110.2974"
x="20.461962"
id="tspan6139"
sodipodi:role="line">≤2</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,767 @@
<?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="181.37929mm"
height="119.85467mm"
viewBox="0 0 181.37929 119.85467"
version="1.1"
id="svg2764"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
sodipodi:docname="2018-02-19-Tree-Motivation.svg">
<defs
id="defs2758">
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker5837"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path5835" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker5549"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path5547"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker5201"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path5199" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker4877"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path4875"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker4601"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path4599" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker4247"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path4245"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker4187"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path4185" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker4009"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path4007" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker3955"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path3953"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker3741"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path3739" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker3529"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path3527" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Lend"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path906"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="-53.41902"
inkscape:cy="45.2901"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1031"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata2761">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-7.0984881,-18.773311)">
<path
inkscape:transform-center-x="-4.2068237e-06"
transform="matrix(3.7369087,0,0,0.95675279,-445.68353,11.955609)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2772"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.2104213" />
<path
inkscape:transform-center-y="-3.2456933"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="6.7110734"
sodipodi:r1="13.422147"
sodipodi:cy="61.745621"
sodipodi:cx="133.534"
sodipodi:sides="3"
id="path2778"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="matrix(1.8375132,0,0,0.96726437,-216.11722,47.592279)"
inkscape:transform-center-x="2.9975064e-06" />
<g
id="g6387">
<path
inkscape:transform-center-x="0.00011491714"
transform="matrix(7.4659812,0,0,0.97224634,-898.50136,-25.606218)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path82"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.2624094" />
<text
id="text2910"
y="36.045242"
x="89.958336"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="36.045242"
x="89.958336"
id="tspan2908"
sodipodi:role="line">≤4?</tspan></text>
</g>
<text
id="text2914"
y="73.238098"
x="44.601192"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="73.238098"
x="44.601192"
id="tspan2912"
sodipodi:role="line">≤2?</tspan></text>
<text
id="text2922"
y="136.60889"
x="34.892597"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="34.892597"
id="tspan2920"
sodipodi:role="line">2</tspan></text>
<path
inkscape:connector-curvature="0"
id="path3525"
d="m 38.092536,114.4375 v 11.71726"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4187)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4247)"
d="m 29.253261,77.324927 0,17.008927"
id="path4243"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path5833"
d="M 53.600553,41.180301 V 58.189228"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5837)" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="17.254728"
y="111.63375"
id="text6141"><tspan
sodipodi:role="line"
id="tspan6139"
x="17.254728"
y="111.63375"
style="stroke-width:0.26458332">≤1?</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="48.525265"
y="49.894493"
id="text6161"><tspan
sodipodi:role="line"
id="tspan6159"
x="48.525265"
y="49.894493"
style="font-size:7.05555534px;stroke-width:0.26458332">y</tspan></text>
<text
id="text6165"
y="87.312225"
x="23.936468"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="87.312225"
x="23.936468"
id="tspan6163"
sodipodi:role="line">y</tspan></text>
<text
id="text6267"
y="120.18638"
x="32.499836"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="120.18638"
x="32.499836"
id="tspan6265"
sodipodi:role="line">n</tspan></text>
<g
id="g6364"
class="fragment fade-out">
<path
inkscape:transform-center-x="-4.2068237e-06"
transform="matrix(3.7369087,0,0,0.95675279,-358.80847,11.955609)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2776"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.2104213" />
<path
inkscape:transform-center-y="-3.2456933"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="6.7110734"
sodipodi:r1="13.422147"
sodipodi:cy="61.745621"
sodipodi:cx="133.534"
sodipodi:sides="3"
id="path2902"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="matrix(1.8375132,0,0,0.96726437,-173.39901,47.592279)"
inkscape:transform-center-x="2.9975064e-06" />
<path
inkscape:transform-center-x="2.9975064e-06"
transform="matrix(1.8375132,0,0,0.96726437,-130.6808,47.592279)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2904"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.2456933" />
<path
inkscape:transform-center-y="-3.2456933"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="6.7110734"
sodipodi:r1="13.422147"
sodipodi:cy="61.745621"
sodipodi:cx="133.534"
sodipodi:sides="3"
id="path2906"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="matrix(1.8375132,0,0,0.96726437,-87.962587,47.592279)"
inkscape:transform-center-x="2.9975064e-06" />
<path
inkscape:connector-curvature="0"
id="path2948"
d="m 19.193726,114.4375 v 11.71726"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3741)"
d="m 62.660988,114.4375 v 11.71726"
id="path3735"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3737"
d="m 81.559798,114.4375 v 11.71726"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3529)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4009)"
d="m 104.99432,114.4375 v 11.71726"
id="path3999"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4001"
d="m 123.89313,114.4375 v 11.71726"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3955)" />
<path
inkscape:connector-curvature="0"
id="path4003"
d="m 148.46158,114.4375 v 11.71726"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3741)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3529)"
d="m 167.36039,114.4375 v 11.71726"
id="path4005"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4601)"
d="M 72.016385,77.324927 V 94.333854"
id="path4597"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4873"
d="M 114.77951,77.324927 V 94.333854"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4877)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5201)"
d="M 157.54263,77.324927 V 94.333854"
id="path5197"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path5545"
d="M 140.19588,41.180301 V 58.189228"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5549)" />
<text
id="text6145"
y="73.238098"
x="128.52382"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="73.238098"
x="128.52382"
id="tspan6143"
sodipodi:role="line">≤6?</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="60.295868"
y="111.63375"
id="text6149"><tspan
sodipodi:role="line"
id="tspan6147"
x="60.295868"
y="111.63375"
style="stroke-width:0.26458332">≤3?</tspan></text>
<text
id="text6153"
y="111.63375"
x="103.05899"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="111.63375"
x="103.05899"
id="tspan6151"
sodipodi:role="line">≤5?</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="146.08939"
y="111.63375"
id="text6157"><tspan
sodipodi:role="line"
id="tspan6155"
x="146.08939"
y="111.63375"
style="stroke-width:0.26458332">≤7?</tspan></text>
<text
id="text6169"
y="87.312225"
x="109.46272"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="87.312225"
x="109.46272"
id="tspan6167"
sodipodi:role="line">y</tspan></text>
<text
id="text6173"
y="120.18638"
x="14.052869"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="120.18638"
x="14.052869"
id="tspan6171"
sodipodi:role="line">y</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="100.10829"
y="120.18638"
id="text6177"><tspan
sodipodi:role="line"
id="tspan6175"
x="100.10829"
y="120.18638"
style="font-size:7.05555534px;stroke-width:0.26458332">y</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="57.345158"
y="120.18638"
id="text6181"><tspan
sodipodi:role="line"
id="tspan6179"
x="57.345158"
y="120.18638"
style="font-size:7.05555534px;stroke-width:0.26458332">y</tspan></text>
<text
id="text6185"
y="120.18638"
x="142.87141"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="120.18638"
x="142.87141"
id="tspan6183"
sodipodi:role="line">y</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="135.12598"
y="49.894493"
id="text6189"><tspan
sodipodi:role="line"
id="tspan6187"
x="135.12598"
y="49.894493"
style="font-size:7.05555534px;stroke-width:0.26458332">n</tspan></text>
<text
id="text6193"
y="87.312225"
x="66.43232"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="87.312225"
x="66.43232"
id="tspan6191"
sodipodi:role="line">n</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="151.95857"
y="87.312225"
id="text6197"><tspan
sodipodi:role="line"
id="tspan6195"
x="151.95857"
y="87.312225"
style="font-size:7.05555534px;stroke-width:0.26458332">n</tspan></text>
<text
id="text6271"
y="120.18638"
x="118.55526"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="120.18638"
x="118.55526"
id="tspan6269"
sodipodi:role="line">n</tspan></text>
<text
id="text6275"
y="120.18638"
x="76.321297"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="120.18638"
x="76.321297"
id="tspan6273"
sodipodi:role="line">n</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="161.84755"
y="120.18638"
id="text6279"><tspan
sodipodi:role="line"
id="tspan6277"
x="161.84755"
y="120.18638"
style="font-size:7.05555534px;stroke-width:0.26458332">n</tspan></text>
</g>
<text
id="text2918"
y="136.60889"
x="16.479761"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="16.479761"
id="tspan2916"
sodipodi:role="line">1</tspan></text>
<text
id="text2926"
y="136.60889"
x="59.731033"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="59.731033"
id="tspan2924"
sodipodi:role="line">3</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="78.143875"
y="136.60889"
id="text2930"><tspan
sodipodi:role="line"
id="tspan2928"
x="78.143875"
y="136.60889"
style="stroke-width:0.26458332">4</tspan></text>
<text
id="text2934"
y="136.60889"
x="101.77277"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="101.77277"
id="tspan2932"
sodipodi:role="line">5</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="121.01716"
y="136.60889"
id="text2938"><tspan
sodipodi:role="line"
id="tspan2936"
x="121.01716"
y="136.60889"
style="stroke-width:0.26458332">6</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="145.09966"
y="136.60889"
id="text2942"><tspan
sodipodi:role="line"
id="tspan2940"
x="145.09966"
y="136.60889"
style="stroke-width:0.26458332">7</tspan></text>
<text
id="text2946"
y="136.60889"
x="163.89047"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="136.60889"
x="163.89047"
id="tspan2944"
sodipodi:role="line">8</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -0,0 +1,745 @@
<?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="180.03366mm"
height="262.54929mm"
viewBox="0 0 180.03366 262.54929"
version="1.1"
id="svg2764"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
sodipodi:docname="2018-02-19-Tree-Unbalanced.svg">
<defs
id="defs2758">
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker5837"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5835"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker5549"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path5547"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker5201"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5199"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker4187"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4185"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker4009"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4007"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker3955"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path3953"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;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="marker3741"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3739"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker3529"
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:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3527"
inkscape:connector-curvature="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="path906"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
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="473.15761"
inkscape:cy="498.06696"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1031"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata2761">
<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(-8.4441142,-20.889979)">
<g
id="g6387">
<path
inkscape:transform-center-x="0.00011491714"
transform="matrix(7.4659812,0,0,0.97224634,-898.50136,-25.606218)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path82"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.2624094" />
<text
id="text2910"
y="36.045242"
x="89.958336"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="36.045242"
x="89.958336"
id="tspan2908"
sodipodi:role="line">≤1?</tspan></text>
</g>
<text
id="text2922"
y="283.43927"
x="40.184269"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="283.43927"
x="40.184269"
id="tspan2920"
sodipodi:role="line">2</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="16.397289"
y="49.894493"
id="text6161"><tspan
sodipodi:role="line"
id="tspan6159"
x="16.397289"
y="49.894493"
style="font-size:7.05555534px;stroke-width:0.26458332">y</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
d="M 21.839561,41.085402 V 272.83527"
id="path2948"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
id="text2918"
y="283.43927"
x="19.125597"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="283.43927"
x="19.125597"
id="tspan2916"
sodipodi:role="line">1</tspan></text>
<text
id="text2926"
y="283.2894"
x="59.731033"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="283.2894"
x="59.731033"
id="tspan2924"
sodipodi:role="line">3</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="79.731377"
y="283.43927"
id="text2930"><tspan
sodipodi:role="line"
id="tspan2928"
x="79.731377"
y="283.43927"
style="stroke-width:0.26458332">4</tspan></text>
<text
id="text2934"
y="283.2894"
x="101.77277"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="283.2894"
x="101.77277"
id="tspan2932"
sodipodi:role="line">5</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="124.72131"
y="283.2894"
id="text2938"><tspan
sodipodi:role="line"
id="tspan2936"
x="124.72131"
y="283.2894"
style="stroke-width:0.26458332">6</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="151.14728"
y="283.43927"
id="text2942"><tspan
sodipodi:role="line"
id="tspan2940"
x="151.14728"
y="283.43927"
style="stroke-width:0.26458332">7</tspan></text>
<text
id="text2946"
y="283.2894"
x="169.9381"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="283.2894"
x="169.9381"
id="tspan2944"
sodipodi:role="line">8</tspan></text>
<g
id="g265"
class="fragment">
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4187)"
d="M 43.384206,78.159494 V 272.83527"
id="path3525"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path5545"
d="M 109.20335,41.180301 V 58.189228"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5549)" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="104.13345"
y="49.894493"
id="text6189"><tspan
sodipodi:role="line"
id="tspan6187"
x="104.13345"
y="49.894493"
style="font-size:7.05555534px;stroke-width:0.26458332">n</tspan></text>
<path
inkscape:transform-center-x="-1.3992329e-05"
transform="matrix(6.5291357,0,0,0.94615865,-762.51082,13.586649)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path131"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.174872" />
<text
id="text200"
y="73.516113"
x="97.782455"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="73.516113"
x="97.782455"
id="tspan198"
sodipodi:role="line">≤2?</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="38.124912"
y="87.610229"
id="text238"><tspan
sodipodi:role="line"
id="tspan236"
x="38.124912"
y="87.610229"
style="font-size:7.05555534px;stroke-width:0.26458332">y</tspan></text>
</g>
<g
id="g276"
class="fragment">
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3741)"
d="M 62.660988,114.92158 V 272.83527"
id="path3735"
inkscape:connector-curvature="0" />
<path
inkscape:transform-center-y="-3.1834575"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="6.7110734"
sodipodi:r1="13.422147"
sodipodi:cy="61.745621"
sodipodi:cx="133.534"
sodipodi:sides="3"
id="path178"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="matrix(5.6004799,0,0,0.94871721,-627.70908,50.059656)"
inkscape:transform-center-x="-1.1994294e-05" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5549)"
d="M 120.14538,78.89604 V 95.904967"
id="path180"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
id="text184"
y="87.610229"
x="115.07549"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="87.610229"
x="115.07549"
id="tspan182"
sodipodi:role="line">n</tspan></text>
<text
id="text204"
y="110.2974"
x="109.47346"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="110.2974"
x="109.47346"
id="tspan202"
sodipodi:role="line">≤3?</tspan></text>
<text
id="text242"
y="124.13628"
x="56.567562"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="124.13628"
x="56.567562"
id="tspan240"
sodipodi:role="line">y</tspan></text>
</g>
<g
id="g317"
class="fragment">
<path
inkscape:transform-center-x="-3.7137509e-06"
transform="matrix(2.766677,0,0,0.9616483,-216.36016,158.31049)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2776"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.2268521" />
<path
inkscape:transform-center-y="-3.2456933"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="6.7110734"
sodipodi:r1="13.422147"
sodipodi:cy="61.745621"
sodipodi:cx="133.534"
sodipodi:sides="3"
id="path2906"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="matrix(1.8375132,0,0,0.96726437,-81.484679,195.06576)"
inkscape:transform-center-x="2.9975064e-06" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3737"
d="M 83.147299,151.67113 V 272.83527"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3529)" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4009)"
d="m 104.99432,188.15343 v 84.68184"
id="path3999"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4001"
d="m 128.12649,224.36845 v 48.46682"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3955)" />
<path
inkscape:connector-curvature="0"
id="path4003"
d="m 154.5092,261.11801 v 11.71726"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3741)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3529)"
d="m 173.40801,261.11801 v 11.71726"
id="path4005"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5201)"
d="m 164.02054,224.79841 v 17.00893"
id="path5197"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
id="text6145"
y="219.16727"
x="141.8873"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="stroke-width:0.26458332"
y="219.16727"
x="141.8873"
id="tspan6143"
sodipodi:role="line">≤6?</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="152.56729"
y="259.10724"
id="text6157"><tspan
sodipodi:role="line"
id="tspan6155"
x="152.56729"
y="259.10724"
style="stroke-width:0.26458332">≤7?</tspan></text>
<text
id="text6185"
y="266.86688"
x="148.91904"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="266.86688"
x="148.91904"
id="tspan6183"
sodipodi:role="line">y</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="158.43648"
y="234.78569"
id="text6197"><tspan
sodipodi:role="line"
id="tspan6195"
x="158.43648"
y="234.78569"
style="font-size:7.05555534px;stroke-width:0.26458332">n</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="167.89517"
y="266.86688"
id="text6279"><tspan
sodipodi:role="line"
id="tspan6277"
x="167.89517"
y="266.86688"
style="font-size:7.05555534px;stroke-width:0.26458332">n</tspan></text>
<path
inkscape:transform-center-x="-8.5877826e-06"
transform="matrix(4.6671884,0,0,0.95264833,-492.23443,86.395726)"
sodipodi:type="star"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path206"
sodipodi:sides="3"
sodipodi:cx="133.534"
sodipodi:cy="61.745621"
sodipodi:r1="13.422147"
sodipodi:r2="6.7110734"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:transform-center-y="-3.1966491" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path208"
d="m 130.99389,115.42209 v 17.00892"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5549)" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="125.924"
y="124.13628"
id="text212"><tspan
sodipodi:role="line"
id="tspan210"
x="125.924"
y="124.13628"
style="font-size:7.05555534px;stroke-width:0.26458332">n</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="120.16424"
y="147.71513"
id="text216"><tspan
sodipodi:role="line"
id="tspan214"
x="120.16424"
y="147.71513"
style="stroke-width:0.26458332">≤4?</tspan></text>
<path
inkscape:transform-center-y="-3.2104213"
d="m 145.15792,68.456694 -23.24784,0 11.62392,-20.13322 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="6.7110734"
sodipodi:r1="13.422147"
sodipodi:cy="61.745621"
sodipodi:cx="133.534"
sodipodi:sides="3"
id="path218"
style="fill:#cccccc;fill-opacity:1;stroke:#4d4d4d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="matrix(3.7369087,0,0,0.95675279,-357.19697,122.41508)"
inkscape:transform-center-x="-4.2068237e-06" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="130.13531"
y="183.69749"
id="text222"><tspan
sodipodi:role="line"
id="tspan220"
x="130.13531"
y="183.69749"
style="stroke-width:0.26458332">≤5?</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5549)"
d="M 141.80738,151.63978 V 168.6487"
id="path224"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
id="text228"
y="160.35387"
x="136.7375"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="160.35387"
x="136.7375"
id="tspan226"
sodipodi:role="line">n</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="148.0154"
y="196.4856"
id="text232"><tspan
sodipodi:role="line"
id="tspan230"
x="148.0154"
y="196.4856"
style="font-size:7.05555534px;stroke-width:0.26458332">n</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path234"
d="m 153.08528,187.77176 v 17.00892"
style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5549)" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="75.933685"
y="160.35387"
id="text246"><tspan
sodipodi:role="line"
id="tspan244"
x="75.933685"
y="160.35387"
style="font-size:7.05555534px;stroke-width:0.26458332">y</tspan></text>
<text
id="text250"
y="196.4856"
x="99.372337"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="196.4856"
x="99.372337"
id="tspan248"
sodipodi:role="line">y</tspan></text>
<text
id="text254"
y="234.78569"
x="122.62236"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:7.05555534px;stroke-width:0.26458332"
y="234.78569"
x="122.62236"
id="tspan252"
sodipodi:role="line">y</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB