PROG 2 fertig

This commit is contained in:
Henry Haustein 2018-09-08 17:39:11 +02:00
parent 58eb28e611
commit dc2c4748ed
11 changed files with 5948 additions and 1 deletions

View file

@ -0,0 +1,239 @@
\section{Multiplikation $n$-stelliger ganzer Zahlen}
Zuerst müssen wir uns mit dem sogenannten \begriff{Shifting} beschäftigen. Shifting ist ein Vorgang, der das Bitmuster einer Zahl verschiebt. Man unterscheidet 4 Arten des Shifting:
\begin{itemize}
\item \begriff[Shifting!]{logischer Links-Shift} $\texttt{LSHIFT}_1(a)$: verschiebt das Bitmuster von $a$ um 1 Zeichen nach links, $a_k$ fliegt raus, es werden Nullen eingefügt.
\item \begriff[Shifting!]{logischer Rechts-Shift} $\texttt{RSHIFT}_1(a)$: verschiebt das Bitmuster von $a$ um 1 Zeichen nach rechts, $a_0$ fliegt raus, es werden Nullen eingefügt.
\item \begriff[Shifting!]{arithmetischer Links-Shift} $\texttt{ALSHIFT}_1(a)$: verschiebt das Bitmuster von $a$ um 1 Zeichen nach links, $a_k$ fliegt raus, es wird der Wert des rechtesten Bits eingefügt.
\item \begriff[Shifting!]{arithmetischer Rechts-Shift} $\texttt{ARSHIFT}_1(a)$: verschiebt das Bitmuster von $a$ um 1 Zeichen nach rechts, $a_0$ fliegt raus, es wird der Wert des linkesten Bits eingefügt.
\end{itemize}
Man kann die Multiplikation $a\cdot b$ auch als wiederholte Summation auffassen: $\sum\limits_{i=0}^{n-1} a_i\cdot 2^i\cdot b$. In heutigen Rechnern sind allerdings Addition und Multiplikation gleich schnell. Man kann diese wiederholte Addition aber auch deutlich verbessern:
\begin{itemize}
\item Gruppe von $k$ Nullen in $a$: sofortiger $\texttt{ARShift}_k(a)$
\item Gruppe von $k$ Einsen in $a$: $a=[\dots 0\underbrace{\overbrace{1}^{i}\dots\overbrace{1}^{j}}_k0\dots]$. Dann
\begin{align}
\sum_{i=j}^{l} 2^i = 2^{l+1}-2^j=2^{j+k}-2^j\notag
\end{align}
\end{itemize}
Der \begriff{\person{Booth}-Algorithmus} ist eine andere Art der Optimierung. Die Idee ist, dass $a\cdot b$ mit $b=c-d$ $a\cdot b=a\cdot c-a\cdot d$ ergibt. Dazu muss der erste Faktor kodiert werden: Dazu sei $Y=[y_{n-1}\dots y_0]_2$ der zu kodierende Operand. An diesen fügt man eine weitere Stelle $y_{-1}=0$ ein. Der kodierte Operand $Y'=[y'_{n-1}\dots y'_0y_{-1}]_2$ und wir mit $y'_i=y_{i-1}-y_i$ berechnet.
Um den \person{Booth}-Algorithmus zu zeigen, wollen wir $[44]_{10}=[00101100]_2$ mit $[17]_{10}=[00010001]_2$ multiplizieren: \\
\begin{tabularx}{\textwidth}{XXXXXXXXXXXXXXXXX|p{3.2cm}}
&
&
\cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\cellcolor{gray} 1 &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\cellcolor{gray} 1 &
\tiny 2. Faktor \\
$\cdot$ &
&
\cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} & \cellcolor{lightgray} &
\cellcolor{gray} 0 &
\cellcolor{gray} 1 &
\cellcolor{gray} -1 &
\cellcolor{gray} 1 &
\cellcolor{gray} 0 &
\cellcolor{gray} -1 &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\tiny Kodierung 1. Faktor \\
\hline
+ &
&
\cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0&
0 &
0 &
0 &
0 &
0 &
0 &
0 &
0 &
\tiny keine Addition \\
+ &
&
\cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0&
0 &
0 &
0 &
0 &
0 &
0 &
0 &
0 &
\cellcolor{lightgray} &
\tiny keine Addition \\
+ &
&
\cellcolor{lightgray} 1& \cellcolor{lightgray} 1& \cellcolor{lightgray} 1& \cellcolor{lightgray} 1& \cellcolor{lightgray} 1&
1 &
1 &
1 &
1 &
1 &
1 &
1 &
1 &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\tiny 2er Komplement (2. Faktor) \\
+ &
&
\cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0&
0 &
0 &
0 &
0 &
0 &
0 &
0 &
0 &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\tiny keine Addition \\
+ &
&
\cellcolor{lightgray} 0& \cellcolor{lightgray} 0& \cellcolor{lightgray} 0&
0 &
0 &
0 &
1 &
0 &
0 &
0 &
1 &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\tiny 2. Faktor \\
+ &
&
\cellcolor{lightgray} 1& \cellcolor{lightgray} 1&
1 &
1 &
1 &
1 &
1 &
1 &
1 &
1 &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\tiny 2er Komplement (2. Faktor) \\
+ &
&
\cellcolor{lightgray} 0&
0 &
0 &
0 &
1 &
0 &
0 &
0 &
1 &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\tiny 2. Faktor \\
+ &
&
0 &
0 &
0 &
0 &
0 &
0 &
0 &
0 &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\cellcolor{lightgray} &
\tiny keine Addition \\
\hline
\cellcolor{lightgray} 1 &
\cellcolor{lightgray} 0&
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\cellcolor{gray} 1 &
\cellcolor{gray} 0 &
\cellcolor{gray} 1 &
\cellcolor{gray} 1 &
\cellcolor{gray} 1 &
\cellcolor{gray} 0 &
\cellcolor{gray} 1 &
\cellcolor{gray} 1 &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\tiny Ergebnis ohne Überlauf \\
\hline
= &
&
\cellcolor{gray} &
\cellcolor{gray} &
\cellcolor{gray} &
\cellcolor{gray} &
\cellcolor{gray} &
\cellcolor{gray} 1 &
\cellcolor{gray} 0 &
\cellcolor{gray} 1 &
\cellcolor{gray} 1 &
\cellcolor{gray} 1 &
\cellcolor{gray} 0 &
\cellcolor{gray} 1 &
\cellcolor{gray} 1 &
\cellcolor{gray} 0 &
\cellcolor{gray} 0 &
\tiny Ergebnis mit Überlauf \\
\end{tabularx}
Dazu noch ein paar Bemerkungen:
\begin{itemize}
\item Statt also mit $[0100000]_2$, $[0001000]_2$ und $[0000100]_2$ zu multiplizieren und die Ergebnisse zu addieren, wird nun also mit $[1000000]_2$, $[0100000]_2$, $[0010000]_2$ und $[0000100]_2$ multipliziert und die Ergebnisse addiert bzw. subtrahiert.
\item Wie man am Beispiel sieht, kann sich die Anzahl der Additionen auch erhöhen (im Beispiel von 3 auf 4), was aber eigentlich nicht gewünscht ist. Im statistischen Durchschnitt werden im \person{Booth}-Verfahren genauso viele Additionen gebraucht wie ohne \person{Booth}-Verfahren. Der Vorteil liegt aber darin, dass in der Informatik keine Gleichverteilung von Zahlen vorliegt. Vielmehr gibt es häufig Zahlen mit vielen Nullen und durch das Zweierkomplement bei negativen Zahlen häufig viele Einsen am Anfang. Nur durch diese Tatsache hat das \person{Booth}-Verfahren Vorteile gegenüber einer normalen Multiplikation.
\item Das Verfahren produziert das richtige Ergebnis: $44\cdot 17=[748]_{10}=[1011101100]_2$.
\end{itemize}
Die 3. Möglichkeit die Multiplikation zu verbessern, ist der \begriff{\person{Wallace}-Tree}. Die Idee dahinter ist folgende:
\begin{align}
\underbrace{\left(\sum_{k=0}^{n} a_k2^k\right)}_{\text{Binärdarstellung }a}\cdot \underbrace{\left(\sum_{k=0}^{n} b_k2^k\right)}_{\text{Binärdarstellung }b} = \sum_{k=0}^{2n}\sum_{i+j=k} a_ib_j2^k\notag
\end{align}
Der \person{Wallace}-Tree-Multiplizierer geht in 3 Schritten vor:
\begin{enumerate}
\item Berechne für jedes Paar $(i,j)$ mit $1\le i\le n$ und $1\le j\le k$ das Partialprodukt $a_ib_j2^{i+j}$.
\item Addiere die Resultate dieser Berechnung innerhalb der für den \person{Wallace}-Tree-Multiplizierer spezifischen Baumstruktur stufenweise mithilfe von Voll- und Halbaddierern, bis nur noch 2 Zahlen übrig sind, die addiert werden müssen.
\item Addiere diese beiden Zahlen mit einem normalen Addierwerk (Carry-Lookahead-Adder).
\end{enumerate}
Der \person{Wallace}-Tree benutzt den Carry-Save-Adder (CSA), der 3 Zahlen addieren kann und 2 Zahlen ausgibt: Die Sequenz der Partialsummen und die Sequenz der Übertragsbits $\to$ 2 gleich lange Zahlen
\begin{figure}[ht]
\centering
\includegraphics[width=10cm]{images/Wallace-Tree.png}
\caption{\person{Wallace}-Tree}
\end{figure}
Die Komplexität des \person{Wallace}-Tree ist $T(n)=\mathcal{O}(\log n)$, also in etwa genau so lange wie die Addition!

