Updated slides for tomorrow

pull/1/head
Oliver Kennedy 2021-03-01 21:42:45 -05:00
parent d368c00149
commit 82a285daf7
Signed by: okennedy
GPG Key ID: 3E5F9B3ABD3FDB60
24 changed files with 3189 additions and 18 deletions

View File

@ -0,0 +1,411 @@
---
template: templates/cse4562_2021_slides.erb
title: "Indexing"
date: March 2, 2021
textbook: "Ch. 8.3-8.4, 14.1-14.2, 14.4"
---
<!-- 2019 by OK
This section needs
(1) a more comprehensive discussion of the ISAM and B+Trees. The hastily imported keynote slides from yesteryears past are not doing a great job of conveying how the structures work.
(2) More *stuff*. The slides as-is are about 25-30 minutes out of 50. We had a great discussion working through a few examples to round out the class... that might be a good use of the time. A more thorough discussion of B+Trees with examples of Insert/Delete might also help.
(3) Another thing that would be handy is to show an example of *building* an ISAM index. The Sort => Scan => Left-Deep Build algorithm would help.
(4) Finally... to re-emphasize, more B+Tree examples.
-->
<section>
<section>
<h3>Today</h3>
<p>Leveraging Organization</p>
</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>
<img src="2021-03-02/SortedList.svg">
<p class="fragment">$\sigma_{R.A = 7}(R)$</p>
<p class="fragment">Where is the data for key 7?</p>
</section>
<section>
<p>Option 1: Linear search</p>
<p class="fragment">$O(N)$ IOs</p>
</section>
<section>
<h3>Initial Assumptions</h3>
<p>Data is sorted on an attribute of interest (R.A)</p>
<p>Updates are not relevant</p>
<p></p>
</section>
</section>
<section>
<section>
<p>Option 2: Binary Search</p>
</section>
<section>
<svg data-src="2021-03-02/BinarySearch.svg" width="700px"/>
</section>
<section>
<p>$O(\log_2 N)$ IOs</p>
<p class="fragment">Better, but still not ideal.</p>
</section>
<section>
<p>Idea: Precompute several layers of the decision tree and store them together.</p>
</section>
<section>
<svg data-src="2021-03-02/ISAM-Motivation.svg" height="525px" width="675px"/>
</section>
<section>
<h3>Fence Pointers</h3>
<svg data-src="2021-03-02/ISAM-OnePage.svg" height="525px" width="675px"/>
</section>
<section>
<p>... but what if we need more than one page?</p>
<p class="fragment">Add more indirection!</p>
</section>
<section>
<h3>ISAM Trees</h3>
<img src="graphics/2021-03-02-ISAM.png" height="500px">
</section>
</section>
<section>
<section>
<p>Which of the following is better?</p>
</section>
<section>
<svg data-src="graphics/2021-03-02-Tree-Motivation.svg"/>
</section>
<section>
<svg data-src="graphics/2021-03-02-Tree-Unbalanced.svg"/>
</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>
<p>It's important that the trees be balanced</p>
<p class="fragment">... but what if we need to update the tree?</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/2021-03-02-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><img src="graphics/2021-03-02-InsertExample-1.png" height="300px"/></section>
<section><img src="graphics/2021-03-02-InsertExample-2.png" height="300px"/></section>
<section><img src="graphics/2021-03-02-InsertExample-3.png" height="300px"/></section>
<section><img src="graphics/2021-03-02-InsertExample-4.png" height="300px"/></section>
<section><img src="graphics/2021-03-02-InsertExample-5.png" height="300px"/></section>
<section><img src="graphics/2021-03-02-InsertExample-6.png" height="300px"/></section>
<section><img src="graphics/2021-03-02-InsertExample-7.png" height="300px"/></section>
<section><img src="graphics/2021-03-02-InsertExample-8.png" height="300px"/></section>
<section><p>Deletions reverse this process (at 50% fill).</p></section>
</section>
<section>
<section>
<h3>Incorporating Trees into Queries</h3>
</section>
<section>
<p style="margin: 100px;">
$\sigma_C(R)$ <span style="margin: 50px">and</span> $(\ldots \bowtie_C R)$
</p>
</section>
<section>
<p>Original Query: $\pi_A\left(\sigma_{B = 1 \wedge C < 3}(R)\right)$</p>
<p>Possible Implementations:<dl>
<div>
<dt>$\pi_A\left(\sigma_{B = 1 \wedge C < 3}(R)\right)$</dt>
<dd class="fragment">Always works... but slow</dd>
</div>
<div class="fragment">
<dt>$\pi_A\left(\sigma_{\wedge B = 1}( IndexScan(R,\;C < 3) ) \right)$</dt>
<dd class="fragment">Requires a non-hash index on $C$</dd>
</div>
<div class="fragment">
<dt>$\pi_A\left(\sigma_{\wedge C < 3}( IndexScan(R,\;B=1) ) \right)$</dt>
<dd class="fragment">Requires a any index on $B$</dd>
</div>
<div class="fragment">
<dt>$\pi_A\left( IndexScan(R,\;B = 1, C < 3) \right)$</dt>
<dd class="fragment">Requires any index on $(B, C)$</dd>
</div>
</ul></p>
</section>
<section>
<h3>Lexical Sort (Non-Hash Only)</h3>
<p>Sort data on $(A, B, C, \ldots)$</p>
<p>First sort on $A$, $B$ is a tiebreaker for $A$,<br/> $C$ is a tiebreaker for $B$, etc...</p>
<dl>
<div class="fragment">
<dt>All of the $A$ values are adjacent.</dt>
<dd>Supports $\sigma_{A = a}$ or $\sigma_{A \geq b}$</dd>
</div>
<div class="fragment">
<dt>For a specific $A$, all of the $B$ values are adjacent</dt>
<dd>Supports $\sigma_{A = a \wedge B = b}$ or $\sigma_{A = a \wedge B \geq b}$</dd>
</div>
<div class="fragment">
<dt>For a specific $(A,B)$, all of the $C$ values are adjacent</dt>
<dd>Supports $\sigma_{A = a \wedge B = b \wedge C = c}$ or $\sigma_{A = a \wedge B = b \wedge C \geq c}$</dd>
</div>
<dt class="fragment">...</dt>
</dl>
</section>
<section>
<h3>For a query $\sigma_{c_1 \wedge \ldots \wedge c_N}(R)$</h3>
<ol>
<li class="fragment">For every $c_i \equiv (A = a)$: Do you have any index on $A$?</li>
<li class="fragment">For every $c_i \in \{\; (A \geq a), (A > a), (A \leq a), (A < a)\;\}$: Do you have a tree index on $A$?</li>
<li class="fragment">For every $c_i, c_j$, do you have an appropriate index?</li>
<li class="fragment">etc...</li>
<li class="fragment">A simple table scan is also an option</li>
</ol>
<p class="fragment">Which one do we pick?</p>
<p class="fragment">(You need to know the cost of each plan)</p>
</section>
<section>
<p>These are called "Access Paths"</p>
</section>
<section>
<h3>Strategies for Implementing $(\ldots \bowtie_{c} S)$</h3>
<dl>
<dt>Sort/Merge Join</dt>
<dd>Sort all of the data upfront, then scan over both sides.</dd>
<dt>In-Memory Index Join (1-pass Hash; Hash Join)</dt>
<dd>Build an in-memory index on one table, scan the other.</dd>
<dt>Partition Join (2-pass Hash; External Hash Join)</dt>
<dd>Partition both sides so that tuples don't join across partitions.</dd>
<dt class="fragment" data-fragment-index="1">Index Nested Loop Join</dt>
<dd class="fragment" data-fragment-index="1">Use an <i>existing</i> index instead of building one.</dd>
</dl>
</section>
<section>
<h3>Index Nested Loop Join</h3>
To compute $R \bowtie_{S.B > R.A} S$ with an index on $S.B$
<ol>
<li>Read one row of $R$</li>
<li>Get the value of $a = R.A$</li>
<li>Start index scan on $S.B > a$</li>
<li>Return all rows from the index scan</li>
<li>Read the next row of $R$ and repeat</li>
</ol>
</section>
<section>
<h3>Index Nested Loop Join</h3>
To compute $R \bowtie_{S.B\;[\theta]\;R.A} S$ with an index on $S.B$
<ol>
<li>Read one row of $R$</li>
<li>Get the value of $a = R.A$</li>
<li>Start index scan on $S.B\;[\theta]\;a$</li>
<li>Return all rows from the index scan</li>
<li>Read the next row of $R$ and repeat</li>
</ol>
</section>
</section>
<section>
<section>
<h3>Hash Indexes</h3>
<p style="margin-top: 100px; text-align: left;">
A hash function $h(k)$ is ...
<dl>
<dt>... deterministic</dt>
<dd>The same $k$ always produces the same hash value.</dd>
<dt>... (pseudo-)random</dt>
<dd>Different $k$s are unlikely to have the same hash value.</dd>
</dl>
</p>
<p class="fragment">Modulus $h(k)\mod N$ gives you a random number in $[0, N)$</p>
</section>
<section>
<svg data-src="graphics/2021-03-02-HashTable.svg" class="stretch"/>
</section>
<section>
<h3>Problems</h3>
<dl>
<dt>$N$ is too small</dt>
<dd>Too many overflow pages (slower reads).</dd>
<dt>$N$ is too big</dt>
<dd>Too many normal pages (wasted space).</dd>
</dl>
</section>
</section>
<section>
<section>
<p><b>Idea:</b> Resize the structure as needed</p>
</section>
<section>
<p>To keep things simple, let's use $$h(k) = k$$</p>
<p class="fragment" style="font-size: 70%">(you wouldn't actually do this in practice)</p>
</section>
<section>
<svg data-src="graphics/2021-03-02-HashResize-Naive.svg" class="stretch"/>
</section>
<section>
<p>Changing hash functions reallocates everything <b>randomly</b></p>
<p class="fragment">Need to keep the entire source and hash table in memory!</p>
</section>
<section>
$$h(k) \mod N$$
vs
$$h(h) \mod 2N$$
</section>
<section>
<p>if $h(k) = x \mod N$</p>
<p>then</p>
<p>$h(k) = $ either $x$ or $2x \mod 2N$</p>
<p class="fragment">Each key is moved (or not) to precisely one of two buckets in the resized hash table.</p>
<p class="fragment">Never need more than 3 pages in memory at once.</p>
</section>
<section>
<p>Changing sizes still requires reading everything!</p>
<p class="fragment"><b>Idea:</b> Only redistribute buckets that are too big</p>
</section>
<section>
<p>Add a directory (a level of indirection)</p>
<ul>
<li>$N$ hash buckets = $N$ directory entries<br/>(but $\leq N$ actual pages)</li>
<li>Directory entries point to actual pages on disk.</li>
<li>Multiple directory entries can point to the same page.</li>
<li>When a page fills up, it (and its directory entries) split.</li>
</ul>
</section>
<section>
<svg data-src="graphics/2021-03-02-HashResize-Dynamic.svg" class="stretch" />
</section>
<section>
<h3>Dynamic Hashing</h3>
<ul>
<li>Add a level of indirection (Directory).</li>
<li>A data page $i$ can store data with $h(k)%2^n=i$ for any $n$.</li>
<li>Double the size of the directory (almost free) by duplicating existing entries.</li>
<li>When bucket $i$ fills up, split on the next power of 2.</li>
<li>Can also merge buckets/halve the directory size. </li>
</ul>
</section>
</section>
<section>
<p>Next time: LSM Trees and CDF-Indexing</p>
</section>

View File

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,635 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="323.86111mm"
height="145.73514mm"
viewBox="0 0 323.86112 145.73514"
version="1.1"
id="svg8"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="BinarySearch.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="622.48763"
inkscape:cy="314.58409"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1053"
inkscape:window-x="960"
inkscape:window-y="369"
inkscape:window-maximized="1" />
<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(37.394244,86.47596)">
<image
width="38.893749"
height="42.862499"
preserveAspectRatio="none"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJMAAACiCAYAAABFw/8dAAAABGdBTUEAALGPC/xhBQAAACBjSFJN
AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABWWlUWHRYTUw6Y29tLmFkb2Jl
LnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1Q
IENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5
OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91
dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4w
LyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAg
IDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAAA99UlE
QVR4Ae2dWZAlx3Weq+puvfdsmAFALAOAILiIm0iLFEWJlKjFlMJiSFYwZNFS+Mnyg8MRtvVmhyP8
akfIj/aDI2wpFDJpiZsdZlAbF5ESF4EbKGCG2GYADGbBbL33Xav8f3n6dOW9vdyeme6ZnsbNmerM
yuVk5jl/njyVVZk3TQ6oO3/+/MTKyspUtVqdrFQqU2maTmZZdm+v13tAXT5WFMUx+YcJ6zqyFtdQ
vgmFK/LH5Fd19bk8zzsq29LVU55l3beU4bKu66J9VfFXFX9V91d0f07plxRe6nQ6yxMTE0tjY2NL
Dz744KriDpxL79YenTlzZkwgOSLhHRJg7pfQHpYQT+oe/17dHxF4pnU/oz7OKO+ErkT34aLfg2Hn
BfGx83vLTwo0zN+YD5ZaebUjEYgSgWpZ+RdUfhE/SfJrynRBbXxZ11nlO9vtZhfGxrLr9Xr9+uOP
Pw5A7zq378H05JNP1mZnZw9NTk4+JMG8TYx/s0DymASDhnlI9/fpHk2SyA+XCb1IJKh1wBC+Ued0
KGdh8w1MJaA8rYwv06xOYzNt1H85u6dNAlqgrb71lPCqrld6vfyc/OcFvFNpmj+ztJS+kiSLcz/7
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
"
id="image919"
x="-177.09425"
y="15.888998"
transform="translate(139.70001)" />
<g
id="g993"
transform="translate(69.850004,-5.2916667)">
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect983"
width="69.801926"
height="18.686405"
x="146.31494"
y="26.499325" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="151.51906"
y="39.700161"
id="text987"><tspan
sodipodi:role="line"
id="tspan985"
x="151.51906"
y="39.700161"
style="stroke-width:0.264583">&lt;7&gt;</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="186.44403"
y="39.700161"
id="text991"><tspan
sodipodi:role="line"
id="tspan989"
x="186.44403"
y="39.700161"
style="stroke-width:0.264583">&lt;8&gt;</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="233.11104"
y="57.057766"
id="text997"><tspan
sodipodi:role="line"
id="tspan995"
x="233.11104"
y="57.057766"
style="stroke-width:0.264583">Page 4</tspan></text>
<g
id="g1088"
class="fragment">
<path
sodipodi:type="star"
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1061"
sodipodi:sides="3"
sodipodi:cx="134.91399"
sodipodi:cy="-36.731106"
sodipodi:r1="31.359852"
sodipodi:r2="15.679925"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359878"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 134.91399,-68.090958 13.57921,23.51989 13.57921,23.519889 -27.15842,-2e-6 -27.15843,0 13.57921,-23.519887 z"
inkscape:transform-center-y="-3.3021716"
transform="matrix(5.0534283,0,0,0.42119743,-537.21377,-57.585646)"
inkscape:transform-center-x="2.0555694e-05" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="115.9409"
y="-53.296906"
id="text1065"
class="fragment"><tspan
sodipodi:role="line"
id="tspan1063"
x="115.9409"
y="-53.296906"
style="stroke-width:0.264583">Q1: Page 2</tspan></text>
</g>
<g
id="g1083">
<g
id="g969"
transform="translate(0,-5.2916667)">
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect833"
width="69.801933"
height="18.686405"
x="6.6149349"
y="26.499325" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="11.819046"
y="39.700161"
id="text837"><tspan
sodipodi:role="line"
id="tspan835"
x="11.819046"
y="39.700161"
style="stroke-width:0.264583">&lt;1&gt;</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="46.744049"
y="39.700161"
id="text848"><tspan
sodipodi:role="line"
id="tspan846"
x="46.744049"
y="39.700161"
style="stroke-width:0.264583">&lt;2&gt;</tspan></text>
</g>
<g
id="g956"
transform="translate(0,-5.2916667)">
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect867"
width="69.850006"
height="18.686405"
x="76.464935"
y="26.499325" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="81.669052"
y="39.700161"
id="text871"><tspan
sodipodi:role="line"
id="tspan869"
x="81.669052"
y="39.700161"
style="stroke-width:0.264583">&lt;3&gt;</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="116.59405"
y="39.700161"
id="text879"><tspan
sodipodi:role="line"
id="tspan877"
x="116.59405"
y="39.700161"
style="stroke-width:0.264583">&lt;4&gt;</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="23.625578"
y="57.057766"
id="text973"><tspan
sodipodi:role="line"
id="tspan971"
x="23.625578"
y="57.057766"
style="stroke-width:0.264583">Page 1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="93.540955"
y="57.057766"
id="text977"><tspan
sodipodi:role="line"
id="tspan975"
x="93.540955"
y="57.057766"
style="stroke-width:0.264583">Page 2</tspan></text>
</g>
<rect
style="opacity:0.94;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect1147"
width="144.1373"
height="49.928577"
x="1.4995055"
y="15.888995"
class="fragment" />
<path
sodipodi:type="star"
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1090"
sodipodi:sides="3"
sodipodi:cx="134.91399"
sodipodi:cy="-36.731106"
sodipodi:r1="31.359852"
sodipodi:r2="15.679925"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359878"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 134.91399,-68.090958 13.57921,23.51989 13.57921,23.519889 -27.15842,-2e-6 -27.15843,0 13.57921,-23.519887 z"
inkscape:transform-center-y="-1.6390065"
transform="matrix(2.5082286,0,0,0.20905796,-124.70711,-24.692853)"
inkscape:transform-center-x="1.5867014e-05"
class="fragment" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="186.97662"
y="-15.901786"
id="text1095"
class="fragment"><tspan
sodipodi:role="line"
id="tspan1093"
x="186.97662"
y="-15.901786"
style="stroke-width:0.264583">Q2: Page 3</tspan></text>
<g
id="g1107">
<g
id="g943"
transform="translate(0,-5.2916667)">
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect883"
width="69.801926"
height="18.686405"
x="146.31494"
y="26.499325" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="151.51906"
y="39.700161"
id="text887"><tspan
sodipodi:role="line"
id="tspan885"
x="151.51906"
y="39.700161"
style="stroke-width:0.264583">&lt;5&gt;</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="186.44403"
y="39.700161"
id="text928"><tspan
sodipodi:role="line"
id="tspan926"
x="186.44403"
y="39.700161"
style="stroke-width:0.264583">&lt;6&gt;</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="163.26099"
y="57.057766"
id="text981"><tspan
sodipodi:role="line"
id="tspan979"
x="163.26099"
y="57.057766"
style="stroke-width:0.264583">Page 3</tspan></text>
</g>
<rect
style="opacity:0.94;fill:#ffffff;stroke:none;stroke-width:0.695012;stroke-linecap:round;stroke-linejoin:round"
id="rect1149"
width="70.153526"
height="49.928577"
x="145.63681"
y="15.888995"
class="fragment" />
<path
sodipodi:type="star"
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1109"
sodipodi:sides="3"
sodipodi:cx="134.91399"
sodipodi:cy="-36.731106"
sodipodi:r1="31.359852"
sodipodi:r2="15.679925"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359878"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 134.91399,-68.090958 13.57921,23.51989 13.57921,23.519889 -27.15842,-2e-6 -27.15843,0 13.57921,-23.519887 z"
inkscape:transform-center-y="-1.6390065"
transform="matrix(1.1695105,0,0,0.20905796,92.262162,11.819648)"
inkscape:transform-center-x="9.3546564e-06"
class="fragment" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,922 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="450mm"
height="350mm"
viewBox="0 0 449.99999 349.99999"
version="1.1"
id="svg1157"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="ISAM-Motivation.svg">
<defs
id="defs1151">
<marker
style="overflow:visible"
id="marker3367"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="scale(0.8) 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="path3365" />
</marker>
<marker
style="overflow:visible"
id="marker3357"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="scale(0.8) 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="path3355" />
</marker>
<marker
style="overflow:visible"
id="marker3347"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="scale(0.8) 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="path3345" />
</marker>
<marker
style="overflow:visible"
id="marker3337"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="scale(0.8) 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="path3335" />
</marker>
<marker
style="overflow:visible;"
id="marker3103"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path3101" />
</marker>
<marker
style="overflow:visible;"
id="marker3093"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path3091" />
</marker>
<marker
style="overflow:visible;"
id="marker3083"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path3081" />
</marker>
<marker
style="overflow:visible;"
id="marker3073"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path3071" />
</marker>
<marker
style="overflow:visible;"
id="marker2537"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true"
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="path2535" />
</marker>
<marker
style="overflow:visible;"
id="marker2527"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2525" />
</marker>
<marker
style="overflow:visible;"
id="marker2517"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2515" />
</marker>
<marker
style="overflow:visible;"
id="marker2507"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2505" />
</marker>
<marker
style="overflow:visible;"
id="marker2497"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2495" />
</marker>
<marker
style="overflow:visible;"
id="marker2487"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2485" />
</marker>
<marker
style="overflow:visible;"
id="marker2477"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2475" />
</marker>
<marker
style="overflow:visible;"
id="marker2467"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2465" />
</marker>
<marker
style="overflow:visible;"
id="marker2457"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2455" />
</marker>
<marker
style="overflow:visible;"
id="marker2447"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2445" />
</marker>
<marker
style="overflow:visible;"
id="marker2437"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2435" />
</marker>
<marker
style="overflow:visible;"
id="marker2427"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<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="path2425" />
</marker>
<marker
style="overflow:visible"
id="marker2189"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2187" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1924" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="846.45929"
inkscape:cy="725.37327"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1053"
inkscape:window-x="960"
inkscape:window-y="369"
inkscape:window-maximized="1" />
<metadata
id="metadata1154">
<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(343.00066,210.5712)">
<g
id="g2361"
data-fragment-index="2"
class="fragment"
transform="translate(11.641664,10.583333)">
<rect
style="opacity:0.94;fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect2310"
width="368.82599"
height="300.15936"
x="-284.38699"
y="-210.0712" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="80.935814"
y="57.147324"
id="text2350"><tspan
sodipodi:role="line"
id="tspan2348"
x="80.935806"
y="57.147324"
style="text-align:end;text-anchor:end;stroke-width:0.264583">Put all of this</tspan><tspan
sodipodi:role="line"
x="80.935814"
y="70.37645"
style="text-align:end;text-anchor:end;stroke-width:0.264583"
id="tspan2354">information</tspan><tspan
sodipodi:role="line"
x="80.935814"
y="83.605576"
style="text-align:end;text-anchor:end;stroke-width:0.264583"
id="tspan2352">on one page</tspan></text>
</g>
<rect
style="opacity:0.94;fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect1893"
width="378.51157"
height="19.645943"
x="-277.28592"
y="112.21918" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-274.51569"
y="125.44488"
id="text1722"><tspan
sodipodi:role="line"
id="tspan1720"
x="-274.51569"
y="125.44488"
style="stroke-width:0.264583">1...100</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-197.74043"
y="125.44488"
id="text1726"><tspan
sodipodi:role="line"
id="tspan1724"
x="-197.74043"
y="125.44488"
style="stroke-width:0.264583">101...200</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-107.11102"
y="125.44488"
id="text1730"><tspan
sodipodi:role="line"
id="tspan1728"
x="-107.11102"
y="125.44488"
style="stroke-width:0.264583">201...300</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-16.838058"
y="122.2487"
id="text1734"><tspan
sodipodi:role="line"
id="tspan1732"
x="-16.838058"
y="122.2487"
style="stroke-width:0.264583">...</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="32.987865"
y="125.44488"
id="text1738"><tspan
sodipodi:role="line"
id="tspan1736"
x="32.987865"
y="125.44488"
style="stroke-width:0.264583">6301...6400</tspan></text>
<g
id="g1753"
transform="translate(68.684433,-102.57728)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-195.98274"
y="-64.58445"
id="text1744"><tspan
sodipodi:role="line"
id="tspan1742"
x="-195.98274"
y="-64.58445"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">≤ 3200?</tspan></text>
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1748"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549514,110.41472,-21.220822)" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-195.98274"
y="-64.58445"
id="text1767"><tspan
sodipodi:role="line"
id="tspan1765"
x="-195.98274"
y="-64.58445"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">≤ 3200?</tspan></text>
</g>
<g
id="g1779"
transform="translate(26.424936,-115.25482)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-271.22406"
y="-5.0969477"
id="text1757"
transform="translate(112.20916,3.44302)"><tspan
sodipodi:role="line"
id="tspan1755"
x="-271.22406"
y="-5.0969477"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">≤ 1600?</tspan></text>
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1759"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549515,147.38255,41.7097)" />
</g>
<g
id="g1791"
transform="translate(21.133269,-65.001833)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-271.22406"
y="-5.0969477"
id="text1783"
transform="translate(112.20916,3.44302)"><tspan
sodipodi:role="line"
id="tspan1781"
x="-271.22406"
y="-5.0969477"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">≤ 800?</tspan></text>
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1785"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549515,147.38255,41.7097)" />
</g>
<g
id="g1799"
transform="translate(10.549935,-14.748842)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-271.22406"
y="-5.0969477"
id="text1795"
transform="translate(112.20916,3.44302)"><tspan
sodipodi:role="line"
id="tspan1793"
x="-271.22406"
y="-5.0969477"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">≤ 400?</tspan></text>
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1797"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549515,147.38255,41.7097)" />
</g>
<g
id="g1811"
transform="translate(-5.3250622,35.504149)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-271.22406"
y="-5.0969477"
id="text1807"
transform="translate(112.20916,3.44302)"><tspan
sodipodi:role="line"
id="tspan1805"
x="-271.22406"
y="-5.0969477"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">≤ 200?</tspan></text>
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1809"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549515,147.38255,41.7097)" />
</g>
<g
id="g1819"
transform="translate(-52.950067,83.129166)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-271.22406"
y="-5.0969477"
id="text1815"
transform="translate(112.20916,3.44302)"><tspan
sodipodi:role="line"
id="tspan1813"
x="-271.22406"
y="-5.0969477"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">≤ 100?</tspan></text>
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1817"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549515,147.38255,41.7097)" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2517);stroke-miterlimit:4;stroke-dasharray:none"
d="m -210.3386,38.574216 -1.43518,12.164036"
id="path1821" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2507);stroke-miterlimit:4;stroke-dasharray:none"
d="m -117.95896,38.574216 6.72614,12.164033"
id="path1823"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker3367);stroke-miterlimit:4;stroke-dasharray:none"
d="m -164.14878,3.1132342 0.96814,-15.4385242"
id="path1825" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2487);stroke-miterlimit:4;stroke-dasharray:none"
d="M -117.80458,-11.390085 -63.607797,3.1132273"
id="path1827"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker3357);stroke-miterlimit:4;stroke-dasharray:none"
d="m -148.27378,-47.139755 -0.005,-15.091344"
id="path1829" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker3347);stroke-miterlimit:4;stroke-dasharray:none"
d="m -137.69045,-97.392743 -0.15497,-14.979157"
id="path1831" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker3337);stroke-miterlimit:4;stroke-dasharray:none"
d="m -132.39878,-147.64573 v -15.09585"
id="path1833" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2447);stroke-miterlimit:4;stroke-dasharray:none"
d="m -124.832,-111.99711 87.682553,14.568667"
id="path1835"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2467);stroke-miterlimit:4;stroke-dasharray:none"
d="m -129.36364,-62.114598 81.630853,14.956991"
id="path1837"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2427);stroke-miterlimit:4;stroke-dasharray:none"
d="m -119.16029,-162.74268 83.069183,15.57257"
id="path1839"
sodipodi:nodetypes="cc" />
<g
id="g1851"
transform="translate(84.558727,146.05969)">
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1845"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549514,110.41472,-21.220822)" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-195.98274"
y="-64.58445"
id="text1849"><tspan
sodipodi:role="line"
id="tspan1847"
x="-195.98274"
y="-64.58445"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">...</tspan></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2527);stroke-miterlimit:4;stroke-dasharray:none"
d="m -194.06277,86.081753 15.39644,26.667427"
id="path1853" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker2537);stroke-miterlimit:4;stroke-dasharray:none"
d="m -231.58303,86.081753 -15.39644,26.667427"
id="path1855" />
<g
id="g1867"
transform="translate(132.18372,98.434663)">
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1861"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549514,110.41472,-21.220822)" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-195.98274"
y="-64.58445"
id="text1865"><tspan
sodipodi:role="line"
id="tspan1863"
x="-195.98274"
y="-64.58445"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">...</tspan></text>
</g>
<g
id="g1875"
transform="translate(148.05873,48.163828)">
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1869"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549514,110.41472,-21.220822)" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-195.98274"
y="-64.58445"
id="text1873"><tspan
sodipodi:role="line"
id="tspan1871"
x="-195.98274"
y="-64.58445"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">...</tspan></text>
</g>
<g
id="g1883"
transform="translate(158.64207,-2.1070066)">
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1877"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549514,110.41472,-21.220822)" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-195.98274"
y="-64.58445"
id="text1881"><tspan
sodipodi:role="line"
id="tspan1879"
x="-195.98274"
y="-64.58445"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">...</tspan></text>
</g>
<g
id="g1891"
transform="translate(159.70041,-51.848677)">
<path
sodipodi:type="star"
style="opacity:0.94;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="path1885"
sodipodi:sides="3"
sodipodi:cx="-210.26399"
sodipodi:cy="-78.172485"
sodipodi:r1="36.624062"
sodipodi:r2="17.854481"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.52359875"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m -210.26399,-114.79655 15.46243,27.696825 16.25493,27.239271 -31.71736,-0.457551 -31.71737,0.45755 16.25493,-27.239271 z"
inkscape:transform-center-x="-8.3011636e-06"
inkscape:transform-center-y="-1.1042901"
transform="matrix(1.4562943,0,0,0.64549514,110.41472,-21.220822)" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-195.98274"
y="-64.58445"
id="text1889"><tspan
sodipodi:role="line"
id="tspan1887"
x="-195.98274"
y="-64.58445"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">...</tspan></text>
</g>
<g
id="g2260"
class="fragment"
data-fragment-index="1"
transform="translate(7.4083325,10.583333)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-339.76468"
y="-60.692703"
id="text1897"><tspan
sodipodi:role="line"
id="tspan1895"
x="-339.76468"
y="-60.692703"
style="stroke-width:0.264583">log<tspan
style="font-size:65%;baseline-shift:sub"
id="tspan1899">2</tspan>(N) IOs</tspan></text>
<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 -310.69555,-71.448104 V -205.52113"
id="path1901" />
<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(#marker2189)"
d="M -310.69555,-57.730971 V 76.342052"
id="path2185" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,634 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="413.63049mm"
height="78.678726mm"
viewBox="0 0 413.63048 78.678724"
version="1.1"
id="svg1157"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="ISAM-OnePage.svg">
<defs
id="defs1151">
<marker
style="overflow:visible"
id="marker4751"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4749" />
</marker>
<marker
style="overflow:visible"
id="marker4535"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4533" />
</marker>
<marker
style="overflow:visible"
id="marker4315"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4313" />
</marker>
<marker
style="overflow:visible"
id="marker3367"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3365" />
</marker>
<marker
style="overflow:visible"
id="marker3357"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3355" />
</marker>
<marker
style="overflow:visible"
id="marker3347"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3345" />
</marker>
<marker
style="overflow:visible"
id="marker3337"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3335" />
</marker>
<marker
style="overflow:visible"
id="marker3103"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3101" />
</marker>
<marker
style="overflow:visible"
id="marker3093"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3091" />
</marker>
<marker
style="overflow:visible"
id="marker3083"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3081" />
</marker>
<marker
style="overflow:visible"
id="marker3073"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3071" />
</marker>
<marker
style="overflow:visible"
id="marker2537"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2535" />
</marker>
<marker
style="overflow:visible"
id="marker2527"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2525" />
</marker>
<marker
style="overflow:visible"
id="marker2517"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2515" />
</marker>
<marker
style="overflow:visible"
id="marker2507"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2505" />
</marker>
<marker
style="overflow:visible"
id="marker2497"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2495" />
</marker>
<marker
style="overflow:visible"
id="marker2487"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2485" />
</marker>
<marker
style="overflow:visible"
id="marker2477"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2475" />
</marker>
<marker
style="overflow:visible"
id="marker2467"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2465" />
</marker>
<marker
style="overflow:visible"
id="marker2457"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2455" />
</marker>
<marker
style="overflow:visible"
id="marker2447"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2445" />
</marker>
<marker
style="overflow:visible"
id="marker2437"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2435" />
</marker>
<marker
style="overflow:visible"
id="marker2427"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:isstock="true">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path2425" />
</marker>
<marker
style="overflow:visible"
id="marker2189"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2187" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1924" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.78963426"
inkscape:cx="372.10877"
inkscape:cy="-200.23924"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1053"
inkscape:window-x="960"
inkscape:window-y="369"
inkscape:window-maximized="1" />
<metadata
id="metadata1154">
<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(311.61453,-53.686396)">
<rect
style="opacity:0.94;fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect1893"
width="378.51157"
height="19.645943"
x="-277.28592"
y="112.21918" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-274.51569"
y="125.44488"
id="text1722"><tspan
sodipodi:role="line"
id="tspan1720"
x="-274.51569"
y="125.44488"
style="stroke-width:0.264583">1...100</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-197.74043"
y="125.44488"
id="text1726"><tspan
sodipodi:role="line"
id="tspan1724"
x="-197.74043"
y="125.44488"
style="stroke-width:0.264583">101...200</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-107.11102"
y="125.44488"
id="text1730"><tspan
sodipodi:role="line"
id="tspan1728"
x="-107.11102"
y="125.44488"
style="stroke-width:0.264583">201...300</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-16.838058"
y="122.2487"
id="text1734"><tspan
sodipodi:role="line"
id="tspan1732"
x="-16.838058"
y="122.2487"
style="stroke-width:0.264583">...</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="32.987865"
y="125.44488"
id="text1738"><tspan
sodipodi:role="line"
id="tspan1736"
x="32.987865"
y="125.44488"
style="stroke-width:0.264583">6301...6400</tspan></text>
<g
id="g2260"
class="fragment"
data-fragment-index="4"
transform="translate(7.4083325,10.583333)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-320.18558"
y="64.719803"
id="text1897"><tspan
sodipodi:role="line"
id="tspan1895"
x="-320.18558"
y="64.719803"
style="stroke-width:0.264583">1 IO</tspan></text>
<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 -310.69555,57.1394 V 44.774766"
id="path1901"
sodipodi:nodetypes="cc" />
<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(#marker2189)"
d="m -310.69555,63.977362 v 12.36469"
id="path2185"
sodipodi:nodetypes="cc" />
</g>
<rect
style="opacity:0.94;fill:#ffffff;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4227"
width="380.75952"
height="26.221231"
x="-278.99356"
y="58.313648"
class="fragment"
data-fragment-index="1" />
<g
id="g4303"
class="fragment"
data-fragment-index="2">
<g
id="g4257"
transform="translate(0,15.875)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-257.39807"
y="59.784267"
id="text4231"><tspan
sodipodi:role="line"
id="tspan4229"
x="-257.39807"
y="59.784267"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">100</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -271.7202,42.315819 V 68.876342"
id="path4249" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -242.61603,42.315819 V 68.876342"
id="path4251" />
</g>
<g
id="g4267"
transform="translate(37.041668,15.875)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-256.33972"
y="59.784267"
id="text4261"><tspan
sodipodi:role="line"
id="tspan4259"
x="-256.33972"
y="59.784267"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">200</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -270.66186,42.315819 V 68.876342"
id="path4263" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -241.55769,42.315819 V 68.876342"
id="path4265" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-218.2397"
y="59.784267"
id="text4271"><tspan
sodipodi:role="line"
id="tspan4269"
x="-218.2397"
y="59.784267"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">300</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -232.56183,42.315819 V 68.876342"
id="path4273" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -203.45766,42.315819 V 68.876342"
id="path4275" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="37.347866"
y="59.784267"
id="text4279"><tspan
sodipodi:role="line"
id="tspan4277"
x="37.347866"
y="59.784267"
style="text-align:center;text-anchor:middle;stroke-width:0.264583">6300</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 20.379926,42.315819 V 68.876342"
id="path4281" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 54.775744,42.315819 V 68.876342"
id="path4283" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="-78.583839"
y="72.82132"
id="text4979"><tspan
sodipodi:role="line"
id="tspan4977"
x="-78.583839"
y="72.82132"
style="stroke-width:0.264583">...</tspan></text>
</g>
<g
id="g5045"
data-fragment-index="3"
class="fragment">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2537)"
d="m -275.28491,72.420383 12.43044,40.328797"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4315)"
d="m -237.71407,72.420383 51.05961,40.328797"
id="path4311"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4535)"
d="M -200.67238,72.420383 -96.696103,112.74918"
id="path4531"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4751)"
d="M 96.719355,72.420383 77.928906,112.74918"
id="path4747"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View File

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 53 KiB

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 52 KiB