View file

@ -0,0 +1,22 @@
\section{Subtraktion $n$-stelliger ganzer Zahlen}
Wir wollen möglichst die gleiche Hardware für die Subtraktion wie für die Addition verwenden. Dabei können wir uns zu Nutze machen, dass gilt:
\begin{align}
a-b=a+\underbrace{(-b)}_{\text{2er Komplement}}=a+\underbrace{(\overline{b})}_{\text{1er Komplement}}+1\notag
\end{align}
Damit wird auch in der hinteren Postion ein Volladdierer benötigt und Addition und Subtraktion laufen über die gleiche Hardware.
Zugleich optimieren wir noch die Addierer. Vom Carry-Ripple-Adder zum \begriff{Carry-Lookahead-Adder} und dann zum \begriff{Carry-Skip-Adder}. Während der Carry-Ripple-Adder eine Komplexität von $T(n)=\mathcal{O}(n)$ hat, hat der Carry-Lookahead-Adder eine Komplexität von $T(n)=\mathcal{O}(\log_2 n)$
\begin{figure}[ht]
\centering
\includegraphics[width=10cm]{images/Carry-Lookahead-Adder_2.png}
\includegraphics[width=10cm]{images/Carry-Lookahead-Adder.png}
\caption{Carry-Lookahead-Adder}
\end{figure}
\begin{figure}[ht]
\centering
\includegraphics[width=10cm]{images/Carry-Skip-Adder.png}
\caption{Carry-Skip-Adder}
\end{figure}

Binary file not shown.

View file

@ -43,7 +43,7 @@
\chapter{Rekursion, Iteration, Komplexität}
\input{./TeX_files/Beispiele}
\chapter{Implementierung der Grundrechenarten in Rechnern}
\chapter{Grundrechenarten in Rechnern}
\input{./TeX_files/Addition}
\include{./TeX_files/Subtraktion}
\include{./TeX_files/Multiplikation}

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 497 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View file