View File

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB

View File

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

Before

Width:  |  Height:  |  Size: 145 KiB

After

Width:  |  Height:  |  Size: 145 KiB

View File

Before

Width:  |  Height:  |  Size: 148 KiB

After

Width:  |  Height:  |  Size: 148 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 48 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,529 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="323.86111mm"
height="43.370178mm"
viewBox="0 0 323.86112 43.370178"
version="1.1"
id="svg8"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="SortedList.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="622.48763"
inkscape:cy="213.4072"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1053"
inkscape:window-x="960"
inkscape:window-y="369"
inkscape:window-maximized="1" />
<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(37.394244,-15.888998)">
<g
id="g969"
transform="translate(0,-5.2916667)">
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect833"
width="69.801933"
height="18.686405"
x="6.6149349"
y="26.499325" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="11.819046"
y="39.700161"
id="text837"><tspan
sodipodi:role="line"
id="tspan835"
x="11.819046"
y="39.700161"
style="stroke-width:0.264583">&lt;1&gt;</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="46.744049"
y="39.700161"
id="text848"><tspan
sodipodi:role="line"
id="tspan846"
x="46.744049"
y="39.700161"
style="stroke-width:0.264583">&lt;2&gt;</tspan></text>
</g>
<g
id="g956"
transform="translate(0,-5.2916667)">
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect867"
width="69.850006"
height="18.686405"
x="76.464935"
y="26.499325" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="81.669052"
y="39.700161"
id="text871"><tspan
sodipodi:role="line"
id="tspan869"
x="81.669052"
y="39.700161"
style="stroke-width:0.264583">&lt;3&gt;</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="116.59405"
y="39.700161"
id="text879"><tspan
sodipodi:role="line"
id="tspan877"
x="116.59405"
y="39.700161"
style="stroke-width:0.264583">&lt;4&gt;</tspan></text>
</g>
<image
width="38.893749"
height="42.862499"
preserveAspectRatio="none"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJMAAACiCAYAAABFw/8dAAAABGdBTUEAALGPC/xhBQAAACBjSFJN
AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABWWlUWHRYTUw6Y29tLmFkb2Jl
LnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1Q
IENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5
OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91
dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4w
LyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAg
IDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAAA99UlE
QVR4Ae2dWZAlx3Weq+puvfdsmAFALAOAILiIm0iLFEWJlKjFlMJiSFYwZNFS+Mnyg8MRtvVmhyP8
akfIj/aDI2wpFDJpiZsdZlAbF5ESF4EbKGCG2GYADGbBbL33Xav8f3n6dOW9vdyeme6ZnsbNmerM
yuVk5jl/njyVVZk3TQ6oO3/+/MTKyspUtVqdrFQqU2maTmZZdm+v13tAXT5WFMUx+YcJ6zqyFtdQ
vgmFK/LH5Fd19bk8zzsq29LVU55l3beU4bKu66J9VfFXFX9V91d0f07plxRe6nQ6yxMTE0tjY2NL
Dz744KriDpxL79YenTlzZkwgOSLhHRJg7pfQHpYQT+oe/17dHxF4pnU/oz7OKO+ErkT34aLfg2Hn
BfGx83vLTwo0zN+YD5ZaebUjEYgSgWpZ+RdUfhE/SfJrynRBbXxZ11nlO9vtZhfGxrLr9Xr9+uOP
Pw5A7zq378H05JNP1mZnZw9NTk4+JMG8TYx/s0DymASDhnlI9/fpHk2SyA+XCb1IJKh1wBC+Ued0
KGdh8w1MJaA8rYwv06xOYzNt1H85u6dNAlqgrb71lPCqrld6vfyc/OcFvFNpmj+ztJS+kiSLcz/7
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
"
id="image919"
x="-177.09425"
y="15.888998"
transform="translate(139.70001)" />
<g
id="g943"
transform="translate(0,-5.2916667)">
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect883"
width="69.801926"
height="18.686405"
x="146.31494"
y="26.499325" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="151.51906"
y="39.700161"
id="text887"><tspan
sodipodi:role="line"
id="tspan885"
x="151.51906"
y="39.700161"
style="stroke-width:0.264583">&lt;5&gt;</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="186.44403"
y="39.700161"
id="text928"><tspan
sodipodi:role="line"
id="tspan926"
x="186.44403"
y="39.700161"
style="stroke-width:0.264583">&lt;6&gt;</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="23.625578"
y="57.057766"
id="text973"><tspan
sodipodi:role="line"
id="tspan971"
x="23.625578"
y="57.057766"
style="stroke-width:0.264583">Page 1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="93.540955"
y="57.057766"
id="text977"><tspan
sodipodi:role="line"
id="tspan975"
x="93.540955"
y="57.057766"
style="stroke-width:0.264583">Page 2</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="163.26099"
y="57.057766"
id="text981"><tspan
sodipodi:role="line"
id="tspan979"
x="163.26099"
y="57.057766"
style="stroke-width:0.264583">Page 3</tspan></text>
<g
id="g993"
transform="translate(69.850004,-5.2916667)">
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round"
id="rect983"
width="69.801926"
height="18.686405"
x="146.31494"
y="26.499325" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="151.51906"
y="39.700161"
id="text987"><tspan
sodipodi:role="line"
id="tspan985"
x="151.51906"
y="39.700161"
style="stroke-width:0.264583">&lt;7&gt;</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="186.44403"
y="39.700161"
id="text991"><tspan
sodipodi:role="line"
id="tspan989"
x="186.44403"
y="39.700161"
style="stroke-width:0.264583">&lt;8&gt;</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="233.11104"
y="57.057766"
id="text997"><tspan
sodipodi:role="line"
id="tspan995"
x="233.11104"
y="57.057766"
style="stroke-width:0.264583">Page 4</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -16,28 +16,68 @@ textbook: "Ch. 8.3-8.4, 14.1-14.2, 14.4"
(4) Finally... to re-emphasize, more B+Tree examples.
-->
<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>
<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>
<h3>Initial Assumptions</h3>
<p>Data is sorted on an attribute of interest (R.A)</p>
<p>Updates are not relevant</p>
</section>
</section>
<section>
<section>
<h3>Today's Focus</h3>