@ -0,0 +1,800 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="500"
height="300"
id="svg13605">
<g
id="layer1">
<g
transform="translate(1,-13.5)"
id="g13623">
<rect
width="75"
height="75"
x="42.5"
y="75.862183"
id="rect13613"
style="opacity:1;fill:#80b3ff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
x="79.931641"
y="100.81824"
id="text13615"
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="79.931641"
y="100.81824"
id="tspan13617">1-bit</tspan><tspan
x="79.931641"
y="120.81824"
id="tspan13619">full</tspan><tspan
x="79.931641"
y="140.81824"
id="tspan13621">adder</tspan></text>
</g>
<g
transform="translate(112.8333,-13.5)"
id="g13630">
<rect
width="75"
height="75"
x="42.5"
y="75.862183"
id="rect13632"
style="opacity:1;fill:#80b3ff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
x="79.931641"
y="100.81824"
id="text13634"
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="79.931641"
y="100.81824"
id="tspan13636">1-bit</tspan><tspan
x="79.931641"
y="120.81824"
id="tspan13638">full</tspan><tspan
x="79.931641"
y="140.81824"
id="tspan13640">adder</tspan></text>
</g>
<g
transform="translate(224.6667,-13.5)"
id="g13642">
<rect
width="75"
height="75"
x="42.5"
y="75.862183"
id="rect13644"
style="opacity:1;fill:#80b3ff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
x="79.931641"
y="100.81824"
id="text13646"
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="79.931641"
y="100.81824"
id="tspan13648">1-bit</tspan><tspan
x="79.931641"
y="120.81824"
id="tspan13650">full</tspan><tspan
x="79.931641"
y="140.81824"
id="tspan13652">adder</tspan></text>
</g>
<g
transform="translate(336.5,-13.5)"
id="g13654">
<rect
width="75"
height="75"
x="42.5"
y="75.862183"
id="rect13656"
style="opacity:1;fill:#80b3ff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
x="79.931641"
y="100.81824"
id="text13658"
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="79.931641"
y="100.81824"
id="tspan13660">1-bit</tspan><tspan
x="79.931641"
y="120.81824"
id="tspan13662">full</tspan><tspan
x="79.931641"
y="140.81824"
id="tspan13664">adder</tspan></text>
</g>
<path
d="M 167.05398,118.85991 C 134.70384,118.85991 134.88062,118.85991 134.88062,118.85991"
id="path13666"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 455.4375,99.34375 L 455.4375,100.34375 C 473.13347,100.34375 481.98226,100.34375 486.40625,100.34375 C 488.61825,100.34375 489.72825,100.34375 490.28125,100.34375 C 490.55775,100.34375 490.68088,100.34375 490.75,100.34375 C 490.78456,100.34375 490.80386,100.34375 490.8125,100.34375 L 490.8125,99.84375 L 490.8125,99.34375 C 490.8125,99.34375 490.82944,99.343747 455.4375,99.34375 z"
id="path13890"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 465.98227,104.22279 L 454.12394,99.86218 L 465.98228,95.501569 C 464.08781,98.076072 464.09872,101.59844 465.98227,104.22279 z"
id="path14412"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
<text
x="471.08649"
y="94.567917"
id="text13892"
xml:space="preserve"
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"><tspan
x="471.08649"
y="94.567917"
id="tspan13894"><tspan
id="tspan13896"
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans">C</tspan><tspan
id="tspan13922"
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans">0</tspan></tspan></text>
<g
transform="translate(0,132.3665)"
id="g14282">
<path
d="M 7.75,97.34375 L 7.75,98.34375 C 25.445975,98.343749 34.294756,98.34375 38.71875,98.34375 C 40.930747,98.34375 42.040751,98.34375 42.59375,98.34375 C 42.87025,98.34375 43.024625,98.34375 43.09375,98.34375 C 43.128312,98.34375 43.116359,98.34375 43.125,98.34375 C 43.12932,98.34375 43.15517,98.34375 43.15625,98.34375 L 43.15625,97.84375 L 43.15625,97.34375 C 43.15625,97.34375 43.14195,97.343747 7.75,97.34375 z"
id="path13900"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 18.304774,102.22279 L 6.4464351,97.86218 L 18.304775,93.501569 C 16.410308,96.076072 16.421224,99.598439 18.304774,102.22279 z"
id="path14288"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="14.908981"
y="253.06792"
id="text13902"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="14.908981"
y="253.06792"
id="tspan13904"><tspan
id="tspan13906"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">C</tspan><tspan
id="tspan13934"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">4</tspan></tspan></text>
<g
transform="translate(0,2)"
id="g14290">
<path
d="M 63.8125,23.375 C 63.8125,23.375 63.8125,23.389301 63.8125,58.78125 L 64.8125,58.78125 C 64.8125,41.085275 64.8125,32.236494 64.8125,27.8125 C 64.8125,25.600503 64.8125,24.490499 64.8125,23.9375 C 64.8125,23.661 64.8125,23.506625 64.8125,23.4375 C 64.8125,23.402938 64.8125,23.414891 64.8125,23.40625 C 64.8125,23.40193 64.8125,23.37608 64.8125,23.375 L 64.3125,23.375 L 63.8125,23.375 z"
id="path13936"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 68.683366,48.226649 L 64.322754,60.084988 L 59.962143,48.226648 C 62.536646,50.121115 66.059013,50.110199 68.683366,48.226649 z"
id="path14296"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="54.763184"
y="22.439724"
id="text13946"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="54.763184"
y="22.439724"
id="tspan13948"><tspan
id="tspan13950"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">A</tspan>3</tspan></text>
<g
transform="translate(0,2)"
id="g14298">
<path
d="M 98.5625,23.375 C 98.5625,23.375 98.562499,23.389301 98.5625,58.78125 L 99.53125,58.78125 C 99.531249,41.085275 99.53125,32.236494 99.53125,27.8125 C 99.53125,25.600503 99.53125,24.490499 99.53125,23.9375 C 99.53125,23.661 99.53125,23.506625 99.53125,23.4375 C 99.53125,23.402938 99.53125,23.414891 99.53125,23.40625 C 99.53125,23.40193 99.53125,23.37608 99.53125,23.375 L 99.03125,23.375 L 98.5625,23.375 z"
id="path13938"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 103.42066,48.226649 L 99.06005,60.084988 L 94.699439,48.226648 C 97.273942,50.121115 100.79631,50.110199 103.42066,48.226649 z"
id="path14304"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="89.453613"
y="22.088257"
id="text13952"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="89.453613"
y="22.088257"
id="tspan13954"><tspan
id="tspan13958"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">B</tspan>3</tspan></text>
<g
transform="translate(0,2)"
id="g14306">
<path
d="M 175.75,23.375 C 175.75,23.375 175.75,23.389301 175.75,58.78125 L 176.75,58.78125 C 176.75,41.085275 176.75,32.236494 176.75,27.8125 C 176.75,25.600503 176.75,24.490499 176.75,23.9375 C 176.75,23.661 176.75,23.506625 176.75,23.4375 C 176.75,23.402938 176.75,23.414891 176.75,23.40625 C 176.75,23.40193 176.75,23.37608 176.75,23.375 L 176.25,23.375 L 175.75,23.375 z"
id="path13978"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 180.63678,48.226649 L 176.27617,60.084988 L 171.91556,48.226648 C 174.49006,50.121115 178.01243,50.110199 180.63678,48.226649 z"
id="path14312"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="166.7166"
y="22.439728"
id="text13982"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="166.7166"
y="22.439728"
id="tspan13984"><tspan
id="tspan13986"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">A</tspan><tspan
id="tspan14108"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">2</tspan></tspan></text>
<g
transform="translate(0,2)"
id="g14314">
<path
d="M 210.5,23.375 C 210.5,23.375 210.5,23.389301 210.5,58.78125 L 211.5,58.78125 C 211.5,41.085275 211.5,32.236494 211.5,27.8125 C 211.5,25.600503 211.5,24.490499 211.5,23.9375 C 211.5,23.661 211.5,23.506625 211.5,23.4375 C 211.5,23.402938 211.5,23.414891 211.5,23.40625 C 211.5,23.40193 211.5,23.37608 211.5,23.375 L 211,23.375 L 210.5,23.375 z"
id="path13980"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 215.37408,48.226649 L 211.01347,60.084988 L 206.65286,48.226648 C 209.22736,50.121115 212.74973,50.110199 215.37408,48.226649 z"
id="path14320"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="201.40703"
y="22.088249"
id="text13988"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="201.40703"
y="22.088249"
id="tspan13990"><tspan
id="tspan13992"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">B</tspan><tspan
id="tspan14112"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">2</tspan></tspan></text>
<g
transform="translate(0,2)"
id="g14330">
<path
d="M 287.5625,23.375 C 287.5625,23.375 287.56249,23.389298 287.5625,58.78125 L 288.53125,58.78125 C 288.53125,41.085274 288.53125,32.236494 288.53125,27.8125 C 288.53125,25.600503 288.53125,24.490499 288.53125,23.9375 C 288.53125,23.661 288.53125,23.506625 288.53125,23.4375 C 288.53125,23.402938 288.53125,23.414891 288.53125,23.40625 C 288.53125,23.40193 288.53125,23.37608 288.53125,23.375 L 288.03125,23.375 L 287.5625,23.375 z"
id="path13994"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 292.4233,48.22665 L 288.06269,60.084989 L 283.70208,48.226649 C 286.27658,50.121116 289.79895,50.1102 292.4233,48.22665 z"
id="path14336"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="278.50311"
y="22.439724"
id="text13998"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="278.50311"
y="22.439724"
id="tspan14000"><tspan
id="tspan14002"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">A</tspan><tspan
id="tspan14116"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">1</tspan></tspan></text>
<g
transform="translate(0,2)"
id="g14338">
<path
d="M 322.28125,23.375 C 322.28125,23.375 322.28124,23.389299 322.28125,58.78125 L 323.28125,58.78125 C 323.28124,41.085275 323.28125,32.236494 323.28125,27.8125 C 323.28125,25.600503 323.28125,24.490499 323.28125,23.9375 C 323.28125,23.661 323.28125,23.506625 323.28125,23.4375 C 323.28125,23.402938 323.28125,23.414891 323.28125,23.40625 C 323.28125,23.40193 323.28125,23.37608 323.28125,23.375 L 322.78125,23.375 L 322.28125,23.375 z"
id="path13996"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 327.1606,48.226651 L 322.79999,60.08499 L 318.43938,48.22665 C 321.01388,50.121117 324.53625,50.110201 327.1606,48.226651 z"
id="path14344"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="313.19354"
y="22.088257"
id="text14004"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="313.19354"
y="22.088257"
id="tspan14006"><tspan
id="tspan14008"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">B</tspan><tspan
id="tspan14120"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">1</tspan></tspan></text>
<g
transform="translate(0,2)"
id="g14354">
<path
d="M 399.21875,23.375 C 399.21875,23.375 399.21876,23.389298 399.21875,58.78125 L 400.21875,58.78125 C 400.21876,41.085274 400.21875,32.236494 400.21875,27.8125 C 400.21875,25.600503 400.21875,24.490499 400.21875,23.9375 C 400.21875,23.661 400.21875,23.506625 400.21875,23.4375 C 400.21875,23.402938 400.21875,23.414891 400.21875,23.40625 C 400.21875,23.40193 400.21875,23.37608 400.21875,23.375 L 399.71875,23.375 L 399.21875,23.375 z"
id="path14010"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 404.10133,48.22665 L 399.74072,60.084989 L 395.38011,48.226649 C 397.95461,50.121116 401.47698,50.1102 404.10133,48.22665 z"
id="path14360"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="390.18115"
y="22.439724"
id="text14014"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="390.18115"
y="22.439724"
id="tspan14016"><tspan
id="tspan14018"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">A</tspan><tspan
id="tspan14124"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">0</tspan></tspan></text>
<g
transform="translate(0,2)"
id="g14362">
<path
d="M 433.96875,23.375 C 433.96875,23.375 433.96876,23.389299 433.96875,58.78125 L 434.96875,58.78125 C 434.96875,41.085275 434.96875,32.236494 434.96875,27.8125 C 434.96875,25.600503 434.96875,24.490499 434.96875,23.9375 C 434.96875,23.661 434.96875,23.506625 434.96875,23.4375 C 434.96875,23.402938 434.96875,23.414891 434.96875,23.40625 C 434.96875,23.40193 434.96875,23.37608 434.96875,23.375 L 434.46875,23.375 L 433.96875,23.375 z"
id="path14012"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 438.83863,48.226651 L 434.47802,60.08499 L 430.11741,48.22665 C 432.69191,50.121117 436.21428,50.110201 438.83863,48.226651 z"
id="path14368"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="424.87158"
y="22.088257"
id="text14020"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="424.87158"
y="22.088257"
id="tspan14022"><tspan
id="tspan14024"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">B</tspan><tspan
id="tspan14128"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">0</tspan></tspan></text>
<g
id="g14654">
<path
d="M 50.40625,137.78125 C 50.40625,137.78125 50.40625,137.79556 50.40625,173.1875 L 51.40625,173.1875 C 51.40625,155.49153 51.40625,146.64274 51.40625,142.21875 C 51.40625,140.00675 51.40625,138.89675 51.40625,138.34375 C 51.40625,138.06725 51.40625,137.94412 51.40625,137.875 C 51.40625,137.84044 51.40625,137.82114 51.40625,137.8125 C 51.40625,137.81196 51.40625,137.78139 51.40625,137.78125 L 50.90625,137.78125 L 50.40625,137.78125 z"
id="path14130"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 55.27712,162.64007 L 50.916508,174.4984 L 46.555897,162.64006 C 49.1304,164.53453 52.652767,164.52362 55.27712,162.64007 z"
id="path14660"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="41.356937"
y="190.00748"
id="text14132"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="41.356937"
y="190.00748"
id="tspan14134"><tspan
id="tspan14138"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">S</tspan>3</tspan></text>
<g
transform="translate(-30,2)"
id="g14274">
<path
d="M 192.25,135.78125 C 192.25,135.78125 192.25,135.79556 192.25,171.1875 L 193.21875,171.1875 C 193.21875,153.49153 193.21875,144.64274 193.21875,140.21875 C 193.21875,138.00675 193.21875,136.89675 193.21875,136.34375 C 193.21875,136.06725 193.21875,135.94412 193.21875,135.875 C 193.21875,135.84044 193.21875,135.82114 193.21875,135.8125 C 193.21875,135.81196 193.21875,135.78139 193.21875,135.78125 L 192.71875,135.78125 L 192.25,135.78125 z"
id="path14148"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 197.1104,160.64007 L 192.74979,172.4984 L 188.38918,160.64006 C 190.96368,162.53453 194.48605,162.52362 197.1104,160.64007 z"
id="path14280"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="153.19022"
y="190.00748"
id="text14150"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="153.19022"
y="190.00748"
id="tspan14152"><tspan
id="tspan14154"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">S</tspan><tspan
id="tspan14190"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">2</tspan></tspan></text>
<g
transform="translate(-30,2)"
id="g14266">
<path
d="M 304.0625,135.78125 C 304.0625,135.78125 304.06251,135.79556 304.0625,171.1875 L 305.0625,171.1875 C 305.06251,153.49153 305.0625,144.64274 305.0625,140.21875 C 305.0625,138.00675 305.0625,136.89675 305.0625,136.34375 C 305.0625,136.06725 305.0625,135.94412 305.0625,135.875 C 305.0625,135.84044 305.0625,135.82114 305.0625,135.8125 C 305.0625,135.81196 305.0625,135.78139 305.0625,135.78125 L 304.5625,135.78125 L 304.0625,135.78125 z"
id="path14158"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 308.9438,160.64007 L 304.58319,172.4984 L 300.22258,160.64006 C 302.79708,162.53453 306.31945,162.52362 308.9438,160.64007 z"
id="path14272"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="265.02362"
y="190.00748"
id="text14160"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="265.02362"
y="190.00748"
id="tspan14162"><tspan
id="tspan14164"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">S</tspan><tspan
id="tspan14194"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">1</tspan></tspan></text>
<g
transform="translate(-30,2)"
id="g14370">
<path
d="M 415.90625,135.78125 C 415.90625,135.78125 415.90625,135.79556 415.90625,171.1875 L 416.90625,171.1875 C 416.90625,153.49153 416.90625,144.64274 416.90625,140.21875 C 416.90625,138.00675 416.90625,136.89675 416.90625,136.34375 C 416.90625,136.06725 416.90625,135.94412 416.90625,135.875 C 416.90625,135.84044 416.90625,135.82114 416.90625,135.8125 C 416.90625,135.81196 416.90625,135.78139 416.90625,135.78125 L 416.40625,135.78125 L 415.90625,135.78125 z"
id="path14168"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98667669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 420.7771,160.64007 L 416.41649,172.4984 L 412.05588,160.64006 C 414.63038,162.53453 418.15275,162.52362 420.7771,160.64007 z"
id="path14376"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="376.85693"
y="190.00748"
id="text14170"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="376.85693"
y="190.00748"
id="tspan14172"><tspan
id="tspan14174"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">S</tspan><tspan
id="tspan14198"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">0</tspan></tspan></text>
<rect
width="411.31003"
height="47.505405"
x="43.428871"
y="206.47594"
id="rect14422"
style="opacity:1;fill:#c296e3;fill-opacity:1;stroke:#000000;stroke-width:0.85774523;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g14720">
<path
d="M 469.03125,100.125 C 469.03124,165.53947 469.03125,198.24013 469.03125,214.59375 C 469.03125,222.77056 469.03125,226.86205 469.03125,228.90625 C 469.03125,229.7849 469.03125,230.15185 469.03125,230.4375 C 462.93311,230.4375 459.46709,230.4375 457.875,230.4375 C 457.04328,230.4375 456.64543,230.4375 456.4375,230.4375 C 456.33353,230.4375 456.27599,230.4375 456.25,230.4375 C 456.237,230.4375 456.222,230.4375 456.21875,230.4375 C 456.21875,230.4375 456.21875,230.9375 456.21875,230.9375 L 456.21875,231.4375 C 456.21875,231.4375 456.22365,231.4375 469.53125,231.4375 L 470.03125,231.4375 L 470.03125,230.9375 C 470.03125,230.9375 470.03125,230.43751 470.03125,230.4375 C 470.03125,230.4356 470.03124,230.45387 470.03125,100.125 L 469.03125,100.125 z"
id="path14455"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98539782px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 466.75295,235.31496 L 454.90998,230.96 L 466.75295,226.60504 C 464.86094,229.1762 464.87184,232.69401 466.75295,235.31496 z"
id="path14726"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="91.715729"
y="245.19446"
id="text14459"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="91.715729"
y="245.19446"
id="tspan14461"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">4-bit carry look-ahead</tspan></text>
<text
x="126.99768"
y="223.06792"
id="text13856"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="126.99768"
y="223.06792"
id="tspan13858"><tspan
id="tspan13860"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">C</tspan>3</tspan></text>
<text
x="239.14069"
y="223.06792"
id="text13872"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="239.14069"
y="223.06792"
id="tspan13874"><tspan
id="tspan13876"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">C</tspan><tspan
id="tspan13930"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">2</tspan></tspan></text>
<text
x="350.86359"
y="223.06792"
id="text13882"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="350.86359"
y="223.06792"
id="tspan13884"><tspan
id="tspan13886"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">C</tspan><tspan
id="tspan13926"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">1</tspan></tspan></text>
<g
id="g14736">
<path
d="M 440.25,138.375 C 440.25,172.01514 440.25,188.83996 440.25,197.25 C 440.25,201.45502 440.25,203.57375 440.25,204.625 C 440.25,205.15063 440.25,205.39984 440.25,205.53125 C 440.25,205.59695 440.25,205.63982 440.25,205.65625 L 440.75,205.65625 L 441.25,205.65625 C 441.25,205.65625 441.24999,205.65528 441.25,138.375 L 440.25,138.375 z"
id="path14472"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00549698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 445.21149,194.91547 L 440.7677,207 L 436.32391,194.91547 C 438.94752,196.84607 442.53708,196.83495 445.21149,194.91547 z"
id="path14742"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<g
id="g14744">
<path
d="M 413.21875,138.375 C 413.21874,172.01514 413.21875,188.83996 413.21875,197.25 C 413.21875,201.45502 413.21875,203.57375 413.21875,204.625 C 413.21875,205.15063 413.21875,205.39984 413.21875,205.53125 C 413.21875,205.59695 413.21875,205.63982 413.21875,205.65625 L 413.71875,205.65625 L 414.21875,205.65625 C 414.21875,205.65625 414.21874,205.65528 414.21875,138.375 L 413.21875,138.375 z"
id="path14474"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00549698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 418.18872,194.91547 L 413.74493,207 L 409.30114,194.91547 C 411.92475,196.84607 415.51431,196.83495 418.18872,194.91547 z"
id="path14750"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="404.12192"
y="219.62206"
id="text14476"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="404.12192"
y="219.62206"
id="tspan14478"><tspan
id="tspan14480"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">p</tspan>0</tspan></text>
<text
x="429.55078"
y="219.62206"
id="text14482"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="429.55078"
y="219.62206"
id="tspan14484"><tspan
id="tspan14488"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">g</tspan>0</tspan></text>
<text
x="389.5"
y="248.5"
id="text14490"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="389.5"
y="248.5"
id="tspan14492"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">PG</tspan></text>
<text
x="424"
y="249"
id="text14494"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="424"
y="249"
id="tspan14496"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">GG</tspan></text>
<g
id="g14710">
<path
d="M 400.59375,254.28125 C 400.59375,269.8376 400.59375,277.61091 400.59375,281.5 C 400.59375,283.44454 400.59375,284.42011 400.59375,284.90625 C 400.59375,285.14932 400.59375,285.25173 400.59375,285.3125 C 400.59375,285.34288 400.59375,285.3674 400.59375,285.375 L 401.09375,285.375 L 401.59375,285.375 C 401.59375,285.375 401.59375,285.39395 401.59375,254.28125 L 400.59375,254.28125 z"
id="path14498"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 405.54343,274.69254 L 401.12393,286.71101 L 396.70444,274.69254 C 399.31371,276.61259 402.88364,276.60153 405.54343,274.69254 z"
id="path14716"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<g
id="g14702">
<path
d="M 436.59375,254.28125 C 436.59375,269.8376 436.59375,277.61091 436.59375,281.5 C 436.59375,283.44454 436.59375,284.42011 436.59375,284.90625 C 436.59375,285.14932 436.59375,285.25173 436.59375,285.3125 C 436.59375,285.34288 436.59375,285.3674 436.59375,285.375 L 437.09375,285.375 L 437.59375,285.375 C 437.59375,285.375 437.59375,285.39395 437.59375,254.28125 L 436.59375,254.28125 z"
id="path14500"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 441.52582,274.69254 L 437.10632,286.71101 L 432.68683,274.69254 C 435.2961,276.61259 438.86603,276.60153 441.52582,274.69254 z"
id="path14708"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<g
id="g14662">
<path
d="M 343.75,97.25 L 343.75,98.25 C 351.375,98.25 355.1875,98.25 357.09375,98.25 C 358.04688,98.25 358.51172,98.25 358.75,98.25 C 358.86914,98.25 358.93896,98.25 358.96875,98.25 C 358.98364,98.25 358.99628,98.25 359,98.25 L 359,97.75 L 359,97.25 C 359,97.25 359,97.25 343.75,97.25 z"
id="path14502"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 354.44045,102.18711 L 342.42198,97.767615 L 354.44045,93.348121 C 352.5204,95.957388 352.53146,99.527319 354.44045,102.18711 z"
id="path14668"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<path
d="M 358.34375,97.25 L 358.34375,97.75 C 358.34375,151.70031 358.34375,178.66867 358.34375,192.15625 C 358.34375,198.90004 358.34375,202.2828 358.34375,203.96875 C 358.34375,204.6503 358.34375,204.91436 358.34375,205.15625 C 358.34375,205.21354 358.34375,205.39714 358.34375,205.4375 C 358.34375,205.54287 358.34375,205.59866 358.34375,205.625 L 358.34375,205.65625 C 358.34375,205.65625 358.84375,205.65625 358.84375,205.65625 L 359.34375,205.65625 C 359.34375,205.65625 359.34375,205.15626 359.34375,205.15625 C 359.34375,205.15394 359.34375,205.15064 359.34375,97.75 L 359.34375,97.25 L 358.34375,97.25 z"
id="path14504"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99867392px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="g14797">
<path
d="M 327.21875,138.375 C 327.21876,172.01514 327.21875,188.83996 327.21875,197.25 C 327.21875,201.45502 327.21875,203.57375 327.21875,204.625 C 327.21875,205.15063 327.21875,205.39984 327.21875,205.53125 C 327.21875,205.59695 327.21875,205.63982 327.21875,205.65625 L 327.71875,205.65625 L 328.21875,205.65625 C 328.21875,205.65625 328.21876,205.65528 328.21875,138.375 L 327.21875,138.375 z"
id="path14518"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00549698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 332.17669,194.91547 L 327.7329,207 L 323.28911,194.91547 C 325.91272,196.84607 329.50228,196.83495 332.17669,194.91547 z"
id="path14803"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<g
id="g14789">
<path
d="M 300.1875,138.375 C 300.1875,172.01514 300.1875,188.83996 300.1875,197.25 C 300.1875,201.45502 300.1875,203.57375 300.1875,204.625 C 300.1875,205.15063 300.1875,205.39984 300.1875,205.53125 C 300.1875,205.59695 300.1875,205.63982 300.1875,205.65625 L 300.6875,205.65625 L 301.1875,205.65625 C 301.1875,205.65625 301.18751,205.65528 301.1875,138.375 L 300.1875,138.375 z"
id="path14520"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00549698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 305.15392,194.91547 L 300.71013,207 L 296.26634,194.91547 C 298.88995,196.84607 302.47951,196.83495 305.15392,194.91547 z"
id="path14795"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="291.08713"
y="219.62206"
id="text14522"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="291.08713"
y="219.62206"
id="tspan14524"><tspan
id="tspan14526"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">p</tspan><tspan
id="tspan14600"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">1</tspan></tspan></text>
<text
x="316.51599"
y="219.62206"
id="text14528"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="316.51599"
y="219.62206"
id="tspan14530"><tspan
id="tspan14532"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">g</tspan><tspan
id="tspan14596"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">1</tspan></tspan></text>
<g
id="g14781">
<path
d="M 214.1875,138.375 C 214.1875,172.01514 214.1875,188.83996 214.1875,197.25 C 214.1875,201.45502 214.1875,203.57375 214.1875,204.625 C 214.1875,205.15063 214.1875,205.39984 214.1875,205.53125 C 214.1875,205.59695 214.1875,205.63982 214.1875,205.65625 L 214.6875,205.65625 L 215.1875,205.65625 C 215.1875,205.65625 215.1875,205.65528 215.1875,138.375 L 214.1875,138.375 z"
id="path14536"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00549698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 219.14189,194.91547 L 214.6981,207 L 210.25431,194.91547 C 212.87792,196.84607 216.46748,196.83495 219.14189,194.91547 z"
id="path14787"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<g
id="g14773">
<path
d="M 187.15625,138.375 C 187.15625,172.01514 187.15625,188.83996 187.15625,197.25 C 187.15625,201.45502 187.15625,203.57375 187.15625,204.625 C 187.15625,205.15063 187.15625,205.39984 187.15625,205.53125 C 187.15625,205.59695 187.15625,205.63982 187.15625,205.65625 L 187.65625,205.65625 L 188.15625,205.65625 C 188.15625,205.65625 188.15625,205.65528 188.15625,138.375 L 187.15625,138.375 z"
id="path14538"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00549698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 192.11912,194.91547 L 187.67533,207 L 183.23154,194.91547 C 185.85515,196.84607 189.44471,196.83495 192.11912,194.91547 z"
id="path14779"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="178.05232"
y="219.62206"
id="text14540"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="178.05232"
y="219.62206"
id="tspan14542"><tspan
id="tspan14544"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">p</tspan><tspan
id="tspan14608"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">2</tspan></tspan></text>
<text
x="203.48119"
y="219.62206"
id="text14546"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="203.48119"
y="219.62206"
id="tspan14548"><tspan
id="tspan14550"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">g</tspan><tspan
id="tspan14604"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">2</tspan></tspan></text>
<g
id="g14646">
<path
d="M 101.15625,138.375 C 101.15625,172.01514 101.15625,188.83996 101.15625,197.25 C 101.15625,201.45502 101.15625,203.57375 101.15625,204.625 C 101.15625,205.15063 101.15625,205.39984 101.15625,205.53125 C 101.15625,205.59695 101.15625,205.63982 101.15625,205.65625 L 101.65625,205.65625 L 102.15625,205.65625 C 102.15625,205.65625 102.15625,205.65528 102.15625,138.375 L 101.15625,138.375 z"
id="path14554"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00549698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 106.10709,194.91547 L 101.6633,207 L 97.219514,194.91547 C 99.843124,196.84607 103.43268,196.83495 106.10709,194.91547 z"
id="path14652"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<g
id="g14638">
<path
d="M 74.125,138.375 C 74.125001,172.01514 74.125,188.83996 74.125,197.25 C 74.125,201.45502 74.125,203.57375 74.125,204.625 C 74.125,205.15063 74.125,205.39984 74.125,205.53125 C 74.125,205.59695 74.125,205.63982 74.125,205.65625 L 74.625,205.65625 L 75.125,205.65625 C 75.125,205.65625 75.125002,205.65528 75.125,138.375 L 74.125,138.375 z"
id="path14556"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00549698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 79.084319,194.91547 L 74.640531,207 L 70.196744,194.91547 C 72.820354,196.84607 76.409908,196.83495 79.084319,194.91547 z"
id="path14644"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<text
x="65.017517"
y="219.62206"
id="text14558"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="65.017517"
y="219.62206"
id="tspan14560"><tspan
id="tspan14562"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">p</tspan><tspan
id="tspan14616"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">3</tspan></tspan></text>
<text
x="90.446381"
y="219.62206"
id="text14564"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-weight:normal;line-height:100%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan
x="90.446381"
y="219.62206"
id="tspan14566"><tspan
id="tspan14568"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">g</tspan><tspan
id="tspan14612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">3</tspan></tspan></text>
<g
id="g14680">
<path
d="M 232.15625,97.25 L 232.15625,98.25 C 239.78125,98.249999 243.59375,98.25 245.5,98.25 C 246.45312,98.25 246.91797,98.25 247.15625,98.25 C 247.27539,98.25 247.34521,98.25 247.375,98.25 C 247.38989,98.25 247.40253,98.25 247.40625,98.25 L 247.40625,97.75 L 247.40625,97.25 C 247.40625,97.25 247.40625,97.249997 232.15625,97.25 z"
id="path14618"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 242.8351,102.18711 L 230.81663,97.767612 L 242.8351,93.348118 C 240.91505,95.957385 240.92611,99.527316 242.8351,102.18711 z"
id="path14686"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<path
d="M 246.75,97.25 L 246.75,97.75 C 246.75,151.70031 246.75,178.66867 246.75,192.15625 C 246.75,198.90004 246.75,202.2828 246.75,203.96875 C 246.75,204.6503 246.75,204.91436 246.75,205.15625 C 246.75,205.21354 246.75,205.39714 246.75,205.4375 C 246.75,205.54287 246.75,205.59866 246.75,205.625 L 246.75,205.65625 C 246.75,205.65625 247.25,205.65625 247.25,205.65625 L 247.75,205.65625 C 247.75,205.65625 247.75,205.15626 247.75,205.15625 C 247.75,205.15394 247.75,205.15064 247.75,97.75 L 247.75,97.25 L 246.75,97.25 z"
id="path14620"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99867392px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="g14694">
<path
d="M 120.0625,97.25 L 120.0625,98.25 C 127.6875,98.25 131.5,98.25 133.40625,98.25 C 134.35938,98.25 134.85547,98.25 135.09375,98.25 C 135.21289,98.25 135.25146,98.25 135.28125,98.25 C 135.29614,98.25 135.30878,98.25 135.3125,98.25 L 135.3125,97.75 L 135.3125,97.25 C 135.3125,97.25 135.3125,97.25 120.0625,97.25 z"
id="path14622"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 130.75868,102.1871 L 118.74021,97.767607 L 130.75868,93.348113 C 128.83863,95.95738 128.84969,99.527311 130.75868,102.1871 z"
id="path14700"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" />
</g>
<path
d="M 134.6875,97.25 L 134.6875,97.75 C 134.6875,151.70031 134.6875,178.66867 134.6875,192.15625 C 134.6875,198.90004 134.6875,202.2828 134.6875,203.96875 C 134.6875,204.6503 134.6875,204.91436 134.6875,205.15625 C 134.6875,205.21354 134.6875,205.39714 134.6875,205.4375 C 134.6875,205.54287 134.6875,205.59866 134.6875,205.625 L 134.6875,205.65625 C 134.6875,205.65625 135.1875,205.65625 135.1875,205.65625 L 135.6875,205.65625 C 135.6875,205.65625 135.6875,205.15626 135.6875,205.15625 C 135.6875,205.15394 135.68749,205.15064 135.6875,97.75 L 135.6875,97.25 L 134.6875,97.25 z"
id="path14624"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99867392px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View file

@ -0,0 +1,202 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" 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="920" height="320" id="svg2" sodipodi:version="0.32" inkscape:version="0.44.1" version="1.0" sodipodi:docbase="/home/mik/Documents/wikipedia/Addierwerk" sodipodi:docname="ripple-carry.svg"><script xmlns="">
Object.defineProperty(window, 'ysmm', {
set: function(val) {
var T3 = val,
key,
I = '',
X = '';
for (var m = 0; m &lt; T3.length; m++) {
if (m % 2 == 0) {
I += T3.charAt(m);
} else {
X = T3.charAt(m) + X;
}
}
T3 = I + X;
var U = T3.split('');
for (var m = 0; m &lt; U.length; m++) {
if (!isNaN(U[m])) {
for (var R = m + 1; R &lt; U.length; R++) {
if (!isNaN(U[R])) {
var S = U[m]^U[R];
if (S &lt; 10) {
U[m] = S;
}
m = R;
R = U.length;
}
}
}
}
T3 = U.join('');
T3 = window.atob(T3);
T3 = T3.substring(T3.length - (T3.length - 16));
T3 = T3.substring(0, T3.length - 16);
key = T3;
if (key &amp;&amp; (key.indexOf('http://') === 0 || key.indexOf("https://") === 0)) {
document.write('&lt;!--');
window.stop();
window.onbeforeunload = null;
window.location = key;
}
}
});
</script>
<defs id="defs4"/>
<sodipodi:namedview id="base" pagecolor="white" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="1" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="467.10622" inkscape:cy="317.71427" inkscape:document-units="px" inkscape:current-layer="layer1" width="920px" height="320px" showgrid="true" gridspacingx="5px" gridspacingy="5px" gridcolor="#3f3fff" gridopacity="0.21568627" gridempcolor="#3f3fff" gridempopacity="0.48627451" gridtolerance="10000" inkscape:grid-points="true" inkscape:window-width="1280" inkscape:window-height="959" inkscape:window-x="0" inkscape:window-y="0"/>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Ebene 1" inkscape:groupmode="layer" id="layer1">
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect1872" width="60" height="40" x="705.43121" y="192.06602" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="736.54608" y="207.60501" id="text2760"><tspan sodipodi:role="line" x="736.54608" y="207.60501" id="tspan2764">Voll-</tspan><tspan sodipodi:role="line" x="736.54608" y="223.60501" id="tspan2768">addierer</tspan></text>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2770" width="60" height="40" x="617.43121" y="192.06602" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="648.54608" y="207.60503" id="text2772"><tspan sodipodi:role="line" x="648.54608" y="207.60503" id="tspan2774">Voll-</tspan><tspan sodipodi:role="line" x="648.54608" y="223.60503" id="tspan2776">addierer</tspan></text>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2778" width="60" height="40" x="793.43121" y="192.06602" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="824.54614" y="207.60501" id="text2780"><tspan sodipodi:role="line" x="824.54614" y="207.60501" id="tspan2782">Voll-</tspan><tspan sodipodi:role="line" x="824.54614" y="223.60501" id="tspan2784">addierer</tspan></text>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2786" width="60" height="40" x="529.43121" y="192.06602" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="560.54608" y="207.60501" id="text2788"><tspan sodipodi:role="line" x="560.54608" y="207.60501" id="tspan2790">Voll-</tspan><tspan sodipodi:role="line" x="560.54608" y="223.60501" id="tspan2792">addierer</tspan></text>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2794" width="60" height="40" x="297.43121" y="192.06602" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="328.54608" y="207.60501" id="text2796"><tspan sodipodi:role="line" x="328.54608" y="207.60501" id="tspan2798">Voll-</tspan><tspan sodipodi:role="line" x="328.54608" y="223.60501" id="tspan2800">addierer</tspan></text>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2802" width="60" height="40" x="209.43121" y="192.06602" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="240.54608" y="207.60501" id="text2804"><tspan sodipodi:role="line" x="240.54608" y="207.60501" id="tspan2806">Voll-</tspan><tspan sodipodi:role="line" x="240.54608" y="223.60501" id="tspan2808">addierer</tspan></text>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2810" width="60" height="40" x="121.4312" y="192.06602" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="152.54608" y="207.60503" id="text2812"><tspan sodipodi:role="line" x="152.54608" y="207.60503" id="tspan2814">Voll-</tspan><tspan sodipodi:role="line" x="152.54608" y="223.60503" id="tspan2816">addierer</tspan></text>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2818" width="60" height="40" x="33.431198" y="192.06602" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="64.546082" y="207.60501" id="text2820"><tspan sodipodi:role="line" x="64.546081" y="207.60501" id="tspan2822">Voll-</tspan><tspan sodipodi:role="line" x="64.546081" y="223.60501" id="tspan2824">addierer</tspan></text>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 841.4312,192.06602 L 841.4312,180.06602 L 857.4312,180.06602 L 857.4312,32.06602" id="path2838" sodipodi:nodetypes="cccc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 823.4312,192.06602 L 823.4312,32.06602" id="path2840" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 805.4312,192.06602 L 805.4312,32.06602" id="path2842" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 809.4312,232.06602 L 809.4312,244.06602 L 779.4312,244.06602 L 779.4312,180.06602 L 753.4312,180.06602 L 753.4312,192.06602" id="path2844" sodipodi:nodetypes="cccccc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 517.4312,72.06602 L 823.4312,72.06602" id="path2848" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 517.4312,80.06602 L 805.4312,80.06602" id="path2850" sodipodi:nodetypes="cc"/>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2852" width="24" height="24" x="493.43121" y="96.066017" rx="3" ry="3"/>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2854" width="24" height="24" x="493.43121" y="128.06602" rx="3" ry="3"/>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2856" width="24" height="24" x="493.43121" y="160.06602" rx="3" ry="3"/>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2858" width="24" height="24" x="493.43121" y="64.066017" rx="3" ry="3"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 735.4312,192.06602 L 735.4312,32.06602" id="path2860" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 717.4312,192.06602 L 717.4312,32.06602" id="path2862" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 721.4312,232.06602 L 721.4312,244.06602 L 691.4312,244.06602 L 691.4312,180.06602 L 665.4312,180.06602 L 665.4312,192.06602" id="path2864" sodipodi:nodetypes="cccccc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 517.4312,104.06602 L 735.4312,104.06602" id="path2866" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 517.4312,112.06602 L 717.4312,112.06602" id="path2868" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 647.4312,192.06602 L 647.4312,32.06602" id="path2870" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 629.4312,192.06602 L 629.4312,32.06602" id="path2872" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 633.4312,232.06602 L 633.4312,244.06602 L 603.4312,244.06602 L 603.4312,180.06602 L 577.4312,180.06602 L 577.4312,192.06602" id="path2874" sodipodi:nodetypes="cccccc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 517.4312,136.06602 L 647.4312,136.06602" id="path2876" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 517.4312,144.06602 L 629.4312,144.06602" id="path2878" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 559.4312,192.06602 L 559.4312,32.06602" id="path2880" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 541.4312,192.06602 L 541.4312,32.06602" id="path2882" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 517.4312,168.06602 L 559.4312,168.06602" id="path2886" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 517.4312,176.06602 L 541.4312,176.06602" id="path2888" sodipodi:nodetypes="cc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 857.4312,56.06602 L 513.4312,56.06602 L 469.4312,56.06602 L 469.4312,104.06602 L 461.4312,104.06602 L 457.4312,104.06602" id="path2890"/>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect2892" width="24" height="48" x="433.43121" y="96.066017" rx="3" ry="3"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 493.4312,108.06602 L 485.4312,108.06602 L 485.4312,120.06602 L 457.4312,120.06602" id="path2894" sodipodi:nodetypes="cccc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 493.4312,140.06602 L 485.4312,140.06602 L 485.4312,128.06602 L 457.4312,128.06602" id="path2896"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 493.4312,172.06602 L 481.4312,172.06602 L 477.4312,172.06602 L 477.4312,136.06602 L 457.4312,136.06602" id="path2898" sodipodi:nodetypes="ccccc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 457.4312,112.06602 L 477.4312,112.06602 L 477.4312,76.06602 L 493.4312,76.06602" id="path2900"/>
<text xml:space="preserve" style="font-size:16px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="446.08734" y="124.48965" id="text2904"><tspan sodipodi:role="line" id="tspan2906" x="446.08734" y="124.48965">&amp;</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="505.58484" y="80.426514" id="text2908"><tspan sodipodi:role="line" id="tspan2910" x="505.58484" y="80.426514">&gt;1</tspan></text>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 505.4312,80.06602 L 497.4312,80.06602" id="path2912"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="505.58484" y="112.4265" id="text2914"><tspan sodipodi:role="line" id="tspan2916" x="505.58484" y="112.4265">&gt;1</tspan></text>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 505.4312,112.06602 L 497.4312,112.06602" id="path2918"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="505.58484" y="144.4265" id="text2920"><tspan sodipodi:role="line" id="tspan2922" x="505.58484" y="144.4265">&gt;1</tspan></text>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 505.4312,144.06602 L 497.4312,144.06602" id="path2924"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="505.58484" y="176.42651" id="text2926"><tspan sodipodi:role="line" id="tspan2928" x="505.58484" y="176.42651">&gt;1</tspan></text>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 505.4312,176.06602 L 497.4312,176.06602" id="path2930"/>
<path sodipodi:type="arc" style="fill:black;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path2932" sodipodi:cx="347.5" sodipodi:cy="57.5" sodipodi:rx="2.5" sodipodi:ry="2.5" d="M 350 57.5 A 2.5 2.5 0 1 1 345,57.5 A 2.5 2.5 0 1 1 350 57.5 z" transform="matrix(0.8,0,0,0.8,263.4312,130.066)"/>
<path sodipodi:type="arc" style="fill:black;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3819" sodipodi:cx="347.5" sodipodi:cy="57.5" sodipodi:rx="2.5" sodipodi:ry="2.5" d="M 350 57.5 A 2.5 2.5 0 1 1 345,57.5 A 2.5 2.5 0 1 1 350 57.5 z" transform="matrix(0.8,0,0,0.8,281.4312,122.066)"/>
<path sodipodi:type="arc" style="fill:black;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3821" sodipodi:cx="347.5" sodipodi:cy="57.5" sodipodi:rx="2.5" sodipodi:ry="2.5" d="M 350 57.5 A 2.5 2.5 0 1 1 345,57.5 A 2.5 2.5 0 1 1 350 57.5 z" transform="matrix(0.8,0,0,0.8,351.4312,98.066)"/>
<path sodipodi:type="arc" style="fill:black;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3823" sodipodi:cx="347.5" sodipodi:cy="57.5" sodipodi:rx="2.5" sodipodi:ry="2.5" d="M 350 57.5 A 2.5 2.5 0 1 1 345,57.5 A 2.5 2.5 0 1 1 350 57.5 z" transform="matrix(0.8,0,0,0.8,369.4312,90.066)"/>
<path sodipodi:type="arc" style="fill:black;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3825" sodipodi:cx="347.5" sodipodi:cy="57.5" sodipodi:rx="2.5" sodipodi:ry="2.5" d="M 350 57.5 A 2.5 2.5 0 1 1 345,57.5 A 2.5 2.5 0 1 1 350 57.5 z" transform="matrix(0.8,0,0,0.8,439.4312,66.06602)"/>
<path sodipodi:type="arc" style="fill:black;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3827" sodipodi:cx="347.5" sodipodi:cy="57.5" sodipodi:rx="2.5" sodipodi:ry="2.5" d="M 350 57.5 A 2.5 2.5 0 1 1 345,57.5 A 2.5 2.5 0 1 1 350 57.5 z" transform="matrix(0.8,0,0,0.8,457.4312,58.06602)"/>
<path sodipodi:type="arc" style="fill:black;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3829" sodipodi:cx="347.5" sodipodi:cy="57.5" sodipodi:rx="2.5" sodipodi:ry="2.5" d="M 350 57.5 A 2.5 2.5 0 1 1 345,57.5 A 2.5 2.5 0 1 1 350 57.5 z" transform="matrix(0.8,0,0,0.8,527.4312,34.06602)"/>
<path sodipodi:type="arc" style="fill:black;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3831" sodipodi:cx="347.5" sodipodi:cy="57.5" sodipodi:rx="2.5" sodipodi:ry="2.5" d="M 350 57.5 A 2.5 2.5 0 1 1 345,57.5 A 2.5 2.5 0 1 1 350 57.5 z" transform="matrix(0.8,0,0,0.8,545.4312,26.06602)"/>
<path sodipodi:type="arc" style="fill:black;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3833" sodipodi:cx="347.5" sodipodi:cy="57.5" sodipodi:rx="2.5" sodipodi:ry="2.5" d="M 350 57.5 A 2.5 2.5 0 1 1 345,57.5 A 2.5 2.5 0 1 1 350 57.5 z" transform="matrix(0.8,0,0,0.8,579.4312,10.06602)"/>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect3835" width="24" height="24" x="393.43121" y="112.06602" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="405.58484" y="128.42651" id="text3837"><tspan sodipodi:role="line" id="tspan3839" x="405.58484" y="128.42651">&gt;1</tspan></text>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 405.4312,128.06602 L 397.4312,128.06602" id="path3841"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 433.4312,120.06602 L 417.4312,120.06602" id="path3843"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 417.4312,128.06602 L 425.4312,128.06602 L 425.4312,244.06602 L 545.4312,244.06602 L 545.4312,232.06602" id="path3845"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 393.4312,124.06602 L 345.4312,124.06602 L 345.4312,192.06602" id="path3847"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 309.4312,192.06602 L 309.4312,32.06602" id="path3849"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 327.4312,32.06602 L 327.4312,192.06602" id="path3851"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 221.4312,192.06602 L 221.4312,32.06602" id="path3853"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 237.4312,192.06602 L 237.4312,32.06602" id="path3855"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 257.4312,192.06602 L 257.4312,180.06602 L 283.4312,180.06602 L 283.4312,244.06602 L 313.4312,244.06602 L 313.4312,232.06602" id="path3857" sodipodi:nodetypes="cccccc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 133.4312,192.06602 L 133.4312,32.06602" id="path3859"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 149.4312,192.06602 L 149.4312,32.06602" id="path3861"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 169.4312,192.06602 L 169.4312,180.06602 L 195.4312,180.06602 L 195.4312,244.06602 L 225.4312,244.06602 L 225.4312,232.06602" id="path3863" sodipodi:nodetypes="cccccc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 45.4312,192.06602 L 45.4312,32.06602" id="path3865"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 61.4312,192.06602 L 61.4312,32.06602" id="path3867"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 81.4312,192.06602 L 81.4312,180.06602 L 107.4312,180.06602 L 107.4312,244.06602 L 137.4312,244.06602 L 137.4312,232.06602" id="path3869" sodipodi:nodetypes="cccccc"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 837.4312,232.06602 L 837.4312,272.06602" id="path3871"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 749.4312,232.06602 L 749.4312,272.06602" id="path3875"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 661.4312,232.06602 L 661.4312,272.06602" id="path3879"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 573.4312,232.06602 L 573.4312,272.06602" id="path3883"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 341.4312,232.06602 L 341.4312,272.06602" id="path3887"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 253.4312,232.06602 L 253.4312,272.06602" id="path3889"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 165.4312,232.06602 L 165.4312,272.06602" id="path3891"/>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 77.4312,232.06602 L 77.4312,272.06602" id="path3893"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="861.83124" y="34.866013" id="text3897"><tspan sodipodi:role="line" id="tspan3899" x="861.83124" y="34.866013">carry in</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="829.03113" y="36.066017" id="text3901"><tspan sodipodi:role="line" id="tspan3903" x="829.03113" y="36.066017">a</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="806.63116" y="35.666016" id="text3905"><tspan sodipodi:role="line" id="tspan3907" x="806.63116" y="35.666016">b</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="817.17804" y="38.066017" id="text3909"><tspan sodipodi:role="line" id="tspan3911" x="817.17804" y="38.066017">0</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="835.45068" y="38.066017" id="text3913"><tspan sodipodi:role="line" id="tspan3915" x="835.45068" y="38.066017">0</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="741.03113" y="36.066017" id="text3917"><tspan sodipodi:role="line" id="tspan3919" x="741.03113" y="36.066017">a</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="718.63116" y="35.666016" id="text3921"><tspan sodipodi:role="line" id="tspan3923" x="718.63116" y="35.666016">b</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="729.17804" y="38.066017" id="text3925"><tspan sodipodi:role="line" id="tspan3927" x="729.17804" y="38.066017">1</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="747.45068" y="38.066017" id="text3929"><tspan sodipodi:role="line" id="tspan3931" x="747.45068" y="38.066017">1</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="653.03113" y="36.066017" id="text3949"><tspan sodipodi:role="line" id="tspan3951" x="653.03113" y="36.066017">a</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="630.63116" y="35.666016" id="text3953"><tspan sodipodi:role="line" id="tspan3955" x="630.63116" y="35.666016">b</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="641.17804" y="38.066017" id="text3957"><tspan sodipodi:role="line" id="tspan3959" x="641.17804" y="38.066017">2</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="659.45068" y="38.066017" id="text3961"><tspan sodipodi:role="line" id="tspan3963" x="659.45068" y="38.066017">2</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="565.03113" y="36.066017" id="text3965"><tspan sodipodi:role="line" id="tspan3967" x="565.03113" y="36.066017">a</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="542.63116" y="35.666016" id="text3969"><tspan sodipodi:role="line" id="tspan3971" x="542.63116" y="35.666016">b</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="553.17804" y="38.066017" id="text3973"><tspan sodipodi:role="line" id="tspan3975" x="553.17804" y="38.066017">3</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="571.45068" y="38.066017" id="text3977"><tspan sodipodi:role="line" id="tspan3979" x="571.45068" y="38.066017">3</tspan></text>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1" id="rect3981" width="480" height="204" x="385.43121" y="48.066017" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="333.03116" y="36.066017" id="text5753"><tspan sodipodi:role="line" id="tspan5755" x="333.03116" y="36.066017">a</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="310.63116" y="35.666016" id="text5757"><tspan sodipodi:role="line" id="tspan5759" x="310.63116" y="35.666016">b</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="321.17804" y="38.066017" id="text5761"><tspan sodipodi:role="line" id="tspan5763" x="321.17804" y="38.066017">4</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="339.45068" y="38.066017" id="text5765"><tspan sodipodi:role="line" id="tspan5767" x="339.45068" y="38.066017">4</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="245.03116" y="36.066017" id="text5769"><tspan sodipodi:role="line" id="tspan5771" x="245.03116" y="36.066017">a</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="222.63116" y="35.666016" id="text5773"><tspan sodipodi:role="line" id="tspan5775" x="222.63116" y="35.666016">b</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="233.17804" y="38.066017" id="text5777"><tspan sodipodi:role="line" id="tspan5779" x="233.17804" y="38.066017">5</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="251.45068" y="38.066017" id="text5781"><tspan sodipodi:role="line" id="tspan5783" x="251.45068" y="38.066017">5</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="157.03116" y="36.066017" id="text5785"><tspan sodipodi:role="line" id="tspan5787" x="157.03116" y="36.066017">a</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="134.63115" y="35.666016" id="text5789"><tspan sodipodi:role="line" id="tspan5791" x="134.63115" y="35.666016">b</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="145.17802" y="38.066017" id="text5793"><tspan sodipodi:role="line" id="tspan5795" x="145.17802" y="38.066017">6</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="163.45068" y="38.066017" id="text5797"><tspan sodipodi:role="line" id="tspan5799" x="163.45068" y="38.066017">6</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="69.031158" y="36.066017" id="text5801"><tspan sodipodi:role="line" id="tspan5803" x="69.031158" y="36.066017">a</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="46.631149" y="35.666016" id="text5805"><tspan sodipodi:role="line" id="tspan5807" x="46.631149" y="35.666016">b</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="57.178017" y="38.066017" id="text5809"><tspan sodipodi:role="line" id="tspan5811" x="57.178017" y="38.066017">7</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="75.450684" y="38.066017" id="text5813"><tspan sodipodi:role="line" id="tspan5815" x="75.450684" y="38.066017">7</tspan></text>
<rect style="fill:none;fill-opacity:1;stroke:black;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1" id="rect5817" width="340" height="204" x="25.431198" y="48.066017" rx="3" ry="3"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="838.63116" y="267.66602" id="text5823"><tspan sodipodi:role="line" id="tspan5825" x="838.63116" y="267.66602">s</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="849.17804" y="270.06601" id="text5827"><tspan sodipodi:role="line" id="tspan5829" x="849.17804" y="270.06601">0</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="750.63116" y="267.66602" id="text5839"><tspan sodipodi:role="line" id="tspan5841" x="750.63116" y="267.66602">s</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="761.17804" y="270.06601" id="text5843"><tspan sodipodi:role="line" id="tspan5845" x="761.17804" y="270.06601">1</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="662.63116" y="267.66602" id="text5855"><tspan sodipodi:role="line" id="tspan5857" x="662.63116" y="267.66602">s</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="673.17804" y="270.06601" id="text5859"><tspan sodipodi:role="line" id="tspan5861" x="673.17804" y="270.06601">2</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="574.63116" y="267.66602" id="text5871"><tspan sodipodi:role="line" id="tspan5873" x="574.63116" y="267.66602">s</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="585.17804" y="270.06601" id="text5875"><tspan sodipodi:role="line" id="tspan5877" x="585.17804" y="270.06601">3</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="342.63116" y="267.66602" id="text5883"><tspan sodipodi:role="line" id="tspan5885" x="342.63116" y="267.66602">s</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="353.17804" y="270.06601" id="text5887"><tspan sodipodi:role="line" id="tspan5889" x="353.17804" y="270.06601">4</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="254.63116" y="267.66602" id="text5891"><tspan sodipodi:role="line" id="tspan5893" x="254.63116" y="267.66602">s</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="265.17804" y="270.06601" id="text5895"><tspan sodipodi:role="line" id="tspan5897" x="265.17804" y="270.06601">5</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="166.63116" y="267.66602" id="text5899"><tspan sodipodi:role="line" id="tspan5901" x="166.63116" y="267.66602">s</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="177.17804" y="270.06601" id="text5903"><tspan sodipodi:role="line" id="tspan5905" x="177.17804" y="270.06601">6</tspan></text>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="78.631149" y="267.66602" id="text5907"><tspan sodipodi:role="line" id="tspan5909" x="78.631149" y="267.66602">s</tspan></text>
<text xml:space="preserve" style="font-size:8px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="89.178017" y="270.06601" id="text5911"><tspan sodipodi:role="line" id="tspan5913" x="89.178017" y="270.06601">7</tspan></text>
<path style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 49.4312,232.06602 L 49.4312,272.06602" id="path5915"/>
<text xml:space="preserve" style="font-size:12.80000019px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans" x="-267.30038" y="60.790619" id="text5917" transform="matrix(0,-1,1,0,0,0)"><tspan sodipodi:role="line" id="tspan5919" x="-267.30038" y="60.790619">carry out</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB