summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2019-05-17 06:41:48 +0800
committerIru Cai <mytbk920423@gmail.com>2019-05-17 06:41:48 +0800
commitb760658a92b9a237c65416aeafb07eadd361dca6 (patch)
tree8305c639549adfc1f09b3129280371075c47353d
parentef4c51dacfead0c3509c68cd562866a8bf82f88d (diff)
downloaddissertation-b760658a92b9a237c65416aeafb07eadd361dca6.tar.xz
upd
-rw-r--r--chap/chap1.tex103
-rw-r--r--chap/chap2.tex6
-rw-r--r--skylake.pdfbin0 -> 243085 bytes
-rw-r--r--skylake.svg1561
-rw-r--r--thesis.bib90
5 files changed, 1731 insertions, 29 deletions
diff --git a/chap/chap1.tex b/chap/chap1.tex
index 30e335b..4a0e94e 100644
--- a/chap/chap1.tex
+++ b/chap/chap1.tex
@@ -8,33 +8,86 @@
\section{选题背景与研究意义}
现代微处理器使用了超标量流水线、乱序执行等设计,通过利用程序内的指令级
-并行性,掩盖指令的延迟的方法,提高处理器的指令执行效率。乱序执行是处理
-器对指令进行动态调度的技术,它允许一条指令在满足数据依赖后即可进入执行
-单元执行,而无需等待程序序列之前的指令。超标量处理器设计多条执行流水线,
-使得处理器每一周期可以执行多条指令。由于程序中大量出现转移指令,计算转
-移方向和目标之前可能有较长延迟,影响流水线的利用率,因此处理器使用了转
-移预测和推测式执行技术。处理器可以根据转移预测得出的分支方向和转移目标,
-从预测的目标地址处或取指令并执行。
-
-由于处理器在执行程序的过程中,处理器可能接收外部中断,指令执行可能产生
-异常,因此乱序执行的处理器使用一个称为重排序缓冲的队列,按程序序列保存
-流水线中的指令,在产生中断或异常后,将产生异常的指令及其之后执行的指令
-产生的效果撤销。在使用推测式执行的处理器中,处理器在预测错误时,由该预
-测产生的推测式执行的指令,也需要类似的错误恢复机制撤销。处理器中的错误
-恢复机制使得处理器在体系结构层次上的状态保持正确,从而程序正确运行。
-
-2018年公布的 Meltdown\supercite{meltdown} 和
+并行性,掩盖指令的延迟的方法,提高处理器的指令执行效率。
+
+乱序执行是处理器对指令进行动态调度的技术,它允许一条指令在满足数据依赖
+后即可进入执行单元执行,而无需等待程序序列之前的指令。在乱序执行处理器
+中,处理器存在多个不同的执行单元,用于同时处理多个指令。处理器使用
+Tomasulo 算法\supercite{tomasulo},可以识别指令之间的依赖关系,允许无
+依赖关系的指令并行执行。
+
+在乱序执行中,指令可以不按程序序列改变体系结构状态,在指令执行发生异常
+时,发生异常之后的指令可能已经执行,使得处理器无法在处理异常后,恢复异
+常发生时的体系结构状态。为了解决这个问题,处理器需要支持精确中断。现代
+处理器通常使用重排序缓冲区(ROB)\supercite{preciseint}实现精确中断,
+它使得指令按序提交至体系结构状态中,如果异常发生,则丢弃未提交的指令的
+结果。
+
+超标量处理器设计允许处理器平均没周期执行多于一条指令,它可以在一周期内
+同时分发多个指令至不同的执行单元,从而利用程序的指令级并行性。
+
+程序中除了数据相关,还有控制相关。程序中存在大量的分支指令,等待分支指
+令执行,则后续指令在分支指令执行期间均无法执行,降低了执行单元的利用率,
+导致总体性能下降。因此现代微处理器使用了推测式执行技术,在分支指令执行
+结束前,根据分支预测的结果,执行预测将要执行的指令。分支预测需要预测分
+支的方向和目标地址。处理器使用分支目标缓冲器(BTB)预测分支指令的方向
+和目标地址\supercite{btb}。为了预测函数调用的返回地址,处理器还使用栈
+结构的返回栈缓冲器(RSB)\supercite{rsb}。
+
+为了开发出多任务系统的线程级并行性,部分处理器使用了多线程技术。同时多
+线程(SMT)\supercite{smt}是一种多线程技术,它对超标量处理器做了少量修
+改,使得多个线程可以共用一组执行单元,提高执行单元的利用率。
+
+\begin{figure}[htbp]
+ \centering
+ \includegraphics[width=0.8\textwidth]{skylake.pdf}
+ \caption{Skylake 微体系结构示意图}
+ \label{fig:skylake}
+\end{figure}
+
+图\ref{fig:skylake}是 Intel Skylake 微体系结构的示意图\footnote{图片来
+ 自 https://mdsattacks.com/images/skylake.svg},它是一个乱序执行超标
+量处理器体系结构,每周期最多可以将 6 个微操作发射至 8 组执行单元中执行,
+它的 ROB 使得流水线中可以同时存在 224 个微操作,它的分支预测器可以预测
+分支的方向和目标地址,使处理器在预测的目标处取出指令至指令缓存。
+
+2018 年公布的 Meltdown\supercite{meltdown} 和
Spectre\supercite{spectre} 攻击使人们发现,虽然处理器在执行指令产生异
常,或推测式执行错误后,通过恢复可以使体系结构层次上的状态保持正确,但
-是这些错误执行的指令在微体系结构中产生了副作用,并且可能泄露系统中的秘密数
-据,破坏了系统的安全。从 Meltdown 和 Spectre 被发现之后,Intel、AMD、
-ARM等处理器设计厂商,和Google、Microsoft等软件厂商,均提出了软件补丁或
-处理器微码更新,用于减轻 Meltdown 和 Spectre 的威胁。Intel 在后续的处
-理器中,也在硬件上对一些攻击做出了防御。\supercite{intel-9900k}
-
-已有的基于软件的解决方法,存在性能开销大,防御的攻击种类单一等缺点。因
-此也有研究,尝试通过微体系结构的设计,低开销地防御 Meltdown 和 Spectre 攻
-击。本文的目标是设计并实现一种微体系结构,防御 Spectre 攻击。
+是这些错误执行的指令在微体系结构中产生了副作用,并且可能泄露系统中的秘
+密数据,破坏了系统的安全。在 Meltdown 和 Spectre 之后,研究者发现了更
+多相似的攻击种类,包括 Foreshadow\supercite{foreshadow}、
+Fallout\supercite{fallout}、RIDL\supercite{ridl}、
+ZombieLoad\supercite{zombie}。
+
+面对这些新型攻击,Intel、AMD、ARM 等处理器设计厂商,和 Google、
+Microsoft 等软件厂商,均发布了软件补丁或处理器微码更新,用于减轻这些攻
+击的威胁。Intel 在后续的处理器中,也在硬件上对一些攻击做出了防御
+\supercite{intel-9900k}。当前的基于软件的防御方法,均对性能造成一定的
+损失,并且通常无法防御更新的攻击手段。表\ref{tab:perf_mitigation}列出
+了部分已有的软件和微码防御方法,它们所防御的攻击,和造成的性能损失。
+\supercite{systematic}
+
+\begin{table}[htbp]
+ \begin{tabular}{ccc}
+ \hline
+ 防御方法 & 防御的攻击种类 & 性能损失\tabularnewline
+ \hline
+ KAISER & Meltdown & 0-2.6\%\tabularnewline
+ Retpoline & Spectre v2 & 5\%-10\%\tabularnewline
+ IBRS/IBPB/STIPB & Spectre v2 & 20\%-50\%\tabularnewline
+ SSBD/SSBB & Spectre v4 & 2\%-8\%\tabularnewline
+ 串行化指令 & Spectre v1 & 62\%\tabularnewline
+ 推测式装载加固 & Spectre v1 & 29\%\tabularnewline
+ \hline
+ \end{tabular}
+ \centering
+ \caption{软件防御对性能的影响}
+ \label{tab:perf_mitigation}
+\end{table}
+
+因此,通过改进微体系结构的设计,低开销地防御 Meltdown 和 Spectre 攻击,
+具有重要的研究意义。本文的目标是设计一种微体系结构,防御 Spectre 攻击。
\section{研究平台与环境}
diff --git a/chap/chap2.tex b/chap/chap2.tex
index 17f99c1..86ab846 100644
--- a/chap/chap2.tex
+++ b/chap/chap2.tex
@@ -615,13 +615,13 @@ ARM 处理器上进行验证,确认它们受 Spectre v1 的影响。
如图\ref{lst:spec-buf-overflow}中的程序:
\begin{figure}
- \centering
- \caption{推测式缓冲区溢出}
- \label{lst:spec-buf-overflow}
\begin{minted}{C}
if (x < len)
a[x] = z;
\end{minted}
+ \centering
+ \caption{推测式缓冲区溢出}
+ \label{lst:spec-buf-overflow}
\end{figure}
攻击者给出一个超过数组 \verb|a| 大小的 \verb|x| 时,在推测式执行时,会
diff --git a/skylake.pdf b/skylake.pdf
new file mode 100644
index 0000000..0c792c0
--- /dev/null
+++ b/skylake.pdf
Binary files differ
diff --git a/skylake.svg b/skylake.svg
new file mode 100644
index 0000000..480bd19
--- /dev/null
+++ b/skylake.svg
@@ -0,0 +1,1561 @@
+<?xml version="1.0" encoding="utf-8"?>
+<svg id="skylake-svg" version="1.1" viewBox="0 0 450.66194 184.91706" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<defs id="defs2">
+<linearGradient id="linearGradient1707">
+<stop id="stop1703" offset="0" style="stop-color:#cccccc;stop-opacity:1;"/>
+<stop id="stop1705" offset="1" style="stop-color:#cccccc;stop-opacity:0;"/>
+</linearGradient>
+<linearGradient id="linearGradient1699">
+<stop id="stop1695" offset="0" style="stop-color:#5f8dd3;stop-opacity:1;"/>
+<stop id="stop1697" offset="1" style="stop-color:#5f8dd3;stop-opacity:0;"/>
+</linearGradient>
+<linearGradient id="linearGradient1691">
+<stop id="stop1687" offset="0" style="stop-color:#5f8dd3;stop-opacity:1;"/>
+<stop id="stop1689" offset="1" style="stop-color:#5f8dd3;stop-opacity:0;"/>
+</linearGradient>
+<linearGradient id="linearGradient2241">
+<stop id="stop2237" offset="0" style="stop-color:#e6e6e6;stop-opacity:1;"/>
+<stop id="stop2239" offset="1" style="stop-color:#e6e6e6;stop-opacity:0;"/>
+</linearGradient>
+<linearGradient gradientTransform="translate(51.85843,1.3226676)" gradientUnits="userSpaceOnUse" id="linearGradient2243" x1="50.270836" x2="75.671288" xlink:href="#linearGradient2241" y1="-29.098959" y2="-29.098959"/>
+<linearGradient gradientTransform="matrix(0.26458333,0,0,0.26458333,-3.5430828,-53.555346)" gradientUnits="userSpaceOnUse" id="linearGradient1693" x1="319.3916" x2="279.3916" xlink:href="#linearGradient1691" y1="94.438675" y2="94.438675"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient1701" x1="709.3916" x2="709.3916" xlink:href="#linearGradient1699" y1="64.438675" y2="19.438675"/>
+<linearGradient gradientTransform="matrix(0.26458333,0,0,0.26458333,-3.5430828,-53.555346)" gradientUnits="userSpaceOnUse" id="linearGradient1709" x1="429.3916" x2="389.3916" xlink:href="#linearGradient1707" y1="619.43866" y2="619.43866"/>
+<linearGradient gradientTransform="matrix(0.26458333,0,0,0.26458333,-3.5430828,-53.555346)" gradientUnits="userSpaceOnUse" id="linearGradient1659" x1="709.3916" x2="709.3916" xlink:href="#linearGradient1699" y1="64.438675" y2="19.438675"/>
+</defs>
+<metadata id="metadata5">
+<rdf:RDF>
+<cc:Work rdf:about="">
+<dc:format>image/svg+xml</dc:format>
+<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+<dc:title/>
+</cc:Work>
+</rdf:RDF>
+</metadata>
+<g id="layer1" style="display:inline" transform="translate(54.078609,54.747312)">
+<path d="M 301.625,82.687498 -48.947916,125.02083" id="path1339" style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.8, 1.8;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="M 301.625,60.197915 -48.947916,-49.604169" id="path1337" style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.8, 1.8;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="m -48.94791,-49.604168 h 334.5672 V 124.89014 h -334.5672 z" id="rect1331" style="fill:#e6e6e6;fill-opacity:0.49803922;stroke:#000000;stroke-width:0.2613973;stroke-miterlimit:4;stroke-dasharray:1.04558921, 1.04558921;stroke-dashoffset:0"/>
+<path d="m 37.041665,-45.635419 3e-6,48.9479167 H 171.97917 l -1e-5,-48.9479167 z" id="path2735" style="fill:#e6e6e6;fill-opacity:0.49803922;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833327, 1.05833327;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="M 33.205207,-45.767709 H -44.846874 V 120.91979 H 62.309374 V 11.117706 H 33.205207 Z" id="path2733" style="fill:#e6e6e6;fill-opacity:0.49803922;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833327, 1.05833327;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="m 371.52344,112.39453 0.83203,7 h -5.8125 -10 v 115.00014 h 10 V 129.39453 h 5.8125 l -0.83203,7 8.32031,-12 z" id="path2724" style="fill:#cccccc;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="M 67.468752,11.249997 V 121.05207 H 280.45833 V -45.635418 H 174.62499 l 1e-5,56.885417 z" id="path2737" style="fill:#e6e6e6;fill-opacity:0.49803922;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833327, 1.05833327;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="M 83.608734,16.67417 H 168.01041 V 80.041666 H 83.608734 Z" id="rect1687" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26500002;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="m 180.03217,-23.030329 h 97.66481 v 81.922325 h -97.66481 z" id="rect524" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.23100001;stroke-miterlimit:4;stroke-dasharray:0.92400003, 0.92400003;stroke-dashoffset:0"/>
+<path d="m 569.04297,179.39453 6.4e-4,30.00014 h 110 l -6.4e-4,49.99986 h -10 v 15 h 10 v 40 h -10 v 15 h 25 v -15 -40 -15 l 6.4e-4,-49.99986 h 175.00001 v -15 H 694.04361 l -6.4e-4,-15.00014 h -15 l 6.4e-4,15.00014 h -95 l -6.4e-4,-15.00014 z" id="path1360" style="fill:#5f8dd3;stroke:none;stroke-width:1.35724103px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 310.75292,17.864538 v 3.96875 h -14.55209 c -1.85208,0 -2.64583,0.793753 -2.64583,2.645833 v 29.104167 c 0,1.852091 0.79375,2.645833 2.64583,2.645833 5.7875,1.1e-5 9.45134,0 14.55209,0 v 3.96875 h 3.96875 v -3.96875 h 21.16666 v 3.96875 h 3.96875 v -3.96875 c 5.73264,2.1e-5 8.81945,4e-5 14.55209,0 1.85209,-1.1e-5 2.64583,-0.793742 2.64583,-2.645833 v -12.510347 -0.05736 h 3.96875 v -3.96875 H 357.055 v -12.56771 c 0,-1.85208 -0.79374,-2.645833 -2.64583,-2.645833 h -14.55209 v -3.96875 h -3.96875 v 3.96875 h -21.16666 v -3.96875 z m -11.90625,7.9375 h 11.90625 v 3.96875 h 3.96875 v -3.96875 h 21.16666 v 3.96875 h 3.96875 v -3.96875 h 11.90625 c 0.79375,0 1.32292,0.529167 1.32292,1.322917 v 23.812499 c 0,0.79375 -0.52917,1.322906 -1.32292,1.322917 -4.85069,7.9e-5 -7.05556,0 -11.90625,0 v -3.96875 h -3.96875 v 3.96875 h -21.16666 v -3.96875 h -3.96875 v 3.96875 c -4.77166,5e-5 -7.32302,-1.1e-5 -11.90625,0 -0.79375,0 -1.32292,-0.529167 -1.32292,-1.322917 V 27.124955 c 0,-0.79375 0.52917,-1.322928 1.32292,-1.322917 z" id="path868" style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M 326.6279,-4.6250024 H 348.985 V 17.864568 h -22.3571 z" id="rect965" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26500002;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="CPUCore" id="text971" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 334.9581,3.4593249 q -0.4837,0 -0.75241,0.3121257 -0.26872,0.3100586 -0.26872,0.8516275 0,0.5353678 0.27905,0.8619629 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.6056478 l 0.32246,0.1612305 q -0.17983,0.3762044 -0.50643,0.5725748 -0.32452,0.1963704 -0.75447,0.1963704 -0.44028,0 -0.76275,-0.181901 -0.32039,-0.1839681 -0.48989,-0.5229655 -0.16743,-0.3410644 -0.16743,-0.8061523 0,-0.6965982 0.3762,-1.0914062 0.37621,-0.3948079 1.0418,-0.3948079 0.46509,0 0.77721,0.1819011 0.31213,0.181901 0.45889,0.5395019 l -0.37414,0.1240234 q -0.10128,-0.254248 -0.32659,-0.3886067 -0.22324,-0.1343588 -0.53123,-0.1343588 z" id="path2528" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 338.98059,4.0567045 q 0,0.4134114 -0.27079,0.6573242 -0.26871,0.2439127 -0.73173,0.2439127 h -0.85577 v 1.1348144 h -0.3948 V 3.1802722 h 1.22576 q 0.48989,0 0.75861,0.2294434 0.26872,0.2294433 0.26872,0.6469889 z m -0.39688,0.00413 q 0,-0.5643066 -0.67799,-0.5643066 h -0.78342 v 1.1492838 h 0.79996 q 0.66145,0 0.66145,-0.5849772 z" id="path2530" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 340.71898,6.1340969 q -0.3576,0 -0.62425,-0.1302246 -0.26665,-0.1302246 -0.41341,-0.3782714 -0.14676,-0.2480469 -0.14676,-0.5911784 V 3.1802722 h 0.39481 v 1.8210774 q 0,0.398942 0.20257,0.6056478 0.20257,0.2067057 0.58498,0.2067057 0.39274,0 0.60978,-0.2129069 0.21911,-0.214974 0.21911,-0.6263183 V 3.1802722 h 0.39274 v 1.8169433 q 0,0.3534668 -0.1509,0.6097819 -0.14883,0.256315 -0.42374,0.3927408 -0.27286,0.1343587 -0.64493,0.1343587 z" id="path2532" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 334.83821,8.7509915 q -0.4837,0 -0.75241,0.3121256 -0.26872,0.3100586 -0.26872,0.8516275 0,0.5353674 0.27905,0.8619624 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605647 l 0.32246,0.16123 q -0.17983,0.376205 -0.50643,0.572575 -0.32452,0.19637 -0.75447,0.19637 -0.44028,0 -0.76275,-0.181901 -0.32039,-0.183968 -0.48989,-0.522965 -0.16743,-0.341064 -0.16743,-0.8061524 0,-0.6965982 0.37621,-1.0914061 0.3762,-0.394808 1.04179,-0.394808 0.46509,0 0.77722,0.1819011 0.31212,0.181901 0.45888,0.5395019 l -0.37414,0.1240234 q -0.10128,-0.254248 -0.32659,-0.3886067 -0.22324,-0.1343587 -0.53123,-0.1343587 z" id="path2534" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 338.43695,10.264077 q 0,0.587045 -0.25838,0.874365 -0.25838,0.287321 -0.75034,0.287321 -0.48989,0 -0.74001,-0.297656 -0.25011,-0.299723 -0.25011,-0.86403 0,-1.1575517 1.00252,-1.1575517 0.51263,0 0.75448,0.2831868 0.24184,0.2811198 0.24184,0.8743649 z m -0.39067,0 q 0,-0.4630205 -0.13849,-0.6717933 -0.13643,-0.2108398 -0.46096,-0.2108398 -0.32659,0 -0.47335,0.2149739 -0.1447,0.2129069 -0.1447,0.6676592 0,0.442351 0.14263,0.665593 0.14469,0.221175 0.45268,0.221175 0.33487,0 0.47749,-0.214974 0.1447,-0.214974 0.1447,-0.671794 z" id="path2536" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 338.91031,11.384422 V 9.6687648 q 0,-0.2356445 -0.0124,-0.5208984 h 0.3514 q 0.0165,0.3803386 0.0165,0.4568197 h 0.008 q 0.0889,-0.287321 0.20464,-0.3927409 0.11575,-0.1054199 0.32659,-0.1054199 0.0744,0 0.1509,0.020671 v 0.3410644 q -0.0744,-0.020671 -0.19844,-0.020671 -0.23151,0 -0.35346,0.2005046 -0.12196,0.1984375 -0.12196,0.5705077 v 1.16582 z" id="path2538" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 340.60116,10.344693 q 0,0.384472 0.15916,0.593245 0.15917,0.208773 0.46509,0.208773 0.24185,0 0.38654,-0.09715 0.14676,-0.09715 0.19844,-0.24598 l 0.3266,0.09302 q -0.20051,0.529166 -0.91158,0.529166 -0.49609,0 -0.75654,-0.295589 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.5539714 0.25838,-0.8495605 0.26045,-0.2955892 0.74207,-0.2955892 0.98599,0 0.98599,1.1885577 v 0.04961 z m 1.2113,-0.285254 q -0.031,-0.3534671 -0.17984,-0.5146976 -0.14883,-0.1632975 -0.42788,-0.1632975 -0.27078,0 -0.42995,0.181901 -0.15709,0.179834 -0.16949,0.4960941 z" id="path2540" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g id="text821" style="font-style:normal;font-weight:normal;font-size:4.23333359px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"/>
+<path d="m 300.16959,28.44792 h 50.27083 v 21.166666 h -50.27083 z" id="rect985" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:0.52999996, 0.26499999;stroke-dashoffset:0"/>
+<path d="m 301.625,29.770826 h 22.35709 v 7.937498 H 301.625 Z" id="rect817" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="LLC Slice" id="text825" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 304.00614,35.331802 v -2.912483 h 0.39481 v 2.590022 h 1.47174 v 0.322461 z" id="path2546" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 306.36259,35.331802 v -2.912483 h 0.3948 v 2.590022 h 1.47175 v 0.322461 z" id="path2548" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 310.00887,32.698372 q -0.48369,0 -0.7524,0.312125 -0.26872,0.310059 -0.26872,0.851628 0,0.535368 0.27905,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605648 l 0.32246,0.16123 q -0.17983,0.376205 -0.50643,0.572575 -0.32453,0.196371 -0.75447,0.196371 -0.44029,0 -0.76275,-0.181902 -0.32039,-0.183968 -0.48989,-0.522965 -0.16743,-0.341064 -0.16743,-0.806152 0,-0.696599 0.3762,-1.091406 0.37621,-0.394808 1.0418,-0.394808 0.46509,0 0.77721,0.181901 0.31213,0.181901 0.45889,0.539502 l -0.37414,0.124023 q -0.10128,-0.254248 -0.32659,-0.388607 -0.22324,-0.134358 -0.53124,-0.134358 z" id="path2550" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 315.23439,34.527717 q 0,0.403076 -0.31626,0.624251 -0.31419,0.221176 -0.88676,0.221176 -1.06454,0 -1.23404,-0.740007 l 0.38241,-0.07648 q 0.0661,0.262516 0.28112,0.38654 0.21497,0.121956 0.58498,0.121956 0.3824,0 0.58911,-0.130225 0.20877,-0.132291 0.20877,-0.386539 0,-0.142627 -0.0661,-0.231511 -0.0641,-0.08888 -0.1819,-0.146761 -0.11782,-0.05788 -0.28112,-0.09715 -0.16329,-0.03928 -0.36173,-0.08475 -0.3452,-0.07648 -0.52503,-0.152962 -0.17777,-0.07648 -0.28112,-0.169499 -0.10336,-0.09508 -0.15917,-0.221175 -0.0537,-0.12609 -0.0537,-0.289388 0,-0.374137 0.28525,-0.576709 0.28732,-0.202571 0.82063,-0.202571 0.49609,0 0.75861,0.152962 0.26251,0.150895 0.36793,0.516764 l -0.38861,0.06821 q -0.0641,-0.23151 -0.24391,-0.334863 -0.17983,-0.10542 -0.49816,-0.10542 -0.34933,0 -0.5333,0.115755 -0.18397,0.115755 -0.18397,0.345199 0,0.134358 0.0703,0.223242 0.0724,0.08682 0.20671,0.148828 0.13436,0.05994 0.53537,0.148828 0.13435,0.03101 0.26665,0.06408 0.13436,0.03101 0.25631,0.07648 0.12196,0.04341 0.22738,0.103353 0.10748,0.05994 0.18603,0.146761 0.0786,0.08682 0.12196,0.204638 0.0455,0.117823 0.0455,0.276986 z" id="path2552" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="M 315.71809,35.331802 V 32.26429 h 0.37207 v 3.067512 z" id="path2554" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="M 316.6586,32.619823 V 32.26429 h 0.37207 v 0.355533 z m 0,2.711979 v -2.236556 h 0.37207 v 2.236556 z" id="path2556" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 317.88643,34.203189 q 0,0.446484 0.14056,0.661458 0.14056,0.214974 0.42375,0.214974 0.19843,0 0.33072,-0.107487 0.13436,-0.107487 0.16537,-0.330729 l 0.3762,0.02481 q -0.0434,0.322461 -0.27491,0.514697 -0.23152,0.192237 -0.58705,0.192237 -0.46922,0 -0.71727,-0.29559 -0.24598,-0.297656 -0.24598,-0.866097 0,-0.564306 0.24805,-0.859895 0.24805,-0.297657 0.71107,-0.297657 0.34313,0 0.56844,0.177767 0.22737,0.177767 0.28525,0.489893 l -0.3824,0.02894 q -0.0289,-0.186036 -0.14677,-0.29559 -0.11782,-0.109554 -0.33486,-0.109554 -0.29559,0 -0.42788,0.196371 -0.13229,0.19637 -0.13229,0.661458 z" id="path2558" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 320.00516,34.292073 q 0,0.384472 0.15917,0.593245 0.15916,0.208773 0.46508,0.208773 0.24185,0 0.38654,-0.09715 0.14676,-0.09715 0.19844,-0.24598 l 0.3266,0.09302 q -0.20051,0.529167 -0.91158,0.529167 -0.49609,0 -0.75654,-0.29559 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.553971 0.25838,-0.84956 0.26045,-0.29559 0.74207,-0.29559 0.98599,0 0.98599,1.188558 v 0.04961 z m 1.2113,-0.285254 q -0.031,-0.353467 -0.17984,-0.514698 -0.14882,-0.163297 -0.42788,-0.163297 -0.27078,0 -0.42995,0.181901 -0.15709,0.179834 -0.16949,0.496094 z" id="path2560" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+</g>
+<path d="m 326.6279,29.770826 h 22.48959 v 7.937498 H 326.6279 Z" id="rect827" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="LLC Slice" id="text831" style="font-style:normal;font-weight:normal;font-size:5.64444447px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 328.57844,35.095566 v -2.912484 h 0.3948 v 2.590023 h 1.47175 v 0.322461 z" id="path2564" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 330.93488,35.095566 v -2.912484 h 0.39481 v 2.590023 h 1.47174 v 0.322461 z" id="path2566" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 334.58117,32.462135 q -0.48369,0 -0.75241,0.312126 -0.26872,0.310058 -0.26872,0.851627 0,0.535368 0.27906,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605648 l 0.32246,0.161231 q -0.17984,0.376204 -0.50643,0.572575 -0.32453,0.19637 -0.75448,0.19637 -0.44028,0 -0.76274,-0.181901 -0.32039,-0.183968 -0.48989,-0.522966 -0.16744,-0.341064 -0.16744,-0.806152 0,-0.696598 0.37621,-1.091406 0.3762,-0.394808 1.0418,-0.394808 0.46508,0 0.77721,0.181901 0.31213,0.181901 0.45889,0.539502 L 335.439,32.9851 q -0.10129,-0.254248 -0.3266,-0.388606 -0.22324,-0.134359 -0.53123,-0.134359 z" id="path2568" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 339.80669,34.291481 q 0,0.403076 -0.31626,0.624251 -0.31419,0.221175 -0.88677,0.221175 -1.06453,0 -1.23403,-0.740007 l 0.38241,-0.07648 q 0.0661,0.262517 0.28112,0.38654 0.21497,0.121956 0.58497,0.121956 0.38241,0 0.58911,-0.130224 0.20878,-0.132292 0.20878,-0.38654 0,-0.142627 -0.0661,-0.23151 -0.0641,-0.08888 -0.1819,-0.146761 -0.11782,-0.05788 -0.28112,-0.09715 -0.1633,-0.03927 -0.36173,-0.08475 -0.3452,-0.07648 -0.52504,-0.152963 -0.17776,-0.07648 -0.28112,-0.169498 -0.10335,-0.09509 -0.15916,-0.221175 -0.0537,-0.126091 -0.0537,-0.289388 0,-0.374138 0.28525,-0.576709 0.28732,-0.202572 0.82062,-0.202572 0.4961,0 0.75861,0.152962 0.26252,0.150895 0.36794,0.516765 l -0.38861,0.06821 q -0.0641,-0.23151 -0.24391,-0.334863 -0.17984,-0.10542 -0.49816,-0.10542 -0.34934,0 -0.5333,0.115755 -0.18397,0.115756 -0.18397,0.345199 0,0.134359 0.0703,0.223242 0.0724,0.08682 0.2067,0.148828 0.13436,0.05994 0.53537,0.148828 0.13436,0.03101 0.26665,0.06408 0.13436,0.03101 0.25632,0.07648 0.12195,0.04341 0.22737,0.103353 0.10749,0.05994 0.18604,0.146761 0.0786,0.08682 0.12196,0.204639 0.0455,0.117822 0.0455,0.276986 z" id="path2570" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 340.29038,35.095566 v -3.067513 h 0.37207 v 3.067513 z" id="path2572" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 341.23089,32.383587 v -0.355534 h 0.37207 v 0.355534 z m 0,2.711979 V 32.85901 h 0.37207 v 2.236556 z" id="path2574" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 342.45873,33.966953 q 0,0.446484 0.14056,0.661458 0.14056,0.214974 0.42374,0.214974 0.19844,0 0.33073,-0.107487 0.13436,-0.107487 0.16537,-0.330729 l 0.3762,0.0248 q -0.0434,0.322461 -0.27492,0.514698 -0.23151,0.192236 -0.58704,0.192236 -0.46922,0 -0.71727,-0.295589 -0.24598,-0.297656 -0.24598,-0.866097 0,-0.564307 0.24805,-0.859896 0.24804,-0.297656 0.71106,-0.297656 0.34313,0 0.56844,0.177767 0.22738,0.177767 0.28526,0.489892 l -0.38241,0.02894 q -0.0289,-0.186035 -0.14676,-0.295589 -0.11782,-0.109554 -0.33486,-0.109554 -0.29559,0 -0.42788,0.19637 -0.13229,0.196371 -0.13229,0.661459 z" id="path2576" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 344.57746,34.055836 q 0,0.384473 0.15916,0.593245 0.15916,0.208773 0.46509,0.208773 0.24185,0 0.38654,-0.09715 0.14676,-0.09715 0.19844,-0.24598 l 0.32659,0.09302 q -0.2005,0.529167 -0.91157,0.529167 -0.49609,0 -0.75654,-0.295589 -0.25839,-0.295589 -0.25839,-0.8785 0,-0.553971 0.25839,-0.84956 0.26045,-0.295589 0.74207,-0.295589 0.98599,0 0.98599,1.188558 v 0.04961 z m 1.21129,-0.285254 q -0.031,-0.353467 -0.17983,-0.514697 -0.14883,-0.163298 -0.42788,-0.163298 -0.27079,0 -0.42995,0.181901 -0.1571,0.179834 -0.1695,0.496094 z" id="path2578" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+</g>
+<path d="m 301.62497,40.354172 h 22.3571 v 7.937498 h -22.3571 z" id="rect833" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="LLC Slice" id="text837" style="font-style:normal;font-weight:normal;font-size:5.64444447px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 304.00616,45.489914 V 42.57743 h 0.39481 v 2.590023 h 1.47174 v 0.322461 z" id="path2582" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 306.3626,45.489914 V 42.57743 h 0.39481 v 2.590023 h 1.47175 v 0.322461 z" id="path2584" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 310.00889,42.856483 q -0.48369,0 -0.75241,0.312126 -0.26871,0.310058 -0.26871,0.851627 0,0.535368 0.27905,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605648 l 0.32246,0.161231 q -0.17983,0.376204 -0.50643,0.572575 -0.32453,0.19637 -0.75447,0.19637 -0.44029,0 -0.76275,-0.181901 -0.32039,-0.183968 -0.48989,-0.522965 -0.16743,-0.341065 -0.16743,-0.806153 0,-0.696598 0.3762,-1.091406 0.37621,-0.394808 1.0418,-0.394808 0.46509,0 0.77721,0.181901 0.31213,0.181901 0.45889,0.539502 l -0.37414,0.124024 q -0.10128,-0.254248 -0.32659,-0.388607 -0.22325,-0.134359 -0.53124,-0.134359 z" id="path2586" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 315.23441,44.685829 q 0,0.403076 -0.31626,0.624251 -0.31419,0.221175 -0.88676,0.221175 -1.06454,0 -1.23404,-0.740006 l 0.38241,-0.07648 q 0.0661,0.262517 0.28112,0.38654 0.21497,0.121957 0.58498,0.121957 0.3824,0 0.58911,-0.130225 0.20877,-0.132292 0.20877,-0.38654 0,-0.142627 -0.0662,-0.23151 -0.0641,-0.08888 -0.1819,-0.146761 -0.11782,-0.05788 -0.28112,-0.09715 -0.16329,-0.03927 -0.36173,-0.08475 -0.3452,-0.07648 -0.52503,-0.152962 -0.17777,-0.07648 -0.28112,-0.169499 -0.10336,-0.09509 -0.15917,-0.221175 -0.0537,-0.126091 -0.0537,-0.289388 0,-0.374138 0.28525,-0.576709 0.28732,-0.202572 0.82062,-0.202572 0.4961,0 0.75861,0.152962 0.26252,0.150896 0.36794,0.516765 l -0.38861,0.06821 q -0.0641,-0.231511 -0.24391,-0.334864 -0.17983,-0.10542 -0.49816,-0.10542 -0.34933,0 -0.5333,0.115756 -0.18397,0.115755 -0.18397,0.345198 0,0.134359 0.0703,0.223242 0.0723,0.08682 0.20671,0.148828 0.13436,0.05994 0.53536,0.148829 0.13436,0.03101 0.26666,0.06408 0.13435,0.03101 0.25631,0.07648 0.12196,0.04341 0.22738,0.103353 0.10748,0.05994 0.18603,0.146761 0.0786,0.08682 0.12196,0.204639 0.0455,0.117822 0.0455,0.276986 z" id="path2588" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 315.7181,45.489914 v -3.067513 h 0.37207 v 3.067513 z" id="path2590" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 316.65862,42.777935 v -0.355534 h 0.37207 v 0.355534 z m 0,2.711979 v -2.236556 h 0.37207 v 2.236556 z" id="path2592" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 317.88645,44.361301 q 0,0.446484 0.14056,0.661458 0.14056,0.214974 0.42374,0.214974 0.19844,0 0.33073,-0.107487 0.13436,-0.107487 0.16537,-0.330729 l 0.3762,0.02481 q -0.0434,0.32246 -0.27492,0.514697 -0.23151,0.192236 -0.58704,0.192236 -0.46922,0 -0.71727,-0.295589 -0.24598,-0.297656 -0.24598,-0.866097 0,-0.564307 0.24805,-0.859896 0.24804,-0.297656 0.71107,-0.297656 0.34313,0 0.56844,0.177767 0.22737,0.177767 0.28525,0.489892 l -0.38241,0.02894 q -0.0289,-0.186035 -0.14676,-0.295589 -0.11782,-0.109554 -0.33486,-0.109554 -0.29559,0 -0.42788,0.19637 -0.13229,0.196371 -0.13229,0.661459 z" id="path2594" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 320.00518,44.450184 q 0,0.384473 0.15916,0.593246 0.15917,0.208772 0.46509,0.208772 0.24185,0 0.38654,-0.09715 0.14676,-0.09715 0.19844,-0.24598 l 0.32659,0.09302 q -0.2005,0.529167 -0.91157,0.529167 -0.49609,0 -0.75654,-0.295589 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.553972 0.25838,-0.849561 0.26045,-0.295589 0.74207,-0.295589 0.98599,0 0.98599,1.188558 v 0.04961 z m 1.2113,-0.285254 q -0.031,-0.353466 -0.17984,-0.514697 -0.14883,-0.163297 -0.42788,-0.163297 -0.27078,0 -0.42995,0.181901 -0.15709,0.179834 -0.1695,0.496093 z" id="path2596" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 326.6279,40.354172 h 22.48959 V 48.29167 H 326.6279 Z" id="rect839" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="LLC Slice" id="text843" style="font-style:normal;font-weight:normal;font-size:5.64444447px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 328.67292,46.340363 v -2.912484 h 0.39481 v 2.590023 h 1.47174 v 0.322461 z" id="path2600" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 331.02936,46.340363 v -2.912484 h 0.39481 v 2.590023 h 1.47175 v 0.322461 z" id="path2602" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 334.67565,43.706932 q -0.48369,0 -0.75241,0.312125 -0.26871,0.310059 -0.26871,0.851628 0,0.535368 0.27905,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605648 l 0.32246,0.16123 q -0.17983,0.376205 -0.50643,0.572575 -0.32453,0.196371 -0.75447,0.196371 -0.44029,0 -0.76275,-0.181901 -0.32039,-0.183968 -0.48989,-0.522966 -0.16743,-0.341064 -0.16743,-0.806152 0,-0.696598 0.3762,-1.091406 0.37621,-0.394808 1.0418,-0.394808 0.46509,0 0.77721,0.181901 0.31213,0.181901 0.45889,0.539502 l -0.37414,0.124023 q -0.10128,-0.254248 -0.32659,-0.388607 -0.22325,-0.134358 -0.53124,-0.134358 z" id="path2604" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 339.90117,45.536277 q 0,0.403076 -0.31626,0.624252 -0.31419,0.221175 -0.88676,0.221175 -1.06454,0 -1.23404,-0.740007 l 0.38241,-0.07648 q 0.0661,0.262516 0.28112,0.38654 0.21497,0.121956 0.58498,0.121956 0.3824,0 0.58911,-0.130224 0.20877,-0.132292 0.20877,-0.38654 0,-0.142627 -0.0661,-0.231511 -0.0641,-0.08888 -0.1819,-0.146761 -0.11782,-0.05788 -0.28112,-0.09715 -0.16329,-0.03927 -0.36173,-0.08475 -0.3452,-0.07648 -0.52503,-0.152962 -0.17777,-0.07648 -0.28112,-0.169499 -0.10336,-0.09508 -0.15917,-0.221175 -0.0537,-0.12609 -0.0537,-0.289388 0,-0.374137 0.28525,-0.576709 0.28732,-0.202571 0.82062,-0.202571 0.4961,0 0.75861,0.152962 0.26252,0.150895 0.36794,0.516764 l -0.38861,0.06821 q -0.0641,-0.23151 -0.24391,-0.334863 -0.17983,-0.10542 -0.49816,-0.10542 -0.34933,0 -0.5333,0.115755 -0.18397,0.115755 -0.18397,0.345199 0,0.134358 0.0703,0.223242 0.0723,0.08682 0.20671,0.148828 0.13436,0.05994 0.53536,0.148828 0.13436,0.03101 0.26665,0.06408 0.13436,0.03101 0.25632,0.07648 0.12196,0.04341 0.22738,0.103353 0.10748,0.05995 0.18603,0.146761 0.0786,0.08682 0.12196,0.204639 0.0455,0.117822 0.0455,0.276985 z" id="path2606" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="M 340.38486,46.340363 V 43.27285 h 0.37207 v 3.067513 z" id="path2608" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="M 341.32538,43.628384 V 43.27285 h 0.37207 v 0.355534 z m 0,2.711979 v -2.236556 h 0.37207 v 2.236556 z" id="path2610" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 342.55321,45.211749 q 0,0.446485 0.14056,0.661459 0.14056,0.214974 0.42374,0.214974 0.19844,0 0.33073,-0.107487 0.13436,-0.107487 0.16537,-0.33073 l 0.3762,0.02481 q -0.0434,0.322461 -0.27492,0.514697 -0.23151,0.192237 -0.58704,0.192237 -0.46922,0 -0.71727,-0.295589 -0.24598,-0.297657 -0.24598,-0.866097 0,-0.564307 0.24805,-0.859896 0.24804,-0.297656 0.71107,-0.297656 0.34313,0 0.56844,0.177766 0.22737,0.177767 0.28525,0.489893 l -0.38241,0.02894 q -0.0289,-0.186035 -0.14676,-0.295589 -0.11782,-0.109554 -0.33486,-0.109554 -0.29559,0 -0.42788,0.19637 -0.13229,0.19637 -0.13229,0.661458 z" id="path2612" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+<path d="m 344.67194,45.300633 q 0,0.384472 0.15916,0.593245 0.15917,0.208773 0.46509,0.208773 0.24185,0 0.38654,-0.09715 0.14676,-0.09715 0.19844,-0.24598 l 0.32659,0.09302 q -0.2005,0.529167 -0.91157,0.529167 -0.49609,0 -0.75654,-0.295589 -0.25838,-0.29559 -0.25838,-0.8785 0,-0.553971 0.25838,-0.84956 0.26045,-0.295589 0.74207,-0.295589 0.98599,0 0.98599,1.188557 v 0.04961 z m 1.2113,-0.285254 q -0.031,-0.353467 -0.17984,-0.514697 -0.14883,-0.163298 -0.42788,-0.163298 -0.27078,0 -0.42995,0.181901 -0.15709,0.179834 -0.1695,0.496094 z" id="path2614" style="font-size:4.23333311px;stroke-width:0.26458332"/>
+</g>
+<g id="flowRoot897" style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" transform="scale(0.26458333)"/>
+<path d="m 301.625,-4.492497 h 22.48958 V 17.864582 H 301.625 Z" id="rect931" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26500002;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="M 301.75751,60.197922 H 324.1146 V 82.687498 H 301.75751 Z" id="rect975" style="fill:#cccccc;stroke:#000000;stroke-width:0.26500002;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="CPUCore" id="text939" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 309.82266,68.282249 q -0.48369,0 -0.75241,0.312126 -0.26872,0.310058 -0.26872,0.851627 0,0.535368 0.27905,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91985,-0.605648 l 0.32246,0.161231 q -0.17984,0.376204 -0.50643,0.572575 -0.32453,0.19637 -0.75448,0.19637 -0.44028,0 -0.76274,-0.181901 -0.3204,-0.183968 -0.4899,-0.522965 -0.16743,-0.341065 -0.16743,-0.806153 0,-0.696598 0.37621,-1.091406 0.3762,-0.394808 1.04179,-0.394808 0.46509,0 0.77722,0.181901 0.31212,0.181901 0.45888,0.539502 l -0.37413,0.124024 q -0.10129,-0.254248 -0.3266,-0.388607 -0.22324,-0.134359 -0.53123,-0.134359 z" id="path2620" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 313.84515,68.879629 q 0,0.413411 -0.27078,0.657324 -0.26872,0.243913 -0.73174,0.243913 h -0.85576 v 1.134814 h -0.39481 v -2.912484 h 1.22576 q 0.4899,0 0.75861,0.229444 0.26872,0.229443 0.26872,0.646989 z m -0.39687,0.0041 q 0,-0.564307 -0.678,-0.564307 h -0.78341 v 1.149284 h 0.79995 q 0.66146,0 0.66146,-0.584977 z" id="path2622" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 315.58355,70.957021 q -0.3576,0 -0.62425,-0.130225 -0.26665,-0.130224 -0.41342,-0.378271 -0.14676,-0.248047 -0.14676,-0.591178 v -1.854151 h 0.39481 v 1.821078 q 0,0.398942 0.20257,0.605647 0.20257,0.206706 0.58498,0.206706 0.39274,0 0.60978,-0.212907 0.21911,-0.214974 0.21911,-0.626318 v -1.794206 h 0.39274 v 1.816944 q 0,0.353466 -0.15089,0.609781 -0.14883,0.256316 -0.42375,0.392741 -0.27285,0.134359 -0.64492,0.134359 z" id="path2624" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 309.70277,73.573913 q -0.48369,0 -0.75241,0.312126 -0.26872,0.310058 -0.26872,0.851627 0,0.535368 0.27906,0.861963 0.28112,0.324528 0.75861,0.324528 0.61184,0 0.91984,-0.605648 l 0.32246,0.161231 q -0.17984,0.376204 -0.50643,0.572575 -0.32453,0.19637 -0.75448,0.19637 -0.44028,0 -0.76274,-0.181901 -0.3204,-0.183968 -0.48989,-0.522965 -0.16744,-0.341065 -0.16744,-0.806153 0,-0.696598 0.37621,-1.091406 0.3762,-0.394808 1.0418,-0.394808 0.46508,0 0.77721,0.181901 0.31212,0.181901 0.45889,0.539502 l -0.37414,0.124024 q -0.10129,-0.254248 -0.3266,-0.388607 -0.22324,-0.134359 -0.53123,-0.134359 z" id="path2626" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 313.30152,75.086999 q 0,0.587044 -0.25839,0.874365 -0.25838,0.287321 -0.75034,0.287321 -0.48989,0 -0.74,-0.297656 -0.25012,-0.299723 -0.25012,-0.86403 0,-1.157552 1.00252,-1.157552 0.51263,0 0.75448,0.283187 0.24185,0.28112 0.24185,0.874365 z m -0.39068,0 q 0,-0.463021 -0.13849,-0.671794 -0.13643,-0.210839 -0.46095,-0.210839 -0.3266,0 -0.47336,0.214974 -0.14469,0.212906 -0.14469,0.667659 0,0.44235 0.14262,0.665592 0.1447,0.221176 0.45269,0.221176 0.33486,0 0.47749,-0.214974 0.14469,-0.214974 0.14469,-0.671794 z" id="path2628" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 313.77487,76.207344 v -1.715657 q 0,-0.235645 -0.0124,-0.520899 h 0.3514 q 0.0165,0.380339 0.0165,0.45682 h 0.008 q 0.0889,-0.287321 0.20464,-0.392741 0.11576,-0.10542 0.3266,-0.10542 0.0744,0 0.15089,0.02067 v 0.341064 q -0.0744,-0.02067 -0.19844,-0.02067 -0.23151,0 -0.35346,0.200505 -0.12196,0.198438 -0.12196,0.570508 v 1.16582 z" id="path2630" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 315.46572,75.167614 q 0,0.384473 0.15917,0.593246 0.15916,0.208772 0.46509,0.208772 0.24184,0 0.38654,-0.09715 0.14676,-0.09715 0.19843,-0.24598 l 0.3266,0.09302 q -0.20051,0.529166 -0.91157,0.529166 -0.4961,0 -0.75655,-0.295589 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.553972 0.25838,-0.849561 0.26045,-0.295589 0.74208,-0.295589 0.98598,0 0.98598,1.188558 v 0.04961 z m 1.2113,-0.285254 q -0.031,-0.353466 -0.17983,-0.514697 -0.14883,-0.163297 -0.42788,-0.163297 -0.27079,0 -0.42995,0.181901 -0.1571,0.179834 -0.1695,0.496093 z" id="path2632" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 326.6279,60.197922 h 22.48959 V 82.555 H 326.6279 Z" id="rect955" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26500002;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="CPUCore" id="text961" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 334.95806,68.282249 q -0.48369,0 -0.7524,0.312126 -0.26872,0.310058 -0.26872,0.851627 0,0.535368 0.27905,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605648 l 0.32246,0.161231 q -0.17983,0.376204 -0.50643,0.572575 -0.32452,0.19637 -0.75447,0.19637 -0.44029,0 -0.76275,-0.181901 -0.32039,-0.183968 -0.48989,-0.522965 -0.16743,-0.341065 -0.16743,-0.806153 0,-0.696598 0.3762,-1.091406 0.37621,-0.394808 1.0418,-0.394808 0.46509,0 0.77721,0.181901 0.31213,0.181901 0.45889,0.539502 l -0.37414,0.124024 q -0.10128,-0.254248 -0.32659,-0.388607 -0.22324,-0.134359 -0.53124,-0.134359 z" id="path2636" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 338.98056,68.879629 q 0,0.413411 -0.27079,0.657324 -0.26871,0.243913 -0.73173,0.243913 h -0.85577 v 1.134814 h -0.3948 v -2.912484 h 1.22576 q 0.48989,0 0.75861,0.229444 0.26872,0.229443 0.26872,0.646989 z m -0.39688,0.0041 q 0,-0.564307 -0.67799,-0.564307 h -0.78342 v 1.149284 h 0.79995 q 0.66146,0 0.66146,-0.584977 z" id="path2638" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 340.71895,70.957021 q -0.3576,0 -0.62425,-0.130225 -0.26665,-0.130224 -0.41341,-0.378271 -0.14676,-0.248047 -0.14676,-0.591178 v -1.854151 h 0.39481 v 1.821078 q 0,0.398942 0.20257,0.605647 0.20257,0.206706 0.58498,0.206706 0.39274,0 0.60978,-0.212907 0.21911,-0.214974 0.21911,-0.626318 v -1.794206 h 0.39274 v 1.816944 q 0,0.353466 -0.1509,0.609781 -0.14883,0.256316 -0.42374,0.392741 -0.27286,0.134359 -0.64493,0.134359 z" id="path2640" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 334.83818,73.573913 q -0.4837,0 -0.75241,0.312126 -0.26872,0.310058 -0.26872,0.851627 0,0.535368 0.27905,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605648 l 0.32246,0.161231 q -0.17983,0.376204 -0.50643,0.572575 -0.32452,0.19637 -0.75447,0.19637 -0.44028,0 -0.76275,-0.181901 -0.32039,-0.183968 -0.48989,-0.522965 -0.16743,-0.341065 -0.16743,-0.806153 0,-0.696598 0.3762,-1.091406 0.37621,-0.394808 1.0418,-0.394808 0.46509,0 0.77721,0.181901 0.31213,0.181901 0.45889,0.539502 l -0.37414,0.124024 q -0.10128,-0.254248 -0.32659,-0.388607 -0.22324,-0.134359 -0.53123,-0.134359 z" id="path2642" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 338.43692,75.086999 q 0,0.587044 -0.25838,0.874365 -0.25838,0.287321 -0.75034,0.287321 -0.48989,0 -0.74001,-0.297656 -0.25011,-0.299723 -0.25011,-0.86403 0,-1.157552 1.00252,-1.157552 0.51263,0 0.75448,0.283187 0.24184,0.28112 0.24184,0.874365 z m -0.39067,0 q 0,-0.463021 -0.13849,-0.671794 -0.13643,-0.210839 -0.46096,-0.210839 -0.32659,0 -0.47335,0.214974 -0.1447,0.212906 -0.1447,0.667659 0,0.44235 0.14263,0.665592 0.14469,0.221176 0.45268,0.221176 0.33487,0 0.47749,-0.214974 0.1447,-0.214974 0.1447,-0.671794 z" id="path2644" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 338.91028,76.207344 v -1.715657 q 0,-0.235645 -0.0124,-0.520899 h 0.3514 q 0.0165,0.380339 0.0165,0.45682 h 0.008 q 0.0889,-0.287321 0.20464,-0.392741 0.11575,-0.10542 0.32659,-0.10542 0.0744,0 0.1509,0.02067 v 0.341064 q -0.0744,-0.02067 -0.19844,-0.02067 -0.23151,0 -0.35347,0.200505 -0.12195,0.198438 -0.12195,0.570508 v 1.16582 z" id="path2646" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 340.60113,75.167614 q 0,0.384473 0.15916,0.593246 0.15917,0.208772 0.46509,0.208772 0.24185,0 0.38654,-0.09715 0.14676,-0.09715 0.19844,-0.24598 l 0.32659,0.09302 q -0.2005,0.529166 -0.91157,0.529166 -0.49609,0 -0.75654,-0.295589 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.553972 0.25838,-0.849561 0.26045,-0.295589 0.74207,-0.295589 0.98599,0 0.98599,1.188558 v 0.04961 z m 1.2113,-0.285254 q -0.031,-0.353466 -0.17984,-0.514697 -0.14883,-0.163297 -0.42788,-0.163297 -0.27078,0 -0.42995,0.181901 -0.15709,0.179834 -0.16949,0.496093 z" id="path2648" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m -30.427063,44.322877 -2.3e-5,33.072955 h 29.1041703 v 3.96875 h 3.96875 c 0,-2.645833 0,-5.291667 0,-7.9375 H -26.458332 l 1.9e-5,-29.104205 z" id="path1322" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="6 µOPs" id="text1397" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -19.844369,74.909089 q 0,-0.271638 0.04586,-0.532694 0.04939,-0.264583 0.172861,-0.47625 0.127,-0.215194 0.352778,-0.342194 0.225777,-0.127 0.582083,-0.127 0.07408,0 0.162278,0.0071 0.09172,0.0071 0.148166,0.02469 v 0.264583 q -0.0635,-0.02117 -0.144639,-0.03175 -0.07761,-0.01058 -0.15875,-0.01058 -0.243416,0 -0.405694,0.08114 -0.162278,0.08114 -0.257528,0.22225 -0.09172,0.141112 -0.134055,0.324556 -0.04233,0.183444 -0.05292,0.391583 h 0.02117 q 0.08114,-0.123472 0.225777,-0.208139 0.144639,-0.08819 0.370417,-0.08819 0.328083,0 0.529167,0.201083 0.201083,0.197556 0.201083,0.564445 0,0.395111 -0.218722,0.620889 -0.215195,0.225777 -0.582083,0.225777 -0.239889,0 -0.433917,-0.119944 -0.194028,-0.119944 -0.310445,-0.366889 -0.112888,-0.246944 -0.112888,-0.624417 z m 0.853722,0.850195 q 0.22225,0 0.359833,-0.141111 0.137583,-0.144639 0.137583,-0.4445 0,-0.239889 -0.123472,-0.381 -0.119944,-0.141111 -0.363361,-0.141111 -0.165805,0 -0.289278,0.07055 -0.123472,0.06703 -0.194027,0.172861 -0.06703,0.105834 -0.06703,0.218723 0,0.151694 0.05997,0.303388 0.05997,0.148167 0.179917,0.246945 0.119944,0.09525 0.299861,0.09525 z" id="path2651" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -15.205231,74.094173 v 1.890889 h -0.250473 l -0.04939,-0.254 h -0.01764 q -0.08819,0.141111 -0.229306,0.215194 -0.141111,0.07408 -0.338667,0.07408 -0.137583,0 -0.236361,-0.04233 -0.09878,-0.04586 -0.169333,-0.116417 h -0.01411 q 0.0071,0.0635 0.01058,0.169334 0.0071,0.105833 0.0071,0.250472 v 0.550333 h -0.310445 v -2.737555 h 0.310445 v 1.220611 q 0,0.448028 0.423333,0.448028 0.313972,0 0.433917,-0.176389 0.119944,-0.176389 0.119944,-0.508 v -0.98425 z" id="path2653" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -12.365205,74.722117 q 0,0.391584 -0.134056,0.684389 -0.130528,0.289278 -0.388055,0.451556 -0.257528,0.162277 -0.638528,0.162277 -0.391583,0 -0.652639,-0.162277 -0.257528,-0.162278 -0.384528,-0.455084 -0.127,-0.292805 -0.127,-0.684389 0,-0.388055 0.127,-0.677333 0.127,-0.289278 0.384528,-0.451555 0.261056,-0.162278 0.656167,-0.162278 0.377472,0 0.635,0.162278 0.257527,0.15875 0.388055,0.451555 0.134056,0.289278 0.134056,0.680861 z m -1.989667,0 q 0,0.47625 0.201084,0.751417 0.201083,0.271639 0.627944,0.271639 0.430389,0 0.627944,-0.271639 0.197556,-0.275167 0.197556,-0.751417 0,-0.47625 -0.197556,-0.744361 -0.197555,-0.271639 -0.624416,-0.271639 -0.426861,0 -0.631472,0.271639 -0.201084,0.268111 -0.201084,0.744361 z" id="path2655" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -11.140184,73.466228 q 0.493888,0 0.719666,0.194028 0.225778,0.194028 0.225778,0.546806 0,0.208139 -0.09525,0.391583 -0.09172,0.179917 -0.313972,0.292806 -0.218722,0.112888 -0.596195,0.112888 h -0.289277 v 0.980723 h -0.3175 v -2.518834 z m -0.02822,0.271639 h -0.321027 v 0.994834 h 0.254 q 0.359833,0 0.536222,-0.116417 0.176389,-0.116417 0.176389,-0.395111 0,-0.243417 -0.155223,-0.363361 -0.155222,-0.119945 -0.490361,-0.119945 z" id="path2657" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -8.4821141,75.462951 q 0,0.275166 -0.2046111,0.416277 -0.2046111,0.141111 -0.5503334,0.141111 -0.1975555,0 -0.3421944,-0.03175 -0.1411111,-0.03175 -0.2504722,-0.08819 v -0.282222 q 0.1128889,0.05644 0.2716389,0.105833 0.1622778,0.04586 0.3280833,0.04586 0.2363611,0 0.3421944,-0.07408 0.1058334,-0.07761 0.1058334,-0.204611 0,-0.07056 -0.038806,-0.127 -0.038806,-0.05644 -0.1411111,-0.112889 -0.098778,-0.05644 -0.28575,-0.127 -0.1834444,-0.07056 -0.3139722,-0.141111 -0.1305278,-0.07056 -0.2010833,-0.169334 -0.070556,-0.09878 -0.070556,-0.254 0,-0.239888 0.1940278,-0.370416 0.1975555,-0.130528 0.5150555,-0.130528 0.1728611,0 0.3210278,0.03528 0.1516944,0.03175 0.2822222,0.09172 l -0.1058333,0.246944 q -0.1199445,-0.04939 -0.2504722,-0.08467 -0.1305278,-0.03528 -0.2681111,-0.03528 -0.1905,0 -0.2928056,0.0635 -0.098778,0.05997 -0.098778,0.165806 0,0.07761 0.045861,0.134055 0.045861,0.05292 0.1516944,0.105833 0.1093611,0.04939 0.2892778,0.119945 0.1799166,0.06703 0.3069166,0.137583 0.127,0.07056 0.1940278,0.172861 0.067028,0.09878 0.067028,0.250473 z" id="path2659" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m -15.874943,29.109389 h 3.96875 v 3.968749 h -3.96875 z" id="path1130" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m -41.010418,17.864573 h 25.13545 v 26.458343 h -25.13545 z" id="rect1114" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="CPUCore" id="text981" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 309.82269,3.4593249 q -0.48369,0 -0.75241,0.3121257 -0.26872,0.3100586 -0.26872,0.8516275 0,0.5353678 0.27906,0.8619629 0.28112,0.324528 0.75861,0.324528 0.61184,0 0.91984,-0.6056478 l 0.32246,0.1612305 q -0.17984,0.3762044 -0.50643,0.5725748 -0.32453,0.1963704 -0.75448,0.1963704 -0.44028,0 -0.76274,-0.181901 -0.3204,-0.1839681 -0.48989,-0.5229655 -0.16744,-0.3410644 -0.16744,-0.8061523 0,-0.6965982 0.37621,-1.0914062 0.3762,-0.3948079 1.04179,-0.3948079 0.46509,0 0.77722,0.1819011 0.31212,0.181901 0.45889,0.5395019 l -0.37414,0.1240234 q -0.10129,-0.254248 -0.3266,-0.3886067 -0.22324,-0.1343588 -0.53123,-0.1343588 z" id="path2663" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 313.84518,4.0567045 q 0,0.4134114 -0.27078,0.6573242 -0.26872,0.2439127 -0.73174,0.2439127 h -0.85576 v 1.1348144 h -0.39481 V 3.1802722 h 1.22576 q 0.4899,0 0.75861,0.2294434 0.26872,0.2294433 0.26872,0.6469889 z m -0.39687,0.00413 q 0,-0.5643066 -0.678,-0.5643066 h -0.78341 v 1.1492838 h 0.79995 q 0.66146,0 0.66146,-0.5849772 z" id="path2665" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 315.58358,6.1340969 q -0.3576,0 -0.62425,-0.1302246 -0.26665,-0.1302246 -0.41342,-0.3782714 -0.14676,-0.2480469 -0.14676,-0.5911784 V 3.1802722 h 0.39481 v 1.8210774 q 0,0.398942 0.20257,0.6056478 0.20257,0.2067057 0.58498,0.2067057 0.39274,0 0.60978,-0.2129069 0.21911,-0.214974 0.21911,-0.6263183 V 3.1802722 h 0.39274 v 1.8169433 q 0,0.3534668 -0.15089,0.6097819 -0.14883,0.256315 -0.42375,0.3927408 -0.27285,0.1343587 -0.64492,0.1343587 z" id="path2667" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 309.7028,8.7509915 q -0.48369,0 -0.75241,0.3121256 -0.26872,0.3100586 -0.26872,0.8516275 0,0.5353674 0.27906,0.8619624 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605647 l 0.32246,0.16123 q -0.17984,0.376205 -0.50643,0.572575 -0.32453,0.19637 -0.75448,0.19637 -0.44028,0 -0.76274,-0.181901 -0.3204,-0.183968 -0.48989,-0.522965 -0.16744,-0.341064 -0.16744,-0.8061524 0,-0.6965982 0.37621,-1.0914061 0.3762,-0.394808 1.0418,-0.394808 0.46508,0 0.77721,0.1819011 0.31212,0.181901 0.45889,0.5395019 l -0.37414,0.1240234 q -0.10129,-0.254248 -0.3266,-0.3886067 -0.22324,-0.1343587 -0.53123,-0.1343587 z" id="path2669" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 313.30155,10.264077 q 0,0.587045 -0.25839,0.874365 -0.25838,0.287321 -0.75034,0.287321 -0.48989,0 -0.74,-0.297656 -0.25012,-0.299723 -0.25012,-0.86403 0,-1.1575517 1.00252,-1.1575517 0.51263,0 0.75448,0.2831868 0.24185,0.2811198 0.24185,0.8743649 z m -0.39068,0 q 0,-0.4630205 -0.13849,-0.6717933 -0.13643,-0.2108398 -0.46095,-0.2108398 -0.3266,0 -0.47336,0.2149739 -0.14469,0.2129069 -0.14469,0.6676592 0,0.442351 0.14262,0.665593 0.1447,0.221175 0.45269,0.221175 0.33486,0 0.47749,-0.214974 0.14469,-0.214974 0.14469,-0.671794 z" id="path2671" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 313.7749,11.384422 V 9.6687648 q 0,-0.2356445 -0.0124,-0.5208984 h 0.3514 q 0.0165,0.3803386 0.0165,0.4568197 h 0.008 q 0.0889,-0.287321 0.20464,-0.3927409 0.11576,-0.1054199 0.3266,-0.1054199 0.0744,0 0.15089,0.020671 v 0.3410644 q -0.0744,-0.020671 -0.19843,-0.020671 -0.23152,0 -0.35347,0.2005046 -0.12196,0.1984375 -0.12196,0.5705077 v 1.16582 z" id="path2673" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 315.46576,10.344693 q 0,0.384472 0.15916,0.593245 0.15916,0.208773 0.46509,0.208773 0.24184,0 0.38654,-0.09715 0.14676,-0.09715 0.19843,-0.24598 l 0.3266,0.09302 q -0.20051,0.529166 -0.91157,0.529166 -0.4961,0 -0.75655,-0.295589 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.5539714 0.25838,-0.8495605 0.26045,-0.2955892 0.74208,-0.2955892 0.98598,0 0.98598,1.1885577 v 0.04961 z m 1.21129,-0.285254 q -0.031,-0.3534671 -0.17983,-0.5146976 -0.14883,-0.1632975 -0.42788,-0.1632975 -0.27079,0 -0.42995,0.181901 -0.1571,0.179834 -0.1695,0.4960941 z" id="path2675" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 361.02374,13.895826 h 30.42708 v 50.270832 h -30.42708 z" id="rect997" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26500005;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="m 364.99249,49.614578 h 22.3571 V 61.52081 h -22.3571 z" id="rect999" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26500002;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="MemoryController" id="text1005" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 371.27212,54.357437 v -1.943034 q 0,-0.322461 0.0186,-0.620117 -0.10129,0.370003 -0.1819,0.578776 l -0.75241,1.984375 h -0.27699 l -0.76274,-1.984375 -0.11576,-0.351399 -0.0682,-0.227377 0.006,0.229444 0.008,0.390673 v 1.943034 h -0.3514 v -2.912483 h 0.51883 l 0.77515,2.019514 q 0.0413,0.121957 0.0785,0.262517 0.0393,0.138493 0.0517,0.200504 0.0165,-0.08268 0.0682,-0.250114 0.0537,-0.169498 0.0723,-0.212907 l 0.76068,-2.019514 h 0.50643 v 2.912483 z" id="path2680" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 372.54956,53.317707 q 0,0.384473 0.15917,0.593246 0.15916,0.208773 0.46509,0.208773 0.24184,0 0.38654,-0.09715 0.14676,-0.09715 0.19843,-0.24598 l 0.3266,0.09302 q -0.20051,0.529166 -0.91157,0.529166 -0.4961,0 -0.75655,-0.295589 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.553972 0.25838,-0.849561 0.26045,-0.295589 0.74208,-0.295589 0.98598,0 0.98598,1.188558 v 0.04961 z m 1.2113,-0.285254 q -0.031,-0.353466 -0.17983,-0.514697 -0.14883,-0.163297 -0.42788,-0.163297 -0.27079,0 -0.42995,0.181901 -0.1571,0.179834 -0.1695,0.496093 z" id="path2682" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 375.923,54.357437 v -1.418001 q 0,-0.324528 -0.0889,-0.448552 -0.0889,-0.124023 -0.3204,-0.124023 -0.23771,0 -0.3762,0.181901 -0.13849,0.181901 -0.13849,0.51263 v 1.296045 h -0.37001 v -1.759066 q 0,-0.390673 -0.0124,-0.47749 h 0.3514 q 0.002,0.01034 0.004,0.05581 0.002,0.04547 0.004,0.10542 0.004,0.05788 0.008,0.221175 h 0.006 q 0.11989,-0.237712 0.27492,-0.330729 0.15503,-0.09302 0.37827,-0.09302 0.25425,0 0.40101,0.101286 0.14883,0.101286 0.2067,0.322461 h 0.006 q 0.11575,-0.225309 0.27905,-0.324528 0.16536,-0.09922 0.39894,-0.09922 0.339,0 0.49196,0.183968 0.15503,0.183968 0.15503,0.603581 v 1.490348 h -0.36794 v -1.418001 q 0,-0.324528 -0.0889,-0.448552 -0.0889,-0.124023 -0.32039,-0.124023 -0.24392,0 -0.38034,0.181901 -0.13436,0.179834 -0.13436,0.51263 v 1.296045 z" id="path2684" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 380.04265,53.237092 q 0,0.587044 -0.25839,0.874365 -0.25838,0.287321 -0.75034,0.287321 -0.48989,0 -0.74,-0.297656 -0.25012,-0.299723 -0.25012,-0.86403 0,-1.157552 1.00252,-1.157552 0.51264,0 0.75448,0.283187 0.24185,0.28112 0.24185,0.874365 z m -0.39068,0 q 0,-0.463021 -0.13849,-0.671793 -0.13643,-0.21084 -0.46095,-0.21084 -0.3266,0 -0.47336,0.214974 -0.14469,0.212907 -0.14469,0.667659 0,0.44235 0.14262,0.665593 0.1447,0.221175 0.45269,0.221175 0.33486,0 0.47749,-0.214974 0.14469,-0.214974 0.14469,-0.671794 z" id="path2686" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 380.516,54.357437 V 52.64178 q 0,-0.235645 -0.0124,-0.520899 h 0.3514 q 0.0165,0.380339 0.0165,0.45682 h 0.008 q 0.0889,-0.287321 0.20464,-0.392741 0.11576,-0.10542 0.3266,-0.10542 0.0744,0 0.15089,0.02067 v 0.341064 q -0.0744,-0.02067 -0.19843,-0.02067 -0.23151,0 -0.35347,0.200504 -0.12196,0.198438 -0.12196,0.570508 v 1.16582 z" id="path2688" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 382.03116,55.235936 q -0.15297,0 -0.25632,-0.02274 v -0.279053 q 0.0786,0.0124 0.17363,0.0124 0.34727,0 0.54984,-0.510563 l 0.0351,-0.08888 -0.88677,-2.226221 h 0.39688 l 0.47129,1.2361 q 0.0103,0.02894 0.0248,0.07028 0.0145,0.03927 0.093,0.268718 0.0786,0.229443 0.0847,0.256315 l 0.14469,-0.40721 0.4899,-1.424203 h 0.39274 l -0.8599,2.236556 q -0.13849,0.357601 -0.25838,0.531234 -0.11989,0.1757 -0.26665,0.260449 -0.1447,0.08682 -0.32866,0.08682 z" id="path2690" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 368.55188,57.015674 q -0.4837,0 -0.75241,0.312126 -0.26872,0.310058 -0.26872,0.851627 0,0.535368 0.27905,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605648 l 0.32246,0.161231 q -0.17983,0.376204 -0.50642,0.572575 -0.32453,0.19637 -0.75448,0.19637 -0.44028,0 -0.76274,-0.181901 -0.3204,-0.183968 -0.4899,-0.522965 -0.16743,-0.341065 -0.16743,-0.806153 0,-0.696598 0.37621,-1.091406 0.3762,-0.394808 1.04179,-0.394808 0.46509,0 0.77722,0.181901 0.31212,0.181901 0.45888,0.539502 l -0.37414,0.124024 q -0.10128,-0.254248 -0.32659,-0.388607 -0.22324,-0.134359 -0.53123,-0.134359 z" id="path2692" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 372.15062,58.52876 q 0,0.587044 -0.25838,0.874365 -0.25838,0.287321 -0.75034,0.287321 -0.48989,0 -0.74001,-0.297656 -0.25011,-0.299723 -0.25011,-0.86403 0,-1.157552 1.00252,-1.157552 0.51263,0 0.75448,0.283187 0.24184,0.28112 0.24184,0.874365 z m -0.39067,0 q 0,-0.463021 -0.13849,-0.671794 -0.13643,-0.210839 -0.46096,-0.210839 -0.32659,0 -0.47335,0.214974 -0.1447,0.212906 -0.1447,0.667659 0,0.44235 0.14263,0.665592 0.14469,0.221176 0.45268,0.221176 0.33487,0 0.47749,-0.214974 0.1447,-0.214974 0.1447,-0.671794 z" id="path2694" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 374.03578,59.649105 v -1.418001 q 0,-0.221175 -0.0434,-0.343132 -0.0434,-0.121956 -0.13849,-0.1757 -0.0951,-0.05374 -0.27906,-0.05374 -0.26871,0 -0.42374,0.183968 -0.15503,0.183968 -0.15503,0.510563 v 1.296045 h -0.37207 v -1.759066 q 0,-0.390673 -0.0124,-0.47749 h 0.3514 q 0.002,0.01034 0.004,0.05581 0.002,0.04548 0.004,0.10542 0.004,0.05788 0.008,0.221175 h 0.006 q 0.12816,-0.231511 0.29559,-0.326595 0.1695,-0.09715 0.41962,-0.09715 0.36793,0 0.53743,0.183968 0.17157,0.181901 0.17157,0.603581 v 1.490348 z" id="path2696" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 375.83205,59.632569 q -0.18397,0.04961 -0.3762,0.04961 -0.44649,0 -0.44649,-0.506429 v -1.492415 h -0.25838 v -0.270785 h 0.27285 l 0.10956,-0.500228 h 0.24804 v 0.500228 h 0.41341 v 0.270785 h -0.41341 v 1.4118 q 0,0.16123 0.0517,0.227376 0.0537,0.06408 0.18397,0.06408 0.0744,0 0.21497,-0.02894 z" id="path2698" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 376.15451,59.649105 v -1.715657 q 0,-0.235645 -0.0124,-0.520899 h 0.3514 q 0.0165,0.380339 0.0165,0.45682 h 0.008 q 0.0889,-0.287321 0.20464,-0.392741 0.11576,-0.10542 0.3266,-0.10542 0.0744,0 0.15089,0.02067 v 0.341064 q -0.0744,-0.02067 -0.19843,-0.02067 -0.23151,0 -0.35347,0.200505 -0.12196,0.198438 -0.12196,0.570508 v 1.16582 z" id="path2700" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 379.45147,58.52876 q 0,0.587044 -0.25838,0.874365 -0.25839,0.287321 -0.75035,0.287321 -0.48989,0 -0.74,-0.297656 -0.25012,-0.299723 -0.25012,-0.86403 0,-1.157552 1.00253,-1.157552 0.51263,0 0.75447,0.283187 0.24185,0.28112 0.24185,0.874365 z m -0.39068,0 q 0,-0.463021 -0.13849,-0.671794 -0.13642,-0.210839 -0.46095,-0.210839 -0.3266,0 -0.47336,0.214974 -0.14469,0.212906 -0.14469,0.667659 0,0.44235 0.14262,0.665592 0.1447,0.221176 0.45269,0.221176 0.33486,0 0.47749,-0.214974 0.14469,-0.214974 0.14469,-0.671794 z" id="path2702" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 379.91656,59.649105 v -3.067513 h 0.37207 v 3.067513 z" id="path2704" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 380.85913,59.649105 v -3.067513 h 0.37207 v 3.067513 z" id="path2706" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 382.08697,58.609375 q 0,0.384473 0.15916,0.593246 0.15916,0.208772 0.46509,0.208772 0.24184,0 0.38654,-0.09715 0.14676,-0.09715 0.19843,-0.24598 l 0.3266,0.09302 q -0.20051,0.529166 -0.91157,0.529166 -0.4961,0 -0.75655,-0.295589 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.553972 0.25838,-0.849561 0.26045,-0.295589 0.74208,-0.295589 0.98598,0 0.98598,1.188558 v 0.04961 z m 1.21129,-0.285254 q -0.031,-0.353466 -0.17983,-0.514697 -0.14883,-0.163297 -0.42788,-0.163297 -0.27079,0 -0.42995,0.181901 -0.1571,0.179834 -0.1695,0.496093 z" id="path2708" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 384.16643,59.649105 v -1.715657 q 0,-0.235645 -0.0124,-0.520899 h 0.3514 q 0.0165,0.380339 0.0165,0.45682 h 0.008 q 0.0889,-0.287321 0.20464,-0.392741 0.11575,-0.10542 0.32659,-0.10542 0.0744,0 0.1509,0.02067 v 0.341064 q -0.0744,-0.02067 -0.19844,-0.02067 -0.23151,0 -0.35347,0.200505 -0.12195,0.198438 -0.12195,0.570508 v 1.16582 z" id="path2710" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 364.99249,35.062485 h 22.3571 v 11.906232 h -22.3571 z" id="rect1011" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26500002;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="PCIe" id="text1017" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 374.23926,40.436819 q 0,0.413411 -0.27079,0.657324 -0.26871,0.243912 -0.73173,0.243912 h -0.85577 v 1.134815 h -0.3948 v -2.912484 h 1.22576 q 0.48989,0 0.75861,0.229444 0.26872,0.229443 0.26872,0.646989 z m -0.39688,0.0041 q 0,-0.564307 -0.67799,-0.564307 h -0.78342 v 1.149284 h 0.79995 q 0.66146,0 0.66146,-0.584977 z" id="path2714" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 376.10374,39.839439 q -0.48369,0 -0.75241,0.312126 -0.26871,0.310058 -0.26871,0.851627 0,0.535368 0.27905,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605648 l 0.32246,0.161231 q -0.17983,0.376204 -0.50643,0.572575 -0.32453,0.19637 -0.75447,0.19637 -0.44029,0 -0.76275,-0.181901 -0.32039,-0.183968 -0.48989,-0.522965 -0.16743,-0.341065 -0.16743,-0.806153 0,-0.696598 0.3762,-1.091406 0.37621,-0.394808 1.0418,-0.394808 0.46509,0 0.77721,0.181901 0.31213,0.181901 0.45889,0.539502 l -0.37414,0.124023 q -0.10128,-0.254248 -0.32659,-0.388606 -0.22324,-0.134359 -0.53124,-0.134359 z" id="path2716" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 377.91655,42.47287 v -2.912484 h 0.39481 v 2.912484 z" id="path2718" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 379.27048,41.43314 q 0,0.384473 0.15916,0.593246 0.15916,0.208772 0.46509,0.208772 0.24184,0 0.38654,-0.09715 0.14676,-0.09715 0.19843,-0.24598 l 0.3266,0.09302 q -0.20051,0.529167 -0.91157,0.529167 -0.4961,0 -0.75655,-0.295589 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.553972 0.25838,-0.849561 0.26045,-0.295589 0.74208,-0.295589 0.98598,0 0.98598,1.188558 v 0.04961 z m 1.21129,-0.285254 q -0.031,-0.353467 -0.17983,-0.514697 -0.14883,-0.163298 -0.42788,-0.163298 -0.27079,0 -0.42995,0.181901 -0.1571,0.179834 -0.1695,0.496094 z" id="path2720" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 364.99249,20.510405 h 22.3571 v 11.906231 h -22.3571 z" id="rect1021" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26500002;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="DisplayController" id="text1027" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 372.25695,23.844564 q 0,0.450618 -0.1757,0.789616 -0.1757,0.33693 -0.49816,0.516764 -0.32246,0.179834 -0.74414,0.179834 h -1.08934 v -2.912483 h 0.96325 q 0.74,0 1.14101,0.37207 0.40308,0.370003 0.40308,1.054199 z m -0.39687,0 q 0,-0.541569 -0.29766,-0.824756 -0.29559,-0.285254 -0.85783,-0.285254 h -0.56017 v 2.279964 h 0.64905 q 0.3204,0 0.56224,-0.14056 0.24392,-0.140559 0.37414,-0.405143 0.13023,-0.264583 0.13023,-0.624251 z" id="path2725" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 372.74478,22.618799 v -0.355534 h 0.37207 v 0.355534 z m 0,2.711979 v -2.236556 h 0.37207 v 2.236556 z" id="path2727" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 375.36787,24.712728 q 0,0.31626 -0.23978,0.487826 -0.23771,0.171565 -0.66766,0.171565 -0.41754,0 -0.64492,-0.136426 -0.22531,-0.138492 -0.29352,-0.429947 l 0.32866,-0.06408 q 0.0475,0.179834 0.19637,0.264583 0.14883,0.08268 0.41341,0.08268 0.28319,0 0.41341,-0.08682 0.1323,-0.08682 0.1323,-0.260449 0,-0.132292 -0.091,-0.214974 -0.091,-0.08268 -0.29353,-0.136426 l -0.26665,-0.07028 q -0.32039,-0.08268 -0.45682,-0.16123 -0.13436,-0.08062 -0.21084,-0.194304 -0.0765,-0.113688 -0.0765,-0.279052 0,-0.305925 0.21704,-0.465088 0.21911,-0.161231 0.63666,-0.161231 0.37,0 0.58704,0.130225 0.21911,0.130224 0.27699,0.417545 l -0.33487,0.04134 q -0.031,-0.148829 -0.16743,-0.227377 -0.13436,-0.08061 -0.36173,-0.08061 -0.25218,0 -0.37207,0.07648 -0.11989,0.07648 -0.11989,0.231511 0,0.09508 0.0496,0.157096 0.0496,0.06201 0.14676,0.10542 0.0971,0.04341 0.40928,0.119889 0.29558,0.07441 0.42581,0.138493 0.13022,0.06201 0.20464,0.138493 0.0765,0.07648 0.11782,0.177767 0.0413,0.09922 0.0413,0.227376 z" id="path2729" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 377.69744,24.202165 q 0,1.169954 -0.82268,1.169954 -0.51677,0 -0.69454,-0.388606 h -0.0103 q 0.008,0.01654 0.008,0.351399 v 0.874365 h -0.37207 v -2.658235 q 0,-0.345199 -0.0124,-0.45682 h 0.35967 q 0.002,0.0083 0.006,0.05995 0.004,0.04961 0.008,0.155029 0.006,0.10542 0.006,0.144694 h 0.008 q 0.0992,-0.206706 0.26252,-0.30179 0.1633,-0.09715 0.42995,-0.09715 0.41341,0 0.61805,0.276986 0.20463,0.276985 0.20463,0.870231 z m -0.39067,0.0083 q 0,-0.467155 -0.12609,-0.667659 -0.12609,-0.200505 -0.40101,-0.200505 -0.22117,0 -0.34726,0.09302 -0.12403,0.09302 -0.19017,0.291455 -0.0641,0.19637 -0.0641,0.51263 0,0.440283 0.14056,0.649056 0.14056,0.208773 0.45682,0.208773 0.27698,0 0.40307,-0.202572 0.12816,-0.204639 0.12816,-0.684196 z" id="path2731" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 378.16253,25.330778 v -3.067513 h 0.37207 v 3.067513 z" id="path2734" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 379.67562,25.372119 q -0.33693,0 -0.50643,-0.177767 -0.1695,-0.177767 -0.1695,-0.487825 0,-0.347266 0.22738,-0.533301 0.22944,-0.186035 0.73794,-0.198437 l 0.50229,-0.0083 v -0.121956 q 0,-0.272852 -0.11575,-0.390674 -0.11576,-0.117822 -0.36381,-0.117822 -0.25011,0 -0.3638,0.08475 -0.11369,0.08475 -0.13642,0.270785 l -0.38861,-0.03514 q 0.0951,-0.603581 0.8971,-0.603581 0.42168,0 0.63459,0.194303 0.21291,0.192237 0.21291,0.558106 v 0.963249 q 0,0.165364 0.0434,0.250113 0.0434,0.08268 0.16537,0.08268 0.0537,0 0.12196,-0.01447 v 0.231511 q -0.14056,0.03307 -0.28733,0.03307 -0.2067,0 -0.30179,-0.107487 -0.093,-0.109554 -0.10542,-0.341065 h -0.0124 q -0.14263,0.256315 -0.33279,0.363802 -0.18811,0.10542 -0.45889,0.10542 z m 0.0848,-0.279052 q 0.20464,0 0.3638,-0.09302 0.15916,-0.09302 0.25011,-0.254248 0.093,-0.163298 0.093,-0.334863 V 24.22697 l -0.40721,0.0083 q -0.26251,0.0041 -0.39894,0.05374 -0.13436,0.04961 -0.20671,0.152963 -0.0723,0.103352 -0.0723,0.270784 0,0.181901 0.0971,0.28112 0.0992,0.09922 0.28112,0.09922 z" id="path2736" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 381.57111,26.209277 q -0.15296,0 -0.25632,-0.02274 v -0.279053 q 0.0786,0.0124 0.17364,0.0124 0.34726,0 0.54983,-0.510563 l 0.0351,-0.08888 -0.88676,-2.226221 h 0.39687 l 0.47129,1.2361 q 0.0103,0.02894 0.0248,0.07028 0.0145,0.03927 0.093,0.268718 0.0786,0.229443 0.0847,0.256315 l 0.1447,-0.40721 0.48989,-1.424203 h 0.39274 l -0.8599,2.236556 q -0.13849,0.357601 -0.25838,0.531234 -0.11989,0.1757 -0.26665,0.260449 -0.14469,0.08682 -0.32866,0.08682 z" id="path2738" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 368.79876,27.989013 q -0.48369,0 -0.75241,0.312126 -0.26871,0.310059 -0.26871,0.851627 0,0.535368 0.27905,0.861963 0.28112,0.324528 0.75861,0.324528 0.61185,0 0.91984,-0.605647 l 0.32246,0.16123 q -0.17983,0.376204 -0.50643,0.572575 -0.32453,0.19637 -0.75447,0.19637 -0.44029,0 -0.76275,-0.181901 -0.32039,-0.183968 -0.48989,-0.522965 -0.16743,-0.341065 -0.16743,-0.806153 0,-0.696598 0.3762,-1.091406 0.37621,-0.394808 1.0418,-0.394808 0.46509,0 0.77721,0.181901 0.31213,0.181901 0.45889,0.539502 l -0.37414,0.124024 q -0.10128,-0.254248 -0.32659,-0.388607 -0.22325,-0.134359 -0.53124,-0.134359 z" id="path2740" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 372.39751,29.502099 q 0,0.587044 -0.25838,0.874365 -0.25838,0.287321 -0.75034,0.287321 -0.4899,0 -0.74001,-0.297656 -0.25011,-0.299723 -0.25011,-0.86403 0,-1.157552 1.00252,-1.157552 0.51263,0 0.75447,0.283187 0.24185,0.28112 0.24185,0.874365 z m -0.39067,0 q 0,-0.463021 -0.1385,-0.671793 -0.13642,-0.21084 -0.46095,-0.21084 -0.3266,0 -0.47336,0.214974 -0.14469,0.212907 -0.14469,0.667659 0,0.44235 0.14263,0.665593 0.14469,0.221175 0.45268,0.221175 0.33487,0 0.47749,-0.214974 0.1447,-0.214974 0.1447,-0.671794 z" id="path2742" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 374.28267,30.622444 v -1.418001 q 0,-0.221175 -0.0434,-0.343132 -0.0434,-0.121956 -0.1385,-0.175699 -0.0951,-0.05374 -0.27905,-0.05374 -0.26872,0 -0.42374,0.183968 -0.15503,0.183968 -0.15503,0.510563 v 1.296045 h -0.37207 v -1.759066 q 0,-0.390673 -0.0124,-0.47749 h 0.3514 q 0.002,0.01034 0.004,0.05581 0.002,0.04547 0.004,0.10542 0.004,0.05788 0.008,0.221175 h 0.006 q 0.12816,-0.231511 0.29559,-0.326595 0.1695,-0.09715 0.41961,-0.09715 0.36794,0 0.53744,0.183968 0.17156,0.181901 0.17156,0.603581 v 1.490348 z" id="path2744" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 376.07894,30.605908 q -0.18397,0.04961 -0.37621,0.04961 -0.44648,0 -0.44648,-0.506429 v -1.492415 h -0.25838 v -0.270785 h 0.27285 l 0.10955,-0.500228 h 0.24805 v 0.500228 h 0.41341 v 0.270785 h -0.41341 v 1.4118 q 0,0.16123 0.0517,0.227376 0.0537,0.06408 0.18396,0.06408 0.0744,0 0.21498,-0.02894 z" id="path2746" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 376.4014,30.622444 v -1.715657 q 0,-0.235645 -0.0124,-0.520899 h 0.3514 q 0.0165,0.380339 0.0165,0.45682 h 0.008 q 0.0889,-0.287321 0.20464,-0.392741 0.11576,-0.10542 0.3266,-0.10542 0.0744,0 0.15089,0.02067 v 0.341064 q -0.0744,-0.02067 -0.19844,-0.02067 -0.23151,0 -0.35346,0.200504 -0.12196,0.198438 -0.12196,0.570508 v 1.16582 z" id="path2748" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 379.69836,29.502099 q 0,0.587044 -0.25839,0.874365 -0.25838,0.287321 -0.75034,0.287321 -0.48989,0 -0.74,-0.297656 -0.25012,-0.299723 -0.25012,-0.86403 0,-1.157552 1.00252,-1.157552 0.51263,0 0.75448,0.283187 0.24185,0.28112 0.24185,0.874365 z m -0.39068,0 q 0,-0.463021 -0.13849,-0.671793 -0.13643,-0.21084 -0.46095,-0.21084 -0.3266,0 -0.47336,0.214974 -0.14469,0.212907 -0.14469,0.667659 0,0.44235 0.14262,0.665593 0.1447,0.221175 0.45269,0.221175 0.33486,0 0.47749,-0.214974 0.14469,-0.214974 0.14469,-0.671794 z" id="path2750" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 380.16344,30.622444 v -3.067513 h 0.37207 v 3.067513 z" id="path2752" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 381.10602,30.622444 v -3.067513 h 0.37207 v 3.067513 z" id="path2754" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 382.33385,29.582714 q 0,0.384473 0.15917,0.593246 0.15916,0.208773 0.46508,0.208773 0.24185,0 0.38654,-0.09715 0.14677,-0.09715 0.19844,-0.24598 l 0.3266,0.09302 q -0.20051,0.529166 -0.91158,0.529166 -0.49609,0 -0.75654,-0.295589 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.553972 0.25838,-0.849561 0.26045,-0.295589 0.74208,-0.295589 0.98598,0 0.98598,1.188558 v 0.04961 z m 1.2113,-0.285254 q -0.031,-0.353466 -0.17984,-0.514697 -0.14882,-0.163297 -0.42788,-0.163297 -0.27078,0 -0.42994,0.181901 -0.1571,0.179834 -0.1695,0.496093 z" id="path2756" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 384.41331,30.622444 v -1.715657 q 0,-0.235645 -0.0124,-0.520899 h 0.3514 q 0.0165,0.380339 0.0165,0.45682 h 0.008 q 0.0889,-0.287321 0.20463,-0.392741 0.11576,-0.10542 0.3266,-0.10542 0.0744,0 0.15089,0.02067 v 0.341064 q -0.0744,-0.02067 -0.19843,-0.02067 -0.23151,0 -0.35347,0.200504 -0.12196,0.198438 -0.12196,0.570508 v 1.16582 z" id="path2758" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="System Agent" id="text1033" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 365.717,17.289388 q 0,0.403076 -0.31626,0.624251 -0.31419,0.221176 -0.88677,0.221176 -1.06453,0 -1.23403,-0.740007 l 0.38241,-0.07648 q 0.0661,0.262516 0.28112,0.38654 0.21497,0.121956 0.58497,0.121956 0.38241,0 0.58911,-0.130225 0.20878,-0.132291 0.20878,-0.386539 0,-0.142627 -0.0661,-0.231511 -0.0641,-0.08888 -0.1819,-0.146761 -0.11782,-0.05788 -0.28112,-0.09715 -0.1633,-0.03927 -0.36173,-0.08475 -0.3452,-0.07648 -0.52504,-0.152962 -0.17776,-0.07648 -0.28112,-0.169499 -0.10335,-0.09508 -0.15916,-0.221175 -0.0537,-0.12609 -0.0537,-0.289388 0,-0.374137 0.28525,-0.576709 0.28732,-0.202571 0.82062,-0.202571 0.4961,0 0.75861,0.152962 0.26252,0.150895 0.36794,0.516764 l -0.38861,0.06821 q -0.0641,-0.23151 -0.24391,-0.334863 -0.17984,-0.10542 -0.49816,-0.10542 -0.34933,0 -0.5333,0.115755 -0.18397,0.115755 -0.18397,0.345199 0,0.134358 0.0703,0.223242 0.0723,0.08682 0.2067,0.148828 0.13436,0.05994 0.53537,0.148828 0.13436,0.03101 0.26665,0.06408 0.13436,0.03101 0.25632,0.07648 0.12195,0.04341 0.22737,0.103353 0.10749,0.05994 0.18604,0.146761 0.0786,0.08682 0.12196,0.204639 0.0455,0.117822 0.0455,0.276985 z" id="path2761" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 366.31025,18.971973 q -0.15297,0 -0.25632,-0.02274 v -0.279053 q 0.0786,0.0124 0.17363,0.0124 0.34727,0 0.54984,-0.510563 l 0.0351,-0.08888 -0.88677,-2.22622 h 0.39688 l 0.47129,1.2361 q 0.0103,0.02894 0.0248,0.07028 0.0145,0.03927 0.093,0.268717 0.0786,0.229443 0.0847,0.256315 l 0.14469,-0.40721 0.4899,-1.424202 h 0.39274 l -0.8599,2.236555 q -0.13849,0.357601 -0.25838,0.531234 -0.11989,0.1757 -0.26665,0.260449 -0.1447,0.08682 -0.32866,0.08682 z" id="path2763" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 369.99581,17.475423 q 0,0.31626 -0.23978,0.487826 -0.23771,0.171566 -0.66766,0.171566 -0.41754,0 -0.64492,-0.136426 -0.22531,-0.138493 -0.29352,-0.429948 l 0.32866,-0.06408 q 0.0475,0.179834 0.19637,0.264583 0.14883,0.08268 0.41341,0.08268 0.28319,0 0.41341,-0.08682 0.13229,-0.08682 0.13229,-0.260449 0,-0.132292 -0.091,-0.214974 -0.0909,-0.08268 -0.29352,-0.136426 l -0.26665,-0.07028 Q 368.66256,17 368.52613,16.921452 q -0.13436,-0.08061 -0.21084,-0.194303 -0.0765,-0.113689 -0.0765,-0.279053 0,-0.305925 0.21704,-0.465088 0.21911,-0.16123 0.63666,-0.16123 0.37,0 0.58704,0.130224 0.21911,0.130225 0.27699,0.417546 l -0.33487,0.04134 q -0.031,-0.148828 -0.16743,-0.227376 -0.13436,-0.08062 -0.36173,-0.08062 -0.25219,0 -0.37208,0.07648 -0.11988,0.07648 -0.11988,0.231511 0,0.09508 0.0496,0.157096 0.0496,0.06201 0.14676,0.10542 0.0971,0.04341 0.40927,0.119889 0.29559,0.07442 0.42582,0.138493 0.13022,0.06201 0.20464,0.138493 0.0765,0.07648 0.11782,0.177767 0.0413,0.09922 0.0413,0.227376 z" id="path2765" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 371.29392,18.076937 q -0.18397,0.04961 -0.3762,0.04961 -0.44649,0 -0.44649,-0.506429 v -1.492415 h -0.25838 v -0.270784 h 0.27285 l 0.10956,-0.500228 h 0.24804 v 0.500228 h 0.41341 v 0.270784 h -0.41341 v 1.4118 q 0,0.161231 0.0517,0.227376 0.0537,0.06408 0.18397,0.06408 0.0744,0 0.21497,-0.02894 z" id="path2767" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 371.89337,17.053744 q 0,0.384472 0.15916,0.593245 0.15916,0.208773 0.46509,0.208773 0.24184,0 0.38654,-0.09715 0.14676,-0.09715 0.19844,-0.24598 l 0.32659,0.09302 q -0.2005,0.529167 -0.91157,0.529167 -0.49609,0 -0.75654,-0.29559 -0.25839,-0.295589 -0.25839,-0.878499 0,-0.553971 0.25839,-0.84956 0.26045,-0.29559 0.74207,-0.29559 0.98599,0 0.98599,1.188558 v 0.04961 z m 1.21129,-0.285254 q -0.031,-0.353467 -0.17983,-0.514697 -0.14883,-0.163298 -0.42788,-0.163298 -0.27079,0 -0.42995,0.181901 -0.1571,0.179834 -0.1695,0.496094 z" id="path2769" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 375.2668,18.093473 v -1.418001 q 0,-0.324528 -0.0889,-0.448551 -0.0889,-0.124024 -0.32039,-0.124024 -0.23771,0 -0.37621,0.181901 -0.13849,0.181901 -0.13849,0.512631 v 1.296044 h -0.37 v -1.759065 q 0,-0.390674 -0.0124,-0.47749 h 0.3514 q 0.002,0.01033 0.004,0.05581 0.002,0.04547 0.004,0.10542 0.004,0.05788 0.008,0.221175 h 0.006 q 0.11989,-0.237711 0.27492,-0.330729 0.15503,-0.09302 0.37827,-0.09302 0.25425,0 0.40101,0.101286 0.14883,0.101286 0.20671,0.322461 h 0.006 q 0.11575,-0.225309 0.27905,-0.324528 0.16537,-0.09922 0.39894,-0.09922 0.339,0 0.49196,0.183969 0.15503,0.183968 0.15503,0.60358 v 1.490348 h -0.36793 v -1.418001 q 0,-0.324528 -0.0889,-0.448551 -0.0889,-0.124024 -0.32039,-0.124024 -0.24391,0 -0.38034,0.181901 -0.13436,0.179834 -0.13436,0.512631 v 1.296044 z" id="path2771" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 380.56467,18.093473 -0.33279,-0.851627 h -1.32705 l -0.33487,0.851627 h -0.40928 l 1.18856,-2.912483 h 0.44855 l 1.16996,2.912483 z m -0.99632,-2.614827 -0.0186,0.05788 q -0.0517,0.171565 -0.15296,0.440283 l -0.37208,0.957047 h 1.08934 l -0.37413,-0.961181 q -0.0579,-0.142627 -0.11576,-0.322461 z" id="path2773" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 382.1129,18.971973 q -0.36587,0 -0.58291,-0.144694 -0.21704,-0.142627 -0.27905,-0.407211 l 0.37413,-0.05374 q 0.0372,0.155029 0.1633,0.237712 0.12816,0.08475 0.33486,0.08475 0.55604,0 0.55604,-0.651123 v -0.359668 h -0.004 q -0.10542,0.214974 -0.28939,0.324528 -0.18397,0.107487 -0.42995,0.107487 -0.41134,0 -0.60565,-0.272852 -0.19223,-0.272851 -0.19223,-0.857828 0,-0.593246 0.2067,-0.874366 0.20878,-0.283186 0.63252,-0.283186 0.23771,0 0.41135,0.109554 0.1757,0.107487 0.27078,0.307991 h 0.004 q 0,-0.06201 0.008,-0.214974 0.008,-0.152962 0.0165,-0.167431 h 0.35347 q -0.0124,0.111621 -0.0124,0.46302 v 1.709457 q 0,0.942578 -0.93637,0.942578 z m 0.56637,-1.996778 q 0,-0.272851 -0.0744,-0.469221 -0.0744,-0.198438 -0.21084,-0.301791 -0.13436,-0.10542 -0.30593,-0.10542 -0.28525,0 -0.41548,0.206706 -0.13022,0.206706 -0.13022,0.669726 0,0.458887 0.12196,0.659392 0.12195,0.200504 0.41754,0.200504 0.1757,0 0.31213,-0.103353 0.13642,-0.103352 0.21084,-0.295589 0.0744,-0.194303 0.0744,-0.460954 z" id="path2775" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 383.9071,17.053744 q 0,0.384472 0.15917,0.593245 0.15916,0.208773 0.46509,0.208773 0.24184,0 0.38653,-0.09715 0.14677,-0.09715 0.19844,-0.24598 l 0.3266,0.09302 q -0.20051,0.529167 -0.91157,0.529167 -0.4961,0 -0.75655,-0.29559 -0.25838,-0.295589 -0.25838,-0.878499 0,-0.553971 0.25838,-0.84956 0.26045,-0.29559 0.74208,-0.29559 0.98598,0 0.98598,1.188558 v 0.04961 z m 1.2113,-0.285254 q -0.031,-0.353467 -0.17983,-0.514697 -0.14883,-0.163298 -0.42789,-0.163298 -0.27078,0 -0.42994,0.181901 -0.1571,0.179834 -0.1695,0.496094 z" id="path2777" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 387.39836,18.093473 v -1.418001 q 0,-0.221175 -0.0434,-0.343131 -0.0434,-0.121957 -0.1385,-0.1757 -0.0951,-0.05374 -0.27905,-0.05374 -0.26872,0 -0.42375,0.183968 -0.15503,0.183969 -0.15503,0.510564 v 1.296044 h -0.37207 v -1.759065 q 0,-0.390674 -0.0124,-0.47749 h 0.3514 q 0.002,0.01033 0.004,0.05581 0.002,0.04547 0.004,0.10542 0.004,0.05788 0.008,0.221175 h 0.006 q 0.12816,-0.23151 0.29559,-0.326595 0.1695,-0.09715 0.41961,-0.09715 0.36794,0 0.53744,0.183969 0.17156,0.181901 0.17156,0.60358 v 1.490348 z" id="path2779" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 389.19464,18.076937 q -0.18397,0.04961 -0.37621,0.04961 -0.44648,0 -0.44648,-0.506429 v -1.492415 h -0.25838 v -0.270784 h 0.27285 l 0.10955,-0.500228 h 0.24805 v 0.500228 h 0.41341 v 0.270784 h -0.41341 v 1.4118 q 0,0.161231 0.0517,0.227376 0.0538,0.06408 0.18397,0.06408 0.0744,0 0.21498,-0.02894 z" id="path2781" style="font-size:4.23333311px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m -9.260353,11.250001 h 3.96875 v 13.229167 h -3.96875 z" id="path1152" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m -1.322853,11.250006 h 3.96875 v 13.229167 h -3.96875 z" id="path1154" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 6.614647,11.250006 h 3.96875 v 13.229167 h -3.96875 z" id="path1156" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 14.552147,11.250006 h 3.96875 v 13.229167 h -3.96875 z" id="path1158" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 22.489647,11.250006 h 3.96875 v 13.229167 h -3.96875 z" id="path1160" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m -9.260393,44.322877 v 8.598958 4.630209 3.968749 h 3.96875 11.90625 l -2.27e-5,19.843789 h 3.9687497 l 2.3e-5,-19.843789 h 15.875 V 57.552044 56.361419 44.322877 h -3.96875 v 12.038542 1.190625 h -3.96875 V 56.361419 44.322877 h -3.96875 v 12.038542 1.190625 h -3.96875 V 56.361419 44.322877 h -3.96875 v 12.038542 1.190625 H 2.645857 V 56.361419 44.322877 h -3.96875 v 12.038542 1.190625 h -3.96875 v -4.630209 -8.598958 z" id="path1308" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M -11.906255,17.864588 H 29.104201 V 44.322931 H -11.906255 Z" id="rect1108" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="m -10.583302,24.47917 h 6.6145844 V 43 h -6.6145844 z" id="rect1052" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="Complex" id="text1058" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -5.6452153,26.594869 q 0,-0.486833 -0.3259666,-0.766233 -0.3259667,-0.2794 -0.8932333,-0.2794 -0.5630333,0 -0.8932333,0.258233 -0.3259667,0.262467 -0.3259667,0.783167 0,0.198966 0.033867,0.376766 0.033867,0.1778 0.084667,0.347134 h -0.3302 q -0.0635,-0.169334 -0.093133,-0.351367 -0.029633,-0.1778 -0.029633,-0.427567 0,-0.461433 0.1905,-0.770466 0.1905,-0.309033 0.5418667,-0.465667 0.3513666,-0.1524 0.8254999,-0.1524 0.4572,0 0.8043333,0.1651 0.3513667,0.169334 0.5461,0.4953 0.1989666,0.325967 0.1989666,0.791633 0,0.478367 -0.1778,0.833967 l -0.3217333,-0.1524 q 0.0635,-0.1397 0.1143,-0.313267 0.0508,-0.169333 0.0508,-0.372533 z" id="path15975" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -7.2369485,29.896869 q -0.5630333,0 -0.8720667,-0.287867 -0.3090333,-0.283633 -0.3090333,-0.770466 0,-0.300567 0.1354667,-0.537634 0.1397,-0.232833 0.4021666,-0.3683 0.2667,-0.135466 0.6434667,-0.135466 0.5630333,0 0.8678333,0.283633 0.3047999,0.283633 0.3047999,0.770467 0,0.309033 -0.1397,0.541866 -0.1354666,0.237067 -0.3979333,0.3683 -0.2582333,0.135467 -0.6349999,0.135467 z m 0,-1.7145 q -0.4021667,0 -0.6392333,0.156633 -0.2328334,0.160867 -0.2328334,0.508 0,0.3429 0.2328334,0.503767 0.2370666,0.160867 0.6392333,0.160867 0.4021666,0 0.6307666,-0.160867 0.2286,-0.160867 0.2286,-0.508 0,-0.347133 -0.2286,-0.503767 -0.2286,-0.156633 -0.6307666,-0.156633 z" id="path15977" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -6.0643153,32.974502 q 0,0.385234 -0.1989666,0.575734 -0.1947333,0.1905 -0.635,0.1905 h -1.4774332 v -0.3683 h 1.4604999 q 0.5376333,0 0.5376333,-0.461434 0,-0.3302 -0.1905,-0.474133 -0.1905,-0.1397 -0.5545666,-0.1397 h -1.2530666 v -0.3683 h 1.4604999 q 0.5376333,0 0.5376333,-0.465667 0,-0.3429 -0.2116667,-0.474133 -0.2116666,-0.131233 -0.6095999,-0.131233 h -1.1768666 v -0.372534 h 2.2690665 v 0.300567 l -0.3090333,0.05503 v 0.02117 q 0.1778,0.105833 0.2624666,0.283633 0.0889,0.182034 0.0889,0.385234 0,0.5334 -0.3809999,0.694266 v 0.02117 q 0.1947333,0.1143 0.2878666,0.309033 0.093133,0.198967 0.093133,0.4191 z" id="path15979" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -6.0643153,35.522969 q 0,0.4191 -0.2920999,0.6731 -0.2921,0.258233 -0.8805333,0.258233 -0.5799667,0 -0.8805333,-0.258233 -0.3005667,-0.254 -0.3005667,-0.677334 0,-0.262466 0.097367,-0.436033 0.1016,-0.169333 0.2328333,-0.2667 v -0.0254 q -0.071967,0.0085 -0.1820333,0.01693 -0.1100667,0.0085 -0.1905,0.0085 h -0.9313333 v -0.372533 h 3.2850665 v 0.3048 l -0.3090333,0.0508 v 0.01693 q 0.1481667,0.1016 0.2497666,0.2667 0.1016,0.1651 0.1016,0.440267 z m -0.3132666,-0.06773 q 0,-0.347133 -0.1947333,-0.491066 -0.1947334,-0.1397 -0.5926667,-0.148167 h -0.071967 q -0.4191,0 -0.6477,0.135467 -0.2243667,0.1397 -0.2243667,0.512233 0,0.207433 0.1143,0.338667 0.1143,0.135466 0.3090334,0.198966 0.1989666,0.06773 0.4529666,0.06773 0.3894666,0 0.6223,-0.1524 0.2328333,-0.148167 0.2328333,-0.461434 z" id="path15981" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -8.3757151,37.419502 v -0.372533 h 3.2173331 v 0.372533 z" id="path15983" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -6.0643153,39.015468 q 0,0.2921 -0.127,0.499534 -0.1269999,0.211666 -0.3598333,0.321733 -0.2286,0.1143 -0.5376333,0.1143 h -0.2243666 v -1.553633 q -0.3852333,0.0085 -0.5884333,0.194733 -0.1989667,0.1905 -0.1989667,0.529167 0,0.2159 0.0381,0.381 0.042333,0.169333 0.1185333,0.347133 h -0.3259666 q -0.0762,-0.173567 -0.1100667,-0.3429 -0.0381,-0.169333 -0.0381,-0.402167 0,-0.321733 0.1312334,-0.5715 0.1312333,-0.245533 0.3894666,-0.385233 0.2624667,-0.135467 0.6392333,-0.135467 0.3725333,0 0.6392333,0.122767 0.2667,0.127 0.4106333,0.351367 0.1439333,0.2286 0.1439333,0.529166 z m -0.3047999,-0.0042 q 0,-0.2667 -0.1735667,-0.423333 -0.1693333,-0.1524 -0.4741333,-0.182034 v 1.1557 q 0.2878666,-0.0042 0.4656666,-0.135466 0.1820334,-0.131234 0.1820334,-0.414867 z" id="path15985" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -7.2157819,41.064402 1.1091333,-0.783167 v 0.423333 l -0.8551333,0.5842 0.8551333,0.579967 v 0.4191 l -1.1091333,-0.783167 -1.1599332,0.8255 v -0.423333 l 0.9059332,-0.618067 -0.9059332,-0.626533 v -0.4191 z" id="path15987" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m -2.6458025,24.47917 h 6.614584 V 43 h -6.614584 z" id="rect1088" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="Simple" id="text1046" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 0.37035149,29.135832 q -0.40216665,0 -0.6265333,-0.2921 -0.22436666,-0.2921 -0.22436666,-0.7874 0,-0.254 0.0381,-0.4699 0.0381,-0.2159 0.10583333,-0.359833 h 0.36406665 q -0.06773333,0.1524 -0.12276666,0.376767 -0.05503333,0.2286 -0.05503333,0.4699 0,0.338666 0.13123332,0.508 0.13123333,0.173566 0.35559998,0.173566 0.14816666,0 0.24976666,-0.0635 0.10159999,-0.0635 0.18626665,-0.220133 0.0889,-0.1524 0.18626666,-0.427567 0.13970001,-0.385233 0.34290001,-0.5842 0.2032,-0.194733 0.5545666,-0.194733 0.2413,0 0.4106333,0.122767 0.1735667,0.122766 0.2667,0.338666 0.093133,0.220134 0.093133,0.503767 0,0.249767 -0.046567,0.4572 -0.046567,0.207433 -0.1227667,0.376767 L 2.1314181,28.945332 q 0.067733,-0.156633 0.1143,-0.3429 0.046567,-0.182033 0.046567,-0.381 0,-0.283633 -0.1227666,-0.427566 -0.1185334,-0.143934 -0.3175,-0.143934 -0.1524,0 -0.254,0.0635 -0.1016,0.0635 -0.1820333,0.207434 -0.080433,0.143933 -0.1735667,0.389466 -0.097367,0.2667 -0.2116666,0.448734 -0.11006671,0.186266 -0.26670003,0.2794 -0.15663333,0.09737 -0.39369998,0.09737 z" id="path15990" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 2.6817514,29.885132 q 0,0.08467 -0.059267,0.148167 -0.055033,0.06773 -0.1778,0.06773 -0.1185333,0 -0.1778,-0.06773 -0.059267,-0.0635 -0.059267,-0.148167 0,-0.09313 0.059267,-0.156633 0.059267,-0.0635 0.1778,-0.0635 0.1227667,0 0.1778,0.0635 0.059267,0.0635 0.059267,0.156633 z m -0.8509,0.182033 H -0.43821514 V 29.694632 H 1.8308514 Z" id="path15992" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 1.8731847,33.276032 q 0,0.385233 -0.1989666,0.575733 -0.1947333,0.1905 -0.635,0.1905 h -1.47743324 v -0.3683 H 1.0222848 q 0.5376333,0 0.5376333,-0.461433 0,-0.3302 -0.1905,-0.474133 -0.1905,-0.1397 -0.55456664,-0.1397 h -1.2530666 v -0.3683 H 1.0222848 q 0.5376333,0 0.5376333,-0.465667 0,-0.3429 -0.2116667,-0.474133 Q 1.1365848,31.159366 0.73865147,31.159366 H -0.43821514 V 30.786832 H 1.8308514 v 0.300567 l -0.3090333,0.05503 v 0.02117 q 0.1778,0.105833 0.2624666,0.283633 0.0889,0.182034 0.0889,0.385233 0,0.5334 -0.3809999,0.694267 v 0.02117 q 0.1947333,0.1143 0.2878666,0.309033 0.093133,0.198967 0.093133,0.4191 z" id="path15994" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 1.8731847,35.824498 q 0,0.4191 -0.2920999,0.6731 -0.2921,0.258234 -0.88053333,0.258234 -0.57996664,0 -0.88053329,-0.258234 -0.30056665,-0.254 -0.30056665,-0.677333 0,-0.262467 0.0973667,-0.436033 0.1016,-0.169334 0.23283333,-0.2667 v -0.0254 q -0.0719667,0.0085 -0.18203333,0.01693 -0.11006666,0.0085 -0.19049999,0.0085 H -1.4542151 v -0.372534 h 3.2850665 v 0.3048 l -0.3090333,0.0508 v 0.01693 q 0.1481667,0.1016 0.2497666,0.2667 0.1016,0.1651 0.1016,0.440266 z m -0.3132666,-0.06773 q 0,-0.347133 -0.1947333,-0.491067 -0.1947334,-0.1397 -0.59266667,-0.148166 h -0.0719667 q -0.41909998,0 -0.64769997,0.135466 -0.22436665,0.1397 -0.22436665,0.512234 0,0.207433 0.11429999,0.338666 0.1143,0.135467 0.30903332,0.198967 0.19896666,0.06773 0.45296664,0.06773 0.38946664,0 0.62230004,-0.1524 0.2328333,-0.148166 0.2328333,-0.461433 z" id="path15996" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M -0.43821514,37.721032 V 37.348499 H 2.779118 v 0.372533 z" id="path15998" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 1.8731847,39.316998 q 0,0.2921 -0.127,0.499533 -0.1269999,0.211667 -0.3598333,0.321734 -0.2286,0.1143 -0.53763327,0.1143 H 0.62435147 v -1.553634 q -0.38523331,0.0085 -0.5884333,0.194734 -0.19896665,0.1905 -0.19896665,0.529166 0,0.2159 0.0381,0.381 0.04233333,0.169334 0.11853333,0.347134 H -0.3323818 q -0.0762,-0.173567 -0.11006666,-0.3429 -0.0381,-0.169334 -0.0381,-0.402167 0,-0.321733 0.13123333,-0.5715 0.13123333,-0.245533 0.38946664,-0.385233 0.26246666,-0.135467 0.6392333,-0.135467 0.37253329,0 0.63923329,0.122767 0.2667,0.127 0.4106333,0.351366 0.1439333,0.2286 0.1439333,0.529167 z m -0.3047999,-0.0042 q 0,-0.2667 -0.1735667,-0.423334 -0.1693333,-0.1524 -0.47413331,-0.182033 v 1.1557 q 0.28786661,-0.0042 0.46566661,-0.135467 0.1820334,-0.131233 0.1820334,-0.414866 z" id="path16000" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="M 5.2916975,24.47917 H 11.906281 V 43 H 5.2916975 Z" id="rect1090" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="m 13.229198,24.47917 h 6.614584 V 43 h -6.614584 z" id="rect1096" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="M 21.166666,24.47917 H 27.78125 V 43 h -6.614584 z" id="rect1102" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="5-way Decoder" id="text1112" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -5.123802,20.460631 q 0.4656666,0 0.7408333,0.232833 0.2751666,0.232834 0.2751666,0.656167 0,0.4699 -0.3005666,0.740833 -0.2963334,0.2667 -0.8297333,0.2667 -0.2328333,0 -0.4402667,-0.04233 -0.2032,-0.04233 -0.3428999,-0.122767 v -0.351367 q 0.1523999,0.09313 0.3682999,0.148167 0.2201334,0.0508 0.4191,0.0508 0.3344333,0 0.5376333,-0.156633 0.2074333,-0.160867 0.2074333,-0.4953 0,-0.296333 -0.1820333,-0.452967 -0.1820333,-0.160866 -0.5757333,-0.160866 -0.1185333,0 -0.2709333,0.02117 -0.1524,0.02117 -0.2455333,0.04233 l -0.1862667,-0.118534 0.1143,-1.426633 h 1.5155333 v 0.338667 H -5.517502 l -0.071967,0.8763 q 0.071967,-0.0127 0.1947334,-0.02963 0.1227666,-0.01693 0.2709333,-0.01693 z" id="path2790" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m -3.6960443,21.345397 v -0.330199 h 1.0244666 v 0.330199 z" id="path2792" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m -0.28708687,22.310597 -0.38946665,-1.278466 q -0.0550333,-0.173567 -0.0973667,-0.338667 -0.0381,-0.169333 -0.0592667,-0.262466 h -0.0169333 q -0.0169333,0.09313 -0.0550333,0.262466 -0.0381,0.1651 -0.0973667,0.3429 l -0.4063999,1.274233 h -0.4233334 l -0.6222999,-2.269066 h 0.3852333 l 0.3132666,1.210733 q 0.046567,0.182033 0.0889,0.3683 0.042333,0.186267 0.059267,0.309033 h 0.016933 q 0.016933,-0.07197 0.0381,-0.1778 0.0254,-0.105833 0.055033,-0.220133 0.029633,-0.118533 0.059267,-0.211667 l 0.4021667,-1.278466 h 0.40639994 l 0.38946665,1.278466 q 0.0465667,0.143934 0.0889,0.313267 0.0465667,0.169333 0.06349999,0.2921 h 0.01693334 q 0.01269999,-0.105833 0.05503333,-0.2921 0.04656666,-0.186267 0.09736666,-0.381 l 0.31749998,-1.210733 h 0.38099998 l -0.63076663,2.269066 z" id="path2794" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m 2.0419081,20.007664 q 0.4148666,0 0.6138333,0.182034 0.1989666,0.182033 0.1989666,0.579966 v 1.545167 H 2.5837747 L 2.511808,21.993097 h -0.016933 q -0.1481667,0.186267 -0.3132666,0.275167 -0.1608667,0.0889 -0.4487334,0.0889 -0.3090333,0 -0.5122333,-0.160867 -0.2031999,-0.1651 -0.2031999,-0.512233 0,-0.338667 0.2666999,-0.5207 0.2667,-0.186266 0.8212667,-0.2032 l 0.3852333,-0.0127 v -0.135466 q 0,-0.283634 -0.1227667,-0.3937 -0.1227666,-0.110067 -0.3471333,-0.110067 -0.1778,0 -0.3386666,0.05503 -0.1608667,0.0508 -0.3005667,0.118534 l -0.1143,-0.2794 q 0.1481667,-0.08043 0.3513667,-0.135467 0.2031999,-0.05927 0.4233333,-0.05927 z m 0.4444999,1.198034 -0.3344333,0.0127 q -0.4233333,0.01693 -0.5884333,0.135466 -0.1608666,0.118533 -0.1608666,0.334433 0,0.1905 0.1143,0.2794 0.1185333,0.0889 0.3005666,0.0889 0.2878667,0 0.4783667,-0.156633 0.1904999,-0.160867 0.1904999,-0.491067 z" id="path2796" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m 3.1999225,20.045764 h 0.3979333 l 0.4910667,1.291167 q 0.0635,0.169333 0.1143,0.325966 0.0508,0.1524 0.0762,0.2921 h 0.016933 q 0.0254,-0.105833 0.080433,-0.275166 0.055033,-0.173567 0.1143,-0.347134 l 0.4614333,-1.286933 h 0.4021667 l -0.9779,2.582333 q -0.1185333,0.321734 -0.3090333,0.512234 -0.1862666,0.1905 -0.5164666,0.1905 -0.1016,0 -0.1778,-0.0127 -0.0762,-0.0085 -0.1312333,-0.02117 v -0.296333 q 0.046567,0.0085 0.1100666,0.01693 0.067733,0.0085 0.1397,0.0085 0.1947333,0 0.3132667,-0.110067 0.1227666,-0.110067 0.1905,-0.2921 l 0.1185333,-0.300567 z" id="path2798" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m 9.2854719,20.773898 q 0,0.766233 -0.4191,1.155699 -0.4148667,0.385234 -1.1599333,0.385234 H 6.8640053 v -3.0226 h 0.9313333 q 0.4572,0 0.7916333,0.169333 0.3344333,0.169334 0.5164666,0.499534 0.1820334,0.325966 0.1820334,0.8128 z m -0.4021667,0.0127 q 0,-0.605367 -0.3005666,-0.884767 -0.2963334,-0.283633 -0.8424333,-0.283633 h -0.4953 v 2.370666 h 0.4106333 q 1.2276666,0 1.2276666,-1.202266 z" id="path2800" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m 10.781823,20.003431 q 0.2921,0 0.499533,0.127 0.211667,0.127 0.321733,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.553633 q 0.0085,0.385233 0.194734,0.588433 0.1905,0.198967 0.529166,0.198967 0.2159,0 0.381,-0.0381 0.169333,-0.04233 0.347133,-0.118533 v 0.325966 q -0.173566,0.0762 -0.3429,0.110067 -0.169333,0.0381 -0.402166,0.0381 -0.321733,0 -0.5715,-0.131233 -0.245533,-0.131234 -0.3852334,-0.389467 -0.1354667,-0.262467 -0.1354667,-0.639233 0,-0.372533 0.1227667,-0.639233 0.1270004,-0.2667 0.3513664,-0.410634 0.2286,-0.143933 0.529167,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423334,0.173567 -0.1524,0.169333 -0.182033,0.474133 h 1.1557 q -0.0042,-0.287867 -0.135467,-0.465667 -0.131233,-0.182033 -0.414866,-0.182033 z" id="path2802" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m 13.205206,22.357164 q -0.300566,0 -0.537633,-0.122767 -0.232833,-0.122766 -0.3683,-0.381 -0.131233,-0.258233 -0.131233,-0.660399 0,-0.4191 0.1397,-0.681567 0.1397,-0.262467 0.376766,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.173567,0 0.334434,0.0381 0.160866,0.03387 0.262466,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.237066,-0.07197 -0.135467,-0.03387 -0.254,-0.03387 -0.668867,0 -0.668867,0.859366 0,0.410633 0.160867,0.630767 0.1651,0.2159 0.486833,0.2159 0.186267,0 0.325967,-0.0381 0.143933,-0.0381 0.262466,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.135466,0.03387 -0.3302,0.03387 z" id="path2804" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m 16.301758,21.176064 q 0,0.563033 -0.287867,0.872067 -0.283633,0.309033 -0.770466,0.309033 -0.300567,0 -0.537633,-0.135467 -0.232834,-0.1397 -0.3683,-0.402166 -0.135467,-0.2667 -0.135467,-0.643467 0,-0.563033 0.283633,-0.867833 0.283634,-0.3048 0.770467,-0.3048 0.309033,0 0.541866,0.1397 0.237067,0.135467 0.3683,0.397933 0.135467,0.258234 0.135467,0.635 z m -1.7145,0 q 0,0.402167 0.156634,0.639233 0.160866,0.232834 0.507999,0.232834 0.3429,0 0.503767,-0.232834 0.160867,-0.237066 0.160867,-0.639233 0,-0.402166 -0.160867,-0.630766 -0.160867,-0.2286 -0.508,-0.2286 -0.347133,0 -0.503766,0.2286 -0.156634,0.2286 -0.156634,0.630766 z" id="path2806" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m 17.696509,22.357164 q -0.423334,0 -0.677334,-0.2921 -0.254,-0.296333 -0.254,-0.880533 0,-0.5842 0.254,-0.880533 0.258234,-0.300567 0.681567,-0.300567 0.262467,0 0.427567,0.09737 0.169333,0.09737 0.275166,0.237066 h 0.0254 q -0.0042,-0.05503 -0.01693,-0.160866 -0.0085,-0.110067 -0.0085,-0.173567 v -0.905933 h 0.372534 v 3.217333 h -0.300567 l -0.05503,-0.3048 h -0.01693 q -0.1016,0.143933 -0.270933,0.245533 -0.169333,0.1016 -0.436033,0.1016 z m 0.05927,-0.309033 q 0.359834,0 0.503767,-0.194734 0.148167,-0.198966 0.148167,-0.596899 v -0.06773 q 0,-0.423333 -0.1397,-0.6477 -0.1397,-0.2286 -0.516467,-0.2286 -0.300567,0 -0.452967,0.2413 -0.148166,0.237067 -0.148166,0.639234 0,0.406399 0.148166,0.630766 0.1524,0.224367 0.4572,0.224367 z" id="path2808" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m 20.372967,20.003431 q 0.2921,0 0.499534,0.127 0.211666,0.127 0.321733,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.553633 q 0.0085,0.385233 0.194733,0.588433 0.1905,0.198967 0.529167,0.198967 0.2159,0 0.381,-0.0381 0.169333,-0.04233 0.347133,-0.118533 v 0.325966 q -0.173567,0.0762 -0.3429,0.110067 -0.169333,0.0381 -0.402167,0.0381 -0.321733,0 -0.5715,-0.131233 -0.245533,-0.131234 -0.385233,-0.389467 -0.135467,-0.262467 -0.135467,-0.639233 0,-0.372533 0.122767,-0.639233 0.127,-0.2667 0.351367,-0.410634 0.2286,-0.143933 0.529166,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173567 -0.1524,0.169333 -0.182034,0.474133 h 1.1557 q -0.0042,-0.287867 -0.135466,-0.465667 -0.131234,-0.182033 -0.414867,-0.182033 z" id="path2810" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+<path d="m 22.944519,20.003431 q 0.0635,0 0.135467,0.0085 0.0762,0.0042 0.131233,0.01693 l -0.04657,0.3429 q -0.05503,-0.0127 -0.122767,-0.02117 -0.0635,-0.0085 -0.122767,-0.0085 -0.173566,0 -0.325966,0.09737 -0.1524,0.09313 -0.245533,0.2667 -0.0889,0.169334 -0.0889,0.397934 v 1.210733 h -0.372534 v -2.269067 h 0.3048 l 0.04233,0.414867 h 0.01693 q 0.110067,-0.186267 0.283633,-0.321733 0.173567,-0.135467 0.410633,-0.135467 z" id="path2812" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+</g>
+<g aria-label="µCode Sequencer" id="text1118" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -18.207144,26.863298 h -2.269066 v -0.300567 l 0.3048,-0.05927 v -0.02117 q -0.169334,-0.105833 -0.258234,-0.275167 -0.0889,-0.169333 -0.0889,-0.4064 0,-0.1651 0.0508,-0.283633 0.05503,-0.118533 0.1397,-0.2032 v -0.01693 q -0.0762,0.0085 -0.2032,0.0127 -0.127,0.0085 -0.300566,0.0085 h -0.6604 v -0.372533 h 3.285066 v 0.372533 h -1.464733 q -0.537633,0 -0.537633,0.508 0,0.376767 0.211666,0.5207 0.211667,0.143934 0.6096,0.143934 h 1.1811 z" id="path15908" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -17.745711,28.929164 q 0,-0.486833 -0.325966,-0.766233 -0.325967,-0.2794 -0.893234,-0.2794 -0.563033,0 -0.893233,0.258234 -0.325966,0.262466 -0.325966,0.783166 0,0.198967 0.03387,0.376767 0.03387,0.1778 0.08467,0.347133 h -0.3302 q -0.0635,-0.169333 -0.09313,-0.351367 -0.02963,-0.1778 -0.02963,-0.427566 0,-0.461433 0.1905,-0.770467 0.1905,-0.309033 0.541867,-0.465666 0.351366,-0.1524 0.8255,-0.1524 0.4572,0 0.804333,0.1651 0.351367,0.169333 0.5461,0.4953 0.198967,0.325966 0.198967,0.791633 0,0.478366 -0.1778,0.833966 l -0.321734,-0.1524 q 0.0635,-0.1397 0.1143,-0.313266 0.0508,-0.169334 0.0508,-0.372534 z" id="path15910" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -19.337444,32.231164 q -0.563033,0 -0.872066,-0.287867 -0.309034,-0.283633 -0.309034,-0.770466 0,-0.300567 0.135467,-0.537634 0.1397,-0.232833 0.402166,-0.368299 0.2667,-0.135467 0.643467,-0.135467 0.563033,0 0.867833,0.283633 0.3048,0.283633 0.3048,0.770467 0,0.309033 -0.1397,0.541866 -0.135466,0.237067 -0.397933,0.3683 -0.258233,0.135467 -0.635,0.135467 z m 0,-1.7145 q -0.402167,0 -0.639233,0.156633 -0.232833,0.160867 -0.232833,0.508 0,0.3429 0.232833,0.503767 0.237066,0.160867 0.639233,0.160867 0.402167,0 0.630767,-0.160867 0.2286,-0.160867 0.2286,-0.508 0,-0.347133 -0.2286,-0.503767 -0.2286,-0.156633 -0.630767,-0.156633 z" id="path15912" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -20.518544,33.623931 q 0,-0.423333 0.2921,-0.677333 0.296333,-0.254 0.880533,-0.254 0.5842,0 0.880534,0.254 0.300566,0.258233 0.300566,0.681566 0,0.262467 -0.09737,0.427567 -0.09737,0.169333 -0.237067,0.275167 v 0.0254 q 0.05503,-0.0042 0.160867,-0.01693 0.110066,-0.0085 0.173566,-0.0085 h 0.905934 v 0.372533 h -3.217333 v -0.300567 l 0.3048,-0.05503 v -0.01693 q -0.143934,-0.1016 -0.245534,-0.270934 -0.1016,-0.169333 -0.1016,-0.436033 z m 0.309034,0.05927 q 0,0.359833 0.194733,0.503766 0.198966,0.148167 0.5969,0.148167 h 0.06773 q 0.423333,0 0.6477,-0.1397 0.2286,-0.1397 0.2286,-0.516467 0,-0.300566 -0.2413,-0.452966 -0.237067,-0.148167 -0.639233,-0.148167 -0.4064,0 -0.630767,0.148167 -0.224366,0.1524 -0.224366,0.4572 z" id="path15914" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -18.164811,36.299397 q 0,0.2921 -0.127,0.499533 -0.127,0.211667 -0.359833,0.321734 -0.2286,0.1143 -0.537633,0.1143 h -0.224367 V 35.68133 q -0.385233,0.0085 -0.588433,0.194734 -0.198967,0.1905 -0.198967,0.529166 0,0.2159 0.0381,0.381 0.04233,0.169334 0.118534,0.347134 h -0.325967 q -0.0762,-0.173567 -0.110067,-0.3429 -0.0381,-0.169334 -0.0381,-0.402167 0,-0.321733 0.131234,-0.5715 0.131233,-0.245533 0.389466,-0.385233 0.262467,-0.135467 0.639233,-0.135467 0.372534,0 0.639234,0.122767 0.2667,0.127 0.410633,0.351366 0.143933,0.2286 0.143933,0.529167 z m -0.3048,-0.0042 q 0,-0.2667 -0.173566,-0.423334 -0.169334,-0.1524 -0.474134,-0.182033 v 1.1557 q 0.287867,-0.0042 0.465667,-0.135467 0.182033,-0.131233 0.182033,-0.414866 z" id="path15916" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -24.997921,22.591865 q -0.402167,0 -0.626534,-0.2921 -0.224366,-0.2921 -0.224366,-0.7874 0,-0.254 0.0381,-0.4699 0.0381,-0.2159 0.105833,-0.359833 h 0.364067 q -0.06773,0.1524 -0.122767,0.376766 -0.05503,0.2286 -0.05503,0.4699 0,0.338667 0.131233,0.508 0.131233,0.173567 0.3556,0.173567 0.148167,0 0.249767,-0.0635 0.1016,-0.0635 0.186266,-0.220133 0.0889,-0.1524 0.186267,-0.427567 0.1397,-0.385233 0.3429,-0.5842 0.2032,-0.194733 0.554566,-0.194733 0.2413,0 0.410634,0.122766 0.173566,0.122767 0.2667,0.338667 0.09313,0.220133 0.09313,0.503767 0,0.249766 -0.04657,0.457199 -0.04657,0.207434 -0.122766,0.376767 l -0.325967,-0.118533 q 0.06773,-0.156634 0.1143,-0.3429 0.04657,-0.182033 0.04657,-0.381 0,-0.283633 -0.122767,-0.427567 -0.118533,-0.143933 -0.3175,-0.143933 -0.1524,0 -0.254,0.0635 -0.1016,0.0635 -0.182033,0.207433 -0.08043,0.143934 -0.173567,0.389467 -0.09737,0.2667 -0.211666,0.448733 -0.110067,0.186267 -0.2667,0.2794 -0.156634,0.09737 -0.3937,0.09737 z" id="path15918" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -23.495088,24.026965 q 0,0.2921 -0.127,0.499533 -0.127,0.211667 -0.359834,0.321733 -0.2286,0.1143 -0.537633,0.1143 h -0.224366 v -1.553633 q -0.385234,0.0085 -0.588434,0.194733 -0.198966,0.1905 -0.198966,0.529167 0,0.2159 0.0381,0.381 0.04233,0.169333 0.118533,0.347133 h -0.325967 q -0.0762,-0.173566 -0.110066,-0.3429 -0.0381,-0.169333 -0.0381,-0.402166 0,-0.321734 0.131233,-0.5715 0.131233,-0.245534 0.389467,-0.385234 0.262466,-0.135466 0.639233,-0.135466 0.372533,0 0.639233,0.122766 0.2667,0.127 0.410633,0.351367 0.143934,0.2286 0.143934,0.529167 z m -0.3048,-0.0042 q 0,-0.2667 -0.173567,-0.423333 -0.169333,-0.1524 -0.474133,-0.182033 v 1.1557 q 0.287866,-0.0042 0.465666,-0.135467 0.182034,-0.131233 0.182034,-0.414867 z" id="path15920" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -26.822488,27.049564 h 0.969433 q 0.0762,0 0.1778,0.0042 0.1016,0.0042 0.173567,0.01693 v -0.0254 q -0.143933,-0.09737 -0.245533,-0.270933 -0.1016,-0.169334 -0.1016,-0.440267 0,-0.410633 0.2921,-0.668867 0.296333,-0.254 0.880533,-0.254 0.5842,0 0.880533,0.258234 0.300567,0.262466 0.300567,0.677333 0,0.2667 -0.1016,0.436033 -0.1016,0.169334 -0.249767,0.270934 v 0.01693 l 0.309033,0.05503 v 0.296334 h -3.285066 z m 1.2827,-0.643466 q 0,0.351366 0.1905,0.4953 0.194733,0.148166 0.592667,0.1524 h 0.0762 q 0.4318,0 0.651933,-0.143934 0.224366,-0.143933 0.224366,-0.512233 0,-0.3048 -0.2413,-0.452967 -0.237066,-0.148166 -0.639233,-0.148166 -0.402166,0 -0.630766,0.148166 -0.224367,0.1524 -0.224367,0.461434 z" id="path15922" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -23.537422,30.038298 h -2.269066 v -0.3048 l 0.300567,-0.05503 v -0.01693 q -0.1778,-0.110066 -0.262467,-0.3048 -0.08043,-0.194733 -0.08043,-0.414866 0,-0.410634 0.194733,-0.618067 0.198967,-0.207433 0.630767,-0.207433 h 1.485899 v 0.376766 h -1.460499 q -0.541867,0 -0.541867,0.503767 0,0.376767 0.211667,0.5207 0.211666,0.148167 0.6096,0.148167 h 1.181099 z" id="path15924" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -23.495088,31.634264 q 0,0.2921 -0.127,0.499534 -0.127,0.211666 -0.359834,0.321733 -0.2286,0.1143 -0.537633,0.1143 h -0.224366 v -1.553633 q -0.385234,0.0085 -0.588434,0.194733 -0.198966,0.1905 -0.198966,0.529167 0,0.2159 0.0381,0.381 0.04233,0.169333 0.118533,0.347133 h -0.325967 q -0.0762,-0.173567 -0.110066,-0.3429 -0.0381,-0.169333 -0.0381,-0.402167 0,-0.321733 0.131233,-0.5715 0.131233,-0.245533 0.389467,-0.385233 0.262466,-0.135467 0.639233,-0.135467 0.372533,0 0.639233,0.122767 0.2667,0.127 0.410633,0.351367 0.143934,0.2286 0.143934,0.529166 z m -0.3048,-0.0042 q 0,-0.2667 -0.173567,-0.423333 -0.169333,-0.1524 -0.474133,-0.182034 v 1.1557 q 0.287866,-0.0042 0.465666,-0.135466 0.182034,-0.131234 0.182034,-0.414867 z" id="path15926" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -23.495088,34.237764 q 0,0.4064 -0.198967,0.613833 -0.194733,0.207434 -0.635,0.207434 h -1.477433 v -0.3683 h 1.452033 q 0.5461,0 0.5461,-0.508 0,-0.376767 -0.211667,-0.5207 -0.211666,-0.143933 -0.609599,-0.143933 h -1.176867 v -0.372534 h 2.269066 v 0.300567 l -0.309033,0.05503 v 0.02117 q 0.1778,0.110066 0.262467,0.3048 0.0889,0.194733 0.0889,0.410633 z" id="path15928" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -25.848821,36.671931 q 0,-0.300566 0.122766,-0.537633 0.122767,-0.232833 0.381,-0.3683 0.258234,-0.131233 0.6604,-0.131233 0.4191,0 0.681567,0.1397 0.262466,0.1397 0.385233,0.376766 0.122767,0.2413 0.122767,0.5461 0,0.173567 -0.0381,0.334434 -0.03387,0.160866 -0.08467,0.262466 l -0.309033,-0.1143 q 0.0381,-0.1016 0.07197,-0.237066 0.03387,-0.135467 0.03387,-0.254 0,-0.668867 -0.859366,-0.668867 -0.410634,0 -0.630767,0.160867 -0.2159,0.1651 -0.2159,0.486833 0,0.186267 0.0381,0.325967 0.0381,0.143933 0.09313,0.262466 h -0.3302 q -0.05927,-0.1143 -0.0889,-0.254 -0.03387,-0.135466 -0.03387,-0.3302 z" id="path15930" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -23.495088,38.670064 q 0,0.2921 -0.127,0.499533 -0.127,0.211667 -0.359834,0.321734 -0.2286,0.1143 -0.537633,0.1143 h -0.224366 v -1.553633 q -0.385234,0.0085 -0.588434,0.194733 -0.198966,0.1905 -0.198966,0.529167 0,0.215899 0.0381,0.380999 0.04233,0.169334 0.118533,0.347134 h -0.325967 q -0.0762,-0.173567 -0.110066,-0.3429 -0.0381,-0.169334 -0.0381,-0.402167 0,-0.321733 0.131233,-0.5715 0.131233,-0.245533 0.389467,-0.385233 0.262466,-0.135467 0.639233,-0.135467 0.372533,0 0.639233,0.122767 0.2667,0.127 0.410633,0.351367 0.143934,0.2286 0.143934,0.529166 z m -0.3048,-0.0042 q 0,-0.2667 -0.173567,-0.423333 -0.169333,-0.1524 -0.474133,-0.182034 v 1.1557 q 0.287866,-0.0042 0.465666,-0.135467 0.182034,-0.131233 0.182034,-0.414866 z" id="path15932" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -23.495088,41.239697 q 0,0.0635 -0.0085,0.135467 -0.0042,0.0762 -0.01693,0.131233 l -0.3429,-0.04657 q 0.0127,-0.05503 0.02117,-0.122767 0.0085,-0.0635 0.0085,-0.122767 0,-0.173566 -0.09737,-0.325966 -0.09313,-0.1524 -0.2667,-0.245534 -0.169333,-0.0889 -0.397933,-0.0889 h -1.210733 V 40.18136 h 2.269066 v 0.3048 l -0.414866,0.04233 v 0.01693 q 0.186266,0.110066 0.321733,0.283633 0.135467,0.173567 0.135467,0.410633 z" id="path15934" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m -39.687458,19.187502 h 11.90628 v 11.906114 h -11.90628 z" id="rect1122" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499996;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="MSROM" id="text1126" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -35.06804,23.952002 -0.994833,-2.650067 h -0.01693 q 0.0127,0.131233 0.02117,0.3556 0.0085,0.220133 0.0085,0.461433 v 1.833034 h -0.351367 v -3.0226 h 0.563034 l 0.931333,2.4765 h 0.01693 l 0.948267,-2.4765 h 0.5588 v 3.0226 h -0.376767 v -1.858434 q 0,-0.220133 0.0085,-0.436033 0.0127,-0.2159 0.02117,-0.351367 h -0.01693 l -1.007533,2.645834 z" id="path2816" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -30.850582,23.143435 q 0,0.402167 -0.2921,0.626533 -0.2921,0.224367 -0.7874,0.224367 -0.254,0 -0.4699,-0.0381 -0.2159,-0.0381 -0.359833,-0.105833 v -0.364067 q 0.1524,0.06773 0.376767,0.122767 0.2286,0.05503 0.4699,0.05503 0.338666,0 0.508,-0.131233 0.173566,-0.131234 0.173566,-0.3556 0,-0.148167 -0.0635,-0.249767 -0.0635,-0.1016 -0.220133,-0.186267 -0.1524,-0.0889 -0.427567,-0.186266 -0.385233,-0.1397 -0.5842,-0.3429 -0.194733,-0.2032 -0.194733,-0.554567 0,-0.2413 0.122767,-0.410633 0.122766,-0.173567 0.338666,-0.2667 0.220134,-0.09313 0.503767,-0.09313 0.249767,0 0.4572,0.04657 0.207433,0.04657 0.376767,0.122767 l -0.118534,0.325966 q -0.156633,-0.06773 -0.3429,-0.1143 -0.182033,-0.04657 -0.381,-0.04657 -0.283633,0 -0.427566,0.122766 -0.143934,0.118534 -0.143934,0.3175 0,0.1524 0.0635,0.254 0.0635,0.1016 0.207434,0.182034 0.143933,0.08043 0.389466,0.173566 0.2667,0.09737 0.448734,0.211667 0.186266,0.110067 0.2794,0.2667 0.09737,0.156633 0.09737,0.3937 z" id="path2818" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -37.374181,26.221068 q 0.563033,0 0.829733,0.2159 0.270934,0.211666 0.270934,0.643466 0,0.2413 -0.0889,0.402167 -0.0889,0.160867 -0.2286,0.258233 -0.135467,0.09313 -0.287867,0.148167 l 0.829733,1.354667 h -0.4445 l -0.732366,-1.248834 h -0.601134 v 1.248834 h -0.381 v -3.0226 z m -0.02117,0.3302 h -0.4318 v 1.121833 h 0.452967 q 0.3683,0 0.537633,-0.143933 0.169334,-0.148167 0.169334,-0.4318 0,-0.296334 -0.1778,-0.4191 -0.1778,-0.127 -0.550334,-0.127 z" id="path2820" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -32.941484,27.728134 q 0,0.4699 -0.160867,0.821267 -0.156633,0.347133 -0.465667,0.541867 -0.309033,0.194733 -0.766233,0.194733 -0.4699,0 -0.783167,-0.194733 -0.309033,-0.194734 -0.461433,-0.5461 -0.1524,-0.351367 -0.1524,-0.821267 0,-0.465667 0.1524,-0.8128 0.1524,-0.347133 0.461433,-0.541867 0.313267,-0.194733 0.7874,-0.194733 0.452967,0 0.762,0.194733 0.309034,0.1905 0.465667,0.541867 0.160867,0.347133 0.160867,0.817033 z m -2.3876,0 q 0,0.5715 0.2413,0.9017 0.2413,0.325967 0.753533,0.325967 0.516467,0 0.753533,-0.325967 0.237067,-0.3302 0.237067,-0.9017 0,-0.5715 -0.237067,-0.893233 -0.237066,-0.325967 -0.7493,-0.325967 -0.512233,0 -0.757766,0.325967 -0.2413,0.321733 -0.2413,0.893233 z" id="path2822" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -30.938059,29.243668 -0.994834,-2.650067 h -0.01693 q 0.0127,0.131233 0.02117,0.3556 0.0085,0.220133 0.0085,0.461433 v 1.833034 h -0.351366 v -3.0226 h 0.563033 l 0.931333,2.4765 h 0.01693 l 0.948267,-2.4765 h 0.5588 v 3.0226 h -0.376767 v -1.858434 q 0,-0.220133 0.0085,-0.436033 0.0127,-0.2159 0.02117,-0.351367 h -0.01693 l -1.007533,2.645834 z" id="path2824" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m -9.354843,-20.499995 h 3.96875 v 6.614584 h -3.96875 z" id="path1232" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m -2.967043,-20.499995 h 3.96875 v 6.614584 h -3.96875 z" id="path1234" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 3.420767,-20.499995 h 3.96875 v 6.614584 h -3.96875 z" id="path1236" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 9.808567,-20.499995 h 3.96875 v 6.614584 h -3.96875 z" id="path1238" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 16.196377,-20.499995 h 3.96875 v 6.614584 h -3.96875 z" id="path1240" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 22.584177,-20.499995 h 3.96875 v 6.614584 h -3.96875 z" id="path1242" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M -11.906285,-13.885416 H 29.104171 V 11.250011 H -11.906285 Z" id="rect1132" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="Simple" id="text1142" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 8.3078515,29.135832 q -0.4021667,0 -0.6265333,-0.2921 -0.2243667,-0.2921 -0.2243667,-0.7874 0,-0.254 0.0381,-0.4699 0.0381,-0.2159 0.1058334,-0.359833 h 0.3640666 q -0.067733,0.1524 -0.1227667,0.376767 -0.055033,0.2286 -0.055033,0.4699 0,0.338666 0.1312333,0.508 0.1312334,0.173566 0.3556,0.173566 0.1481667,0 0.2497667,-0.0635 0.1016,-0.0635 0.1862666,-0.220133 0.0889,-0.1524 0.1862667,-0.427567 0.1397,-0.385233 0.3429,-0.5842 0.2032,-0.194733 0.5545666,-0.194733 0.2412993,0 0.4106333,0.122767 0.173566,0.122766 0.2667,0.338666 0.09313,0.220134 0.09313,0.503767 0,0.249767 -0.04657,0.4572 -0.04657,0.207433 -0.122766,0.376767 l -0.325967,-0.118534 q 0.06773,-0.156633 0.1143,-0.3429 0.04657,-0.182033 0.04657,-0.381 0,-0.283633 -0.122767,-0.427566 -0.118533,-0.143934 -0.3174996,-0.143934 -0.1524,0 -0.254,0.0635 -0.1016,0.0635 -0.1820333,0.207434 -0.080433,0.143933 -0.1735667,0.389466 -0.097367,0.2667 -0.2116666,0.448734 -0.1100667,0.186266 -0.2667,0.2794 -0.1566334,0.09737 -0.3937,0.09737 z" id="path16003" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 10.619251,29.885132 q 0,0.08467 -0.05927,0.148167 -0.05503,0.06773 -0.1778,0.06773 -0.118534,0 -0.1778,-0.06773 -0.05927,-0.0635 -0.05927,-0.148167 0,-0.09313 0.05927,-0.156633 0.05927,-0.0635 0.1778,-0.0635 0.122766,0 0.1778,0.0635 0.05927,0.0635 0.05927,0.156633 z M 9.7683514,30.067165 H 7.4992849 v -0.372533 h 2.2690665 z" id="path16005" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 9.8106847,33.276032 q 0,0.385233 -0.1989666,0.575733 -0.1947333,0.1905 -0.635,0.1905 H 7.4992849 v -0.3683 h 1.4604999 q 0.5376333,0 0.5376333,-0.461433 0,-0.3302 -0.1905,-0.474133 -0.1905,-0.1397 -0.5545666,-0.1397 H 7.4992849 v -0.3683 h 1.4604999 q 0.5376333,0 0.5376333,-0.465667 0,-0.3429 -0.2116667,-0.474133 Q 9.0740848,31.159366 8.6761515,31.159366 H 7.4992849 v -0.372534 h 2.2690665 v 0.300567 l -0.3090333,0.05503 v 0.02117 q 0.1778,0.105833 0.2624666,0.283633 0.0889,0.182034 0.0889,0.385233 0,0.5334 -0.3809999,0.694267 v 0.02117 q 0.1947333,0.1143 0.2878666,0.309033 0.093133,0.198967 0.093133,0.4191 z" id="path16007" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 9.8106847,35.824498 q 0,0.4191 -0.2920999,0.6731 -0.2921,0.258234 -0.8805333,0.258234 -0.5799667,0 -0.8805333,-0.258234 -0.3005667,-0.254 -0.3005667,-0.677333 0,-0.262467 0.097367,-0.436033 0.1016,-0.169334 0.2328333,-0.2667 v -0.0254 q -0.071967,0.0085 -0.1820333,0.01693 -0.1100667,0.0085 -0.1905,0.0085 H 6.4832849 v -0.372534 h 3.2850665 v 0.3048 l -0.3090333,0.0508 v 0.01693 q 0.1481667,0.1016 0.2497666,0.2667 0.1016,0.1651 0.1016,0.440266 z m -0.3132666,-0.06773 q 0,-0.347133 -0.1947333,-0.491067 -0.1947334,-0.1397 -0.5926667,-0.148166 h -0.071967 q -0.4191,0 -0.6477,0.135466 -0.2243667,0.1397 -0.2243667,0.512234 0,0.207433 0.1143,0.338666 0.1143,0.135467 0.3090334,0.198967 0.1989666,0.06773 0.4529666,0.06773 0.3894666,0 0.6223,-0.1524 0.2328333,-0.148166 0.2328333,-0.461433 z" id="path16009" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 7.4992849,37.721032 v -0.372533 h 3.2173331 v 0.372533 z" id="path16011" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 9.8106847,39.316998 q 0,0.2921 -0.127,0.499533 -0.1269999,0.211667 -0.3598333,0.321734 -0.2286,0.1143 -0.5376333,0.1143 H 8.5618515 v -1.553634 q -0.3852333,0.0085 -0.5884333,0.194734 -0.1989667,0.1905 -0.1989667,0.529166 0,0.2159 0.0381,0.381 0.042333,0.169334 0.1185333,0.347134 H 7.6051182 q -0.0762,-0.173567 -0.1100667,-0.3429 -0.0381,-0.169334 -0.0381,-0.402167 0,-0.321733 0.1312334,-0.5715 0.1312333,-0.245533 0.3894666,-0.385233 0.2624667,-0.135467 0.6392333,-0.135467 0.3725333,0 0.6392333,0.122767 0.2667,0.127 0.4106333,0.351366 0.1439333,0.2286 0.1439333,0.529167 z m -0.3047999,-0.0042 q 0,-0.2667 -0.1735667,-0.423334 -0.1693333,-0.1524 -0.4741333,-0.182033 v 1.1557 q 0.2878666,-0.0042 0.4656666,-0.135467 0.1820334,-0.131233 0.1820334,-0.414866 z" id="path16013" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Simple" id="text1146" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 16.245351,29.135832 q -0.402167,0 -0.626534,-0.2921 -0.224366,-0.2921 -0.224366,-0.7874 0,-0.254 0.0381,-0.4699 0.0381,-0.2159 0.105833,-0.359833 h 0.364067 q -0.06773,0.1524 -0.122767,0.376767 -0.05503,0.2286 -0.05503,0.4699 0,0.338666 0.131233,0.508 0.131233,0.173566 0.3556,0.173566 0.148167,0 0.249767,-0.0635 0.1016,-0.0635 0.186266,-0.220133 0.0889,-0.1524 0.186267,-0.427567 0.1397,-0.385233 0.3429,-0.5842 0.2032,-0.194733 0.554566,-0.194733 0.2413,0 0.410634,0.122767 0.173566,0.122766 0.2667,0.338666 0.09313,0.220134 0.09313,0.503767 0,0.249767 -0.04657,0.4572 -0.04657,0.207433 -0.122766,0.376767 l -0.325967,-0.118534 q 0.06773,-0.156633 0.1143,-0.3429 0.04657,-0.182033 0.04657,-0.381 0,-0.283633 -0.122767,-0.427566 -0.118533,-0.143934 -0.3175,-0.143934 -0.1524,0 -0.254,0.0635 -0.1016,0.0635 -0.182033,0.207434 -0.08043,0.143933 -0.173567,0.389466 -0.09737,0.2667 -0.211667,0.448734 -0.110066,0.186266 -0.266699,0.2794 -0.156634,0.09737 -0.3937,0.09737 z" id="path16016" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 18.55675,29.885132 q 0,0.08467 -0.05927,0.148167 -0.05503,0.06773 -0.1778,0.06773 -0.118534,0 -0.1778,-0.06773 -0.05927,-0.0635 -0.05927,-0.148167 0,-0.09313 0.05927,-0.156633 0.05927,-0.0635 0.1778,-0.0635 0.122766,0 0.1778,0.0635 0.05927,0.0635 0.05927,0.156633 z m -0.8509,0.182033 h -2.269066 v -0.372533 h 2.269066 z" id="path16018" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 17.748184,33.276032 q 0,0.385233 -0.198967,0.575733 -0.194733,0.1905 -0.635,0.1905 h -1.477433 v -0.3683 h 1.4605 q 0.537633,0 0.537633,-0.461433 0,-0.3302 -0.1905,-0.474133 -0.1905,-0.1397 -0.554566,-0.1397 h -1.253067 v -0.3683 h 1.4605 q 0.537633,0 0.537633,-0.465667 0,-0.3429 -0.211667,-0.474133 -0.211666,-0.131233 -0.609599,-0.131233 h -1.176867 v -0.372534 h 2.269066 v 0.300567 l -0.309033,0.05503 v 0.02117 q 0.1778,0.105833 0.262467,0.283633 0.0889,0.182034 0.0889,0.385233 0,0.5334 -0.381,0.694267 v 0.02117 q 0.194733,0.1143 0.287866,0.309033 0.09313,0.198967 0.09313,0.4191 z" id="path16020" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 17.748184,35.824498 q 0,0.4191 -0.2921,0.6731 -0.2921,0.258234 -0.880533,0.258234 -0.579967,0 -0.880534,-0.258234 -0.300566,-0.254 -0.300566,-0.677333 0,-0.262467 0.09737,-0.436033 0.1016,-0.169334 0.232834,-0.2667 v -0.0254 q -0.07197,0.0085 -0.182034,0.01693 -0.110066,0.0085 -0.1905,0.0085 h -0.931333 v -0.372534 h 3.285066 v 0.3048 l -0.309033,0.0508 v 0.01693 q 0.148167,0.1016 0.249767,0.2667 0.1016,0.1651 0.1016,0.440266 z m -0.313267,-0.06773 q 0,-0.347133 -0.194733,-0.491067 -0.194734,-0.1397 -0.592667,-0.148166 h -0.07197 q -0.4191,0 -0.6477,0.135466 -0.224367,0.1397 -0.224367,0.512234 0,0.207433 0.1143,0.338666 0.1143,0.135467 0.309033,0.198967 0.198967,0.06773 0.452967,0.06773 0.389466,0 0.6223,-0.1524 0.232833,-0.148166 0.232833,-0.461433 z" id="path16022" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 15.436784,37.721032 v -0.372533 h 3.217333 v 0.372533 z" id="path16024" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 17.748184,39.316998 q 0,0.2921 -0.127,0.499533 -0.127,0.211667 -0.359834,0.321734 -0.2286,0.1143 -0.537633,0.1143 h -0.224366 v -1.553634 q -0.385234,0.0085 -0.588434,0.194734 -0.198966,0.1905 -0.198966,0.529166 0,0.2159 0.0381,0.381 0.04233,0.169334 0.118533,0.347134 h -0.325967 q -0.0762,-0.173567 -0.110066,-0.3429 -0.0381,-0.169334 -0.0381,-0.402167 0,-0.321733 0.131233,-0.5715 0.131233,-0.245533 0.389467,-0.385233 0.262466,-0.135467 0.639233,-0.135467 0.372533,0 0.639233,0.122767 0.2667,0.127 0.410633,0.351366 0.143934,0.2286 0.143934,0.529167 z m -0.3048,-0.0042 q 0,-0.2667 -0.173567,-0.423334 -0.169333,-0.1524 -0.474133,-0.182033 v 1.1557 q 0.287866,-0.0042 0.465666,-0.135467 0.182034,-0.131233 0.182034,-0.414866 z" id="path16026" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Simple" id="text1150" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 24.18282,29.135832 q -0.402167,0 -0.626533,-0.2921 -0.224367,-0.2921 -0.224367,-0.7874 0,-0.254 0.0381,-0.4699 0.0381,-0.2159 0.105833,-0.359833 h 0.364067 q -0.06773,0.1524 -0.122767,0.376767 -0.05503,0.2286 -0.05503,0.4699 0,0.338666 0.131233,0.508 0.131234,0.173566 0.3556,0.173566 0.148167,0 0.249767,-0.0635 0.1016,-0.0635 0.186267,-0.220133 0.0889,-0.1524 0.186266,-0.427567 0.1397,-0.385233 0.3429,-0.5842 0.2032,-0.194733 0.554567,-0.194733 0.2413,0 0.410633,0.122767 0.173567,0.122766 0.2667,0.338666 0.09313,0.220134 0.09313,0.503767 0,0.249767 -0.04657,0.4572 -0.04657,0.207433 -0.122767,0.376767 l -0.325966,-0.118534 q 0.06773,-0.156633 0.1143,-0.3429 0.04657,-0.182033 0.04657,-0.381 0,-0.283633 -0.122766,-0.427566 -0.118534,-0.143934 -0.3175,-0.143934 -0.1524,0 -0.254,0.0635 -0.1016,0.0635 -0.182034,0.207434 -0.08043,0.143933 -0.173566,0.389466 -0.09737,0.2667 -0.211667,0.448734 -0.110067,0.186266 -0.2667,0.2794 -0.156633,0.09737 -0.3937,0.09737 z" id="path16029" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 26.49422,29.885132 q 0,0.08467 -0.05927,0.148167 -0.05503,0.06773 -0.1778,0.06773 -0.118533,0 -0.1778,-0.06773 -0.05927,-0.0635 -0.05927,-0.148167 0,-0.09313 0.05927,-0.156633 0.05927,-0.0635 0.1778,-0.0635 0.122767,0 0.1778,0.0635 0.05927,0.0635 0.05927,0.156633 z m -0.8509,0.182033 h -2.269067 v -0.372533 h 2.269067 z" id="path16031" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 25.685653,33.276032 q 0,0.385233 -0.198966,0.575733 -0.194734,0.1905 -0.635,0.1905 h -1.477434 v -0.3683 h 1.4605 q 0.537634,0 0.537634,-0.461433 0,-0.3302 -0.1905,-0.474133 -0.1905,-0.1397 -0.554567,-0.1397 h -1.253067 v -0.3683 h 1.4605 q 0.537634,0 0.537634,-0.465667 0,-0.3429 -0.211667,-0.474133 -0.211667,-0.131233 -0.6096,-0.131233 h -1.176867 v -0.372534 h 2.269067 v 0.300567 l -0.309033,0.05503 v 0.02117 q 0.1778,0.105833 0.262466,0.283633 0.0889,0.182034 0.0889,0.385233 0,0.5334 -0.381,0.694267 v 0.02117 q 0.194734,0.1143 0.287867,0.309033 0.09313,0.198967 0.09313,0.4191 z" id="path16033" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 25.685653,35.824498 q 0,0.4191 -0.2921,0.6731 -0.2921,0.258234 -0.880533,0.258234 -0.579967,0 -0.880533,-0.258234 -0.300567,-0.254 -0.300567,-0.677333 0,-0.262467 0.09737,-0.436033 0.1016,-0.169334 0.232833,-0.2667 v -0.0254 q -0.07197,0.0085 -0.182033,0.01693 -0.110067,0.0085 -0.1905,0.0085 h -0.931334 v -0.372534 h 3.285067 v 0.3048 l -0.309033,0.0508 v 0.01693 q 0.148166,0.1016 0.249766,0.2667 0.1016,0.1651 0.1016,0.440266 z m -0.313266,-0.06773 q 0,-0.347133 -0.194734,-0.491067 -0.194733,-0.1397 -0.592666,-0.148166 h -0.07197 q -0.4191,0 -0.6477,0.135466 -0.224367,0.1397 -0.224367,0.512234 0,0.207433 0.1143,0.338666 0.1143,0.135467 0.309034,0.198967 0.198966,0.06773 0.452966,0.06773 0.389467,0 0.6223,-0.1524 0.232834,-0.148166 0.232834,-0.461433 z" id="path16035" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 23.374253,37.721032 v -0.372533 h 3.217334 v 0.372533 z" id="path16037" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 25.685653,39.316998 q 0,0.2921 -0.127,0.499533 -0.127,0.211667 -0.359833,0.321734 -0.2286,0.1143 -0.537633,0.1143 H 24.43682 v -1.553634 q -0.385233,0.0085 -0.588433,0.194734 -0.198967,0.1905 -0.198967,0.529166 0,0.2159 0.0381,0.381 0.04233,0.169334 0.118533,0.347134 h -0.325966 q -0.0762,-0.173567 -0.110067,-0.3429 -0.0381,-0.169334 -0.0381,-0.402167 0,-0.321733 0.131233,-0.5715 0.131234,-0.245533 0.389467,-0.385233 0.262467,-0.135467 0.639233,-0.135467 0.372534,0 0.639234,0.122767 0.2667,0.127 0.410633,0.351366 0.143933,0.2286 0.143933,0.529167 z m -0.3048,-0.0042 q 0,-0.2667 -0.173566,-0.423334 -0.169334,-0.1524 -0.474134,-0.182033 v 1.1557 q 0.287867,-0.0042 0.465667,-0.135467 0.182033,-0.131233 0.182033,-0.414866 z" id="path16039" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="5 MOPs" id="text1164" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 2.096398,14.160367 q 0.4656666,0 0.7408333,0.232833 0.2751666,0.232833 0.2751666,0.656166 0,0.4699 -0.3005666,0.740834 -0.2963334,0.2667 -0.8297333,0.2667 -0.2328334,0 -0.4402667,-0.04233 -0.2032,-0.04233 -0.3429,-0.122766 v -0.351367 q 0.1524,0.09313 0.3683,0.148167 0.2201333,0.0508 0.4191,0.0508 0.3344333,0 0.5376333,-0.156634 0.2074333,-0.160866 0.2074333,-0.4953 0,-0.296333 -0.1820333,-0.452966 -0.1820333,-0.160867 -0.5757333,-0.160867 -0.1185333,0 -0.2709333,0.02117 -0.1524,0.02117 -0.2455333,0.04233 L 1.270898,14.4186 l 0.1143,-1.426633 h 1.5155332 v 0.338666 H 1.702698 l -0.071967,0.8763 q 0.071967,-0.0127 0.1947333,-0.02963 0.1227667,-0.01693 0.2709334,-0.01693 z" id="path2828" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 6.19863,16.014566 5.2037967,13.3645 h -0.016933 q 0.0127,0.131233 0.021167,0.3556 0.00847,0.220133 0.00847,0.461433 v 1.833033 H 4.8651301 v -3.022599 h 0.5630333 l 0.9313333,2.476499 H 6.37643 l 0.9482666,-2.476499 h 0.5588 v 3.022599 H 7.50673 v -1.858433 q 0,-0.220133 0.00847,-0.436033 0.0127,-0.2159 0.021167,-0.351367 H 7.51943 l -1.0075333,2.645833 z" id="path2830" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 11.338955,14.499033 q 0,0.4699 -0.160867,0.821267 -0.156633,0.347133 -0.465666,0.541866 -0.309034,0.194734 -0.7662338,0.194734 -0.4698999,0 -0.7831666,-0.194734 -0.3090333,-0.194733 -0.4614333,-0.5461 -0.1524,-0.351366 -0.1524,-0.821266 0,-0.465667 0.1524,-0.8128 0.1524,-0.347133 0.4614333,-0.541867 0.3132667,-0.194733 0.7874,-0.194733 0.4529664,0 0.7620004,0.194733 0.309033,0.1905 0.465666,0.541867 0.160867,0.347133 0.160867,0.817033 z m -2.3876,0 q 0,0.5715 0.2412999,0.9017 0.2413,0.325967 0.7535333,0.325967 0.5164668,0 0.7535338,-0.325967 0.237066,-0.3302 0.237066,-0.9017 0,-0.5715 -0.237066,-0.893233 -0.237067,-0.325967 -0.7493004,-0.325967 -0.5122333,0 -0.7577667,0.325967 -0.2412999,0.321733 -0.2412999,0.893233 z" id="path2832" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 12.80898,12.991967 q 0.592667,0 0.8636,0.232833 0.270934,0.232833 0.270934,0.656167 0,0.249766 -0.1143,0.4699 -0.110067,0.215899 -0.376767,0.351366 Q 13.18998,14.8377 12.737014,14.8377 H 12.38988 v 1.176866 h -0.381 v -3.022599 z m -0.03387,0.325966 H 12.38988 v 1.1938 h 0.3048 q 0.4318,0 0.643467,-0.1397 0.211667,-0.1397 0.211667,-0.474133 0,-0.2921 -0.186267,-0.436033 -0.186267,-0.143934 -0.588433,-0.143934 z" id="path2834" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 15.998664,15.388033 q 0,0.3302 -0.245533,0.499533 -0.245534,0.169334 -0.6604,0.169334 -0.237067,0 -0.410634,-0.0381 -0.169333,-0.0381 -0.300566,-0.105834 V 15.5743 q 0.135466,0.06773 0.325966,0.127 0.194734,0.05503 0.3937,0.05503 0.283634,0 0.410634,-0.0889 0.127,-0.09313 0.127,-0.245533 0,-0.08467 -0.04657,-0.1524 -0.04657,-0.06773 -0.169333,-0.135467 -0.118534,-0.06773 -0.3429,-0.1524 -0.220134,-0.08467 -0.376767,-0.169333 -0.156633,-0.08467 -0.2413,-0.2032 -0.08467,-0.118533 -0.08467,-0.3048 0,-0.287867 0.232834,-0.4445 0.237066,-0.156633 0.618066,-0.156633 0.207434,0 0.385234,0.04233 0.182033,0.0381 0.338666,0.110067 l -0.127,0.296333 q -0.143933,-0.05927 -0.300566,-0.1016 -0.156634,-0.04233 -0.321734,-0.04233 -0.2286,0 -0.351366,0.0762 -0.118534,0.07197 -0.118534,0.198966 0,0.09313 0.05503,0.160867 0.05503,0.0635 0.182033,0.127 0.131233,0.05927 0.347133,0.143933 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.232834,0.207433 0.08043,0.118534 0.08043,0.300567 z" id="path2836" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="M 11.906245,-1.9791626 H 26.458327 V 9.9269511 H 11.906245 Z" id="rect1168" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499996;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="MacroFusion" id="text1136" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 14.660136,2.7991164 13.665303,0.14904985 h -0.01693 q 0.0127,0.13123332 0.02117,0.35559998 0.0085,0.22013332 0.0085,0.46143331 V 2.7991164 h -0.351367 v -3.02259987 h 0.563034 l 0.931333,2.47649987 h 0.01693 l 0.948267,-2.47649987 h 0.5588 V 2.7991164 H 15.968236 V 0.94068314 q 0,-0.22013332 0.0085,-0.43603331 0.0127,-0.21589999 0.02117,-0.35136665 h -0.01693 L 14.973403,2.7991164 Z" id="path2840" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 17.971661,0.49194983 q 0.414867,0 0.613834,0.18203332 0.198966,0.18203333 0.198966,0.57996665 v 1.5451666 h -0.270933 l -0.07197,-0.3217333 h -0.01693 q -0.148167,0.1862666 -0.313267,0.2751666 -0.160866,0.0889 -0.448733,0.0889 -0.309033,0 -0.512233,-0.1608667 -0.2032,-0.1650999 -0.2032,-0.5122333 0,-0.3386666 0.2667,-0.5206999 0.2667,-0.1862667 0.821266,-0.2032 l 0.385234,-0.0127 V 1.2962831 q 0,-0.2836333 -0.122767,-0.39369996 -0.122767,-0.11006666 -0.347133,-0.11006666 -0.1778,0 -0.338667,0.0550333 -0.160867,0.0508 -0.300567,0.11853333 l -0.1143,-0.27939999 q 0.148167,-0.0804333 0.351367,-0.13546666 0.2032,-0.0592667 0.423333,-0.0592667 z m 0.4445,1.19803327 -0.334433,0.0127 q -0.423333,0.016933 -0.588433,0.1354667 -0.160867,0.1185333 -0.160867,0.3344333 0,0.1905 0.1143,0.2794 0.118533,0.0889 0.300567,0.0889 0.287866,0 0.478366,-0.1566334 0.1905,-0.1608666 0.1905,-0.4910666 z" id="path2842" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 20.395443,2.8414497 q -0.300567,0 -0.537634,-0.1227667 -0.232833,-0.1227666 -0.368299,-0.3809999 -0.131234,-0.2582334 -0.131234,-0.6604 0,-0.4191 0.1397,-0.68156663 0.1397,-0.26246666 0.376767,-0.38523332 0.2413,-0.12276666 0.5461,-0.12276666 0.173566,0 0.334433,0.0381 0.160867,0.0338667 0.262467,0.0846667 l -0.1143,0.30903332 q -0.1016,-0.0381 -0.237067,-0.0719667 -0.135467,-0.0338667 -0.254,-0.0338667 -0.668867,0 -0.668867,0.85936666 0,0.4106333 0.160867,0.6307666 0.1651,0.2159 0.486833,0.2159 0.186267,0 0.325967,-0.0381 0.143933,-0.0381 0.262467,-0.093133 V 2.718683 q -0.1143,0.059267 -0.254,0.0889 -0.135467,0.033867 -0.3302,0.033867 z" id="path2844" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 22.577593,0.48771649 q 0.0635,0 0.135467,0.008467 0.0762,0.004233 0.131233,0.0169333 l -0.04657,0.34289999 q -0.05503,-0.0127 -0.122766,-0.0211667 -0.0635,-0.008467 -0.122767,-0.008467 -0.173566,0 -0.325966,0.0973667 -0.1524,0.0931333 -0.245534,0.2667 -0.0889,0.1693333 -0.0889,0.3979333 V 2.7991164 H 21.51926 V 0.53004983 h 0.3048 l 0.04233,0.41486664 h 0.01693 Q 21.993393,0.75864981 22.16696,0.62318315 22.340527,0.48771649 22.577593,0.48771649 Z" id="path2846" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 25.153908,1.6603498 q 0,0.5630333 -0.287867,0.8720666 -0.283633,0.3090333 -0.770466,0.3090333 -0.300567,0 -0.537634,-0.1354667 -0.232833,-0.1396999 -0.3683,-0.4021666 -0.135466,-0.2667 -0.135466,-0.6434666 0,-0.5630333 0.283633,-0.86783332 0.283633,-0.30479999 0.770467,-0.30479999 0.309033,0 0.541866,0.1397 0.237067,0.13546666 0.3683,0.39793331 0.135467,0.2582333 0.135467,0.635 z m -1.7145,0 q 0,0.4021666 0.156633,0.6392333 0.160867,0.2328333 0.508,0.2328333 0.3429,0 0.503767,-0.2328333 0.160867,-0.2370667 0.160867,-0.6392333 0,-0.4021667 -0.160867,-0.6307667 -0.160867,-0.22859996 -0.508,-0.22859996 -0.347133,0 -0.503767,0.22859996 -0.156633,0.2286 -0.156633,0.6307667 z" id="path2848" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 13.38931,8.1293938 h -0.381 V 5.106794 h 1.6891 v 0.3344333 h -1.3081 v 1.0710333 h 1.227666 V 6.8466939 H 13.38931 Z" id="path2850" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 17.053392,5.8603273 v 2.2690665 h -0.3048 l -0.05503,-0.3005666 h -0.01693 q -0.110067,0.1778 -0.3048,0.2624666 -0.194733,0.080433 -0.414866,0.080433 -0.410634,0 -0.618067,-0.1947333 Q 15.131459,7.7780272 15.131459,7.3462272 V 5.8603273 h 0.376766 v 1.4604999 q 0,0.5418666 0.503767,0.5418666 0.376766,0 0.5207,-0.2116666 0.148166,-0.2116667 0.148166,-0.6096 V 5.8603273 Z" id="path2852" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 19.247052,7.5028605 q 0,0.3302 -0.245533,0.4995333 -0.245534,0.1693333 -0.6604,0.1693333 -0.237067,0 -0.410634,-0.0381 -0.169333,-0.0381 -0.300566,-0.1058333 V 7.6891272 q 0.135466,0.067733 0.325966,0.127 0.194734,0.055033 0.3937,0.055033 0.283634,0 0.410634,-0.0889 0.127,-0.093133 0.127,-0.2455333 0,-0.084667 -0.04657,-0.1524 -0.04657,-0.067733 -0.169333,-0.1354667 -0.118534,-0.067733 -0.3429,-0.1524 -0.220134,-0.084667 -0.376767,-0.1693333 -0.156633,-0.084667 -0.2413,-0.2032 -0.08467,-0.1185333 -0.08467,-0.3048 0,-0.2878666 0.232834,-0.4444999 0.237066,-0.1566334 0.618066,-0.1566334 0.207434,0 0.385234,0.042333 0.182033,0.0381 0.338666,0.1100666 l -0.127,0.2963333 q -0.143933,-0.059267 -0.300566,-0.1015999 -0.156634,-0.042333 -0.321734,-0.042333 -0.2286,0 -0.351366,0.0762 -0.118534,0.071967 -0.118534,0.1989667 0,0.093133 0.05503,0.1608666 0.05503,0.0635 0.182033,0.127 0.131233,0.059267 0.347133,0.1439334 0.2159,0.080433 0.3683,0.1650999 0.1524,0.084667 0.232834,0.2074334 0.08043,0.1185333 0.08043,0.3005666 z" id="path2854" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 19.985835,5.0094273 q 0.08467,0 0.148167,0.059267 0.06773,0.055033 0.06773,0.1778 0,0.1185333 -0.06773,0.1778 -0.0635,0.059267 -0.148167,0.059267 -0.09313,0 -0.156633,-0.059267 -0.0635,-0.059267 -0.0635,-0.1778 0,-0.1227667 0.0635,-0.1778 0.0635,-0.059267 0.156633,-0.059267 z m 0.182033,0.8509 V 8.1293938 H 19.795335 V 5.8603273 Z" id="path2856" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 22.859474,6.9906272 q 0,0.5630333 -0.287866,0.8720666 -0.283633,0.3090333 -0.770467,0.3090333 -0.300566,0 -0.537633,-0.1354666 -0.232833,-0.1397 -0.3683,-0.4021667 -0.135467,-0.2666999 -0.135467,-0.6434666 0,-0.5630333 0.283634,-0.8678333 0.283633,-0.3048 0.770466,-0.3048 0.309034,0 0.541867,0.1397 0.237067,0.1354667 0.3683,0.3979333 0.135466,0.2582334 0.135466,0.635 z m -1.714499,0 q 0,0.4021667 0.156633,0.6392333 0.160867,0.2328333 0.508,0.2328333 0.3429,0 0.503767,-0.2328333 0.160866,-0.2370666 0.160866,-0.6392333 0,-0.4021666 -0.160866,-0.6307666 -0.160867,-0.2286 -0.508,-0.2286 -0.347134,0 -0.503767,0.2286 -0.156633,0.2286 -0.156633,0.6307666 z" id="path2858" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 24.542092,5.8179939 q 0.4064,0 0.613833,0.1989667 0.207433,0.1947333 0.207433,0.635 v 1.4774332 h -0.3683 V 6.6773606 q 0,-0.5461 -0.508,-0.5461 -0.376766,0 -0.5207,0.2116666 -0.143933,0.2116667 -0.143933,0.6096 V 8.1293938 H 23.449892 V 5.8603273 h 0.300566 l 0.05503,0.3090333 h 0.02117 q 0.110067,-0.1778 0.3048,-0.2624667 0.194734,-0.0889 0.410634,-0.0889 z" id="path2860" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Instruction Queue(2x25 entries)" id="text1172" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -8.2190471,-9.255209 h -1.0922 v -0.2201333 l 0.3556,-0.080433 v -2.4172334 l -0.3556,-0.08467 v -0.220134 h 1.0922 v 0.220134 l -0.3556,0.08467 v 2.4172334 l 0.3556,0.080433 z" id="path2863" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -6.5898753,-11.566609 q 0.4064,0 0.6138333,0.198967 0.2074333,0.194733 0.2074333,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.5079999,-0.5461 -0.3767667,0 -0.5207,0.211666 -0.1439333,0.211667 -0.1439333,0.6096 v 1.176867 h -0.3725334 v -2.269067 h 0.3005667 l 0.055033,0.309034 h 0.021167 q 0.1100667,-0.1778 0.3048,-0.262467 0.1947333,-0.0889 0.4106333,-0.0889 z" id="path2865" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -3.5918817,-9.8817423 q 0,0.3302 -0.2455333,0.4995333 -0.2455333,0.1693334 -0.6604,0.1693334 -0.2370666,0 -0.4106333,-0.0381 -0.1693333,-0.0381 -0.3005666,-0.1058334 v -0.3386666 q 0.1354666,0.067733 0.3259666,0.127 0.1947333,0.055033 0.3937,0.055033 0.2836333,0 0.4106333,-0.0889 0.127,-0.093133 0.127,-0.2455333 0,-0.084667 -0.046567,-0.1524004 -0.046567,-0.06773 -0.1693333,-0.135466 -0.1185333,-0.06773 -0.3429,-0.1524 -0.2201333,-0.08467 -0.3767666,-0.169334 -0.1566333,-0.08467 -0.2413,-0.2032 -0.084667,-0.118533 -0.084667,-0.3048 0,-0.287866 0.2328333,-0.4445 0.2370667,-0.156633 0.6180667,-0.156633 0.2074333,0 0.3852333,0.04233 0.1820333,0.0381 0.3386666,0.110067 l -0.127,0.296333 q -0.1439333,-0.05927 -0.3005666,-0.1016 -0.1566333,-0.04233 -0.3217333,-0.04233 -0.2286,0 -0.3513667,0.0762 -0.1185333,0.07197 -0.1185333,0.198967 0,0.09313 0.055033,0.160866 0.055033,0.0635 0.1820334,0.127 0.1312333,0.05927 0.3471333,0.143934 0.2159,0.08043 0.3683,0.1651 0.1523999,0.08467 0.2328333,0.207433 0.080433,0.118533 0.080433,0.3005667 z" id="path2867" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -2.285832,-9.5176756 q 0.084667,0 0.1735666,-0.0127 0.0889,-0.016933 0.1439334,-0.033867 v 0.2836333 q -0.059267,0.029633 -0.1693334,0.046567 -0.1100666,0.021167 -0.2116666,0.021167 -0.1778,0 -0.3302,-0.059267 -0.1481667,-0.0635 -0.2413,-0.2159 -0.093133,-0.1524 -0.093133,-0.4275666 v -1.3208001 h -0.3217333 v -0.1778 l 0.3259666,-0.148167 0.1481667,-0.482599 h 0.2201333 v 0.520699 h 0.6561666 v 0.287867 H -2.641432 v 1.3123334 q 0,0.2074333 0.097367,0.3090333 0.1016,0.097367 0.2582333,0.097367 z" id="path2869" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -0.45564329,-11.566609 q 0.0635,0 0.13546666,0.0085 0.0762,0.0042 0.13123333,0.01693 l -0.0465667,0.3429 q -0.0550333,-0.0127 -0.12276666,-0.02117 -0.0635,-0.0085 -0.12276666,-0.0085 -0.17356665,0 -0.32596665,0.09737 -0.15239999,0.09313 -0.24553336,0.2667 -0.0889,0.169334 -0.0889,0.397934 v 1.210733 h -0.3725333 v -2.269067 h 0.3048 l 0.042333,0.414867 h 0.016933 q 0.1100666,-0.186267 0.2836333,-0.321733 0.17356666,-0.135467 0.41063331,-0.135467 z" id="path2871" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 2.1271531,-11.524276 v 2.269067 H 1.8223532 l -0.055033,-0.3005666 h -0.016933 q -0.1100667,0.1778 -0.3048,0.2624666 -0.1947333,0.080433 -0.4148666,0.080433 -0.41063334,0 -0.61806666,-0.1947334 -0.20743332,-0.1989666 -0.20743332,-0.630767 v -1.4859 h 0.37676664 v 1.4605 q 0,0.541867 0.50376664,0.541867 0.3767667,0 0.5207,-0.2116666 0.1481666,-0.2116667 0.1481666,-0.6096004 v -1.1811 z" id="path2873" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 3.7535461,-9.2128756 q -0.3005666,0 -0.5376333,-0.1227667 -0.2328333,-0.1227667 -0.3683,-0.381 -0.1312333,-0.2582333 -0.1312333,-0.6603997 0,-0.4191 0.1397,-0.681567 0.1397,-0.262467 0.3767667,-0.385233 0.2412999,-0.122767 0.5460999,-0.122767 0.1735667,0 0.3344333,0.0381 0.1608667,0.03387 0.2624667,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.2370667,-0.07197 -0.1354666,-0.03387 -0.2539999,-0.03387 -0.6688667,0 -0.6688667,0.859366 0,0.4106337 0.1608667,0.6307671 0.1651,0.2158999 0.4868333,0.2158999 0.1862666,0 0.3259666,-0.0381 0.1439334,-0.0381 0.2624667,-0.093133 v 0.3302 q -0.1143,0.059267 -0.254,0.0889 -0.1354667,0.033867 -0.3302,0.033867 z" id="path2875" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 5.6351313,-9.5176756 q 0.084667,0 0.1735666,-0.0127 0.0889,-0.016933 0.1439334,-0.033867 v 0.2836333 q -0.059267,0.029633 -0.1693334,0.046567 -0.1100666,0.021167 -0.2116666,0.021167 -0.1778,0 -0.3302,-0.059267 -0.1481667,-0.0635 -0.2413,-0.2159 -0.093133,-0.1524 -0.093133,-0.4275666 V -11.236409 H 4.5852647 v -0.1778 l 0.3259666,-0.148167 0.1481667,-0.482599 h 0.2201333 v 0.520699 h 0.6561666 v 0.287867 H 5.2795313 v 1.3123334 q 0,0.2074333 0.097367,0.3090333 0.1015999,0.097367 0.2582333,0.097367 z" id="path2877" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 6.5974867,-12.375175 q 0.084667,0 0.1481667,0.05927 0.067733,0.05503 0.067733,0.1778 0,0.118534 -0.067733,0.1778 -0.0635,0.05927 -0.1481667,0.05927 -0.093133,0 -0.1566333,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.1566333,-0.05927 z m 0.1820333,0.850899 v 2.269067 H 6.4069867 v -2.269067 z" id="path2879" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 9.4711268,-10.393976 q 0,0.5630337 -0.2878667,0.872067 -0.2836333,0.3090334 -0.7704666,0.3090334 -0.3005667,0 -0.5376333,-0.1354667 -0.2328333,-0.1397 -0.3683,-0.4021666 -0.1354666,-0.2667001 -0.1354666,-0.6434671 0,-0.563033 0.2836333,-0.867833 0.2836333,-0.3048 0.7704666,-0.3048 0.3090333,0 0.5418666,0.1397 0.2370667,0.135467 0.3683,0.397933 0.1354667,0.258234 0.1354667,0.635 z m -1.7144999,0 q 0,0.4021671 0.1566333,0.6392337 0.1608666,0.2328333 0.508,0.2328333 0.3428999,0 0.5037666,-0.2328333 0.1608667,-0.2370666 0.1608667,-0.6392337 0,-0.402166 -0.1608667,-0.630766 -0.1608667,-0.2286 -0.508,-0.2286 -0.3471333,0 -0.5037666,0.2286 -0.1566333,0.2286 -0.1566333,0.630766 z" id="path2881" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 11.153744,-11.566609 q 0.4064,0 0.613833,0.198967 0.207434,0.194733 0.207434,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.376767,0 -0.5207,0.211666 -0.143934,0.211667 -0.143934,0.6096 v 1.176867 h -0.372533 v -2.269067 h 0.300567 l 0.05503,0.309034 h 0.02117 q 0.110066,-0.1778 0.3048,-0.262467 0.194733,-0.0889 0.410633,-0.0889 z" id="path2883" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 16.462145,-10.770742 q 0,0.554566 -0.224366,0.9440331 -0.220134,0.3894666 -0.656167,0.5376333 l 0.7239,0.7535333 h -0.5461 l -0.5842,-0.6815667 q -0.0254,0 -0.05503,0 -0.0254,0.00423 -0.0508,0.00423 -0.4699,0 -0.783167,-0.1947334 -0.309033,-0.1947333 -0.461433,-0.5460999 -0.1524,-0.3513671 -0.1524,-0.8212671 0,-0.465666 0.1524,-0.8128 0.1524,-0.347133 0.461433,-0.541866 0.313267,-0.194733 0.7874,-0.194733 0.452967,0 0.762,0.194733 0.309033,0.1905 0.465667,0.541866 0.160866,0.347134 0.160866,0.817034 z m -2.3876,0 q 0,0.5715 0.2413,0.9016997 0.2413,0.3259667 0.753534,0.3259667 0.516466,0 0.753533,-0.3259667 0.237067,-0.3301997 0.237067,-0.9016997 0,-0.5715 -0.237067,-0.893234 -0.237067,-0.325966 -0.7493,-0.325966 -0.512233,0 -0.757767,0.325966 -0.2413,0.321734 -0.2413,0.893234 z" id="path2885" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 18.977803,-11.524276 v 2.269067 h -0.3048 l -0.05503,-0.3005666 h -0.01693 q -0.110066,0.1778 -0.3048,0.2624666 -0.194733,0.080433 -0.414866,0.080433 -0.410634,0 -0.618067,-0.1947334 -0.207433,-0.1989666 -0.207433,-0.630767 v -1.4859 h 0.376766 v 1.4605 q 0,0.541867 0.503767,0.541867 0.376767,0 0.5207,-0.2116666 0.148167,-0.2116667 0.148167,-0.6096004 v -1.1811 z" id="path2887" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 20.57033,-11.566609 q 0.2921,0 0.499534,0.127 0.211666,0.127 0.321733,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.553633 q 0.0085,0.3852337 0.194733,0.5884337 0.1905,0.1989667 0.529167,0.1989667 0.2159,0 0.381,-0.0381 0.169333,-0.042333 0.347133,-0.1185333 v 0.3259666 q -0.173567,0.0762 -0.3429,0.1100667 -0.169333,0.0381 -0.402167,0.0381 -0.321733,0 -0.5715,-0.1312334 -0.245533,-0.1312333 -0.385233,-0.3894666 -0.135467,-0.2624667 -0.135467,-0.6392334 0,-0.372533 0.122767,-0.639233 0.127,-0.2667 0.351367,-0.410634 0.2286,-0.143933 0.529166,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173567 -0.1524,0.169333 -0.182034,0.474133 h 1.1557 q -0.0042,-0.287867 -0.135466,-0.465667 -0.131234,-0.182033 -0.414867,-0.182033 z" id="path2889" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 23.980082,-11.524276 v 2.269067 h -0.3048 l -0.05503,-0.3005666 h -0.01693 q -0.110067,0.1778 -0.3048,0.2624666 -0.194734,0.080433 -0.414867,0.080433 -0.410633,0 -0.618067,-0.1947334 -0.207433,-0.1989666 -0.207433,-0.630767 v -1.4859 h 0.376767 v 1.4605 q 0,0.541867 0.503766,0.541867 0.376767,0 0.5207,-0.2116666 0.148167,-0.2116667 0.148167,-0.6096004 v -1.1811 z" id="path2891" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 25.572608,-11.566609 q 0.2921,0 0.499533,0.127 0.211667,0.127 0.321733,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.553633 q 0.0085,0.3852337 0.194733,0.5884337 0.1905,0.1989667 0.529167,0.1989667 0.2159,0 0.381,-0.0381 0.169333,-0.042333 0.347133,-0.1185333 v 0.3259666 q -0.173566,0.0762 -0.3429,0.1100667 -0.169333,0.0381 -0.402166,0.0381 -0.321734,0 -0.5715,-0.1312334 -0.245534,-0.1312333 -0.385234,-0.3894666 -0.135466,-0.2624667 -0.135466,-0.6392334 0,-0.372533 0.122766,-0.639233 0.127,-0.2667 0.351367,-0.410634 0.2286,-0.143933 0.529167,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173567 -0.1524,0.169333 -0.182033,0.474133 h 1.1557 q -0.0042,-0.287867 -0.135467,-0.465667 -0.131233,-0.182033 -0.414867,-0.182033 z" id="path2893" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -4.6769049,-5.1234762 q 0,-0.5164667 0.1481667,-0.9948333 0.1524,-0.4826 0.4741333,-0.8678333 h 0.3513666 q -0.2963333,0.3979333 -0.4487333,0.8763 -0.1481666,0.4783666 -0.1481666,0.9821333 0,0.4910666 0.1481666,0.9651999 0.1524,0.4699 0.4445,0.8678333 h -0.3471333 q -0.3217333,-0.3725333 -0.4741333,-0.8424333 -0.1481667,-0.4741333 -0.1481667,-0.9863666 z" id="path2895" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M -1.3715978,-3.9635429 H -3.369731 v -0.3090334 l 0.7916333,-0.8000999 q 0.2286,-0.2286 0.3852333,-0.4064 0.1566333,-0.1778 0.2370667,-0.3471333 0.080433,-0.1735667 0.080433,-0.3767667 0,-0.2497666 -0.1481667,-0.3767666 -0.1481666,-0.1312333 -0.3852333,-0.1312333 -0.2201333,0 -0.3894666,0.0762 -0.1651,0.0762 -0.3386667,0.2116666 l -0.1989666,-0.2497666 q 0.1778,-0.1481667 0.4063999,-0.2497667 0.2328334,-0.1058333 0.5207,-0.1058333 0.4233333,0 0.6688666,0.2159 0.2455334,0.2116666 0.2455334,0.5884333 0,0.2370666 -0.097367,0.4445 -0.097367,0.2074333 -0.2709333,0.4106333 -0.1735667,0.1989666 -0.4064,0.4275666 l -0.6307666,0.6223 v 0.016933 h 1.5282332 z" id="path2897" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M -0.25287352,-5.1234762 -1.0360401,-6.2326095 h 0.42333327 l 0.58419997,0.8551333 0.57996664,-0.8551333 H 0.97055975 L 0.18739313,-5.1234762 1.0128931,-3.9635429 H 0.58955977 l -0.61806663,-0.9059333 -0.6265333,0.9059333 H -1.0741401 Z" id="path2899" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 3.2916833,-3.9635429 H 1.2935501 v -0.3090334 l 0.7916333,-0.8000999 q 0.2286,-0.2286 0.3852333,-0.4064 0.1566333,-0.1778 0.2370666,-0.3471333 0.080433,-0.1735667 0.080433,-0.3767667 0,-0.2497666 -0.1481667,-0.3767666 -0.1481666,-0.1312333 -0.3852333,-0.1312333 -0.2201333,0 -0.3894666,0.0762 -0.1651,0.0762 -0.3386667,0.2116666 L 1.3274168,-6.6728761 q 0.1777999,-0.1481667 0.4063999,-0.2497667 0.2328334,-0.1058333 0.5207,-0.1058333 0.4233333,0 0.6688666,0.2159 0.2455334,0.2116666 0.2455334,0.5884333 0,0.2370666 -0.097367,0.4445 -0.097367,0.2074333 -0.2709333,0.4106333 -0.1735667,0.1989666 -0.4064,0.4275666 l -0.6307666,0.6223 v 0.016933 h 1.5282332 z" id="path2901" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 4.6771079,-5.8177428 q 0.4656667,0 0.7408333,0.2328333 0.2751667,0.2328333 0.2751667,0.6561666 0,0.4699 -0.3005667,0.7408333 -0.2963333,0.2667 -0.8297333,0.2667 -0.2328333,0 -0.4402666,-0.042333 -0.2032,-0.042333 -0.3429,-0.1227667 v -0.3513666 q 0.1524,0.093133 0.3683,0.1481666 0.2201333,0.0508 0.4191,0.0508 0.3344333,0 0.5376333,-0.1566333 0.2074333,-0.1608667 0.2074333,-0.4953 0,-0.2963333 -0.1820333,-0.4529666 -0.1820334,-0.1608667 -0.5757333,-0.1608667 -0.1185334,0 -0.2709334,0.021167 -0.1524,0.021167 -0.2455333,0.042333 L 3.851608,-5.5595095 3.9659079,-6.9861428 h 1.5155333 v 0.3386667 H 4.2834079 l -0.071967,0.8762999 q 0.071967,-0.0127 0.1947333,-0.029633 0.1227667,-0.016933 0.2709333,-0.016933 z" id="path2903" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 8.27134,-6.2749428 q 0.2921,0 0.4995333,0.127 0.2116667,0.127 0.3217333,0.3598333 0.1143,0.2286 0.1143,0.5376333 v 0.2243667 H 7.6532734 q 0.00847,0.3852333 0.1947333,0.5884333 0.1905,0.1989666 0.5291666,0.1989666 0.2159,0 0.381,-0.0381 0.1693333,-0.042333 0.3471333,-0.1185333 v 0.3259666 q -0.1735666,0.0762 -0.3429,0.1100667 -0.1693333,0.0381 -0.4021666,0.0381 -0.3217333,0 -0.5715,-0.1312333 -0.2455333,-0.1312334 -0.3852333,-0.3894667 -0.1354666,-0.2624666 -0.1354666,-0.6392333 0,-0.3725333 0.1227666,-0.6392333 0.127,-0.2667 0.3513667,-0.4106333 0.2286,-0.1439333 0.5291666,-0.1439333 z m -0.00423,0.3048 q -0.2667,0 -0.4233333,0.1735666 -0.1524,0.1693333 -0.1820334,0.4741333 h 1.1557 Q 8.8132066,-5.6103095 8.6819733,-5.7881095 8.55074,-5.9701428 8.2671067,-5.9701428 Z" id="path2905" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 10.876758,-6.2749428 q 0.4064,0 0.613833,0.1989666 0.207433,0.1947334 0.207433,0.635 v 1.4774333 h -0.3683 v -1.4520333 q 0,-0.5461 -0.508,-0.5461 -0.376766,0 -0.5207,0.2116667 -0.143933,0.2116666 -0.143933,0.6096 v 1.1768666 H 9.7845578 v -2.2690666 h 0.3005662 l 0.05503,0.3090333 h 0.02117 q 0.110067,-0.1778 0.3048,-0.2624666 0.194734,-0.0889 0.410634,-0.0889 z" id="path2907" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 13.155084,-4.2260096 q 0.08467,0 0.173567,-0.0127 0.0889,-0.016933 0.143933,-0.033867 v 0.2836334 q -0.05927,0.029633 -0.169333,0.046567 -0.110067,0.021167 -0.211667,0.021167 -0.1778,0 -0.3302,-0.059267 -0.148167,-0.0635 -0.2413,-0.2159 -0.09313,-0.1524 -0.09313,-0.4275666 v -1.3207999 h -0.321734 v -0.1778 l 0.325967,-0.1481667 0.148167,-0.4826 h 0.220133 v 0.5207 h 0.656167 v 0.2878667 h -0.656167 v 1.3123332 q 0,0.2074334 0.09737,0.3090333 0.1016,0.097367 0.258233,0.097367 z" id="path2909" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 14.985274,-6.2749428 q 0.0635,0 0.135466,0.00847 0.0762,0.00423 0.131234,0.016933 l -0.04657,0.3429 q -0.05503,-0.0127 -0.122767,-0.021167 -0.0635,-0.00847 -0.122766,-0.00847 -0.173567,0 -0.325967,0.097367 -0.1524,0.093133 -0.245533,0.2667 -0.0889,0.1693333 -0.0889,0.3979333 v 1.2107333 H 13.92694 v -2.2690666 h 0.3048 l 0.04233,0.4148667 h 0.01693 q 0.110067,-0.1862667 0.283633,-0.3217334 0.173567,-0.1354666 0.410634,-0.1354666 z" id="path2911" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 15.862037,-7.0835094 q 0.08467,0 0.148167,0.059267 0.06773,0.055033 0.06773,0.1778 0,0.1185333 -0.06773,0.1778 -0.0635,0.059267 -0.148167,0.059267 -0.09313,0 -0.156633,-0.059267 -0.0635,-0.059267 -0.0635,-0.1778 0,-0.1227666 0.0635,-0.1778 0.0635,-0.059267 0.156633,-0.059267 z m 0.182033,0.8508999 v 2.2690666 h -0.372533 v -2.2690666 z" id="path2913" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 17.639243,-6.2749428 q 0.2921,0 0.499533,0.127 0.211667,0.127 0.321733,0.3598333 0.1143,0.2286 0.1143,0.5376333 v 0.2243667 h -1.553633 q 0.0085,0.3852333 0.194733,0.5884333 0.1905,0.1989666 0.529167,0.1989666 0.2159,0 0.381,-0.0381 0.169333,-0.042333 0.347133,-0.1185333 v 0.3259666 q -0.173566,0.0762 -0.3429,0.1100667 -0.169333,0.0381 -0.402166,0.0381 -0.321734,0 -0.5715,-0.1312333 -0.245534,-0.1312334 -0.385234,-0.3894667 -0.135466,-0.2624666 -0.135466,-0.6392333 0,-0.3725333 0.122766,-0.6392333 0.127,-0.2667 0.351367,-0.4106333 0.2286,-0.1439333 0.529167,-0.1439333 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.1735666 -0.1524,0.1693333 -0.182033,0.4741333 h 1.1557 q -0.0042,-0.2878666 -0.135467,-0.4656666 -0.131233,-0.1820333 -0.414867,-0.1820333 z" id="path2915" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 20.629895,-4.5900762 q 0,0.3301999 -0.245534,0.4995333 -0.245533,0.1693333 -0.660399,0.1693333 -0.237067,0 -0.410634,-0.0381 -0.169333,-0.0381 -0.300566,-0.1058333 v -0.3386667 q 0.135466,0.067733 0.325966,0.127 0.194734,0.055033 0.3937,0.055033 0.283634,0 0.410633,-0.0889 0.127,-0.093133 0.127,-0.2455333 0,-0.084667 -0.04657,-0.1524 -0.04657,-0.067733 -0.169333,-0.1354666 -0.118534,-0.067733 -0.3429,-0.1524 -0.220134,-0.084667 -0.376767,-0.1693333 -0.156633,-0.084667 -0.2413,-0.2032 -0.08467,-0.1185334 -0.08467,-0.3048 0,-0.2878667 0.232834,-0.4445 0.237066,-0.1566333 0.618066,-0.1566333 0.207433,0 0.385233,0.042333 0.182034,0.0381 0.338667,0.1100667 l -0.127,0.2963333 q -0.143933,-0.059267 -0.300567,-0.1016 -0.156633,-0.042333 -0.321733,-0.042333 -0.2286,0 -0.351366,0.0762 -0.118534,0.071967 -0.118534,0.1989666 0,0.093133 0.05503,0.1608667 0.05503,0.0635 0.182033,0.127 0.131233,0.059267 0.347133,0.1439333 0.2159,0.080433 0.3683,0.1651 0.1524,0.084667 0.232833,0.2074333 0.08043,0.1185333 0.08043,0.3005667 z" id="path2917" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 21.91901,-5.1234762 q 0,0.5122333 -0.1524,0.9863666 -0.148167,0.4699 -0.4699,0.8424333 h -0.347134 q 0.2921,-0.3979333 0.440267,-0.8678333 0.1524,-0.4741333 0.1524,-0.9651999 0,-0.5037667 -0.1524,-0.9821333 -0.148167,-0.4783667 -0.4445,-0.8763 h 0.351367 q 0.321733,0.3852333 0.4699,0.8678333 0.1524,0.4783666 0.1524,0.9948333 z" id="path2919" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="M -10.583323,-1.9791644 V 9.9270868 H 1.696469e-5 V -1.9791644 Z" id="path1200" style="fill:#ffffff;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M -7.937483,-1.9791644 V 9.9270868" id="path1202" style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M -5.291653,-1.9791644 V 9.9270868" id="path1204" style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M -2.645823,-1.9791644 V 9.9270868" id="path1206" style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M 9.260427,-1.9791644 V 9.9270868 c 0,0 -2.64583,0 -2.64583,0 V -1.9791644 Z" id="path1208" style="fill:#ffffff;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M 1.696469e-5,-1.9791644 H 6.614597" id="path1210" style="fill:none;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.52916663, 0.26458332;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="M 6.614597,9.9270868 H 1.696469e-5" id="path1212" style="fill:none;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.52916663, 0.26458332;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="m 29.104169,-31.744785 h 21.166667 v 5.291666 H 29.104169 Z" id="path1574" style="fill:#cccccc;stroke:none;stroke-width:0.26458335px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M -11.906255,-37.697918 H 29.104201 V -20.49999 H -11.906255 Z" id="rect1214" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="InstructionPredecode &amp; Fetch(16 bytes)" id="text1220" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -1.0690567,-33.33952 h -1.0921999 v -0.220133 l 0.3556,-0.08043 v -2.417233 l -0.3556,-0.08467 v -0.220133 h 1.0921999 v 0.220133 l -0.3555999,0.08467 v 2.417233 l 0.3555999,0.08043 z" id="path2923" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 0.56011515,-35.650919 q 0.40639998,0 0.61383335,0.198966 0.2074333,0.194734 0.2074333,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.50799998,-0.5461 -0.37676664,0 -0.52069997,0.211667 -0.14393332,0.211667 -0.14393332,0.6096 v 1.176866 h -0.37253332 v -2.269066 h 0.30056665 l 0.0550333,0.309033 h 0.0211667 q 0.11006666,-0.1778 0.30479998,-0.262466 0.19473333,-0.0889 0.41063331,-0.0889 z" id="path2925" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 3.5581088,-33.966053 q 0,0.3302 -0.2455333,0.499534 -0.2455334,0.169333 -0.6604,0.169333 -0.2370667,0 -0.4106333,-0.0381 -0.1693333,-0.0381 -0.3005667,-0.105833 v -0.338667 q 0.1354667,0.06773 0.3259667,0.127 0.1947333,0.05503 0.3937,0.05503 0.2836333,0 0.4106333,-0.0889 0.127,-0.09313 0.127,-0.245533 0,-0.08467 -0.046567,-0.1524 -0.046567,-0.06773 -0.1693333,-0.135467 -0.1185334,-0.06773 -0.3429,-0.1524 -0.2201333,-0.08467 -0.3767667,-0.169333 -0.1566333,-0.08467 -0.2412999,-0.2032 -0.084667,-0.118533 -0.084667,-0.3048 0,-0.287867 0.2328333,-0.4445 0.2370667,-0.156633 0.6180666,-0.156633 0.2074334,0 0.3852334,0.04233 0.1820333,0.0381 0.3386666,0.110067 l -0.127,0.296333 q -0.1439333,-0.05927 -0.3005666,-0.1016 -0.1566334,-0.04233 -0.3217334,-0.04233 -0.2285999,0 -0.3513666,0.0762 -0.1185333,0.07197 -0.1185333,0.198966 0,0.09313 0.055033,0.160867 0.055033,0.0635 0.1820333,0.127 0.1312334,0.05927 0.3471333,0.143933 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.2328333,0.207434 0.080433,0.118533 0.080433,0.300566 z" id="path2927" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 4.8641584,-33.601986 q 0.084667,0 0.1735667,-0.0127 0.0889,-0.01693 0.1439333,-0.03387 v 0.283634 q -0.059267,0.02963 -0.1693333,0.04657 -0.1100667,0.02117 -0.2116666,0.02117 -0.1778,0 -0.3302,-0.05927 -0.1481667,-0.0635 -0.2413,-0.2159 -0.093133,-0.1524 -0.093133,-0.427566 v -1.3208 H 3.8142918 v -0.1778 l 0.3259667,-0.148167 0.1481666,-0.4826 h 0.2201334 v 0.5207 h 0.6561666 v 0.287867 H 4.5085585 v 1.312333 q 0,0.207433 0.097367,0.309033 0.1016,0.09737 0.2582333,0.09737 z" id="path2929" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 6.6943472,-35.650919 q 0.0635,0 0.1354666,0.0085 0.0762,0.0042 0.1312334,0.01693 l -0.046567,0.3429 q -0.055033,-0.0127 -0.1227667,-0.02117 -0.0635,-0.0085 -0.1227666,-0.0085 -0.1735667,0 -0.3259667,0.09737 -0.1524,0.09313 -0.2455333,0.2667 -0.0889,0.169333 -0.0889,0.397933 v 1.210733 H 5.6360139 v -2.269066 h 0.3048 l 0.042333,0.414867 h 0.016933 q 0.1100667,-0.186267 0.2836334,-0.321734 0.1735666,-0.135466 0.4106333,-0.135466 z" id="path2931" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 9.2771436,-35.608586 v 2.269066 h -0.3048 l -0.055033,-0.300566 H 8.900377 q -0.1100667,0.1778 -0.3048,0.262467 -0.1947333,0.08043 -0.4148667,0.08043 -0.4106333,0 -0.6180666,-0.194733 -0.2074333,-0.198967 -0.2074333,-0.630767 v -1.4859 H 7.731977 v 1.4605 q 0,0.541867 0.5037667,0.541867 0.3767666,0 0.5206999,-0.211667 0.1481667,-0.211667 0.1481667,-0.6096 v -1.1811 z" id="path2933" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 10.903537,-33.297186 q -0.300567,0 -0.537634,-0.122767 -0.232833,-0.122766 -0.3682997,-0.381 -0.1312333,-0.258233 -0.1312333,-0.6604 0,-0.4191 0.1397,-0.681566 0.1397,-0.262467 0.376767,-0.385234 0.2413,-0.122766 0.5461,-0.122766 0.173566,0 0.334433,0.0381 0.160867,0.03387 0.262467,0.08467 l -0.1143,0.309034 q -0.1016,-0.0381 -0.237067,-0.07197 -0.135467,-0.03387 -0.254,-0.03387 -0.668867,0 -0.668867,0.859367 0,0.410633 0.160867,0.630767 0.1651,0.2159 0.486833,0.2159 0.186267,0 0.325967,-0.0381 0.143933,-0.0381 0.262467,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.135467,0.03387 -0.3302,0.03387 z" id="path2935" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 12.785122,-33.601986 q 0.08467,0 0.173566,-0.0127 0.0889,-0.01693 0.143934,-0.03387 v 0.283634 q -0.05927,0.02963 -0.169334,0.04657 -0.110066,0.02117 -0.211666,0.02117 -0.1778,0 -0.3302,-0.05927 -0.148167,-0.0635 -0.2413,-0.2159 -0.09313,-0.1524 -0.09313,-0.427566 v -1.3208 h -0.321733 v -0.1778 l 0.325967,-0.148167 0.148166,-0.4826 h 0.220134 v 0.5207 h 0.656166 v 0.287867 h -0.656166 v 1.312333 q 0,0.207433 0.09737,0.309033 0.1016,0.09737 0.258234,0.09737 z" id="path2937" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 13.747477,-36.459486 q 0.08467,0 0.148167,0.05927 0.06773,0.05503 0.06773,0.1778 0,0.118533 -0.06773,0.1778 -0.0635,0.05927 -0.148167,0.05927 -0.09313,0 -0.156633,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.156633,-0.05927 z m 0.182034,0.8509 v 2.269066 h -0.372534 v -2.269066 z" id="path2939" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 16.621117,-34.478286 q 0,0.563033 -0.287866,0.872067 -0.283634,0.309033 -0.770467,0.309033 -0.300567,0 -0.537633,-0.135467 -0.232834,-0.1397 -0.3683,-0.402166 -0.135467,-0.2667 -0.135467,-0.643467 0,-0.563033 0.283633,-0.867833 0.283634,-0.3048 0.770467,-0.3048 0.309033,0 0.541867,0.1397 0.237066,0.135466 0.3683,0.397933 0.135466,0.258233 0.135466,0.635 z m -1.7145,0 q 0,0.402167 0.156634,0.639233 0.160866,0.232834 0.508,0.232834 0.3429,0 0.503766,-0.232834 0.160867,-0.237066 0.160867,-0.639233 0,-0.402167 -0.160867,-0.630767 -0.160866,-0.2286 -0.508,-0.2286 -0.347133,0 -0.503766,0.2286 -0.156634,0.2286 -0.156634,0.630767 z" id="path2941" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 18.303734,-35.650919 q 0.4064,0 0.613834,0.198966 0.207433,0.194734 0.207433,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.376767,0 -0.5207,0.211667 -0.143933,0.211667 -0.143933,0.6096 v 1.176866 h -0.372534 v -2.269066 h 0.300567 l 0.05503,0.309033 h 0.02117 q 0.110067,-0.1778 0.3048,-0.262466 0.194733,-0.0889 0.410633,-0.0889 z" id="path2943" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -8.8547846,-31.070453 q 0.5926666,0 0.8635999,0.232833 0.2709333,0.232833 0.2709333,0.656167 0,0.249766 -0.1143,0.4699 -0.1100666,0.2159 -0.3767666,0.351366 -0.2624667,0.135467 -0.7154333,0.135467 h -0.3471333 v 1.176867 h -0.381 v -3.0226 z m -0.033867,0.325966 h -0.3852333 v 1.1938 h 0.3048 q 0.4317999,0 0.6434666,-0.1397 0.2116667,-0.1397 0.2116667,-0.474133 0,-0.2921 -0.1862667,-0.436033 -0.1862667,-0.143934 -0.5884333,-0.143934 z" id="path2945" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -6.0842004,-30.359253 q 0.0635,0 0.1354666,0.0085 0.0762,0.0042 0.1312334,0.01693 l -0.046567,0.3429 q -0.055033,-0.0127 -0.1227667,-0.02117 -0.0635,-0.0085 -0.1227666,-0.0085 -0.1735667,0 -0.3259667,0.09737 -0.1524,0.09313 -0.2455333,0.2667 -0.0889,0.169333 -0.0889,0.397933 v 1.210734 h -0.3725333 v -2.269067 h 0.3048 l 0.042333,0.414867 h 0.016933 q 0.1100667,-0.186267 0.2836334,-0.321734 0.1735666,-0.135466 0.4106333,-0.135466 z" id="path2947" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -4.6043199,-30.359253 q 0.2921,0 0.4995333,0.127 0.2116667,0.127 0.3217333,0.359833 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.5536332 q 0.00847,0.385233 0.1947333,0.588433 0.1905,0.198967 0.5291666,0.198967 0.2159,0 0.381,-0.0381 0.1693333,-0.04233 0.3471333,-0.118533 v 0.325966 q -0.1735666,0.0762 -0.3428999,0.110067 -0.1693334,0.0381 -0.4021667,0.0381 -0.3217333,0 -0.5715,-0.131233 -0.2455333,-0.131234 -0.3852333,-0.389467 -0.1354666,-0.262467 -0.1354666,-0.639233 0,-0.372534 0.1227666,-0.639234 0.127,-0.2667 0.3513667,-0.410633 0.2286,-0.143933 0.5291666,-0.143933 z m -0.00423,0.3048 q -0.2667,0 -0.4233333,0.173566 -0.1524,0.169334 -0.1820334,0.474134 h 1.1557 q -0.00423,-0.287867 -0.1354667,-0.465667 -0.1312333,-0.182033 -0.4148666,-0.182033 z" id="path2949" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -2.2867683,-28.00552 q -0.4233333,0 -0.6773333,-0.2921 -0.254,-0.296333 -0.254,-0.880533 0,-0.5842 0.254,-0.880534 0.2582333,-0.300566 0.6815666,-0.300566 0.2624667,0 0.4275667,0.09737 0.1693333,0.09737 0.2751666,0.237067 h 0.0254 q -0.00423,-0.05503 -0.016933,-0.160867 -0.00847,-0.110066 -0.00847,-0.173566 v -0.905934 h 0.3725334 v 3.217334 H -1.507835 l -0.055033,-0.3048 h -0.016933 q -0.1016,0.143933 -0.2709333,0.245533 -0.1693333,0.1016 -0.4360333,0.1016 z m 0.059267,-0.309033 q 0.3598333,0 0.5037666,-0.194734 0.1481667,-0.198966 0.1481667,-0.5969 v -0.06773 q 0,-0.423333 -0.1397,-0.6477 -0.1397,-0.2286 -0.5164667,-0.2286 -0.3005666,0 -0.4529666,0.2413 -0.1481667,0.237067 -0.1481667,0.639233 0,0.4064 0.1481667,0.630767 0.1524,0.224367 0.4572,0.224367 z" id="path2951" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 0.38969056,-30.359253 q 0.29209999,0 0.49953331,0.127 0.21166663,0.127 0.32173333,0.359833 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363327 q 0.008467,0.385233 0.19473332,0.588433 0.19049999,0.198967 0.52916664,0.198967 0.21589999,0 0.38099998,-0.0381 0.16933333,-0.04233 0.34713333,-0.118533 v 0.325966 q -0.1735667,0.0762 -0.3429,0.110067 -0.16933332,0.0381 -0.40216664,0.0381 -0.32173332,0 -0.57149997,-0.131233 -0.24553332,-0.131234 -0.38523331,-0.389467 -0.13546666,-0.262467 -0.13546666,-0.639233 0,-0.372534 0.12276666,-0.639234 0.12699999,-0.2667 0.35136664,-0.410633 0.22859999,-0.143933 0.52916664,-0.143933 z m -0.004233,0.3048 q -0.26669999,0 -0.42333331,0.173566 -0.15239999,0.169334 -0.18203333,0.474134 H 0.93579053 Q 0.9315572,-29.69462 0.80032387,-29.87242 0.66909055,-30.054453 0.38545723,-30.054453 Z" id="path2953" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 2.813075,-28.00552 q -0.3005666,0 -0.5376333,-0.122767 -0.2328333,-0.122766 -0.3683,-0.381 -0.1312333,-0.258233 -0.1312333,-0.6604 0,-0.4191 0.1397,-0.681566 0.1397,-0.262467 0.3767666,-0.385234 0.2413,-0.122766 0.5461,-0.122766 0.1735667,0 0.3344333,0.0381 0.1608667,0.03387 0.2624667,0.08467 l -0.1143,0.309034 q -0.1016,-0.0381 -0.2370667,-0.07197 -0.1354666,-0.03387 -0.254,-0.03387 -0.6688666,0 -0.6688666,0.859367 0,0.410633 0.1608667,0.630767 0.1651,0.2159 0.4868333,0.2159 0.1862666,0 0.3259666,-0.0381 0.1439334,-0.0381 0.2624667,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.1354667,0.03387 -0.3302,0.03387 z" id="path2955" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 5.9096258,-29.18662 q 0,0.563033 -0.2878666,0.872067 -0.2836334,0.309033 -0.7704667,0.309033 -0.3005666,0 -0.5376333,-0.135467 -0.2328333,-0.1397 -0.3683,-0.402166 -0.1354666,-0.2667 -0.1354666,-0.643467 0,-0.563033 0.2836333,-0.867833 0.2836333,-0.3048 0.7704666,-0.3048 0.3090333,0 0.5418667,0.1397 0.2370666,0.135466 0.3682999,0.397933 0.1354667,0.258233 0.1354667,0.635 z m -1.7144999,0 q 0,0.402167 0.1566333,0.639233 0.1608667,0.232834 0.508,0.232834 0.3429,0 0.5037666,-0.232834 0.1608667,-0.237066 0.1608667,-0.639233 0,-0.402167 -0.1608667,-0.630767 -0.1608666,-0.2286 -0.5079999,-0.2286 -0.3471334,0 -0.5037667,0.2286 -0.1566333,0.2286 -0.1566333,0.630767 z" id="path2957" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 7.3043772,-28.00552 q -0.4233333,0 -0.6773333,-0.2921 -0.254,-0.296333 -0.254,-0.880533 0,-0.5842 0.254,-0.880534 0.2582333,-0.300566 0.6815667,-0.300566 0.2624666,0 0.4275666,0.09737 0.1693333,0.09737 0.2751667,0.237067 h 0.0254 q -0.00423,-0.05503 -0.016933,-0.160867 -0.00847,-0.110066 -0.00847,-0.173566 v -0.905934 h 0.3725333 v 3.217334 H 8.0833105 l -0.055033,-0.3048 h -0.016933 q -0.1016,0.143933 -0.2709334,0.245533 -0.1693333,0.1016 -0.4360333,0.1016 z m 0.059267,-0.309033 q 0.3598333,0 0.5037666,-0.194734 0.1481667,-0.198966 0.1481667,-0.5969 v -0.06773 q 0,-0.423333 -0.1397,-0.6477 -0.1397,-0.2286 -0.5164666,-0.2286 -0.3005667,0 -0.4529667,0.2413 -0.1481666,0.237067 -0.1481666,0.639233 0,0.4064 0.1481666,0.630767 0.1524,0.224367 0.4572,0.224367 z" id="path2959" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 9.9808361,-30.359253 q 0.2920999,0 0.4995329,0.127 0.211667,0.127 0.321734,0.359833 0.1143,0.2286 0.1143,0.537633 v 0.224367 H 9.3627694 q 0.00847,0.385233 0.1947334,0.588433 0.1905,0.198967 0.5291662,0.198967 0.2159,0 0.381,-0.0381 0.169334,-0.04233 0.347134,-0.118533 v 0.325966 q -0.173567,0.0762 -0.3429,0.110067 -0.169334,0.0381 -0.402167,0.0381 -0.3217332,0 -0.5714999,-0.131233 -0.2455333,-0.131234 -0.3852333,-0.389467 -0.1354667,-0.262467 -0.1354667,-0.639233 0,-0.372534 0.1227667,-0.639234 0.127,-0.2667 0.3513666,-0.410633 0.2286,-0.143933 0.5291667,-0.143933 z m -0.00423,0.3048 q -0.2666999,0 -0.4233333,0.173566 -0.1524,0.169334 -0.1820333,0.474134 h 1.1556999 q -0.0042,-0.287867 -0.135467,-0.465667 -0.131233,-0.182033 -0.4148663,-0.182033 z" id="path2961" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 13.520827,-31.11702 q 0.338667,0 0.5334,0.173567 0.198967,0.169333 0.198967,0.478366 0,0.2667 -0.173567,0.452967 -0.169333,0.186267 -0.4318,0.338667 l 0.817033,0.7874 q 0.110067,-0.131234 0.1778,-0.300567 0.07197,-0.173567 0.118534,-0.372533 h 0.376766 q -0.06773,0.270933 -0.169333,0.503766 -0.1016,0.232834 -0.262467,0.4064 l 0.618067,0.601134 H 14.82046 l -0.3683,-0.3556 q -0.198966,0.1778 -0.4445,0.287866 -0.245533,0.110067 -0.5969,0.110067 -0.436033,0 -0.694266,-0.2159 -0.258233,-0.2159 -0.258233,-0.613833 0,-0.325967 0.173566,-0.5207 0.1778,-0.198967 0.478367,-0.3683 -0.135467,-0.1524 -0.254,-0.325967 -0.1143,-0.173567 -0.1143,-0.4064 0,-0.313267 0.207433,-0.486833 0.211667,-0.173567 0.5715,-0.173567 z m -0.0127,0.3048 q -0.1778,0 -0.2921,0.09313 -0.110067,0.09313 -0.110067,0.258234 0,0.1524 0.08043,0.283633 0.08043,0.127 0.232833,0.283633 0.249767,-0.143933 0.3556,-0.270933 0.110067,-0.131233 0.110067,-0.300567 0,-0.1524 -0.1016,-0.249766 -0.1016,-0.09737 -0.275167,-0.09737 z m -0.173567,1.3208 q -0.2286,0.135467 -0.359833,0.275167 -0.127,0.1397 -0.127,0.3683 0,0.232833 0.156633,0.372533 0.156634,0.1397 0.4191,0.1397 0.270934,0 0.465667,-0.0889 0.194733,-0.0889 0.325967,-0.211667 z" id="path2963" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 17.225787,-28.047853 h -0.381 v -3.0226 h 1.6891 v 0.334433 h -1.3081 v 1.071033 h 1.227667 v 0.334434 h -1.227667 z" id="path2965" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 19.869638,-30.359253 q 0.2921,0 0.499533,0.127 0.211667,0.127 0.321733,0.359833 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.553633 q 0.0085,0.385233 0.194733,0.588433 0.1905,0.198967 0.529167,0.198967 0.2159,0 0.381,-0.0381 0.169333,-0.04233 0.347133,-0.118533 v 0.325966 q -0.173566,0.0762 -0.3429,0.110067 -0.169333,0.0381 -0.402166,0.0381 -0.321734,0 -0.5715,-0.131233 -0.245534,-0.131234 -0.385234,-0.389467 -0.135466,-0.262467 -0.135466,-0.639233 0,-0.372534 0.122766,-0.639234 0.127,-0.2667 0.351367,-0.410633 0.2286,-0.143933 0.529167,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173566 -0.1524,0.169334 -0.182033,0.474134 h 1.1557 q -0.0042,-0.287867 -0.135467,-0.465667 -0.131233,-0.182033 -0.414867,-0.182033 z" id="path2967" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 22.140621,-28.31032 q 0.08467,0 0.173567,-0.0127 0.0889,-0.01693 0.143933,-0.03387 v 0.283634 q -0.05927,0.02963 -0.169333,0.04657 -0.110067,0.02117 -0.211667,0.02117 -0.1778,0 -0.3302,-0.05927 -0.148166,-0.0635 -0.2413,-0.2159 -0.09313,-0.1524 -0.09313,-0.427566 v -1.3208 h -0.321733 v -0.1778 l 0.325966,-0.148167 0.148167,-0.4826 h 0.220133 v 0.5207 h 0.656167 v 0.287867 h -0.656167 v 1.312333 q 0,0.207433 0.09737,0.309033 0.1016,0.09737 0.258233,0.09737 z" id="path2969" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 23.822642,-28.00552 q -0.300566,0 -0.537633,-0.122767 -0.232833,-0.122766 -0.3683,-0.381 -0.131233,-0.258233 -0.131233,-0.6604 0,-0.4191 0.1397,-0.681566 0.1397,-0.262467 0.376766,-0.385234 0.2413,-0.122766 0.5461,-0.122766 0.173567,0 0.334434,0.0381 0.160866,0.03387 0.262466,0.08467 l -0.1143,0.309034 q -0.1016,-0.0381 -0.237066,-0.07197 -0.135467,-0.03387 -0.254,-0.03387 -0.668867,0 -0.668867,0.859367 0,0.410633 0.160867,0.630767 0.1651,0.2159 0.486833,0.2159 0.186267,0 0.325967,-0.0381 0.143933,-0.0381 0.262466,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.135466,0.03387 -0.3302,0.03387 z" id="path2971" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 25.318994,-31.265187 v 0.944034 q 0,0.169333 -0.02117,0.3175 h 0.0254 q 0.110067,-0.173567 0.296334,-0.262467 0.1905,-0.0889 0.410633,-0.0889 0.414867,0 0.6223,0.198967 0.207433,0.194733 0.207433,0.630766 v 1.477434 h -0.3683 v -1.452034 q 0,-0.5461 -0.508,-0.5461 -0.381,0 -0.524933,0.2159 -0.1397,0.211667 -0.1397,0.6096 v 1.172634 h -0.372533 v -3.217334 z" id="path2973" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -0.82180355,-23.916121 q 0,-0.516466 0.14816666,-0.994833 0.15239999,-0.4826 0.47413331,-0.867833 h 0.35136664 q -0.29633331,0.397933 -0.4487333,0.8763 -0.14816666,0.478366 -0.14816666,0.982133 0,0.491067 0.14816666,0.9652 0.15239999,0.4699 0.44449997,0.867833 h -0.34713331 q -0.32173332,-0.372533 -0.47413331,-0.842433 -0.14816666,-0.474133 -0.14816666,-0.986367 z" id="path2975" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 1.7850036,-22.756187 H 1.4209369 v -2.112434 q 0,-0.182033 0.00423,-0.2921 0.00423,-0.110066 0.0127,-0.2286 -0.067733,0.06773 -0.1227667,0.1143 -0.055033,0.04657 -0.1397,0.118534 l -0.3217333,0.262466 -0.19473332,-0.249766 0.81703332,-0.635 h 0.3090333 z" id="path2977" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 2.9375945,-24.047354 q 0,-0.325967 0.055033,-0.639233 0.059267,-0.3175 0.2074334,-0.5715 0.1523999,-0.258234 0.4233333,-0.410634 0.2709333,-0.1524 0.6984999,-0.1524 0.0889,0 0.1947334,0.0085 0.1100666,0.0085 0.1777999,0.02963 v 0.3175 q -0.0762,-0.0254 -0.1735666,-0.0381 -0.093133,-0.0127 -0.1905,-0.0127 -0.2921,0 -0.4868333,0.09737 -0.1947333,0.09737 -0.3090333,0.2667 -0.1100667,0.169333 -0.1608667,0.389467 -0.0508,0.220133 -0.0635,0.4699 h 0.0254 q 0.097367,-0.148167 0.2709333,-0.249767 0.1735667,-0.105833 0.4445,-0.105833 0.3937,0 0.635,0.2413 0.2413,0.237066 0.2413,0.677333 0,0.474133 -0.2624667,0.745067 -0.2582333,0.270933 -0.6985,0.270933 -0.2878666,0 -0.5206999,-0.143933 -0.2328333,-0.143934 -0.3725333,-0.440267 -0.1354667,-0.296333 -0.1354667,-0.7493 z m 1.0244666,1.020233 q 0.2667,0 0.4318,-0.169333 0.1651,-0.173567 0.1651,-0.5334 0,-0.287867 -0.1481667,-0.4572 -0.1439333,-0.169333 -0.4360333,-0.169333 -0.1989666,0 -0.3471333,0.08467 -0.1481667,0.08043 -0.2328333,0.207434 -0.080433,0.127 -0.080433,0.262466 0,0.182034 0.071967,0.364067 0.071967,0.1778 0.2159,0.296333 0.1439333,0.1143 0.3598333,0.1143 z" id="path2979" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 6.9593932,-25.973521 v 0.783167 q 0,0.143933 -0.00847,0.270933 -0.00423,0.122767 -0.0127,0.194734 h 0.021167 q 0.097367,-0.143934 0.2667,-0.2413 0.1693334,-0.09737 0.4360333,-0.09737 0.4233334,0 0.6773333,0.296333 0.2582334,0.2921 0.2582334,0.8763 0,0.5842 -0.2582334,0.880534 -0.2582333,0.296333 -0.6773333,0.296333 -0.2666999,0 -0.4360333,-0.09737 -0.1693333,-0.09737 -0.2667,-0.232833 h -0.029633 l -0.0762,0.287867 h -0.2667 v -3.217334 z m 0.6392333,1.2192 q -0.3598333,0 -0.4995333,0.207434 -0.1397,0.207433 -0.1397,0.643466 v 0.01693 q 0,0.4191 0.1354667,0.643466 0.1397,0.220134 0.5122333,0.220134 0.3048,0 0.4529667,-0.224367 0.1523999,-0.224367 0.1523999,-0.6477 0,-0.859367 -0.6138333,-0.859367 z" id="path2981" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 8.7530695,-25.025254 h 0.3979333 l 0.4910667,1.291167 q 0.0635,0.169333 0.1143,0.325966 0.0508,0.1524 0.0762,0.2921 h 0.016933 q 0.0254,-0.105833 0.080433,-0.275166 0.055033,-0.173567 0.1142999,-0.347134 l 0.461433,-1.286933 h 0.402167 l -0.9778999,2.582333 q -0.1185333,0.321734 -0.3090333,0.512234 -0.1862666,0.1905 -0.5164666,0.1905 -0.1016,0 -0.1778,-0.0127 -0.0762,-0.0085 -0.1312333,-0.02117 v -0.296333 q 0.046567,0.0085 0.1100666,0.01693 0.067733,0.0085 0.1397,0.0085 0.1947333,0 0.3132667,-0.110067 0.1227666,-0.110067 0.1905,-0.2921 l 0.1185333,-0.300567 z" id="path2983" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 12.024444,-23.018654 q 0.08467,0 0.173566,-0.0127 0.0889,-0.01693 0.143934,-0.03387 v 0.283634 q -0.05927,0.02963 -0.169334,0.04657 -0.110066,0.02117 -0.211666,0.02117 -0.1778,0 -0.3302,-0.05927 -0.148167,-0.0635 -0.2413,-0.2159 -0.09313,-0.1524 -0.09313,-0.427566 v -1.3208 h -0.321733 v -0.1778 l 0.325967,-0.148167 0.148166,-0.4826 h 0.220134 v 0.5207 h 0.656166 v 0.287867 h -0.656166 v 1.312333 q 0,0.207433 0.09737,0.309033 0.1016,0.09737 0.258234,0.09737 z" id="path2985" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 13.6726,-25.067587 q 0.2921,0 0.499533,0.127 0.211667,0.127 0.321734,0.359833 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.553634 q 0.0085,0.385233 0.194734,0.588433 0.1905,0.198967 0.529166,0.198967 0.2159,0 0.381,-0.0381 0.169334,-0.04233 0.347134,-0.118533 v 0.325966 q -0.173567,0.0762 -0.3429,0.110067 -0.169334,0.0381 -0.402167,0.0381 -0.321733,0 -0.5715,-0.131233 -0.245533,-0.131234 -0.385233,-0.389467 -0.135467,-0.262467 -0.135467,-0.639233 0,-0.372534 0.122767,-0.639234 0.127,-0.2667 0.351366,-0.410633 0.2286,-0.143933 0.529167,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423334,0.173566 -0.1524,0.169334 -0.182033,0.474134 h 1.1557 q -0.0042,-0.287867 -0.135467,-0.465667 -0.131233,-0.182033 -0.414866,-0.182033 z" id="path2987" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 16.663251,-23.382721 q 0,0.3302 -0.245533,0.499534 -0.245533,0.169333 -0.6604,0.169333 -0.237067,0 -0.410633,-0.0381 -0.169334,-0.0381 -0.300567,-0.105833 v -0.338667 q 0.135467,0.06773 0.325967,0.127 0.194733,0.05503 0.3937,0.05503 0.283633,0 0.410633,-0.0889 0.127,-0.09313 0.127,-0.245533 0,-0.08467 -0.04657,-0.1524 -0.04657,-0.06773 -0.169333,-0.135467 -0.118533,-0.06773 -0.3429,-0.1524 -0.220133,-0.08467 -0.376767,-0.169333 -0.156633,-0.08467 -0.2413,-0.2032 -0.08467,-0.118533 -0.08467,-0.3048 0,-0.287867 0.232833,-0.4445 0.237067,-0.156633 0.618067,-0.156633 0.207433,0 0.385233,0.04233 0.182033,0.0381 0.338667,0.110067 l -0.127,0.296333 q -0.143934,-0.05927 -0.300567,-0.1016 -0.156633,-0.04233 -0.321733,-0.04233 -0.2286,0 -0.351367,0.0762 -0.118533,0.07197 -0.118533,0.198966 0,0.09313 0.05503,0.160867 0.05503,0.0635 0.182033,0.127 0.131234,0.05927 0.347134,0.143933 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.232833,0.207434 0.08043,0.118533 0.08043,0.300566 z" id="path2989" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 17.952368,-23.916121 q 0,0.512234 -0.1524,0.986367 -0.148167,0.4699 -0.4699,0.842433 h -0.347133 q 0.2921,-0.397933 0.440266,-0.867833 0.1524,-0.474133 0.1524,-0.9652 0,-0.503767 -0.1524,-0.982133 -0.148166,-0.478367 -0.4445,-0.8763 h 0.351367 q 0.321733,0.385233 0.4699,0.867833 0.1524,0.478367 0.1524,0.994833 z" id="path2991" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="6 MOPs" id="text1250" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 1.1816205,-16.969757 q 0,-0.325967 0.055033,-0.639234 0.059267,-0.3175 0.2074333,-0.5715 0.1524,-0.258233 0.4233333,-0.410633 0.2709333,-0.1524 0.6985,-0.1524 0.0889,0 0.1947333,0.0085 0.1100667,0.0085 0.1778,0.02963 v 0.3175 q -0.0762,-0.0254 -0.1735667,-0.0381 -0.093133,-0.0127 -0.1904999,-0.0127 -0.2921,0 -0.4868334,0.09737 -0.1947333,0.09737 -0.3090333,0.2667 -0.1100666,0.169333 -0.1608666,0.389466 -0.0508,0.220134 -0.0635,0.4699 h 0.0254 q 0.097367,-0.148166 0.2709333,-0.249766 0.1735666,-0.105834 0.4445,-0.105834 0.3936999,0 0.6349999,0.2413 0.2413,0.237067 0.2413,0.677334 0,0.474133 -0.2624666,0.745066 -0.2582334,0.270934 -0.6985,0.270934 -0.2878666,0 -0.5207,-0.143934 -0.2328333,-0.143933 -0.3725333,-0.440266 -0.1354666,-0.296334 -0.1354666,-0.7493 z m 1.0244666,1.020233 q 0.2667,0 0.4317999,-0.169333 0.1651,-0.173567 0.1651,-0.5334 0,-0.287867 -0.1481666,-0.4572 -0.1439333,-0.169334 -0.4360333,-0.169334 -0.1989667,0 -0.3471333,0.08467 -0.1481667,0.08043 -0.2328334,0.207433 -0.080433,0.127 -0.080433,0.262467 0,0.182033 0.071967,0.364067 0.071967,0.1778 0.2159,0.296333 0.1439333,0.1143 0.3598333,0.1143 z" id="path2994" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 6.2151858,-15.678591 -0.9948333,-2.650066 h -0.016933 q 0.0127,0.131233 0.021167,0.3556 0.00847,0.220133 0.00847,0.461433 v 1.833033 H 4.8816859 v -3.0226 h 0.5630333 l 0.9313333,2.4765 h 0.016933 l 0.9482666,-2.4765 h 0.5588 v 3.0226 H 7.5232857 v -1.858433 q 0,-0.220133 0.00847,-0.436033 0.0127,-0.2159 0.021167,-0.351367 h -0.016933 l -1.0075332,2.645833 z" id="path2996" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 11.355511,-17.194124 q 0,0.4699 -0.160867,0.821267 -0.156633,0.347133 -0.465667,0.541866 -0.309033,0.194734 -0.766233,0.194734 -0.4699,0 -0.7831666,-0.194734 -0.3090333,-0.194733 -0.4614333,-0.5461 -0.1524,-0.351366 -0.1524,-0.821266 0,-0.465667 0.1524,-0.8128 0.1524,-0.347134 0.4614333,-0.541867 0.3132666,-0.194733 0.7874,-0.194733 0.4529666,0 0.7619996,0.194733 0.309034,0.1905 0.465667,0.541867 0.160867,0.347133 0.160867,0.817033 z m -2.3876003,0 q 0,0.5715 0.2413,0.9017 0.2413,0.325967 0.7535333,0.325967 0.516467,0 0.753533,-0.325967 0.237067,-0.3302 0.237067,-0.9017 0,-0.5715 -0.237067,-0.893233 -0.237066,-0.325967 -0.7492996,-0.325967 -0.5122334,0 -0.7577667,0.325967 -0.2413,0.321733 -0.2413,0.893233 z" id="path2998" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 12.825536,-18.701191 q 0.592667,0 0.8636,0.232834 0.270933,0.232833 0.270933,0.656166 0,0.249767 -0.1143,0.4699 -0.110066,0.2159 -0.376766,0.351367 -0.262467,0.135467 -0.715434,0.135467 h -0.347133 v 1.176866 h -0.381 v -3.0226 z m -0.03387,0.325967 h -0.385233 v 1.1938 h 0.3048 q 0.4318,0 0.643467,-0.1397 0.211666,-0.1397 0.211666,-0.474133 0,-0.2921 -0.186266,-0.436034 -0.186267,-0.143933 -0.588434,-0.143933 z" id="path3000" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 16.01522,-16.305124 q 0,0.3302 -0.245534,0.499533 -0.245533,0.169334 -0.6604,0.169334 -0.237066,0 -0.410633,-0.0381 -0.169333,-0.0381 -0.300567,-0.105834 v -0.338666 q 0.135467,0.06773 0.325967,0.127 0.194733,0.05503 0.3937,0.05503 0.283633,0 0.410633,-0.0889 0.127,-0.09313 0.127,-0.245533 0,-0.08467 -0.04657,-0.1524 -0.04657,-0.06773 -0.169334,-0.135467 -0.118533,-0.06773 -0.3429,-0.1524 -0.220133,-0.08467 -0.376766,-0.169333 -0.156634,-0.08467 -0.2413,-0.2032 -0.08467,-0.118534 -0.08467,-0.3048 0,-0.287867 0.232833,-0.4445 0.237067,-0.156634 0.618067,-0.156634 0.207433,0 0.385233,0.04233 0.182034,0.0381 0.338667,0.110066 l -0.127,0.296334 q -0.143933,-0.05927 -0.300567,-0.1016 -0.156633,-0.04233 -0.321733,-0.04233 -0.2286,0 -0.351367,0.0762 -0.118533,0.07197 -0.118533,0.198967 0,0.09313 0.05503,0.160867 0.05503,0.0635 0.182034,0.127 0.131233,0.05927 0.347133,0.143933 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.232833,0.207433 0.08043,0.118534 0.08043,0.300567 z" id="path3002" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 43.656251,54.906248 h 2.645833 l 4e-6,1.111251 1.85208,-0.3175 -3.175,3.174999 -3.175,-3.174999 1.85208,0.3175 z" id="path1502" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 43.656251,91.947915 h 2.645833 l 4e-6,-11.694584 1.85208,0.3175 -3.175,-3.174999 -3.175,3.174999 1.85208,-0.3175 z" id="path1261" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M 33.072918,69.458332 H 14.552084 l -6e-6,11.906251 h 3.96875 l 6e-6,-7.937501 h 14.552084 z" id="path1263" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 33.072918,58.875 h 25.00292 v 18.388332 h -25.00292 z" id="rect1252" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="M 6.6145396,87.979125 V 102.53121 H -4.3368644e-5 v 3.96875 H 17.197872 v -3.96875 H 10.583289 V 87.979125 Z" id="path1470" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M -27.781282,91.947914 H -3.4332275e-5 V 117.08333 H -27.781282 Z" id="rect1262" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="m -21.166666,81.364582 h 59.53125 l -3.96876,6.61458 h -51.59375 z" id="path1344" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="Multiplexer" id="text1348" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -1.0567551,85.771545 -0.9948333,-2.650066 h -0.016933 q 0.0127,0.131233 0.021167,0.3556 0.00847,0.220133 0.00847,0.461433 v 1.833033 H -2.390255 v -3.022599 h 0.5630333 l 0.93133324,2.476499 h 0.0169333 l 0.94826662,-2.476499 h 0.55879997 v 3.022599 H 0.25134481 v -1.858433 q 0,-0.220133 0.008467,-0.436033 0.0127,-0.2159 0.0211667,-0.351367 h -0.0169333 l -1.00753328,2.645833 z" id="path3007" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 3.2919364,83.502479 v 2.269066 h -0.3048 l -0.055033,-0.300566 h -0.016933 q -0.1100666,0.1778 -0.3047999,0.262466 -0.1947334,0.08043 -0.4148667,0.08043 -0.4106333,0 -0.6180666,-0.194734 -0.2074333,-0.198966 -0.2074333,-0.630766 v -1.4859 h 0.3767666 v 1.4605 q 0,0.541866 0.5037666,0.541866 0.3767667,0 0.5207,-0.211666 0.1481667,-0.211667 0.1481667,-0.6096 v -1.1811 z" id="path3009" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 4.380697,85.771545 H 4.0081637 V 82.554212 H 4.380697 Z" id="path3011" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 5.8573362,85.509079 q 0.084667,0 0.1735667,-0.0127 0.0889,-0.01693 0.1439333,-0.03387 v 0.283633 q -0.059267,0.02963 -0.1693333,0.04657 -0.1100667,0.02117 -0.2116667,0.02117 -0.1778,0 -0.3302,-0.05927 -0.1481666,-0.0635 -0.2413,-0.2159 -0.093133,-0.1524 -0.093133,-0.427567 V 83.790346 H 4.8074696 v -0.1778 l 0.3259666,-0.148167 0.1481667,-0.4826 h 0.2201333 v 0.5207 h 0.6561666 v 0.287867 H 5.5017362 v 1.312333 q 0,0.207433 0.097367,0.309033 0.1016,0.09737 0.2582333,0.09737 z" id="path3013" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 6.8196916,82.651579 q 0.084667,0 0.1481667,0.05927 0.067733,0.05503 0.067733,0.1778 0,0.118533 -0.067733,0.1778 -0.0635,0.05927 -0.1481667,0.05927 -0.093133,0 -0.1566333,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.1566333,-0.05927 z m 0.1820334,0.8509 v 2.269066 H 6.6291916 v -2.269066 z" id="path3015" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 8.8000984,83.460146 q 0.4191,0 0.6731,0.2921 0.2582333,0.2921 0.2582333,0.880533 0,0.579966 -0.2582333,0.880533 -0.254,0.300567 -0.6773333,0.300567 -0.2624667,0 -0.4360333,-0.09737 -0.1693334,-0.1016 -0.2667,-0.232833 h -0.0254 q 0.00847,0.07197 0.016933,0.182033 0.00847,0.110067 0.00847,0.1905 v 0.931333 H 7.7205985 v -3.285066 h 0.3048 l 0.0508,0.309033 h 0.016933 q 0.1016,-0.148166 0.2667,-0.249766 0.1651,-0.1016 0.4402666,-0.1016 z m -0.067733,0.313266 q -0.3471333,0 -0.4910667,0.194734 -0.1396999,0.194733 -0.1481666,0.592666 v 0.07197 q 0,0.4191 0.1354666,0.6477 0.1397,0.224366 0.5122334,0.224366 0.2074333,0 0.3386666,-0.1143 0.1354667,-0.1143 0.1989667,-0.309033 0.067733,-0.198967 0.067733,-0.452967 0,-0.389466 -0.1524,-0.622299 -0.1481667,-0.232834 -0.4614333,-0.232834 z" id="path3017" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 10.697624,85.771545 h -0.372533 v -3.217333 h 0.372533 z" id="path3019" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 12.292796,83.460146 q 0.2921,0 0.499534,0.127 0.211666,0.127 0.321733,0.359833 0.1143,0.2286 0.1143,0.537633 v 0.224367 H 11.67473 q 0.0085,0.385233 0.194733,0.588433 0.1905,0.198967 0.529167,0.198967 0.2159,0 0.381,-0.0381 0.169333,-0.04233 0.347133,-0.118534 v 0.325967 q -0.173567,0.0762 -0.3429,0.110067 -0.169333,0.0381 -0.402167,0.0381 -0.321733,0 -0.571499,-0.131234 -0.245534,-0.131233 -0.385234,-0.389466 -0.135466,-0.262467 -0.135466,-0.639234 0,-0.372533 0.122766,-0.639233 0.127,-0.2667 0.351367,-0.410633 0.2286,-0.143933 0.529166,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173566 -0.1524,0.169333 -0.182033,0.474133 h 1.155699 q -0.0042,-0.287866 -0.135466,-0.465666 -0.131234,-0.182033 -0.414867,-0.182033 z" id="path3021" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 14.260965,84.611612 -0.783167,-1.109133 h 0.423334 l 0.5842,0.855133 0.579966,-0.855133 h 0.4191 l -0.783166,1.109133 0.8255,1.159933 h -0.423334 l -0.618066,-0.905933 -0.626534,0.905933 h -0.4191 z" id="path3023" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 16.75764,83.460146 q 0.2921,0 0.499534,0.127 0.211666,0.127 0.321733,0.359833 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.553633 q 0.0085,0.385233 0.194733,0.588433 0.1905,0.198967 0.529167,0.198967 0.2159,0 0.381,-0.0381 0.169333,-0.04233 0.347133,-0.118534 v 0.325967 q -0.173567,0.0762 -0.3429,0.110067 -0.169333,0.0381 -0.402167,0.0381 -0.321733,0 -0.5715,-0.131234 -0.245533,-0.131233 -0.385233,-0.389466 -0.135467,-0.262467 -0.135467,-0.639234 0,-0.372533 0.122767,-0.639233 0.127,-0.2667 0.351367,-0.410633 0.2286,-0.143933 0.529166,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173566 -0.1524,0.169333 -0.182034,0.474133 h 1.1557 q -0.0042,-0.287866 -0.135466,-0.465666 -0.131234,-0.182033 -0.414867,-0.182033 z" id="path3025" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 19.32919,83.460146 q 0.0635,0 0.135467,0.0085 0.0762,0.0042 0.131233,0.01693 l -0.04657,0.3429 q -0.05503,-0.0127 -0.122767,-0.02117 -0.0635,-0.0085 -0.122767,-0.0085 -0.173566,0 -0.325966,0.09737 -0.1524,0.09313 -0.245534,0.2667 -0.0889,0.169333 -0.0889,0.397933 v 1.210733 h -0.372533 v -2.269066 h 0.3048 l 0.04233,0.414867 h 0.01693 q 0.110066,-0.186267 0.283633,-0.321734 0.173567,-0.135466 0.410633,-0.135466 z" id="path3027" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="3-4 µOPs" id="text1352" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -6.2016142,47.228023 q -0.254,0 -0.4056944,-0.141111 -0.1481667,-0.141111 -0.1975556,-0.381 h -0.014111 q -0.035278,0.303389 -0.1905,0.451555 -0.1552222,0.148167 -0.4056944,0.148167 -0.2187222,0 -0.3915833,-0.102306 -0.1693333,-0.102305 -0.2645833,-0.3175 -0.09525,-0.211666 -0.09525,-0.546805 0,-0.197556 0.03175,-0.366889 0.028222,-0.169333 0.1058333,-0.324556 h 0.2892778 q -0.077611,0.15875 -0.1234723,0.342195 -0.042333,0.183444 -0.042333,0.352778 0,0.338666 0.1305278,0.486833 0.1340555,0.151694 0.3668889,0.151694 0.2363611,0 0.3386666,-0.186972 0.1058334,-0.183444 0.1058334,-0.518583 v -0.243417 h 0.2645833 v 0.246945 q 0,0.310444 0.1305278,0.469194 0.1305277,0.162278 0.3457222,0.162278 0.1834444,0 0.2822222,-0.123472 0.1023055,-0.123473 0.1023055,-0.335139 0,-0.204611 -0.059972,-0.34925 -0.059972,-0.144639 -0.1516944,-0.28575 l 0.2116666,-0.155223 q 0.1058334,0.134056 0.1834445,0.331612 0.077611,0.201083 0.077611,0.455083 0,0.395111 -0.1763889,0.585611 -0.1763889,0.194028 -0.4480283,0.194028 z" id="path16099" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -7.3234475,47.647828 h 0.2751667 v 0.853722 h -0.2751667 z" id="path16101" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -7.5598086,50.589995 v -0.366889 h -0.5715 v -0.299861 h 0.5715 v -1.2065 h 0.2645834 l 1.696861,1.185333 v 0.321028 h -1.6827499 v 0.366889 z m 0.2786945,-0.66675 h 0.7937499 q 0.1834445,0 0.3104445,0.0071 0.1305277,0.0071 0.2469444,0.01058 v -0.01411 q -0.067028,-0.02822 -0.1446389,-0.07056 -0.077611,-0.04233 -0.1305277,-0.08114 l -1.0759722,-0.754944 z" id="path16103" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -6.2404197,53.475717 h -1.8908889 v -0.250472 l 0.254,-0.04939 v -0.01764 q -0.1411111,-0.08819 -0.2151944,-0.229306 -0.074083,-0.141111 -0.074083,-0.338666 0,-0.137584 0.042333,-0.236362 0.045861,-0.09878 0.1164167,-0.169333 v -0.01411 q -0.0635,0.0071 -0.1693334,0.01058 -0.1058333,0.0071 -0.2504722,0.0071 h -0.5503333 v -0.310445 h 2.7375555 v 0.310445 h -1.2206111 q -0.4480278,0 -0.4480278,0.423333 0,0.313972 0.1763889,0.433917 0.1763889,0.119944 0.508,0.119944 h 0.98425 z" id="path16105" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -6.8683641,56.315578 q -0.3915834,0 -0.6843889,-0.134055 -0.2892778,-0.130528 -0.4515556,-0.388056 -0.1622777,-0.257528 -0.1622777,-0.638528 0,-0.391583 0.1622777,-0.652639 0.1622778,-0.257527 0.4550834,-0.384527 0.2928055,-0.127 0.6843888,-0.127 0.3880556,0 0.6773333,0.127 0.2892778,0.127 0.4515556,0.384527 0.1622778,0.261056 0.1622778,0.656167 0,0.377472 -0.1622778,0.635 -0.15875,0.257528 -0.4515556,0.388056 -0.2892777,0.134055 -0.680861,0.134055 z m 0,-1.989666 q -0.47625,0 -0.7514167,0.201083 -0.2716389,0.201083 -0.2716389,0.627944 0,0.430389 0.2716389,0.627945 0.2751667,0.197555 0.7514167,0.197555 0.4762499,0 0.744361,-0.197555 0.2716389,-0.197556 0.2716389,-0.624417 0,-0.426861 -0.2716389,-0.631472 -0.2681111,-0.201083 -0.744361,-0.201083 z" id="path16107" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -5.6124753,57.539716 q 0,0.493889 -0.1940278,0.719667 -0.1940277,0.225778 -0.5468055,0.225778 -0.2081389,0 -0.3915833,-0.09525 -0.1799167,-0.09172 -0.2928056,-0.313972 -0.1128889,-0.218723 -0.1128889,-0.596195 v -0.289278 h -0.9807222 v -0.3175 h 2.5188333 z m -0.2716389,-0.02822 v -0.321028 h -0.9948333 v 0.254 q 0,0.359834 0.1164167,0.536223 0.1164166,0.176388 0.3951111,0.176388 0.2434166,0 0.3633611,-0.155222 0.1199444,-0.155222 0.1199444,-0.490361 z" id="path16109" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -7.6091975,60.196133 q -0.2751666,0 -0.4162777,-0.204611 -0.1411111,-0.204611 -0.1411111,-0.550333 0,-0.197556 0.03175,-0.342194 0.03175,-0.141112 0.088194,-0.250473 h 0.2822222 q -0.056444,0.112889 -0.1058333,0.271639 -0.045861,0.162278 -0.045861,0.328084 0,0.236361 0.074083,0.342194 0.077611,0.105833 0.2046111,0.105833 0.070556,0 0.127,-0.03881 0.056444,-0.03881 0.1128889,-0.141111 0.056444,-0.09878 0.127,-0.28575 0.070556,-0.183445 0.1411111,-0.313973 0.070556,-0.130527 0.1693333,-0.201083 0.098778,-0.07056 0.254,-0.07056 0.2398889,0 0.3704167,0.194027 0.1305278,0.197556 0.1305278,0.515056 0,0.172861 -0.035278,0.321028 -0.03175,0.151694 -0.091722,0.282222 L -6.579087,60.051485 q 0.049389,-0.119945 0.084667,-0.250473 0.035278,-0.130527 0.035278,-0.268111 0,-0.1905 -0.0635,-0.292805 -0.059972,-0.09878 -0.1658056,-0.09878 -0.077611,0 -0.1340555,0.04586 -0.052917,0.04586 -0.1058334,0.151694 -0.049389,0.109362 -0.1199444,0.289278 -0.067028,0.179917 -0.1375833,0.306917 -0.070556,0.127 -0.1728611,0.194028 -0.098778,0.06703 -0.2504723,0.06703 z" id="path16111" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="µOP" id="text1363" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 1.6970803,51.215883 h -1.89088886 v -0.250472 l 0.254,-0.04939 v -0.01764 q -0.14111111,-0.08819 -0.21519444,-0.229305 -0.0740833,-0.141112 -0.0740833,-0.338667 0,-0.137583 0.0423333,-0.236361 0.0458611,-0.09878 0.11641666,-0.169334 v -0.01411 q -0.0635,0.0071 -0.16933333,0.01058 -0.10583333,0.0071 -0.25047221,0.0071 H -1.0404752 V 49.6178 h 2.7375555 v 0.310444 H 0.4764692 q -0.44802776,0 -0.44802776,0.423334 0,0.313972 0.17638888,0.433916 0.17638888,0.119945 0.50799999,0.119945 H 1.6970803 Z" id="path15875" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 1.0691359,54.055744 q -0.39158337,0 -0.68438892,-0.134056 -0.28927777,-0.130527 -0.45155554,-0.388055 -0.16227777,-0.257528 -0.16227777,-0.638528 0,-0.391583 0.16227777,-0.652639 0.16227777,-0.257527 0.45508332,-0.384527 0.29280555,-0.127 0.68438884,-0.127 0.3880556,0 0.6773333,0.127 0.2892778,0.127 0.4515556,0.384527 0.1622778,0.261056 0.1622778,0.656167 0,0.377472 -0.1622778,0.635 -0.15875,0.257528 -0.4515556,0.388055 -0.2892777,0.134056 -0.680861,0.134056 z m 0,-1.989667 q -0.47625003,0 -0.75141669,0.201084 -0.27163888,0.201083 -0.27163888,0.627944 0,0.430389 0.27163888,0.627945 0.27516666,0.197555 0.75141669,0.197555 0.4762499,0 0.744361,-0.197555 0.2716389,-0.197556 0.2716389,-0.624417 0,-0.426861 -0.2716389,-0.631472 -0.2681111,-0.201084 -0.744361,-0.201084 z" id="path15877" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 2.3250247,55.279883 q 0,0.493889 -0.1940278,0.719667 -0.1940277,0.225778 -0.5468055,0.225778 -0.2081389,0 -0.3915833,-0.09525 Q 1.0126914,56.038355 0.89980252,55.816105 0.78691364,55.597383 0.78691364,55.219911 v -0.289278 h -0.9807222 v -0.3175 H 2.3250247 Z M 2.0533858,55.251661 V 54.930633 H 1.0585525 v 0.254 q 0,0.359833 0.1164167,0.536222 0.1164166,0.176389 0.3951111,0.176389 0.2434166,0 0.3633611,-0.155222 0.1199444,-0.155222 0.1199444,-0.490361 z" id="path15879" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="µOP" id="text1367" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 9.6345803,51.215875 H 7.7436914 v -0.250472 l 0.254,-0.04939 v -0.01764 Q 7.8565803,50.810181 7.782497,50.66907 7.708414,50.527959 7.708414,50.330403 q 0,-0.137583 0.042333,-0.236361 0.045861,-0.09878 0.1164167,-0.169333 v -0.01411 q -0.0635,0.0071 -0.1693334,0.01058 -0.1058333,0.0071 -0.2504722,0.0071 H 6.8970248 v -0.310445 h 2.7375555 v 0.310445 H 8.4139692 q -0.4480278,0 -0.4480278,0.423333 0,0.313972 0.1763889,0.433917 0.1763889,0.119944 0.508,0.119944 h 0.98425 z" id="path15868" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 9.0066359,54.055736 q -0.3915834,0 -0.6843889,-0.134055 -0.2892778,-0.130528 -0.4515556,-0.388056 -0.1622777,-0.257527 -0.1622777,-0.638527 0,-0.391584 0.1622777,-0.652639 0.1622778,-0.257528 0.4550834,-0.384528 0.2928055,-0.127 0.6843888,-0.127 0.3880556,0 0.6773333,0.127 0.2892778,0.127 0.4515551,0.384528 0.162278,0.261055 0.162278,0.656166 0,0.377473 -0.162278,0.635 -0.1587495,0.257528 -0.4515551,0.388056 -0.2892777,0.134055 -0.680861,0.134055 z m 0,-1.989666 q -0.47625,0 -0.7514167,0.201083 -0.2716389,0.201083 -0.2716389,0.627945 0,0.430388 0.2716389,0.627944 0.2751667,0.197555 0.7514167,0.197555 0.4762499,0 0.744361,-0.197555 0.2716391,-0.197556 0.2716391,-0.624417 0,-0.426861 -0.2716391,-0.631472 Q 9.4828858,52.06607 9.0066359,52.06607 Z" id="path15870" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 10.262525,55.279876 q 0,0.493888 -0.194028,0.719666 -0.1940278,0.225778 -0.5468056,0.225778 -0.2081389,0 -0.3915833,-0.09525 Q 8.9501914,56.038348 8.8373025,55.816098 8.7244136,55.597376 8.7244136,55.219903 V 54.930626 H 7.7436914 v -0.3175 H 10.262525 Z M 9.9908858,55.251653 V 54.930626 H 8.9960525 v 0.254 q 0,0.359833 0.1164167,0.536222 0.1164166,0.176389 0.3951111,0.176389 0.2434166,0 0.3633611,-0.155223 0.1199444,-0.155222 0.1199444,-0.490361 z" id="path15872" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="µOP" id="text1373" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 17.572079,51.215875 H 15.68119 v -0.250472 l 0.254,-0.04939 v -0.01764 q -0.141111,-0.08819 -0.215194,-0.229305 -0.07408,-0.141111 -0.07408,-0.338667 0,-0.137583 0.04233,-0.236361 0.04586,-0.09878 0.116417,-0.169333 v -0.01411 q -0.0635,0.0071 -0.169334,0.01058 -0.105833,0.0071 -0.250472,0.0071 h -0.550333 v -0.310445 h 2.737555 v 0.310445 h -1.220611 q -0.448028,0 -0.448028,0.423333 0,0.313972 0.176389,0.433917 0.176389,0.119944 0.508,0.119944 h 0.98425 z" id="path15861" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 16.944135,54.055736 q -0.391583,0 -0.684389,-0.134055 -0.289278,-0.130528 -0.451556,-0.388056 -0.162277,-0.257527 -0.162277,-0.638527 0,-0.391584 0.162277,-0.652639 0.162278,-0.257528 0.455084,-0.384528 0.292805,-0.127 0.684389,-0.127 0.388055,0 0.677333,0.127 0.289278,0.127 0.451556,0.384528 0.162277,0.261055 0.162277,0.656166 0,0.377473 -0.162277,0.635 -0.15875,0.257528 -0.451556,0.388056 -0.289278,0.134055 -0.680861,0.134055 z m 0,-1.989666 q -0.47625,0 -0.751417,0.201083 -0.271639,0.201083 -0.271639,0.627945 0,0.430388 0.271639,0.627944 0.275167,0.197555 0.751417,0.197555 0.47625,0 0.744361,-0.197555 0.271639,-0.197556 0.271639,-0.624417 0,-0.426861 -0.271639,-0.631472 -0.268111,-0.201083 -0.744361,-0.201083 z" id="path15863" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 18.200024,55.279876 q 0,0.493888 -0.194028,0.719666 -0.194028,0.225778 -0.546806,0.225778 -0.208138,0 -0.391583,-0.09525 -0.179917,-0.09172 -0.292805,-0.313972 -0.112889,-0.218722 -0.112889,-0.596195 V 54.930626 H 15.68119 v -0.3175 h 2.518834 z m -0.271639,-0.02822 v -0.321027 h -0.994833 v 0.254 q 0,0.359833 0.116416,0.536222 0.116417,0.176389 0.395111,0.176389 0.243417,0 0.363361,-0.155223 0.119945,-0.155222 0.119945,-0.490361 z" id="path15865" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="µOP" id="text1379" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 25.509579,51.215875 H 23.61869 v -0.250472 l 0.254,-0.04939 v -0.01764 q -0.141111,-0.08819 -0.215194,-0.229305 -0.07408,-0.141111 -0.07408,-0.338667 0,-0.137583 0.04233,-0.236361 0.04586,-0.09878 0.116417,-0.169333 v -0.01411 q -0.0635,0.0071 -0.169334,0.01058 -0.105833,0.0071 -0.250472,0.0071 h -0.550333 v -0.310445 h 2.737555 v 0.310445 h -1.220611 q -0.448028,0 -0.448028,0.423333 0,0.313972 0.176389,0.433917 0.176389,0.119944 0.508,0.119944 h 0.98425 z" id="path15854" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 24.881635,54.055736 q -0.391583,0 -0.684389,-0.134055 -0.289278,-0.130528 -0.451556,-0.388056 -0.162277,-0.257527 -0.162277,-0.638527 0,-0.391584 0.162277,-0.652639 0.162278,-0.257528 0.455084,-0.384528 0.292805,-0.127 0.684389,-0.127 0.388055,0 0.677333,0.127 0.289278,0.127 0.451556,0.384528 0.162277,0.261055 0.162277,0.656166 0,0.377473 -0.162277,0.635 -0.15875,0.257528 -0.451556,0.388056 -0.289278,0.134055 -0.680861,0.134055 z m 0,-1.989666 q -0.47625,0 -0.751417,0.201083 -0.271639,0.201083 -0.271639,0.627945 0,0.430388 0.271639,0.627944 0.275167,0.197555 0.751417,0.197555 0.47625,0 0.744361,-0.197555 0.271639,-0.197556 0.271639,-0.624417 0,-0.426861 -0.271639,-0.631472 -0.268111,-0.201083 -0.744361,-0.201083 z" id="path15856" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 26.137524,55.279876 q 0,0.493888 -0.194028,0.719666 -0.194028,0.225778 -0.546806,0.225778 -0.208138,0 -0.391583,-0.09525 -0.179917,-0.09172 -0.292805,-0.313972 -0.112889,-0.218722 -0.112889,-0.596195 V 54.930626 H 23.61869 v -0.3175 h 2.518834 z m -0.271639,-0.02822 v -0.321027 h -0.994833 v 0.254 q 0,0.359833 0.116416,0.536222 0.116417,0.176389 0.395111,0.176389 0.243417,0 0.363361,-0.155223 0.119945,-0.155222 0.119945,-0.490361 z" id="path15858" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="5 µOPs" id="text1384" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 9.28886,66.524863 q 0,0.388056 -0.1940278,0.617361 -0.1940278,0.229306 -0.5468055,0.229306 -0.3915834,0 -0.6173611,-0.250472 -0.22225,-0.246945 -0.22225,-0.691445 0,-0.194028 0.035278,-0.366889 0.035278,-0.169333 0.1023055,-0.28575 h 0.2928056 q -0.077611,0.127 -0.1234723,0.306917 -0.042333,0.183444 -0.042333,0.34925 0,0.278694 0.1305278,0.448028 0.1340555,0.172861 0.41275,0.172861 0.2469444,0 0.3774722,-0.151695 0.1340555,-0.151694 0.1340555,-0.479777 0,-0.09878 -0.017639,-0.225778 -0.017639,-0.127 -0.035278,-0.204611 l 0.098778,-0.155222 1.1888611,0.09525 v 1.262944 H 9.9803044 V 66.19678 l -0.73025,-0.05997 q 0.010583,0.05997 0.024695,0.162277 0.014111,0.102306 0.014111,0.225778 z" id="path15897" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 9.6345822,70.38778 H 7.7436934 v -0.250472 l 0.2539999,-0.04939 v -0.01764 q -0.1411111,-0.08819 -0.2151944,-0.229306 -0.074083,-0.141111 -0.074083,-0.338666 0,-0.137584 0.042333,-0.236362 0.045861,-0.09878 0.1164167,-0.169333 v -0.01411 q -0.0635,0.0071 -0.1693334,0.01058 -0.1058333,0.0071 -0.2504722,0.0071 H 6.8970267 v -0.310445 h 2.7375555 v 0.310445 H 8.4139711 q -0.4480278,0 -0.4480278,0.423333 0,0.313972 0.1763889,0.433917 0.1763889,0.119944 0.508,0.119944 h 0.98425 z" id="path15899" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 9.0066378,73.227641 q -0.3915834,0 -0.6843889,-0.134056 Q 8.0329711,72.963057 7.8706933,72.70553 7.7084156,72.448002 7.7084156,72.067002 q 0,-0.391583 0.1622777,-0.652639 0.1622778,-0.257528 0.4550834,-0.384528 0.2928055,-0.127 0.6843888,-0.127 0.3880556,0 0.6773333,0.127 0.2892778,0.127 0.4515552,0.384528 0.162278,0.261056 0.162278,0.656167 0,0.377472 -0.162278,0.635 -0.1587496,0.257527 -0.4515552,0.388055 -0.2892777,0.134056 -0.680861,0.134056 z m 0,-1.989667 q -0.47625,0 -0.7514167,0.201083 -0.2716389,0.201084 -0.2716389,0.627945 0,0.430389 0.2716389,0.627944 0.2751667,0.197556 0.7514167,0.197556 0.4762499,0 0.744361,-0.197556 0.2716392,-0.197555 0.2716392,-0.624416 0,-0.426861 -0.2716392,-0.631473 -0.2681111,-0.201083 -0.744361,-0.201083 z" id="path15901" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 10.262527,74.451779 q 0,0.493889 -0.194028,0.719667 -0.1940279,0.225778 -0.5468057,0.225778 -0.2081389,0 -0.3915833,-0.09525 Q 8.9501933,75.210252 8.8373044,74.988002 8.7244155,74.769279 8.7244155,74.391807 V 74.102529 H 7.7436934 v -0.3175 H 10.262527 Z M 9.9908877,74.423557 V 74.102529 H 8.9960544 v 0.254 q 0,0.359834 0.1164167,0.536223 0.1164167,0.176388 0.3951111,0.176388 0.2434166,0 0.3633611,-0.155222 0.1199444,-0.155222 0.1199444,-0.490361 z" id="path15903" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 8.2658044,77.108196 q -0.2751666,0 -0.4162777,-0.204611 -0.1411111,-0.204611 -0.1411111,-0.550333 0,-0.197556 0.03175,-0.342195 0.03175,-0.141111 0.088194,-0.250472 h 0.2822222 q -0.056444,0.112889 -0.1058333,0.271639 -0.045861,0.162278 -0.045861,0.328083 0,0.236361 0.074083,0.342195 0.077611,0.105833 0.2046111,0.105833 0.070556,0 0.127,-0.03881 0.056445,-0.03881 0.1128889,-0.141111 0.056444,-0.09878 0.127,-0.28575 0.070556,-0.183444 0.1411111,-0.313972 0.070556,-0.130528 0.1693333,-0.201083 0.098778,-0.07056 0.254,-0.07056 0.2398889,0 0.3704167,0.194028 0.1305278,0.197555 0.1305278,0.515055 0,0.172862 -0.035278,0.321028 -0.03175,0.151695 -0.091722,0.282222 L 9.2959155,76.963557 q 0.049389,-0.119944 0.084667,-0.250472 0.035278,-0.130528 0.035278,-0.268111 0,-0.1905 -0.0635,-0.292806 -0.059972,-0.09878 -0.1658056,-0.09878 -0.077611,0 -0.1340555,0.04586 -0.052917,0.04586 -0.1058334,0.151694 -0.049389,0.109361 -0.1199444,0.289278 -0.067028,0.179916 -0.1375833,0.306916 -0.070556,0.127 -0.1728611,0.194028 -0.098778,0.06703 -0.2504723,0.06703 z" id="path15905" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="4 µOPs" id="text1401" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 19.944513,71.726451 h -0.366889 v 0.5715 h -0.299861 v -0.5715 h -1.2065 v -0.264584 l 1.185333,-1.696861 h 0.321028 v 1.68275 h 0.366889 z m -0.66675,-0.278695 v -0.79375 q 0,-0.183444 0.0071,-0.310444 0.0071,-0.130528 0.01058,-0.246945 h -0.01411 q -0.02822,0.06703 -0.07056,0.144639 -0.04233,0.07761 -0.08114,0.130528 l -0.754944,1.075972 z" id="path3030" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 22.830345,70.407062 v 1.890889 h -0.250472 l -0.04939,-0.254 h -0.01764 q -0.08819,0.141111 -0.229305,0.215194 -0.141111,0.07408 -0.338667,0.07408 -0.137583,0 -0.236361,-0.04233 -0.09878,-0.04586 -0.169333,-0.116416 h -0.01411 q 0.0071,0.0635 0.01058,0.169333 0.0071,0.105833 0.0071,0.250472 v 0.550333 h -0.310445 v -2.737555 h 0.310445 v 1.220611 q 0,0.448028 0.423333,0.448028 0.313972,0 0.433917,-0.176389 0.119944,-0.176389 0.119944,-0.508 v -0.98425 z" id="path3032" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 25.670372,71.035006 q 0,0.391584 -0.134056,0.684389 -0.130528,0.289278 -0.388055,0.451556 -0.257528,0.162278 -0.638528,0.162278 -0.391584,0 -0.652639,-0.162278 -0.257528,-0.162278 -0.384528,-0.455084 -0.127,-0.292805 -0.127,-0.684388 0,-0.388056 0.127,-0.677334 0.127,-0.289278 0.384528,-0.451555 0.261055,-0.162278 0.656167,-0.162278 0.377472,0 0.635,0.162278 0.257527,0.15875 0.388055,0.451555 0.134056,0.289278 0.134056,0.680861 z m -1.989667,0 q 0,0.47625 0.201083,0.751417 0.201084,0.271639 0.627945,0.271639 0.430389,0 0.627944,-0.271639 0.197556,-0.275167 0.197556,-0.751417 0,-0.47625 -0.197556,-0.744361 -0.197555,-0.271639 -0.624416,-0.271639 -0.426862,0 -0.631473,0.271639 -0.201083,0.268111 -0.201083,0.744361 z" id="path3034" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 26.895392,69.779117 q 0.493889,0 0.719667,0.194028 0.225778,0.194028 0.225778,0.546806 0,0.208139 -0.09525,0.391583 -0.09172,0.179917 -0.313972,0.292806 -0.218723,0.112889 -0.596195,0.112889 h -0.289278 v 0.980722 h -0.3175 v -2.518834 z m -0.02822,0.271639 h -0.321028 v 0.994834 h 0.254 q 0.359834,0 0.536223,-0.116417 0.176389,-0.116417 0.176389,-0.395111 0,-0.243417 -0.155223,-0.363361 -0.155222,-0.119945 -0.490361,-0.119945 z" id="path3036" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 29.553463,71.77584 q 0,0.275166 -0.204611,0.416277 -0.204612,0.141112 -0.550334,0.141112 -0.197555,0 -0.342194,-0.03175 -0.141111,-0.03175 -0.250472,-0.08819 v -0.282222 q 0.112889,0.05644 0.271638,0.105833 0.162278,0.04586 0.328084,0.04586 0.236361,0 0.342194,-0.07408 0.105834,-0.07761 0.105834,-0.204611 0,-0.07056 -0.03881,-0.127 -0.03881,-0.05645 -0.141111,-0.112889 -0.09878,-0.05644 -0.28575,-0.127 -0.183445,-0.07056 -0.313972,-0.141111 -0.130528,-0.07056 -0.201084,-0.169333 -0.07055,-0.09878 -0.07055,-0.254 0,-0.239889 0.194028,-0.370417 0.197555,-0.130528 0.515055,-0.130528 0.172861,0 0.321028,0.03528 0.151694,0.03175 0.282222,0.09172 l -0.105833,0.246945 q -0.119945,-0.04939 -0.250472,-0.08467 -0.130528,-0.03528 -0.268112,-0.03528 -0.1905,0 -0.292805,0.0635 -0.09878,0.05997 -0.09878,0.165806 0,0.07761 0.04586,0.134055 0.04586,0.05292 0.151695,0.105834 0.109361,0.04939 0.289277,0.119944 0.179917,0.06703 0.306917,0.137583 0.127,0.07056 0.194028,0.172861 0.06703,0.09878 0.06703,0.250473 z" id="path3038" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Stack Engine" id="text1409" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -24.406624,95.666829 q 0,0.402166 -0.2921,0.626533 -0.2921,0.224367 -0.7874,0.224367 -0.254,0 -0.4699,-0.0381 -0.2159,-0.0381 -0.359833,-0.105834 v -0.364066 q 0.1524,0.06773 0.376767,0.122766 0.2286,0.05503 0.4699,0.05503 0.338666,0 0.508,-0.131234 0.173566,-0.131233 0.173566,-0.3556 0,-0.148166 -0.0635,-0.249766 -0.0635,-0.1016 -0.220133,-0.186267 -0.1524,-0.0889 -0.427567,-0.186267 -0.385233,-0.1397 -0.5842,-0.3429 -0.194733,-0.2032 -0.194733,-0.554566 0,-0.2413 0.122767,-0.410634 0.122766,-0.173566 0.338666,-0.2667 0.220134,-0.09313 0.503767,-0.09313 0.249767,0 0.4572,0.04657 0.207433,0.04657 0.376767,0.122766 l -0.118534,0.325967 q -0.156633,-0.06773 -0.3429,-0.1143 -0.182033,-0.04657 -0.381,-0.04657 -0.283633,0 -0.427566,0.122767 -0.143934,0.118533 -0.143934,0.3175 0,0.1524 0.0635,0.254 0.0635,0.1016 0.207434,0.182033 0.143933,0.08043 0.389466,0.173567 0.2667,0.09737 0.448734,0.211667 0.186266,0.110066 0.2794,0.2667 0.09737,0.156633 0.09737,0.3937 z" id="path3041" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -23.090785,96.212929 q 0.08467,0 0.173567,-0.0127 0.0889,-0.01693 0.143933,-0.03387 v 0.283633 q -0.05927,0.02963 -0.169333,0.04657 -0.110067,0.02117 -0.211667,0.02117 -0.177799,0 -0.330199,-0.05927 -0.148167,-0.0635 -0.2413,-0.2159 -0.09313,-0.1524 -0.09313,-0.427567 v -1.3208 h -0.321733 v -0.1778 l 0.325967,-0.148166 0.148166,-0.4826 h 0.220134 v 0.5207 h 0.656166 v 0.287866 h -0.656166 v 1.312334 q 0,0.207433 0.09737,0.309033 0.1016,0.09737 0.258233,0.09737 z" id="path3043" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -21.459562,94.168229 q 0.414866,0 0.613833,0.182033 0.198967,0.182033 0.198967,0.579967 v 1.545166 h -0.270934 l -0.07197,-0.321733 h -0.01693 q -0.148166,0.186267 -0.313266,0.275167 -0.160867,0.0889 -0.448734,0.0889 -0.309033,0 -0.512233,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.821267,-0.2032 l 0.385233,-0.0127 v -0.135467 q 0,-0.283633 -0.122767,-0.3937 -0.122766,-0.110067 -0.347133,-0.110067 -0.1778,0 -0.338667,0.05503 -0.160866,0.0508 -0.300566,0.118533 l -0.1143,-0.2794 q 0.148166,-0.08043 0.351366,-0.135467 0.2032,-0.05927 0.423334,-0.05927 z m 0.4445,1.198033 -0.334434,0.0127 q -0.423333,0.01693 -0.588433,0.135467 -0.160867,0.118533 -0.160867,0.334433 0,0.1905 0.1143,0.2794 0.118534,0.0889 0.300567,0.0889 0.287867,0 0.478367,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path3045" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -19.035781,96.517729 q -0.300567,0 -0.537633,-0.122767 -0.232834,-0.122767 -0.3683,-0.381 -0.131234,-0.258233 -0.131234,-0.6604 0,-0.4191 0.1397,-0.681567 0.1397,-0.262466 0.376767,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.173567,0 0.334433,0.0381 0.160867,0.03387 0.262467,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.237067,-0.07197 -0.135466,-0.03387 -0.254,-0.03387 -0.668866,0 -0.668866,0.859367 0,0.410633 0.160866,0.630766 0.1651,0.2159 0.486834,0.2159 0.186266,0 0.325966,-0.0381 0.143934,-0.0381 0.262467,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.135467,0.03387 -0.3302,0.03387 z" id="path3047" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -17.543663,93.258062 v 1.680633 q 0,0.06773 -0.0085,0.1778 -0.0042,0.110067 -0.0085,0.1905 h 0.01693 q 0.0254,-0.03387 0.0762,-0.09737 0.0508,-0.0635 0.1016,-0.127 0.05503,-0.06773 0.09313,-0.110067 l 0.7239,-0.766233 h 0.436033 l -0.918633,0.969433 0.982133,1.299633 h -0.448733 l -0.7874,-1.058333 -0.258233,0.224367 v 0.833966 h -0.3683 v -3.217333 z" id="path3049" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -12.815162,96.475395 h -1.6891 v -3.0226 h 1.6891 v 0.334434 h -1.3081 v 0.944033 h 1.2319 v 0.3302 h -1.2319 v 1.0795 h 1.3081 z" id="path3051" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -11.106417,94.163995 q 0.4064,0 0.613833,0.198967 0.207434,0.194733 0.207434,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.376767,0 -0.5207,0.211667 -0.143934,0.211666 -0.143934,0.6096 v 1.176866 h -0.372533 v -2.269066 h 0.300567 l 0.05503,0.309033 h 0.02117 q 0.110066,-0.1778 0.3048,-0.262467 0.194733,-0.0889 0.410633,-0.0889 z" id="path3053" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -8.781523,94.163995 q 0.2243666,0 0.4021666,0.08467 0.1820334,0.08467 0.3090334,0.258233 h 0.021167 l 0.0508,-0.300566 h 0.2963333 v 2.307166 q 0,0.486834 -0.2497666,0.732367 -0.2455333,0.245533 -0.7662333,0.245533 -0.4995333,0 -0.8170333,-0.143933 v -0.3429 q 0.3344333,0.1778 0.8382,0.1778 0.2920999,0 0.4571999,-0.173567 0.1693334,-0.169333 0.1693334,-0.465666 v -0.0889 q 0,-0.0508 0.00423,-0.143934 0.00423,-0.09737 0.00847,-0.135466 h -0.016933 q -0.2286,0.3429 -0.7027333,0.3429 -0.4402666,0 -0.6900333,-0.309034 -0.2455333,-0.309033 -0.2455333,-0.8636 0,-0.541866 0.2455333,-0.859366 0.2497667,-0.321734 0.6858,-0.321734 z m 0.0508,0.313267 q -0.2836333,0 -0.4402667,0.2286 -0.1566333,0.224367 -0.1566333,0.643467 0,0.4191 0.1524,0.643466 0.1566333,0.220134 0.4529667,0.220134 0.3428999,0 0.4995333,-0.182034 0.1566333,-0.186266 0.1566333,-0.5969 v -0.0889 q 0,-0.465666 -0.1608667,-0.664633 -0.1608666,-0.2032 -0.5037666,-0.2032 z" id="path3055" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -6.7908641,93.355429 q 0.084667,0 0.1481666,0.05927 0.067733,0.05503 0.067733,0.1778 0,0.118534 -0.067733,0.1778 -0.0635,0.05927 -0.1481666,0.05927 -0.093133,0 -0.1566334,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.1566334,-0.05927 z m 0.1820333,0.8509 v 2.269066 h -0.3725333 v -2.269066 z" id="path3057" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -4.7977583,94.163995 q 0.4064,0 0.6138333,0.198967 0.2074333,0.194733 0.2074333,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.5079999,-0.5461 -0.3767667,0 -0.5207,0.211667 -0.1439333,0.211666 -0.1439333,0.6096 v 1.176866 h -0.3725333 v -2.269066 h 0.3005666 l 0.055033,0.309033 h 0.021167 q 0.1100667,-0.1778 0.3048,-0.262467 0.1947333,-0.0889 0.4106333,-0.0889 z" id="path3059" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -2.4008977,94.163995 q 0.2920999,0 0.4995333,0.127 0.2116666,0.127 0.3217333,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.5536333 q 0.00847,0.385233 0.1947333,0.588433 0.1905,0.198967 0.5291667,0.198967 0.2159,0 0.381,-0.0381 0.1693333,-0.04233 0.3471333,-0.118534 v 0.325967 q -0.1735667,0.0762 -0.3429,0.110067 -0.1693333,0.0381 -0.4021667,0.0381 -0.3217333,0 -0.5714999,-0.131234 -0.2455333,-0.131233 -0.3852333,-0.389466 -0.1354667,-0.262467 -0.1354667,-0.639234 0,-0.372533 0.1227667,-0.639233 0.127,-0.2667 0.3513666,-0.410633 0.2286,-0.143934 0.5291667,-0.143934 z m -0.00423,0.3048 q -0.2667,0 -0.4233333,0.173567 -0.1524,0.169333 -0.1820333,0.474133 h 1.1556999 q -0.00423,-0.287866 -0.1354666,-0.465666 -0.1312334,-0.182034 -0.4148667,-0.182034 z" id="path3061" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Adders" id="text1415" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -5.0266823,101.86434 0.9355667,-0.36406 v -1.19804 l -0.9355667,-0.35983 v -0.385234 l 3.0352999,1.181104 v 0.3429 l -3.0352999,1.17686 z m 1.2742333,-0.47836 0.9144,-0.33867 q 0.033867,-0.0127 0.1227666,-0.0423 0.0889,-0.0296 0.1820333,-0.0593 0.097367,-0.0254 0.1481667,-0.0423 -0.1312333,-0.0296 -0.2582333,-0.0677 -0.1227667,-0.0381 -0.1947333,-0.0635 l -0.9144,-0.3429 z" id="path15841" style="text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -5.0690156,103.42644 q 0,-0.42333 0.2921,-0.67733 0.2963333,-0.254 0.8805333,-0.254 0.5842,0 0.8805333,0.254 0.3005666,0.25823 0.3005666,0.68157 0,0.26246 -0.097367,0.42756 -0.097367,0.16934 -0.2370667,0.27517 v 0.0254 q 0.055033,-0.004 0.1608667,-0.0169 0.1100666,-0.008 0.1735666,-0.008 h 0.9059333 v 0.37253 h -3.2173332 v -0.30056 l 0.3048,-0.055 v -0.0169 q -0.1439333,-0.1016 -0.2455333,-0.27093 -0.1016,-0.16934 -0.1016,-0.43604 z m 0.3090333,0.0593 q 0,0.35983 0.1947334,0.50377 0.1989666,0.14816 0.5968999,0.14816 h 0.067733 q 0.4233334,0 0.6477,-0.1397 0.2286,-0.1397 0.2286,-0.51646 0,-0.30057 -0.2413,-0.45297 -0.2370666,-0.14817 -0.6392333,-0.14817 -0.4064,0 -0.6307666,0.14817 -0.2243667,0.1524 -0.2243664,0.4572 z" id="path15843" style="text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -5.0690156,106.02994 q 0,-0.42333 0.2921,-0.67733 0.2963333,-0.254 0.8805333,-0.254 0.5842,0 0.8805333,0.254 0.3005666,0.25823 0.3005666,0.68157 0,0.26246 -0.097367,0.42756 -0.097367,0.16934 -0.2370667,0.27517 v 0.0254 q 0.055033,-0.004 0.1608667,-0.0169 0.1100666,-0.008 0.1735666,-0.008 h 0.9059333 v 0.37253 h -3.2173332 v -0.30056 l 0.3048,-0.055 v -0.0169 q -0.1439333,-0.1016 -0.2455333,-0.27093 -0.1016,-0.16934 -0.1016,-0.43604 z m 0.3090333,0.0593 q 0,0.35983 0.1947334,0.50377 0.1989666,0.14816 0.5968999,0.14816 h 0.067733 q 0.4233334,0 0.6477,-0.1397 0.2286,-0.1397 0.2286,-0.51646 0,-0.30057 -0.2413,-0.45297 -0.2370666,-0.14817 -0.6392333,-0.14817 -0.4064,0 -0.6307666,0.14817 -0.2243667,0.1524 -0.2243664,0.4572 z" id="path15845" style="text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -2.7152824,108.70541 q 0,0.2921 -0.127,0.49953 -0.127,0.21167 -0.3598333,0.32174 -0.2286,0.1143 -0.5376333,0.1143 h -0.2243666 v -1.55364 q -0.3852334,0.008 -0.5884333,0.19474 -0.1989667,0.1905 -0.1989667,0.52916 0,0.2159 0.0381,0.381 0.042333,0.16934 0.1185333,0.34714 h -0.3259666 q -0.0762,-0.17357 -0.1100667,-0.3429 -0.0381,-0.16934 -0.0381,-0.40217 0,-0.32173 0.1312333,-0.5715 0.1312334,-0.24553 0.3894667,-0.38523 0.2624666,-0.13547 0.6392333,-0.13547 0.3725333,0 0.6392333,0.12277 0.2667,0.127 0.4106333,0.35136 0.1439333,0.2286 0.1439333,0.52917 z m -0.3048,-0.004 q 0,-0.2667 -0.1735666,-0.42334 -0.1693333,-0.1524 -0.4741333,-0.18203 v 1.1557 q 0.2878666,-0.004 0.4656666,-0.13547 0.1820333,-0.13123 0.1820333,-0.41486 z" id="path15847" style="text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -2.7152824,111.27504 q 0,0.0635 -0.00847,0.13547 -0.00423,0.0762 -0.016933,0.13123 l -0.3429,-0.0466 q 0.0127,-0.055 0.021167,-0.12277 0.00847,-0.0635 0.00847,-0.12277 0,-0.17356 -0.097367,-0.32596 -0.093133,-0.1524 -0.2667,-0.24554 -0.1693333,-0.0889 -0.3979333,-0.0889 H -5.026682 v -0.37253 h 2.2690666 v 0.3048 l -0.4148667,0.0423 v 0.0169 q 0.1862667,0.11006 0.3217334,0.28363 0.1354666,0.17357 0.1354666,0.41063 z" id="path15849" style="text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -4.400149,113.44251 q -0.3301999,0 -0.4995333,-0.24553 -0.1693333,-0.24554 -0.1693333,-0.6604 0,-0.23707 0.0381,-0.41064 0.0381,-0.16933 0.1058333,-0.30056 h 0.3386667 q -0.067733,0.13546 -0.127,0.32596 -0.055033,0.19474 -0.055033,0.3937 0,0.28364 0.0889,0.41064 0.093133,0.127 0.2455333,0.127 0.084667,0 0.1524,-0.0466 0.067733,-0.0466 0.1354666,-0.16933 0.067733,-0.11854 0.1524,-0.3429 0.084667,-0.22014 0.1693333,-0.37677 0.084667,-0.15663 0.2032,-0.2413 0.1185334,-0.0847 0.3048,-0.0847 0.2878667,0 0.4445,0.23284 0.1566333,0.23706 0.1566333,0.61806 0,0.20744 -0.042333,0.38524 -0.0381,0.18203 -0.1100667,0.33866 l -0.2963333,-0.127 q 0.059267,-0.14393 0.1016,-0.30056 0.042333,-0.15664 0.042333,-0.32174 0,-0.2286 -0.0762,-0.35136 -0.071967,-0.11854 -0.1989666,-0.11854 -0.093133,0 -0.1608667,0.055 -0.0635,0.055 -0.127,0.18203 -0.059267,0.13123 -0.1439333,0.34713 -0.080433,0.2159 -0.1651,0.3683 -0.084667,0.1524 -0.2074333,0.23284 -0.1185333,0.0804 -0.3005667,0.0804 z" id="path15851" style="text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m -25.135454,98.5625 h 5.291666 v 15.875 h -5.291666 z" id="rect1419" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="m -18.520906,98.5625 h 5.291666 v 15.875 h -5.291666 z" id="rect1421" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="m -11.906328,98.5625 h 5.2916658 v 15.875 h -5.2916658 z" id="rect1423" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="m 429.04297,259.39453 6.4e-4,320.00014 h -20 v 15 h 20 15 l 60.00064,1.4e-4 v -15 l -60.00064,-1.1e-4 -6.4e-4,-140.00017 h 70 v -15 h -70 v -40 h 70 v -15 h -70 v -40 h 70 v -15 h -70 v -40 h 70 v -15 h -70 z" id="path2347" style="fill:#cccccc;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="M 17.197874,91.947914 H 58.20833 V 117.08334 H 17.197874 Z" id="rect1427" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="m 41.010376,103.85415 h 14.552082 v 11.90611 H 41.010376 Z" id="rect1429" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499996;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="MicroFusion" id="text1435" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 44.405056,108.63242 -0.994834,-2.65006 h -0.01693 q 0.0127,0.13123 0.02117,0.3556 0.0085,0.22013 0.0085,0.46143 v 1.83303 h -0.351366 v -3.0226 h 0.563033 l 0.931333,2.4765 h 0.01693 l 0.948266,-2.4765 h 0.5588 v 3.0226 h -0.376766 v -1.85843 q 0,-0.22013 0.0085,-0.43603 0.0127,-0.2159 0.02117,-0.35137 h -0.01693 l -1.007534,2.64583 z" id="path3069" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 47.047714,105.51246 q 0.08467,0 0.148167,0.0593 0.06773,0.055 0.06773,0.1778 0,0.11854 -0.06773,0.1778 -0.0635,0.0593 -0.148167,0.0593 -0.09313,0 -0.156633,-0.0593 -0.0635,-0.0593 -0.0635,-0.1778 0,-0.12276 0.0635,-0.1778 0.0635,-0.0593 0.156633,-0.0593 z m 0.182033,0.8509 v 2.26906 h -0.372533 v -2.26906 z" id="path3071" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 48.858787,108.67476 q -0.300567,0 -0.537633,-0.12277 -0.232834,-0.12277 -0.3683,-0.381 -0.131234,-0.25823 -0.131234,-0.6604 0,-0.4191 0.1397,-0.68157 0.1397,-0.26246 0.376767,-0.38523 0.2413,-0.12277 0.5461,-0.12277 0.173567,0 0.334433,0.0381 0.160867,0.0339 0.262467,0.0847 l -0.1143,0.30903 q -0.1016,-0.0381 -0.237067,-0.072 -0.135466,-0.0339 -0.254,-0.0339 -0.668866,0 -0.668866,0.85937 0,0.41063 0.160866,0.63076 0.1651,0.2159 0.486834,0.2159 0.186266,0 0.325966,-0.0381 0.143934,-0.0381 0.262467,-0.0931 v 0.3302 q -0.1143,0.0593 -0.254,0.0889 -0.135467,0.0339 -0.3302,0.0339 z" id="path3073" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 51.040938,106.32102 q 0.0635,0 0.135467,0.008 0.0762,0.004 0.131233,0.0169 l -0.04657,0.3429 q -0.05503,-0.0127 -0.122766,-0.0212 -0.0635,-0.008 -0.122767,-0.008 -0.173567,0 -0.325967,0.0974 -0.1524,0.0931 -0.245533,0.2667 -0.0889,0.16933 -0.0889,0.39793 v 1.21073 h -0.372533 v -2.26906 h 0.3048 l 0.04233,0.41486 h 0.01693 q 0.110067,-0.18626 0.283634,-0.32173 0.173566,-0.13547 0.410633,-0.13547 z" id="path3075" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 53.617251,107.49366 q 0,0.56303 -0.287866,0.87206 -0.283634,0.30904 -0.770467,0.30904 -0.300567,0 -0.537633,-0.13547 -0.232834,-0.1397 -0.3683,-0.40217 -0.135467,-0.2667 -0.135467,-0.64346 0,-0.56304 0.283633,-0.86784 0.283634,-0.3048 0.770467,-0.3048 0.309033,0 0.541867,0.1397 0.237066,0.13547 0.3683,0.39794 0.135466,0.25823 0.135466,0.635 z m -1.7145,0 q 0,0.40216 0.156634,0.63923 0.160866,0.23283 0.508,0.23283 0.3429,0 0.503766,-0.23283 0.160867,-0.23707 0.160867,-0.63923 0,-0.40217 -0.160867,-0.63077 -0.160866,-0.2286 -0.508,-0.2286 -0.347133,0 -0.503766,0.2286 -0.156634,0.2286 -0.156634,0.63077 z" id="path3077" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 42.493441,113.9627 h -0.381 v -3.0226 h 1.6891 v 0.33443 h -1.3081 v 1.07104 h 1.227667 V 112.68 h -1.227667 z" id="path3079" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 46.157523,111.69363 v 2.26907 h -0.3048 l -0.05503,-0.30057 h -0.01693 q -0.110067,0.1778 -0.3048,0.26247 -0.194733,0.0804 -0.414867,0.0804 -0.410633,0 -0.618066,-0.19473 -0.207434,-0.19897 -0.207434,-0.63077 v -1.4859 h 0.376767 v 1.4605 q 0,0.54187 0.503767,0.54187 0.376766,0 0.5207,-0.21167 0.148166,-0.21166 0.148166,-0.6096 v -1.1811 z" id="path3081" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 48.351184,113.33617 q 0,0.3302 -0.245534,0.49953 -0.245533,0.16933 -0.6604,0.16933 -0.237066,0 -0.410633,-0.0381 -0.169333,-0.0381 -0.300567,-0.10583 v -0.33867 q 0.135467,0.0677 0.325967,0.127 0.194733,0.055 0.3937,0.055 0.283633,0 0.410633,-0.0889 0.127,-0.0931 0.127,-0.24554 0,-0.0847 -0.04657,-0.1524 -0.04657,-0.0677 -0.169334,-0.13546 -0.118533,-0.0677 -0.3429,-0.1524 -0.220133,-0.0847 -0.376766,-0.16934 -0.156634,-0.0847 -0.2413,-0.2032 -0.08467,-0.11853 -0.08467,-0.3048 0,-0.28786 0.232833,-0.4445 0.237067,-0.15663 0.618067,-0.15663 0.207433,0 0.385233,0.0423 0.182034,0.0381 0.338667,0.11007 l -0.127,0.29633 q -0.143933,-0.0593 -0.300567,-0.1016 -0.156633,-0.0423 -0.321733,-0.0423 -0.2286,0 -0.351367,0.0762 -0.118533,0.072 -0.118533,0.19897 0,0.0931 0.05503,0.16086 0.05503,0.0635 0.182034,0.127 0.131233,0.0593 0.347133,0.14394 0.2159,0.0804 0.3683,0.1651 0.1524,0.0847 0.232833,0.20743 0.08043,0.11853 0.08043,0.30057 z" id="path3083" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 49.089967,110.84273 q 0.08467,0 0.148166,0.0593 0.06773,0.055 0.06773,0.1778 0,0.11853 -0.06773,0.1778 -0.0635,0.0593 -0.148166,0.0593 -0.09313,0 -0.156634,-0.0593 -0.0635,-0.0593 -0.0635,-0.1778 0,-0.12277 0.0635,-0.1778 0.0635,-0.0593 0.156634,-0.0593 z m 0.182033,0.8509 v 2.26907 h -0.372533 v -2.26907 z" id="path3085" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 51.963606,112.82393 q 0,0.56304 -0.287866,0.87207 -0.283634,0.30903 -0.770467,0.30903 -0.300567,0 -0.537633,-0.13546 -0.232834,-0.1397 -0.3683,-0.40217 -0.135467,-0.2667 -0.135467,-0.64347 0,-0.56303 0.283633,-0.86783 0.283634,-0.3048 0.770467,-0.3048 0.309033,0 0.541867,0.1397 0.237066,0.13547 0.3683,0.39793 0.135466,0.25824 0.135466,0.635 z m -1.7145,0 q 0,0.40217 0.156634,0.63924 0.160866,0.23283 0.508,0.23283 0.3429,0 0.503766,-0.23283 0.160867,-0.23707 0.160867,-0.63924 0,-0.40216 -0.160867,-0.63076 -0.160866,-0.2286 -0.508,-0.2286 -0.347133,0 -0.503766,0.2286 -0.156634,0.2286 -0.156634,0.63076 z" id="path3087" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 53.646223,111.6513 q 0.4064,0 0.613834,0.19897 0.207433,0.19473 0.207433,0.635 v 1.47743 h -0.3683 v -1.45203 q 0,-0.5461 -0.508,-0.5461 -0.376767,0 -0.5207,0.21166 -0.143933,0.21167 -0.143933,0.6096 v 1.17687 h -0.372534 v -2.26907 h 0.300567 l 0.05503,0.30904 h 0.02117 q 0.110067,-0.1778 0.3048,-0.26247 0.194733,-0.0889 0.410633,-0.0889 z" id="path3089" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Allocation Queue(2x64 entries)" id="text1441" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 23.001483,96.578117 -0.364067,-0.935566 h -1.198033 l -0.359833,0.935566 h -0.385234 l 1.1811,-3.035299 h 0.3429 l 1.176867,3.035299 z m -0.478367,-1.274233 -0.338666,-0.9144 q -0.0127,-0.03387 -0.04233,-0.122767 -0.02963,-0.0889 -0.05927,-0.182033 -0.0254,-0.09737 -0.04233,-0.148166 -0.02963,0.131233 -0.06773,0.258233 -0.0381,0.122766 -0.0635,0.194733 l -0.3429,0.9144 z" id="path3092" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 24.130394,96.578117 h -0.372533 v -3.217333 h 0.372533 z" id="path3094" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 25.2218,96.578117 H 24.849267 V 93.360784 H 25.2218 Z" id="path3096" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 27.913406,95.439351 q 0,0.563033 -0.287866,0.872066 -0.283634,0.309034 -0.770467,0.309034 -0.300567,0 -0.537633,-0.135467 -0.232834,-0.1397 -0.3683,-0.402167 -0.135467,-0.2667 -0.135467,-0.643466 0,-0.563034 0.283633,-0.867834 0.283634,-0.3048 0.770467,-0.3048 0.309033,0 0.541867,0.1397 0.237066,0.135467 0.3683,0.397934 0.135466,0.258233 0.135466,0.635 z m -1.7145,0 q 0,0.402166 0.156634,0.639233 0.160866,0.232833 0.508,0.232833 0.3429,0 0.503766,-0.232833 0.160867,-0.237067 0.160867,-0.639233 0,-0.402167 -0.160867,-0.630767 -0.160866,-0.2286 -0.508,-0.2286 -0.347133,0 -0.503766,0.2286 -0.156634,0.2286 -0.156634,0.630767 z" id="path3098" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 29.413991,96.620451 q -0.300567,0 -0.537634,-0.122767 -0.232833,-0.122767 -0.3683,-0.381 -0.131233,-0.258233 -0.131233,-0.6604 0,-0.4191 0.1397,-0.681567 0.1397,-0.262466 0.376767,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.173566,0 0.334433,0.0381 0.160867,0.03387 0.262467,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.237067,-0.07197 -0.135467,-0.03387 -0.254,-0.03387 -0.668867,0 -0.668867,0.859367 0,0.410633 0.160867,0.630766 0.1651,0.2159 0.486833,0.2159 0.186267,0 0.325967,-0.0381 0.143933,-0.0381 0.262467,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.135467,0.03387 -0.3302,0.03387 z" id="path3100" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 31.397174,94.270951 q 0.414867,0 0.613834,0.182033 0.198966,0.182033 0.198966,0.579967 v 1.545166 h -0.270933 l -0.07197,-0.321733 h -0.01693 q -0.148167,0.186267 -0.313267,0.275167 -0.160866,0.0889 -0.448733,0.0889 -0.309033,0 -0.512233,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.821266,-0.2032 l 0.385234,-0.0127 v -0.135467 q 0,-0.283633 -0.122767,-0.3937 -0.122767,-0.110067 -0.347133,-0.110067 -0.1778,0 -0.338667,0.05503 -0.160867,0.0508 -0.300567,0.118533 l -0.1143,-0.2794 q 0.148167,-0.08043 0.351367,-0.135467 0.2032,-0.05927 0.423333,-0.05927 z m 0.4445,1.198033 -0.334433,0.0127 q -0.423333,0.01693 -0.588433,0.135467 -0.160867,0.118533 -0.160867,0.334433 0,0.1905 0.1143,0.2794 0.118533,0.0889 0.300567,0.0889 0.287866,0 0.478366,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path3102" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 33.668556,96.315651 q 0.08467,0 0.173567,-0.0127 0.0889,-0.01693 0.143933,-0.03387 v 0.283633 q -0.05927,0.02963 -0.169333,0.04657 -0.110067,0.02117 -0.211667,0.02117 -0.1778,0 -0.3302,-0.05927 -0.148166,-0.0635 -0.2413,-0.2159 -0.09313,-0.1524 -0.09313,-0.427567 v -1.3208 H 32.61869 v -0.1778 l 0.325966,-0.148166 0.148167,-0.4826 h 0.220133 v 0.5207 h 0.656167 v 0.287866 h -0.656167 v 1.312334 q 0,0.207433 0.09737,0.309033 0.1016,0.09737 0.258233,0.09737 z" id="path3104" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 34.630912,93.458151 q 0.08467,0 0.148166,0.05927 0.06773,0.05503 0.06773,0.1778 0,0.118533 -0.06773,0.1778 -0.0635,0.05927 -0.148166,0.05927 -0.09313,0 -0.156634,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.156634,-0.05927 z m 0.182033,0.8509 v 2.269066 h -0.372533 v -2.269066 z" id="path3106" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 37.504552,95.439351 q 0,0.563033 -0.287867,0.872066 -0.283633,0.309034 -0.770466,0.309034 -0.300567,0 -0.537634,-0.135467 -0.232833,-0.1397 -0.3683,-0.402167 -0.135466,-0.2667 -0.135466,-0.643466 0,-0.563034 0.283633,-0.867834 0.283633,-0.3048 0.770467,-0.3048 0.309033,0 0.541866,0.1397 0.237067,0.135467 0.3683,0.397934 0.135467,0.258233 0.135467,0.635 z m -1.7145,0 q 0,0.402166 0.156633,0.639233 0.160867,0.232833 0.508,0.232833 0.3429,0 0.503767,-0.232833 0.160866,-0.237067 0.160866,-0.639233 0,-0.402167 -0.160866,-0.630767 -0.160867,-0.2286 -0.508,-0.2286 -0.347133,0 -0.503767,0.2286 -0.156633,0.2286 -0.156633,0.630767 z" id="path3108" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 39.187169,94.266717 q 0.4064,0 0.613833,0.198967 0.207434,0.194733 0.207434,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.376767,0 -0.5207,0.211667 -0.143934,0.211666 -0.143934,0.6096 v 1.176866 h -0.372533 v -2.269066 h 0.300567 l 0.05503,0.309033 h 0.02117 q 0.110066,-0.1778 0.3048,-0.262467 0.194733,-0.0889 0.410633,-0.0889 z" id="path3110" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 44.49557,95.062584 q 0,0.554567 -0.224366,0.944033 -0.220134,0.389467 -0.656167,0.537634 l 0.7239,0.753533 h -0.5461 l -0.5842,-0.681567 q -0.0254,0 -0.05503,0 -0.0254,0.0042 -0.0508,0.0042 -0.4699,0 -0.783167,-0.194734 -0.309033,-0.194733 -0.461433,-0.5461 -0.1524,-0.351366 -0.1524,-0.821266 0,-0.465667 0.1524,-0.8128 0.1524,-0.347133 0.461433,-0.541867 0.313267,-0.194733 0.7874,-0.194733 0.452967,0 0.762,0.194733 0.309033,0.1905 0.465667,0.541867 0.160866,0.347133 0.160866,0.817033 z m -2.3876,0 q 0,0.5715 0.2413,0.9017 0.2413,0.325967 0.753534,0.325967 0.516466,0 0.753533,-0.325967 0.237067,-0.3302 0.237067,-0.9017 0,-0.5715 -0.237067,-0.893233 -0.237067,-0.325967 -0.7493,-0.325967 -0.512233,0 -0.757767,0.325967 -0.2413,0.321733 -0.2413,0.893233 z" id="path3112" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 47.011228,94.309051 v 2.269066 h -0.3048 l -0.05503,-0.300566 h -0.01693 q -0.110066,0.1778 -0.3048,0.262466 -0.194733,0.08043 -0.414866,0.08043 -0.410634,0 -0.618067,-0.194734 -0.207433,-0.198966 -0.207433,-0.630766 v -1.4859 h 0.376766 v 1.4605 q 0,0.541866 0.503767,0.541866 0.376767,0 0.5207,-0.211666 0.148167,-0.211667 0.148167,-0.6096 v -1.1811 z" id="path3114" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 48.603755,94.266717 q 0.2921,0 0.499534,0.127 0.211666,0.127 0.321733,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.553633 q 0.0085,0.385233 0.194733,0.588433 0.1905,0.198967 0.529167,0.198967 0.2159,0 0.381,-0.0381 0.169333,-0.04233 0.347133,-0.118534 v 0.325967 q -0.173567,0.0762 -0.3429,0.110067 -0.169333,0.0381 -0.402167,0.0381 -0.321733,0 -0.5715,-0.131234 -0.245533,-0.131233 -0.385233,-0.389466 -0.135467,-0.262467 -0.135467,-0.639234 0,-0.372533 0.122767,-0.639233 0.127,-0.2667 0.351367,-0.410633 0.2286,-0.143934 0.529166,-0.143934 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173567 -0.1524,0.169333 -0.182034,0.474133 h 1.1557 q -0.0042,-0.287866 -0.135466,-0.465666 -0.131234,-0.182034 -0.414867,-0.182034 z" id="path3116" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 52.013507,94.309051 v 2.269066 h -0.3048 l -0.05503,-0.300566 h -0.01693 q -0.110067,0.1778 -0.3048,0.262466 -0.194734,0.08043 -0.414867,0.08043 -0.410633,0 -0.618067,-0.194734 -0.207433,-0.198966 -0.207433,-0.630766 v -1.4859 h 0.376767 v 1.4605 q 0,0.541866 0.503766,0.541866 0.376767,0 0.5207,-0.211666 0.148167,-0.211667 0.148167,-0.6096 v -1.1811 z" id="path3118" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 53.606035,94.266717 q 0.2921,0 0.499533,0.127 0.211667,0.127 0.321733,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.553633 q 0.0085,0.385233 0.194733,0.588433 0.1905,0.198967 0.529167,0.198967 0.2159,0 0.381,-0.0381 0.169333,-0.04233 0.347133,-0.118534 v 0.325967 q -0.173566,0.0762 -0.3429,0.110067 -0.169333,0.0381 -0.402166,0.0381 -0.321734,0 -0.5715,-0.131234 -0.245534,-0.131233 -0.385234,-0.389466 -0.135466,-0.262467 -0.135466,-0.639234 0,-0.372533 0.122766,-0.639233 0.127,-0.2667 0.351367,-0.410633 0.2286,-0.143934 0.529167,-0.143934 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173567 -0.1524,0.169333 -0.182033,0.474133 h 1.1557 q -0.0042,-0.287866 -0.135467,-0.465666 -0.131233,-0.182034 -0.414867,-0.182034 z" id="path3120" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 24.427256,100.70985 q 0,-0.51647 0.148167,-0.994835 0.1524,-0.4826 0.474133,-0.867833 h 0.351367 q -0.296333,0.397933 -0.448733,0.8763 -0.148167,0.478368 -0.148167,0.982128 0,0.49107 0.148167,0.9652 0.1524,0.4699 0.4445,0.86784 h -0.347134 q -0.321733,-0.37254 -0.474133,-0.84244 -0.148167,-0.47413 -0.148167,-0.98636 z" id="path3122" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 27.732563,101.86978 H 25.73443 v -0.30903 l 0.791634,-0.8001 q 0.2286,-0.2286 0.385233,-0.4064 0.156633,-0.1778 0.237067,-0.34714 0.08043,-0.173562 0.08043,-0.376762 0,-0.249766 -0.148167,-0.376766 -0.148166,-0.131234 -0.385233,-0.131234 -0.220133,0 -0.389467,0.0762 -0.1651,0.0762 -0.338666,0.211667 l -0.198967,-0.249767 q 0.1778,-0.148166 0.4064,-0.249766 0.232833,-0.105834 0.5207,-0.105834 0.423333,0 0.668867,0.2159 0.245533,0.211667 0.245533,0.588434 0,0.237066 -0.09737,0.444498 -0.09737,0.20743 -0.270933,0.41063 -0.173567,0.19897 -0.4064,0.42757 l -0.630767,0.6223 v 0.0169 h 1.528233 z" id="path3124" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 28.851288,100.70985 -0.783167,-1.109135 h 0.423333 l 0.5842,0.855135 0.579967,-0.855135 h 0.4191 l -0.783167,1.109135 0.8255,1.15993 h -0.423333 l -0.618067,-0.90593 -0.626533,0.90593 h -0.4191 z" id="path3126" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 30.427345,100.57861 q 0,-0.32596 0.05503,-0.639228 0.05927,-0.3175 0.207433,-0.5715 0.1524,-0.258234 0.423334,-0.410634 0.270933,-0.1524 0.6985,-0.1524 0.0889,0 0.194733,0.0085 0.110067,0.0085 0.1778,0.02963 v 0.3175 q -0.0762,-0.0254 -0.173567,-0.0381 -0.09313,-0.0127 -0.1905,-0.0127 -0.2921,0 -0.486833,0.09737 -0.194733,0.09737 -0.309033,0.2667 -0.110067,0.169333 -0.160867,0.389467 -0.0508,0.220128 -0.0635,0.469898 h 0.0254 q 0.09737,-0.14817 0.270933,-0.24977 0.173567,-0.105828 0.4445,-0.105828 0.3937,0 0.635,0.241298 0.2413,0.23707 0.2413,0.67733 0,0.47414 -0.262466,0.74507 -0.258234,0.27093 -0.6985,0.27093 -0.287867,0 -0.5207,-0.14393 -0.232834,-0.14393 -0.372534,-0.44027 -0.135466,-0.29633 -0.135466,-0.7493 z m 1.024466,1.02024 q 0.2667,0 0.4318,-0.16934 0.1651,-0.17356 0.1651,-0.5334 0,-0.28786 -0.148166,-0.4572 -0.143934,-0.16933 -0.436034,-0.16933 -0.198966,0 -0.347133,0.0847 -0.148167,0.0804 -0.232833,0.20743 -0.08043,0.127 -0.08043,0.26247 0,0.18203 0.07197,0.36406 0.07197,0.1778 0.2159,0.29634 0.143933,0.1143 0.359833,0.1143 z" id="path3128" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 34.953902,101.18398 h -0.440266 v 0.6858 h -0.359834 v -0.6858 h -1.447799 v -0.3175 l 1.422399,-2.036232 h 0.385234 v 2.019302 h 0.440266 z m -0.8001,-0.33443 v -0.952502 q 0,-0.220133 0.0085,-0.372533 0.0085,-0.156633 0.0127,-0.296333 h -0.01693 q -0.03387,0.08043 -0.08467,0.173566 -0.0508,0.09313 -0.09737,0.156634 l -0.905933,1.291168 z" id="path3130" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 37.375501,99.558382 q 0.2921,0 0.499534,0.127 0.211666,0.127 0.321733,0.359828 0.1143,0.2286 0.1143,0.53764 v 0.22436 h -1.553633 q 0.0085,0.38524 0.194733,0.58844 0.1905,0.19896 0.529167,0.19896 0.2159,0 0.381,-0.0381 0.169333,-0.0423 0.347133,-0.11853 v 0.32597 q -0.173567,0.0762 -0.3429,0.11006 -0.169333,0.0381 -0.402167,0.0381 -0.321733,0 -0.5715,-0.13123 -0.245533,-0.13123 -0.385233,-0.38947 -0.135467,-0.26246 -0.135467,-0.63923 0,-0.37253 0.122767,-0.63923 0.127,-0.266702 0.351367,-0.410635 0.2286,-0.143933 0.529166,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173568 -0.1524,0.16933 -0.182034,0.47413 h 1.1557 q -0.0042,-0.28787 -0.135466,-0.46567 -0.131234,-0.182028 -0.414867,-0.182028 z" id="path3132" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 39.980919,99.558382 q 0.4064,0 0.613833,0.198966 0.207434,0.194734 0.207434,0.635002 v 1.47743 h -0.3683 v -1.45203 q 0,-0.546102 -0.508,-0.546102 -0.376767,0 -0.5207,0.211662 -0.143934,0.21167 -0.143934,0.6096 v 1.17687 h -0.372533 v -2.269065 h 0.300567 l 0.05503,0.309033 h 0.02117 q 0.110066,-0.1778 0.3048,-0.262466 0.194733,-0.0889 0.410633,-0.0889 z" id="path3134" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 42.259245,101.60731 q 0.08467,0 0.173567,-0.0127 0.0889,-0.0169 0.143933,-0.0339 v 0.28363 q -0.05927,0.0296 -0.169333,0.0466 -0.110067,0.0212 -0.211667,0.0212 -0.1778,0 -0.3302,-0.0593 -0.148166,-0.0635 -0.2413,-0.2159 -0.09313,-0.1524 -0.09313,-0.42757 v -1.320798 h -0.321733 v -0.1778 l 0.325966,-0.148167 0.148167,-0.4826 h 0.220133 v 0.5207 h 0.656167 v 0.287867 h -0.656167 v 1.312328 q 0,0.20744 0.09737,0.30904 0.1016,0.0974 0.258233,0.0974 z" id="path3136" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 44.089435,99.558382 q 0.0635,0 0.135467,0.0085 0.0762,0.0042 0.131233,0.01693 l -0.04657,0.3429 q -0.05503,-0.0127 -0.122766,-0.02117 -0.0635,-0.0085 -0.122767,-0.0085 -0.173567,0 -0.325967,0.09737 -0.1524,0.09313 -0.245533,0.266695 -0.0889,0.16934 -0.0889,0.39794 v 1.21073 h -0.372533 v -2.269065 h 0.3048 l 0.04233,0.414865 h 0.01693 q 0.110067,-0.186265 0.283634,-0.321732 0.173566,-0.135466 0.410633,-0.135466 z" id="path3138" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 44.966198,98.749815 q 0.08467,0 0.148167,0.05927 0.06773,0.05503 0.06773,0.1778 0,0.118533 -0.06773,0.1778 -0.0635,0.05927 -0.148167,0.05927 -0.09313,0 -0.156633,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.156633,-0.05927 z m 0.182034,0.8509 v 2.269065 h -0.372534 v -2.269065 z" id="path3140" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 46.743404,99.558382 q 0.2921,0 0.499533,0.127 0.211667,0.127 0.321734,0.359828 0.1143,0.2286 0.1143,0.53764 v 0.22436 h -1.553634 q 0.0085,0.38524 0.194734,0.58844 0.1905,0.19896 0.529166,0.19896 0.2159,0 0.381,-0.0381 0.169334,-0.0423 0.347134,-0.11853 v 0.32597 q -0.173567,0.0762 -0.3429,0.11006 -0.169334,0.0381 -0.402167,0.0381 -0.321733,0 -0.5715,-0.13123 -0.245533,-0.13123 -0.385233,-0.38947 -0.135467,-0.26246 -0.135467,-0.63923 0,-0.37253 0.122767,-0.63923 0.127,-0.266702 0.351366,-0.410635 0.2286,-0.143933 0.529167,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423334,0.173568 -0.1524,0.16933 -0.182033,0.47413 h 1.1557 q -0.0042,-0.28787 -0.135467,-0.46567 -0.131233,-0.182028 -0.414866,-0.182028 z" id="path3142" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 49.734056,101.24325 q 0,0.3302 -0.245533,0.49953 -0.245534,0.16933 -0.6604,0.16933 -0.237067,0 -0.410634,-0.0381 -0.169333,-0.0381 -0.300566,-0.10583 v -0.33867 q 0.135466,0.0677 0.325966,0.127 0.194734,0.055 0.3937,0.055 0.283634,0 0.410634,-0.0889 0.127,-0.0931 0.127,-0.24554 0,-0.0847 -0.04657,-0.1524 -0.04657,-0.0677 -0.169333,-0.13546 -0.118534,-0.0677 -0.3429,-0.1524 -0.220134,-0.0847 -0.376767,-0.16934 -0.156633,-0.0847 -0.2413,-0.2032 -0.08467,-0.11853 -0.08467,-0.3048 0,-0.287862 0.232834,-0.444495 0.237066,-0.156633 0.618066,-0.156633 0.207434,0 0.385234,0.04233 0.182033,0.0381 0.338666,0.110067 l -0.127,0.296328 q -0.143933,-0.05926 -0.300566,-0.101595 -0.156634,-0.04233 -0.321734,-0.04233 -0.2286,0 -0.351366,0.0762 -0.118534,0.07197 -0.118534,0.198968 0,0.0931 0.05503,0.16086 0.05503,0.0635 0.182033,0.127 0.131233,0.0593 0.347133,0.14394 0.2159,0.0804 0.3683,0.1651 0.1524,0.0847 0.232834,0.20743 0.08043,0.11853 0.08043,0.30057 z" id="path3144" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 51.023171,100.70985 q 0,0.51223 -0.1524,0.98636 -0.148167,0.4699 -0.4699,0.84244 h -0.347133 q 0.2921,-0.39794 0.440266,-0.86784 0.1524,-0.47413 0.1524,-0.9652 0,-0.50376 -0.1524,-0.982128 -0.148166,-0.478367 -0.4445,-0.8763 h 0.351367 q 0.321733,0.385233 0.4699,0.867833 0.1524,0.478365 0.1524,0.994835 z" id="path3146" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 18.520804,103.85415 v 11.90626 h 10.58334 v -11.90626 z" id="path1443" style="fill:#ffffff;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 21.166644,103.85415 v 11.90626" id="path1445" style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 23.812474,103.85415 v 11.90626" id="path1447" style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 26.458304,103.85415 v 11.90626" id="path1449" style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 38.364554,103.85415 v 11.90626 c 0,0 -2.64583,0 -2.64583,0 v -11.90626 z" id="path1451" style="fill:#ffffff;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 29.104144,103.85415 h 6.61458" id="path1453" style="fill:none;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.52916663, 0.26458332;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="m 35.718724,115.76041 h -6.61458" id="path1455" style="fill:none;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.52916663, 0.26458332;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="m 33.072884,15.351249 h 25.13545 v 39.554996 h -25.13545 z" id="rect1475" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="µOP Cache1.5K µOPs8-way" id="text1483" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 36.93268,61.569522 v 2.269067 h -0.300566 l -0.05927,-0.3048 h -0.02117 q -0.105833,0.169333 -0.275166,0.258233 -0.169334,0.0889 -0.4064,0.0889 -0.1651,0 -0.283634,-0.0508 -0.118533,-0.05503 -0.2032,-0.1397 h -0.01693 q 0.0085,0.0762 0.0127,0.2032 0.0085,0.127 0.0085,0.300567 v 0.6604 H 35.01498 v -3.285067 h 0.372534 v 1.464733 q 0,0.537634 0.508,0.537634 0.376766,0 0.5207,-0.211667 0.143933,-0.211667 0.143933,-0.6096 v -1.1811 z" id="path3150" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 40.340712,62.323055 q 0,0.4699 -0.160867,0.821267 -0.156633,0.347133 -0.465666,0.541867 -0.309034,0.194733 -0.766234,0.194733 -0.4699,0 -0.783166,-0.194733 -0.309034,-0.194734 -0.461434,-0.5461 -0.1524,-0.351367 -0.1524,-0.821267 0,-0.465667 0.1524,-0.8128 0.1524,-0.347133 0.461434,-0.541866 0.313266,-0.194734 0.7874,-0.194734 0.452966,0 0.762,0.194734 0.309033,0.1905 0.465666,0.541866 0.160867,0.347133 0.160867,0.817033 z m -2.3876,0 q 0,0.5715 0.2413,0.9017 0.2413,0.325967 0.753533,0.325967 0.516467,0 0.753534,-0.325967 0.237066,-0.3302 0.237066,-0.9017 0,-0.5715 -0.237066,-0.893233 -0.237067,-0.325966 -0.7493,-0.325966 -0.512234,0 -0.757767,0.325966 -0.2413,0.321733 -0.2413,0.893233 z" id="path3152" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 41.810737,60.815989 q 0.592667,0 0.8636,0.232833 0.270933,0.232834 0.270933,0.656167 0,0.249766 -0.1143,0.4699 -0.110066,0.2159 -0.376766,0.351366 -0.262467,0.135467 -0.715434,0.135467 h -0.347133 v 1.176867 h -0.381 v -3.0226 z m -0.03387,0.325967 h -0.385233 v 1.193799 h 0.3048 q 0.4318,0 0.643467,-0.1397 0.211666,-0.1397 0.211666,-0.474133 0,-0.2921 -0.186266,-0.436033 -0.186267,-0.143933 -0.588434,-0.143933 z" id="path3154" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 45.968862,61.108089 q -0.486834,0 -0.766234,0.325967 -0.2794,0.325966 -0.2794,0.893233 0,0.563033 0.258234,0.893233 0.262466,0.325967 0.783166,0.325967 0.198967,0 0.376767,-0.03387 0.1778,-0.03387 0.347133,-0.08467 v 0.3302 q -0.169333,0.0635 -0.351366,0.09313 -0.1778,0.02963 -0.427567,0.02963 -0.461433,0 -0.770467,-0.1905 -0.309033,-0.1905 -0.465666,-0.541867 -0.1524,-0.351366 -0.1524,-0.8255 0,-0.4572 0.1651,-0.804333 0.169333,-0.351366 0.4953,-0.5461 0.325966,-0.198966 0.791633,-0.198966 0.478367,0 0.833967,0.1778 l -0.1524,0.321733 q -0.1397,-0.0635 -0.313267,-0.1143 -0.169333,-0.0508 -0.372533,-0.0508 z" id="path3156" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 48.160935,61.531422 q 0.414866,0 0.613833,0.182033 0.198967,0.182034 0.198967,0.579967 v 1.545167 h -0.270934 l -0.07197,-0.321734 h -0.01693 q -0.148166,0.186267 -0.313266,0.275167 -0.160867,0.0889 -0.448734,0.0889 -0.309033,0 -0.512233,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.821267,-0.2032 l 0.385233,-0.0127 v -0.135467 q 0,-0.283633 -0.122767,-0.3937 -0.122766,-0.110066 -0.347133,-0.110066 -0.1778,0 -0.338667,0.05503 -0.160866,0.0508 -0.300566,0.118533 l -0.1143,-0.2794 q 0.148166,-0.08043 0.351366,-0.135466 0.2032,-0.05927 0.423334,-0.05927 z m 0.4445,1.198033 -0.334434,0.0127 q -0.423333,0.01693 -0.588433,0.135467 -0.160867,0.118533 -0.160867,0.334433 0,0.1905 0.1143,0.2794 0.118534,0.0889 0.300567,0.0889 0.287867,0 0.478367,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path3158" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 50.584717,63.880922 q -0.300567,0 -0.537634,-0.122767 -0.232833,-0.122766 -0.3683,-0.381 -0.131233,-0.258233 -0.131233,-0.6604 0,-0.4191 0.1397,-0.681566 0.1397,-0.262467 0.376767,-0.385234 0.2413,-0.122766 0.5461,-0.122766 0.173566,0 0.334433,0.0381 0.160867,0.03387 0.262467,0.08467 l -0.1143,0.309034 q -0.1016,-0.0381 -0.237067,-0.07197 -0.135467,-0.03387 -0.254,-0.03387 -0.668867,0 -0.668867,0.859367 0,0.410633 0.160867,0.630767 0.1651,0.2159 0.486833,0.2159 0.186267,0 0.325967,-0.0381 0.143933,-0.0381 0.262467,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.135467,0.03387 -0.3302,0.03387 z" id="path3160" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 52.081068,60.621256 v 0.944033 q 0,0.169333 -0.02117,0.3175 h 0.0254 q 0.110067,-0.173567 0.296333,-0.262467 0.1905,-0.0889 0.410634,-0.0889 0.414866,0 0.6223,0.198967 0.207433,0.194733 0.207433,0.630766 v 1.477434 h -0.3683 v -1.452034 q 0,-0.5461 -0.508,-0.5461 -0.381,0 -0.524933,0.2159 -0.1397,0.211667 -0.1397,0.6096 v 1.172634 h -0.372534 v -3.217333 z" id="path3162" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 55.197595,61.527189 q 0.2921,0 0.499533,0.127 0.211667,0.127 0.321733,0.359833 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.553633 q 0.0085,0.385233 0.194734,0.588433 0.1905,0.198967 0.529166,0.198967 0.2159,0 0.381,-0.0381 0.169333,-0.04233 0.347133,-0.118533 v 0.325966 q -0.173566,0.0762 -0.3429,0.110067 -0.169333,0.0381 -0.402166,0.0381 -0.321733,0 -0.5715,-0.131233 -0.245533,-0.131234 -0.385233,-0.389467 -0.135467,-0.262467 -0.135467,-0.639233 0,-0.372534 0.122767,-0.639234 0.127,-0.2667 0.351366,-0.410633 0.2286,-0.143933 0.529167,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423334,0.173566 -0.1524,0.169334 -0.182033,0.474134 h 1.1557 q -0.0042,-0.287867 -0.135467,-0.465667 -0.131233,-0.182033 -0.414866,-0.182033 z" id="path3164" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 36.889719,69.168869 h -0.364067 v -2.112433 q 0,-0.182034 0.0042,-0.2921 0.0042,-0.110067 0.0127,-0.2286 -0.06773,0.06773 -0.122766,0.1143 -0.05503,0.04657 -0.1397,0.118533 l -0.321734,0.262467 -0.194733,-0.249767 0.817033,-0.635 h 0.309034 z" id="path3166" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 38.114276,68.940269 q 0,-0.156633 0.0762,-0.220133 0.0762,-0.0635 0.182034,-0.0635 0.110066,0 0.186266,0.0635 0.08043,0.0635 0.08043,0.220133 0,0.1524 -0.08043,0.220133 -0.0762,0.06773 -0.186266,0.06773 -0.105834,0 -0.182034,-0.06773 -0.0762,-0.06773 -0.0762,-0.220133 z" id="path3168" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 40.10639,67.314669 q 0.465667,0 0.740834,0.232833 0.275166,0.232834 0.275166,0.656167 0,0.4699 -0.300566,0.740833 -0.296334,0.2667 -0.829734,0.2667 -0.232833,0 -0.440266,-0.04233 -0.2032,-0.04233 -0.3429,-0.122767 v -0.351366 q 0.1524,0.09313 0.3683,0.148166 0.220133,0.0508 0.4191,0.0508 0.334433,0 0.537633,-0.156633 0.207433,-0.160867 0.207433,-0.4953 0,-0.296333 -0.182033,-0.452967 -0.182033,-0.160866 -0.575733,-0.160866 -0.118534,0 -0.270934,0.02117 -0.1524,0.02117 -0.245533,0.04233 l -0.186267,-0.118534 0.1143,-1.426633 h 1.515534 v 0.338667 H 39.71269 l -0.07197,0.8763 q 0.07197,-0.0127 0.194733,-0.02963 0.122767,-0.01693 0.270933,-0.01693 z" id="path3170" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 43.985248,69.168869 h -0.448734 l -1.071033,-1.443567 -0.309033,0.270934 v 1.172633 h -0.381 v -3.0226 h 0.381 v 1.490133 q 0.127,-0.143933 0.258233,-0.287866 0.131233,-0.143934 0.262467,-0.287867 l 0.817033,-0.9144 h 0.4445 l -1.198033,1.316567 z" id="path3172" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 47.363051,66.899802 v 2.269067 h -0.300567 l -0.05927,-0.3048 h -0.02117 q -0.105834,0.169333 -0.275167,0.258233 -0.169333,0.0889 -0.4064,0.0889 -0.1651,0 -0.283633,-0.0508 -0.118533,-0.05503 -0.2032,-0.1397 h -0.01693 q 0.0085,0.0762 0.0127,0.2032 0.0085,0.127 0.0085,0.300567 v 0.6604 h -0.372533 v -3.285067 h 0.372533 v 1.464734 q 0,0.537633 0.508,0.537633 0.376767,0 0.5207,-0.211667 0.143933,-0.211666 0.143933,-0.6096 v -1.1811 z" id="path3174" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 50.771082,67.653336 q 0,0.4699 -0.160867,0.821266 -0.156633,0.347134 -0.465666,0.541867 -0.309034,0.194733 -0.766234,0.194733 -0.469899,0 -0.783166,-0.194733 -0.309033,-0.194733 -0.461433,-0.5461 -0.1524,-0.351367 -0.1524,-0.821267 0,-0.465666 0.1524,-0.8128 0.1524,-0.347133 0.461433,-0.541866 0.313267,-0.194733 0.7874,-0.194733 0.452966,0 0.762,0.194733 0.309033,0.1905 0.465666,0.541866 0.160867,0.347134 0.160867,0.817034 z m -2.3876,0 q 0,0.5715 0.2413,0.9017 0.2413,0.325966 0.753533,0.325966 0.516467,0 0.753534,-0.325966 0.237066,-0.3302 0.237066,-0.9017 0,-0.5715 -0.237066,-0.893234 -0.237067,-0.325966 -0.7493,-0.325966 -0.512233,0 -0.757767,0.325966 -0.2413,0.321734 -0.2413,0.893234 z" id="path3176" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 52.241108,66.146269 q 0.592666,0 0.863599,0.232833 0.270934,0.232834 0.270934,0.656167 0,0.249767 -0.1143,0.4699 -0.110067,0.2159 -0.376767,0.351367 -0.262467,0.135466 -0.715433,0.135466 h -0.347133 v 1.176867 h -0.381 v -3.0226 z m -0.03387,0.325967 h -0.385233 v 1.1938 h 0.3048 q 0.431799,0 0.643466,-0.1397 0.211667,-0.1397 0.211667,-0.474134 0,-0.2921 -0.186267,-0.436033 -0.186267,-0.143933 -0.588433,-0.143933 z" id="path3178" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 55.430792,68.542336 q 0,0.3302 -0.245533,0.499533 -0.245533,0.169333 -0.6604,0.169333 -0.237067,0 -0.410633,-0.0381 -0.169334,-0.0381 -0.300567,-0.105833 v -0.338667 q 0.135467,0.06773 0.325967,0.127 0.194733,0.05503 0.3937,0.05503 0.283633,0 0.410633,-0.0889 0.127,-0.09313 0.127,-0.245534 0,-0.08467 -0.04657,-0.1524 -0.04657,-0.06773 -0.169333,-0.135466 -0.118533,-0.06773 -0.3429,-0.1524 -0.220133,-0.08467 -0.376767,-0.169334 -0.156633,-0.08467 -0.2413,-0.2032 -0.08467,-0.118533 -0.08467,-0.3048 0,-0.287866 0.232833,-0.4445 0.237067,-0.156633 0.618067,-0.156633 0.207433,0 0.385233,0.04233 0.182033,0.0381 0.338666,0.110067 l -0.126999,0.296333 q -0.143934,-0.05927 -0.300567,-0.1016 -0.156633,-0.04233 -0.321733,-0.04233 -0.2286,0 -0.351367,0.0762 -0.118533,0.07197 -0.118533,0.198967 0,0.09313 0.05503,0.160866 0.05503,0.0635 0.182033,0.127 0.131234,0.05927 0.347134,0.143934 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.232833,0.207433 0.08043,0.118533 0.08043,0.300567 z" id="path3180" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 40.88873,71.434212 q 0.397933,0 0.651933,0.186267 0.254,0.186267 0.254,0.537633 0,0.182034 -0.08043,0.3175 -0.0762,0.135467 -0.207433,0.2413 -0.131234,0.1016 -0.287867,0.182034 0.186267,0.0889 0.338667,0.2032 0.1524,0.110066 0.2413,0.258233 0.09313,0.148167 0.09313,0.3556 0,0.381 -0.270933,0.605367 -0.2667,0.220133 -0.719667,0.220133 -0.486833,0 -0.7493,-0.211667 -0.262467,-0.2159 -0.262467,-0.601133 0,-0.207433 0.08467,-0.359833 0.0889,-0.1524 0.232833,-0.262467 0.143934,-0.110067 0.309034,-0.186267 -0.220134,-0.127 -0.376767,-0.3048 -0.1524,-0.182033 -0.1524,-0.461433 0,-0.232833 0.118533,-0.389467 0.118534,-0.160866 0.321734,-0.245533 0.2032,-0.08467 0.461433,-0.08467 z m -0.0042,0.300567 q -0.232834,0 -0.385234,0.1143 -0.148166,0.110067 -0.148166,0.321733 0,0.156634 0.07197,0.262467 0.0762,0.105833 0.2032,0.182033 0.127,0.07197 0.2794,0.1397 0.220134,-0.09313 0.3683,-0.224366 0.1524,-0.131234 0.1524,-0.359834 0,-0.211666 -0.148166,-0.321733 -0.148167,-0.1143 -0.3937,-0.1143 z m -0.630767,1.998133 q 0,0.220134 0.156633,0.3683 0.156634,0.143934 0.4826,0.143934 0.309034,0 0.4699,-0.143934 0.1651,-0.148166 0.1651,-0.381 0,-0.220133 -0.173566,-0.364066 -0.173567,-0.148167 -0.461434,-0.258234 l -0.06773,-0.0254 q -0.2794,0.118534 -0.427567,0.275167 -0.143933,0.1524 -0.143933,0.385233 z" id="path3182" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 42.274154,73.529712 v -0.3302 h 1.024467 v 0.3302 z" id="path3184" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 45.683112,74.494912 -0.389467,-1.278466 q -0.05503,-0.173567 -0.09737,-0.338667 -0.0381,-0.169333 -0.05927,-0.262467 h -0.01693 q -0.01693,0.09313 -0.05503,0.262467 -0.0381,0.1651 -0.09737,0.3429 l -0.4064,1.274233 h -0.423334 l -0.6223,-2.269066 h 0.385234 l 0.313266,1.210733 q 0.04657,0.182033 0.0889,0.3683 0.04233,0.186267 0.05927,0.309033 h 0.01693 q 0.01693,-0.07197 0.0381,-0.1778 0.0254,-0.105833 0.05503,-0.220133 0.02963,-0.118533 0.05927,-0.211667 l 0.402167,-1.278466 h 0.4064 l 0.389467,1.278466 q 0.04657,0.143934 0.0889,0.313267 0.04657,0.169333 0.0635,0.2921 h 0.01693 q 0.0127,-0.105833 0.05503,-0.2921 0.04657,-0.186267 0.09737,-0.381 l 0.3175,-1.210733 h 0.381 l -0.630767,2.269066 z" id="path3186" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 48.012107,72.191979 q 0.414867,0 0.613833,0.182033 0.198967,0.182034 0.198967,0.579967 v 1.545167 h -0.270933 l -0.07197,-0.321734 h -0.01693 q -0.148167,0.186267 -0.313267,0.275167 -0.160867,0.0889 -0.448733,0.0889 -0.309034,0 -0.512234,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.821267,-0.2032 l 0.385233,-0.0127 v -0.135467 q 0,-0.283633 -0.122766,-0.3937 -0.122767,-0.110066 -0.347134,-0.110066 -0.1778,0 -0.338666,0.05503 -0.160867,0.0508 -0.300567,0.118533 l -0.1143,-0.2794 q 0.148167,-0.08043 0.351367,-0.135466 0.2032,-0.05927 0.423333,-0.05927 z m 0.4445,1.198033 -0.334433,0.0127 q -0.423334,0.01693 -0.588434,0.135467 -0.160866,0.118533 -0.160866,0.334433 0,0.1905 0.1143,0.2794 0.118533,0.0889 0.300566,0.0889 0.287867,0 0.478367,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path3188" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 49.170121,72.230079 h 0.397934 l 0.491066,1.291167 q 0.0635,0.169333 0.1143,0.325966 0.0508,0.1524 0.0762,0.2921 h 0.01693 q 0.0254,-0.105833 0.08043,-0.275166 0.05503,-0.173567 0.1143,-0.347134 l 0.461433,-1.286933 h 0.402167 l -0.9779,2.582333 q -0.118533,0.321733 -0.309033,0.512233 -0.186267,0.1905 -0.516467,0.1905 -0.1016,0 -0.1778,-0.0127 -0.0762,-0.0085 -0.131233,-0.02117 v -0.296334 q 0.04657,0.0085 0.110066,0.01693 0.06773,0.0085 0.1397,0.0085 0.194734,0 0.313267,-0.110066 0.122767,-0.110067 0.1905,-0.2921 l 0.118533,-0.300567 z" id="path3190" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="BranchPredictionUnit" id="text1491" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 38.995343,16.100697 h 0.8636 q 0.567267,0 0.855133,0.169333 0.2921,0.1651 0.2921,0.579967 0,0.2667 -0.148166,0.4445 -0.148167,0.173566 -0.427567,0.224366 v 0.02117 q 0.1905,0.02963 0.3429,0.110067 0.156633,0.08043 0.245533,0.2286 0.0889,0.148166 0.0889,0.385233 0,0.410633 -0.283633,0.635 -0.2794,0.224367 -0.766233,0.224367 h -1.062567 z m 0.381,1.286933 h 0.5588 q 0.389467,0 0.5334,-0.122766 0.143933,-0.127 0.143933,-0.372534 0,-0.249766 -0.1778,-0.3556 -0.173566,-0.110066 -0.5588,-0.110066 h -0.499533 z m 0,0.3175 v 1.096433 h 0.6096 q 0.402167,0 0.5588,-0.156633 0.156633,-0.156633 0.156633,-0.410633 0,-0.237067 -0.1651,-0.381 Q 40.37541,17.70513 39.95631,17.70513 Z" id="path3193" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 42.756197,16.811897 q 0.0635,0 0.135466,0.0085 0.0762,0.0042 0.131234,0.01693 l -0.04657,0.3429 q -0.05503,-0.0127 -0.122767,-0.02117 -0.0635,-0.0085 -0.122766,-0.0085 -0.173567,0 -0.325967,0.09737 -0.1524,0.09313 -0.245533,0.2667 -0.0889,0.169333 -0.0889,0.397933 v 1.210734 H 41.697863 V 16.85423 h 0.3048 l 0.04233,0.414867 h 0.01693 q 0.110067,-0.186267 0.283633,-0.321733 0.173567,-0.135467 0.410634,-0.135467 z" id="path3195" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 44.219144,16.81613 q 0.414866,0 0.613833,0.182034 0.198967,0.182033 0.198967,0.579966 v 1.545167 H 44.76101 l -0.07197,-0.321734 h -0.01693 q -0.148166,0.186267 -0.313266,0.275167 -0.160867,0.0889 -0.448734,0.0889 -0.309033,0 -0.512233,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.821267,-0.2032 l 0.385233,-0.0127 v -0.135467 q 0,-0.283633 -0.122767,-0.393699 -0.122766,-0.110067 -0.347133,-0.110067 -0.1778,0 -0.338666,0.05503 -0.160867,0.0508 -0.300567,0.118534 l -0.1143,-0.2794 q 0.148167,-0.08043 0.351367,-0.135467 0.203199,-0.05927 0.423333,-0.05927 z m 0.4445,1.198033 -0.334434,0.0127 q -0.423333,0.01693 -0.588433,0.135467 -0.160866,0.118533 -0.160866,0.334433 0,0.1905 0.1143,0.2794 0.118533,0.0889 0.300566,0.0889 0.287867,0 0.478367,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path3197" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 46.824959,16.811897 q 0.4064,0 0.613833,0.198967 0.207433,0.194733 0.207433,0.634999 v 1.477434 h -0.3683 v -1.452034 q 0,-0.546099 -0.508,-0.546099 -0.376766,0 -0.5207,0.211666 -0.143933,0.211667 -0.143933,0.6096 v 1.176867 H 45.732759 V 16.85423 h 0.300566 l 0.05503,0.309034 h 0.02117 q 0.110067,-0.1778 0.3048,-0.262467 0.194734,-0.0889 0.410634,-0.0889 z" id="path3199" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 49.255686,19.16563 q -0.300567,0 -0.537633,-0.122767 -0.232834,-0.122766 -0.3683,-0.381 -0.131234,-0.258233 -0.131234,-0.6604 0,-0.4191 0.1397,-0.681566 0.1397,-0.262467 0.376767,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.173567,0 0.334433,0.0381 0.160867,0.03387 0.262467,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.237067,-0.07197 -0.135466,-0.03387 -0.254,-0.03387 -0.668866,0 -0.668866,0.859366 0,0.410633 0.160866,0.630767 0.1651,0.2159 0.486834,0.2159 0.186266,0 0.325966,-0.0381 0.143934,-0.0381 0.262467,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.135467,0.03387 -0.3302,0.03387 z" id="path3201" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 50.752037,15.905964 v 0.944033 q 0,0.169333 -0.02117,0.3175 h 0.0254 q 0.110067,-0.173567 0.296333,-0.262467 0.1905,-0.0889 0.410634,-0.0889 0.414866,0 0.6223,0.198967 0.207433,0.194733 0.207433,0.630766 v 1.477434 h -0.3683 v -1.452034 q 0,-0.546099 -0.508,-0.546099 -0.381,0 -0.524933,0.215899 -0.1397,0.211667 -0.1397,0.6096 v 1.172634 h -0.372534 v -3.217333 z" id="path3203" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 36.748601,21.392363 q 0.592666,0 0.8636,0.232833 0.270933,0.232834 0.270933,0.656167 0,0.249767 -0.1143,0.4699 -0.110067,0.2159 -0.376767,0.351367 -0.262466,0.135466 -0.715433,0.135466 h -0.347133 v 1.176867 h -0.381 v -3.0226 z m -0.03387,0.325967 h -0.385233 v 1.1938 h 0.3048 q 0.4318,0 0.643466,-0.1397 0.211667,-0.1397 0.211667,-0.474134 0,-0.2921 -0.186267,-0.436033 -0.186266,-0.143933 -0.588433,-0.143933 z" id="path3205" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 39.519185,22.103563 q 0.0635,0 0.135467,0.0085 0.0762,0.0042 0.131233,0.01693 l -0.04657,0.3429 q -0.05503,-0.0127 -0.122766,-0.02117 -0.0635,-0.0085 -0.122767,-0.0085 -0.173567,0 -0.325967,0.09737 -0.1524,0.09313 -0.245533,0.2667 -0.0889,0.169334 -0.0889,0.397933 v 1.210734 h -0.372533 v -2.269067 h 0.3048 l 0.04233,0.414867 h 0.01693 q 0.110067,-0.186267 0.283634,-0.321733 0.173566,-0.135467 0.410633,-0.135467 z" id="path3207" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 40.999066,22.103563 q 0.2921,0 0.499533,0.127 0.211666,0.127 0.321733,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.553633 q 0.0085,0.385233 0.194733,0.588433 0.1905,0.198967 0.529167,0.198967 0.2159,0 0.381,-0.0381 0.169333,-0.04233 0.347133,-0.118533 v 0.325966 q -0.173567,0.0762 -0.3429,0.110067 -0.169333,0.0381 -0.402166,0.0381 -0.321734,0 -0.5715,-0.131233 -0.245534,-0.131234 -0.385234,-0.389467 -0.135466,-0.262467 -0.135466,-0.639233 0,-0.372533 0.122766,-0.639233 0.127,-0.2667 0.351367,-0.410634 0.2286,-0.143933 0.529167,-0.143933 z m -0.0042,0.3048 q -0.2667,0 -0.423333,0.173567 -0.1524,0.169333 -0.182033,0.474133 h 1.155699 q -0.0042,-0.287867 -0.135466,-0.465667 -0.131233,-0.182033 -0.414867,-0.182033 z" id="path3209" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 43.316617,24.457296 q -0.423333,0 -0.677333,-0.2921 -0.254,-0.296333 -0.254,-0.880533 0,-0.5842 0.254,-0.880533 0.258233,-0.300567 0.681566,-0.300567 0.262467,0 0.427567,0.09737 0.169333,0.09737 0.275167,0.237066 h 0.0254 q -0.0042,-0.05503 -0.01693,-0.160866 -0.0085,-0.110067 -0.0085,-0.173567 V 21.19763 h 0.372533 v 3.217333 H 44.09555 l -0.05503,-0.3048 h -0.01693 q -0.1016,0.143933 -0.270934,0.245533 -0.169333,0.1016 -0.436033,0.1016 z m 0.05927,-0.309033 q 0.359833,0 0.503766,-0.194734 0.148167,-0.198966 0.148167,-0.5969 v -0.06773 q 0,-0.423333 -0.1397,-0.6477 -0.1397,-0.2286 -0.516467,-0.2286 -0.300566,0 -0.452966,0.2413 -0.148167,0.237067 -0.148167,0.639233 0,0.4064 0.148167,0.630767 0.1524,0.224367 0.4572,0.224367 z" id="path3211" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 45.307276,21.294996 q 0.08467,0 0.148167,0.05927 0.06773,0.05503 0.06773,0.1778 0,0.118533 -0.06773,0.1778 -0.0635,0.05927 -0.148167,0.05927 -0.09313,0 -0.156633,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.156633,-0.05927 z m 0.182033,0.8509 v 2.269067 h -0.372533 v -2.269067 z" id="path3213" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 47.118349,24.457296 q -0.300567,0 -0.537634,-0.122767 -0.232833,-0.122766 -0.3683,-0.381 -0.131233,-0.258233 -0.131233,-0.6604 0,-0.419099 0.1397,-0.681566 0.1397,-0.262467 0.376767,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.173566,0 0.334433,0.0381 0.160866,0.03387 0.262466,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.237066,-0.07197 -0.135467,-0.03387 -0.254,-0.03387 -0.668867,0 -0.668867,0.859366 0,0.410633 0.160867,0.630767 0.1651,0.2159 0.486833,0.2159 0.186267,0 0.325967,-0.0381 0.143933,-0.0381 0.262466,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.135466,0.03387 -0.330199,0.03387 z" id="path3215" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 48.999933,24.152496 q 0.08467,0 0.173566,-0.0127 0.0889,-0.01693 0.143934,-0.03387 v 0.283634 q -0.05927,0.02963 -0.169334,0.04657 -0.110066,0.02117 -0.211666,0.02117 -0.1778,0 -0.3302,-0.05927 -0.148167,-0.0635 -0.2413,-0.2159 -0.09313,-0.1524 -0.09313,-0.427566 v -1.3208 h -0.321733 v -0.1778 l 0.325967,-0.148167 0.148166,-0.4826 h 0.220134 v 0.5207 h 0.656166 v 0.287867 h -0.656166 v 1.312333 q 0,0.207433 0.09737,0.309033 0.1016,0.09737 0.258234,0.09737 z" id="path3217" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 49.962288,21.294996 q 0.08467,0 0.148167,0.05927 0.06773,0.05503 0.06773,0.1778 0,0.118533 -0.06773,0.1778 -0.0635,0.05927 -0.148167,0.05927 -0.09313,0 -0.156633,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.156633,-0.05927 z m 0.182033,0.8509 v 2.269067 h -0.372533 v -2.269067 z" id="path3219" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 52.835928,23.276196 q 0,0.563033 -0.287866,0.872067 -0.283634,0.309033 -0.770467,0.309033 -0.300567,0 -0.537633,-0.135467 -0.232834,-0.1397 -0.3683,-0.402166 -0.135467,-0.2667 -0.135467,-0.643467 0,-0.563033 0.283633,-0.867833 0.283634,-0.3048 0.770467,-0.3048 0.309033,0 0.541867,0.1397 0.237066,0.135467 0.3683,0.397933 0.135466,0.258234 0.135466,0.635 z m -1.7145,0 q 0,0.402167 0.156634,0.639233 0.160866,0.232834 0.508,0.232834 0.3429,0 0.503766,-0.232834 0.160867,-0.237066 0.160867,-0.639233 0,-0.402166 -0.160867,-0.630766 -0.160866,-0.2286 -0.508,-0.2286 -0.347133,0 -0.503766,0.2286 -0.156634,0.2286 -0.156634,0.630766 z" id="path3221" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 54.518545,22.103563 q 0.4064,0 0.613834,0.198967 0.207433,0.194733 0.207433,0.635 v 1.477433 h -0.3683 V 22.96293 q 0,-0.5461 -0.508,-0.5461 -0.376767,0 -0.5207,0.211666 -0.143933,0.211667 -0.143933,0.6096 v 1.176867 h -0.372534 v -2.269067 h 0.300567 l 0.05503,0.309034 h 0.02117 q 0.110067,-0.1778 0.3048,-0.262467 0.194733,-0.0889 0.410633,-0.0889 z" id="path3223" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 44.15485,26.684029 v 1.9558 q 0,0.313267 -0.127,0.567266 -0.127,0.249767 -0.389467,0.397934 -0.258233,0.143933 -0.660399,0.143933 -0.563034,0 -0.859367,-0.3048 -0.2921,-0.309033 -0.2921,-0.8128 v -1.947333 h 0.381 v 1.960033 q 0,0.3683 0.194733,0.5715 0.198967,0.2032 0.5969,0.2032 0.410633,0 0.592667,-0.2159 0.186266,-0.220133 0.186266,-0.563033 v -1.9558 z" id="path3225" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 45.989868,27.395229 q 0.4064,0 0.613833,0.198967 0.207433,0.194733 0.207433,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.376766,0 -0.5207,0.211666 -0.143933,0.211667 -0.143933,0.6096 v 1.176867 h -0.372533 v -2.269067 h 0.300566 l 0.05503,0.309034 h 0.02117 q 0.110067,-0.1778 0.3048,-0.262467 0.194734,-0.0889 0.410634,-0.0889 z" id="path3227" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 47.700928,26.586662 q 0.08467,0 0.148167,0.05927 0.06773,0.05503 0.06773,0.1778 0,0.118533 -0.06773,0.1778 -0.0635,0.05927 -0.148167,0.05927 -0.09313,0 -0.156633,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.156633,-0.05927 z m 0.182034,0.8509 v 2.269067 h -0.372534 v -2.269067 z" id="path3229" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 49.359601,29.444162 q 0.08467,0 0.173567,-0.0127 0.0889,-0.01693 0.143933,-0.03387 v 0.283634 q -0.05927,0.02963 -0.169333,0.04657 -0.110067,0.02117 -0.211667,0.02117 -0.1778,0 -0.3302,-0.05927 -0.148167,-0.0635 -0.2413,-0.2159 -0.09313,-0.1524 -0.09313,-0.427566 v -1.3208 h -0.321734 v -0.1778 l 0.325967,-0.148167 0.148167,-0.4826 h 0.220133 v 0.5207 h 0.656167 v 0.287867 h -0.656167 v 1.312333 q 0,0.207433 0.09737,0.309033 0.1016,0.09737 0.258233,0.09737 z" id="path3231" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 50.403336,-37.697918 h 25.13545 V -20.5 h -25.13545 z" id="rect1504" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="L1i Cache32 kiB8-way" id="text1512" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 53.825696,-33.290951 v -3.0226 h 0.381 v 2.683934 h 1.3208 v 0.338666 z" id="path3235" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 57.133782,-33.290951 h -0.364067 v -2.112433 q 0,-0.182033 0.0042,-0.2921 0.0042,-0.110067 0.0127,-0.2286 -0.06773,0.06773 -0.122766,0.1143 -0.05503,0.04657 -0.1397,0.118533 l -0.321734,0.262467 -0.194733,-0.249767 0.817033,-0.635 h 0.309034 z" id="path3237" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 58.603873,-36.410917 q 0.08467,0 0.148166,0.05927 0.06773,0.05503 0.06773,0.1778 0,0.118534 -0.06773,0.1778 -0.0635,0.05927 -0.148166,0.05927 -0.09313,0 -0.156634,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.156634,-0.05927 z m 0.182033,0.8509 v 2.269066 h -0.372533 v -2.269066 z" id="path3239" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 61.950653,-36.021451 q -0.486833,0 -0.766233,0.325967 -0.2794,0.325967 -0.2794,0.893233 0,0.563034 0.258233,0.893234 0.262467,0.325966 0.783167,0.325966 0.198966,0 0.376766,-0.03387 0.1778,-0.03387 0.347134,-0.08467 v 0.3302 q -0.169334,0.0635 -0.351367,0.09313 -0.1778,0.02963 -0.427567,0.02963 -0.461433,0 -0.770466,-0.1905 -0.309033,-0.1905 -0.465667,-0.541867 -0.1524,-0.351367 -0.1524,-0.8255 0,-0.4572 0.1651,-0.804333 0.169334,-0.351367 0.4953,-0.5461 0.325967,-0.198967 0.791633,-0.198967 0.478367,0 0.833967,0.1778 l -0.1524,0.321733 q -0.1397,-0.0635 -0.313267,-0.1143 -0.169333,-0.0508 -0.372533,-0.0508 z" id="path3241" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 64.142726,-35.598117 q 0.414866,0 0.613833,0.182033 0.198967,0.182033 0.198967,0.579967 v 1.545166 h -0.270934 l -0.07197,-0.321733 h -0.01693 q -0.148166,0.186267 -0.313266,0.275167 -0.160867,0.0889 -0.448734,0.0889 -0.309033,0 -0.512233,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.821267,-0.2032 l 0.385233,-0.0127 v -0.135467 q 0,-0.283633 -0.122767,-0.3937 -0.122766,-0.110067 -0.347133,-0.110067 -0.1778,0 -0.338667,0.05503 -0.160866,0.0508 -0.300566,0.118533 l -0.1143,-0.2794 q 0.148166,-0.08043 0.351366,-0.135467 0.2032,-0.05927 0.423334,-0.05927 z m 0.4445,1.198033 -0.334434,0.0127 q -0.423333,0.01693 -0.588433,0.135467 -0.160867,0.118533 -0.160867,0.334433 0,0.1905 0.1143,0.2794 0.118534,0.0889 0.300567,0.0889 0.287867,0 0.478367,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path3243" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 66.566508,-33.248617 q -0.300567,0 -0.537633,-0.122767 -0.232834,-0.122767 -0.3683,-0.381 -0.131234,-0.258233 -0.131234,-0.6604 0,-0.4191 0.1397,-0.681567 0.1397,-0.262466 0.376767,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.173566,0 0.334433,0.0381 0.160867,0.03387 0.262467,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.237067,-0.07197 -0.135467,-0.03387 -0.254,-0.03387 -0.668866,0 -0.668866,0.859367 0,0.410633 0.160866,0.630766 0.1651,0.2159 0.486833,0.2159 0.186267,0 0.325967,-0.0381 0.143933,-0.0381 0.262467,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.135467,0.03387 -0.3302,0.03387 z" id="path3245" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 68.062859,-36.508284 v 0.944033 q 0,0.169334 -0.02117,0.3175 h 0.0254 q 0.110067,-0.173566 0.296333,-0.262466 0.1905,-0.0889 0.410634,-0.0889 0.414866,0 0.6223,0.198966 0.207433,0.194734 0.207433,0.630767 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.381,0 -0.524933,0.2159 -0.1397,0.211667 -0.1397,0.6096 v 1.172633 h -0.372534 v -3.217333 z" id="path3247" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 71.179385,-35.602351 q 0.2921,0 0.499533,0.127 0.211667,0.127 0.321734,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.553634 q 0.0085,0.385233 0.194734,0.588433 0.1905,0.198967 0.529166,0.198967 0.2159,0 0.381,-0.0381 0.169334,-0.04233 0.347134,-0.118534 v 0.325967 q -0.173567,0.0762 -0.3429,0.110067 -0.169334,0.0381 -0.402167,0.0381 -0.321733,0 -0.5715,-0.131234 -0.245533,-0.131233 -0.385233,-0.389466 -0.135467,-0.262467 -0.135467,-0.639234 0,-0.372533 0.122767,-0.639233 0.127,-0.2667 0.351366,-0.410633 0.2286,-0.143934 0.529167,-0.143934 z m -0.0042,0.3048 q -0.2667,0 -0.423334,0.173567 -0.1524,0.169333 -0.182033,0.474133 h 1.1557 q -0.0042,-0.287866 -0.135467,-0.465666 -0.131233,-0.182034 -0.414866,-0.182034 z" id="path3249" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 58.937545,-30.314918 q 0,0.3048 -0.169333,0.486833 -0.169333,0.1778 -0.4572,0.237067 v 0.01693 q 0.364067,0.04233 0.541867,0.2286 0.1778,0.186267 0.1778,0.486834 0,0.262466 -0.122767,0.4699 -0.122767,0.2032 -0.381,0.3175 -0.254,0.1143 -0.656167,0.1143 -0.237066,0 -0.440266,-0.0381 -0.2032,-0.03387 -0.389467,-0.127 v -0.347134 q 0.1905,0.09313 0.410633,0.148167 0.220134,0.0508 0.423334,0.0508 0.4064,0 0.5842,-0.156633 0.182033,-0.160867 0.182033,-0.440267 0,-0.283633 -0.224367,-0.4064 -0.220133,-0.127 -0.6223,-0.127 h -0.2921 v -0.3175 h 0.296334 q 0.372533,0 0.563033,-0.156633 0.194733,-0.156634 0.194733,-0.414867 0,-0.220133 -0.148166,-0.338667 -0.148167,-0.122766 -0.402167,-0.122766 -0.245533,0 -0.4191,0.07197 -0.173567,0.07197 -0.3429,0.182034 l -0.186267,-0.254 q 0.160867,-0.127 0.397934,-0.220134 0.2413,-0.09313 0.5461,-0.09313 0.474133,0 0.702733,0.211667 0.232833,0.211666 0.232833,0.537633 z" id="path3251" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 61.474436,-27.999285 h -1.998133 v -0.309033 l 0.791633,-0.8001 q 0.2286,-0.2286 0.385234,-0.4064 0.156633,-0.1778 0.237066,-0.347133 0.08043,-0.173567 0.08043,-0.376767 0,-0.249767 -0.148167,-0.376767 -0.148167,-0.131233 -0.385233,-0.131233 -0.220134,0 -0.389467,0.0762 -0.1651,0.0762 -0.338667,0.211667 l -0.198966,-0.249767 q 0.1778,-0.148167 0.4064,-0.249767 0.232833,-0.105833 0.5207,-0.105833 0.423333,0 0.668866,0.2159 0.245534,0.211667 0.245534,0.588433 0,0.237067 -0.09737,0.4445 -0.09737,0.207434 -0.270933,0.410634 -0.173567,0.198966 -0.4064,0.427566 l -0.630767,0.6223 v 0.01693 h 1.528233 z" id="path3253" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 63.523502,-31.216618 v 1.680633 q 0,0.06773 -0.0085,0.1778 -0.0042,0.110067 -0.0085,0.1905 h 0.01693 q 0.0254,-0.03387 0.0762,-0.09737 0.0508,-0.0635 0.1016,-0.127 0.05503,-0.06773 0.09313,-0.110067 l 0.7239,-0.766233 h 0.436034 l -0.918634,0.969433 0.982134,1.299633 h -0.448734 l -0.7874,-1.058333 -0.258233,0.224367 v 0.833966 h -0.3683 v -3.217333 z" id="path3255" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 65.602928,-31.119251 q 0.08467,0 0.148167,0.05927 0.06773,0.05503 0.06773,0.1778 0,0.118534 -0.06773,0.1778 -0.0635,0.05927 -0.148167,0.05927 -0.09313,0 -0.156633,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.156633,-0.05927 z m 0.182033,0.8509 v 2.269066 h -0.372533 v -2.269066 z" id="path3257" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 66.554635,-31.021885 h 0.8636 q 0.567266,0 0.855133,0.169334 0.2921,0.1651 0.2921,0.579966 0,0.2667 -0.148167,0.4445 -0.148166,0.173567 -0.427566,0.224367 v 0.02117 q 0.1905,0.02963 0.3429,0.110066 0.156633,0.08043 0.245533,0.2286 0.0889,0.148167 0.0889,0.385234 0,0.410633 -0.283633,0.635 -0.2794,0.224366 -0.766234,0.224366 h -1.062566 z m 0.381,1.286934 h 0.5588 q 0.389466,0 0.5334,-0.122767 0.143933,-0.127 0.143933,-0.372533 0,-0.249767 -0.1778,-0.3556 -0.173567,-0.110067 -0.5588,-0.110067 h -0.499533 z m 0,0.3175 v 1.096433 h 0.6096 q 0.402166,0 0.5588,-0.156633 0.156633,-0.156634 0.156633,-0.410634 0,-0.237066 -0.1651,-0.381 -0.160867,-0.148166 -0.579967,-0.148166 z" id="path3259" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 58.259584,-25.772552 q 0.397933,0 0.651933,0.186267 0.254,0.186266 0.254,0.537633 0,0.182033 -0.08043,0.3175 -0.0762,0.135467 -0.207433,0.2413 -0.131233,0.1016 -0.287866,0.182033 0.186266,0.0889 0.338666,0.2032 0.1524,0.110067 0.2413,0.258234 0.09313,0.148166 0.09313,0.3556 0,0.381 -0.270933,0.605366 -0.2667,0.220134 -0.719666,0.220134 -0.486834,0 -0.7493,-0.211667 -0.262467,-0.2159 -0.262467,-0.601133 0,-0.207434 0.08467,-0.359834 0.0889,-0.1524 0.232833,-0.262466 0.143933,-0.110067 0.309033,-0.186267 -0.220133,-0.127 -0.376766,-0.3048 -0.1524,-0.182033 -0.1524,-0.461433 0,-0.232834 0.118533,-0.389467 0.118533,-0.160867 0.321733,-0.245533 0.2032,-0.08467 0.461434,-0.08467 z m -0.0042,0.300567 q -0.232833,0 -0.385233,0.1143 -0.148167,0.110066 -0.148167,0.321733 0,0.156633 0.07197,0.262467 0.0762,0.105833 0.2032,0.182033 0.127,0.07197 0.2794,0.1397 0.220133,-0.09313 0.3683,-0.224367 0.1524,-0.131233 0.1524,-0.359833 0,-0.211667 -0.148167,-0.321733 -0.148166,-0.1143 -0.3937,-0.1143 z m -0.630766,1.998133 q 0,0.220133 0.156633,0.3683 0.156633,0.143933 0.4826,0.143933 0.309033,0 0.4699,-0.143933 0.1651,-0.148167 0.1651,-0.381 0,-0.220133 -0.173567,-0.364067 -0.173566,-0.148166 -0.461433,-0.258233 l -0.06773,-0.0254 q -0.2794,0.118533 -0.427567,0.275167 -0.143933,0.1524 -0.143933,0.385233 z" id="path3261" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 59.645008,-23.677052 v -0.3302 h 1.024467 v 0.3302 z" id="path3263" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 63.053965,-22.711852 -0.389466,-1.278467 q -0.05503,-0.173566 -0.09737,-0.338666 -0.0381,-0.169334 -0.05927,-0.262467 h -0.01693 q -0.01693,0.09313 -0.05503,0.262467 -0.0381,0.1651 -0.09737,0.3429 l -0.4064,1.274233 h -0.423333 l -0.6223,-2.269067 h 0.385233 l 0.313267,1.210734 q 0.04657,0.182033 0.0889,0.3683 0.04233,0.186266 0.05927,0.309033 h 0.01693 q 0.01693,-0.07197 0.0381,-0.1778 0.0254,-0.105833 0.05503,-0.220133 0.02963,-0.118534 0.05927,-0.211667 l 0.402166,-1.278467 h 0.4064 l 0.389467,1.278467 q 0.04657,0.143933 0.0889,0.313267 0.04657,0.169333 0.0635,0.2921 h 0.01693 q 0.0127,-0.105834 0.05503,-0.2921 0.04657,-0.186267 0.09737,-0.381 l 0.3175,-1.210734 h 0.381 l -0.630766,2.269067 z" id="path3265" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 65.38296,-25.014785 q 0.414867,0 0.613834,0.182033 0.198966,0.182033 0.198966,0.579967 v 1.545166 h -0.270933 l -0.07197,-0.321733 h -0.01693 q -0.148167,0.186267 -0.313267,0.275167 -0.160866,0.0889 -0.448733,0.0889 -0.309033,0 -0.512233,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.821266,-0.2032 l 0.385234,-0.0127 v -0.135467 q 0,-0.283633 -0.122767,-0.3937 -0.122767,-0.110067 -0.347133,-0.110067 -0.1778,0 -0.338667,0.05503 -0.160867,0.0508 -0.300567,0.118533 l -0.1143,-0.2794 q 0.148167,-0.08043 0.351367,-0.135467 0.2032,-0.05927 0.423333,-0.05927 z m 0.4445,1.198033 -0.334433,0.0127 q -0.423333,0.01693 -0.588433,0.135467 -0.160867,0.118533 -0.160867,0.334433 0,0.1905 0.1143,0.2794 0.118533,0.0889 0.300567,0.0889 0.287866,0 0.478366,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path3267" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 66.540975,-24.976685 h 0.397933 l 0.491067,1.291166 q 0.0635,0.169334 0.1143,0.325967 0.0508,0.1524 0.0762,0.2921 h 0.01693 q 0.0254,-0.105833 0.08043,-0.275167 0.05503,-0.173566 0.1143,-0.347133 l 0.461434,-1.286933 h 0.402166 l -0.9779,2.582333 q -0.118533,0.321733 -0.309033,0.512233 -0.186267,0.1905 -0.516467,0.1905 -0.1016,0 -0.1778,-0.0127 -0.0762,-0.0085 -0.131233,-0.02117 v -0.296334 q 0.04657,0.0085 0.110067,0.01693 0.06773,0.0085 0.1397,0.0085 0.194733,0 0.313266,-0.110066 0.122767,-0.110067 0.1905,-0.2921 l 0.118534,-0.300567 z" id="path3269" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 50.403305,-20.499998 h 25.13545 v 13.2291621 h -25.13545 z" id="rect1566" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="InstructionµOPCache Tags" id="text1551" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 54.911748,-17.419226 h -0.910166 v -0.183444 l 0.296333,-0.06703 v -2.014361 l -0.296333,-0.07056 v -0.183444 h 0.910166 v 0.183444 l -0.296333,0.07056 v 2.014361 l 0.296333,0.06703 z" id="path3273" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 56.269391,-19.345392 q 0.338667,0 0.511528,0.165805 0.172861,0.162278 0.172861,0.529167 v 1.231194 h -0.306916 v -1.210027 q 0,-0.455084 -0.423334,-0.455084 -0.313972,0 -0.433916,0.176389 -0.119945,0.176389 -0.119945,0.508 v 0.980722 h -0.310444 v -1.890889 h 0.250472 l 0.04586,0.257528 h 0.01764 q 0.09172,-0.148166 0.254,-0.218722 0.162278,-0.07408 0.342194,-0.07408 z" id="path3275" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 58.76772,-17.941337 q 0,0.275167 -0.204612,0.416278 -0.204611,0.141111 -0.550333,0.141111 -0.197555,0 -0.342194,-0.03175 -0.141111,-0.03175 -0.250473,-0.08819 v -0.282223 q 0.112889,0.05645 0.271639,0.105834 0.162278,0.04586 0.328084,0.04586 0.236361,0 0.342194,-0.07408 0.105833,-0.07761 0.105833,-0.204612 0,-0.07055 -0.0388,-0.127 -0.03881,-0.05644 -0.141111,-0.112888 -0.09878,-0.05645 -0.28575,-0.127 -0.183445,-0.07056 -0.313972,-0.141112 -0.130528,-0.07055 -0.201084,-0.169333 -0.07055,-0.09878 -0.07055,-0.254 0,-0.239889 0.194027,-0.370417 0.197556,-0.130527 0.515056,-0.130527 0.172861,0 0.321028,0.03528 0.151694,0.03175 0.282222,0.09172 l -0.105833,0.246944 q -0.119945,-0.04939 -0.250473,-0.08467 -0.130527,-0.03528 -0.268111,-0.03528 -0.1905,0 -0.292805,0.0635 -0.09878,0.05997 -0.09878,0.165805 0,0.07761 0.04586,0.134056 0.04586,0.05292 0.151695,0.105833 0.109361,0.04939 0.289277,0.119945 0.179917,0.06703 0.306917,0.137583 0.127,0.07055 0.194028,0.172861 0.06703,0.09878 0.06703,0.250472 z" id="path3277" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 59.856094,-17.637948 q 0.07055,0 0.144639,-0.01058 0.07408,-0.01411 0.119944,-0.02822 v 0.236361 q -0.04939,0.02469 -0.141111,0.0388 -0.09172,0.01764 -0.176389,0.01764 -0.148166,0 -0.275166,-0.04939 -0.123473,-0.05292 -0.201084,-0.179916 -0.07761,-0.127 -0.07761,-0.356306 v -1.100667 h -0.268111 v -0.148166 l 0.271639,-0.123473 0.123472,-0.402166 h 0.183445 v 0.433916 h 0.546805 v 0.239889 h -0.546805 v 1.093611 q 0,0.172862 0.08114,0.257528 0.08467,0.08114 0.215195,0.08114 z" id="path3279" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 61.381251,-19.345392 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.03881,0.28575 q -0.04586,-0.01058 -0.102306,-0.01764 -0.05292,-0.0071 -0.102305,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008944 h -0.310444 v -1.890889 h 0.254 l 0.03528,0.345723 h 0.01411 q 0.09172,-0.155223 0.236361,-0.268111 0.144639,-0.112889 0.342194,-0.112889 z" id="path3281" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 63.533582,-19.310115 v 1.890889 h -0.254 l -0.04586,-0.250472 h -0.01411 q -0.09172,0.148167 -0.254,0.218722 -0.162277,0.06703 -0.345722,0.06703 -0.342194,0 -0.515055,-0.162278 -0.172861,-0.165805 -0.172861,-0.525639 v -1.23825 h 0.313972 v 1.217084 q 0,0.451555 0.419805,0.451555 0.313973,0 0.433917,-0.176389 0.123472,-0.176388 0.123472,-0.508 v -0.98425 z" id="path3283" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 64.88891,-17.383948 q -0.250472,0 -0.448028,-0.102305 -0.194028,-0.102306 -0.306916,-0.3175 -0.109362,-0.215195 -0.109362,-0.550334 0,-0.34925 0.116417,-0.567972 0.116417,-0.218722 0.313972,-0.321028 0.201084,-0.102305 0.455084,-0.102305 0.144638,0 0.278694,0.03175 0.134056,0.02822 0.218722,0.07056 l -0.09525,0.257528 q -0.08467,-0.03175 -0.197555,-0.05997 -0.112889,-0.02822 -0.211667,-0.02822 -0.557389,0 -0.557389,0.716138 0,0.342195 0.134056,0.525639 0.137583,0.179917 0.405694,0.179917 0.155222,0 0.271639,-0.03175 0.119944,-0.03175 0.218722,-0.07761 v 0.275167 q -0.09525,0.04939 -0.211666,0.07408 -0.112889,0.02822 -0.275167,0.02822 z" id="path3285" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 66.456896,-17.637948 q 0.07056,0 0.144639,-0.01058 0.07408,-0.01411 0.119945,-0.02822 v 0.236361 q -0.04939,0.02469 -0.141111,0.0388 -0.09172,0.01764 -0.176389,0.01764 -0.148167,0 -0.275167,-0.04939 -0.123472,-0.05292 -0.201083,-0.179916 -0.07761,-0.127 -0.07761,-0.356306 v -1.100667 h -0.268112 v -0.148166 l 0.271639,-0.123473 0.123473,-0.402166 h 0.183444 v 0.433916 h 0.546806 v 0.239889 h -0.546806 v 1.093611 q 0,0.172862 0.08114,0.257528 0.08467,0.08114 0.215194,0.08114 z" id="path3287" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 67.25886,-20.019198 q 0.07055,0 0.123472,0.04939 0.05644,0.04586 0.05644,0.148167 0,0.09878 -0.05644,0.148166 -0.05292,0.04939 -0.123472,0.04939 -0.07761,0 -0.130528,-0.04939 -0.05292,-0.04939 -0.05292,-0.148166 0,-0.102306 0.05292,-0.148167 0.05292,-0.04939 0.130528,-0.04939 z m 0.151694,0.709083 v 1.890889 H 67.10011 v -1.890889 z" id="path3289" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 69.653559,-18.368198 q 0,0.469195 -0.239889,0.726722 -0.236361,0.257528 -0.642055,0.257528 -0.250472,0 -0.448028,-0.112889 -0.194028,-0.116416 -0.306917,-0.335139 -0.112888,-0.22225 -0.112888,-0.536222 0,-0.469194 0.236361,-0.723194 0.236361,-0.254 0.642055,-0.254 0.257528,0 0.451556,0.116416 0.197555,0.112889 0.306916,0.331611 0.112889,0.215195 0.112889,0.529167 z m -1.42875,0 q 0,0.335139 0.130528,0.532695 0.134056,0.194027 0.423333,0.194027 0.28575,0 0.419806,-0.194027 0.134055,-0.197556 0.134055,-0.532695 0,-0.335139 -0.134055,-0.525639 -0.134056,-0.1905 -0.423333,-0.1905 -0.289278,0 -0.419806,0.1905 -0.130528,0.1905 -0.130528,0.525639 z" id="path3291" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 71.055741,-19.345392 q 0.338667,0 0.511528,0.165805 0.172861,0.162278 0.172861,0.529167 v 1.231194 h -0.306917 v -1.210027 q 0,-0.455084 -0.423333,-0.455084 -0.313972,0 -0.433917,0.176389 -0.119944,0.176389 -0.119944,0.508 v 0.980722 h -0.310445 v -1.890889 h 0.250473 l 0.04586,0.257528 h 0.01764 q 0.09172,-0.148166 0.254,-0.218722 0.162277,-0.07408 0.342194,-0.07408 z" id="path3293" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 61.294683,-14.900392 v 1.890889 h -0.250472 l -0.04939,-0.254 h -0.01764 q -0.08819,0.141111 -0.229305,0.215194 -0.141111,0.07408 -0.338667,0.07408 -0.137583,0 -0.236361,-0.04233 -0.09878,-0.04586 -0.169333,-0.116417 h -0.01411 q 0.0071,0.0635 0.01058,0.169334 0.0071,0.105833 0.0071,0.250472 v 0.550333 H 59.6966 v -2.737555 h 0.310444 v 1.220611 q 0,0.448028 0.423334,0.448028 0.313972,0 0.433916,-0.176389 0.119945,-0.176389 0.119945,-0.508 v -0.98425 z" id="path3295" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 64.13471,-14.272448 q 0,0.391584 -0.134056,0.684389 -0.130528,0.289278 -0.388056,0.451556 -0.257527,0.162277 -0.638527,0.162277 -0.391584,0 -0.652639,-0.162277 -0.257528,-0.162278 -0.384528,-0.455084 -0.127,-0.292805 -0.127,-0.684389 0,-0.388055 0.127,-0.677333 0.127,-0.289278 0.384528,-0.451555 0.261055,-0.162278 0.656167,-0.162278 0.377472,0 0.634999,0.162278 0.257528,0.15875 0.388056,0.451555 0.134056,0.289278 0.134056,0.680861 z m -1.989667,0 q 0,0.47625 0.201083,0.751417 0.201084,0.271639 0.627945,0.271639 0.430389,0 0.627944,-0.271639 0.197556,-0.275167 0.197556,-0.751417 0,-0.47625 -0.197556,-0.744361 -0.197555,-0.271639 -0.624416,-0.271639 -0.426862,0 -0.631473,0.271639 -0.201083,0.268111 -0.201083,0.744361 z" id="path3297" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 65.35973,-15.528337 q 0.493889,0 0.719667,0.194028 0.225778,0.194028 0.225778,0.546806 0,0.208139 -0.09525,0.391583 -0.09172,0.179917 -0.313972,0.292806 -0.218723,0.112888 -0.596195,0.112888 H 65.01048 v 0.980723 h -0.3175 v -2.518834 z m -0.02822,0.271639 H 65.01048 v 0.994834 h 0.254 q 0.359834,0 0.536223,-0.116417 0.176389,-0.116417 0.176389,-0.395111 0,-0.243417 -0.155223,-0.363361 -0.155222,-0.119945 -0.490361,-0.119945 z" id="path3299" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 55.10991,-10.875198 q -0.405694,0 -0.638528,0.271639 -0.232833,0.271639 -0.232833,0.7443613 0,0.4691945 0.215195,0.7443611 0.218722,0.2716389 0.652638,0.2716389 0.165806,0 0.313973,-0.028222 0.148166,-0.028222 0.289277,-0.070556 v 0.2751667 q -0.141111,0.052917 -0.292805,0.077611 -0.148167,0.024694 -0.356306,0.024694 -0.384528,0 -0.642055,-0.15875 -0.257528,-0.15875 -0.388056,-0.4515555 -0.127,-0.2928055 -0.127,-0.6879166 0,-0.3809996 0.137584,-0.6702776 0.141111,-0.292806 0.41275,-0.455084 0.271638,-0.165805 0.659694,-0.165805 0.398639,0 0.694972,0.148167 l -0.127,0.268111 q -0.116417,-0.05292 -0.261055,-0.09525 -0.141112,-0.04233 -0.310445,-0.04233 z" id="path3301" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 56.936638,-10.52242 q 0.345722,0 0.511527,0.151695 0.165806,0.151694 0.165806,0.4833051 v 1.2876389 h -0.225778 l -0.05997,-0.2681111 h -0.01411 q -0.123472,0.1552222 -0.261056,0.2293055 -0.134055,0.074083 -0.373944,0.074083 -0.257528,0 -0.426861,-0.1340555 -0.169334,-0.1375833 -0.169334,-0.4268611 0,-0.2822222 0.22225,-0.4339167 0.22225,-0.1552222 0.684389,-0.1693333 l 0.321028,-0.010583 v -0.1128889 q 0,-0.2363609 -0.102306,-0.3280829 -0.102305,-0.09172 -0.289277,-0.09172 -0.148167,0 -0.282223,0.04586 -0.134055,0.04233 -0.250472,0.09878 l -0.09525,-0.232833 q 0.123472,-0.06703 0.292806,-0.112889 0.169333,-0.04939 0.352778,-0.04939 z m 0.370416,0.9983612 -0.278694,0.010583 q -0.352778,0.014111 -0.490361,0.1128889 -0.134056,0.098778 -0.134056,0.2786945 0,0.15875 0.09525,0.2328333 0.09878,0.074083 0.250472,0.074083 0.239889,0 0.398639,-0.1305277 0.15875,-0.1340556 0.15875,-0.4092223 z" id="path3303" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 58.956456,-8.5645033 q -0.250473,0 -0.448028,-0.1023055 -0.194028,-0.1023056 -0.306917,-0.3175 -0.109361,-0.2151944 -0.109361,-0.5503333 0,-0.34925 0.116417,-0.5679719 0.116416,-0.218723 0.313972,-0.321028 0.201083,-0.102306 0.455083,-0.102306 0.144639,0 0.278695,0.03175 0.134055,0.02822 0.218722,0.07056 l -0.09525,0.257528 q -0.08467,-0.03175 -0.197556,-0.05997 -0.112888,-0.02822 -0.211666,-0.02822 -0.557389,0 -0.557389,0.7161391 0,0.3421944 0.134055,0.5256389 0.137584,0.1799166 0.405695,0.1799166 0.155222,0 0.271639,-0.03175 0.119944,-0.03175 0.218722,-0.077611 v 0.2751667 q -0.09525,0.049389 -0.211667,0.074083 -0.112889,0.028222 -0.275166,0.028222 z" id="path3305" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 60.203415,-11.280892 v 0.786694 q 0,0.141111 -0.01764,0.264584 h 0.02117 q 0.09172,-0.144639 0.246945,-0.218723 0.15875,-0.07408 0.342194,-0.07408 0.345723,0 0.518584,0.165806 0.172861,0.162277 0.172861,0.5256386 v 1.2311944 h -0.306917 v -1.2100278 q 0,-0.4550832 -0.423333,-0.4550832 -0.3175,0 -0.437445,0.179917 -0.116416,0.1763884 -0.116416,0.5079995 V -8.599781 H 59.89297 v -2.681111 z" id="path3307" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 62.80052,-10.525948 q 0.243417,0 0.416278,0.105834 0.176389,0.105833 0.268111,0.299861 0.09525,0.1904998 0.09525,0.4480276 v 0.1869722 h -1.294694 q 0.0071,0.3210277 0.162277,0.4903611 0.15875,0.1658055 0.440973,0.1658055 0.179916,0 0.3175,-0.03175 0.141111,-0.035278 0.289277,-0.098778 v 0.2716389 q -0.144638,0.0635 -0.28575,0.091722 -0.141111,0.03175 -0.335138,0.03175 -0.268112,0 -0.47625,-0.1093611 -0.204612,-0.1093611 -0.321028,-0.3245555 -0.112889,-0.2187222 -0.112889,-0.5326944 0,-0.3104445 0.102305,-0.5326947 0.105834,-0.22225 0.292806,-0.342194 0.1905,-0.119945 0.440972,-0.119945 z m -0.0035,0.254 q -0.22225,0 -0.352777,0.144639 -0.127,0.1411113 -0.151695,0.3951113 h 0.963084 q -0.0035,-0.2398889 -0.112889,-0.3880553 -0.109361,-0.151695 -0.345723,-0.151695 z" id="path3309" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 65.817542,-8.599781 h -0.3175 v -2.240139 h -0.786695 v -0.278694 h 1.887361 v 0.278694 h -0.783166 z" id="path3311" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 67.375276,-10.52242 q 0.345722,0 0.511528,0.151695 0.165806,0.151694 0.165806,0.4833051 v 1.2876389 h -0.225778 l -0.05997,-0.2681111 h -0.01411 q -0.123472,0.1552222 -0.261055,0.2293055 -0.134056,0.074083 -0.373944,0.074083 -0.257528,0 -0.426862,-0.1340555 -0.169333,-0.1375833 -0.169333,-0.4268611 0,-0.2822222 0.22225,-0.4339167 0.22225,-0.1552222 0.684389,-0.1693333 l 0.321028,-0.010583 v -0.1128889 q 0,-0.2363609 -0.102306,-0.3280829 -0.102305,-0.09172 -0.289278,-0.09172 -0.148166,0 -0.282222,0.04586 -0.134055,0.04233 -0.250472,0.09878 l -0.09525,-0.232833 q 0.123472,-0.06703 0.292806,-0.112889 0.169333,-0.04939 0.352777,-0.04939 z m 0.370417,0.9983612 -0.278695,0.010583 q -0.352777,0.014111 -0.490361,0.1128889 -0.134055,0.098778 -0.134055,0.2786945 0,0.15875 0.09525,0.2328333 0.09878,0.074083 0.250472,0.074083 0.239889,0 0.398639,-0.1305277 0.15875,-0.1340556 0.15875,-0.4092223 z" id="path3313" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 69.3069,-10.525948 q 0.186972,0 0.335139,0.07056 0.151694,0.07056 0.257528,0.215194 h 0.01764 l 0.04233,-0.250472 h 0.246944 v 1.922639 q 0,0.4056944 -0.208139,0.6103055 -0.204611,0.2046111 -0.638527,0.2046111 -0.416278,0 -0.680862,-0.1199444 v -0.28575 q 0.278695,0.1481666 0.6985,0.1481666 0.243417,0 0.381,-0.1446388 0.141112,-0.1411112 0.141112,-0.3880556 v -0.074083 q 0,-0.042333 0.0035,-0.1199445 0.0035,-0.081139 0.0071,-0.1128889 h -0.01411 q -0.1905,0.28575 -0.585611,0.28575 -0.366889,0 -0.575028,-0.2575277 -0.204611,-0.2575278 -0.204611,-0.7196667 0,-0.4515555 0.204611,-0.7161393 0.208139,-0.268111 0.5715,-0.268111 z m 0.04233,0.261056 q -0.236361,0 -0.366889,0.1905 -0.130527,0.1869721 -0.130527,0.5362221 0,0.34925 0.127,0.5362222 0.130527,0.1834444 0.377472,0.1834444 0.28575,0 0.416278,-0.1516944 0.130527,-0.1552222 0.130527,-0.4974166 v -0.074083 q 0,-0.3880555 -0.134055,-0.5538613 -0.134056,-0.169333 -0.419806,-0.169333 z" id="path3315" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 72.038228,-9.1218921 q 0,0.2751666 -0.204611,0.4162777 -0.204612,0.1411111 -0.550334,0.1411111 -0.197555,0 -0.342194,-0.03175 -0.141111,-0.03175 -0.250472,-0.088194 v -0.2822222 q 0.112888,0.056444 0.271638,0.1058333 0.162278,0.045861 0.328084,0.045861 0.236361,0 0.342194,-0.074083 0.105834,-0.077611 0.105834,-0.2046111 0,-0.070556 -0.03881,-0.127 -0.03881,-0.056444 -0.141111,-0.1128889 -0.09878,-0.056444 -0.28575,-0.127 -0.183445,-0.070556 -0.313972,-0.1411111 -0.130528,-0.070556 -0.201084,-0.1693333 -0.07055,-0.098778 -0.07055,-0.2539998 0,-0.239889 0.194028,-0.370417 0.197555,-0.130528 0.515055,-0.130528 0.172861,0 0.321028,0.03528 0.151694,0.03175 0.282222,0.09172 l -0.105833,0.246945 q -0.119945,-0.04939 -0.250472,-0.08467 -0.130528,-0.03528 -0.268112,-0.03528 -0.1905,0 -0.292805,0.0635 -0.09878,0.05997 -0.09878,0.165806 0,0.077611 0.04586,0.1340554 0.04586,0.052917 0.151695,0.1058334 0.109361,0.049389 0.289277,0.1199444 0.179917,0.067028 0.306917,0.1375833 0.127,0.070556 0.194028,0.1728612 0.06703,0.098778 0.06703,0.2504722 z" id="path3317" style="font-size:3.52777767px;text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 121.70833,91.947915 h 18.52084 v 10.583335 h -3.96875 v -6.614585 h -14.55209 z" id="path1990" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 959.04297,484.39453 6.4e-4,95.00014 h -225 v 15 h 414.99999 v -15 l -6e-4,-95.00014 h -15 l 6e-4,95.00014 h -10 l -6e-4,-95.00014 h -15 l 6e-4,95.00014 h -10 l -6e-4,-95.00014 h -15 l 6e-4,95.00014 h -10 l -6e-4,-95.00014 h -15 l 6e-4,95.00014 h -10 l -6e-4,-95.00014 h -15 l 6e-4,95.00014 h -10 l -6e-4,-95.00014 h -15 l 6e-4,95.00014 h -9.99999 l -6.4e-4,-95.00014 h -15 l 6.4e-4,95.00014 h -10 l -6.4e-4,-95.00014 z" id="path2345" style="fill:#cccccc;stroke:none;stroke-width:0.74230742px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 83.34375,102.53125 h 60.85415 v 13.22917 H 83.34375 Z" id="rect1681" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="RegisterAllocation &amp; Renaming" id="text1616" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 109.64003,104.50921 q 0.56303,0 0.82973,0.2159 0.27093,0.21166 0.27093,0.64346 0,0.2413 -0.0889,0.40217 -0.0889,0.16087 -0.2286,0.25823 -0.13546,0.0931 -0.28786,0.14817 l 0.82973,1.35467 h -0.4445 l -0.73237,-1.24884 h -0.60113 v 1.24884 h -0.381 v -3.0226 z m -0.0212,0.3302 h -0.4318 v 1.12183 h 0.45297 q 0.3683,0 0.53763,-0.14393 0.16933,-0.14817 0.16933,-0.4318 0,-0.29634 -0.1778,-0.4191 -0.1778,-0.127 -0.55033,-0.127 z" id="path3435" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 112.26086,105.22041 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.35983 0.1143,0.2286 0.1143,0.53763 v 0.22437 h -1.55364 q 0.008,0.38523 0.19474,0.58843 0.1905,0.19897 0.52916,0.19897 0.2159,0 0.381,-0.0381 0.16934,-0.0423 0.34714,-0.11853 v 0.32596 q -0.17357,0.0762 -0.3429,0.11007 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.13123 -0.24553,-0.13124 -0.38523,-0.38947 -0.13547,-0.26247 -0.13547,-0.63923 0,-0.37254 0.12277,-0.63924 0.127,-0.2667 0.35136,-0.41063 0.2286,-0.14393 0.52917,-0.14393 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.17356 -0.1524,0.16934 -0.18203,0.47414 h 1.1557 q -0.004,-0.28787 -0.13547,-0.46567 -0.13123,-0.18203 -0.41486,-0.18203 z" id="path3437" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 114.57841,105.22041 q 0.22437,0 0.40217,0.0847 0.18203,0.0847 0.30903,0.25824 h 0.0212 l 0.0508,-0.30057 h 0.29633 v 2.30717 q 0,0.48683 -0.24977,0.73236 -0.24553,0.24554 -0.76623,0.24554 -0.49953,0 -0.81703,-0.14394 v -0.3429 q 0.33443,0.1778 0.8382,0.1778 0.2921,0 0.4572,-0.17356 0.16933,-0.16934 0.16933,-0.46567 v -0.0889 q 0,-0.0508 0.004,-0.14393 0.004,-0.0974 0.008,-0.13547 h -0.0169 q -0.2286,0.3429 -0.70274,0.3429 -0.44026,0 -0.69003,-0.30903 -0.24553,-0.30904 -0.24553,-0.8636 0,-0.54187 0.24553,-0.85937 0.24977,-0.32173 0.6858,-0.32173 z m 0.0508,0.31326 q -0.28363,0 -0.44027,0.2286 -0.15663,0.22437 -0.15663,0.64347 0,0.4191 0.1524,0.64347 0.15663,0.22013 0.45297,0.22013 0.3429,0 0.49953,-0.18203 0.15663,-0.18627 0.15663,-0.5969 v -0.0889 q 0,-0.46567 -0.16086,-0.66464 -0.16087,-0.2032 -0.50377,-0.2032 z" id="path3439" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 116.56907,104.41184 q 0.0847,0 0.14817,0.0593 0.0677,0.055 0.0677,0.1778 0,0.11853 -0.0677,0.1778 -0.0635,0.0593 -0.14817,0.0593 -0.0931,0 -0.15663,-0.0593 -0.0635,-0.0593 -0.0635,-0.1778 0,-0.12277 0.0635,-0.1778 0.0635,-0.0593 0.15663,-0.0593 z m 0.18203,0.8509 v 2.26907 h -0.37253 v -2.26907 z" id="path3441" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 118.94741,106.90527 q 0,0.3302 -0.24554,0.49954 -0.24553,0.16933 -0.6604,0.16933 -0.23706,0 -0.41063,-0.0381 -0.16933,-0.0381 -0.30057,-0.10583 v -0.33867 q 0.13547,0.0677 0.32597,0.127 0.19473,0.055 0.3937,0.055 0.28363,0 0.41063,-0.0889 0.127,-0.0931 0.127,-0.24553 0,-0.0847 -0.0466,-0.1524 -0.0466,-0.0677 -0.16934,-0.13547 -0.11853,-0.0677 -0.3429,-0.1524 -0.22013,-0.0847 -0.37676,-0.16933 -0.15664,-0.0847 -0.2413,-0.2032 -0.0847,-0.11853 -0.0847,-0.3048 0,-0.28787 0.23283,-0.4445 0.23707,-0.15663 0.61807,-0.15663 0.20743,0 0.38523,0.0423 0.18204,0.0381 0.33867,0.11007 l -0.127,0.29633 q -0.14393,-0.0593 -0.30057,-0.1016 -0.15663,-0.0423 -0.32173,-0.0423 -0.2286,0 -0.35137,0.0762 -0.11853,0.072 -0.11853,0.19896 0,0.0931 0.055,0.16087 0.055,0.0635 0.18204,0.127 0.13123,0.0593 0.34713,0.14393 0.2159,0.0804 0.3683,0.1651 0.1524,0.0847 0.23283,0.20744 0.0804,0.11853 0.0804,0.30056 z" id="path3443" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 120.25346,107.26934 q 0.0847,0 0.17356,-0.0127 0.0889,-0.0169 0.14394,-0.0339 v 0.28364 q -0.0593,0.0296 -0.16934,0.0466 -0.11006,0.0212 -0.21166,0.0212 -0.1778,0 -0.3302,-0.0593 -0.14817,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.42756 v -1.3208 h -0.32173 v -0.1778 l 0.32597,-0.14817 0.14816,-0.4826 h 0.22014 v 0.5207 h 0.65616 v 0.28787 h -0.65616 v 1.31233 q 0,0.20743 0.0974,0.30903 0.1016,0.0974 0.25824,0.0974 z" id="path3445" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 121.90161,105.22041 q 0.2921,0 0.49954,0.127 0.21166,0.127 0.32173,0.35983 0.1143,0.2286 0.1143,0.53763 v 0.22437 h -1.55363 q 0.008,0.38523 0.19473,0.58843 0.1905,0.19897 0.52917,0.19897 0.2159,0 0.381,-0.0381 0.16933,-0.0423 0.34713,-0.11853 v 0.32596 q -0.17357,0.0762 -0.3429,0.11007 -0.16933,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.13123 -0.24553,-0.13124 -0.38523,-0.38947 -0.13547,-0.26247 -0.13547,-0.63923 0,-0.37254 0.12277,-0.63924 0.127,-0.2667 0.35137,-0.41063 0.2286,-0.14393 0.52916,-0.14393 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.17356 -0.1524,0.16934 -0.18204,0.47414 h 1.1557 q -0.004,-0.28787 -0.13546,-0.46567 -0.13124,-0.18203 -0.41487,-0.18203 z" id="path3447" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 124.47316,105.22041 q 0.0635,0 0.13547,0.008 0.0762,0.004 0.13123,0.0169 l -0.0466,0.3429 q -0.055,-0.0127 -0.12277,-0.0212 -0.0635,-0.008 -0.12277,-0.008 -0.17356,0 -0.32596,0.0974 -0.1524,0.0931 -0.24554,0.2667 -0.0889,0.16933 -0.0889,0.39793 v 1.21074 h -0.37253 v -2.26907 h 0.3048 l 0.0423,0.41487 h 0.0169 q 0.11006,-0.18627 0.28363,-0.32174 0.17357,-0.13546 0.41063,-0.13546 z" id="path3449" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 96.291072,112.86208 -0.364066,-0.93556 h -1.198034 l -0.359833,0.93556 h -0.385233 l 1.1811,-3.0353 h 0.3429 l 1.176866,3.0353 z m -0.478366,-1.27423 -0.338667,-0.9144 q -0.0127,-0.0339 -0.04233,-0.12277 -0.02963,-0.0889 -0.05927,-0.18203 -0.0254,-0.0974 -0.04233,-0.14817 -0.02963,0.13124 -0.06773,0.25824 -0.0381,0.12276 -0.0635,0.19473 l -0.3429,0.9144 z" id="path3451" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 97.419983,112.86208 H 97.04745 v -3.21733 h 0.372533 z" id="path3453" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 98.511389,112.86208 h -0.372533 v -3.21733 h 0.372533 z" id="path3455" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 101.203,111.72332 q 0,0.56303 -0.28787,0.87206 -0.28363,0.30904 -0.77047,0.30904 -0.300564,0 -0.537631,-0.13547 -0.232833,-0.1397 -0.3683,-0.40217 -0.135467,-0.2667 -0.135467,-0.64346 0,-0.56304 0.283634,-0.86784 0.283633,-0.3048 0.770464,-0.3048 0.30904,0 0.54187,0.1397 0.23707,0.13547 0.3683,0.39794 0.13547,0.25823 0.13547,0.635 z m -1.714504,0 q 0,0.40216 0.156633,0.63923 0.160867,0.23283 0.508001,0.23283 0.3429,0 0.50377,-0.23283 0.16086,-0.23707 0.16086,-0.63923 0,-0.40217 -0.16086,-0.63077 -0.16087,-0.2286 -0.508,-0.2286 -0.347138,0 -0.503771,0.2286 -0.156633,0.2286 -0.156633,0.63077 z" id="path3457" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 102.70358,112.90442 q -0.30057,0 -0.53763,-0.12277 -0.23284,-0.12277 -0.3683,-0.381 -0.13124,-0.25823 -0.13124,-0.6604 0,-0.4191 0.1397,-0.68157 0.1397,-0.26246 0.37677,-0.38523 0.2413,-0.12277 0.5461,-0.12277 0.17357,0 0.33443,0.0381 0.16087,0.0339 0.26247,0.0847 l -0.1143,0.30903 q -0.1016,-0.0381 -0.23707,-0.072 -0.13546,-0.0339 -0.254,-0.0339 -0.66886,0 -0.66886,0.85937 0,0.41063 0.16086,0.63076 0.1651,0.2159 0.48684,0.2159 0.18626,0 0.32596,-0.0381 0.14394,-0.0381 0.26247,-0.0931 v 0.3302 q -0.1143,0.0593 -0.254,0.0889 -0.13547,0.0339 -0.3302,0.0339 z" id="path3459" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 104.68676,110.55492 q 0.41487,0 0.61384,0.18203 0.19896,0.18203 0.19896,0.57997 v 1.54516 h -0.27093 l -0.072,-0.32173 h -0.0169 q -0.14817,0.18627 -0.31327,0.27517 -0.16086,0.0889 -0.44873,0.0889 -0.30903,0 -0.51223,-0.16087 -0.2032,-0.1651 -0.2032,-0.51223 0,-0.33867 0.2667,-0.5207 0.2667,-0.18627 0.82126,-0.2032 l 0.38524,-0.0127 v -0.13547 q 0,-0.28363 -0.12277,-0.3937 -0.12277,-0.11007 -0.34713,-0.11007 -0.1778,0 -0.33867,0.055 -0.16087,0.0508 -0.30057,0.11853 l -0.1143,-0.2794 q 0.14817,-0.0804 0.35137,-0.13547 0.2032,-0.0593 0.42333,-0.0593 z m 0.4445,1.19803 -0.33443,0.0127 q -0.42333,0.0169 -0.58843,0.13547 -0.16087,0.11853 -0.16087,0.33443 0,0.1905 0.1143,0.2794 0.11853,0.0889 0.30057,0.0889 0.28786,0 0.47836,-0.15663 0.1905,-0.16087 0.1905,-0.49107 z" id="path3461" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 106.95815,112.59962 q 0.0847,0 0.17356,-0.0127 0.0889,-0.0169 0.14394,-0.0339 v 0.28363 q -0.0593,0.0296 -0.16934,0.0466 -0.11006,0.0212 -0.21166,0.0212 -0.1778,0 -0.3302,-0.0593 -0.14817,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.42757 v -1.3208 h -0.32173 v -0.1778 l 0.32597,-0.14816 0.14816,-0.4826 h 0.22014 v 0.5207 h 0.65616 v 0.28786 h -0.65616 v 1.31234 q 0,0.20743 0.0974,0.30903 0.1016,0.0974 0.25824,0.0974 z" id="path3463" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 107.9205,109.74212 q 0.0847,0 0.14817,0.0593 0.0677,0.055 0.0677,0.1778 0,0.11854 -0.0677,0.1778 -0.0635,0.0593 -0.14817,0.0593 -0.0931,0 -0.15663,-0.0593 -0.0635,-0.0593 -0.0635,-0.1778 0,-0.12276 0.0635,-0.1778 0.0635,-0.0593 0.15663,-0.0593 z m 0.18203,0.8509 v 2.26906 H 107.73 v -2.26906 z" id="path3465" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 110.79414,111.72332 q 0,0.56303 -0.28787,0.87206 -0.28363,0.30904 -0.77046,0.30904 -0.30057,0 -0.53764,-0.13547 -0.23283,-0.1397 -0.3683,-0.40217 -0.13546,-0.2667 -0.13546,-0.64346 0,-0.56304 0.28363,-0.86784 0.28363,-0.3048 0.77047,-0.3048 0.30903,0 0.54186,0.1397 0.23707,0.13547 0.3683,0.39794 0.13547,0.25823 0.13547,0.635 z m -1.7145,0 q 0,0.40216 0.15663,0.63923 0.16087,0.23283 0.508,0.23283 0.3429,0 0.50377,-0.23283 0.16087,-0.23707 0.16087,-0.63923 0,-0.40217 -0.16087,-0.63077 -0.16087,-0.2286 -0.508,-0.2286 -0.34713,0 -0.50377,0.2286 -0.15663,0.2286 -0.15663,0.63077 z" id="path3467" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 112.47676,110.55068 q 0.4064,0 0.61383,0.19897 0.20743,0.19473 0.20743,0.635 v 1.47743 h -0.3683 v -1.45203 q 0,-0.5461 -0.508,-0.5461 -0.37676,0 -0.5207,0.21167 -0.14393,0.21166 -0.14393,0.6096 v 1.17686 h -0.37253 v -2.26906 h 0.30056 l 0.055,0.30903 h 0.0212 q 0.11007,-0.1778 0.3048,-0.26247 0.19474,-0.0889 0.41064,-0.0889 z" id="path3469" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 116.02409,109.79292 q 0.33867,0 0.5334,0.17356 0.19897,0.16934 0.19897,0.47837 0,0.2667 -0.17357,0.45297 -0.16933,0.18626 -0.4318,0.33866 l 0.81704,0.7874 q 0.11006,-0.13123 0.1778,-0.30056 0.072,-0.17357 0.11853,-0.37254 h 0.37677 q -0.0677,0.27094 -0.16934,0.50377 -0.1016,0.23283 -0.26246,0.4064 l 0.61806,0.60113 h -0.50376 l -0.3683,-0.3556 q -0.19897,0.1778 -0.4445,0.28787 -0.24554,0.11007 -0.5969,0.11007 -0.43604,0 -0.69427,-0.2159 -0.25823,-0.2159 -0.25823,-0.61384 0,-0.32596 0.17356,-0.5207 0.1778,-0.19896 0.47837,-0.3683 -0.13547,-0.1524 -0.254,-0.32596 -0.1143,-0.17357 -0.1143,-0.4064 0,-0.31327 0.20743,-0.48684 0.21167,-0.17356 0.5715,-0.17356 z m -0.0127,0.3048 q -0.1778,0 -0.2921,0.0931 -0.11006,0.0931 -0.11006,0.25823 0,0.1524 0.0804,0.28364 0.0804,0.127 0.23283,0.28363 0.24977,-0.14393 0.3556,-0.27093 0.11007,-0.13124 0.11007,-0.30057 0,-0.1524 -0.1016,-0.24977 -0.1016,-0.0974 -0.27517,-0.0974 z m -0.17356,1.3208 q -0.2286,0.13546 -0.35984,0.27516 -0.127,0.1397 -0.127,0.3683 0,0.23284 0.15664,0.37254 0.15663,0.1397 0.4191,0.1397 0.27093,0 0.46566,-0.0889 0.19474,-0.0889 0.32597,-0.21167 z" id="path3471" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 120.18202,109.83948 q 0.56303,0 0.82973,0.2159 0.27094,0.21167 0.27094,0.64347 0,0.2413 -0.0889,0.40217 -0.0889,0.16086 -0.2286,0.25823 -0.13547,0.0931 -0.28787,0.14817 l 0.82973,1.35466 h -0.4445 l -0.73236,-1.24883 h -0.60114 v 1.24883 h -0.381 v -3.0226 z m -0.0212,0.3302 h -0.4318 v 1.12184 h 0.45297 q 0.3683,0 0.53763,-0.14394 0.16934,-0.14816 0.16934,-0.4318 0,-0.29633 -0.1778,-0.4191 -0.1778,-0.127 -0.55034,-0.127 z" id="path3473" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 122.80285,110.55068 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.35984 0.1143,0.2286 0.1143,0.53763 v 0.22437 h -1.55364 q 0.008,0.38523 0.19474,0.58843 0.1905,0.19897 0.52916,0.19897 0.2159,0 0.381,-0.0381 0.16934,-0.0423 0.34714,-0.11854 v 0.32597 q -0.17357,0.0762 -0.3429,0.11007 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.13124 -0.24553,-0.13123 -0.38523,-0.38946 -0.13547,-0.26247 -0.13547,-0.63924 0,-0.37253 0.12277,-0.63923 0.127,-0.2667 0.35136,-0.41063 0.2286,-0.14394 0.52917,-0.14394 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.17357 -0.1524,0.16933 -0.18203,0.47413 h 1.1557 q -0.004,-0.28786 -0.13547,-0.46566 -0.13123,-0.18204 -0.41486,-0.18204 z" id="path3475" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 125.40827,110.55068 q 0.4064,0 0.61383,0.19897 0.20743,0.19473 0.20743,0.635 v 1.47743 h -0.3683 v -1.45203 q 0,-0.5461 -0.508,-0.5461 -0.37676,0 -0.5207,0.21167 -0.14393,0.21166 -0.14393,0.6096 v 1.17686 h -0.37253 v -2.26906 h 0.30056 l 0.055,0.30903 h 0.0212 q 0.11007,-0.1778 0.3048,-0.26247 0.19474,-0.0889 0.41064,-0.0889 z" id="path3477" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 127.7882,110.55492 q 0.41486,0 0.61383,0.18203 0.19897,0.18203 0.19897,0.57997 v 1.54516 h -0.27094 l -0.072,-0.32173 h -0.0169 q -0.14816,0.18627 -0.31326,0.27517 -0.16087,0.0889 -0.44874,0.0889 -0.30903,0 -0.51223,-0.16087 -0.2032,-0.1651 -0.2032,-0.51223 0,-0.33867 0.2667,-0.5207 0.2667,-0.18627 0.82127,-0.2032 l 0.38523,-0.0127 v -0.13547 q 0,-0.28363 -0.12277,-0.3937 -0.12276,-0.11007 -0.34713,-0.11007 -0.1778,0 -0.33867,0.055 -0.16086,0.0508 -0.30056,0.11853 l -0.1143,-0.2794 q 0.14816,-0.0804 0.35136,-0.13547 0.2032,-0.0593 0.42334,-0.0593 z m 0.4445,1.19803 -0.33444,0.0127 q -0.42333,0.0169 -0.58843,0.13547 -0.16087,0.11853 -0.16087,0.33443 0,0.1905 0.1143,0.2794 0.11854,0.0889 0.30057,0.0889 0.28787,0 0.47837,-0.15663 0.1905,-0.16087 0.1905,-0.49107 z" id="path3479" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 131.79101,110.55068 q 0.38523,0 0.57573,0.19897 0.1905,0.19473 0.1905,0.635 v 1.47743 h -0.3683 v -1.4605 q 0,-0.53763 -0.46143,-0.53763 -0.3302,0 -0.47413,0.1905 -0.1397,0.1905 -0.1397,0.55457 v 1.25306 h -0.3683 v -1.4605 q 0,-0.53763 -0.46567,-0.53763 -0.3429,0 -0.47413,0.21167 -0.13124,0.21166 -0.13124,0.6096 v 1.17686 h -0.37253 v -2.26906 h 0.30057 l 0.055,0.30903 h 0.0212 q 0.10583,-0.1778 0.28363,-0.26247 0.18203,-0.0889 0.38523,-0.0889 0.5334,0 0.69427,0.381 h 0.0212 q 0.1143,-0.19473 0.30903,-0.28786 0.19897,-0.0931 0.4191,-0.0931 z" id="path3481" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 133.45279,109.74212 q 0.0847,0 0.14817,0.0593 0.0677,0.055 0.0677,0.1778 0,0.11854 -0.0677,0.1778 -0.0635,0.0593 -0.14817,0.0593 -0.0931,0 -0.15663,-0.0593 -0.0635,-0.0593 -0.0635,-0.1778 0,-0.12276 0.0635,-0.1778 0.0635,-0.0593 0.15663,-0.0593 z m 0.18203,0.8509 v 2.26906 h -0.37253 v -2.26906 z" id="path3483" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 135.4459,110.55068 q 0.4064,0 0.61383,0.19897 0.20744,0.19473 0.20744,0.635 v 1.47743 h -0.3683 v -1.45203 q 0,-0.5461 -0.508,-0.5461 -0.37677,0 -0.5207,0.21167 -0.14394,0.21166 -0.14394,0.6096 v 1.17686 h -0.37253 v -2.26906 h 0.30057 l 0.055,0.30903 h 0.0212 q 0.11006,-0.1778 0.3048,-0.26247 0.19473,-0.0889 0.41063,-0.0889 z" id="path3485" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 137.77079,110.55068 q 0.22437,0 0.40217,0.0847 0.18203,0.0847 0.30903,0.25823 h 0.0212 l 0.0508,-0.30056 h 0.29633 v 2.30716 q 0,0.48684 -0.24977,0.73237 -0.24553,0.24553 -0.76623,0.24553 -0.49953,0 -0.81703,-0.14393 v -0.3429 q 0.33443,0.1778 0.8382,0.1778 0.2921,0 0.4572,-0.17357 0.16933,-0.16933 0.16933,-0.46566 v -0.0889 q 0,-0.0508 0.004,-0.14394 0.004,-0.0974 0.008,-0.13546 h -0.0169 q -0.2286,0.3429 -0.70274,0.3429 -0.44026,0 -0.69003,-0.30904 -0.24553,-0.30903 -0.24553,-0.8636 0,-0.54186 0.24553,-0.85936 0.24977,-0.32174 0.6858,-0.32174 z m 0.0508,0.31327 q -0.28363,0 -0.44027,0.2286 -0.15663,0.22437 -0.15663,0.64347 0,0.4191 0.1524,0.64346 0.15663,0.22014 0.45297,0.22014 0.3429,0 0.49953,-0.18204 0.15663,-0.18626 0.15663,-0.5969 v -0.0889 q 0,-0.46566 -0.16086,-0.66463 -0.16087,-0.2032 -0.50377,-0.2032 z" id="path3487" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 944.04297,299.39453 v 15 h 15 v 120 h 15 v -135 h -15 z" id="path2032" style="fill:#cccccc;stroke:none;stroke-width:1.49999976px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 944.04297,204.39453 v 15 h 40 v 215.45508 h 15 V 204.39453 h -15 z" id="path2092" style="fill:#cccccc;stroke:none;stroke-width:1.4814868px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 136.25227,19.187502 h 28.97166 v 50.138336 h -28.97166 z" id="rect1907" style="fill:#f2f2f2;stroke:#000000;stroke-width:0.26499996;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="PhysicalRegister File" id="text1645" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 143.87697,20.704161 q 0.59267,0 0.8636,0.232833 0.27094,0.232834 0.27094,0.656167 0,0.249767 -0.1143,0.4699 -0.11007,0.2159 -0.37677,0.351367 -0.26247,0.135466 -0.71543,0.135466 h -0.34714 v 1.176867 h -0.381 v -3.0226 z m -0.0339,0.325967 h -0.38524 v 1.1938 h 0.3048 q 0.4318,0 0.64347,-0.1397 0.21167,-0.1397 0.21167,-0.474134 0,-0.2921 -0.18627,-0.436033 -0.18627,-0.143933 -0.58843,-0.143933 z" id="path3491" style="stroke-width:0.26458332"/>
+<path d="m 145.96176,20.509428 v 0.944033 q 0,0.169333 -0.0212,0.3175 h 0.0254 q 0.11007,-0.173567 0.29633,-0.262467 0.1905,-0.0889 0.41064,-0.0889 0.41486,0 0.6223,0.198967 0.20743,0.194733 0.20743,0.630767 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.381,0 -0.52493,0.2159 -0.1397,0.211666 -0.1397,0.6096 v 1.172633 h -0.37254 v -3.217333 z" id="path3493" style="stroke-width:0.26458332"/>
+<path d="m 147.84638,21.457694 h 0.39794 l 0.49106,1.291167 q 0.0635,0.169333 0.1143,0.325967 0.0508,0.1524 0.0762,0.2921 h 0.0169 q 0.0254,-0.105834 0.0804,-0.275167 0.055,-0.173567 0.1143,-0.347133 l 0.46143,-1.286934 h 0.40217 l -0.9779,2.582334 q -0.11853,0.321733 -0.30903,0.512233 -0.18627,0.1905 -0.51647,0.1905 -0.1016,0 -0.1778,-0.0127 -0.0762,-0.0085 -0.13123,-0.02117 v -0.296333 q 0.0466,0.0085 0.11006,0.01693 0.0677,0.0085 0.1397,0.0085 0.19474,0 0.31327,-0.110067 0.12277,-0.110066 0.1905,-0.2921 l 0.11853,-0.300566 z" id="path3495" style="stroke-width:0.26458332"/>
+<path d="m 151.83742,23.100228 q 0,0.3302 -0.24553,0.499533 -0.24553,0.169333 -0.6604,0.169333 -0.23707,0 -0.41063,-0.0381 -0.16934,-0.0381 -0.30057,-0.105833 v -0.338667 q 0.13547,0.06773 0.32597,0.127 0.19473,0.05503 0.3937,0.05503 0.28363,0 0.41063,-0.0889 0.127,-0.09313 0.127,-0.245534 0,-0.08467 -0.0466,-0.1524 -0.0466,-0.06773 -0.16933,-0.135466 -0.11853,-0.06773 -0.3429,-0.1524 -0.22013,-0.08467 -0.37677,-0.169334 -0.15663,-0.08467 -0.2413,-0.2032 -0.0847,-0.118533 -0.0847,-0.3048 0,-0.287866 0.23283,-0.4445 0.23707,-0.156633 0.61807,-0.156633 0.20743,0 0.38523,0.04233 0.18203,0.0381 0.33867,0.110067 l -0.127,0.296333 q -0.14394,-0.05927 -0.30057,-0.1016 -0.15663,-0.04233 -0.32173,-0.04233 -0.2286,0 -0.35137,0.0762 -0.11853,0.07197 -0.11853,0.198967 0,0.09313 0.055,0.160866 0.055,0.0635 0.18203,0.127 0.13124,0.05927 0.34714,0.143934 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.23283,0.207433 0.0804,0.118533 0.0804,0.300567 z" id="path3497" style="stroke-width:0.26458332"/>
+<path d="m 152.57621,20.606794 q 0.0847,0 0.14816,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118533 -0.0677,0.1778 -0.0635,0.05927 -0.14816,0.05927 -0.0931,0 -0.15664,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.15664,-0.05927 z m 0.18203,0.8509 v 2.269067 h -0.37253 v -2.269067 z" id="path3499" style="stroke-width:0.26458332"/>
+<path d="m 154.38728,23.769094 q -0.30057,0 -0.53763,-0.122766 -0.23284,-0.122767 -0.3683,-0.381 -0.13124,-0.258234 -0.13124,-0.6604 0,-0.4191 0.1397,-0.681567 0.1397,-0.262467 0.37677,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.17357,0 0.33443,0.0381 0.16087,0.03387 0.26247,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.23707,-0.07197 -0.13546,-0.03387 -0.254,-0.03387 -0.66886,0 -0.66886,0.859366 0,0.410634 0.16086,0.630767 0.1651,0.2159 0.48684,0.2159 0.18626,0 0.32596,-0.0381 0.14394,-0.0381 0.26247,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.13547,0.03387 -0.3302,0.03387 z" id="path3501" style="stroke-width:0.26458332"/>
+<path d="m 156.37046,21.419594 q 0.41487,0 0.61384,0.182034 0.19896,0.182033 0.19896,0.579966 v 1.545167 h -0.27093 l -0.072,-0.321733 h -0.0169 q -0.14817,0.186266 -0.31327,0.275166 -0.16086,0.0889 -0.44873,0.0889 -0.30903,0 -0.51223,-0.160866 -0.2032,-0.1651 -0.2032,-0.512234 0,-0.338666 0.2667,-0.5207 0.2667,-0.186266 0.82126,-0.2032 l 0.38524,-0.0127 v -0.135466 q 0,-0.283634 -0.12277,-0.3937 -0.12277,-0.110067 -0.34713,-0.110067 -0.1778,0 -0.33867,0.05503 -0.16087,0.0508 -0.30057,0.118534 l -0.1143,-0.2794 q 0.14817,-0.08043 0.35137,-0.135467 0.2032,-0.05927 0.42333,-0.05927 z m 0.4445,1.198034 -0.33443,0.0127 q -0.42333,0.01693 -0.58843,0.135466 -0.16087,0.118534 -0.16087,0.334434 0,0.1905 0.1143,0.2794 0.11853,0.0889 0.30057,0.0889 0.28786,0 0.47836,-0.156634 0.1905,-0.160866 0.1905,-0.491066 z" id="path3503" style="stroke-width:0.26458332"/>
+<path d="m 158.25661,23.726761 h -0.37253 v -3.217333 h 0.37253 z" id="path3505" style="stroke-width:0.26458332"/>
+<path d="m 139.74779,25.995827 q 0.56303,0 0.82973,0.2159 0.27093,0.211667 0.27093,0.643467 0,0.2413 -0.0889,0.402166 -0.0889,0.160867 -0.2286,0.258234 -0.13546,0.09313 -0.28786,0.148166 l 0.82973,1.354667 h -0.4445 l -0.73237,-1.248833 h -0.60113 v 1.248833 h -0.381 v -3.0226 z m -0.0212,0.3302 h -0.4318 v 1.121833 h 0.45297 q 0.3683,0 0.53763,-0.143933 0.16933,-0.148167 0.16933,-0.4318 0,-0.296333 -0.1778,-0.4191 -0.1778,-0.127 -0.55033,-0.127 z" id="path3507" style="stroke-width:0.26458332"/>
+<path d="m 142.36862,26.707027 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32173,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.55363 q 0.008,0.385234 0.19473,0.588434 0.1905,0.198966 0.52917,0.198966 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118533 v 0.325967 q -0.17356,0.0762 -0.3429,0.110066 -0.16933,0.0381 -0.40216,0.0381 -0.32174,0 -0.5715,-0.131233 -0.24554,-0.131233 -0.38524,-0.389467 -0.13546,-0.262466 -0.13546,-0.639233 0,-0.372533 0.12276,-0.639233 0.127,-0.2667 0.35137,-0.410634 0.2286,-0.143933 0.52917,-0.143933 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287867 -0.13547,-0.465667 -0.13123,-0.182033 -0.41487,-0.182033 z" id="path3509" style="stroke-width:0.26458332"/>
+<path d="m 144.68617,26.707027 q 0.22436,0 0.40216,0.08467 0.18204,0.08467 0.30904,0.258233 h 0.0212 l 0.0508,-0.300567 h 0.29634 v 2.307167 q 0,0.486833 -0.24977,0.732367 -0.24553,0.245533 -0.76623,0.245533 -0.49954,0 -0.81704,-0.143933 v -0.3429 q 0.33444,0.1778 0.8382,0.1778 0.2921,0 0.4572,-0.173567 0.16934,-0.169333 0.16934,-0.465667 v -0.0889 q 0,-0.0508 0.004,-0.143933 0.004,-0.09737 0.008,-0.135467 h -0.0169 q -0.2286,0.3429 -0.70273,0.3429 -0.44027,0 -0.69003,-0.309033 -0.24554,-0.309033 -0.24554,-0.8636 0,-0.541867 0.24554,-0.859367 0.24976,-0.321733 0.6858,-0.321733 z m 0.0508,0.313267 q -0.28364,0 -0.44027,0.2286 -0.15663,0.224366 -0.15663,0.643466 0,0.4191 0.1524,0.643467 0.15663,0.220133 0.45296,0.220133 0.3429,0 0.49954,-0.182033 0.15663,-0.186267 0.15663,-0.5969 v -0.0889 q 0,-0.465667 -0.16087,-0.664633 -0.16086,-0.2032 -0.50376,-0.2032 z" id="path3511" style="stroke-width:0.26458332"/>
+<path d="m 146.67683,25.89846 q 0.0847,0 0.14816,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118533 -0.0677,0.1778 -0.0635,0.05927 -0.14816,0.05927 -0.0931,0 -0.15664,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.15664,-0.05927 z m 0.18203,0.8509 v 2.269067 h -0.37253 V 26.74936 Z" id="path3513" style="stroke-width:0.26458332"/>
+<path d="m 149.05517,28.391894 q 0,0.3302 -0.24554,0.499533 -0.24553,0.169333 -0.6604,0.169333 -0.23706,0 -0.41063,-0.0381 -0.16933,-0.0381 -0.30057,-0.105833 V 28.57816 q 0.13547,0.06773 0.32597,0.127 0.19473,0.05503 0.3937,0.05503 0.28363,0 0.41063,-0.0889 0.127,-0.09313 0.127,-0.245534 0,-0.08467 -0.0466,-0.1524 -0.0466,-0.06773 -0.16934,-0.135466 -0.11853,-0.06773 -0.3429,-0.1524 -0.22013,-0.08467 -0.37676,-0.169334 -0.15664,-0.08467 -0.2413,-0.2032 -0.0847,-0.118533 -0.0847,-0.3048 0,-0.287866 0.23283,-0.4445 0.23707,-0.156633 0.61807,-0.156633 0.20743,0 0.38523,0.04233 0.18204,0.0381 0.33867,0.110067 l -0.127,0.296333 q -0.14393,-0.05927 -0.30057,-0.1016 -0.15663,-0.04233 -0.32173,-0.04233 -0.2286,0 -0.35137,0.0762 -0.11853,0.07197 -0.11853,0.198967 0,0.09313 0.055,0.160866 0.055,0.0635 0.18204,0.127 0.13123,0.05927 0.34713,0.143934 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.23283,0.207433 0.0804,0.118533 0.0804,0.300567 z" id="path3515" style="stroke-width:0.26458332"/>
+<path d="m 150.36121,28.75596 q 0.0847,0 0.17357,-0.0127 0.0889,-0.01693 0.14393,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16933,0.04657 -0.11007,0.02117 -0.21167,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14816,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32173 v -0.1778 l 0.32596,-0.148167 0.14817,-0.4826 h 0.22013 v 0.5207 h 0.65617 v 0.287867 h -0.65617 v 1.312333 q 0,0.207434 0.0974,0.309034 0.1016,0.09737 0.25823,0.09737 z" id="path3517" style="stroke-width:0.26458332"/>
+<path d="m 152.00937,26.707027 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.55364 q 0.008,0.385234 0.19474,0.588434 0.1905,0.198966 0.52916,0.198966 0.2159,0 0.381,-0.0381 0.16934,-0.04233 0.34714,-0.118533 v 0.325967 q -0.17357,0.0762 -0.3429,0.110066 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131233 -0.24553,-0.131233 -0.38523,-0.389467 -0.13547,-0.262466 -0.13547,-0.639233 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35136,-0.410634 0.2286,-0.143933 0.52917,-0.143933 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287867 -0.13547,-0.465667 -0.13123,-0.182033 -0.41486,-0.182033 z" id="path3519" style="stroke-width:0.26458332"/>
+<path d="m 154.58092,26.707027 q 0.0635,0 0.13547,0.0085 0.0762,0.0042 0.13123,0.01693 l -0.0466,0.3429 q -0.055,-0.0127 -0.12277,-0.02117 -0.0635,-0.0085 -0.12277,-0.0085 -0.17356,0 -0.32596,0.09737 -0.1524,0.09313 -0.24554,0.2667 -0.0889,0.169334 -0.0889,0.397934 v 1.210733 h -0.37253 V 26.74936 h 0.3048 l 0.0423,0.414867 h 0.0169 q 0.11006,-0.186267 0.28363,-0.321733 0.17357,-0.135467 0.41063,-0.135467 z" id="path3521" style="stroke-width:0.26458332"/>
+<path d="m 156.79866,29.018427 h -0.381 v -3.0226 h 1.6891 v 0.334433 h -1.3081 v 1.071034 h 1.22767 v 0.334433 h -1.22767 z" id="path3523" style="stroke-width:0.26458332"/>
+<path d="m 158.75671,25.89846 q 0.0847,0 0.14817,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118533 -0.0677,0.1778 -0.0635,0.05927 -0.14817,0.05927 -0.0931,0 -0.15663,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.15663,-0.05927 z m 0.18203,0.8509 v 2.269067 h -0.37253 V 26.74936 Z" id="path3525" style="stroke-width:0.26458332"/>
+<path d="m 160.03015,29.018427 h -0.37254 v -3.217333 h 0.37254 z" id="path3527" style="stroke-width:0.26458332"/>
+<path d="m 161.62532,26.707027 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.55364 q 0.008,0.385234 0.19474,0.588434 0.1905,0.198966 0.52916,0.198966 0.2159,0 0.381,-0.0381 0.16934,-0.04233 0.34714,-0.118533 v 0.325967 q -0.17357,0.0762 -0.3429,0.110066 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131233 -0.24553,-0.131233 -0.38523,-0.389467 -0.13547,-0.262466 -0.13547,-0.639233 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35136,-0.410634 0.2286,-0.143933 0.52917,-0.143933 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287867 -0.13547,-0.465667 -0.13123,-0.182033 -0.41486,-0.182033 z" id="path3529" style="stroke-width:0.26458332"/>
+</g>
+<path d="m 138.76558,32.416672 h 23.81249 v 15.874995 h -23.81249 z" id="rect1691" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="IntegerRegisters(180 entries)" id="text1663" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 145.59602,36.042633 h -0.91016 v -0.183444 l 0.29633,-0.06703 V 33.7778 l -0.29633,-0.07056 V 33.5238 h 0.91016 v 0.183444 l -0.29633,0.07056 v 2.014361 l 0.29633,0.06703 z" id="path3533" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 146.95366,34.116466 q 0.33867,0 0.51153,0.165806 0.17286,0.162278 0.17286,0.529167 v 1.231194 h -0.30691 v -1.210028 q 0,-0.455083 -0.42334,-0.455083 -0.31397,0 -0.43391,0.176389 -0.11995,0.176389 -0.11995,0.508 v 0.980722 h -0.31044 v -1.890889 h 0.25047 l 0.0459,0.257528 h 0.0176 q 0.0917,-0.148167 0.254,-0.218722 0.16228,-0.07408 0.34219,-0.07408 z" id="path3535" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 148.85227,35.823911 q 0.0706,0 0.14464,-0.01058 0.0741,-0.01411 0.11994,-0.02822 v 0.236361 q -0.0494,0.0247 -0.14111,0.03881 -0.0917,0.01764 -0.17639,0.01764 -0.14816,0 -0.27516,-0.04939 -0.12347,-0.05292 -0.20109,-0.179917 -0.0776,-0.127 -0.0776,-0.356305 v -1.100667 h -0.26811 v -0.148167 l 0.27164,-0.123472 0.12347,-0.402166 h 0.18345 v 0.433916 h 0.5468 v 0.239889 h -0.5468 v 1.093611 q 0,0.172861 0.0811,0.257528 0.0847,0.08114 0.21519,0.08114 z" id="path3537" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 150.22573,34.116466 q 0.24342,0 0.41628,0.105834 0.17639,0.105833 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324556 -0.11289,-0.218722 -0.11289,-0.532694 0,-0.310445 0.10231,-0.532695 0.10583,-0.22225 0.2928,-0.342194 0.1905,-0.119945 0.44097,-0.119945 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.1517,0.395111 h 0.96309 q -0.004,-0.239888 -0.11289,-0.388055 -0.10936,-0.151695 -0.34572,-0.151695 z" id="path3539" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 152.15703,34.116466 q 0.18697,0 0.33514,0.07056 0.15169,0.07056 0.25752,0.215194 h 0.0176 l 0.0423,-0.250472 h 0.24694 v 1.922639 q 0,0.405694 -0.20814,0.610306 -0.20461,0.204611 -0.63853,0.204611 -0.41627,0 -0.68086,-0.119945 v -0.28575 q 0.2787,0.148167 0.6985,0.148167 0.24342,0 0.381,-0.144639 0.14111,-0.141111 0.14111,-0.388056 v -0.07408 q 0,-0.04233 0.004,-0.119944 0.004,-0.08114 0.007,-0.112889 h -0.0141 q -0.1905,0.28575 -0.58562,0.28575 -0.36688,0 -0.57502,-0.257528 -0.20461,-0.257528 -0.20461,-0.719667 0,-0.451555 0.20461,-0.716138 0.20814,-0.268112 0.5715,-0.268112 z m 0.0423,0.261056 q -0.23636,0 -0.36689,0.1905 -0.13053,0.186972 -0.13053,0.536222 0,0.34925 0.127,0.536222 0.13053,0.183445 0.37748,0.183445 0.28575,0 0.41627,-0.151695 0.13053,-0.155222 0.13053,-0.497416 v -0.07408 q 0,-0.388055 -0.13405,-0.553861 -0.13406,-0.169333 -0.41981,-0.169333 z" id="path3541" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 154.38741,34.116466 q 0.24342,0 0.41628,0.105834 0.17639,0.105833 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14112,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32102,-0.324556 -0.11289,-0.218722 -0.11289,-0.532694 0,-0.310445 0.1023,-0.532695 0.10584,-0.22225 0.29281,-0.342194 0.1905,-0.119945 0.44097,-0.119945 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239888 -0.11289,-0.388055 -0.10936,-0.151695 -0.34572,-0.151695 z" id="path3543" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 156.53037,34.116466 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.1023,-0.01764 -0.0529,-0.0071 -0.10231,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008944 h -0.31045 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.3422,-0.112889 z" id="path3545" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 144.03162,38.815468 q 0.46919,0 0.69144,0.179916 0.22578,0.176389 0.22578,0.536223 0,0.201083 -0.0741,0.335138 -0.0741,0.134056 -0.1905,0.215195 -0.11289,0.07761 -0.23989,0.123472 l 0.69144,1.128889 h -0.37041 l -0.61031,-1.040694 h -0.50094 v 1.040694 h -0.3175 v -2.518833 z m -0.0176,0.275166 h -0.35983 v 0.934861 h 0.37747 q 0.30691,0 0.44803,-0.119944 0.14111,-0.123472 0.14111,-0.359833 0,-0.246945 -0.14817,-0.34925 -0.14817,-0.105834 -0.45861,-0.105834 z" id="path3547" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 146.21564,39.408134 q 0.24342,0 0.41628,0.105834 0.17639,0.105833 0.26811,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15874,0.165805 0.44097,0.165805 0.17991,0 0.3175,-0.03175 0.14111,-0.03528 0.28927,-0.09878 v 0.271639 q -0.14463,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33513,0.03175 -0.26812,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324556 -0.11289,-0.218722 -0.11289,-0.532694 0,-0.310445 0.10231,-0.532695 0.10583,-0.22225 0.2928,-0.342194 0.1905,-0.119945 0.44097,-0.119945 z m -0.004,0.254 q -0.22225,0 -0.35277,0.144639 -0.127,0.141111 -0.1517,0.395111 h 0.96309 q -0.004,-0.239889 -0.11289,-0.388055 -0.10936,-0.151695 -0.34573,-0.151695 z" id="path3549" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 148.14694,39.408134 q 0.18697,0 0.33513,0.07056 0.1517,0.07055 0.25753,0.215194 h 0.0176 l 0.0423,-0.250472 h 0.24695 v 1.922639 q 0,0.405694 -0.20814,0.610306 -0.20461,0.204611 -0.63853,0.204611 -0.41628,0 -0.68086,-0.119945 v -0.28575 q 0.2787,0.148167 0.6985,0.148167 0.24342,0 0.381,-0.144639 0.14111,-0.141111 0.14111,-0.388056 v -0.07408 q 0,-0.04233 0.004,-0.119944 0.004,-0.08114 0.007,-0.112889 h -0.0141 q -0.1905,0.28575 -0.58561,0.28575 -0.36689,0 -0.57502,-0.257528 -0.20462,-0.257528 -0.20462,-0.719667 0,-0.451555 0.20462,-0.716139 0.20813,-0.268111 0.5715,-0.268111 z m 0.0423,0.261056 q -0.23636,0 -0.36689,0.1905 -0.13053,0.186972 -0.13053,0.536222 0,0.34925 0.127,0.536222 0.13053,0.183445 0.37747,0.183445 0.28575,0 0.41628,-0.151695 0.13053,-0.155222 0.13053,-0.497416 v -0.07408 q 0,-0.388055 -0.13406,-0.553861 -0.13405,-0.169333 -0.4198,-0.169333 z" id="path3551" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 149.80582,38.734329 q 0.0705,0 0.12347,0.04939 0.0564,0.04586 0.0564,0.148166 0,0.09878 -0.0564,0.148167 -0.0529,0.04939 -0.12347,0.04939 -0.0776,0 -0.13053,-0.04939 -0.0529,-0.04939 -0.0529,-0.148167 0,-0.102305 0.0529,-0.148166 0.0529,-0.04939 0.13053,-0.04939 z m 0.15169,0.709083 v 1.890889 h -0.31044 v -1.890889 z" id="path3553" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 151.78777,40.81219 q 0,0.275167 -0.20461,0.416278 -0.20461,0.141111 -0.55034,0.141111 -0.19755,0 -0.34219,-0.03175 -0.14111,-0.03175 -0.25047,-0.08819 v -0.282222 q 0.11289,0.05644 0.27164,0.105833 0.16227,0.04586 0.32808,0.04586 0.23636,0 0.34219,-0.07408 0.10584,-0.07761 0.10584,-0.204611 0,-0.07055 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05644 -0.28575,-0.127 -0.18344,-0.07055 -0.31397,-0.141111 -0.13053,-0.07055 -0.20109,-0.169333 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239889 0.19403,-0.370417 0.19755,-0.130528 0.51505,-0.130528 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246945 q -0.11995,-0.04939 -0.25047,-0.08467 -0.13053,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.29281,0.0635 -0.0988,0.05997 -0.0988,0.165806 0,0.07761 0.0459,0.134055 0.0459,0.05292 0.1517,0.105834 0.10936,0.04939 0.28928,0.119944 0.17991,0.06703 0.30691,0.137584 0.127,0.07055 0.19403,0.172861 0.067,0.09878 0.067,0.250472 z" id="path3555" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 152.87614,41.115579 q 0.0706,0 0.14464,-0.01058 0.0741,-0.01411 0.11995,-0.02822 v 0.236361 q -0.0494,0.0247 -0.14112,0.03881 -0.0917,0.01764 -0.17638,0.01764 -0.14817,0 -0.27517,-0.04939 -0.12347,-0.05292 -0.20108,-0.179917 -0.0776,-0.127 -0.0776,-0.356305 v -1.100667 h -0.26811 v -0.148167 l 0.27164,-0.123472 0.12347,-0.402166 h 0.18345 v 0.433916 h 0.5468 v 0.239889 h -0.5468 v 1.093611 q 0,0.172861 0.0811,0.257528 0.0847,0.08114 0.21519,0.08114 z" id="path3557" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 154.24961,39.408134 q 0.24341,0 0.41627,0.105834 0.17639,0.105833 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165805 0.44097,0.165805 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324556 -0.11289,-0.218722 -0.11289,-0.532694 0,-0.310445 0.10231,-0.532695 0.10583,-0.22225 0.2928,-0.342194 0.1905,-0.119945 0.44098,-0.119945 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388055 -0.10936,-0.151695 -0.34572,-0.151695 z" id="path3559" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 156.39257,39.408134 q 0.0529,0 0.11288,0.0071 0.0635,0.0035 0.10937,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141112 -0.0741,0.331612 v 1.008944 h -0.31045 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.3422,-0.112889 z" id="path3561" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 158.19564,40.81219 q 0,0.275167 -0.20461,0.416278 -0.20461,0.141111 -0.55033,0.141111 -0.19755,0 -0.34219,-0.03175 -0.14111,-0.03175 -0.25048,-0.08819 v -0.282222 q 0.11289,0.05644 0.27164,0.105833 0.16228,0.04586 0.32809,0.04586 0.23636,0 0.34219,-0.07408 0.10583,-0.07761 0.10583,-0.204611 0,-0.07055 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05644 -0.28575,-0.127 -0.18345,-0.07055 -0.31397,-0.141111 -0.13053,-0.07055 -0.20109,-0.169333 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239889 0.19402,-0.370417 0.19756,-0.130528 0.51506,-0.130528 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246945 q -0.11995,-0.04939 -0.25048,-0.08467 -0.13052,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.2928,0.0635 -0.0988,0.05997 -0.0988,0.165806 0,0.07761 0.0459,0.134055 0.0459,0.05292 0.1517,0.105834 0.10936,0.04939 0.28927,0.119944 0.17992,0.06703 0.30692,0.137584 0.127,0.07055 0.19403,0.172861 0.067,0.09878 0.067,0.250472 z" id="path3563" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 140.52418,45.659354 q 0,-0.430389 0.12347,-0.829028 0.127,-0.402166 0.39511,-0.723194 h 0.29281 q -0.24695,0.331611 -0.37395,0.73025 -0.12347,0.398639 -0.12347,0.818444 0,0.409222 0.12347,0.804334 0.127,0.391583 0.37042,0.723194 h -0.28928 q -0.26811,-0.310444 -0.39511,-0.702028 -0.12347,-0.395111 -0.12347,-0.821972 z" id="path3565" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 142.69652,46.625965 h -0.30339 v -1.760361 q 0,-0.151694 0.004,-0.243417 0.004,-0.09172 0.0106,-0.1905 -0.0564,0.05645 -0.1023,0.09525 -0.0459,0.03881 -0.11642,0.09878 l -0.26811,0.218722 -0.16228,-0.208138 0.68086,-0.529167 h 0.25753 z" id="path3567" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 144.4684,44.071854 q 0.33161,0 0.54328,0.155222 0.21167,0.155223 0.21167,0.448028 0,0.151695 -0.067,0.264583 -0.0635,0.112889 -0.17286,0.201084 -0.10936,0.08467 -0.23989,0.151694 0.15522,0.07408 0.28222,0.169333 0.127,0.09172 0.20108,0.215195 0.0776,0.123472 0.0776,0.296333 0,0.3175 -0.22577,0.504472 -0.22225,0.183445 -0.59973,0.183445 -0.40569,0 -0.62441,-0.176389 -0.21872,-0.179917 -0.21872,-0.500944 0,-0.172862 0.0705,-0.299862 0.0741,-0.127 0.19403,-0.218722 0.11994,-0.09172 0.25753,-0.155222 -0.18345,-0.105833 -0.31398,-0.254 -0.127,-0.151694 -0.127,-0.384528 0,-0.194027 0.0988,-0.324555 0.0988,-0.134056 0.26811,-0.204611 0.16934,-0.07056 0.38453,-0.07056 z m -0.004,0.250472 q -0.19402,0 -0.32102,0.09525 -0.12348,0.09172 -0.12348,0.268111 0,0.130528 0.06,0.218723 0.0635,0.08819 0.16933,0.151694 0.10583,0.05997 0.23283,0.116417 0.18345,-0.07761 0.30692,-0.186972 0.127,-0.109362 0.127,-0.299862 0,-0.176388 -0.12347,-0.268111 -0.12348,-0.09525 -0.32809,-0.09525 z m -0.52564,1.665111 q 0,0.183445 0.13053,0.306917 0.13053,0.119944 0.40217,0.119944 0.25753,0 0.39158,-0.119944 0.13759,-0.123472 0.13759,-0.3175 0,-0.183444 -0.14464,-0.303389 -0.14464,-0.123472 -0.38453,-0.215194 l -0.0564,-0.02117 q -0.23283,0.09878 -0.3563,0.229306 -0.11995,0.127 -0.11995,0.321027 z" id="path3569" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 147.32684,45.363021 q 0,0.405694 -0.0847,0.6985 -0.0847,0.289277 -0.26811,0.4445 -0.18344,0.155222 -0.48683,0.155222 -0.42686,0 -0.63148,-0.342195 -0.20108,-0.345722 -0.20108,-0.956027 0,-0.409222 0.0811,-0.6985 0.0847,-0.289278 0.26811,-0.440972 0.18345,-0.155223 0.48331,-0.155223 0.42333,0 0.63147,0.342195 0.20814,0.338666 0.20814,0.9525 z m -1.36172,0 q 0,0.518583 0.11641,0.776111 0.11995,0.257528 0.4057,0.257528 0.28222,0 0.40216,-0.254 0.12348,-0.257528 0.12348,-0.779639 0,-0.515056 -0.12348,-0.772584 -0.11994,-0.257527 -0.40216,-0.257527 -0.28575,0 -0.4057,0.257527 -0.11641,0.257528 -0.11641,0.772584 z" id="path3571" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 149.44714,44.699799 q 0.24342,0 0.41628,0.105833 0.17639,0.105833 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17991,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14112,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324556 -0.11289,-0.218722 -0.11289,-0.532694 0,-0.310445 0.10231,-0.532695 0.10583,-0.22225 0.2928,-0.342194 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144638 -0.127,0.141111 -0.1517,0.395111 h 0.96309 q -0.004,-0.239888 -0.11289,-0.388055 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3573" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 151.61832,44.699799 q 0.33867,0 0.51153,0.165805 0.17286,0.162278 0.17286,0.529167 v 1.231194 h -0.30691 v -1.210028 q 0,-0.455083 -0.42334,-0.455083 -0.31397,0 -0.43391,0.176389 -0.11995,0.176389 -0.11995,0.508 v 0.980722 h -0.31044 v -1.890889 h 0.25047 l 0.0459,0.257528 h 0.0176 q 0.0917,-0.148167 0.254,-0.218722 0.16228,-0.07408 0.34219,-0.07408 z" id="path3575" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 153.51693,46.407243 q 0.0706,0 0.14464,-0.01058 0.0741,-0.01411 0.11994,-0.02822 v 0.236361 q -0.0494,0.02469 -0.14111,0.03881 -0.0917,0.01764 -0.17639,0.01764 -0.14816,0 -0.27516,-0.04939 -0.12348,-0.05292 -0.20109,-0.179917 -0.0776,-0.127 -0.0776,-0.356305 v -1.100667 h -0.26811 v -0.148166 l 0.27164,-0.123473 0.12347,-0.402166 h 0.18345 v 0.433916 h 0.5468 v 0.239889 h -0.5468 v 1.093611 q 0,0.172861 0.0811,0.257528 0.0847,0.08114 0.21519,0.08114 z" id="path3577" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 155.04209,44.699799 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.1023,-0.01764 -0.0529,-0.0071 -0.10231,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008944 h -0.31045 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112888 0.3422,-0.112888 z" id="path3579" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 155.77272,44.025993 q 0.0706,0 0.12348,0.04939 0.0564,0.04586 0.0564,0.148167 0,0.09878 -0.0564,0.148166 -0.0529,0.04939 -0.12348,0.04939 -0.0776,0 -0.13052,-0.04939 -0.0529,-0.04939 -0.0529,-0.148166 0,-0.102306 0.0529,-0.148167 0.0529,-0.04939 0.13052,-0.04939 z m 0.1517,0.709083 v 1.890889 h -0.31045 v -1.890889 z" id="path3581" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 157.25373,44.699799 q 0.24342,0 0.41628,0.105833 0.17639,0.105833 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324556 -0.11288,-0.218722 -0.11288,-0.532694 0,-0.310445 0.1023,-0.532695 0.10583,-0.22225 0.29281,-0.342194 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144638 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239888 -0.11289,-0.388055 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3583" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 159.74594,46.103854 q 0,0.275167 -0.20461,0.416278 -0.20461,0.141111 -0.55034,0.141111 -0.19755,0 -0.34219,-0.03175 -0.14111,-0.03175 -0.25047,-0.08819 v -0.282222 q 0.11289,0.05644 0.27164,0.105834 0.16227,0.04586 0.32808,0.04586 0.23636,0 0.34219,-0.07408 0.10584,-0.07761 0.10584,-0.204611 0,-0.07055 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05644 -0.28575,-0.127 -0.18344,-0.07055 -0.31397,-0.141111 -0.13053,-0.07055 -0.20109,-0.169333 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239889 0.19403,-0.370417 0.19755,-0.130527 0.51505,-0.130527 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246944 q -0.11995,-0.04939 -0.25047,-0.08467 -0.13053,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.29281,0.0635 -0.0988,0.05997 -0.0988,0.165805 0,0.07761 0.0459,0.134056 0.0459,0.05292 0.1517,0.105833 0.10936,0.04939 0.28928,0.119944 0.17991,0.06703 0.30691,0.137584 0.127,0.07055 0.19403,0.172861 0.067,0.09878 0.067,0.250472 z" id="path3585" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 160.8202,45.659354 q 0,0.426861 -0.127,0.821972 -0.12347,0.391584 -0.39158,0.702028 h -0.28928 q 0.24342,-0.331611 0.36689,-0.723194 0.127,-0.395112 0.127,-0.804334 0,-0.419805 -0.127,-0.818444 -0.12347,-0.398639 -0.37042,-0.73025 h 0.29281 q 0.26811,0.321028 0.39158,0.723194 0.127,0.398639 0.127,0.829028 z" id="path3587" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+</g>
+<path d="m 138.76558,50.9375 h 23.81251 v 15.874997 h -23.81251 z" id="rect1693" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="VectorRegisters(168 entries)" id="text1669" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 147.49168,52.044628 -0.89958,2.518833 h -0.3175 l -0.89959,-2.518833 h 0.33161 l 0.56798,1.615722 q 0.0564,0.155222 0.0953,0.292806 0.0388,0.134055 0.0635,0.257528 0.0247,-0.123473 0.0635,-0.261056 0.0388,-0.137583 0.0952,-0.296333 l 0.56444,-1.608667 z" id="path3591" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 148.45151,52.637295 q 0.24342,0 0.41628,0.105833 0.17639,0.105833 0.26811,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14112,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32102,-0.324556 -0.11289,-0.218722 -0.11289,-0.532694 0,-0.310444 0.1023,-0.532694 0.10584,-0.22225 0.29281,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3593" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 150.471,54.598739 q -0.25047,0 -0.44803,-0.102305 -0.19403,-0.102306 -0.30692,-0.3175 -0.10936,-0.215195 -0.10936,-0.550334 0,-0.34925 0.11642,-0.567972 0.11642,-0.218722 0.31397,-0.321028 0.20108,-0.102305 0.45508,-0.102305 0.14464,0 0.2787,0.03175 0.13405,0.02822 0.21872,0.07056 l -0.0952,0.257528 q -0.0847,-0.03175 -0.19755,-0.05997 -0.11289,-0.02822 -0.21167,-0.02822 -0.55739,0 -0.55739,0.716138 0,0.342195 0.13406,0.525639 0.13758,0.179917 0.40569,0.179917 0.15522,0 0.27164,-0.03175 0.11994,-0.03175 0.21872,-0.07761 v 0.275167 q -0.0952,0.04939 -0.21167,0.07408 -0.11288,0.02822 -0.27516,0.02822 z" id="path3595" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 152.03898,54.344739 q 0.0706,0 0.14464,-0.01058 0.0741,-0.01411 0.11995,-0.02822 v 0.236361 q -0.0494,0.02469 -0.14111,0.0388 -0.0917,0.01764 -0.17639,0.01764 -0.14817,0 -0.27517,-0.04939 -0.12347,-0.05292 -0.20108,-0.179916 -0.0776,-0.127 -0.0776,-0.356306 v -1.100667 h -0.26811 v -0.148166 l 0.27163,-0.123473 0.12348,-0.402166 h 0.18344 v 0.433916 h 0.54681 v 0.239889 h -0.54681 v 1.093611 q 0,0.172862 0.0811,0.257528 0.0847,0.08114 0.21519,0.08114 z" id="path3597" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 154.32614,53.614489 q 0,0.469195 -0.23989,0.726722 -0.23636,0.257528 -0.64205,0.257528 -0.25047,0 -0.44803,-0.112889 -0.19403,-0.116416 -0.30692,-0.335139 -0.11289,-0.22225 -0.11289,-0.536222 0,-0.469194 0.23637,-0.723194 0.23636,-0.254 0.64205,-0.254 0.25753,0 0.45156,0.116416 0.19755,0.112889 0.30691,0.331611 0.11289,0.215195 0.11289,0.529167 z m -1.42875,0 q 0,0.335139 0.13053,0.532695 0.13406,0.194027 0.42333,0.194027 0.28575,0 0.41981,-0.194027 0.13405,-0.197556 0.13405,-0.532695 0,-0.335139 -0.13405,-0.525639 -0.13406,-0.1905 -0.42333,-0.1905 -0.28928,0 -0.41981,0.1905 -0.13053,0.1905 -0.13053,0.525639 z" id="path3599" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 155.7001,52.637295 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.1023,-0.01764 -0.0529,-0.0071 -0.10231,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008944 h -0.31044 v -1.890889 h 0.254 l 0.0353,0.345723 h 0.0141 q 0.0917,-0.155223 0.23637,-0.268111 0.14463,-0.112889 0.34219,-0.112889 z" id="path3601" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 144.03162,57.336296 q 0.46919,0 0.69144,0.179917 0.22578,0.176389 0.22578,0.536222 0,0.201083 -0.0741,0.335139 -0.0741,0.134055 -0.1905,0.215194 -0.11289,0.07761 -0.23989,0.123472 l 0.69144,1.128889 h -0.37041 l -0.61031,-1.040694 h -0.50094 v 1.040694 h -0.3175 v -2.518833 z m -0.0176,0.275167 h -0.35983 v 0.934861 h 0.37747 q 0.30691,0 0.44803,-0.119945 0.14111,-0.123472 0.14111,-0.359833 0,-0.246944 -0.14817,-0.34925 -0.14817,-0.105833 -0.45861,-0.105833 z" id="path3603" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 146.21564,57.928963 q 0.24342,0 0.41628,0.105833 0.17639,0.105833 0.26811,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15874,0.165806 0.44097,0.165806 0.17991,0 0.3175,-0.03175 0.14111,-0.03528 0.28927,-0.09878 v 0.271639 q -0.14463,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33513,0.03175 -0.26812,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324556 -0.11289,-0.218722 -0.11289,-0.532694 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.2928,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35277,0.144639 -0.127,0.141111 -0.1517,0.395111 h 0.96309 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34573,-0.151694 z" id="path3605" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 148.14694,57.928963 q 0.18697,0 0.33513,0.07055 0.1517,0.07056 0.25753,0.215195 h 0.0176 l 0.0423,-0.250473 h 0.24695 v 1.922639 q 0,0.405695 -0.20814,0.610306 -0.20461,0.204611 -0.63853,0.204611 -0.41628,0 -0.68086,-0.119945 v -0.28575 q 0.2787,0.148167 0.6985,0.148167 0.24342,0 0.381,-0.144639 0.14111,-0.141111 0.14111,-0.388055 v -0.07408 q 0,-0.04233 0.004,-0.119944 0.004,-0.08114 0.007,-0.112889 h -0.0141 q -0.1905,0.28575 -0.58561,0.28575 -0.36689,0 -0.57502,-0.257528 -0.20462,-0.257528 -0.20462,-0.719666 0,-0.451556 0.20462,-0.716139 0.20813,-0.268111 0.5715,-0.268111 z m 0.0423,0.261055 q -0.23636,0 -0.36689,0.1905 -0.13053,0.186972 -0.13053,0.536222 0,0.34925 0.127,0.536223 0.13053,0.183444 0.37747,0.183444 0.28575,0 0.41628,-0.151694 0.13053,-0.155223 0.13053,-0.497417 v -0.07408 q 0,-0.388056 -0.13406,-0.553861 -0.13405,-0.169334 -0.4198,-0.169334 z" id="path3607" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 149.80582,57.255157 q 0.0705,0 0.12347,0.04939 0.0564,0.04586 0.0564,0.148167 0,0.09878 -0.0564,0.148166 -0.0529,0.04939 -0.12347,0.04939 -0.0776,0 -0.13053,-0.04939 -0.0529,-0.04939 -0.0529,-0.148166 0,-0.102306 0.0529,-0.148167 0.0529,-0.04939 0.13053,-0.04939 z m 0.15169,0.709083 v 1.890889 h -0.31044 V 57.96424 Z" id="path3609" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 151.78777,59.333018 q 0,0.275167 -0.20461,0.416278 -0.20461,0.141111 -0.55034,0.141111 -0.19755,0 -0.34219,-0.03175 -0.14111,-0.03175 -0.25047,-0.08819 V 59.48824 q 0.11289,0.05645 0.27164,0.105834 0.16227,0.04586 0.32808,0.04586 0.23636,0 0.34219,-0.07408 0.10584,-0.07761 0.10584,-0.204611 0,-0.07055 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05644 -0.28575,-0.127 -0.18344,-0.07055 -0.31397,-0.141111 -0.13053,-0.07055 -0.20109,-0.169333 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239889 0.19403,-0.370417 0.19755,-0.130527 0.51505,-0.130527 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246944 q -0.11995,-0.04939 -0.25047,-0.08467 -0.13053,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.29281,0.0635 -0.0988,0.05997 -0.0988,0.165805 0,0.07761 0.0459,0.134056 0.0459,0.05292 0.1517,0.105833 0.10936,0.04939 0.28928,0.119944 0.17991,0.06703 0.30691,0.137584 0.127,0.07055 0.19403,0.172861 0.067,0.09878 0.067,0.250472 z" id="path3611" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 152.87614,59.636407 q 0.0706,0 0.14464,-0.01058 0.0741,-0.01411 0.11995,-0.02822 v 0.236362 q -0.0494,0.02469 -0.14112,0.03881 -0.0917,0.01764 -0.17638,0.01764 -0.14817,0 -0.27517,-0.04939 -0.12347,-0.05292 -0.20108,-0.179917 -0.0776,-0.127 -0.0776,-0.356305 v -1.100667 h -0.26811 v -0.148166 l 0.27164,-0.123473 0.12347,-0.402166 h 0.18345 v 0.433916 h 0.5468 v 0.239889 h -0.5468 v 1.093611 q 0,0.172861 0.0811,0.257528 0.0847,0.08114 0.21519,0.08114 z" id="path3613" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 154.24961,57.928963 q 0.24341,0 0.41627,0.105833 0.17639,0.105833 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324556 -0.11289,-0.218722 -0.11289,-0.532694 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.2928,-0.342195 0.1905,-0.119944 0.44098,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3615" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 156.39257,57.928963 q 0.0529,0 0.11288,0.0071 0.0635,0.0035 0.10937,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008944 h -0.31045 V 57.96424 h 0.254 l 0.0353,0.345723 h 0.0141 q 0.0917,-0.155223 0.23636,-0.268111 0.14464,-0.112889 0.3422,-0.112889 z" id="path3617" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 158.19564,59.333018 q 0,0.275167 -0.20461,0.416278 -0.20461,0.141111 -0.55033,0.141111 -0.19755,0 -0.34219,-0.03175 -0.14111,-0.03175 -0.25048,-0.08819 V 59.48824 q 0.11289,0.05645 0.27164,0.105834 0.16228,0.04586 0.32809,0.04586 0.23636,0 0.34219,-0.07408 0.10583,-0.07761 0.10583,-0.204611 0,-0.07055 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05644 -0.28575,-0.127 -0.18345,-0.07055 -0.31397,-0.141111 -0.13053,-0.07055 -0.20109,-0.169333 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239889 0.19402,-0.370417 0.19756,-0.130527 0.51506,-0.130527 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246944 q -0.11995,-0.04939 -0.25048,-0.08467 -0.13052,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.2928,0.0635 -0.0988,0.05997 -0.0988,0.165805 0,0.07761 0.0459,0.134056 0.0459,0.05292 0.1517,0.105833 0.10936,0.04939 0.28927,0.119944 0.17992,0.06703 0.30692,0.137584 0.127,0.07055 0.19403,0.172861 0.067,0.09878 0.067,0.250472 z" id="path3619" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 140.52418,64.180186 q 0,-0.430389 0.12347,-0.829028 0.127,-0.402166 0.39511,-0.723194 h 0.29281 q -0.24695,0.331611 -0.37395,0.73025 -0.12347,0.398639 -0.12347,0.818444 0,0.409223 0.12347,0.804334 0.127,0.391583 0.37042,0.723194 h -0.28928 q -0.26811,-0.310444 -0.39511,-0.702028 -0.12347,-0.395111 -0.12347,-0.821972 z" id="path3621" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 142.69652,65.146797 h -0.30339 v -1.760361 q 0,-0.151694 0.004,-0.243417 0.004,-0.09172 0.0106,-0.1905 -0.0564,0.05644 -0.1023,0.09525 -0.0459,0.03881 -0.11642,0.09878 l -0.26811,0.218722 -0.16228,-0.208138 0.68086,-0.529167 h 0.25753 z" id="path3623" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 143.65701,64.070825 q 0,-0.271639 0.0459,-0.532694 0.0494,-0.264584 0.17286,-0.47625 0.127,-0.215195 0.35278,-0.342195 0.22578,-0.127 0.58209,-0.127 0.0741,0 0.16227,0.0071 0.0917,0.0071 0.14817,0.02469 v 0.264583 q -0.0635,-0.02117 -0.14464,-0.03175 -0.0776,-0.01058 -0.15875,-0.01058 -0.24342,0 -0.40569,0.08114 -0.16228,0.08114 -0.25753,0.22225 -0.0917,0.141111 -0.13406,0.324556 -0.0423,0.183444 -0.0529,0.391583 h 0.0212 q 0.0811,-0.123472 0.22578,-0.208139 0.14464,-0.08819 0.37042,-0.08819 0.32808,0 0.52916,0.201083 0.20109,0.197555 0.20109,0.564444 0,0.395111 -0.21872,0.620889 -0.2152,0.225778 -0.58209,0.225778 -0.23989,0 -0.43391,-0.119944 -0.19403,-0.119945 -0.31045,-0.366889 -0.11289,-0.246945 -0.11289,-0.624417 z m 0.85372,0.850194 q 0.22225,0 0.35984,-0.141111 0.13758,-0.144639 0.13758,-0.4445 0,-0.239889 -0.12347,-0.381 -0.11995,-0.141111 -0.36336,-0.141111 -0.16581,0 -0.28928,0.07056 -0.12347,0.06703 -0.19403,0.172861 -0.067,0.105833 -0.067,0.218722 0,0.151695 0.06,0.303389 0.06,0.148167 0.17991,0.246944 0.11995,0.09525 0.29986,0.09525 z" id="path3625" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 146.48723,62.592686 q 0.33161,0 0.54327,0.155222 0.21167,0.155223 0.21167,0.448028 0,0.151695 -0.067,0.264583 -0.0635,0.112889 -0.17286,0.201084 -0.10936,0.08467 -0.23989,0.151694 0.15523,0.07408 0.28223,0.169334 0.127,0.09172 0.20108,0.215194 0.0776,0.123472 0.0776,0.296333 0,0.3175 -0.22578,0.504473 -0.22225,0.183444 -0.59972,0.183444 -0.40569,0 -0.62442,-0.176389 -0.21872,-0.179917 -0.21872,-0.500944 0,-0.172861 0.0706,-0.299861 0.0741,-0.127 0.19402,-0.218723 0.11995,-0.09172 0.25753,-0.155222 -0.18344,-0.105833 -0.31397,-0.254 -0.127,-0.151694 -0.127,-0.384528 0,-0.194027 0.0988,-0.324555 0.0988,-0.134056 0.26811,-0.204611 0.16933,-0.07056 0.38453,-0.07056 z m -0.004,0.250472 q -0.19403,0 -0.32103,0.09525 -0.12347,0.09172 -0.12347,0.268111 0,0.130528 0.06,0.218723 0.0635,0.08819 0.16933,0.151694 0.10584,0.05997 0.23284,0.116417 0.18344,-0.07761 0.30691,-0.186972 0.127,-0.109362 0.127,-0.299862 0,-0.176388 -0.12347,-0.268111 -0.12347,-0.09525 -0.32808,-0.09525 z m -0.52564,1.665111 q 0,0.183445 0.13053,0.306917 0.13053,0.119945 0.40216,0.119945 0.25753,0 0.39159,-0.119945 0.13758,-0.123472 0.13758,-0.3175 0,-0.183444 -0.14464,-0.303389 -0.14464,-0.123472 -0.38453,-0.215194 l -0.0564,-0.02117 q -0.23283,0.09878 -0.35631,0.229306 -0.11994,0.127 -0.11994,0.321027 z" id="path3627" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 149.44714,63.220631 q 0.24342,0 0.41628,0.105833 0.17639,0.105833 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17991,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14112,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324556 -0.11289,-0.218722 -0.11289,-0.532694 0,-0.310445 0.10231,-0.532695 0.10583,-0.22225 0.2928,-0.342194 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144638 -0.127,0.141112 -0.1517,0.395112 h 0.96309 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3629" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 151.61832,63.220631 q 0.33867,0 0.51153,0.165805 0.17286,0.162278 0.17286,0.529167 v 1.231194 h -0.30691 v -1.210028 q 0,-0.455083 -0.42334,-0.455083 -0.31397,0 -0.43391,0.176389 -0.11995,0.176389 -0.11995,0.508 v 0.980722 h -0.31044 v -1.890889 h 0.25047 l 0.0459,0.257528 h 0.0176 q 0.0917,-0.148167 0.254,-0.218722 0.16228,-0.07408 0.34219,-0.07408 z" id="path3631" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 153.51693,64.928075 q 0.0706,0 0.14464,-0.01058 0.0741,-0.01411 0.11994,-0.02822 v 0.236362 q -0.0494,0.02469 -0.14111,0.0388 -0.0917,0.01764 -0.17639,0.01764 -0.14816,0 -0.27516,-0.04939 -0.12348,-0.05292 -0.20109,-0.179917 -0.0776,-0.127 -0.0776,-0.356305 v -1.100667 h -0.26811 v -0.148166 l 0.27164,-0.123473 0.12347,-0.402166 h 0.18345 v 0.433916 h 0.5468 v 0.239889 h -0.5468 v 1.093611 q 0,0.172861 0.0811,0.257528 0.0847,0.08114 0.21519,0.08114 z" id="path3633" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 155.04209,63.220631 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.1023,-0.01764 -0.0529,-0.0071 -0.10231,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008944 h -0.31045 v -1.890889 h 0.254 l 0.0353,0.345723 h 0.0141 q 0.0917,-0.155223 0.23636,-0.268112 0.14464,-0.112888 0.3422,-0.112888 z" id="path3635" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 155.77272,62.546825 q 0.0706,0 0.12348,0.04939 0.0564,0.04586 0.0564,0.148167 0,0.09878 -0.0564,0.148166 -0.0529,0.04939 -0.12348,0.04939 -0.0776,0 -0.13052,-0.04939 -0.0529,-0.04939 -0.0529,-0.148166 0,-0.102306 0.0529,-0.148167 0.0529,-0.04939 0.13052,-0.04939 z m 0.1517,0.709083 v 1.890889 h -0.31045 v -1.890889 z" id="path3637" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 157.25373,63.220631 q 0.24342,0 0.41628,0.105833 0.17639,0.105833 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324556 -0.11288,-0.218722 -0.11288,-0.532694 0,-0.310445 0.1023,-0.532695 0.10583,-0.22225 0.29281,-0.342194 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144638 -0.127,0.141112 -0.15169,0.395112 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3639" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 159.74594,64.624686 q 0,0.275167 -0.20461,0.416278 -0.20461,0.141111 -0.55034,0.141111 -0.19755,0 -0.34219,-0.03175 -0.14111,-0.03175 -0.25047,-0.08819 v -0.282223 q 0.11289,0.05644 0.27164,0.105834 0.16227,0.04586 0.32808,0.04586 0.23636,0 0.34219,-0.07408 0.10584,-0.07761 0.10584,-0.204611 0,-0.07055 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05644 -0.28575,-0.127 -0.18344,-0.07055 -0.31397,-0.141111 -0.13053,-0.07055 -0.20109,-0.169333 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239889 0.19403,-0.370417 0.19755,-0.130527 0.51505,-0.130527 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246944 q -0.11995,-0.04939 -0.25047,-0.08467 -0.13053,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.29281,0.0635 -0.0988,0.05997 -0.0988,0.165805 0,0.07761 0.0459,0.134056 0.0459,0.05292 0.1517,0.105833 0.10936,0.04939 0.28928,0.119944 0.17991,0.06703 0.30691,0.137584 0.127,0.07055 0.19403,0.172861 0.067,0.09878 0.067,0.250472 z" id="path3641" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 160.8202,64.180186 q 0,0.426861 -0.127,0.821972 -0.12347,0.391584 -0.39158,0.702028 h -0.28928 q 0.24342,-0.331611 0.36689,-0.723194 0.127,-0.395111 0.127,-0.804334 0,-0.419805 -0.127,-0.818444 -0.12347,-0.398639 -0.37042,-0.73025 h 0.29281 q 0.26811,0.321028 0.39158,0.723194 0.127,0.398639 0.127,0.829028 z" id="path3643" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+</g>
+<g id="flowRoot1893" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none" transform="scale(0.26458333)"/>
+<g aria-label="loads" id="text1922" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 72.827239,25.140631 H 72.516795 V 22.45952 h 0.310444 z" id="path3647" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 75.070244,24.191659 q 0,0.469194 -0.239889,0.726722 -0.236361,0.257527 -0.642055,0.257527 -0.250472,0 -0.448028,-0.112888 -0.194028,-0.116417 -0.306917,-0.335139 -0.112889,-0.22225 -0.112889,-0.536222 0,-0.469195 0.236362,-0.723195 0.236361,-0.254 0.642055,-0.254 0.257528,0 0.451556,0.116417 0.197555,0.112889 0.306916,0.331611 0.112889,0.215194 0.112889,0.529167 z m -1.42875,0 q 0,0.335138 0.130528,0.532694 0.134056,0.194028 0.423333,0.194028 0.28575,0 0.419806,-0.194028 0.134055,-0.197556 0.134055,-0.532694 0,-0.335139 -0.134055,-0.525639 -0.134056,-0.1905 -0.423333,-0.1905 -0.289278,0 -0.419806,0.1905 -0.130528,0.1905 -0.130528,0.525639 z" id="path3649" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 76.278398,23.217992 q 0.345722,0 0.511527,0.151694 0.165806,0.151695 0.165806,0.483306 v 1.287639 h -0.225778 l -0.05997,-0.268111 h -0.01411 q -0.123472,0.155222 -0.261056,0.229305 -0.134055,0.07408 -0.373944,0.07408 -0.257528,0 -0.426861,-0.134055 -0.169333,-0.137583 -0.169333,-0.426861 0,-0.282222 0.22225,-0.433917 0.22225,-0.155222 0.684388,-0.169333 l 0.321028,-0.01058 V 23.88827 q 0,-0.236361 -0.102305,-0.328084 -0.102306,-0.09172 -0.289278,-0.09172 -0.148167,0 -0.282222,0.04586 -0.134056,0.04233 -0.250473,0.09878 l -0.09525,-0.232833 q 0.123473,-0.06703 0.292806,-0.112889 0.169333,-0.04939 0.352778,-0.04939 z m 0.370416,0.998361 -0.278694,0.01058 q -0.352778,0.01411 -0.490361,0.112889 -0.134056,0.09878 -0.134056,0.278695 0,0.15875 0.09525,0.232833 0.09878,0.07408 0.250473,0.07408 0.239888,0 0.398638,-0.130527 0.15875,-0.134056 0.15875,-0.409223 z" id="path3651" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 78.210022,25.175908 q -0.352778,0 -0.564445,-0.243416 -0.211667,-0.246945 -0.211667,-0.733778 0,-0.486833 0.211667,-0.733778 0.215195,-0.250472 0.567972,-0.250472 0.218723,0 0.356306,0.08114 0.141111,0.08114 0.229305,0.197556 h 0.02117 q -0.0035,-0.04586 -0.01411,-0.134056 -0.0071,-0.09172 -0.0071,-0.144639 V 22.45952 h 0.310445 v 2.681111 h -0.250472 l -0.04586,-0.254 h -0.01411 q -0.08467,0.119944 -0.225777,0.204611 -0.141111,0.08467 -0.363361,0.08467 z m 0.04939,-0.257527 q 0.299862,0 0.419806,-0.162278 0.123472,-0.165806 0.123472,-0.497417 v -0.05644 q 0,-0.352778 -0.116416,-0.53975 -0.116417,-0.1905 -0.430389,-0.1905 -0.250473,0 -0.377473,0.201083 -0.123472,0.197556 -0.123472,0.532695 0,0.338666 0.123472,0.525639 0.127,0.186972 0.381,0.186972 z" id="path3653" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 80.941348,24.61852 q 0,0.275166 -0.204611,0.416277 -0.204611,0.141111 -0.550333,0.141111 -0.197556,0 -0.342194,-0.03175 -0.141112,-0.03175 -0.250473,-0.08819 v -0.282222 q 0.112889,0.05644 0.271639,0.105833 0.162278,0.04586 0.328084,0.04586 0.236361,0 0.342194,-0.07408 0.105833,-0.07761 0.105833,-0.204611 0,-0.07056 -0.0388,-0.127 -0.03881,-0.05645 -0.141111,-0.112889 -0.09878,-0.05644 -0.28575,-0.127 -0.183445,-0.07056 -0.313973,-0.141111 -0.130527,-0.07056 -0.201083,-0.169333 -0.07055,-0.09878 -0.07055,-0.254 0,-0.239889 0.194027,-0.370417 0.197556,-0.130528 0.515056,-0.130528 0.172861,0 0.321028,0.03528 0.151694,0.03175 0.282222,0.09172 l -0.105834,0.246945 q -0.119944,-0.04939 -0.250472,-0.08467 -0.130527,-0.03528 -0.268111,-0.03528 -0.1905,0 -0.292805,0.0635 -0.09878,0.05997 -0.09878,0.165806 0,0.07761 0.04586,0.134055 0.04586,0.05292 0.151694,0.105834 0.109362,0.04939 0.289278,0.119944 0.179917,0.06703 0.306917,0.137583 0.127,0.07056 0.194028,0.172861 0.06703,0.09878 0.06703,0.250473 z" id="path3655" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="6 µOPs" id="text1934" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 68.791048,108.26364 q 0,-0.27164 0.04586,-0.5327 0.04939,-0.26458 0.172861,-0.47625 0.127,-0.21519 0.352778,-0.34219 0.225777,-0.127 0.582083,-0.127 0.07408,0 0.162278,0.007 0.09172,0.007 0.148166,0.0247 v 0.26458 q -0.0635,-0.0212 -0.144639,-0.0318 -0.07761,-0.0106 -0.15875,-0.0106 -0.243416,0 -0.405694,0.0811 -0.162278,0.0811 -0.257528,0.22225 -0.09172,0.14111 -0.134055,0.32455 -0.04233,0.18345 -0.05292,0.39158 h 0.02117 q 0.08114,-0.12347 0.225777,-0.20813 0.144639,-0.0882 0.370417,-0.0882 0.328083,0 0.529167,0.20108 0.201083,0.19756 0.201083,0.56445 0,0.39511 -0.218722,0.62089 -0.215195,0.22578 -0.582083,0.22578 -0.239889,0 -0.433917,-0.11995 -0.194028,-0.11994 -0.310445,-0.36689 -0.112888,-0.24694 -0.112888,-0.62441 z m 0.853722,0.85019 q 0.22225,0 0.359833,-0.14111 0.137583,-0.14464 0.137583,-0.4445 0,-0.23989 -0.123472,-0.381 -0.119944,-0.14111 -0.363361,-0.14111 -0.165805,0 -0.289278,0.0705 -0.123472,0.067 -0.194027,0.17286 -0.06703,0.10584 -0.06703,0.21873 0,0.15169 0.05997,0.30339 0.05997,0.14816 0.179917,0.24694 0.119944,0.0952 0.299861,0.0952 z" id="path3658" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 73.430186,107.44872 v 1.89089 h -0.250473 l -0.04939,-0.254 h -0.01764 q -0.08819,0.14111 -0.229306,0.21519 -0.141111,0.0741 -0.338667,0.0741 -0.137583,0 -0.236361,-0.0423 -0.09878,-0.0459 -0.169333,-0.11641 h -0.01411 q 0.0071,0.0635 0.01058,0.16933 0.0071,0.10583 0.0071,0.25047 v 0.55033 h -0.310445 v -2.73755 h 0.310445 v 1.22061 q 0,0.44803 0.423333,0.44803 0.313972,0 0.433917,-0.17639 0.119944,-0.17639 0.119944,-0.508 v -0.98425 z" id="path3660" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 76.270212,108.07666 q 0,0.39159 -0.134056,0.68439 -0.130528,0.28928 -0.388055,0.45156 -0.257528,0.16228 -0.638528,0.16228 -0.391583,0 -0.652639,-0.16228 -0.257528,-0.16228 -0.384528,-0.45509 -0.127,-0.2928 -0.127,-0.68438 0,-0.38806 0.127,-0.67734 0.127,-0.28928 0.384528,-0.45155 0.261056,-0.16228 0.656167,-0.16228 0.377472,0 0.635,0.16228 0.257527,0.15875 0.388055,0.45155 0.134056,0.28928 0.134056,0.68086 z m -1.989667,0 q 0,0.47625 0.201084,0.75142 0.201083,0.27164 0.627944,0.27164 0.430389,0 0.627944,-0.27164 0.197556,-0.27517 0.197556,-0.75142 0,-0.47625 -0.197556,-0.74436 -0.197555,-0.27164 -0.624416,-0.27164 -0.426861,0 -0.631472,0.27164 -0.201084,0.26811 -0.201084,0.74436 z" id="path3662" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 77.495233,106.82077 q 0.493888,0 0.719666,0.19403 0.225778,0.19403 0.225778,0.54681 0,0.20814 -0.09525,0.39158 -0.09172,0.17992 -0.313972,0.29281 -0.218722,0.11289 -0.596195,0.11289 h -0.289277 v 0.98072 h -0.3175 v -2.51884 z m -0.02822,0.27164 h -0.321027 v 0.99484 h 0.254 q 0.359833,0 0.536222,-0.11642 0.176389,-0.11642 0.176389,-0.39511 0,-0.24342 -0.155223,-0.36336 -0.155222,-0.11995 -0.490361,-0.11995 z" id="path3664" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 80.153303,108.8175 q 0,0.27516 -0.204611,0.41627 -0.204611,0.14112 -0.550334,0.14112 -0.197555,0 -0.342194,-0.0317 -0.141111,-0.0318 -0.250472,-0.0882 v -0.28222 q 0.112889,0.0564 0.271639,0.10583 0.162277,0.0459 0.328083,0.0459 0.236361,0 0.342194,-0.0741 0.105834,-0.0776 0.105834,-0.20461 0,-0.0706 -0.03881,-0.127 -0.0388,-0.0564 -0.141111,-0.11289 -0.09878,-0.0564 -0.28575,-0.127 -0.183444,-0.0706 -0.313972,-0.14111 -0.130528,-0.0706 -0.201083,-0.16933 -0.07056,-0.0988 -0.07056,-0.254 0,-0.23989 0.194028,-0.37042 0.197555,-0.13053 0.515055,-0.13053 0.172861,0 0.321028,0.0353 0.151695,0.0318 0.282222,0.0917 l -0.105833,0.24695 q -0.119944,-0.0494 -0.250472,-0.0847 -0.130528,-0.0353 -0.268111,-0.0353 -0.1905,0 -0.292806,0.0635 -0.09878,0.06 -0.09878,0.16581 0,0.0776 0.04586,0.13405 0.04586,0.0529 0.151695,0.10584 0.109361,0.0494 0.289278,0.11994 0.179916,0.067 0.306916,0.13758 0.127,0.0706 0.194028,0.17286 0.06703,0.0988 0.06703,0.25048 z" id="path3666" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="M 85.989586,48.291664 H 127.00004 V 58.874996 H 85.989586 Z" id="rect1956" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="Branch Order Buffer(48 entries)" id="text1962" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 89.875076,49.489223 h 0.719667 q 0.472722,0 0.712611,0.141111 0.243416,0.137584 0.243416,0.483306 0,0.22225 -0.123472,0.370417 -0.123472,0.144639 -0.356305,0.186972 v 0.01764 q 0.15875,0.02469 0.28575,0.09172 0.130527,0.06703 0.204611,0.1905 0.07408,0.123472 0.07408,0.321028 0,0.342194 -0.236361,0.529166 -0.232833,0.186973 -0.638528,0.186973 h -0.885472 z m 0.3175,1.072445 h 0.465667 q 0.324555,0 0.4445,-0.102306 0.119944,-0.105833 0.119944,-0.310444 0,-0.208139 -0.148167,-0.296334 -0.144639,-0.09172 -0.465666,-0.09172 h -0.416278 z m 0,0.264583 v 0.913695 h 0.508 q 0.335139,0 0.465667,-0.130528 0.130527,-0.130528 0.130527,-0.342195 0,-0.197555 -0.137583,-0.3175 -0.134056,-0.123472 -0.483306,-0.123472 z" id="path3670" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 93.009121,50.08189 q 0.05292,0 0.112888,0.0071 0.0635,0.0035 0.109362,0.01411 l -0.03881,0.28575 q -0.04586,-0.01058 -0.102305,-0.01764 -0.05292,-0.0071 -0.102306,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008945 h -0.310445 v -1.890889 h 0.254 l 0.03528,0.345722 h 0.01411 q 0.09172,-0.155222 0.236361,-0.268111 0.144639,-0.112889 0.342195,-0.112889 z" id="path3672" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 94.228243,50.085418 q 0.345723,0 0.511528,0.151694 0.165806,0.151695 0.165806,0.483306 v 1.287639 h -0.225778 l -0.05997,-0.268111 h -0.01411 q -0.123473,0.155222 -0.261056,0.229305 -0.134056,0.07408 -0.373944,0.07408 -0.257528,0 -0.426862,-0.134055 -0.169333,-0.137583 -0.169333,-0.426861 0,-0.282222 0.22225,-0.433917 0.22225,-0.155222 0.684389,-0.169333 l 0.321028,-0.01058 v -0.112888 q 0,-0.236362 -0.102306,-0.328084 -0.102305,-0.09172 -0.289278,-0.09172 -0.148166,0 -0.282222,0.04586 -0.134055,0.04233 -0.250472,0.09878 l -0.09525,-0.232833 q 0.123472,-0.06703 0.292806,-0.112889 0.169333,-0.04939 0.352777,-0.04939 z m 0.370417,0.998361 -0.278694,0.01058 q -0.352778,0.01411 -0.490362,0.112889 -0.134055,0.09878 -0.134055,0.278695 0,0.15875 0.09525,0.232833 0.09878,0.07408 0.250472,0.07408 0.239889,0 0.398639,-0.130528 0.15875,-0.134055 0.15875,-0.409222 z" id="path3674" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 96.399756,50.08189 q 0.338666,0 0.511528,0.165806 0.172861,0.162277 0.172861,0.529166 v 1.231195 h -0.306917 v -1.210028 q 0,-0.455083 -0.423333,-0.455083 -0.313973,0 -0.433917,0.176388 -0.119944,0.176389 -0.119944,0.508 v 0.980723 h -0.310445 v -1.890889 h 0.250472 l 0.04586,0.257528 h 0.01764 q 0.09172,-0.148167 0.254,-0.218723 0.162278,-0.07408 0.342195,-0.07408 z" id="path3676" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 98.425362,52.043334 q -0.250472,0 -0.448028,-0.102305 -0.194028,-0.102306 -0.306917,-0.3175 -0.109361,-0.215195 -0.109361,-0.550333 0,-0.34925 0.116417,-0.567973 0.116417,-0.218722 0.313972,-0.321027 0.201083,-0.102306 0.455083,-0.102306 0.144639,0 0.278695,0.03175 0.134055,0.02822 0.218722,0.07056 l -0.09525,0.257527 q -0.08467,-0.03175 -0.197555,-0.05997 -0.112889,-0.02822 -0.211667,-0.02822 -0.557389,0 -0.557389,0.716139 0,0.342194 0.134056,0.525639 0.137583,0.179916 0.405694,0.179916 0.155222,0 0.271639,-0.03175 0.119944,-0.03175 0.218722,-0.07761 v 0.275167 q -0.09525,0.04939 -0.211667,0.07408 -0.112888,0.02822 -0.275166,0.02822 z" id="path3678" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 99.672321,49.326946 v 0.786694 q 0,0.141111 -0.01764,0.264583 h 0.02117 q 0.09172,-0.144639 0.246944,-0.218722 0.158747,-0.07408 0.342197,-0.07408 0.34572,0 0.51858,0.165805 0.17286,0.162278 0.17286,0.525639 v 1.231195 h -0.30691 v -1.210028 q 0,-0.455083 -0.42334,-0.455083 -0.317498,0 -0.437443,0.179916 -0.116416,0.176389 -0.116416,0.508 v 0.977195 h -0.310445 v -2.681111 z" id="path3680" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 104.69571,50.745112 q 0,0.391584 -0.13405,0.684389 -0.13053,0.289278 -0.38806,0.451556 -0.25753,0.162277 -0.63853,0.162277 -0.39158,0 -0.65264,-0.162277 -0.25752,-0.162278 -0.38452,-0.455084 -0.127,-0.292805 -0.127,-0.684389 0,-0.388055 0.127,-0.677333 0.127,-0.289278 0.38452,-0.451555 0.26106,-0.162278 0.65617,-0.162278 0.37747,0 0.635,0.162278 0.25753,0.15875 0.38806,0.451555 0.13405,0.289278 0.13405,0.680861 z m -1.98967,0 q 0,0.47625 0.20109,0.751417 0.20108,0.271639 0.62794,0.271639 0.43039,0 0.62795,-0.271639 0.19755,-0.275167 0.19755,-0.751417 0,-0.47625 -0.19755,-0.744361 -0.19756,-0.271639 -0.62442,-0.271639 -0.42686,0 -0.63147,0.271639 -0.20109,0.268111 -0.20109,0.744361 z" id="path3682" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 106.09359,50.08189 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31044 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path3684" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 107.26685,52.043334 q -0.35277,0 -0.56444,-0.243416 -0.21167,-0.246945 -0.21167,-0.733778 0,-0.486833 0.21167,-0.733778 0.21519,-0.250472 0.56797,-0.250472 0.21872,0 0.35631,0.08114 0.14111,0.08114 0.2293,0.197555 h 0.0212 q -0.004,-0.04586 -0.0141,-0.134055 -0.007,-0.09172 -0.007,-0.144639 v -0.754944 h 0.31045 v 2.681111 h -0.25047 l -0.0459,-0.254 h -0.0141 q -0.0847,0.119944 -0.22577,0.204611 -0.14112,0.08467 -0.36337,0.08467 z m 0.0494,-0.257527 q 0.29986,0 0.41981,-0.162278 0.12347,-0.165806 0.12347,-0.497417 v -0.05644 q 0,-0.352778 -0.11642,-0.53975 -0.11641,-0.1905 -0.43038,-0.1905 -0.25048,0 -0.37748,0.201083 -0.12347,0.197556 -0.12347,0.532695 0,0.338666 0.12347,0.525638 0.127,0.186973 0.381,0.186973 z" id="path3686" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 109.49724,50.08189 q 0.24341,0 0.41627,0.105833 0.17639,0.105834 0.26812,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490362 0.15875,0.165805 0.44097,0.165805 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218722 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.2928,-0.342195 0.1905,-0.119944 0.44098,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3688" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 111.6402,50.08189 q 0.0529,0 0.11288,0.0071 0.0635,0.0035 0.10937,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31045 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.3422,-0.112889 z" id="path3690" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 113.17081,49.489223 h 0.71967 q 0.47272,0 0.71261,0.141111 0.24341,0.137584 0.24341,0.483306 0,0.22225 -0.12347,0.370417 -0.12347,0.144639 -0.3563,0.186972 v 0.01764 q 0.15875,0.02469 0.28575,0.09172 0.13052,0.06703 0.20461,0.1905 0.0741,0.123472 0.0741,0.321028 0,0.342194 -0.23636,0.529166 -0.23283,0.186973 -0.63853,0.186973 h -0.88547 z m 0.3175,1.072445 h 0.46567 q 0.32455,0 0.4445,-0.102306 0.11994,-0.105833 0.11994,-0.310444 0,-0.208139 -0.14817,-0.296334 -0.14463,-0.09172 -0.46566,-0.09172 h -0.41628 z m 0,0.264583 v 0.913695 h 0.508 q 0.33514,0 0.46567,-0.130528 0.13052,-0.130528 0.13052,-0.342195 0,-0.197555 -0.13758,-0.3175 -0.13405,-0.123472 -0.4833,-0.123472 z" id="path3692" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 117.00335,50.117168 v 1.890889 h -0.25399 l -0.0459,-0.250473 h -0.0141 q -0.0917,0.148167 -0.254,0.218723 -0.16227,0.06703 -0.34572,0.06703 -0.34219,0 -0.51505,-0.162277 -0.17287,-0.165806 -0.17287,-0.525639 v -1.23825 h 0.31398 v 1.217083 q 0,0.451556 0.4198,0.451556 0.31397,0 0.43392,-0.176389 0.12347,-0.176389 0.12347,-0.508 v -0.98425 z" id="path3694" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 118.47157,50.357057 h -0.47625 v 1.651 h -0.31044 v -1.651 h -0.33161 v -0.144639 l 0.33161,-0.105834 v -0.109361 q 0,-0.366889 0.16228,-0.525639 0.16227,-0.162277 0.45155,-0.162277 0.11289,0 0.20461,0.02117 0.0952,0.01764 0.16228,0.04233 l -0.0811,0.243416 q -0.0564,-0.01764 -0.13053,-0.03528 -0.0741,-0.01764 -0.15169,-0.01764 -0.15522,0 -0.23283,0.105833 -0.0741,0.102306 -0.0741,0.324556 v 0.123472 h 0.47625 z m 1.21356,0 h -0.47625 v 1.651 h -0.31045 v -1.651 h -0.33161 v -0.144639 l 0.33161,-0.105834 v -0.109361 q 0,-0.366889 0.16228,-0.525639 0.16228,-0.162277 0.45156,-0.162277 0.11289,0 0.20461,0.02117 0.0952,0.01764 0.16228,0.04233 l -0.0811,0.243416 q -0.0564,-0.01764 -0.13053,-0.03528 -0.0741,-0.01764 -0.15169,-0.01764 -0.15523,0 -0.23284,0.105833 -0.0741,0.102306 -0.0741,0.324556 v 0.123472 h 0.47625 z" id="path3696" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 120.75581,50.08189 q 0.24342,0 0.41628,0.105833 0.17639,0.105834 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490362 0.15875,0.165805 0.44097,0.165805 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11288,-0.218722 -0.11288,-0.532695 0,-0.310444 0.1023,-0.532694 0.10583,-0.22225 0.29281,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3698" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 122.89877,50.08189 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.1023,-0.01764 -0.0529,-0.0071 -0.10231,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31045 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.3422,-0.112889 z" id="path3700" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 97.211861,56.333113 q 0,-0.430388 0.123473,-0.829027 0.127,-0.402167 0.395111,-0.723195 h 0.292805 q -0.246944,0.331611 -0.373944,0.73025 -0.123472,0.398639 -0.123472,0.818445 0,0.409222 0.123472,0.804333 0.127,0.391583 0.370416,0.723194 h -0.289277 q -0.268111,-0.310444 -0.395111,-0.702027 -0.123473,-0.395111 -0.123473,-0.821973 z" id="path3702" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 100.07917,56.728225 h -0.366886 v 0.5715 h -0.299861 v -0.5715 h -1.2065 v -0.264584 l 1.185333,-1.696861 h 0.321028 v 1.68275 h 0.366886 z M 99.412423,56.44953 v -0.79375 q 0,-0.183444 0.0071,-0.310444 0.0071,-0.130528 0.01058,-0.246945 h -0.01411 q -0.02822,0.06703 -0.07056,0.144639 -0.04233,0.07761 -0.08114,0.130528 l -0.754944,1.075972 z" id="path3704" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 101.15608,54.745614 q 0.33161,0 0.54328,0.155222 0.21167,0.155222 0.21167,0.448028 0,0.151694 -0.067,0.264583 -0.0635,0.112889 -0.17286,0.201083 -0.10936,0.08467 -0.23989,0.151695 0.15522,0.07408 0.28222,0.169333 0.127,0.09172 0.20108,0.215194 0.0776,0.123473 0.0776,0.296334 0,0.3175 -0.22578,0.504472 -0.22225,0.183444 -0.59972,0.183444 -0.4057,0 -0.62442,-0.176389 -0.21872,-0.179916 -0.21872,-0.500944 0,-0.172861 0.0705,-0.299861 0.0741,-0.127 0.19403,-0.218722 0.11994,-0.09172 0.25753,-0.155222 -0.18345,-0.105834 -0.31397,-0.254 -0.127,-0.151695 -0.127,-0.384528 0,-0.194028 0.0988,-0.324556 0.0988,-0.134055 0.26811,-0.204611 0.16934,-0.07055 0.38453,-0.07055 z m -0.004,0.250472 q -0.19402,0 -0.32102,0.09525 -0.12348,0.09172 -0.12348,0.268111 0,0.130528 0.06,0.218722 0.0635,0.08819 0.16933,0.151695 0.10583,0.05997 0.23283,0.116416 0.18345,-0.07761 0.30692,-0.186972 0.127,-0.109361 0.127,-0.299861 0,-0.176389 -0.12347,-0.268111 -0.12347,-0.09525 -0.32809,-0.09525 z m -0.52563,1.665111 q 0,0.183444 0.13052,0.306916 0.13053,0.119945 0.40217,0.119945 0.25753,0 0.39158,-0.119945 0.13759,-0.123472 0.13759,-0.3175 0,-0.183444 -0.14464,-0.303388 -0.14464,-0.123473 -0.38453,-0.215195 l -0.0564,-0.02117 q -0.23284,0.09878 -0.35631,0.229305 -0.11994,0.127 -0.11994,0.321028 z" id="path3706" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 104.116,55.373558 q 0.24341,0 0.41628,0.105833 0.17638,0.105834 0.26811,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218723 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.29281,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3708" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 106.28718,55.373558 q 0.33867,0 0.51153,0.165806 0.17286,0.162277 0.17286,0.529166 v 1.231195 h -0.30692 v -1.210028 q 0,-0.455083 -0.42333,-0.455083 -0.31397,0 -0.43392,0.176388 -0.11994,0.176389 -0.11994,0.508 v 0.980723 h -0.31045 v -1.890889 h 0.25048 l 0.0459,0.257528 h 0.0176 q 0.0917,-0.148167 0.254,-0.218723 0.16227,-0.07408 0.34219,-0.07408 z" id="path3710" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 108.18579,57.081002 q 0.0705,0 0.14463,-0.01058 0.0741,-0.01411 0.11995,-0.02822 v 0.236361 q -0.0494,0.02469 -0.14111,0.03881 -0.0917,0.01764 -0.17639,0.01764 -0.14817,0 -0.27517,-0.04939 -0.12347,-0.05292 -0.20108,-0.179916 -0.0776,-0.127 -0.0776,-0.356306 v -1.100666 h -0.26811 v -0.148167 l 0.27164,-0.123472 0.12347,-0.402167 h 0.18344 v 0.433917 h 0.54681 v 0.239889 h -0.54681 v 1.093611 q 0,0.172861 0.0811,0.257527 0.0847,0.08114 0.2152,0.08114 z" id="path3712" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 109.71094,55.373558 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 H 108.829 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path3714" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 110.44158,54.699752 q 0.0705,0 0.12347,0.04939 0.0564,0.04586 0.0564,0.148167 0,0.09878 -0.0564,0.148167 -0.0529,0.04939 -0.12347,0.04939 -0.0776,0 -0.13053,-0.04939 -0.0529,-0.04939 -0.0529,-0.148167 0,-0.102306 0.0529,-0.148167 0.0529,-0.04939 0.13053,-0.04939 z m 0.15169,0.709084 v 1.890889 h -0.31044 v -1.890889 z" id="path3716" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 111.92258,55.373558 q 0.24342,0 0.41628,0.105833 0.17639,0.105834 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218723 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.2928,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.1517,0.395111 h 0.96309 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3718" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 114.41479,56.777613 q 0,0.275167 -0.20461,0.416278 -0.20461,0.141111 -0.55033,0.141111 -0.19756,0 -0.34219,-0.03175 -0.14112,-0.03175 -0.25048,-0.08819 v -0.282222 q 0.11289,0.05644 0.27164,0.105833 0.16228,0.04586 0.32809,0.04586 0.23636,0 0.34219,-0.07408 0.10583,-0.07761 0.10583,-0.204611 0,-0.07056 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05645 -0.28575,-0.127 -0.18345,-0.07056 -0.31398,-0.141111 -0.13052,-0.07056 -0.20108,-0.169334 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239888 0.19402,-0.370416 0.19756,-0.130528 0.51506,-0.130528 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246944 q -0.11995,-0.04939 -0.25048,-0.08467 -0.13052,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.2928,0.0635 -0.0988,0.05997 -0.0988,0.165806 0,0.07761 0.0459,0.134055 0.0459,0.05292 0.15169,0.105833 0.10937,0.04939 0.28928,0.119945 0.17992,0.06703 0.30692,0.137583 0.127,0.07056 0.19403,0.172861 0.067,0.09878 0.067,0.250472 z" id="path3720" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 115.48906,56.333113 q 0,0.426862 -0.127,0.821973 -0.12347,0.391583 -0.39159,0.702027 h -0.28927 q 0.24341,-0.331611 0.36689,-0.723194 0.127,-0.395111 0.127,-0.804333 0,-0.419806 -0.127,-0.818445 -0.12348,-0.398639 -0.37042,-0.73025 h 0.2928 q 0.26812,0.321028 0.39159,0.723195 0.127,0.398639 0.127,0.829027 z" id="path3722" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+</g>
+<path d="M 85.989586,62.84375 H 127.00004 V 73.427082 H 85.989586 Z" id="rect1968" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="Re-order Buffer(224 entries)" id="text1974" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 94.531908,64.041309 q 0.469194,0 0.691444,0.179917 0.225778,0.176389 0.225778,0.536222 0,0.201083 -0.07408,0.335139 -0.07408,0.134056 -0.1905,0.215194 -0.112889,0.07761 -0.239889,0.123473 l 0.691444,1.128889 H 95.265686 L 94.65538,65.519448 h -0.500944 v 1.040695 h -0.3175 v -2.518834 z m -0.01764,0.275167 h -0.359833 v 0.934861 h 0.377472 q 0.306916,0 0.448028,-0.119944 0.141111,-0.123473 0.141111,-0.359834 0,-0.246944 -0.148167,-0.34925 -0.148167,-0.105833 -0.458611,-0.105833 z" id="path3726" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 96.715933,64.633976 q 0.243416,0 0.416278,0.105833 0.176388,0.105834 0.268111,0.299861 0.09525,0.1905 0.09525,0.448028 v 0.186972 h -1.294695 q 0.0071,0.321028 0.162278,0.490361 0.15875,0.165806 0.440972,0.165806 0.179917,0 0.3175,-0.03175 0.141111,-0.03528 0.289278,-0.09878 v 0.271639 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335139,0.03175 -0.268111,0 -0.47625,-0.109361 -0.204611,-0.109361 -0.321028,-0.324555 -0.112888,-0.218723 -0.112888,-0.532695 0,-0.310444 0.102305,-0.532694 0.105833,-0.22225 0.292806,-0.342195 0.1905,-0.119944 0.440972,-0.119944 z m -0.0035,0.254 q -0.22225,0 -0.352778,0.144639 -0.127,0.141111 -0.151694,0.395111 h 0.963083 q -0.0035,-0.239889 -0.112889,-0.388056 -0.109361,-0.151694 -0.345722,-0.151694 z" id="path3728" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 97.818198,65.752281 v -0.275166 h 0.853722 v 0.275166 z" id="path3730" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 100.75777,65.61117 q 0,0.469195 -0.23988,0.726723 -0.23637,0.257527 -0.642061,0.257527 -0.250472,0 -0.448027,-0.112889 -0.194028,-0.116416 -0.306917,-0.335138 -0.112889,-0.22225 -0.112889,-0.536223 0,-0.469194 0.236361,-0.723194 0.236361,-0.254 0.642056,-0.254 0.257527,0 0.451557,0.116417 0.19755,0.112888 0.30692,0.331611 0.11288,0.215194 0.11288,0.529166 z m -1.428746,0 q 0,0.335139 0.130528,0.532695 0.134055,0.194028 0.423333,0.194028 0.285755,0 0.419805,-0.194028 0.13406,-0.197556 0.13406,-0.532695 0,-0.335139 -0.13406,-0.525639 -0.13405,-0.1905 -0.423333,-0.1905 -0.289278,0 -0.419805,0.1905 -0.130528,0.1905 -0.130528,0.525639 z" id="path3732" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 102.13173,64.633976 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31044 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path3734" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 103.30499,66.59542 q -0.35277,0 -0.56444,-0.243416 -0.21167,-0.246945 -0.21167,-0.733778 0,-0.486833 0.21167,-0.733778 0.21519,-0.250472 0.56797,-0.250472 0.21872,0 0.35631,0.08114 0.14111,0.08114 0.2293,0.197555 h 0.0212 q -0.004,-0.04586 -0.0141,-0.134055 -0.007,-0.09172 -0.007,-0.144639 v -0.754945 h 0.31045 v 2.681112 h -0.25047 l -0.0459,-0.254 h -0.0141 q -0.0847,0.119944 -0.22577,0.204611 -0.14112,0.08467 -0.36337,0.08467 z m 0.0494,-0.257527 q 0.29986,0 0.41981,-0.162278 0.12347,-0.165806 0.12347,-0.497417 v -0.05644 q 0,-0.352778 -0.11642,-0.53975 -0.11641,-0.1905 -0.43038,-0.1905 -0.25048,0 -0.37748,0.201083 -0.12347,0.197556 -0.12347,0.532694 0,0.338667 0.12347,0.525639 0.127,0.186973 0.381,0.186973 z" id="path3736" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 105.53538,64.633976 q 0.24341,0 0.41627,0.105833 0.17639,0.105834 0.26812,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218723 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.2928,-0.342195 0.1905,-0.119944 0.44098,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3738" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 107.67834,64.633976 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.1023,-0.01764 -0.0529,-0.0071 -0.10231,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31045 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.3422,-0.112889 z" id="path3740" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 109.20895,64.041309 h 0.71967 q 0.47272,0 0.71261,0.141111 0.24342,0.137584 0.24342,0.483306 0,0.22225 -0.12348,0.370417 -0.12347,0.144638 -0.3563,0.186972 v 0.01764 q 0.15875,0.02469 0.28575,0.09172 0.13053,0.06703 0.20461,0.1905 0.0741,0.123472 0.0741,0.321028 0,0.342194 -0.23636,0.529166 -0.23283,0.186973 -0.63853,0.186973 h -0.88547 z m 0.3175,1.072445 h 0.46567 q 0.32455,0 0.4445,-0.102306 0.11994,-0.105833 0.11994,-0.310444 0,-0.208139 -0.14816,-0.296334 -0.14464,-0.09172 -0.46567,-0.09172 h -0.41628 z m 0,0.264583 v 0.913694 h 0.508 q 0.33514,0 0.46567,-0.130527 0.13053,-0.130528 0.13053,-0.342195 0,-0.197555 -0.13759,-0.3175 -0.13405,-0.123472 -0.4833,-0.123472 z" id="path3742" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 113.0415,64.669254 v 1.890889 h -0.254 l -0.0459,-0.250473 h -0.0141 q -0.0917,0.148167 -0.254,0.218723 -0.16227,0.06703 -0.34572,0.06703 -0.34219,0 -0.51505,-0.162277 -0.17287,-0.165806 -0.17287,-0.525639 v -1.23825 h 0.31398 v 1.217083 q 0,0.451556 0.4198,0.451556 0.31397,0 0.43392,-0.176389 0.12347,-0.176389 0.12347,-0.508 v -0.98425 z" id="path3744" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 114.50971,64.909143 h -0.47625 v 1.651 h -0.31044 v -1.651 h -0.33161 v -0.144639 l 0.33161,-0.105834 v -0.109361 q 0,-0.366889 0.16228,-0.525639 0.16227,-0.162277 0.45155,-0.162277 0.11289,0 0.20461,0.02117 0.0952,0.01764 0.16228,0.04233 l -0.0811,0.243416 q -0.0564,-0.01764 -0.13053,-0.03528 -0.0741,-0.01764 -0.15169,-0.01764 -0.15522,0 -0.23283,0.105833 -0.0741,0.102305 -0.0741,0.324555 v 0.123473 h 0.47625 z m 1.21356,0 h -0.47625 v 1.651 h -0.31045 v -1.651 h -0.33161 v -0.144639 l 0.33161,-0.105834 v -0.109361 q 0,-0.366889 0.16228,-0.525639 0.16228,-0.162277 0.45156,-0.162277 0.11289,0 0.20461,0.02117 0.0952,0.01764 0.16228,0.04233 l -0.0811,0.243416 q -0.0565,-0.01764 -0.13053,-0.03528 -0.0741,-0.01764 -0.15169,-0.01764 -0.15523,0 -0.23284,0.105833 -0.0741,0.102305 -0.0741,0.324555 v 0.123473 h 0.47625 z" id="path3746" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 116.79395,64.633976 q 0.24342,0 0.41628,0.105833 0.17639,0.105834 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11288,-0.218723 -0.11288,-0.532695 0,-0.310444 0.1023,-0.532694 0.10583,-0.22225 0.29281,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3748" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 118.93691,64.633976 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.1023,-0.01764 -0.0529,-0.0071 -0.10231,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31045 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.3422,-0.112889 z" id="path3750" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 96.202448,70.885196 q 0,-0.430389 0.123473,-0.829028 0.127,-0.402167 0.395111,-0.723195 h 0.292805 q -0.246944,0.331611 -0.373944,0.73025 -0.123472,0.398639 -0.123472,0.818445 0,0.409222 0.123472,0.804333 0.127,0.391583 0.370416,0.723195 h -0.289277 q -0.268111,-0.310445 -0.395111,-0.702028 -0.123473,-0.395111 -0.123473,-0.821972 z" id="path3752" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="M 98.956871,71.851807 H 97.29176 v -0.257528 l 0.659694,-0.66675 q 0.1905,-0.1905 0.321028,-0.338667 0.130528,-0.148166 0.197556,-0.289278 0.06703,-0.144638 0.06703,-0.313972 0,-0.208139 -0.123472,-0.313972 -0.123472,-0.109361 -0.321027,-0.109361 -0.183445,0 -0.324556,0.0635 -0.137583,0.0635 -0.282222,0.176389 l -0.165806,-0.208139 q 0.148167,-0.123472 0.338667,-0.208139 0.194028,-0.08819 0.433917,-0.08819 0.352777,0 0.557388,0.179916 0.204611,0.176389 0.204611,0.490361 0,0.197556 -0.08114,0.370417 -0.08114,0.172861 -0.225778,0.342194 -0.144639,0.165806 -0.338667,0.356306 l -0.525639,0.518583 v 0.01411 h 1.273528 z" id="path3754" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 100.9757,71.851807 h -1.665114 v -0.257528 l 0.659695,-0.66675 q 0.190499,-0.1905 0.321029,-0.338667 0.13053,-0.148166 0.19755,-0.289278 0.067,-0.144638 0.067,-0.313972 0,-0.208139 -0.12347,-0.313972 -0.12347,-0.109361 -0.32103,-0.109361 -0.183443,0 -0.324554,0.0635 -0.137583,0.0635 -0.282222,0.176389 l -0.165806,-0.208139 q 0.148167,-0.123472 0.338667,-0.208139 0.194028,-0.08819 0.433915,-0.08819 0.35278,0 0.55739,0.179916 0.20461,0.176389 0.20461,0.490361 0,0.197556 -0.0811,0.370417 -0.0811,0.172861 -0.22578,0.342194 -0.14463,0.165806 -0.33866,0.356306 l -0.525641,0.518583 v 0.01411 h 1.273531 z" id="path3756" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 103.10741,71.280307 h -0.36689 v 0.5715 h -0.29986 v -0.5715 h -1.2065 v -0.264584 l 1.18534,-1.696861 h 0.32102 v 1.68275 h 0.36689 z m -0.66675,-0.278695 v -0.79375 q 0,-0.183444 0.007,-0.310444 0.007,-0.130528 0.0106,-0.246945 h -0.0141 q -0.0282,0.06703 -0.0706,0.144639 -0.0423,0.07761 -0.0811,0.130528 l -0.75495,1.075972 z" id="path3758" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 105.12541,69.92564 q 0.24342,0 0.41628,0.105833 0.17639,0.105834 0.26811,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16227,0.490362 0.15875,0.165805 0.44098,0.165805 0.17991,0 0.3175,-0.03175 0.14111,-0.03528 0.28927,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32102,-0.324555 -0.11289,-0.218722 -0.11289,-0.532695 0,-0.310444 0.1023,-0.532694 0.10584,-0.22225 0.29281,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35277,0.144639 -0.127,0.141111 -0.1517,0.395111 h 0.96308 q -0.004,-0.239889 -0.11288,-0.388056 -0.10937,-0.151694 -0.34573,-0.151694 z" id="path3760" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 107.29659,69.92564 q 0.33867,0 0.51153,0.165806 0.17286,0.162277 0.17286,0.529166 v 1.231195 h -0.30692 v -1.210028 q 0,-0.455083 -0.42333,-0.455083 -0.31397,0 -0.43392,0.176388 -0.11994,0.176389 -0.11994,0.508 v 0.980723 h -0.31044 v -1.890889 h 0.25047 l 0.0459,0.257528 h 0.0176 q 0.0917,-0.148167 0.254,-0.218723 0.16228,-0.07408 0.34219,-0.07408 z" id="path3762" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 109.1952,71.633084 q 0.0705,0 0.14464,-0.01058 0.0741,-0.01411 0.11994,-0.02822 v 0.236361 q -0.0494,0.02469 -0.14111,0.03881 -0.0917,0.01764 -0.17639,0.01764 -0.14816,0 -0.27516,-0.04939 -0.12348,-0.05292 -0.20109,-0.179917 -0.0776,-0.127 -0.0776,-0.356306 v -1.100666 h -0.26811 V 70.05264 l 0.27164,-0.123472 0.12347,-0.402167 h 0.18345 v 0.433917 h 0.5468 v 0.239889 h -0.5468 v 1.093611 q 0,0.172861 0.0811,0.257528 0.0847,0.08114 0.2152,0.08114 z" id="path3764" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 110.72036,69.92564 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.1023,-0.01764 -0.0529,-0.0071 -0.10231,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31045 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.3422,-0.112889 z" id="path3766" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 111.45099,69.251834 q 0.0706,0 0.12347,0.04939 0.0564,0.04586 0.0564,0.148167 0,0.09878 -0.0564,0.148167 -0.0529,0.04939 -0.12347,0.04939 -0.0776,0 -0.13053,-0.04939 -0.0529,-0.04939 -0.0529,-0.148167 0,-0.102306 0.0529,-0.148167 0.0529,-0.04939 0.13053,-0.04939 z m 0.1517,0.709084 v 1.890889 h -0.31045 v -1.890889 z" id="path3768" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 112.932,69.92564 q 0.24341,0 0.41627,0.105833 0.17639,0.105834 0.26812,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490362 0.15875,0.165805 0.44097,0.165805 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218722 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.2928,-0.342195 0.1905,-0.119944 0.44098,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path3770" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 115.42421,71.329696 q 0,0.275166 -0.20461,0.416277 -0.20462,0.141111 -0.55034,0.141111 -0.19755,0 -0.34219,-0.03175 -0.14111,-0.03175 -0.25047,-0.08819 v -0.282222 q 0.11288,0.05644 0.27163,0.105833 0.16228,0.04586 0.32809,0.04586 0.23636,0 0.34219,-0.07408 0.10584,-0.07761 0.10584,-0.204611 0,-0.07056 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05645 -0.28575,-0.127 -0.18345,-0.07056 -0.31397,-0.141111 -0.13053,-0.07056 -0.20109,-0.169334 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239888 0.19403,-0.370416 0.19755,-0.130528 0.51505,-0.130528 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246944 q -0.11995,-0.04939 -0.25047,-0.08467 -0.13053,-0.03528 -0.26812,-0.03528 -0.1905,0 -0.2928,0.0635 -0.0988,0.05997 -0.0988,0.165806 0,0.07761 0.0459,0.134055 0.0459,0.05292 0.1517,0.105833 0.10936,0.04939 0.28927,0.119945 0.17992,0.06703 0.30692,0.137583 0.127,0.07056 0.19403,0.172861 0.067,0.09878 0.067,0.250473 z" id="path3772" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 116.49847,70.885196 q 0,0.426861 -0.127,0.821972 -0.12347,0.391583 -0.39158,0.702028 h -0.28928 q 0.24342,-0.331612 0.36689,-0.723195 0.127,-0.395111 0.127,-0.804333 0,-0.419806 -0.127,-0.818445 -0.12347,-0.398639 -0.37042,-0.73025 h 0.29281 q 0.26811,0.321028 0.39158,0.723195 0.127,0.398639 0.127,0.829028 z" id="path3774" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+</g>
+<g aria-label="branches" id="text1930" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 70.042293,51.563686 v 0.652639 q 0,0.119944 -0.0071,0.225777 -0.0035,0.102306 -0.01058,0.162278 h 0.01764 q 0.08114,-0.119944 0.22225,-0.201083 0.141111,-0.08114 0.363361,-0.08114 0.352778,0 0.564445,0.246944 0.215194,0.243417 0.215194,0.73025 0,0.486834 -0.215194,0.733778 -0.215195,0.246945 -0.564445,0.246945 -0.22225,0 -0.363361,-0.08114 -0.141111,-0.08114 -0.22225,-0.194028 h -0.02469 l -0.0635,0.239889 h -0.22225 v -2.681111 z m 0.532695,1.016 q -0.299862,0 -0.416278,0.172861 -0.116417,0.172861 -0.116417,0.536222 v 0.01411 q 0,0.34925 0.112889,0.536222 0.116417,0.183445 0.426861,0.183445 0.254,0 0.377472,-0.186972 0.127,-0.186973 0.127,-0.53975 0,-0.716139 -0.511527,-0.716139 z" id="path3777" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 72.784203,52.31863 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.0388,0.28575 q -0.04586,-0.01058 -0.102306,-0.01764 -0.05292,-0.0071 -0.102305,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008945 h -0.310444 v -1.890889 h 0.254 l 0.03528,0.345722 h 0.01411 q 0.09172,-0.155222 0.236361,-0.268111 0.144639,-0.112889 0.342194,-0.112889 z" id="path3779" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 74.003326,52.322158 q 0.345722,0 0.511528,0.151694 0.165805,0.151695 0.165805,0.483306 v 1.287639 h -0.225778 l -0.05997,-0.268111 h -0.01411 q -0.123472,0.155222 -0.261055,0.229305 -0.134056,0.07408 -0.373945,0.07408 -0.257528,0 -0.426861,-0.134056 -0.169333,-0.137583 -0.169333,-0.426861 0,-0.282222 0.22225,-0.433917 0.22225,-0.155222 0.684389,-0.169333 l 0.321027,-0.01058 v -0.112889 q 0,-0.236361 -0.102305,-0.328084 -0.102306,-0.09172 -0.289278,-0.09172 -0.148167,0 -0.282222,0.04586 -0.134056,0.04233 -0.250472,0.09878 l -0.09525,-0.232833 q 0.123472,-0.06703 0.292805,-0.112889 0.169333,-0.04939 0.352778,-0.04939 z m 0.370417,0.998361 -0.278695,0.01058 q -0.352778,0.01411 -0.490361,0.112889 -0.134056,0.09878 -0.134056,0.278695 0,0.15875 0.09525,0.232833 0.09878,0.07408 0.250473,0.07408 0.239889,0 0.398639,-0.130527 0.15875,-0.134056 0.15875,-0.409223 z" id="path3781" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 76.174838,52.31863 q 0.338667,0 0.511528,0.165806 0.172861,0.162277 0.172861,0.529166 v 1.231195 h -0.306916 v -1.210028 q 0,-0.455083 -0.423334,-0.455083 -0.313972,0 -0.433916,0.176389 -0.119945,0.176388 -0.119945,0.508 v 0.980722 h -0.310444 v -1.890889 h 0.250472 l 0.04586,0.257528 h 0.01764 q 0.09172,-0.148167 0.254,-0.218723 0.162278,-0.07408 0.342194,-0.07408 z" id="path3783" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 78.200444,54.280075 q -0.250472,0 -0.448027,-0.102306 -0.194028,-0.102306 -0.306917,-0.3175 -0.109361,-0.215194 -0.109361,-0.550333 0,-0.34925 0.116417,-0.567973 0.116416,-0.218722 0.313972,-0.321027 0.201083,-0.102306 0.455083,-0.102306 0.144639,0 0.278695,0.03175 0.134055,0.02822 0.218722,0.07056 l -0.09525,0.257527 q -0.08467,-0.03175 -0.197556,-0.05997 -0.112889,-0.02822 -0.211666,-0.02822 -0.557389,0 -0.557389,0.716139 0,0.342194 0.134055,0.525639 0.137584,0.179916 0.405695,0.179916 0.155222,0 0.271639,-0.03175 0.119944,-0.03175 0.218722,-0.07761 v 0.275167 q -0.09525,0.04939 -0.211667,0.07408 -0.112889,0.02822 -0.275167,0.02822 z" id="path3785" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 79.447403,51.563686 v 0.786694 q 0,0.141111 -0.01764,0.264583 h 0.02117 q 0.09172,-0.144638 0.246945,-0.218722 0.15875,-0.07408 0.342194,-0.07408 0.345722,0 0.518583,0.165805 0.172862,0.162278 0.172862,0.525639 v 1.231195 h -0.306917 v -1.210028 q 0,-0.455083 -0.423333,-0.455083 -0.3175,0 -0.437445,0.179916 -0.116417,0.176389 -0.116417,0.508 v 0.977195 h -0.310444 v -2.681111 z" id="path3787" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 82.044509,52.31863 q 0.243417,0 0.416278,0.105833 0.176389,0.105834 0.268111,0.299862 0.09525,0.1905 0.09525,0.448027 v 0.186973 h -1.294694 q 0.0071,0.321027 0.162278,0.490361 0.15875,0.165805 0.440972,0.165805 0.179917,0 0.3175,-0.03175 0.141111,-0.03528 0.289278,-0.09878 v 0.271639 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335139,0.03175 -0.268111,0 -0.47625,-0.109362 -0.204611,-0.109361 -0.321028,-0.324555 -0.112889,-0.218722 -0.112889,-0.532695 0,-0.310444 0.102306,-0.532694 0.105833,-0.22225 0.292805,-0.342194 0.1905,-0.119945 0.440972,-0.119945 z m -0.0035,0.254 q -0.22225,0 -0.352778,0.144639 -0.127,0.141111 -0.151695,0.395111 h 0.963084 q -0.0035,-0.239889 -0.112889,-0.388055 -0.109361,-0.151695 -0.345722,-0.151695 z" id="path3789" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 84.536719,53.722686 q 0,0.275166 -0.204611,0.416277 -0.204611,0.141112 -0.550333,0.141112 -0.197556,0 -0.342195,-0.03175 -0.141111,-0.03175 -0.250472,-0.08819 v -0.282222 q 0.112889,0.05644 0.271639,0.105833 0.162278,0.04586 0.328083,0.04586 0.236361,0 0.342195,-0.07408 0.105833,-0.07761 0.105833,-0.204611 0,-0.07056 -0.0388,-0.127 -0.03881,-0.05645 -0.141112,-0.112889 -0.09878,-0.05644 -0.28575,-0.127 -0.183444,-0.07056 -0.313972,-0.141111 -0.130528,-0.07056 -0.201083,-0.169333 -0.07056,-0.09878 -0.07056,-0.254 0,-0.239889 0.194028,-0.370417 0.197556,-0.130528 0.515056,-0.130528 0.172861,0 0.321027,0.03528 0.151695,0.03175 0.282223,0.09172 l -0.105834,0.246945 q -0.119944,-0.04939 -0.250472,-0.08467 -0.130528,-0.03528 -0.268111,-0.03528 -0.1905,0 -0.292806,0.0635 -0.09878,0.05997 -0.09878,0.165806 0,0.07761 0.04586,0.134055 0.04586,0.05292 0.151694,0.105834 0.109361,0.04939 0.289278,0.119944 0.179917,0.06703 0.306917,0.137583 0.127,0.07056 0.194027,0.172861 0.06703,0.09878 0.06703,0.250473 z" id="path3791" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="stores" id="text1926" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 73.150658,38.993178 q 0,0.275167 -0.204611,0.416278 -0.204611,0.141111 -0.550333,0.141111 -0.197556,0 -0.342195,-0.03175 -0.141111,-0.03175 -0.250472,-0.08819 V 39.1484 q 0.112889,0.05644 0.271639,0.105834 0.162278,0.04586 0.328083,0.04586 0.236362,0 0.342195,-0.07408 0.105833,-0.07761 0.105833,-0.204612 0,-0.07055 -0.0388,-0.127 -0.03881,-0.05644 -0.141111,-0.112888 -0.09878,-0.05644 -0.28575,-0.127 -0.183445,-0.07056 -0.313973,-0.141112 -0.130527,-0.07055 -0.201083,-0.169333 -0.07056,-0.09878 -0.07056,-0.254 0,-0.239889 0.194028,-0.370417 0.197556,-0.130527 0.515056,-0.130527 0.172861,0 0.321028,0.03528 0.151694,0.03175 0.282222,0.09172 l -0.105834,0.246944 q -0.119944,-0.04939 -0.250472,-0.08467 -0.130528,-0.03528 -0.268111,-0.03528 -0.1905,0 -0.292805,0.0635 -0.09878,0.05997 -0.09878,0.165805 0,0.07761 0.04586,0.134056 0.04586,0.05292 0.151694,0.105833 0.109361,0.04939 0.289278,0.119945 0.179917,0.06703 0.306917,0.137583 0.127,0.07055 0.194028,0.172861 0.06703,0.09878 0.06703,0.250472 z" id="path3794" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 74.239033,39.296567 q 0.07055,0 0.144639,-0.01058 0.07408,-0.01411 0.119944,-0.02822 v 0.236361 q -0.04939,0.02469 -0.141111,0.0388 -0.09172,0.01764 -0.176389,0.01764 -0.148166,0 -0.275166,-0.04939 -0.123473,-0.05292 -0.201084,-0.179916 -0.07761,-0.127 -0.07761,-0.356306 v -1.100667 h -0.268111 v -0.148166 l 0.271639,-0.123473 0.123472,-0.402166 H 73.9427 V 37.6244 h 0.546805 v 0.239889 H 73.9427 V 38.9579 q 0,0.172862 0.08114,0.257528 0.08467,0.08114 0.215195,0.08114 z" id="path3796" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 76.52619,38.566317 q 0,0.469195 -0.239889,0.726722 -0.236361,0.257528 -0.642055,0.257528 -0.250472,0 -0.448028,-0.112889 -0.194028,-0.116416 -0.306917,-0.335139 -0.112889,-0.22225 -0.112889,-0.536222 0,-0.469194 0.236362,-0.723194 0.236361,-0.254 0.642055,-0.254 0.257528,0 0.451556,0.116416 0.197555,0.112889 0.306916,0.331611 0.112889,0.215195 0.112889,0.529167 z m -1.42875,0 q 0,0.335139 0.130528,0.532695 0.134056,0.194027 0.423333,0.194027 0.28575,0 0.419806,-0.194027 0.134055,-0.197556 0.134055,-0.532695 0,-0.335139 -0.134055,-0.525639 -0.134056,-0.1905 -0.423333,-0.1905 -0.289278,0 -0.419806,0.1905 -0.130528,0.1905 -0.130528,0.525639 z" id="path3798" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 77.900149,37.589123 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.0388,0.28575 q -0.04586,-0.01058 -0.102306,-0.01764 -0.05292,-0.0071 -0.102305,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008944 H 77.018205 V 37.6244 h 0.254 l 0.03528,0.345723 h 0.01411 q 0.09172,-0.155223 0.236361,-0.268111 0.144639,-0.112889 0.342194,-0.112889 z" id="path3800" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 79.133383,37.589123 q 0.243417,0 0.416278,0.105833 0.176389,0.105833 0.268111,0.299861 0.09525,0.1905 0.09525,0.448028 v 0.186972 h -1.294694 q 0.0071,0.321028 0.162277,0.490361 0.15875,0.165806 0.440973,0.165806 0.179916,0 0.3175,-0.03175 0.141111,-0.03528 0.289277,-0.09878 v 0.271639 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335139,0.03175 -0.268111,0 -0.47625,-0.109361 Q 78.526605,39.331845 78.410189,39.11665 78.2973,38.897928 78.2973,38.583956 q 0,-0.310444 0.102305,-0.532694 0.105834,-0.22225 0.292806,-0.342195 0.1905,-0.119944 0.440972,-0.119944 z m -0.0035,0.254 q -0.22225,0 -0.352777,0.144639 -0.127,0.141111 -0.151695,0.395111 h 0.963083 q -0.0035,-0.239889 -0.112888,-0.388056 -0.109362,-0.151694 -0.345723,-0.151694 z" id="path3802" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 81.625593,38.993178 q 0,0.275167 -0.204611,0.416278 -0.204611,0.141111 -0.550334,0.141111 -0.197555,0 -0.342194,-0.03175 -0.141111,-0.03175 -0.250472,-0.08819 V 39.1484 q 0.112889,0.05644 0.271639,0.105834 0.162277,0.04586 0.328083,0.04586 0.236361,0 0.342194,-0.07408 0.105834,-0.07761 0.105834,-0.204612 0,-0.07055 -0.03881,-0.127 -0.0388,-0.05644 -0.141111,-0.112888 -0.09878,-0.05644 -0.28575,-0.127 -0.183444,-0.07056 -0.313972,-0.141112 -0.130528,-0.07055 -0.201083,-0.169333 -0.07056,-0.09878 -0.07056,-0.254 0,-0.239889 0.194028,-0.370417 0.197555,-0.130527 0.515055,-0.130527 0.172861,0 0.321028,0.03528 0.151695,0.03175 0.282222,0.09172 l -0.105833,0.246944 q -0.119944,-0.04939 -0.250472,-0.08467 -0.130528,-0.03528 -0.268111,-0.03528 -0.1905,0 -0.292806,0.0635 -0.09878,0.05997 -0.09878,0.165805 0,0.07761 0.04586,0.134056 0.04586,0.05292 0.151695,0.105833 0.109361,0.04939 0.289278,0.119945 0.179916,0.06703 0.306916,0.137583 0.127,0.07055 0.194028,0.172861 0.06703,0.09878 0.06703,0.250472 z" id="path3804" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="µOPs" id="text1982" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 74.166577,66.43832 v 1.890888 h -0.250472 l -0.04939,-0.254 h -0.01764 q -0.08819,0.141111 -0.229305,0.215195 -0.141111,0.07408 -0.338667,0.07408 -0.137583,0 -0.236361,-0.04233 -0.09878,-0.04586 -0.169333,-0.116417 h -0.01411 q 0.0071,0.0635 0.01058,0.169333 0.0071,0.105834 0.0071,0.250473 v 0.550333 H 72.568494 V 66.43832 h 0.310444 v 1.220611 q 0,0.448027 0.423334,0.448027 0.313972,0 0.433916,-0.176389 0.119945,-0.176388 0.119945,-0.507999 v -0.98425 z" id="path3807" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 77.006604,67.066264 q 0,0.391583 -0.134056,0.684389 -0.130528,0.289278 -0.388055,0.451555 -0.257528,0.162278 -0.638528,0.162278 -0.391584,0 -0.652639,-0.162278 -0.257528,-0.162277 -0.384528,-0.455083 -0.127,-0.292805 -0.127,-0.684389 0,-0.388055 0.127,-0.677333 0.127,-0.289278 0.384528,-0.451556 0.261055,-0.162277 0.656167,-0.162277 0.377472,0 0.635,0.162277 0.257527,0.15875 0.388055,0.451556 0.134056,0.289278 0.134056,0.680861 z m -1.989667,0 q 0,0.47625 0.201083,0.751417 0.201084,0.271638 0.627945,0.271638 0.430389,0 0.627944,-0.271638 0.197556,-0.275167 0.197556,-0.751417 0,-0.47625 -0.197556,-0.744361 -0.197555,-0.271639 -0.624416,-0.271639 -0.426862,0 -0.631473,0.271639 -0.201083,0.268111 -0.201083,0.744361 z" id="path3809" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 78.231624,65.810375 q 0.493889,0 0.719667,0.194028 0.225778,0.194028 0.225778,0.546805 0,0.208139 -0.09525,0.391584 -0.09172,0.179916 -0.313972,0.292805 -0.218723,0.112889 -0.596195,0.112889 h -0.289278 v 0.980722 h -0.3175 v -2.518833 z m -0.02822,0.271639 h -0.321028 v 0.994833 h 0.254 q 0.359834,0 0.536223,-0.116416 0.176389,-0.116417 0.176389,-0.395111 0,-0.243417 -0.155223,-0.363362 -0.155222,-0.119944 -0.490361,-0.119944 z" id="path3811" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 80.889695,67.807097 q 0,0.275167 -0.204611,0.416278 -0.204612,0.141111 -0.550334,0.141111 -0.197555,0 -0.342194,-0.03175 -0.141111,-0.03175 -0.250472,-0.08819 v -0.282223 q 0.112888,0.05645 0.271638,0.105834 0.162278,0.04586 0.328084,0.04586 0.236361,0 0.342194,-0.07408 0.105834,-0.07761 0.105834,-0.204612 0,-0.07055 -0.03881,-0.126999 -0.03881,-0.05644 -0.141111,-0.112889 -0.09878,-0.05645 -0.28575,-0.127 -0.183445,-0.07056 -0.313972,-0.141111 -0.130528,-0.07056 -0.201084,-0.169334 -0.07055,-0.09878 -0.07055,-0.254 0,-0.239889 0.194028,-0.370416 0.197555,-0.130528 0.515055,-0.130528 0.172861,0 0.321028,0.03528 0.151694,0.03175 0.282222,0.09172 l -0.105833,0.246944 q -0.119945,-0.04939 -0.250472,-0.08467 -0.130528,-0.03528 -0.268112,-0.03528 -0.1905,0 -0.292805,0.0635 -0.09878,0.05997 -0.09878,0.165805 0,0.07761 0.04586,0.134056 0.04586,0.05292 0.151695,0.105833 0.109361,0.04939 0.289277,0.119945 0.179917,0.06703 0.306917,0.137583 0.127,0.07056 0.194028,0.172861 0.06703,0.09878 0.06703,0.250472 z" id="path3813" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="4 µOPs" id="text1988" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 127.10076,94.216037 h -0.36689 v 0.5715 h -0.29986 v -0.5715 h -1.2065 v -0.264584 l 1.18533,-1.696861 h 0.32103 v 1.68275 h 0.36689 z m -0.66675,-0.278695 v -0.79375 q 0,-0.183444 0.007,-0.310444 0.007,-0.130528 0.0106,-0.246945 h -0.0141 q -0.0282,0.06703 -0.0705,0.144639 -0.0423,0.07761 -0.0811,0.130528 l -0.75494,1.075972 z" id="path3816" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 129.98659,92.896648 v 1.890889 h -0.25047 l -0.0494,-0.254 h -0.0176 q -0.0882,0.141111 -0.22931,0.215194 -0.14111,0.07408 -0.33866,0.07408 -0.13759,0 -0.23636,-0.04233 -0.0988,-0.04586 -0.16934,-0.116417 h -0.0141 q 0.007,0.0635 0.0106,0.169334 0.007,0.105833 0.007,0.250472 v 0.550333 h -0.31044 v -2.737555 h 0.31044 v 1.220611 q 0,0.448028 0.42333,0.448028 0.31398,0 0.43392,-0.176389 0.11995,-0.176389 0.11995,-0.508 v -0.98425 z" id="path3818" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 132.82662,93.524592 q 0,0.391584 -0.13406,0.684389 -0.13053,0.289278 -0.38806,0.451556 -0.25752,0.162277 -0.63852,0.162277 -0.39159,0 -0.65264,-0.162277 -0.25753,-0.162278 -0.38453,-0.455084 -0.127,-0.292805 -0.127,-0.684389 0,-0.388055 0.127,-0.677333 0.127,-0.289278 0.38453,-0.451555 0.26105,-0.162278 0.65616,-0.162278 0.37748,0 0.635,0.162278 0.25753,0.15875 0.38806,0.451555 0.13406,0.289278 0.13406,0.680861 z m -1.98967,0 q 0,0.47625 0.20108,0.751417 0.20109,0.271639 0.62795,0.271639 0.43039,0 0.62794,-0.271639 0.19756,-0.275167 0.19756,-0.751417 0,-0.47625 -0.19756,-0.744361 -0.19755,-0.271639 -0.62442,-0.271639 -0.42686,0 -0.63147,0.271639 -0.20108,0.268111 -0.20108,0.744361 z" id="path3820" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 134.05164,92.268703 q 0.49389,0 0.71966,0.194028 0.22578,0.194028 0.22578,0.546806 0,0.208139 -0.0953,0.391583 -0.0917,0.179917 -0.31397,0.292806 -0.21872,0.112888 -0.5962,0.112888 h -0.28927 v 0.980723 h -0.3175 v -2.518834 z m -0.0282,0.271639 h -0.32102 v 0.994834 h 0.254 q 0.35983,0 0.53622,-0.116417 0.17639,-0.116417 0.17639,-0.395111 0,-0.243417 -0.15522,-0.363361 -0.15523,-0.119945 -0.49037,-0.119945 z" id="path3822" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 136.70971,94.265426 q 0,0.275166 -0.20461,0.416277 -0.20462,0.141111 -0.55034,0.141111 -0.19755,0 -0.34219,-0.03175 -0.14111,-0.03175 -0.25047,-0.08819 v -0.282222 q 0.11288,0.05644 0.27163,0.105833 0.16228,0.04586 0.32809,0.04586 0.23636,0 0.34219,-0.07408 0.10584,-0.07761 0.10584,-0.204611 0,-0.07056 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05644 -0.28575,-0.127 -0.18345,-0.07056 -0.31397,-0.141111 -0.13053,-0.07056 -0.20109,-0.169334 -0.0706,-0.09878 -0.0706,-0.254 0,-0.239888 0.19403,-0.370416 0.19755,-0.130528 0.51505,-0.130528 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246944 q -0.11995,-0.04939 -0.25047,-0.08467 -0.13053,-0.03528 -0.26812,-0.03528 -0.1905,0 -0.2928,0.0635 -0.0988,0.05997 -0.0988,0.165806 0,0.07761 0.0459,0.134055 0.0459,0.05292 0.1517,0.105833 0.10936,0.04939 0.28927,0.119945 0.17992,0.06703 0.30692,0.137583 0.127,0.07056 0.19403,0.172861 0.067,0.09878 0.067,0.250473 z" id="path3824" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="port 0" id="text1996" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 207.06607,46.427002 q 0,0.34925 -0.24341,0.560916 -0.24342,0.215195 -0.73378,0.215195 -0.48331,0 -0.73378,-0.215195 -0.25047,-0.211666 -0.25047,-0.564444 0,-0.218722 0.0811,-0.363361 0.0847,-0.141111 0.19402,-0.22225 v -0.02117 q -0.06,0.0071 -0.15169,0.01411 -0.0917,0.0071 -0.15875,0.0071 h -0.77611 v -0.310445 h 2.73755 v 0.254 l -0.25752,0.04233 v 0.01411 q 0.12347,0.08467 0.20814,0.22225 0.0847,0.137583 0.0847,0.366889 z m -0.26105,-0.05645 q 0,-0.289278 -0.16228,-0.409222 -0.16228,-0.116417 -0.49389,-0.123472 h -0.06 q -0.34925,0 -0.53975,0.112889 -0.18697,0.116416 -0.18697,0.426861 0,0.172861 0.0953,0.282222 0.0952,0.112889 0.25752,0.165805 0.16581,0.05644 0.37748,0.05644 0.32455,0 0.51858,-0.127 0.19403,-0.123472 0.19403,-0.384528 z" id="path15830" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 206.08888,49.340946 q -0.4692,0 -0.72672,-0.239889 -0.25753,-0.236361 -0.25753,-0.642055 0,-0.250473 0.11289,-0.448028 0.11641,-0.194028 0.33514,-0.306917 0.22225,-0.112889 0.53622,-0.112889 0.46919,0 0.72319,0.236361 0.254,0.236361 0.254,0.642056 0,0.257528 -0.11641,0.451555 -0.11289,0.197556 -0.33162,0.306917 -0.21519,0.112889 -0.52916,0.112889 z m 0,-1.42875 q -0.33514,0 -0.5327,0.130528 -0.19402,0.134055 -0.19402,0.423333 0,0.28575 0.19402,0.419806 0.19756,0.134055 0.5327,0.134055 0.33514,0 0.52564,-0.134055 0.1905,-0.134056 0.1905,-0.423334 0,-0.289277 -0.1905,-0.419805 -0.1905,-0.130528 -0.52564,-0.130528 z" id="path15832" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 207.06607,50.713251 q 0,0.05292 -0.007,0.112889 -0.004,0.0635 -0.0141,0.109361 l -0.28575,-0.03881 q 0.0106,-0.04586 0.0176,-0.102306 0.007,-0.05292 0.007,-0.102305 0,-0.144639 -0.0811,-0.271639 -0.0776,-0.127 -0.22225,-0.204611 -0.14111,-0.07408 -0.33161,-0.07408 h -1.00894 v -0.310444 h 1.89088 v 0.254 l -0.34572,0.03528 v 0.01411 q 0.15522,0.09172 0.26811,0.236361 0.11289,0.144639 0.11289,0.342194 z" id="path15834" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 205.35863,51.919751 q 0,0.07056 0.0106,0.144639 0.0141,0.07408 0.0282,0.119945 h -0.23636 q -0.0247,-0.04939 -0.0388,-0.141111 -0.0176,-0.09172 -0.0176,-0.176389 0,-0.148167 0.0494,-0.275167 0.0529,-0.123472 0.17991,-0.201083 0.127,-0.07761 0.35631,-0.07761 h 1.10067 v -0.268112 h 0.14816 l 0.12347,0.271639 0.40217,0.123473 v 0.183444 h -0.43392 v 0.546806 h -0.23988 v -0.546806 h -1.09362 q -0.17286,0 -0.25752,0.08114 -0.0811,0.08467 -0.0811,0.215194 z" id="path15836" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 206.40285,55.024196 q -0.40569,0 -0.6985,-0.08467 -0.28928,-0.08467 -0.4445,-0.268111 -0.15522,-0.183444 -0.15522,-0.486833 0,-0.426861 0.34219,-0.631472 0.34572,-0.201084 0.95603,-0.201084 0.40922,0 0.6985,0.08114 0.28928,0.08467 0.44097,0.268111 0.15522,0.183445 0.15522,0.483306 0,0.423333 -0.34219,0.631472 -0.33867,0.208139 -0.9525,0.208139 z m 0,-1.361722 q -0.51858,0 -0.77611,0.116416 -0.25753,0.119945 -0.25753,0.405695 0,0.282222 0.254,0.402166 0.25753,0.123473 0.77964,0.123473 0.51506,0 0.77258,-0.123473 0.25753,-0.119944 0.25753,-0.402166 0,-0.28575 -0.25753,-0.405695 -0.25752,-0.116416 -0.77258,-0.116416 z" id="path15838" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.56252,16.66188 h 17.19792 v 3.968752 h -17.19792 z" id="path2066" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="INT ALU" id="text2040" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 185.60074,19.893385 h -0.91017 V 19.70994 l 0.29633,-0.06703 v -2.014361 l -0.29633,-0.07056 v -0.183444 h 0.91017 v 0.183444 l -0.29634,0.07056 v 2.014361 l 0.29634,0.06703 z" id="path3827" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 188.08727,19.893385 h -0.37042 l -1.34761,-2.091972 h -0.0141 q 0.007,0.123472 0.0176,0.306916 0.0106,0.183445 0.0106,0.377473 v 1.407583 h -0.29281 v -2.518833 h 0.36689 l 1.34409,2.084916 h 0.0141 q -0.004,-0.05644 -0.0106,-0.169333 -0.004,-0.112889 -0.0106,-0.246944 -0.004,-0.134056 -0.004,-0.246945 v -1.421694 h 0.29634 z" id="path3829" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 189.56811,19.893385 h -0.3175 v -2.240139 h -0.7867 v -0.278694 h 1.88736 v 0.278694 h -0.78316 z" id="path3831" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 193.23137,19.893385 -0.30339,-0.779639 h -0.99836 l -0.29986,0.779639 h -0.32103 l 0.98425,-2.529417 h 0.28575 l 0.98073,2.529417 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102306 -0.0247,-0.07408 -0.0494,-0.151694 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0564,0.215194 -0.0318,0.102306 -0.0529,0.162278 l -0.28575,0.762 z" id="path3833" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 193.90402,19.893385 v -2.518833 h 0.3175 v 2.236611 h 1.10067 v 0.282222 z" id="path3835" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 197.63172,17.374552 v 1.629833 q 0,0.261056 -0.10583,0.472722 -0.10583,0.208139 -0.32455,0.331611 -0.2152,0.119945 -0.55034,0.119945 -0.46919,0 -0.71614,-0.254 -0.24341,-0.257528 -0.24341,-0.677334 v -1.622777 h 0.3175 v 1.633361 q 0,0.306916 0.16227,0.47625 0.16581,0.169333 0.49742,0.169333 0.3422,0 0.49389,-0.179917 0.15522,-0.183444 0.15522,-0.469194 v -1.629833 z" id="path3837" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.56252,20.63063 h 17.19792 v 3.968752 h -17.19792 z" id="path2068" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="INT DIV" id="text2044" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 185.81606,23.874187 h -0.91016 v -0.183444 l 0.29633,-0.06703 v -2.014361 l -0.29633,-0.07055 v -0.183445 h 0.91016 v 0.183445 l -0.29633,0.07055 v 2.014361 l 0.29633,0.06703 z" id="path3840" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 188.3026,23.874187 h -0.37042 l -1.34761,-2.091972 h -0.0141 q 0.007,0.123473 0.0176,0.306917 0.0106,0.183444 0.0106,0.377472 v 1.407583 h -0.29281 v -2.518833 h 0.36689 l 1.34409,2.084917 h 0.0141 q -0.004,-0.05645 -0.0106,-0.169334 -0.004,-0.112888 -0.0106,-0.246944 -0.004,-0.134056 -0.004,-0.246944 v -1.421695 h 0.29634 z" id="path3842" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 189.78344,23.874187 h -0.3175 v -2.240138 h -0.7867 v -0.278695 h 1.88736 v 0.278695 h -0.78316 z" id="path3844" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 193.88415,22.590076 q 0,0.638528 -0.34925,0.963084 -0.34573,0.321027 -0.96661,0.321027 h -0.70203 v -2.518833 h 0.77611 q 0.381,0 0.65969,0.141111 0.2787,0.141111 0.43039,0.416278 0.1517,0.271639 0.1517,0.677333 z m -0.33514,0.01058 q 0,-0.504472 -0.25047,-0.737306 -0.24695,-0.236361 -0.70203,-0.236361 h -0.41275 v 1.975556 h 0.34219 q 1.02306,0 1.02306,-1.001889 z" id="path3846" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 195.15227,23.874187 h -0.91016 v -0.183444 l 0.29633,-0.06703 v -2.014361 l -0.29633,-0.07055 v -0.183445 h 0.91016 v 0.183445 l -0.29633,0.07055 v 2.014361 l 0.29633,0.06703 z" id="path3848" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 197.41655,21.355354 -0.89958,2.518833 h -0.3175 l -0.89958,-2.518833 h 0.33161 l 0.56797,1.615722 q 0.0565,0.155223 0.0953,0.292806 0.0388,0.134055 0.0635,0.257528 0.0247,-0.123473 0.0635,-0.261056 0.0388,-0.137583 0.0952,-0.296333 l 0.56445,-1.608667 z" id="path3850" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.56252,24.59938 h 17.19792 v 3.968752 h -17.19792 z" id="path2070" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="IVEC ALU" id="text2036" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 183.85085,27.8438 h -0.91016 v -0.183445 l 0.29633,-0.06703 v -2.014361 l -0.29633,-0.07056 v -0.183445 h 0.91016 v 0.183445 l -0.29633,0.07056 v 2.014361 l 0.29633,0.06703 z" id="path3853" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 186.11514,25.324966 -0.89959,2.518834 h -0.3175 l -0.89958,-2.518834 h 0.33161 l 0.56797,1.615723 q 0.0564,0.155222 0.0952,0.292805 0.0388,0.134056 0.0635,0.257528 0.0247,-0.123472 0.0635,-0.261056 0.0388,-0.137583 0.0953,-0.296333 L 185.78,25.324966 Z" id="path3855" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 187.86354,27.8438 h -1.40759 v -2.518834 h 1.40759 v 0.278695 h -1.09009 v 0.786694 h 1.02659 v 0.275167 h -1.02659 v 0.899583 h 1.09009 z" id="path3857" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 189.49916,25.568383 q -0.4057,0 -0.63853,0.271639 -0.23283,0.271639 -0.23283,0.744361 0,0.469194 0.21519,0.744361 0.21872,0.271639 0.65264,0.271639 0.1658,0 0.31397,-0.02822 0.14817,-0.02822 0.28928,-0.07056 v 0.275167 q -0.14111,0.05292 -0.29281,0.07761 -0.14816,0.02469 -0.3563,0.02469 -0.38453,0 -0.64206,-0.15875 -0.25753,-0.15875 -0.38805,-0.451555 -0.127,-0.292806 -0.127,-0.687917 0,-0.381 0.13758,-0.670278 0.14111,-0.292805 0.41275,-0.455083 0.27164,-0.165805 0.65969,-0.165805 0.39864,0 0.69498,0.148166 l -0.127,0.268111 q -0.11642,-0.05292 -0.26106,-0.09525 -0.14111,-0.04233 -0.31044,-0.04233 z" id="path3859" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 193.14892,27.8438 -0.30339,-0.779639 h -0.99836 l -0.29986,0.779639 h -0.32103 l 0.98425,-2.529417 h 0.28575 L 193.477,27.8438 Z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102306 -0.0247,-0.07408 -0.0494,-0.151694 -0.0212,-0.08114 -0.0353,-0.123473 -0.0247,0.109361 -0.0564,0.215195 -0.0318,0.102305 -0.0529,0.162278 l -0.28575,0.762 z" id="path3861" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 193.82157,27.8438 v -2.518834 h 0.3175 v 2.236611 h 1.10066 V 27.8438 Z" id="path3863" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 197.54927,25.324966 V 26.9548 q 0,0.261055 -0.10583,0.472722 -0.10584,0.208139 -0.32456,0.331611 -0.21519,0.119944 -0.55033,0.119944 -0.4692,0 -0.71614,-0.254 -0.24342,-0.257527 -0.24342,-0.677333 v -1.622778 h 0.3175 v 1.633361 q 0,0.306917 0.16228,0.47625 0.16581,0.169334 0.49742,0.169334 0.34219,0 0.49389,-0.179917 0.15522,-0.183444 0.15522,-0.469194 v -1.629834 z" id="path3865" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.56252,28.56813 h 17.19792 v 3.968752 h -17.19792 z" id="path2072" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="IVEC MUL" id="text2060" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 184.16155,31.812553 h -0.91017 v -0.183444 l 0.29633,-0.06703 V 29.54772 l -0.29633,-0.07056 V 29.29372 h 0.91017 v 0.183445 l -0.29634,0.07056 v 2.014361 l 0.29634,0.06703 z" id="path3868" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 186.42583,29.29372 -0.89958,2.518833 h -0.3175 l -0.89959,-2.518833 h 0.33161 l 0.56798,1.615722 q 0.0564,0.155223 0.0952,0.292806 0.0388,0.134055 0.0635,0.257528 0.0247,-0.123473 0.0635,-0.261056 0.0388,-0.137583 0.0952,-0.296333 l 0.56444,-1.608667 z" id="path3870" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 188.17423,31.812553 h -1.40759 V 29.29372 h 1.40759 v 0.278695 h -1.09009 v 0.786694 h 1.02659 v 0.275167 h -1.02659 v 0.899583 h 1.09009 z" id="path3872" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 189.80985,29.537137 q -0.4057,0 -0.63853,0.271639 -0.23283,0.271639 -0.23283,0.744361 0,0.469194 0.21519,0.744361 0.21872,0.271639 0.65264,0.271639 0.16581,0 0.31397,-0.02822 0.14817,-0.02822 0.28928,-0.07056 v 0.275167 q -0.14111,0.05292 -0.2928,0.07761 -0.14817,0.02469 -0.35631,0.02469 -0.38453,0 -0.64206,-0.15875 -0.25752,-0.15875 -0.38805,-0.451555 -0.127,-0.292806 -0.127,-0.687917 0,-0.381 0.13758,-0.670278 0.14111,-0.292805 0.41275,-0.455083 0.27164,-0.165806 0.6597,-0.165806 0.39864,0 0.69497,0.148167 l -0.127,0.268111 q -0.11642,-0.05292 -0.26106,-0.09525 -0.14111,-0.04233 -0.31044,-0.04233 z" id="path3874" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 192.99042,31.812553 -0.82903,-2.208388 h -0.0141 q 0.0106,0.109361 0.0176,0.296333 0.007,0.183444 0.007,0.384528 v 1.527527 h -0.2928 V 29.29372 h 0.46919 l 0.77611,2.06375 h 0.0141 l 0.79023,-2.06375 h 0.46566 v 2.518833 h -0.31397 v -1.548694 q 0,-0.183444 0.007,-0.363361 0.0106,-0.179917 0.0176,-0.292806 h -0.0141 l -0.83961,2.204861 z" id="path3876" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 196.9918,29.29372 v 1.629833 q 0,0.261056 -0.10584,0.472723 -0.10583,0.208139 -0.32455,0.331611 -0.2152,0.119944 -0.55033,0.119944 -0.4692,0 -0.71614,-0.254 -0.24342,-0.257528 -0.24342,-0.677333 V 29.29372 h 0.3175 v 1.633361 q 0,0.306917 0.16228,0.47625 0.1658,0.169334 0.49741,0.169334 0.3422,0 0.49389,-0.179917 0.15523,-0.183445 0.15523,-0.469195 V 29.29372 Z" id="path3878" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 197.65315,31.812553 V 29.29372 h 0.3175 v 2.236611 h 1.10066 v 0.282222 z" id="path3880" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.56252,32.53688 h 17.19792 v 3.968752 h -17.19792 z" id="path2074" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="FP FMA" id="text2078" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 185.56658,35.785606 h -0.3175 v -2.518833 h 1.40758 v 0.278695 h -1.09008 v 0.892527 h 1.02305 v 0.278695 h -1.02305 z" id="path3883" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 187.74862,33.266773 q 0.49389,0 0.71966,0.194028 0.22578,0.194028 0.22578,0.546805 0,0.208139 -0.0953,0.391584 -0.0917,0.179916 -0.31397,0.292805 -0.21872,0.112889 -0.59619,0.112889 h -0.28928 v 0.980722 h -0.3175 v -2.518833 z m -0.0282,0.271639 h -0.32103 v 0.994833 h 0.254 q 0.35983,0 0.53622,-0.116416 0.17639,-0.116417 0.17639,-0.395111 0,-0.243417 -0.15522,-0.363362 -0.15523,-0.119944 -0.49036,-0.119944 z" id="path3885" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 190.45172,35.785606 h -0.3175 v -2.518833 h 1.40759 v 0.278695 h -1.09009 v 0.892527 h 1.02306 v 0.278695 h -1.02306 z" id="path3887" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 193.07826,35.785606 -0.82902,-2.208388 h -0.0141 q 0.0106,0.109361 0.0176,0.296333 0.007,0.183444 0.007,0.384528 v 1.527527 h -0.29281 v -2.518833 h 0.4692 l 0.77611,2.06375 h 0.0141 l 0.79022,-2.06375 h 0.46567 v 2.518833 h -0.31397 v -1.548694 q 0,-0.183444 0.007,-0.363361 0.0106,-0.179917 0.0176,-0.292806 h -0.0141 l -0.83961,2.204861 z" id="path3889" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 196.74451,35.785606 -0.30339,-0.779638 h -0.99836 l -0.29986,0.779638 h -0.32103 l 0.98425,-2.529416 h 0.28575 l 0.98072,2.529416 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102305 -0.0247,-0.07408 -0.0494,-0.151695 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0564,0.215195 -0.0317,0.102305 -0.0529,0.162277 l -0.28575,0.762 z" id="path3891" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.56252,36.50563 h 17.19792 v 3.968752 h -17.19792 z" id="path2080" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="AES" id="text2084" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 190.09032,39.75005 -0.30338,-0.779639 h -0.99837 l -0.29986,0.779639 h -0.32102 l 0.98425,-2.529417 h 0.28575 l 0.98072,2.529417 z m -0.39863,-1.061861 -0.28223,-0.762 q -0.0106,-0.02822 -0.0353,-0.102306 -0.0247,-0.07408 -0.0494,-0.151694 -0.0212,-0.08114 -0.0353,-0.123473 -0.0247,0.109361 -0.0565,0.215195 -0.0317,0.102305 -0.0529,0.162278 l -0.28575,0.762 z" id="path3894" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 192.17056,39.75005 h -1.40759 v -2.518834 h 1.40759 v 0.278695 h -1.09009 v 0.786694 h 1.02659 v 0.275167 h -1.02659 v 0.899583 h 1.09009 z" id="path3896" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 194.15543,39.076244 q 0,0.335139 -0.24342,0.522111 -0.24342,0.186972 -0.65617,0.186972 -0.21166,0 -0.39158,-0.03175 -0.17992,-0.03175 -0.29986,-0.08819 v -0.303389 q 0.127,0.05644 0.31397,0.102306 0.1905,0.04586 0.39158,0.04586 0.28223,0 0.42334,-0.109361 0.14464,-0.109362 0.14464,-0.296334 0,-0.123472 -0.0529,-0.208139 -0.0529,-0.08467 -0.18344,-0.155222 -0.127,-0.07408 -0.35631,-0.155222 -0.32103,-0.116417 -0.48683,-0.28575 -0.16228,-0.169333 -0.16228,-0.462139 0,-0.201083 0.1023,-0.342194 0.10231,-0.144639 0.28223,-0.22225 0.18344,-0.07761 0.4198,-0.07761 0.20814,0 0.381,0.0388 0.17286,0.03881 0.31397,0.102306 l -0.0988,0.271639 q -0.13053,-0.05644 -0.28575,-0.09525 -0.1517,-0.03881 -0.3175,-0.03881 -0.23636,0 -0.35631,0.102306 -0.11994,0.09878 -0.11994,0.264583 0,0.127 0.0529,0.211667 0.0529,0.08467 0.17286,0.151694 0.11995,0.06703 0.32456,0.144639 0.22225,0.08114 0.37394,0.176389 0.15523,0.09172 0.23284,0.22225 0.0811,0.130528 0.0811,0.328083 z" id="path3898" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.56252,40.47438 h 17.19792 v 3.968752 h -17.19792 z" id="path2086" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="VEC STR" id="text2048" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 186.64719,41.199966 -0.89958,2.518834 h -0.3175 l -0.89958,-2.518834 h 0.33161 l 0.56797,1.615723 q 0.0564,0.155222 0.0952,0.292805 0.0388,0.134056 0.0635,0.257528 0.0247,-0.123472 0.0635,-0.261056 0.0388,-0.137583 0.0953,-0.296333 l 0.56444,-1.608667 z" id="path3901" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 188.39559,43.7188 h -1.40758 v -2.518834 h 1.40758 v 0.278695 h -1.09008 v 0.786694 h 1.02658 v 0.275167 h -1.02658 v 0.899583 h 1.09008 z" id="path3903" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 190.03121,41.443383 q -0.40569,0 -0.63852,0.271639 -0.23284,0.271639 -0.23284,0.744361 0,0.469194 0.2152,0.744361 0.21872,0.271639 0.65264,0.271639 0.1658,0 0.31397,-0.02822 0.14816,-0.02822 0.28928,-0.07056 v 0.275167 q -0.14112,0.05292 -0.29281,0.07761 -0.14817,0.02469 -0.35631,0.02469 -0.38452,0 -0.64205,-0.15875 -0.25753,-0.15875 -0.38806,-0.451555 -0.127,-0.292806 -0.127,-0.687917 0,-0.381 0.13759,-0.670278 0.14111,-0.292805 0.41275,-0.455083 0.27164,-0.165805 0.65969,-0.165805 0.39864,0 0.69497,0.148166 l -0.127,0.268111 q -0.11641,-0.05292 -0.26105,-0.09525 -0.14111,-0.04233 -0.31045,-0.04233 z" id="path3905" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 193.52928,43.044994 q 0,0.335139 -0.24342,0.522111 -0.24341,0.186972 -0.65616,0.186972 -0.21167,0 -0.39159,-0.03175 -0.17991,-0.03175 -0.29986,-0.08819 v -0.303389 q 0.127,0.05644 0.31398,0.102306 0.1905,0.04586 0.39158,0.04586 0.28222,0 0.42333,-0.109361 0.14464,-0.109362 0.14464,-0.296334 0,-0.123472 -0.0529,-0.208139 -0.0529,-0.08467 -0.18344,-0.155222 -0.127,-0.07408 -0.35631,-0.155222 -0.32102,-0.116417 -0.48683,-0.28575 Q 191.97,42.09955 191.97,41.806744 q 0,-0.201083 0.10231,-0.342194 0.1023,-0.144639 0.28222,-0.22225 0.18345,-0.07761 0.41981,-0.07761 0.20814,0 0.381,0.0388 0.17286,0.03881 0.31397,0.102306 l -0.0988,0.271639 q -0.13053,-0.05644 -0.28575,-0.09525 -0.15169,-0.03881 -0.3175,-0.03881 -0.23636,0 -0.3563,0.102306 -0.11995,0.09878 -0.11995,0.264583 0,0.127 0.0529,0.211667 0.0529,0.08467 0.17286,0.151694 0.11994,0.06703 0.32455,0.144639 0.22225,0.08114 0.37395,0.176389 0.15522,0.09172 0.23283,0.22225 0.0811,0.130528 0.0811,0.328083 z" id="path3907" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 194.83395,43.7188 h -0.3175 v -2.240139 h -0.78669 v -0.278695 h 1.88736 v 0.278695 h -0.78317 z" id="path3909" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 196.69535,41.199966 q 0.4692,0 0.69145,0.179917 0.22577,0.176389 0.22577,0.536222 0,0.201084 -0.0741,0.335139 -0.0741,0.134056 -0.1905,0.215195 -0.11289,0.07761 -0.23989,0.123472 l 0.69145,1.128889 h -0.37042 l -0.61031,-1.040695 h -0.50094 V 43.7188 h -0.3175 v -2.518834 z m -0.0176,0.275167 h -0.35983 v 0.934861 h 0.37747 q 0.30692,0 0.44803,-0.119944 0.14111,-0.123473 0.14111,-0.359834 0,-0.246944 -0.14817,-0.34925 -0.14816,-0.105833 -0.45861,-0.105833 z" id="path3911" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.56252,44.44313 h 17.19792 v 3.968752 h -17.19792 z" id="path2088" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="FP DIV" id="text2052" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 186.26078,47.686687 h -0.3175 v -2.518833 h 1.40758 v 0.278695 h -1.09008 v 0.892527 h 1.02305 v 0.278695 h -1.02305 z" id="path3914" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 188.44282,45.167854 q 0.49389,0 0.71966,0.194028 0.22578,0.194028 0.22578,0.546806 0,0.208138 -0.0952,0.391583 -0.0917,0.179917 -0.31397,0.292805 -0.21872,0.112889 -0.59619,0.112889 h -0.28928 v 0.980722 h -0.3175 v -2.518833 z m -0.0282,0.271639 h -0.32103 v 0.994833 h 0.254 q 0.35983,0 0.53622,-0.116416 0.17639,-0.116417 0.17639,-0.395111 0,-0.243417 -0.15522,-0.363361 -0.15523,-0.119945 -0.49036,-0.119945 z" id="path3916" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 192.84631,46.402576 q 0,0.638528 -0.34925,0.963084 -0.34572,0.321027 -0.96661,0.321027 h -0.70203 v -2.518833 h 0.77611 q 0.381,0 0.6597,0.141111 0.27869,0.141111 0.43039,0.416278 0.15169,0.271639 0.15169,0.677333 z m -0.33514,0.01058 q 0,-0.504472 -0.25047,-0.737306 -0.24694,-0.236361 -0.70203,-0.236361 h -0.41275 v 1.975556 h 0.3422 q 1.02305,0 1.02305,-1.001889 z" id="path3918" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 194.11444,47.686687 h -0.91017 v -0.183444 l 0.29633,-0.06703 v -2.014361 l -0.29633,-0.07056 v -0.183445 h 0.91017 v 0.183445 l -0.29634,0.07056 v 2.014361 l 0.29634,0.06703 z" id="path3920" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 196.37872,45.167854 -0.89958,2.518833 h -0.3175 l -0.89959,-2.518833 h 0.33161 l 0.56798,1.615722 q 0.0564,0.155223 0.0952,0.292806 0.0388,0.134055 0.0635,0.257528 0.0247,-0.123473 0.0635,-0.261056 0.0388,-0.137583 0.0952,-0.296333 l 0.56444,-1.608667 z" id="path3922" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.56252,48.41188 h 17.19792 v 3.968752 h -17.19792 z" id="path2090" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="Branch" id="text2064" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 185.62373,49.20034 h 0.71966 q 0.47273,0 0.71262,0.141111 0.24341,0.137584 0.24341,0.483306 0,0.22225 -0.12347,0.370416 -0.12347,0.144639 -0.35631,0.186973 v 0.01764 q 0.15875,0.02469 0.28575,0.09172 0.13053,0.06703 0.20462,0.1905 0.0741,0.123472 0.0741,0.321028 0,0.342194 -0.23636,0.529166 -0.23284,0.186972 -0.63853,0.186972 h -0.88547 z m 0.3175,1.072445 h 0.46566 q 0.32456,0 0.4445,-0.102306 0.11995,-0.105833 0.11995,-0.310444 0,-0.208139 -0.14817,-0.296334 -0.14464,-0.09172 -0.46566,-0.09172 h -0.41628 z m 0,0.264583 v 0.913694 h 0.508 q 0.33514,0 0.46566,-0.130527 0.13053,-0.130528 0.13053,-0.342195 0,-0.197555 -0.13758,-0.3175 -0.13406,-0.123472 -0.48331,-0.123472 z" id="path3925" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 188.75777,49.793007 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008944 h -0.31044 v -1.890888 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path3927" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 189.9769,49.796535 q 0.34572,0 0.51152,0.151694 0.16581,0.151694 0.16581,0.483306 v 1.287638 h -0.22578 l -0.06,-0.268111 h -0.0141 q -0.12347,0.155223 -0.26106,0.229306 -0.13405,0.07408 -0.37394,0.07408 -0.25753,0 -0.42686,-0.134055 -0.16934,-0.137584 -0.16934,-0.426861 0,-0.282223 0.22225,-0.433917 0.22225,-0.155222 0.68439,-0.169333 l 0.32103,-0.01058 v -0.112889 q 0,-0.236361 -0.10231,-0.328083 -0.1023,-0.09172 -0.28927,-0.09172 -0.14817,0 -0.28223,0.04586 -0.13405,0.04233 -0.25047,0.09878 l -0.0952,-0.232834 q 0.12347,-0.06703 0.29281,-0.112889 0.16933,-0.04939 0.35278,-0.04939 z m 0.37041,0.998361 -0.27869,0.01058 q -0.35278,0.01411 -0.49036,0.112889 -0.13406,0.09878 -0.13406,0.278694 0,0.15875 0.0952,0.232834 0.0988,0.07408 0.25047,0.07408 0.23989,0 0.39864,-0.130528 0.15875,-0.134055 0.15875,-0.409222 z" id="path3929" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 192.14841,49.793007 q 0.33866,0 0.51153,0.165805 0.17286,0.162278 0.17286,0.529167 v 1.231194 h -0.30692 v -1.210027 q 0,-0.455084 -0.42333,-0.455084 -0.31398,0 -0.43392,0.176389 -0.11994,0.176389 -0.11994,0.508 v 0.980722 h -0.31045 v -1.890888 h 0.25047 l 0.0459,0.257527 h 0.0176 q 0.0917,-0.148166 0.254,-0.218722 0.16228,-0.07408 0.3422,-0.07408 z" id="path3931" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 194.17401,51.754451 q -0.25047,0 -0.44802,-0.102305 -0.19403,-0.102306 -0.30692,-0.3175 -0.10936,-0.215195 -0.10936,-0.550334 0,-0.34925 0.11641,-0.567972 0.11642,-0.218722 0.31398,-0.321028 0.20108,-0.102305 0.45508,-0.102305 0.14464,0 0.27869,0.03175 0.13406,0.02822 0.21873,0.07055 l -0.0952,0.257528 q -0.0847,-0.03175 -0.19756,-0.05997 -0.11289,-0.02822 -0.21167,-0.02822 -0.55738,0 -0.55738,0.716139 0,0.342194 0.13405,0.525638 0.13758,0.179917 0.4057,0.179917 0.15522,0 0.27163,-0.03175 0.11995,-0.03175 0.21873,-0.07761 v 0.275167 q -0.0953,0.04939 -0.21167,0.07408 -0.11289,0.02822 -0.27517,0.02822 z" id="path3933" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 195.42097,49.038062 v 0.786695 q 0,0.141111 -0.0176,0.264583 h 0.0212 q 0.0917,-0.144639 0.24694,-0.218722 0.15875,-0.07408 0.3422,-0.07408 0.34572,0 0.51858,0.165805 0.17286,0.162278 0.17286,0.525639 v 1.231194 h -0.30691 v -1.210027 q 0,-0.455084 -0.42334,-0.455084 -0.3175,0 -0.43744,0.179917 -0.11642,0.176389 -0.11642,0.508 v 0.977194 h -0.31044 v -2.681111 z" id="path3935" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="port 2" id="text2096" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 213.41887,46.78339 q 0,0.34925 -0.24342,0.560916 -0.24341,0.215195 -0.73377,0.215195 -0.48331,0 -0.73378,-0.215195 -0.25047,-0.211666 -0.25047,-0.564444 0,-0.218722 0.0811,-0.363361 0.0847,-0.141111 0.19402,-0.22225 v -0.02117 q -0.06,0.0071 -0.15169,0.01411 -0.0917,0.0071 -0.15875,0.0071 H 210.646 v -0.310445 h 2.73755 v 0.254 l -0.25752,0.04233 v 0.01411 q 0.12347,0.08467 0.20813,0.22225 0.0847,0.137583 0.0847,0.366889 z m -0.26105,-0.05644 q 0,-0.289278 -0.16228,-0.409222 -0.16228,-0.116417 -0.49389,-0.123472 h -0.06 q -0.34925,0 -0.53975,0.112889 -0.18698,0.116416 -0.18698,0.426861 0,0.172861 0.0953,0.282222 0.0952,0.112889 0.25753,0.165806 0.16581,0.05644 0.37747,0.05644 0.32456,0 0.51859,-0.127 0.19403,-0.123472 0.19403,-0.384528 z" id="path15819" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 212.44168,49.697334 q -0.4692,0 -0.72673,-0.239889 -0.25752,-0.236361 -0.25752,-0.642055 0,-0.250473 0.11289,-0.448028 0.11641,-0.194028 0.33513,-0.306917 0.22225,-0.112889 0.53623,-0.112889 0.46919,0 0.72319,0.236361 0.254,0.236362 0.254,0.642056 0,0.257528 -0.11642,0.451555 -0.11288,0.197556 -0.33161,0.306917 -0.21519,0.112889 -0.52916,0.112889 z m 0,-1.42875 q -0.33514,0 -0.5327,0.130528 -0.19403,0.134055 -0.19403,0.423333 0,0.28575 0.19403,0.419806 0.19756,0.134055 0.5327,0.134055 0.33514,0 0.52564,-0.134055 0.1905,-0.134056 0.1905,-0.423334 0,-0.289277 -0.1905,-0.419805 -0.1905,-0.130528 -0.52564,-0.130528 z" id="path15821" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 213.41887,51.06964 q 0,0.05292 -0.007,0.112888 -0.004,0.0635 -0.0141,0.109362 l -0.28575,-0.03881 q 0.0106,-0.04586 0.0176,-0.102306 0.007,-0.05292 0.007,-0.102305 0,-0.144639 -0.0811,-0.271639 -0.0776,-0.127 -0.22225,-0.204611 -0.14111,-0.07408 -0.33161,-0.07408 h -1.00895 v -0.310445 h 1.89089 v 0.254 l -0.34572,0.03528 v 0.01411 q 0.15522,0.09172 0.26811,0.236361 0.11289,0.144639 0.11289,0.342195 z" id="path15823" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 211.71143,52.276139 q 0,0.07056 0.0106,0.144639 0.0141,0.07408 0.0282,0.119945 h -0.23636 q -0.0247,-0.04939 -0.0388,-0.141111 -0.0176,-0.09172 -0.0176,-0.176389 0,-0.148167 0.0494,-0.275167 0.0529,-0.123472 0.17991,-0.201083 0.127,-0.07761 0.35631,-0.07761 h 1.10066 v -0.268111 h 0.14817 l 0.12347,0.271638 0.40217,0.123473 v 0.183444 h -0.43392 v 0.546806 h -0.23989 v -0.546806 h -1.09361 q -0.17286,0 -0.25752,0.08114 -0.0811,0.08467 -0.0811,0.215194 z" id="path15825" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 211.4927,55.370001 V 53.70489 h 0.25753 l 0.66675,0.659694 q 0.1905,0.1905 0.33867,0.321028 0.14817,0.130528 0.28928,0.197555 0.14464,0.06703 0.31397,0.06703 0.20814,0 0.31397,-0.123472 0.10936,-0.123472 0.10936,-0.321028 0,-0.183444 -0.0635,-0.324555 -0.0635,-0.137584 -0.17639,-0.282223 l 0.20814,-0.165805 q 0.12347,0.148166 0.20814,0.338666 0.0882,0.194028 0.0882,0.433917 0,0.352778 -0.17992,0.557389 -0.17639,0.204611 -0.49036,0.204611 -0.19756,0 -0.37042,-0.08114 -0.17286,-0.08114 -0.34219,-0.225778 -0.16581,-0.144638 -0.35631,-0.338666 l -0.51858,-0.525639 h -0.0141 v 1.273528 z" id="path15827" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,29.770832 h 17.19792 v 3.968752 h -17.19792 z" id="path2098" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="INT ALU" id="text2102" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 261.00694,33.002338 h -0.91017 v -0.183444 l 0.29634,-0.06703 v -2.014361 l -0.29634,-0.07055 v -0.183445 h 0.91017 v 0.183445 l -0.29633,0.07055 v 2.014361 l 0.29633,0.06703 z" id="path3938" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 263.49347,33.002338 h -0.37042 l -1.34761,-2.091972 h -0.0141 q 0.007,0.123472 0.0176,0.306917 0.0106,0.183444 0.0106,0.377472 v 1.407583 h -0.2928 v -2.518833 h 0.36689 l 1.34408,2.084917 h 0.0141 q -0.004,-0.05644 -0.0106,-0.169334 -0.004,-0.112888 -0.0106,-0.246944 -0.004,-0.134056 -0.004,-0.246944 v -1.421695 h 0.29633 z" id="path3940" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 264.97431,33.002338 h -0.3175 V 30.7622 h -0.78669 v -0.278695 h 1.88736 V 30.7622 h -0.78317 z" id="path3942" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 268.63758,33.002338 268.33419,32.2227 h -0.99836 l -0.29986,0.779638 h -0.32103 l 0.98425,-2.529416 h 0.28575 l 0.98072,2.529416 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102305 -0.0247,-0.07408 -0.0494,-0.151695 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0564,0.215195 -0.0317,0.102305 -0.0529,0.162277 l -0.28575,0.762 z" id="path3944" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 269.31023,33.002338 v -2.518833 h 0.3175 v 2.236611 h 1.10066 v 0.282222 z" id="path3946" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 273.03793,30.483505 v 1.629833 q 0,0.261056 -0.10583,0.472723 -0.10584,0.208139 -0.32456,0.331611 -0.21519,0.119944 -0.55033,0.119944 -0.4692,0 -0.71614,-0.254 -0.24342,-0.257528 -0.24342,-0.677333 v -1.622778 h 0.3175 v 1.633361 q 0,0.306917 0.16228,0.47625 0.1658,0.169334 0.49742,0.169334 0.34219,0 0.49388,-0.179917 0.15523,-0.183445 0.15523,-0.469195 v -1.629833 z" id="path3948" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,33.739582 h 17.19792 v 3.968752 h -17.19792 z" id="path2104" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="INT MUL" id="text2108" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 260.35755,36.983143 h -0.91017 v -0.183445 l 0.29634,-0.06703 V 34.71831 l -0.29634,-0.07056 V 34.46431 h 0.91017 v 0.183444 l -0.29633,0.07056 v 2.014361 l 0.29633,0.06703 z" id="path3951" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 262.84408,36.983143 h -0.37042 l -1.34761,-2.091972 h -0.0141 q 0.007,0.123472 0.0176,0.306916 0.0106,0.183445 0.0106,0.377473 v 1.407583 h -0.2928 V 34.46431 h 0.36689 l 1.34408,2.084916 h 0.0141 q -0.004,-0.05644 -0.0106,-0.169333 -0.004,-0.112889 -0.0106,-0.246945 -0.004,-0.134055 -0.004,-0.246944 V 34.46431 h 0.29633 z" id="path3953" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 264.32492,36.983143 h -0.3175 v -2.240139 h -0.78669 V 34.46431 h 1.88736 v 0.278694 h -0.78317 z" id="path3955" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 267.51899,36.983143 -0.82902,-2.208389 h -0.0141 q 0.0106,0.109361 0.0176,0.296333 0.007,0.183445 0.007,0.384528 v 1.527528 h -0.29281 V 34.46431 h 0.4692 l 0.77611,2.06375 h 0.0141 l 0.79022,-2.06375 h 0.46567 v 2.518833 h -0.31397 v -1.548695 q 0,-0.183444 0.007,-0.363361 0.0106,-0.179916 0.0176,-0.292805 h -0.0141 l -0.83961,2.204861 z" id="path3957" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 271.52037,34.46431 v 1.629833 q 0,0.261055 -0.10583,0.472722 -0.10583,0.208139 -0.32455,0.331611 -0.2152,0.119945 -0.55034,0.119945 -0.46919,0 -0.71614,-0.254 -0.24341,-0.257528 -0.24341,-0.677334 V 34.46431 h 0.3175 v 1.633361 q 0,0.306916 0.16227,0.47625 0.16581,0.169333 0.49742,0.169333 0.3422,0 0.49389,-0.179917 0.15522,-0.183444 0.15522,-0.469194 V 34.46431 Z" id="path3959" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 272.18172,36.983143 V 34.46431 h 0.3175 v 2.236611 h 1.10067 v 0.282222 z" id="path3961" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,37.708332 h 17.19792 v 3.968752 h -17.19792 z" id="path2110" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="IVEC ALU" id="text2114" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 259.25706,40.952755 h -0.91017 v -0.183444 l 0.29633,-0.06703 v -2.014361 l -0.29633,-0.07056 v -0.183444 h 0.91017 v 0.183444 l -0.29634,0.07056 v 2.014361 l 0.29634,0.06703 z" id="path3964" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 261.52134,38.433922 -0.89958,2.518833 h -0.3175 l -0.89959,-2.518833 h 0.33161 l 0.56798,1.615722 q 0.0564,0.155222 0.0953,0.292805 0.0388,0.134056 0.0635,0.257528 0.0247,-0.123472 0.0635,-0.261055 0.0388,-0.137584 0.0953,-0.296334 l 0.56444,-1.608666 z" id="path3966" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 263.26974,40.952755 h -1.40758 v -2.518833 h 1.40758 v 0.278694 h -1.09008 v 0.786695 h 1.02658 v 0.275166 h -1.02658 v 0.899584 h 1.09008 z" id="path3968" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 264.90536,38.677338 q -0.40569,0 -0.63853,0.271639 -0.23283,0.271639 -0.23283,0.744361 0,0.469195 0.21519,0.744361 0.21873,0.271639 0.65264,0.271639 0.16581,0 0.31398,-0.02822 0.14816,-0.02822 0.28927,-0.07056 v 0.275166 q -0.14111,0.05292 -0.2928,0.07761 -0.14817,0.0247 -0.35631,0.0247 -0.38453,0 -0.64205,-0.15875 -0.25753,-0.15875 -0.38806,-0.451556 -0.127,-0.292805 -0.127,-0.687916 0,-0.381 0.13758,-0.670278 0.14112,-0.292806 0.41275,-0.455084 0.27164,-0.165805 0.6597,-0.165805 0.39864,0 0.69497,0.148167 l -0.127,0.268111 q -0.11642,-0.05292 -0.26105,-0.09525 -0.14112,-0.04233 -0.31045,-0.04233 z" id="path3970" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 268.55512,40.952755 -0.30339,-0.779639 h -0.99836 l -0.29986,0.779639 h -0.32103 l 0.98425,-2.529417 h 0.28575 l 0.98073,2.529417 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102306 -0.0247,-0.07408 -0.0494,-0.151694 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0564,0.215194 -0.0318,0.102306 -0.0529,0.162278 l -0.28575,0.762 z" id="path3972" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 269.22777,40.952755 v -2.518833 h 0.3175 v 2.236611 h 1.10067 v 0.282222 z" id="path3974" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 272.95547,38.433922 v 1.629833 q 0,0.261056 -0.10583,0.472722 -0.10583,0.208139 -0.32456,0.331611 -0.21519,0.119945 -0.55033,0.119945 -0.46919,0 -0.71614,-0.254 -0.24341,-0.257528 -0.24341,-0.677334 v -1.622777 h 0.3175 v 1.633361 q 0,0.306916 0.16227,0.47625 0.16581,0.169333 0.49742,0.169333 0.34219,0 0.49389,-0.179917 0.15522,-0.183444 0.15522,-0.469194 v -1.629833 z" id="path3976" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,41.677082 h 17.19792 v 3.968752 h -17.19792 z" id="path2116" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="IVEC MUL" id="text2120" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 259.56775,44.921509 h -0.91017 v -0.183445 l 0.29634,-0.06703 v -2.014361 l -0.29634,-0.07056 v -0.183444 h 0.91017 v 0.183444 l -0.29633,0.07056 v 2.014361 l 0.29633,0.06703 z" id="path3979" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 261.83203,42.402676 -0.89958,2.518833 h -0.3175 l -0.89958,-2.518833 h 0.33161 l 0.56797,1.615722 q 0.0564,0.155222 0.0952,0.292805 0.0388,0.134056 0.0635,0.257528 0.0247,-0.123472 0.0635,-0.261056 0.0388,-0.137583 0.0953,-0.296333 l 0.56444,-1.608666 z" id="path3981" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 263.58043,44.921509 h -1.40758 v -2.518833 h 1.40758 v 0.278694 h -1.09008 v 0.786694 h 1.02658 v 0.275167 h -1.02658 v 0.899583 h 1.09008 z" id="path3983" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 265.21605,42.646092 q -0.40569,0 -0.63852,0.271639 -0.23284,0.271639 -0.23284,0.744361 0,0.469195 0.2152,0.744361 0.21872,0.271639 0.65264,0.271639 0.1658,0 0.31397,-0.02822 0.14816,-0.02822 0.28928,-0.07056 v 0.275167 q -0.14112,0.05292 -0.29281,0.07761 -0.14817,0.0247 -0.35631,0.0247 -0.38452,0 -0.64205,-0.15875 -0.25753,-0.15875 -0.38806,-0.451556 -0.127,-0.292806 -0.127,-0.687917 0,-0.381 0.13759,-0.670277 0.14111,-0.292806 0.41275,-0.455084 0.27164,-0.165805 0.65969,-0.165805 0.39864,0 0.69497,0.148166 l -0.127,0.268112 q -0.11641,-0.05292 -0.26105,-0.09525 -0.14111,-0.04233 -0.31045,-0.04233 z" id="path3985" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 268.39662,44.921509 -0.82903,-2.208389 h -0.0141 q 0.0106,0.109361 0.0176,0.296333 0.007,0.183445 0.007,0.384528 v 1.527528 h -0.29281 v -2.518833 h 0.4692 l 0.77611,2.063749 h 0.0141 l 0.79022,-2.063749 h 0.46567 v 2.518833 h -0.31398 v -1.548695 q 0,-0.183444 0.007,-0.363361 0.0106,-0.179916 0.0176,-0.292805 h -0.0141 l -0.83961,2.204861 z" id="path3987" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 272.398,42.402676 v 1.629833 q 0,0.261055 -0.10583,0.472722 -0.10583,0.208139 -0.32456,0.331611 -0.21519,0.119945 -0.55033,0.119945 -0.46919,0 -0.71614,-0.254 -0.24342,-0.257528 -0.24342,-0.677334 v -1.622777 h 0.3175 v 1.633361 q 0,0.306916 0.16228,0.47625 0.16581,0.169333 0.49742,0.169333 0.34219,0 0.49389,-0.179917 0.15522,-0.183444 0.15522,-0.469194 v -1.629833 z" id="path3989" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 273.05935,44.921509 v -2.518833 h 0.3175 v 2.236611 h 1.10067 v 0.282222 z" id="path3991" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,45.645832 h 17.19792 v 3.968752 h -17.19792 z" id="path2122" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="FP FMA" id="text2126" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 260.97278,48.894562 h -0.3175 v -2.518833 h 1.40758 v 0.278694 h -1.09008 v 0.892528 h 1.02306 v 0.278694 h -1.02306 z" id="path3994" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 263.15482,46.375729 q 0.49389,0 0.71967,0.194027 0.22578,0.194028 0.22578,0.546806 0,0.208139 -0.0953,0.391583 -0.0917,0.179917 -0.31398,0.292806 -0.21872,0.112889 -0.59619,0.112889 h -0.28928 v 0.980722 h -0.3175 v -2.518833 z m -0.0282,0.271638 h -0.32103 v 0.994834 h 0.254 q 0.35984,0 0.53622,-0.116417 0.17639,-0.116417 0.17639,-0.395111 0,-0.243417 -0.15522,-0.363361 -0.15522,-0.119945 -0.49036,-0.119945 z" id="path3996" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 265.85793,48.894562 h -0.3175 v -2.518833 h 1.40758 v 0.278694 h -1.09008 v 0.892528 h 1.02305 v 0.278694 h -1.02305 z" id="path3998" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 268.48447,48.894562 -0.82903,-2.208389 h -0.0141 q 0.0106,0.109361 0.0176,0.296333 0.007,0.183445 0.007,0.384528 v 1.527528 h -0.2928 v -2.518833 h 0.46919 l 0.77611,2.063749 h 0.0141 l 0.79023,-2.063749 h 0.46566 v 2.518833 h -0.31397 v -1.548695 q 0,-0.183444 0.007,-0.363361 0.0106,-0.179916 0.0176,-0.292805 h -0.0141 l -0.83961,2.204861 z" id="path4000" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 272.15071,48.894562 -0.30339,-0.779639 h -0.99836 l -0.29986,0.779639 h -0.32103 l 0.98425,-2.529417 h 0.28575 l 0.98072,2.529417 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102306 -0.0247,-0.07408 -0.0494,-0.151694 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0564,0.215194 -0.0317,0.102305 -0.0529,0.162278 l -0.28575,0.762 z" id="path4002" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,49.614582 h 17.19792 v 3.968752 h -17.19792 z" id="path2128" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="Bit Scan" id="text2132" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 260.40209,50.340172 h 0.71966 q 0.47273,0 0.71261,0.141111 0.24342,0.137583 0.24342,0.483305 0,0.22225 -0.12347,0.370417 -0.12347,0.144639 -0.35631,0.186972 v 0.01764 q 0.15875,0.02469 0.28575,0.09172 0.13053,0.06703 0.20461,0.1905 0.0741,0.123473 0.0741,0.321028 0,0.342195 -0.23636,0.529167 -0.23284,0.186972 -0.63853,0.186972 h -0.88547 z m 0.3175,1.072444 h 0.46566 q 0.32456,0 0.4445,-0.102305 0.11995,-0.105834 0.11995,-0.310445 0,-0.208139 -0.14817,-0.296333 -0.14464,-0.09172 -0.46567,-0.09172 h -0.41627 z m 0,0.264583 v 0.913695 h 0.508 q 0.33514,0 0.46566,-0.130528 0.13053,-0.130528 0.13053,-0.342194 0,-0.197556 -0.13758,-0.3175 -0.13406,-0.123473 -0.48331,-0.123473 z" id="path4005" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 262.81294,50.259033 q 0.0705,0 0.12347,0.04939 0.0564,0.04586 0.0564,0.148166 0,0.09878 -0.0564,0.148167 -0.0529,0.04939 -0.12347,0.04939 -0.0776,0 -0.13053,-0.04939 -0.0529,-0.04939 -0.0529,-0.148167 0,-0.102305 0.0529,-0.148166 0.0529,-0.04939 0.13053,-0.04939 z m 0.15169,0.709083 v 1.890889 h -0.31044 v -1.890889 z" id="path4007" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 264.19516,52.640283 q 0.0706,0 0.14464,-0.01058 0.0741,-0.01411 0.11995,-0.02822 v 0.236361 q -0.0494,0.0247 -0.14111,0.03881 -0.0917,0.01764 -0.17639,0.01764 -0.14817,0 -0.27517,-0.04939 -0.12347,-0.05292 -0.20108,-0.179917 -0.0776,-0.127 -0.0776,-0.356305 v -1.100667 h -0.26811 v -0.148167 l 0.27163,-0.123472 0.12348,-0.402167 h 0.18344 v 0.433917 h 0.54681 v 0.239889 h -0.54681 v 1.093611 q 0,0.172861 0.0811,0.257528 0.0847,0.08114 0.21519,0.08114 z" id="path4009" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 267.22586,52.185199 q 0,0.335139 -0.24342,0.522112 -0.24342,0.186972 -0.65617,0.186972 -0.21166,0 -0.39158,-0.03175 -0.17992,-0.03175 -0.29986,-0.08819 v -0.303389 q 0.127,0.05645 0.31397,0.102306 0.1905,0.04586 0.39158,0.04586 0.28223,0 0.42334,-0.109361 0.14464,-0.109361 0.14464,-0.296333 0,-0.123473 -0.0529,-0.208139 -0.0529,-0.08467 -0.18344,-0.155222 -0.127,-0.07408 -0.35631,-0.155223 -0.32103,-0.116416 -0.48683,-0.28575 -0.16228,-0.169333 -0.16228,-0.462139 0,-0.201083 0.1023,-0.342194 0.10231,-0.144639 0.28223,-0.22225 0.18344,-0.07761 0.4198,-0.07761 0.20814,0 0.381,0.03881 0.17286,0.03881 0.31397,0.102306 l -0.0988,0.271639 q -0.13053,-0.05644 -0.28575,-0.09525 -0.1517,-0.03881 -0.3175,-0.03881 -0.23636,0 -0.35631,0.102306 -0.11994,0.09878 -0.11994,0.264583 0,0.127 0.0529,0.211667 0.0529,0.08467 0.17286,0.151694 0.11995,0.06703 0.32456,0.144639 0.22225,0.08114 0.37394,0.176389 0.15523,0.09172 0.23284,0.22225 0.0811,0.130528 0.0811,0.328083 z" id="path4011" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 268.44939,52.894283 q -0.25047,0 -0.44803,-0.102306 -0.19403,-0.102305 -0.30692,-0.3175 -0.10936,-0.215194 -0.10936,-0.550333 0,-0.34925 0.11642,-0.567972 0.11642,-0.218723 0.31397,-0.321028 0.20109,-0.102306 0.45509,-0.102306 0.14463,0 0.27869,0.03175 0.13406,0.02822 0.21872,0.07056 l -0.0952,0.257528 q -0.0847,-0.03175 -0.19755,-0.05997 -0.11289,-0.02822 -0.21167,-0.02822 -0.55739,0 -0.55739,0.716139 0,0.342195 0.13406,0.525639 0.13758,0.179917 0.40569,0.179917 0.15522,0 0.27164,-0.03175 0.11994,-0.03175 0.21872,-0.07761 v 0.275166 q -0.0952,0.04939 -0.21166,0.07408 -0.11289,0.02822 -0.27517,0.02822 z" id="path4013" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 270.10204,50.936366 q 0.34572,0 0.51153,0.151695 0.16581,0.151694 0.16581,0.483305 v 1.287639 h -0.22578 l -0.06,-0.268111 h -0.0141 q -0.12347,0.155222 -0.26105,0.229305 -0.13406,0.07408 -0.37395,0.07408 -0.25752,0 -0.42686,-0.134056 -0.16933,-0.137583 -0.16933,-0.426861 0,-0.282222 0.22225,-0.433917 0.22225,-0.155222 0.68439,-0.169333 l 0.32103,-0.01058 v -0.112889 q 0,-0.236361 -0.10231,-0.328083 -0.1023,-0.09172 -0.28928,-0.09172 -0.14816,0 -0.28222,0.04586 -0.13405,0.04233 -0.25047,0.09878 l -0.0953,-0.232833 q 0.12347,-0.06703 0.2928,-0.112889 0.16934,-0.04939 0.35278,-0.04939 z m 0.37042,0.998361 -0.2787,0.01058 q -0.35277,0.01411 -0.49036,0.112888 -0.13405,0.09878 -0.13405,0.278695 0,0.15875 0.0953,0.232833 0.0988,0.07408 0.25047,0.07408 0.23989,0 0.39864,-0.130528 0.15875,-0.134056 0.15875,-0.409222 z" id="path4015" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 272.27355,50.932838 q 0.33867,0 0.51153,0.165806 0.17286,0.162278 0.17286,0.529167 v 1.231194 h -0.30691 v -1.210028 q 0,-0.455083 -0.42334,-0.455083 -0.31397,0 -0.43391,0.176389 -0.11995,0.176389 -0.11995,0.508 v 0.980722 h -0.31044 v -1.890889 h 0.25047 l 0.0459,0.257528 h 0.0176 q 0.0917,-0.148167 0.254,-0.218722 0.16228,-0.07408 0.34219,-0.07408 z" id="path4017" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,4.6354169 h 17.19792 v 3.9687515 h -17.19792 z" id="path2158" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="INT ALU" id="text2162" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 261.00694,7.8669229 h -0.91017 V 7.6834784 l 0.29634,-0.067028 V 5.6020896 L 260.09677,5.531534 V 5.3480896 h 0.91017 V 5.531534 l -0.29633,0.070556 v 2.014361 l 0.29633,0.067028 z" id="path4020" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 263.49347,7.8669229 h -0.37042 l -1.34761,-2.0919722 h -0.0141 q 0.007,0.1234722 0.0176,0.3069167 0.0106,0.1834444 0.0106,0.3774722 v 1.4075833 h -0.2928 V 5.3480896 h 0.36689 l 1.34408,2.0849166 h 0.0141 q -0.004,-0.056444 -0.0106,-0.1693333 -0.004,-0.1128889 -0.0106,-0.2469445 -0.004,-0.1340555 -0.004,-0.2469444 V 5.3480896 h 0.29633 z" id="path4022" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 264.97431,7.8669229 h -0.3175 V 5.626784 h -0.78669 V 5.3480896 h 1.88736 V 5.626784 h -0.78317 z" id="path4024" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 268.63758,7.8669229 268.33419,7.087284 h -0.99836 l -0.29986,0.7796389 h -0.32103 l 0.98425,-2.5294166 h 0.28575 l 0.98072,2.5294166 z m -0.39864,-1.0618611 -0.28222,-0.762 q -0.0106,-0.028222 -0.0353,-0.1023056 -0.0247,-0.074083 -0.0494,-0.1516944 -0.0212,-0.081139 -0.0353,-0.1234722 -0.0247,0.1093611 -0.0564,0.2151944 -0.0317,0.1023056 -0.0529,0.1622778 l -0.28575,0.762 z" id="path4026" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 269.31023,7.8669229 V 5.3480896 h 0.3175 v 2.236611 h 1.10066 v 0.2822223 z" id="path4028" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 273.03793,5.3480896 v 1.6298333 q 0,0.2610555 -0.10583,0.4727222 -0.10584,0.2081389 -0.32456,0.3316111 -0.21519,0.1199444 -0.55033,0.1199444 -0.4692,0 -0.71614,-0.254 -0.24342,-0.2575277 -0.24342,-0.6773333 V 5.3480896 h 0.3175 v 1.6333611 q 0,0.3069166 0.16228,0.4762499 0.1658,0.1693334 0.49742,0.1693334 0.34219,0 0.49388,-0.1799167 0.15523,-0.1834444 0.15523,-0.4691944 V 5.3480896 Z" id="path4030" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 1109.043,229.39453 v 205 h 15 v -190 h 40 v -15 h -40 z" id="path516" style="fill:#cccccc;stroke:none;stroke-width:0.61721355px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 257.96875,8.6041684 h 17.19792 v 9.2604136 h -17.19792 z" id="path2164" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.28578261px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="VECSHUFFLE" id="text2168" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 265.54589,9.858919 -0.89958,2.518833 h -0.3175 l -0.89959,-2.518833 h 0.33161 l 0.56798,1.615722 q 0.0564,0.155222 0.0953,0.292806 0.0388,0.134055 0.0635,0.257528 0.0247,-0.123473 0.0635,-0.261056 0.0388,-0.137583 0.0953,-0.296333 l 0.56444,-1.608667 z" id="path4033" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 267.29429,12.377752 h -1.40758 V 9.858919 h 1.40758 v 0.278694 h -1.09008 v 0.786695 h 1.02658 v 0.275167 h -1.02658 v 0.899583 h 1.09008 z" id="path4035" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 268.92991,10.102336 q -0.40569,0 -0.63853,0.271639 -0.23283,0.271638 -0.23283,0.744361 0,0.469194 0.21519,0.744361 0.21873,0.271639 0.65264,0.271639 0.16581,0 0.31397,-0.02822 0.14817,-0.02822 0.28928,-0.07056 v 0.275167 q -0.14111,0.05292 -0.2928,0.07761 -0.14817,0.02469 -0.35631,0.02469 -0.38453,0 -0.64205,-0.15875 -0.25753,-0.15875 -0.38806,-0.451555 -0.127,-0.292806 -0.127,-0.687917 0,-0.381 0.13758,-0.670278 0.14111,-0.292805 0.41275,-0.4550832 0.27164,-0.1658055 0.6597,-0.1658055 0.39864,0 0.69497,0.1481666 l -0.127,0.2681111 q -0.11642,-0.05292 -0.26106,-0.09525 -0.14111,-0.04233 -0.31044,-0.04233 z" id="path4037" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 261.05572,15.93728 q 0,0.335139 -0.24342,0.522111 -0.24342,0.186973 -0.65617,0.186973 -0.21166,0 -0.39158,-0.03175 -0.17992,-0.03175 -0.29986,-0.08819 V 16.22303 q 0.127,0.05645 0.31397,0.102306 0.1905,0.04586 0.39159,0.04586 0.28222,0 0.42333,-0.109361 0.14464,-0.109361 0.14464,-0.296333 0,-0.123473 -0.0529,-0.208139 -0.0529,-0.08467 -0.18344,-0.155223 -0.127,-0.07408 -0.35631,-0.155222 -0.32103,-0.116416 -0.48683,-0.28575 -0.16228,-0.169333 -0.16228,-0.462139 0,-0.201083 0.10231,-0.342194 0.1023,-0.144639 0.28222,-0.22225 0.18344,-0.07761 0.4198,-0.07761 0.20814,0 0.381,0.0388 0.17286,0.03881 0.31398,0.102306 l -0.0988,0.271639 q -0.13053,-0.05645 -0.28575,-0.09525 -0.1517,-0.03881 -0.3175,-0.03881 -0.23636,0 -0.35631,0.102306 -0.11994,0.09878 -0.11994,0.264583 0,0.127 0.0529,0.211667 0.0529,0.08467 0.17287,0.151694 0.11994,0.06703 0.32455,0.144639 0.22225,0.08114 0.37395,0.176389 0.15522,0.09172 0.23283,0.22225 0.0811,0.130528 0.0811,0.328083 z" id="path4039" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 263.48928,16.611086 h -0.3175 v -1.17475 h -1.29117 v 1.17475 h -0.3175 v -2.518833 h 0.3175 v 1.065388 h 1.29117 v -1.065388 h 0.3175 z" id="path4041" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 266.09008,14.092253 v 1.629833 q 0,0.261055 -0.10584,0.472722 -0.10583,0.208139 -0.32455,0.331611 -0.2152,0.119945 -0.55034,0.119945 -0.46919,0 -0.71613,-0.254 -0.24342,-0.257528 -0.24342,-0.677334 v -1.622777 h 0.3175 v 1.633361 q 0,0.306916 0.16228,0.47625 0.1658,0.169333 0.49741,0.169333 0.3422,0 0.49389,-0.179917 0.15522,-0.183444 0.15522,-0.469194 v -1.629833 z" id="path4043" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 267.06893,16.611086 h -0.3175 v -2.518833 h 1.40758 v 0.278694 h -1.09008 v 0.892528 h 1.02305 v 0.278694 h -1.02305 z" id="path4045" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 268.90172,16.611086 h -0.3175 v -2.518833 h 1.40758 v 0.278694 h -1.09008 v 0.892528 h 1.02305 v 0.278694 h -1.02305 z" id="path4047" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 270.41701,16.611086 v -2.518833 h 0.3175 v 2.236611 h 1.10066 v 0.282222 z" id="path4049" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 273.67116,16.611086 h -1.40758 v -2.518833 h 1.40758 v 0.278694 h -1.09008 v 0.786694 h 1.02658 v 0.275167 h -1.02658 v 0.899583 h 1.09008 z" id="path4051" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,17.864582 h 17.19792 v 3.968752 h -17.19792 z" id="path2182" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="IVEC ALU" id="text2186" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 259.91398,21.11331 h -0.91017 v -0.183445 l 0.29634,-0.06703 v -2.014361 l -0.29634,-0.07056 v -0.183444 h 0.91017 v 0.183444 l -0.29633,0.07056 v 2.014361 l 0.29633,0.06703 z" id="path4054" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 262.17826,18.594477 -0.89958,2.518833 h -0.3175 l -0.89959,-2.518833 h 0.33162 l 0.56797,1.615722 q 0.0564,0.155222 0.0952,0.292805 0.0388,0.134056 0.0635,0.257528 0.0247,-0.123472 0.0635,-0.261055 0.0388,-0.137584 0.0953,-0.296334 l 0.56444,-1.608666 z" id="path4056" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 263.92666,21.11331 h -1.40758 v -2.518833 h 1.40758 v 0.278694 h -1.09008 v 0.786694 h 1.02658 v 0.275167 h -1.02658 v 0.899583 h 1.09008 z" id="path4058" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 265.56228,18.837893 q -0.40569,0 -0.63853,0.271639 -0.23283,0.271639 -0.23283,0.744361 0,0.469195 0.2152,0.744361 0.21872,0.271639 0.65263,0.271639 0.16581,0 0.31398,-0.02822 0.14816,-0.02822 0.28927,-0.07056 v 0.275167 q -0.14111,0.05292 -0.2928,0.07761 -0.14817,0.0247 -0.35631,0.0247 -0.38452,0 -0.64205,-0.15875 -0.25753,-0.15875 -0.38806,-0.451556 -0.127,-0.292805 -0.127,-0.687917 0,-0.381 0.13759,-0.670277 0.14111,-0.292806 0.41275,-0.455084 0.27163,-0.165805 0.65969,-0.165805 0.39864,0 0.69497,0.148166 l -0.127,0.268112 q -0.11641,-0.05292 -0.26105,-0.09525 -0.14111,-0.04233 -0.31045,-0.04233 z" id="path4060" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 269.21204,21.11331 -0.30338,-0.779639 h -0.99837 l -0.29986,0.779639 h -0.32102 l 0.98425,-2.529417 h 0.28575 l 0.98072,2.529417 z m -0.39863,-1.061861 -0.28223,-0.762 q -0.0106,-0.02822 -0.0353,-0.102306 -0.0247,-0.07408 -0.0494,-0.151694 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0565,0.215194 -0.0317,0.102306 -0.0529,0.162278 l -0.28575,0.762 z" id="path4062" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 269.88469,21.11331 v -2.518833 h 0.3175 v 2.236611 h 1.10067 v 0.282222 z" id="path4064" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 273.6124,18.594477 v 1.629833 q 0,0.261055 -0.10584,0.472722 -0.10583,0.208139 -0.32455,0.331611 -0.2152,0.119945 -0.55034,0.119945 -0.46919,0 -0.71614,-0.254 -0.24341,-0.257528 -0.24341,-0.677334 v -1.622777 h 0.3175 v 1.633361 q 0,0.306916 0.16228,0.47625 0.1658,0.169333 0.49741,0.169333 0.3422,0 0.49389,-0.179917 0.15522,-0.183444 0.15522,-0.469194 v -1.629833 z" id="path4066" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,21.833332 h 17.19792 v 3.968752 h -17.19792 z" id="path2188" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="LEA" id="text2192" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 263.96087,25.077753 V 22.55892 h 0.3175 v 2.236611 h 1.10067 v 0.282222 z" id="path4069" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 267.21502,25.077753 h -1.40758 V 22.55892 h 1.40758 v 0.278694 h -1.09008 v 0.786695 h 1.02658 v 0.275166 h -1.02658 v 0.899584 h 1.09008 z" id="path4071" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 269.35159,25.077753 -0.30339,-0.779639 h -0.99836 l -0.29986,0.779639 h -0.32103 l 0.98425,-2.529417 h 0.28575 l 0.98072,2.529417 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102306 -0.0247,-0.07408 -0.0494,-0.151694 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0564,0.215194 -0.0318,0.102306 -0.0529,0.162278 l -0.28575,0.762 z" id="path4073" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 1084.043,159.39453 v 15 260 h 15 v -260 h 65 v -15 z" id="path518" style="fill:#cccccc;stroke:none;stroke-width:0.87287194px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 257.96875,-7.2708331 h 17.19792 v 3.9687525 h -17.19792 z" id="path2202" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="INT ALU" id="text2206" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 261.00697,-4.0393267 h -0.91017 v -0.1834444 l 0.29634,-0.067028 v -2.014361 l -0.29634,-0.070556 v -0.1834444 h 0.91017 v 0.1834444 l -0.29633,0.070556 v 2.014361 l 0.29633,0.067028 z" id="path4076" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 263.4935,-4.0393267 h -0.37041 l -1.34762,-2.0919721 h -0.0141 q 0.007,0.1234722 0.0176,0.3069166 0.0106,0.1834445 0.0106,0.3774722 v 1.4075833 h -0.29281 v -2.5188332 h 0.36689 l 1.34408,2.0849166 h 0.0141 q -0.004,-0.056444 -0.0106,-0.1693333 -0.004,-0.1128889 -0.0106,-0.2469445 -0.004,-0.1340555 -0.004,-0.2469444 v -1.4216944 h 0.29633 z" id="path4078" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 264.97434,-4.0393267 h -0.3175 v -2.2401388 h -0.78669 v -0.2786944 h 1.88736 v 0.2786944 h -0.78317 z" id="path4080" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 268.63761,-4.0393267 -0.30339,-0.7796388 h -0.99836 l -0.29986,0.7796388 h -0.32103 l 0.98425,-2.5294166 h 0.28575 l 0.98072,2.5294166 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.028222 -0.0353,-0.1023056 -0.0247,-0.074083 -0.0494,-0.1516944 -0.0212,-0.081139 -0.0353,-0.1234722 -0.0247,0.1093611 -0.0564,0.2151944 -0.0317,0.1023056 -0.0529,0.1622778 l -0.28575,0.762 z" id="path4082" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 269.31026,-4.0393267 v -2.5188332 h 0.3175 v 2.236611 h 1.10066 v 0.2822222 z" id="path4084" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 273.03796,-6.5581599 v 1.6298333 q 0,0.2610555 -0.10583,0.4727222 -0.10584,0.2081388 -0.32456,0.3316111 -0.21519,0.1199444 -0.55033,0.1199444 -0.4692,0 -0.71614,-0.254 -0.24342,-0.2575278 -0.24342,-0.6773333 v -1.6227777 h 0.3175 v 1.633361 q 0,0.3069167 0.16228,0.47625 0.1658,0.1693334 0.49742,0.1693334 0.34219,0 0.49388,-0.1799167 0.15523,-0.1834444 0.15523,-0.4691944 v -1.6298333 z" id="path4086" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 257.96875,-3.3020826 h 17.19792 v 3.968752 h -17.19792 z" id="path2208" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="Branch" id="text2212" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 260.98519,-2.5773585 h 0.71967 q 0.47272,0 0.71261,0.1411111 0.24342,0.1375833 0.24342,0.4833056 0,0.2222499 -0.12347,0.3704166 -0.12348,0.1446389 -0.35631,0.1869722 v 0.017639 q 0.15875,0.024694 0.28575,0.091722 0.13053,0.067028 0.20461,0.1905 0.0741,0.12347224 0.0741,0.32102779 0,0.34219444 -0.23636,0.52916666 -0.23283,0.18697221 -0.63852,0.18697221 h -0.88548 z m 0.3175,1.0724444 h 0.46567 q 0.32456,0 0.4445,-0.1023055 0.11994,-0.1058334 0.11994,-0.3104445 0,-0.2081389 -0.14816,-0.2963333 -0.14464,-0.091722 -0.46567,-0.091722 h -0.41628 z m 0,0.2645833 v 0.91369446 h 0.508 q 0.33514,0 0.46567,-0.13052778 0.13053,-0.13052777 0.13053,-0.34219443 0,-0.19755555 -0.13759,-0.31749995 -0.13405,-0.1234723 -0.4833,-0.1234723 z" id="path4089" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 264.11924,-1.9846918 q 0.0529,0 0.11289,0.00706 0.0635,0.00353 0.10936,0.014111 l -0.0388,0.28575 q -0.0459,-0.010583 -0.1023,-0.017639 -0.0529,-0.00706 -0.10231,-0.00706 -0.14464,0 -0.27164,0.081139 -0.127,0.077611 -0.20461,0.2222499 -0.0741,0.1411112 -0.0741,0.3316111 v 1.00894446 h -0.31045 V -1.9494141 h 0.254 l 0.0353,0.3457222 h 0.0141 q 0.0917,-0.1552222 0.23636,-0.2681111 0.14464,-0.1128888 0.3422,-0.1128888 z" id="path4091" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 265.33836,-1.9811641 q 0.34572,0 0.51153,0.1516945 0.1658,0.1516944 0.1658,0.4833055 v 1.28763886 h -0.22577 l -0.06,-0.2681111 h -0.0141 q -0.12347,0.15522222 -0.26105,0.22930555 -0.13406,0.07408333 -0.37395,0.07408333 -0.25752,0 -0.42686,-0.13405555 -0.16933,-0.13758333 -0.16933,-0.4268611 0,-0.28222222 0.22225,-0.43391669 0.22225,-0.1552222 0.68439,-0.1693333 l 0.32102,-0.010583 v -0.1128889 q 0,-0.2363611 -0.1023,-0.3280833 -0.10231,-0.091722 -0.28928,-0.091722 -0.14816,0 -0.28222,0.045861 -0.13406,0.042333 -0.25047,0.098778 l -0.0952,-0.2328333 q 0.12347,-0.067028 0.2928,-0.1128889 0.16934,-0.049389 0.35278,-0.049389 z m 0.37042,0.99836111 -0.2787,0.0105833 q -0.35277,0.0141111 -0.49036,0.11288889 -0.13405,0.0987778 -0.13405,0.27869444 0,0.15874999 0.0952,0.23283332 0.0988,0.0740833 0.25047,0.0740833 0.23989,0 0.39864,-0.13052777 0.15875,-0.13405555 0.15875,-0.40922221 z" id="path4093" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 267.50987,-1.9846918 q 0.33867,0 0.51153,0.1658055 0.17286,0.1622778 0.17286,0.5291667 v 1.23119436 h -0.30691 V -1.268553 q 0,-0.4550833 -0.42334,-0.4550833 -0.31397,0 -0.43391,0.1763889 -0.11995,0.1763889 -0.11995,0.508 v 0.98072216 h -0.31044 V -1.9494141 h 0.25047 l 0.0459,0.2575278 h 0.0176 q 0.0917,-0.1481667 0.254,-0.2187222 0.16228,-0.074083 0.34219,-0.074083 z" id="path4095" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 269.53548,-0.02324746 q -0.25047,0 -0.44803,-0.10230555 -0.19403,-0.10230556 -0.30692,-0.31749999 -0.10936,-0.21519444 -0.10936,-0.55033332 0,-0.34924998 0.11642,-0.56797218 0.11642,-0.2187222 0.31397,-0.3210278 0.20109,-0.1023055 0.45509,-0.1023055 0.14463,0 0.27869,0.03175 0.13406,0.028222 0.21872,0.070556 l -0.0952,0.2575278 q -0.0847,-0.03175 -0.19755,-0.059972 -0.11289,-0.028222 -0.21167,-0.028222 -0.55739,0 -0.55739,0.7161389 0,0.34219444 0.13406,0.52563887 0.13758,0.17991667 0.40569,0.17991667 0.15522,0 0.27164,-0.03175 0.11994,-0.03175 0.21872,-0.0776111 v 0.27516666 q -0.0953,0.04938888 -0.21166,0.07408333 -0.11289,0.02822222 -0.27517,0.02822222 z" id="path4097" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 270.78244,-2.7396363 v 0.7866945 q 0,0.1411111 -0.0176,0.2645833 h 0.0212 q 0.0917,-0.1446389 0.24694,-0.2187222 0.15875,-0.074083 0.34219,-0.074083 0.34573,0 0.51859,0.1658056 0.17286,0.1622778 0.17286,0.5256389 v 1.23119436 h -0.30692 V -1.268553 q 0,-0.4550833 -0.42333,-0.4550833 -0.3175,0 -0.43745,0.1799167 -0.11641,0.1763888 -0.11641,0.5079999 v 0.97719446 h -0.31045 V -2.7396363 Z" id="path4099" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.5625,4.6354164 h 17.19792 v 3.968752 H 182.5625 Z" id="path2244" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="AGU" id="text2248" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 189.50716,7.8669219 189.20378,7.087283 h -0.99837 l -0.29986,0.7796389 h -0.32102 l 0.98425,-2.5294166 h 0.28575 l 0.98072,2.5294166 z m -0.39863,-1.0618611 -0.28223,-0.762 q -0.0106,-0.028222 -0.0353,-0.1023055 -0.0247,-0.074083 -0.0494,-0.1516944 -0.0212,-0.081139 -0.0353,-0.1234723 -0.0247,0.1093611 -0.0564,0.2151945 -0.0318,0.1023055 -0.0529,0.1622777 l -0.28575,0.762 z" id="path4102" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 191.20452,6.5369497 h 0.87136 v 1.2347222 q -0.20461,0.067028 -0.41275,0.098778 -0.20814,0.03175 -0.47272,0.03175 -0.39158,0 -0.65969,-0.1552222 -0.26812,-0.15875 -0.40923,-0.4480278 -0.13758,-0.2928056 -0.13758,-0.6914444 0,-0.3951111 0.15522,-0.6843889 0.15522,-0.2892778 0.4445,-0.4480278 0.29281,-0.1622777 0.70556,-0.1622777 0.21166,0 0.39864,0.038806 0.1905,0.038806 0.35277,0.1093611 l -0.11994,0.2751667 q -0.13406,-0.059972 -0.30339,-0.1023056 -0.1658,-0.042333 -0.34572,-0.042333 -0.45156,0 -0.70556,0.2716389 -0.25047,0.2716389 -0.25047,0.7443611 0,0.2998611 0.0953,0.5326944 0.0988,0.2293055 0.30692,0.3598333 0.20814,0.127 0.5468,0.127 0.16581,0 0.28223,-0.017639 0.11641,-0.017639 0.21166,-0.042333 V 6.8191719 h -0.55386 z" id="path4104" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 194.59653,5.3480886 v 1.6298333 q 0,0.2610556 -0.10583,0.4727222 -0.10583,0.2081389 -0.32455,0.3316111 -0.2152,0.1199445 -0.55034,0.1199445 -0.46919,0 -0.71614,-0.254 -0.24341,-0.2575278 -0.24341,-0.6773333 V 5.3480886 h 0.3175 v 1.6333611 q 0,0.3069167 0.16227,0.47625 0.16581,0.1693333 0.49742,0.1693333 0.3422,0 0.49389,-0.1799166 0.15522,-0.1834445 0.15522,-0.4691945 V 5.3480886 Z" id="path4106" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.5625,8.6041664 h 17.19792 V 12.572919 H 182.5625 Z" id="path2250" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="LOAD" id="text2254" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 186.78468,11.847724 V 9.3288907 h 0.3175 v 2.2366113 h 1.10067 v 0.282222 z" id="path4109" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 190.76016,10.58478 q 0,0.391583 -0.13406,0.684388 -0.13053,0.289278 -0.38806,0.451556 -0.25752,0.162278 -0.63852,0.162278 -0.39159,0 -0.65264,-0.162278 -0.25753,-0.162278 -0.38453,-0.455083 -0.127,-0.292806 -0.127,-0.684389 0,-0.388056 0.127,-0.6773335 0.127,-0.2892778 0.38453,-0.4515556 0.26105,-0.1622778 0.65616,-0.1622778 0.37748,0 0.635,0.1622778 0.25753,0.15875 0.38806,0.4515556 0.13406,0.2892775 0.13406,0.6808615 z m -1.98967,0 q 0,0.47625 0.20108,0.751416 0.20109,0.271639 0.62795,0.271639 0.43039,0 0.62794,-0.271639 0.19756,-0.275166 0.19756,-0.751416 0,-0.47625 -0.19756,-0.7443615 -0.19755,-0.2716389 -0.62442,-0.2716389 -0.42686,0 -0.63147,0.2716389 -0.20108,0.2681115 -0.20108,0.7443615 z" id="path4111" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 192.82997,11.847724 -0.30339,-0.779639 h -0.99836 l -0.29986,0.779639 h -0.32103 l 0.98425,-2.5294166 h 0.28575 l 0.98072,2.5294166 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.028222 -0.0353,-0.1023056 -0.0247,-0.074083 -0.0494,-0.1516945 -0.0212,-0.081139 -0.0353,-0.1234722 -0.0247,0.1093611 -0.0564,0.2151944 -0.0318,0.1023056 -0.0529,0.1622779 l -0.28575,0.762 z" id="path4113" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 195.52051,10.563613 q 0,0.638528 -0.34925,0.963083 -0.34573,0.321028 -0.96662,0.321028 h -0.70202 V 9.3288907 h 0.77611 q 0.381,0 0.65969,0.1411111 0.2787,0.1411111 0.43039,0.4162778 0.1517,0.2716384 0.1517,0.6773334 z m -0.33514,0.01058 q 0,-0.504472 -0.25048,-0.7373053 -0.24694,-0.2363611 -0.70202,-0.2363611 h -0.41275 v 1.9755554 h 0.34219 q 1.02306,0 1.02306,-1.001889 z" id="path4115" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 944.04297,119.39453 v 15 h 90.00003 v 300.45508 h 15 V 119.39453 h -15 z" id="path470" style="fill:#cccccc;stroke:none;stroke-width:0.92582023px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 182.5625,-15.208334 h 17.19792 v 3.968752 H 182.5625 Z" id="path2280" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="STORE" id="text2284" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 187.65015,-12.650634 q 0,0.335139 -0.24342,0.522111 -0.24342,0.186972 -0.65617,0.186972 -0.21166,0 -0.39158,-0.03175 -0.17992,-0.03175 -0.29986,-0.08819 v -0.303389 q 0.127,0.05644 0.31397,0.102305 0.1905,0.04586 0.39159,0.04586 0.28222,0 0.42333,-0.109362 0.14464,-0.109361 0.14464,-0.296333 0,-0.123472 -0.0529,-0.208139 -0.0529,-0.08467 -0.18344,-0.155222 -0.127,-0.07408 -0.35631,-0.155222 -0.32103,-0.116417 -0.48683,-0.28575 -0.16228,-0.169334 -0.16228,-0.462139 0,-0.201083 0.10231,-0.342195 0.1023,-0.144638 0.28222,-0.22225 0.18344,-0.07761 0.4198,-0.07761 0.20814,0 0.381,0.03881 0.17286,0.0388 0.31398,0.102305 l -0.0988,0.271639 q -0.13053,-0.05644 -0.28575,-0.09525 -0.1517,-0.0388 -0.3175,-0.0388 -0.23636,0 -0.35631,0.102305 -0.11994,0.09878 -0.11994,0.264584 0,0.127 0.0529,0.211666 0.0529,0.08467 0.17287,0.151695 0.11994,0.06703 0.32455,0.144639 0.22225,0.08114 0.37395,0.176389 0.15522,0.09172 0.23283,0.22225 0.0811,0.130527 0.0811,0.328083 z" id="path4118" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 188.95482,-11.976829 h -0.3175 v -2.240138 h -0.7867 v -0.278695 h 1.88737 v 0.278695 h -0.78317 z" id="path4120" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 192.25015,-13.239773 q 0,0.391583 -0.13406,0.684389 -0.13052,0.289278 -0.38805,0.451555 -0.25753,0.162278 -0.63853,0.162278 -0.39158,0 -0.65264,-0.162278 -0.25753,-0.162277 -0.38453,-0.455083 -0.127,-0.292805 -0.127,-0.684389 0,-0.388055 0.127,-0.677333 0.127,-0.289278 0.38453,-0.451556 0.26106,-0.162277 0.65617,-0.162277 0.37747,0 0.635,0.162277 0.25753,0.15875 0.38805,0.451556 0.13406,0.289278 0.13406,0.680861 z m -1.98967,0 q 0,0.47625 0.20109,0.751417 0.20108,0.271639 0.62794,0.271639 0.43039,0 0.62794,-0.271639 0.19756,-0.275167 0.19756,-0.751417 0,-0.47625 -0.19756,-0.744361 -0.19755,-0.271639 -0.62441,-0.271639 -0.42686,0 -0.63147,0.271639 -0.20109,0.268111 -0.20109,0.744361 z" id="path4122" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 193.50339,-14.495662 q 0.4692,0 0.69145,0.179917 0.22577,0.176389 0.22577,0.536222 0,0.201083 -0.0741,0.335139 -0.0741,0.134055 -0.1905,0.215194 -0.11289,0.07761 -0.23989,0.123473 l 0.69145,1.128888 h -0.37042 l -0.61031,-1.040694 h -0.50094 v 1.040694 h -0.3175 v -2.518833 z m -0.0176,0.275167 h -0.35983 v 0.934861 h 0.37747 q 0.30692,0 0.44803,-0.119945 0.14111,-0.123472 0.14111,-0.359833 0,-0.246944 -0.14817,-0.34925 -0.14816,-0.105833 -0.45861,-0.105833 z" id="path4124" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 196.40708,-11.976829 h -1.40758 v -2.518833 h 1.40758 v 0.278695 H 195.317 v 0.786694 h 1.02658 v 0.275167 H 195.317 v 0.899583 h 1.09008 z" id="path4126" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 1059.043,119.39453 v 15 300 h 15 v -300 h 90 v -15 z" id="path520" style="fill:#cccccc;stroke:none;stroke-width:1.00000048px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 257.96875,-15.208334 h 17.19792 v 3.968752 h -17.19792 z" id="path2298" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="AGU" id="text2302" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 264.9134,-11.976828 -0.30339,-0.779638 h -0.99836 l -0.29986,0.779638 h -0.32103 l 0.98425,-2.529416 h 0.28575 l 0.98072,2.529416 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102305 -0.0247,-0.07408 -0.0494,-0.151695 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0564,0.215195 -0.0317,0.102305 -0.0529,0.162277 l -0.28575,0.762 z" id="path4129" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 266.61076,-13.3068 h 0.87136 v 1.234722 q -0.20461,0.06703 -0.41275,0.09878 -0.20814,0.03175 -0.47273,0.03175 -0.39158,0 -0.65969,-0.155222 -0.26811,-0.15875 -0.40922,-0.448028 -0.13758,-0.292805 -0.13758,-0.691444 0,-0.395111 0.15522,-0.684389 0.15522,-0.289278 0.4445,-0.448028 0.2928,-0.162278 0.70555,-0.162278 0.21167,0 0.39864,0.03881 0.1905,0.0388 0.35278,0.109361 l -0.11995,0.275167 q -0.13405,-0.05997 -0.30338,-0.102306 -0.16581,-0.04233 -0.34573,-0.04233 -0.45155,0 -0.70555,0.271639 -0.25047,0.271639 -0.25047,0.744361 0,0.299861 0.0952,0.532694 0.0988,0.229306 0.30691,0.359834 0.20814,0.126999 0.54681,0.126999 0.1658,0 0.28222,-0.01764 0.11642,-0.01764 0.21167,-0.04233 v -0.747889 h -0.55386 z" id="path4131" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 270.00277,-14.495661 v 1.629833 q 0,0.261056 -0.10583,0.472723 -0.10584,0.208138 -0.32456,0.331611 -0.21519,0.119944 -0.55033,0.119944 -0.4692,0 -0.71614,-0.254 -0.24342,-0.257528 -0.24342,-0.677333 v -1.622778 h 0.3175 v 1.633361 q 0,0.306917 0.16228,0.47625 0.1658,0.169333 0.49742,0.169333 0.34219,0 0.49388,-0.179916 0.15523,-0.183445 0.15523,-0.469195 v -1.629833 z" id="path4133" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Execution Units" id="text2318" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 218.67979,-17.895508 h -1.6891 v -3.0226 h 1.6891 v 0.334434 h -1.3081 v 0.944033 h 1.2319 v 0.3302 h -1.2319 v 1.0795 h 1.3081 z" id="path4136" style="stroke-width:0.26458332"/>
+<path d="m 219.83397,-19.055441 -0.78317,-1.109133 h 0.42333 l 0.5842,0.855133 0.57997,-0.855133 h 0.4191 l -0.78317,1.109133 0.8255,1.159933 h -0.42333 l -0.61807,-0.905933 -0.62653,0.905933 h -0.4191 z" id="path4138" style="stroke-width:0.26458332"/>
+<path d="m 222.33064,-20.206908 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55364 q 0.008,0.385233 0.19474,0.588433 0.1905,0.198967 0.52916,0.198967 0.2159,0 0.381,-0.0381 0.16934,-0.04233 0.34714,-0.118534 v 0.325967 q -0.17357,0.0762 -0.3429,0.110067 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131234 -0.24553,-0.131233 -0.38523,-0.389466 -0.13547,-0.262467 -0.13547,-0.639234 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35136,-0.410633 0.2286,-0.143934 0.52917,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287866 -0.13547,-0.465666 -0.13123,-0.182034 -0.41486,-0.182034 z" id="path4140" style="stroke-width:0.26458332"/>
+<path d="m 224.75402,-17.853174 q -0.30056,0 -0.53763,-0.122767 -0.23283,-0.122767 -0.3683,-0.381 -0.13123,-0.258233 -0.13123,-0.6604 0,-0.4191 0.1397,-0.681567 0.1397,-0.262466 0.37676,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.17357,0 0.33444,0.0381 0.16086,0.03387 0.26246,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.23706,-0.07197 -0.13547,-0.03387 -0.254,-0.03387 -0.66887,0 -0.66887,0.859367 0,0.410633 0.16087,0.630766 0.1651,0.2159 0.48683,0.2159 0.18627,0 0.32597,-0.0381 0.14393,-0.0381 0.26246,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.13546,0.03387 -0.3302,0.03387 z" id="path4142" style="stroke-width:0.26458332"/>
+<path d="m 227.77437,-20.164574 v 2.269066 h -0.3048 l -0.055,-0.300566 h -0.0169 q -0.11007,0.1778 -0.3048,0.262466 -0.19474,0.08043 -0.41487,0.08043 -0.41063,0 -0.61806,-0.194734 -0.20744,-0.198966 -0.20744,-0.630766 v -1.4859 h 0.37677 v 1.4605 q 0,0.541866 0.50377,0.541866 0.37676,0 0.52069,-0.211666 0.14817,-0.211667 0.14817,-0.6096 v -1.1811 z" id="path4144" style="stroke-width:0.26458332"/>
+<path d="m 229.24837,-18.157974 q 0.0847,0 0.17357,-0.0127 0.0889,-0.01693 0.14393,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16933,0.04657 -0.11007,0.02117 -0.21167,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14817,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32174 v -0.1778 l 0.32597,-0.148166 0.14817,-0.4826 h 0.22013 v 0.5207 h 0.65617 v 0.287866 h -0.65617 v 1.312334 q 0,0.207433 0.0974,0.309033 0.1016,0.09737 0.25823,0.09737 z" id="path4146" style="stroke-width:0.26458332"/>
+<path d="m 230.21072,-21.015474 q 0.0847,0 0.14817,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14817,0.05927 -0.0931,0 -0.15663,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15663,-0.05927 z m 0.18204,0.8509 v 2.269066 h -0.37254 v -2.269066 z" id="path4148" style="stroke-width:0.26458332"/>
+<path d="m 233.08436,-19.034274 q 0,0.563033 -0.28786,0.872066 -0.28364,0.309034 -0.77047,0.309034 -0.30057,0 -0.53763,-0.135467 -0.23284,-0.1397 -0.3683,-0.402167 -0.13547,-0.2667 -0.13547,-0.643466 0,-0.563034 0.28363,-0.867834 0.28364,-0.3048 0.77047,-0.3048 0.30903,0 0.54187,0.1397 0.23706,0.135467 0.3683,0.397934 0.13546,0.258233 0.13546,0.635 z m -1.7145,0 q 0,0.402166 0.15664,0.639233 0.16086,0.232833 0.508,0.232833 0.3429,0 0.50376,-0.232833 0.16087,-0.237067 0.16087,-0.639233 0,-0.402167 -0.16087,-0.630767 -0.16086,-0.2286 -0.508,-0.2286 -0.34713,0 -0.50376,0.2286 -0.15664,0.2286 -0.15664,0.630767 z" id="path4150" style="stroke-width:0.26458332"/>
+<path d="m 234.76698,-20.206908 q 0.4064,0 0.61383,0.198967 0.20744,0.194733 0.20744,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.37677,0 -0.5207,0.211667 -0.14394,0.211666 -0.14394,0.6096 v 1.176866 h -0.37253 v -2.269066 h 0.30057 l 0.055,0.309033 h 0.0212 q 0.11006,-0.1778 0.3048,-0.262467 0.19473,-0.0889 0.41063,-0.0889 z" id="path4152" style="stroke-width:0.26458332"/>
+<path d="m 239.73672,-20.918108 v 1.9558 q 0,0.313267 -0.127,0.567267 -0.127,0.249767 -0.38947,0.397933 -0.25823,0.143934 -0.6604,0.143934 -0.56303,0 -0.85937,-0.3048 -0.2921,-0.309034 -0.2921,-0.8128 v -1.947334 h 0.381 v 1.960034 q 0,0.3683 0.19474,0.5715 0.19896,0.2032 0.5969,0.2032 0.41063,0 0.59266,-0.2159 0.18627,-0.220134 0.18627,-0.563034 v -1.9558 z" id="path4154" style="stroke-width:0.26458332"/>
+<path d="m 241.57173,-20.206908 q 0.4064,0 0.61384,0.198967 0.20743,0.194733 0.20743,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.37677,0 -0.5207,0.211667 -0.14393,0.211666 -0.14393,0.6096 v 1.176866 h -0.37254 v -2.269066 h 0.30057 l 0.055,0.309033 h 0.0212 q 0.11007,-0.1778 0.3048,-0.262467 0.19473,-0.0889 0.41063,-0.0889 z" id="path4156" style="stroke-width:0.26458332"/>
+<path d="m 243.28279,-21.015474 q 0.0847,0 0.14817,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14817,0.05927 -0.0931,0 -0.15663,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15663,-0.05927 z m 0.18204,0.8509 v 2.269066 h -0.37254 v -2.269066 z" id="path4158" style="stroke-width:0.26458332"/>
+<path d="m 244.94147,-18.157974 q 0.0847,0 0.17356,-0.0127 0.0889,-0.01693 0.14394,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16934,0.04657 -0.11006,0.02117 -0.21166,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14817,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32173 v -0.1778 l 0.32597,-0.148166 0.14816,-0.4826 h 0.22014 v 0.5207 h 0.65616 v 0.287866 h -0.65616 v 1.312334 q 0,0.207433 0.0974,0.309033 0.1016,0.09737 0.25824,0.09737 z" id="path4160" style="stroke-width:0.26458332"/>
+<path d="m 247.19076,-18.522041 q 0,0.3302 -0.24554,0.499533 -0.24553,0.169334 -0.6604,0.169334 -0.23706,0 -0.41063,-0.0381 -0.16933,-0.0381 -0.30057,-0.105834 v -0.338666 q 0.13547,0.06773 0.32597,0.127 0.19473,0.05503 0.3937,0.05503 0.28363,0 0.41063,-0.0889 0.127,-0.09313 0.127,-0.245533 0,-0.08467 -0.0466,-0.1524 -0.0466,-0.06773 -0.16934,-0.135467 -0.11853,-0.06773 -0.3429,-0.1524 -0.22013,-0.08467 -0.37676,-0.169333 -0.15664,-0.08467 -0.2413,-0.2032 -0.0847,-0.118534 -0.0847,-0.3048 0,-0.287867 0.23283,-0.4445 0.23707,-0.156634 0.61807,-0.156634 0.20743,0 0.38523,0.04233 0.18204,0.0381 0.33867,0.110066 l -0.127,0.296334 q -0.14393,-0.05927 -0.30057,-0.1016 -0.15663,-0.04233 -0.32173,-0.04233 -0.2286,0 -0.35137,0.0762 -0.11853,0.07197 -0.11853,0.198967 0,0.09313 0.055,0.160867 0.055,0.0635 0.18204,0.127 0.13123,0.05927 0.34713,0.143933 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.23283,0.207433 0.0804,0.118534 0.0804,0.300567 z" id="path4162" style="stroke-width:0.26458332"/>
+</g>
+<path d="m 120.38542,-9.9166603 h 3.96874 v 3.96875 h -3.96874 z" id="path2478" style="fill:#5f8dd3;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 129.64585,-20.499997 h 3.96874 v 3.96875 h -3.96874 z" id="path2480" style="fill:#5f8dd3;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 699.39062,19.933594 v 30 15 h 15 v -15 -30 z" id="path1711" style="display:inline;fill:url(#linearGradient1701);fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-54.078609,-54.747312)"/>
+<path d="M 95.249992,-37.697918 H 149.35708 V -20.5 H 95.249992 Z" id="rect2386" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="L2 Cache256 kiB4-way" id="text2394" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 113.70388,-33.290951 v -3.0226 h 0.381 v 2.683934 h 1.3208 v 0.338666 z" id="path4166" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 117.71047,-33.290951 h -1.99814 v -0.309033 l 0.79164,-0.8001 q 0.2286,-0.2286 0.38523,-0.4064 0.15663,-0.1778 0.23707,-0.347133 0.0804,-0.173567 0.0804,-0.376767 0,-0.249767 -0.14817,-0.376767 -0.14816,-0.131233 -0.38523,-0.131233 -0.22013,0 -0.38947,0.0762 -0.1651,0.0762 -0.33866,0.211667 l -0.19897,-0.249767 q 0.1778,-0.148167 0.4064,-0.249767 0.23283,-0.105833 0.5207,-0.105833 0.42333,0 0.66887,0.2159 0.24553,0.211667 0.24553,0.588433 0,0.237067 -0.0974,0.4445 -0.0974,0.207434 -0.27093,0.410634 -0.17357,0.198966 -0.4064,0.427566 l -0.63077,0.6223 v 0.01693 h 1.52824 z" id="path4168" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 120.73743,-36.021451 q -0.48683,0 -0.76623,0.325967 -0.2794,0.325967 -0.2794,0.893233 0,0.563034 0.25823,0.893234 0.26247,0.325966 0.78317,0.325966 0.19896,0 0.37676,-0.03387 0.1778,-0.03387 0.34714,-0.08467 v 0.3302 q -0.16934,0.0635 -0.35137,0.09313 -0.1778,0.02963 -0.42757,0.02963 -0.46143,0 -0.77046,-0.1905 -0.30904,-0.1905 -0.46567,-0.541867 -0.1524,-0.351367 -0.1524,-0.8255 0,-0.4572 0.1651,-0.804333 0.16933,-0.351367 0.4953,-0.5461 0.32597,-0.198967 0.79163,-0.198967 0.47837,0 0.83397,0.1778 l -0.1524,0.321733 q -0.1397,-0.0635 -0.31327,-0.1143 -0.16933,-0.0508 -0.37253,-0.0508 z" id="path4170" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 122.9295,-35.598117 q 0.41487,0 0.61384,0.182033 0.19896,0.182033 0.19896,0.579967 v 1.545166 h -0.27093 l -0.072,-0.321733 h -0.0169 q -0.14817,0.186267 -0.31327,0.275167 -0.16086,0.0889 -0.44873,0.0889 -0.30903,0 -0.51223,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.82126,-0.2032 l 0.38524,-0.0127 v -0.135467 q 0,-0.283633 -0.12277,-0.3937 -0.12277,-0.110067 -0.34713,-0.110067 -0.1778,0 -0.33867,0.05503 -0.16087,0.0508 -0.30057,0.118533 l -0.1143,-0.2794 q 0.14817,-0.08043 0.35137,-0.135467 0.2032,-0.05927 0.42333,-0.05927 z m 0.4445,1.198033 -0.33443,0.0127 q -0.42333,0.01693 -0.58843,0.135467 -0.16087,0.118533 -0.16087,0.334433 0,0.1905 0.1143,0.2794 0.11853,0.0889 0.30057,0.0889 0.28786,0 0.47836,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path4172" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 125.35329,-33.248617 q -0.30057,0 -0.53764,-0.122767 -0.23283,-0.122767 -0.3683,-0.381 -0.13123,-0.258233 -0.13123,-0.6604 0,-0.4191 0.1397,-0.681567 0.1397,-0.262466 0.37677,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.17356,0 0.33443,0.0381 0.16087,0.03387 0.26247,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.23707,-0.07197 -0.13547,-0.03387 -0.254,-0.03387 -0.66887,0 -0.66887,0.859367 0,0.410633 0.16087,0.630766 0.1651,0.2159 0.48683,0.2159 0.18627,0 0.32597,-0.0381 0.14393,-0.0381 0.26247,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.13547,0.03387 -0.3302,0.03387 z" id="path4174" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 126.84964,-36.508284 v 0.944033 q 0,0.169334 -0.0212,0.3175 h 0.0254 q 0.11007,-0.173566 0.29633,-0.262466 0.1905,-0.0889 0.41064,-0.0889 0.41486,0 0.6223,0.198966 0.20743,0.194734 0.20743,0.630767 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.381,0 -0.52493,0.2159 -0.1397,0.211667 -0.1397,0.6096 v 1.172633 h -0.37254 v -3.217333 z" id="path4176" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 129.96616,-35.602351 q 0.2921,0 0.49954,0.127 0.21166,0.127 0.32173,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363 q 0.008,0.385233 0.19473,0.588433 0.1905,0.198967 0.52917,0.198967 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118534 v 0.325967 q -0.17357,0.0762 -0.3429,0.110067 -0.16933,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131234 -0.24553,-0.131233 -0.38523,-0.389466 -0.13547,-0.262467 -0.13547,-0.639234 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35137,-0.410633 0.2286,-0.143934 0.52916,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173567 -0.1524,0.169333 -0.18204,0.474133 h 1.1557 q -0.004,-0.287866 -0.13546,-0.465666 -0.13124,-0.182034 -0.41487,-0.182034 z" id="path4178" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 117.17303,-27.999285 h -1.99813 v -0.309033 l 0.79163,-0.8001 q 0.2286,-0.2286 0.38523,-0.4064 0.15664,-0.1778 0.23707,-0.347133 0.0804,-0.173567 0.0804,-0.376767 0,-0.249767 -0.14816,-0.376767 -0.14817,-0.131233 -0.38524,-0.131233 -0.22013,0 -0.38946,0.0762 -0.1651,0.0762 -0.33867,0.211667 l -0.19897,-0.249767 q 0.1778,-0.148167 0.4064,-0.249767 0.23284,-0.105833 0.5207,-0.105833 0.42334,0 0.66887,0.2159 0.24553,0.211667 0.24553,0.588433 0,0.237067 -0.0974,0.4445 -0.0974,0.207434 -0.27094,0.410634 -0.17356,0.198966 -0.4064,0.427566 l -0.63076,0.6223 v 0.01693 h 1.52823 z" id="path4180" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 118.55846,-29.853485 q 0.46566,0 0.74083,0.232834 0.27517,0.232833 0.27517,0.656166 0,0.4699 -0.30057,0.740834 -0.29633,0.2667 -0.82973,0.2667 -0.23284,0 -0.44027,-0.04233 -0.2032,-0.04233 -0.3429,-0.122766 v -0.351367 q 0.1524,0.09313 0.3683,0.148167 0.22013,0.0508 0.4191,0.0508 0.33443,0 0.53763,-0.156634 0.20744,-0.160866 0.20744,-0.4953 0,-0.296333 -0.18204,-0.452966 -0.18203,-0.160867 -0.57573,-0.160867 -0.11853,0 -0.27093,0.02117 -0.1524,0.02117 -0.24554,0.04233 l -0.18626,-0.118533 0.1143,-1.426634 h 1.51553 v 0.338667 h -1.19803 l -0.072,0.8763 q 0.072,-0.0127 0.19473,-0.02963 0.12277,-0.01693 0.27094,-0.01693 z" id="path4182" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 120.04971,-29.290451 q 0,-0.325967 0.055,-0.639234 0.0593,-0.3175 0.20743,-0.5715 0.1524,-0.258233 0.42333,-0.410633 0.27094,-0.1524 0.6985,-0.1524 0.0889,0 0.19474,0.0085 0.11006,0.0085 0.1778,0.02963 v 0.3175 q -0.0762,-0.0254 -0.17357,-0.0381 -0.0931,-0.0127 -0.1905,-0.0127 -0.2921,0 -0.48683,0.09737 -0.19474,0.09737 -0.30904,0.2667 -0.11006,0.169333 -0.16086,0.389466 -0.0508,0.220134 -0.0635,0.4699 h 0.0254 q 0.0974,-0.148166 0.27093,-0.249766 0.17357,-0.105834 0.4445,-0.105834 0.3937,0 0.635,0.2413 0.2413,0.237067 0.2413,0.677334 0,0.474133 -0.26247,0.745066 -0.25823,0.270934 -0.6985,0.270934 -0.28786,0 -0.5207,-0.143934 -0.23283,-0.143933 -0.37253,-0.440266 -0.13547,-0.296334 -0.13547,-0.7493 z m 1.02447,1.020233 q 0.2667,0 0.4318,-0.169333 0.1651,-0.173567 0.1651,-0.5334 0,-0.287867 -0.14817,-0.4572 -0.14393,-0.169334 -0.43603,-0.169334 -0.19897,0 -0.34713,0.08467 -0.14817,0.08043 -0.23284,0.207433 -0.0804,0.127 -0.0804,0.262467 0,0.182033 0.072,0.364067 0.072,0.1778 0.2159,0.296333 0.14393,0.1143 0.35983,0.1143 z" id="path4184" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 124.06728,-31.216618 v 1.680633 q 0,0.06773 -0.008,0.1778 -0.004,0.110067 -0.008,0.1905 h 0.0169 q 0.0254,-0.03387 0.0762,-0.09737 0.0508,-0.0635 0.1016,-0.127 0.055,-0.06773 0.0931,-0.110067 l 0.7239,-0.766233 h 0.43603 l -0.91863,0.969433 0.98213,1.299633 h -0.44873 l -0.7874,-1.058333 -0.25823,0.224367 v 0.833966 h -0.3683 v -3.217333 z" id="path4186" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 126.14671,-31.119251 q 0.0847,0 0.14816,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14816,0.05927 -0.0931,0 -0.15664,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15664,-0.05927 z m 0.18203,0.8509 v 2.269066 h -0.37253 v -2.269066 z" id="path4188" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 127.09841,-31.021885 h 0.8636 q 0.56727,0 0.85513,0.169334 0.2921,0.1651 0.2921,0.579966 0,0.2667 -0.14816,0.4445 -0.14817,0.173567 -0.42757,0.224367 v 0.02117 q 0.1905,0.02963 0.3429,0.110066 0.15663,0.08043 0.24553,0.2286 0.0889,0.148167 0.0889,0.385234 0,0.410633 -0.28363,0.635 -0.2794,0.224366 -0.76623,0.224366 h -1.06257 z m 0.381,1.286934 h 0.5588 q 0.38947,0 0.5334,-0.122767 0.14393,-0.127 0.14393,-0.372533 0,-0.249767 -0.1778,-0.3556 -0.17356,-0.110067 -0.5588,-0.110067 h -0.49953 z m 0,0.3175 v 1.096433 h 0.6096 q 0.40217,0 0.5588,-0.156633 0.15663,-0.156634 0.15663,-0.410634 0,-0.237066 -0.1651,-0.381 -0.16086,-0.148166 -0.57996,-0.148166 z" id="path4190" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 118.72236,-23.393419 h -0.44026 v 0.6858 h -0.35984 v -0.6858 h -1.4478 v -0.3175 l 1.4224,-2.036233 h 0.38524 v 2.0193 h 0.44026 z m -0.8001,-0.334433 v -0.9525 q 0,-0.220133 0.008,-0.372533 0.008,-0.156634 0.0127,-0.296334 h -0.0169 q -0.0339,0.08043 -0.0847,0.173567 -0.0508,0.09313 -0.0974,0.156633 l -0.90593,1.291167 z" id="path4192" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 118.97749,-23.677052 v -0.3302 h 1.02447 v 0.3302 z" id="path4194" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 122.38645,-22.711852 -0.38947,-1.278467 q -0.055,-0.173566 -0.0974,-0.338666 -0.0381,-0.169334 -0.0593,-0.262467 h -0.0169 q -0.0169,0.09313 -0.055,0.262467 -0.0381,0.1651 -0.0974,0.3429 l -0.4064,1.274233 h -0.42333 l -0.6223,-2.269067 h 0.38523 l 0.31327,1.210734 q 0.0466,0.182033 0.0889,0.3683 0.0423,0.186266 0.0593,0.309033 h 0.0169 q 0.0169,-0.07197 0.0381,-0.1778 0.0254,-0.105833 0.055,-0.220133 0.0296,-0.118534 0.0593,-0.211667 l 0.40217,-1.278467 h 0.4064 l 0.38946,1.278467 q 0.0466,0.143933 0.0889,0.313267 0.0466,0.169333 0.0635,0.2921 h 0.0169 q 0.0127,-0.105834 0.055,-0.2921 0.0466,-0.186267 0.0974,-0.381 l 0.3175,-1.210734 h 0.381 l -0.63077,2.269067 z" id="path4196" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 124.71544,-25.014785 q 0.41487,0 0.61383,0.182033 0.19897,0.182033 0.19897,0.579967 v 1.545166 h -0.27093 l -0.072,-0.321733 h -0.0169 q -0.14817,0.186267 -0.31327,0.275167 -0.16086,0.0889 -0.44873,0.0889 -0.30903,0 -0.51223,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.82126,-0.2032 l 0.38523,-0.0127 v -0.135467 q 0,-0.283633 -0.12276,-0.3937 -0.12277,-0.110067 -0.34713,-0.110067 -0.1778,0 -0.33867,0.05503 -0.16087,0.0508 -0.30057,0.118533 l -0.1143,-0.2794 q 0.14817,-0.08043 0.35137,-0.135467 0.2032,-0.05927 0.42333,-0.05927 z m 0.4445,1.198033 -0.33443,0.0127 q -0.42333,0.01693 -0.58843,0.135467 -0.16087,0.118533 -0.16087,0.334433 0,0.1905 0.1143,0.2794 0.11853,0.0889 0.30057,0.0889 0.28786,0 0.47836,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path4198" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 125.87346,-24.976685 h 0.39793 l 0.49107,1.291166 q 0.0635,0.169334 0.1143,0.325967 0.0508,0.1524 0.0762,0.2921 h 0.0169 q 0.0254,-0.105833 0.0804,-0.275167 0.055,-0.173566 0.1143,-0.347133 l 0.46144,-1.286933 h 0.40216 l -0.9779,2.582333 q -0.11853,0.321733 -0.30903,0.512233 -0.18627,0.1905 -0.51647,0.1905 -0.1016,0 -0.1778,-0.0127 -0.0762,-0.0085 -0.13123,-0.02117 v -0.296334 q 0.0466,0.0085 0.11007,0.01693 0.0677,0.0085 0.1397,0.0085 0.19473,0 0.31326,-0.110066 0.12277,-0.110067 0.1905,-0.2921 l 0.11854,-0.300567 z" id="path4200" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="M 95.249992,-16.531244 H 120.38544 V 0.66667366 H 95.249992 Z" id="rect2405" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="L1d Cache32 kiB8-way" id="text2413" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 97.366013,-12.124285 v -3.0226 h 0.381 v 2.683934 h 1.3208 v 0.338666 z" id="path4204" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 100.6741,-12.124285 h -0.36407 v -2.112433 q 0,-0.182033 0.004,-0.2921 0.004,-0.110067 0.0127,-0.2286 -0.0677,0.06773 -0.12277,0.1143 -0.055,0.04657 -0.1397,0.118533 l -0.321735,0.262467 -0.194733,-0.249767 0.817038,-0.635 h 0.30903 z" id="path4206" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 102.75802,-12.081951 q -0.42333,0 -0.67733,-0.2921 -0.254,-0.296334 -0.254,-0.880534 0,-0.5842 0.254,-0.880533 0.25823,-0.300567 0.68157,-0.300567 0.26246,0 0.42756,0.09737 0.16934,0.09737 0.27517,0.237067 h 0.0254 q -0.004,-0.05503 -0.0169,-0.160867 -0.008,-0.110067 -0.008,-0.173567 v -0.905933 h 0.37253 v 3.217333 h -0.30056 l -0.055,-0.3048 h -0.0169 q -0.1016,0.143934 -0.27093,0.245534 -0.16934,0.1016 -0.43604,0.1016 z m 0.0593,-0.309034 q 0.35983,0 0.50377,-0.194733 0.14816,-0.198967 0.14816,-0.5969 v -0.06773 q 0,-0.423334 -0.1397,-0.6477 -0.1397,-0.2286 -0.51646,-0.2286 -0.30057,0 -0.45297,0.2413 -0.14817,0.237066 -0.14817,0.639233 0,0.4064 0.14817,0.630767 0.1524,0.224366 0.4572,0.224366 z" id="path4208" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 107.00406,-14.854785 q -0.48684,0 -0.76624,0.325967 -0.2794,0.325967 -0.2794,0.893233 0,0.563034 0.25824,0.893234 0.26246,0.325966 0.78316,0.325966 0.19897,0 0.37677,-0.03387 0.1778,-0.03387 0.34713,-0.08467 v 0.3302 q -0.16933,0.0635 -0.35136,0.09313 -0.1778,0.02963 -0.42757,0.02963 -0.46143,0 -0.77047,-0.1905 -0.30903,-0.1905 -0.46566,-0.541867 -0.1524,-0.351367 -0.1524,-0.8255 0,-0.4572 0.1651,-0.804333 0.16933,-0.351367 0.4953,-0.5461 0.32596,-0.198967 0.79163,-0.198967 0.47837,0 0.83397,0.1778 l -0.1524,0.321733 q -0.1397,-0.0635 -0.31327,-0.1143 -0.16933,-0.0508 -0.37253,-0.0508 z" id="path4210" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 109.19613,-14.431451 q 0.41487,0 0.61383,0.182033 0.19897,0.182033 0.19897,0.579967 v 1.545166 H 109.738 l -0.072,-0.321733 h -0.0169 q -0.14817,0.186267 -0.31327,0.275167 -0.16087,0.0889 -0.44873,0.0889 -0.30904,0 -0.51224,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.82127,-0.2032 l 0.38523,-0.0127 v -0.135467 q 0,-0.283633 -0.12276,-0.3937 -0.12277,-0.110067 -0.34714,-0.110067 -0.1778,0 -0.33866,0.05503 -0.16087,0.0508 -0.30057,0.118533 l -0.1143,-0.2794 q 0.14817,-0.08043 0.35137,-0.135467 0.2032,-0.05927 0.42333,-0.05927 z m 0.4445,1.198033 -0.33443,0.0127 q -0.42334,0.01693 -0.58844,0.135467 -0.16086,0.118533 -0.16086,0.334433 0,0.1905 0.1143,0.2794 0.11853,0.0889 0.30056,0.0889 0.28787,0 0.47837,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path4212" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 111.61991,-12.081951 q -0.30057,0 -0.53763,-0.122767 -0.23284,-0.122767 -0.3683,-0.381 -0.13124,-0.258233 -0.13124,-0.6604 0,-0.4191 0.1397,-0.681567 0.1397,-0.262466 0.37677,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.17357,0 0.33443,0.0381 0.16087,0.03387 0.26247,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.23707,-0.07197 -0.13546,-0.03387 -0.254,-0.03387 -0.66886,0 -0.66886,0.859367 0,0.410633 0.16086,0.630766 0.1651,0.2159 0.48684,0.2159 0.18626,0 0.32596,-0.0381 0.14394,-0.0381 0.26247,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.13547,0.03387 -0.3302,0.03387 z" id="path4214" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 113.11626,-15.341618 v 0.944033 q 0,0.169334 -0.0212,0.3175 h 0.0254 q 0.11007,-0.173566 0.29634,-0.262466 0.1905,-0.0889 0.41063,-0.0889 0.41487,0 0.6223,0.198966 0.20743,0.194734 0.20743,0.630767 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.381,0 -0.52493,0.2159 -0.1397,0.211667 -0.1397,0.6096 v 1.172633 h -0.37253 v -3.217333 z" id="path4216" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 116.23279,-14.435685 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32173,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363 q 0.008,0.385233 0.19473,0.588433 0.1905,0.198967 0.52917,0.198967 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118534 v 0.325967 q -0.17356,0.0762 -0.3429,0.110067 -0.16933,0.0381 -0.40216,0.0381 -0.32174,0 -0.5715,-0.131234 -0.24554,-0.131233 -0.38524,-0.389466 -0.13546,-0.262467 -0.13546,-0.639234 0,-0.372533 0.12276,-0.639233 0.127,-0.2667 0.35137,-0.410633 0.2286,-0.143934 0.52917,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287866 -0.13547,-0.465666 -0.13123,-0.182034 -0.41487,-0.182034 z" id="path4218" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 103.2344,-9.1482514 q 0,0.3047999 -0.16933,0.4868333 -0.16933,0.1778 -0.4572,0.2370666 v 0.016933 q 0.36407,0.042333 0.54187,0.2286 0.1778,0.1862667 0.1778,0.4868333 0,0.2624667 -0.12277,0.4699 -0.12277,0.2032 -0.381,0.3175 -0.254,0.1143 -0.65616,0.1143 -0.23707,0 -0.44027,-0.0381 -0.2032,-0.033867 -0.38947,-0.127 v -0.3471333 q 0.1905,0.093133 0.41064,0.1481666 0.22013,0.0508 0.42333,0.0508 0.4064,0 0.5842,-0.1566333 0.18203,-0.1608666 0.18203,-0.4402666 0,-0.2836333 -0.22437,-0.4064 -0.22013,-0.127 -0.62229,-0.127 h -0.2921 v -0.3175 h 0.29633 q 0.37253,0 0.56303,-0.1566333 0.19473,-0.1566333 0.19473,-0.4148666 0,-0.2201334 -0.14816,-0.3386667 -0.14817,-0.1227667 -0.40217,-0.1227667 -0.24553,0 -0.4191,0.071967 -0.17356,0.071967 -0.3429,0.1820333 l -0.18626,-0.254 q 0.16086,-0.127 0.39793,-0.2201333 0.2413,-0.093133 0.5461,-0.093133 0.47413,0 0.70273,0.2116666 0.23283,0.2116667 0.23283,0.5376334 z" id="path4220" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 105.7713,-6.8326182 h -1.99814 v -0.3090334 l 0.79164,-0.8000999 q 0.2286,-0.2286 0.38523,-0.4064 0.15663,-0.1778 0.23707,-0.3471333 0.0804,-0.1735667 0.0804,-0.3767667 0,-0.2497666 -0.14817,-0.3767666 -0.14816,-0.1312333 -0.38523,-0.1312333 -0.22013,0 -0.38947,0.0762 -0.1651,0.0762 -0.33866,0.2116666 l -0.19897,-0.2497666 q 0.1778,-0.1481667 0.4064,-0.2497667 0.23283,-0.1058333 0.5207,-0.1058333 0.42333,0 0.66887,0.2159 0.24553,0.2116666 0.24553,0.5884333 0,0.2370666 -0.0974,0.4445 -0.0974,0.2074333 -0.27093,0.4106333 -0.17357,0.1989666 -0.4064,0.4275666 l -0.63077,0.6223 v 0.016933 h 1.52824 z" id="path4222" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 107.82036,-10.049951 v 1.6806328 q 0,0.067733 -0.008,0.1778 -0.004,0.1100667 -0.008,0.1905 h 0.0169 q 0.0254,-0.033867 0.0762,-0.097367 0.0508,-0.0635 0.1016,-0.127 0.055,-0.067733 0.0931,-0.1100667 l 0.7239,-0.7662333 h 0.43604 l -0.91864,0.9694333 0.98214,1.2996333 h -0.44874 l -0.7874,-1.0583333 -0.25823,0.2243666 v 0.8339667 h -0.3683 v -3.2173328 z" id="path4224" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 109.89979,-9.9525847 q 0.0847,0 0.14816,0.059267 0.0677,0.055033 0.0677,0.1778 0,0.1185333 -0.0677,0.1778 -0.0635,0.059267 -0.14816,0.059267 -0.0931,0 -0.15664,-0.059267 -0.0635,-0.059267 -0.0635,-0.1778 0,-0.1227666 0.0635,-0.1778 0.0635,-0.059267 0.15664,-0.059267 z m 0.18203,0.8508999 v 2.2690666 h -0.37253 v -2.2690666 z" id="path4226" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 110.85149,-9.8552181 h 0.8636 q 0.56727,0 0.85514,0.1693333 0.2921,0.1651 0.2921,0.5799667 0,0.2667 -0.14817,0.4445 -0.14817,0.1735666 -0.42757,0.2243666 v 0.021167 q 0.1905,0.029633 0.3429,0.1100666 0.15664,0.080433 0.24554,0.2286 0.0889,0.1481667 0.0889,0.3852333 0,0.4106334 -0.28364,0.635 -0.2794,0.2243667 -0.76623,0.2243667 h -1.06257 z m 0.381,1.2869333 h 0.5588 q 0.38947,0 0.5334,-0.1227667 0.14394,-0.127 0.14394,-0.3725333 0,-0.2497666 -0.1778,-0.3556 -0.17357,-0.1100666 -0.5588,-0.1100666 h -0.49954 z m 0,0.3175 v 1.0964332 h 0.6096 q 0.40217,0 0.5588,-0.1566333 0.15664,-0.1566333 0.15664,-0.4106333 0,-0.2370666 -0.1651,-0.381 -0.16087,-0.1481666 -0.57997,-0.1481666 z" id="path4228" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 102.55644,-4.6058849 q 0.39794,0 0.65194,0.1862667 0.254,0.1862666 0.254,0.5376333 0,0.1820333 -0.0804,0.3174999 -0.0762,0.1354667 -0.20743,0.2413 -0.13123,0.1016 -0.28787,0.1820334 0.18627,0.0889 0.33867,0.2031999 0.1524,0.1100667 0.2413,0.2582334 0.0931,0.1481666 0.0931,0.3555999 0,0.381 -0.27093,0.6053667 -0.2667,0.2201333 -0.71967,0.2201333 -0.48683,0 -0.7493,-0.2116667 -0.26246,-0.2158999 -0.26246,-0.6011333 0,-0.2074333 0.0847,-0.3598333 0.0889,-0.1524 0.23284,-0.2624666 0.14393,-0.1100667 0.30903,-0.1862667 -0.22013,-0.127 -0.37677,-0.3048 -0.1524,-0.1820333 -0.1524,-0.4614333 0,-0.2328333 0.11854,-0.3894666 0.11853,-0.1608667 0.32173,-0.2455333 0.2032,-0.084667 0.46143,-0.084667 z m -0.004,0.3005666 q -0.23283,0 -0.38523,0.1143 -0.14817,0.1100667 -0.14817,0.3217334 0,0.1566333 0.072,0.2624666 0.0762,0.1058333 0.2032,0.1820333 0.127,0.071967 0.2794,0.1397 0.22013,-0.093133 0.3683,-0.2243666 0.1524,-0.1312334 0.1524,-0.3598333 0,-0.2116667 -0.14817,-0.3217334 -0.14817,-0.1143 -0.3937,-0.1143 z m -0.63077,1.9981333 q 0,0.2201333 0.15664,0.3683 0.15663,0.1439333 0.4826,0.1439333 0.30903,0 0.4699,-0.1439333 0.1651,-0.1481667 0.1651,-0.381 0,-0.2201333 -0.17357,-0.3640667 -0.17357,-0.1481666 -0.46143,-0.2582333 l -0.0677,-0.0254 q -0.2794,0.1185333 -0.42756,0.2751667 -0.14394,0.1524 -0.14394,0.3852333 z" id="path4230" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 103.94187,-2.510385 v -0.3302 h 1.02446 v 0.3302 z" id="path4232" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 107.35083,-1.5451851 -0.38947,-1.2784666 q -0.055,-0.1735666 -0.0974,-0.3386666 -0.0381,-0.1693333 -0.0593,-0.2624667 h -0.0169 q -0.0169,0.093133 -0.055,0.2624667 -0.0381,0.1651 -0.0974,0.3429 l -0.4064,1.2742332 h -0.42333 l -0.6223,-2.2690665 h 0.38523 l 0.31327,1.2107333 q 0.0466,0.1820333 0.0889,0.3682999 0.0423,0.1862667 0.0593,0.3090334 h 0.0169 q 0.0169,-0.071967 0.0381,-0.1778 0.0254,-0.1058334 0.055,-0.2201334 0.0296,-0.1185333 0.0593,-0.2116666 l 0.40217,-1.2784666 h 0.4064 l 0.38946,1.2784666 q 0.0466,0.1439333 0.0889,0.3132666 0.0466,0.1693334 0.0635,0.2921 h 0.0169 q 0.0127,-0.1058333 0.055,-0.2921 0.0466,-0.1862666 0.0974,-0.3809999 l 0.3175,-1.2107333 h 0.381 l -0.63077,2.2690665 z" id="path4234" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 109.67982,-3.8481183 q 0.41487,0 0.61383,0.1820333 0.19897,0.1820334 0.19897,0.5799667 v 1.5451666 h -0.27093 l -0.072,-0.3217333 h -0.0169 q -0.14817,0.1862666 -0.31327,0.2751666 -0.16087,0.0889 -0.44873,0.0889 -0.30904,0 -0.51224,-0.1608667 -0.2032,-0.1650999 -0.2032,-0.5122333 0,-0.3386666 0.2667,-0.5206999 0.2667,-0.1862667 0.82127,-0.2032 l 0.38523,-0.0127 V -3.043785 q 0,-0.2836333 -0.12276,-0.3937 -0.12277,-0.1100666 -0.34714,-0.1100666 -0.1778,0 -0.33866,0.055033 -0.16087,0.0508 -0.30057,0.1185333 l -0.1143,-0.2794 q 0.14817,-0.080433 0.35137,-0.1354666 0.2032,-0.059267 0.42333,-0.059267 z m 0.4445,1.1980333 -0.33443,0.0127 q -0.42334,0.016933 -0.58844,0.1354667 -0.16086,0.1185333 -0.16086,0.3344333 0,0.1905 0.1143,0.2794 0.11853,0.0889 0.30056,0.0889 0.28787,0 0.47837,-0.1566334 0.1905,-0.1608666 0.1905,-0.4910666 z" id="path4236" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 110.83783,-3.8100183 h 0.39794 l 0.49106,1.2911666 q 0.0635,0.1693333 0.1143,0.3259667 0.0508,0.1524 0.0762,0.2921 h 0.0169 q 0.0254,-0.1058334 0.0804,-0.2751667 0.055,-0.1735667 0.1143,-0.3471333 l 0.46143,-1.2869333 h 0.40217 l -0.9779,2.5823332 q -0.11853,0.32173334 -0.30903,0.51223333 -0.18627,0.19049999 -0.51647,0.19049999 -0.1016,0 -0.1778,-0.0127 -0.0762,-0.008467 -0.13123,-0.0211667 v -0.29633331 q 0.0466,0.008467 0.11006,0.0169333 0.0677,0.008467 0.1397,0.008467 0.19474,0 0.31327,-0.11006666 0.12277,-0.11006667 0.1905,-0.29209997 l 0.11853,-0.3005667 z" id="path4238" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 124.35416,-16.531244 h 25.13545 V 0.66667366 h -25.13545 z" id="rect2415" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="Line FillBuffer(10 entries)" id="text2425" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 129.89319,-11.950647 v -3.0226 h 0.381 v 2.683933 h 1.3208 v 0.338667 z" id="path4242" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 132.24878,-15.070614 q 0.0847,0 0.14816,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118533 -0.0677,0.1778 -0.0635,0.05927 -0.14816,0.05927 -0.0931,0 -0.15664,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.15664,-0.05927 z m 0.18203,0.8509 v 2.269067 h -0.37253 v -2.269067 z" id="path4244" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 134.24188,-14.262047 q 0.4064,0 0.61384,0.198966 0.20743,0.194734 0.20743,0.635 v 1.477434 h -0.3683 v -1.452034 q 0,-0.5461 -0.508,-0.5461 -0.37677,0 -0.5207,0.211667 -0.14393,0.211667 -0.14393,0.6096 v 1.176867 h -0.37254 v -2.269067 h 0.30057 l 0.055,0.309033 h 0.0212 q 0.11007,-0.1778 0.3048,-0.262466 0.19473,-0.0889 0.41063,-0.0889 z" id="path4246" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 136.63874,-14.262047 q 0.2921,0 0.49954,0.127 0.21166,0.127 0.32173,0.359833 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363 q 0.008,0.385233 0.19473,0.588433 0.1905,0.198967 0.52917,0.198967 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118533 v 0.325966 q -0.17357,0.0762 -0.3429,0.110067 -0.16933,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131233 -0.24553,-0.131234 -0.38523,-0.389467 -0.13547,-0.262467 -0.13547,-0.639233 0,-0.372534 0.12277,-0.639234 0.127,-0.2667 0.35137,-0.410633 0.2286,-0.143933 0.52916,-0.143933 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173566 -0.1524,0.169334 -0.18204,0.474134 h 1.1557 q -0.004,-0.287867 -0.13546,-0.465667 -0.13124,-0.182033 -0.41487,-0.182033 z" id="path4248" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 139.68344,-11.950647 h -0.381 v -3.0226 h 1.6891 v 0.334433 h -1.3081 v 1.071033 h 1.22766 v 0.334434 h -1.22766 z" id="path4250" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 141.64149,-15.070614 q 0.0847,0 0.14816,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118533 -0.0677,0.1778 -0.0635,0.05927 -0.14816,0.05927 -0.0931,0 -0.15664,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122767 0.0635,-0.1778 0.0635,-0.05927 0.15664,-0.05927 z m 0.18203,0.8509 v 2.269067 h -0.37253 v -2.269067 z" id="path4252" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 142.91493,-11.950647 h -0.37254 v -3.217334 h 0.37254 z" id="path4254" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 144.00633,-11.950647 h -0.37253 v -3.217334 h 0.37253 z" id="path4256" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 131.12929,-9.6815807 h 0.8636 q 0.56727,0 0.85514,0.1693333 0.2921,0.1651 0.2921,0.5799667 0,0.2667 -0.14817,0.4444999 -0.14817,0.1735667 -0.42757,0.2243667 v 0.021167 q 0.1905,0.029633 0.3429,0.1100666 0.15664,0.080433 0.24554,0.2286 0.0889,0.1481667 0.0889,0.3852333 0,0.4106333 -0.28364,0.635 -0.2794,0.2243667 -0.76623,0.2243667 h -1.06257 z m 0.381,1.2869333 h 0.5588 q 0.38947,0 0.5334,-0.1227667 0.14394,-0.127 0.14394,-0.3725333 0,-0.2497666 -0.1778,-0.3556 -0.17357,-0.1100666 -0.5588,-0.1100666 h -0.49954 z m 0,0.3175 v 1.0964332 h 0.6096 q 0.40217,0 0.5588,-0.1566333 0.15664,-0.1566333 0.15664,-0.4106333 0,-0.2370667 -0.1651,-0.381 -0.16087,-0.1481666 -0.57997,-0.1481666 z" id="path4258" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 135.72835,-8.9280474 v 2.2690666 h -0.3048 l -0.055,-0.3005667 h -0.0169 q -0.11007,0.1778 -0.3048,0.2624667 -0.19473,0.080433 -0.41487,0.080433 -0.41063,0 -0.61806,-0.1947333 -0.20744,-0.1989667 -0.20744,-0.6307667 v -1.4858999 h 0.37677 v 1.4604999 q 0,0.5418667 0.50377,0.5418667 0.37676,0 0.5207,-0.2116667 0.14816,-0.2116666 0.14816,-0.6096 v -1.1810999 z" id="path4260" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 137.49021,-8.6401807 h -0.5715 v 1.9811999 h -0.37254 v -1.9811999 h -0.39793 v -0.1735667 l 0.39793,-0.127 v -0.1312333 q 0,-0.4402667 0.19474,-0.6307667 0.19473,-0.1947333 0.54186,-0.1947333 0.13547,0 0.24554,0.0254 0.1143,0.021167 0.19473,0.0508 l -0.0974,0.2921 q -0.0677,-0.021167 -0.15663,-0.042333 -0.0889,-0.021167 -0.18203,-0.021167 -0.18627,0 -0.2794,0.127 -0.0889,0.1227667 -0.0889,0.3894666 v 0.1481667 h 0.5715 z m 1.45626,0 h -0.5715 v 1.9811999 h -0.37253 v -1.9811999 h -0.39793 v -0.1735667 l 0.39793,-0.127 v -0.1312333 q 0,-0.4402667 0.19473,-0.6307667 0.19474,-0.1947333 0.54187,-0.1947333 0.13547,0 0.24553,0.0254 0.1143,0.021167 0.19474,0.0508 l -0.0974,0.2921 q -0.0677,-0.021167 -0.15663,-0.042333 -0.0889,-0.021167 -0.18204,-0.021167 -0.18626,0 -0.2794,0.127 -0.0889,0.1227667 -0.0889,0.3894666 v 0.1481667 h 0.5715 z" id="path4262" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 140.23129,-8.9703807 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.3598333 0.1143,0.2286 0.1143,0.5376333 v 0.2243666 h -1.55364 q 0.008,0.3852334 0.19474,0.5884333 0.1905,0.1989667 0.52916,0.1989667 0.2159,0 0.381,-0.0381 0.16934,-0.042333 0.34714,-0.1185333 v 0.3259666 q -0.17357,0.0762 -0.3429,0.1100667 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.1312333 -0.24553,-0.1312334 -0.38523,-0.3894667 -0.13547,-0.2624666 -0.13547,-0.6392333 0,-0.3725333 0.12277,-0.6392333 0.127,-0.2667 0.35136,-0.4106333 0.2286,-0.1439333 0.52917,-0.1439333 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.1735666 -0.1524,0.1693333 -0.18203,0.4741333 h 1.1557 q -0.004,-0.2878666 -0.13547,-0.4656666 -0.13123,-0.1820333 -0.41486,-0.1820333 z" id="path4264" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 142.80284,-8.9703807 q 0.0635,0 0.13547,0.00847 0.0762,0.00423 0.13123,0.016933 l -0.0466,0.3429 q -0.055,-0.0127 -0.12277,-0.021167 -0.0635,-0.00847 -0.12277,-0.00847 -0.17356,0 -0.32596,0.097367 -0.1524,0.093133 -0.24554,0.2667 -0.0889,0.1693333 -0.0889,0.3979333 v 1.2107333 h -0.37253 v -2.2690666 h 0.3048 l 0.0423,0.4148667 h 0.0169 q 0.11006,-0.1862667 0.28363,-0.3217334 0.17357,-0.1354666 0.41063,-0.1354666 z" id="path4266" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 125.95599,-2.5272476 q 0,-0.5164667 0.14817,-0.9948333 0.1524,-0.4826 0.47413,-0.8678333 h 0.35137 q -0.29633,0.3979333 -0.44873,0.8763 -0.14817,0.4783666 -0.14817,0.9821333 0,0.4910666 0.14817,0.9651999 0.1524,0.4699 0.4445,0.86783329 h -0.34714 q -0.32173,-0.37253329 -0.47413,-0.84243329 -0.14817,-0.4741333 -0.14817,-0.9863666 z" id="path4268" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 128.5628,-1.3673143 h -0.36406 v -2.1124333 q 0,-0.1820333 0.004,-0.2920999 0.004,-0.1100667 0.0127,-0.2286 -0.0677,0.067733 -0.12277,0.1143 -0.055,0.046567 -0.1397,0.1185333 l -0.32173,0.2624666 -0.19473,-0.2497666 0.81703,-0.635 h 0.30903 z" id="path4270" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 131.69659,-2.8828476 q 0,0.4868333 -0.1016,0.8382 -0.1016,0.3471333 -0.32173,0.5333999 -0.22013,0.1862667 -0.5842,0.1862667 -0.51223,0 -0.75777,-0.4106333 -0.2413,-0.4148667 -0.2413,-1.1472333 0,-0.4910666 0.0974,-0.8381999 0.1016,-0.3471334 0.32173,-0.5291667 0.22014,-0.1862666 0.57997,-0.1862666 0.508,0 0.75777,0.4106333 0.24976,0.4063999 0.24976,1.1429999 z m -1.63406,0 q 0,0.6223 0.1397,0.9313333 0.14393,0.3090333 0.48683,0.3090333 0.33867,0 0.4826,-0.3048 0.14817,-0.3090333 0.14817,-0.9355666 0,-0.6180666 -0.14817,-0.9270999 -0.14393,-0.3090334 -0.4826,-0.3090334 -0.3429,0 -0.48683,0.3090334 -0.1397,0.3090333 -0.1397,0.9270999 z" id="path4272" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 134.24096,-3.6787142 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32173,0.3598333 0.1143,0.2286 0.1143,0.5376333 v 0.2243667 h -1.55363 q 0.008,0.3852333 0.19473,0.5884333 0.1905,0.1989666 0.52917,0.1989666 0.2159,0 0.381,-0.0381 0.16933,-0.042333 0.34713,-0.1185333 v 0.3259666 q -0.17356,0.0762 -0.3429,0.1100667 -0.16933,0.0381 -0.40216,0.0381 -0.32174,0 -0.5715,-0.1312333 -0.24554,-0.1312334 -0.38524,-0.3894667 -0.13546,-0.2624666 -0.13546,-0.6392333 0,-0.3725333 0.12276,-0.6392333 0.127,-0.2667 0.35137,-0.4106333 0.2286,-0.1439333 0.52917,-0.1439333 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.1735666 -0.1524,0.1693333 -0.18203,0.4741333 h 1.1557 q -0.004,-0.2878666 -0.13547,-0.4656666 -0.13123,-0.1820333 -0.41487,-0.1820333 z" id="path4274" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 136.84638,-3.6787142 q 0.4064,0 0.61383,0.1989666 0.20743,0.1947334 0.20743,0.635 v 1.4774333 h -0.3683 v -1.4520333 q 0,-0.5461 -0.508,-0.5461 -0.37676,0 -0.5207,0.2116667 -0.14393,0.2116666 -0.14393,0.6096 v 1.1768666 h -0.37253 v -2.2690666 h 0.30056 l 0.055,0.3090333 h 0.0212 q 0.11007,-0.1778 0.3048,-0.2624666 0.19474,-0.0889 0.41064,-0.0889 z" id="path4276" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 139.1247,-1.629781 q 0.0847,0 0.17357,-0.0127 0.0889,-0.016933 0.14393,-0.033867 v 0.2836334 q -0.0593,0.029633 -0.16933,0.046567 -0.11007,0.021167 -0.21167,0.021167 -0.1778,0 -0.3302,-0.059267 -0.14816,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.4275666 v -1.3207999 h -0.32173 v -0.1778 l 0.32596,-0.1481667 0.14817,-0.4826 h 0.22013 v 0.5207 h 0.65617 v 0.2878667 h -0.65617 v 1.3123332 q 0,0.2074334 0.0974,0.3090333 0.1016,0.097367 0.25823,0.097367 z" id="path4278" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 140.95489,-3.6787142 q 0.0635,0 0.13547,0.00847 0.0762,0.00423 0.13123,0.016933 l -0.0466,0.3429 q -0.055,-0.0127 -0.12277,-0.021167 -0.0635,-0.00847 -0.12277,-0.00847 -0.17356,0 -0.32596,0.097367 -0.1524,0.093133 -0.24554,0.2667 -0.0889,0.1693333 -0.0889,0.3979333 v 1.2107333 h -0.37253 v -2.2690666 h 0.3048 l 0.0423,0.4148667 h 0.0169 q 0.11006,-0.1862667 0.28363,-0.3217334 0.17357,-0.1354666 0.41063,-0.1354666 z" id="path4280" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 141.83166,-4.4872808 q 0.0847,0 0.14816,0.059267 0.0677,0.055033 0.0677,0.1778 0,0.1185333 -0.0677,0.1778 -0.0635,0.059267 -0.14816,0.059267 -0.0931,0 -0.15664,-0.059267 -0.0635,-0.059267 -0.0635,-0.1778 0,-0.1227666 0.0635,-0.1778 0.0635,-0.059267 0.15664,-0.059267 z m 0.18203,0.8508999 v 2.2690666 h -0.37253 v -2.2690666 z" id="path4282" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 143.60886,-3.6787142 q 0.2921,0 0.49954,0.127 0.21166,0.127 0.32173,0.3598333 0.1143,0.2286 0.1143,0.5376333 v 0.2243667 h -1.55363 q 0.008,0.3852333 0.19473,0.5884333 0.1905,0.1989666 0.52917,0.1989666 0.2159,0 0.381,-0.0381 0.16933,-0.042333 0.34713,-0.1185333 v 0.3259666 q -0.17357,0.0762 -0.3429,0.1100667 -0.16933,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.1312333 -0.24553,-0.1312334 -0.38523,-0.3894667 -0.13547,-0.2624666 -0.13547,-0.6392333 0,-0.3725333 0.12277,-0.6392333 0.127,-0.2667 0.35137,-0.4106333 0.2286,-0.1439333 0.52916,-0.1439333 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.1735666 -0.1524,0.1693333 -0.18204,0.4741333 h 1.1557 q -0.004,-0.2878666 -0.13546,-0.4656666 -0.13124,-0.1820333 -0.41487,-0.1820333 z" id="path4284" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 146.59951,-1.9938476 q 0,0.3301999 -0.24553,0.4995333 -0.24553,0.1693333 -0.6604,0.1693333 -0.23707,0 -0.41063,-0.0381 -0.16934,-0.0381 -0.30057,-0.1058333 V -1.807581 q 0.13547,0.067733 0.32597,0.127 0.19473,0.055033 0.3937,0.055033 0.28363,0 0.41063,-0.0889 0.127,-0.093133 0.127,-0.2455333 0,-0.084667 -0.0466,-0.1524 -0.0466,-0.067733 -0.16933,-0.1354666 -0.11853,-0.067733 -0.3429,-0.1524 -0.22013,-0.084667 -0.37677,-0.1693333 -0.15663,-0.084667 -0.2413,-0.2032 -0.0847,-0.1185334 -0.0847,-0.3048 0,-0.2878667 0.23283,-0.4445 0.23707,-0.1566333 0.61807,-0.1566333 0.20743,0 0.38523,0.042333 0.18203,0.0381 0.33867,0.1100667 l -0.127,0.2963333 q -0.14394,-0.059267 -0.30057,-0.1016 -0.15663,-0.042333 -0.32173,-0.042333 -0.2286,0 -0.35137,0.0762 -0.11853,0.071967 -0.11853,0.1989666 0,0.093133 0.055,0.1608667 0.055,0.0635 0.18203,0.127 0.13124,0.059267 0.34714,0.1439333 0.2159,0.080433 0.3683,0.1651 0.1524,0.084667 0.23283,0.2074333 0.0804,0.1185333 0.0804,0.3005667 z" id="path4286" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 147.88863,-2.5272476 q 0,0.5122333 -0.1524,0.9863666 -0.14817,0.4699 -0.4699,0.84243329 h -0.34713 q 0.2921,-0.39793329 0.44026,-0.86783329 0.1524,-0.4741333 0.1524,-0.9651999 0,-0.5037667 -0.1524,-0.9821333 -0.14816,-0.4783667 -0.4445,-0.8763 h 0.35137 q 0.32173,0.3852333 0.4699,0.8678333 0.1524,0.4783666 0.1524,0.9948333 z" id="path4288" style="text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="M 85.989586,33.739582 H 127.00004 V 44.322914 H 85.989586 Z" id="rect1946" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="Store &amp; Forward Buffer(56 entries)" id="text1952" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 89.061069,36.782169 q 0,0.335139 -0.243417,0.522111 -0.243417,0.186972 -0.656167,0.186972 -0.211666,0 -0.391583,-0.03175 -0.179916,-0.03175 -0.299861,-0.08819 v -0.303389 q 0.127,0.05644 0.313972,0.102306 0.1905,0.04586 0.391584,0.04586 0.282222,0 0.423333,-0.109361 0.144639,-0.109362 0.144639,-0.296334 0,-0.123472 -0.05292,-0.208139 -0.05292,-0.08467 -0.183444,-0.155222 -0.127,-0.07408 -0.356306,-0.155222 -0.321028,-0.116417 -0.486833,-0.28575 -0.162278,-0.169333 -0.162278,-0.462139 0,-0.201083 0.102306,-0.342194 0.102305,-0.144639 0.282222,-0.22225 0.183444,-0.07761 0.419805,-0.07761 0.208139,0 0.381,0.0388 0.172861,0.03881 0.313973,0.102306 l -0.09878,0.271639 q -0.130528,-0.05644 -0.28575,-0.09525 -0.151695,-0.03881 -0.3175,-0.03881 -0.236361,0 -0.356306,0.102306 -0.119944,0.09878 -0.119944,0.264583 0,0.127 0.05292,0.211667 0.05292,0.08467 0.172862,0.151694 0.119944,0.06703 0.324555,0.144639 0.22225,0.08114 0.373945,0.176389 0.155222,0.09172 0.232833,0.22225 0.08114,0.130527 0.08114,0.328083 z" id="path4292" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 90.157601,37.237252 q 0.07056,0 0.144639,-0.01058 0.07408,-0.01411 0.119945,-0.02822 v 0.236361 q -0.04939,0.02469 -0.141111,0.03881 -0.09172,0.01764 -0.176389,0.01764 -0.148167,0 -0.275167,-0.04939 -0.123472,-0.05292 -0.201083,-0.179916 -0.07761,-0.127 -0.07761,-0.356306 v -1.100666 h -0.268112 v -0.148167 l 0.271639,-0.123472 0.123473,-0.402167 h 0.183444 v 0.433917 h 0.546806 v 0.239889 h -0.546806 v 1.093611 q 0,0.172861 0.08114,0.257527 0.08467,0.08114 0.215194,0.08114 z" id="path4294" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 92.444759,36.507002 q 0,0.469195 -0.239889,0.726723 -0.236361,0.257527 -0.642056,0.257527 -0.250472,0 -0.448027,-0.112889 -0.194028,-0.116416 -0.306917,-0.335138 -0.112889,-0.22225 -0.112889,-0.536223 0,-0.469194 0.236361,-0.723194 0.236361,-0.254 0.642056,-0.254 0.257527,0 0.451555,0.116417 0.197556,0.112889 0.306917,0.331611 0.112889,0.215194 0.112889,0.529166 z m -1.42875,0 q 0,0.335139 0.130528,0.532695 0.134055,0.194028 0.423333,0.194028 0.28575,0 0.419805,-0.194028 0.134056,-0.197556 0.134056,-0.532695 0,-0.335138 -0.134056,-0.525638 -0.134055,-0.1905 -0.423333,-0.1905 -0.289278,0 -0.419805,0.1905 -0.130528,0.1905 -0.130528,0.525638 z" id="path4296" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 93.818718,35.529808 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.03881,0.28575 q -0.04586,-0.01058 -0.102305,-0.01764 -0.05292,-0.0071 -0.102306,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008945 h -0.310445 v -1.890889 h 0.254 l 0.03528,0.345722 h 0.01411 q 0.09172,-0.155222 0.236361,-0.268111 0.144639,-0.112889 0.342195,-0.112889 z" id="path4298" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 95.051952,35.529808 q 0.243416,0 0.416277,0.105833 0.176389,0.105834 0.268112,0.299861 0.09525,0.1905 0.09525,0.448028 v 0.186972 h -1.294695 q 0.0071,0.321028 0.162278,0.490361 0.15875,0.165806 0.440972,0.165806 0.179917,0 0.3175,-0.03175 0.141111,-0.03528 0.289278,-0.09878 v 0.271639 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335139,0.03175 -0.268111,0 -0.47625,-0.109361 -0.204611,-0.109361 -0.321028,-0.324555 -0.112889,-0.218723 -0.112889,-0.532695 0,-0.310444 0.102306,-0.532694 0.105833,-0.22225 0.292805,-0.342195 0.1905,-0.119944 0.440973,-0.119944 z m -0.0035,0.254 q -0.22225,0 -0.352778,0.144639 -0.127,0.141111 -0.151694,0.395111 h 0.963083 q -0.0035,-0.239889 -0.112889,-0.388056 -0.109361,-0.151694 -0.345722,-0.151694 z" id="path4300" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 98.001945,34.898336 q 0.282223,0 0.4445,0.144639 0.165806,0.141111 0.165806,0.398639 0,0.22225 -0.144639,0.377472 -0.141111,0.155222 -0.359833,0.282222 l 0.680861,0.656167 q 0.09172,-0.109362 0.148167,-0.250473 0.05997,-0.144638 0.09878,-0.310444 h 0.313973 q -0.05645,0.225778 -0.141112,0.419805 -0.08467,0.194028 -0.218722,0.338667 l 0.515056,0.500945 h -0.419806 l -0.306916,-0.296334 q -0.165806,0.148167 -0.370417,0.239889 -0.204611,0.09172 -0.497417,0.09172 -0.363361,0 -0.578555,-0.179916 -0.215195,-0.179917 -0.215195,-0.511528 0,-0.271639 0.144639,-0.433917 0.148167,-0.165805 0.398639,-0.306916 -0.112889,-0.127 -0.211667,-0.271639 -0.09525,-0.144639 -0.09525,-0.338667 0,-0.261055 0.172861,-0.405694 0.176389,-0.144639 0.47625,-0.144639 z m -0.01058,0.254 q -0.148167,0 -0.243417,0.07761 -0.09172,0.07761 -0.09172,0.215194 0,0.127 0.06703,0.236361 0.06703,0.105834 0.194028,0.236362 0.208139,-0.119945 0.296333,-0.225778 0.09172,-0.109361 0.09172,-0.250472 0,-0.127 -0.08467,-0.208139 -0.08467,-0.08114 -0.229306,-0.08114 z m -0.144639,1.100666 q -0.1905,0.112889 -0.299861,0.229306 -0.105833,0.116417 -0.105833,0.306917 0,0.194027 0.130528,0.310444 0.130527,0.116417 0.34925,0.116417 0.225777,0 0.388055,-0.07408 0.162278,-0.07408 0.271639,-0.176389 z" id="path4302" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 101.08941,37.455975 h -0.3175 v -2.518834 h 1.40759 v 0.278695 h -1.09009 v 0.892528 h 1.02306 v 0.278694 h -1.02306 z" id="path4304" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 104.20631,36.507002 q 0,0.469195 -0.23988,0.726723 -0.23637,0.257527 -0.64206,0.257527 -0.25047,0 -0.44803,-0.112889 -0.19403,-0.116416 -0.30691,-0.335138 -0.11289,-0.22225 -0.11289,-0.536223 0,-0.469194 0.23636,-0.723194 0.23636,-0.254 0.64205,-0.254 0.25753,0 0.45156,0.116417 0.19755,0.112889 0.30692,0.331611 0.11288,0.215194 0.11288,0.529166 z m -1.42875,0 q 0,0.335139 0.13053,0.532695 0.13406,0.194028 0.42334,0.194028 0.28575,0 0.4198,-0.194028 0.13406,-0.197556 0.13406,-0.532695 0,-0.335138 -0.13406,-0.525638 -0.13405,-0.1905 -0.42333,-0.1905 -0.28928,0 -0.41981,0.1905 -0.13053,0.1905 -0.13053,0.525638 z" id="path4306" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 105.58027,35.529808 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31044 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path4308" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 107.69733,37.452447 -0.32456,-1.065389 q -0.0459,-0.144639 -0.0811,-0.282222 -0.0318,-0.141111 -0.0494,-0.218722 h -0.0141 q -0.0141,0.07761 -0.0459,0.218722 -0.0318,0.137583 -0.0811,0.28575 l -0.33867,1.061861 h -0.35277 l -0.51859,-1.890889 h 0.32103 l 0.26106,1.008944 q 0.0388,0.151695 0.0741,0.306917 0.0353,0.155222 0.0494,0.257528 h 0.0141 q 0.0141,-0.05997 0.0318,-0.148167 0.0212,-0.08819 0.0459,-0.183444 0.0247,-0.09878 0.0494,-0.176389 l 0.33514,-1.065389 h 0.33867 l 0.32455,1.065389 q 0.0388,0.119944 0.0741,0.261055 0.0388,0.141111 0.0529,0.243417 h 0.0141 q 0.0106,-0.08819 0.0459,-0.243417 0.0388,-0.155222 0.0811,-0.3175 l 0.26459,-1.008944 h 0.3175 l -0.52564,1.890889 z" id="path4310" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 109.63816,35.533336 q 0.34572,0 0.51152,0.151694 0.16581,0.151695 0.16581,0.483306 v 1.287639 h -0.22578 l -0.06,-0.268112 h -0.0141 q -0.12347,0.155223 -0.26106,0.229306 -0.13405,0.07408 -0.37394,0.07408 -0.25753,0 -0.42686,-0.134055 -0.16934,-0.137584 -0.16934,-0.426861 0,-0.282223 0.22225,-0.433917 0.22225,-0.155222 0.68439,-0.169333 l 0.32103,-0.01058 v -0.112888 q 0,-0.236362 -0.10231,-0.328084 -0.1023,-0.09172 -0.28927,-0.09172 -0.14817,0 -0.28223,0.04586 -0.13405,0.04233 -0.25047,0.09878 l -0.0952,-0.232833 q 0.12347,-0.06703 0.29281,-0.112889 0.16933,-0.04939 0.35278,-0.04939 z m 0.37041,0.998361 -0.27869,0.01058 q -0.35278,0.01411 -0.49036,0.112889 -0.13406,0.09878 -0.13406,0.278694 0,0.15875 0.0953,0.232834 0.0988,0.07408 0.25047,0.07408 0.23989,0 0.39864,-0.130528 0.15875,-0.134055 0.15875,-0.409222 z" id="path4312" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 111.78144,35.529808 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31044 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path4314" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 112.95471,37.491252 q -0.35278,0 -0.56445,-0.243416 -0.21167,-0.246945 -0.21167,-0.733778 0,-0.486833 0.21167,-0.733778 0.2152,-0.250472 0.56797,-0.250472 0.21873,0 0.35631,0.08114 0.14111,0.08114 0.2293,0.197555 h 0.0212 q -0.004,-0.04586 -0.0141,-0.134055 -0.007,-0.09172 -0.007,-0.144639 v -0.754944 h 0.31045 v 2.681111 h -0.25047 l -0.0459,-0.254 h -0.0141 q -0.0847,0.119944 -0.22577,0.204611 -0.14111,0.08467 -0.36336,0.08467 z m 0.0494,-0.257527 q 0.29987,0 0.41981,-0.162278 0.12347,-0.165806 0.12347,-0.497417 v -0.05644 q 0,-0.352778 -0.11641,-0.53975 -0.11642,-0.1905 -0.43039,-0.1905 -0.25048,0 -0.37748,0.201083 -0.12347,0.197556 -0.12347,0.532694 0,0.338667 0.12347,0.525639 0.127,0.186973 0.381,0.186973 z" id="path4316" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 115.41357,34.937141 h 0.71967 q 0.47272,0 0.71261,0.141111 0.24341,0.137584 0.24341,0.483306 0,0.22225 -0.12347,0.370417 -0.12347,0.144639 -0.3563,0.186972 v 0.01764 q 0.15875,0.02469 0.28575,0.09172 0.13052,0.06703 0.20461,0.1905 0.0741,0.123472 0.0741,0.321028 0,0.342194 -0.23636,0.529166 -0.23283,0.186973 -0.63853,0.186973 h -0.88547 z m 0.3175,1.072445 h 0.46567 q 0.32455,0 0.4445,-0.102306 0.11994,-0.105833 0.11994,-0.310444 0,-0.208139 -0.14817,-0.296334 -0.14464,-0.09172 -0.46566,-0.09172 h -0.41628 z m 0,0.264583 v 0.913694 h 0.508 q 0.33514,0 0.46567,-0.130527 0.13052,-0.130528 0.13052,-0.342195 0,-0.197555 -0.13758,-0.3175 -0.13406,-0.123472 -0.48331,-0.123472 z" id="path4318" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 119.24611,35.565086 v 1.890889 h -0.254 l -0.0459,-0.250473 h -0.0141 q -0.0917,0.148167 -0.254,0.218723 -0.16228,0.06703 -0.34572,0.06703 -0.3422,0 -0.51506,-0.162277 -0.17286,-0.165806 -0.17286,-0.525639 v -1.23825 h 0.31397 v 1.217083 q 0,0.451556 0.41981,0.451556 0.31397,0 0.43392,-0.176389 0.12347,-0.176389 0.12347,-0.508 v -0.98425 z" id="path4320" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 120.71433,35.804975 h -0.47625 v 1.651 h -0.31044 v -1.651 h -0.33162 v -0.144639 l 0.33162,-0.105834 v -0.109361 q 0,-0.366889 0.16227,-0.525639 0.16228,-0.162277 0.45156,-0.162277 0.11289,0 0.20461,0.02117 0.0952,0.01764 0.16228,0.04233 l -0.0811,0.243416 q -0.0564,-0.01764 -0.13053,-0.03528 -0.0741,-0.01764 -0.15169,-0.01764 -0.15523,0 -0.23284,0.105833 -0.0741,0.102306 -0.0741,0.324556 v 0.123472 h 0.47625 z m 1.21356,0 h -0.47625 v 1.651 h -0.31045 v -1.651 h -0.33161 v -0.144639 l 0.33161,-0.105834 v -0.109361 q 0,-0.366889 0.16228,-0.525639 0.16228,-0.162277 0.45155,-0.162277 0.11289,0 0.20462,0.02117 0.0953,0.01764 0.16227,0.04233 l -0.0811,0.243416 q -0.0564,-0.01764 -0.13052,-0.03528 -0.0741,-0.01764 -0.1517,-0.01764 -0.15522,0 -0.23283,0.105833 -0.0741,0.102306 -0.0741,0.324556 v 0.123472 h 0.47625 z" id="path4322" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 122.99856,35.529808 q 0.24342,0 0.41628,0.105833 0.17639,0.105834 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218723 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.2928,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.1517,0.395111 h 0.96309 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path4324" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 125.14152,35.529808 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 h -0.31044 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path4326" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 97.211861,41.781031 q 0,-0.430388 0.123473,-0.829027 0.127,-0.402167 0.395111,-0.723195 h 0.292805 q -0.246944,0.331611 -0.373944,0.73025 -0.123472,0.398639 -0.123472,0.818445 0,0.409222 0.123472,0.804333 0.127,0.391583 0.370416,0.723194 h -0.289277 q -0.268111,-0.310444 -0.395111,-0.702027 -0.123473,-0.395111 -0.123473,-0.821973 z" id="path4328" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 99.101978,41.202476 q 0.388056,0 0.617362,0.194028 0.229305,0.194027 0.229305,0.546805 0,0.391584 -0.250472,0.617361 -0.246945,0.22225 -0.691445,0.22225 -0.194027,0 -0.366888,-0.03528 -0.169334,-0.03528 -0.28575,-0.102306 v -0.292806 q 0.127,0.07761 0.306916,0.123473 0.183445,0.04233 0.34925,0.04233 0.278695,0 0.448028,-0.130528 0.172861,-0.134055 0.172861,-0.41275 0,-0.246944 -0.151694,-0.377472 -0.151695,-0.134056 -0.479778,-0.134056 -0.09878,0 -0.225778,0.01764 -0.127,0.01764 -0.204611,0.03528 l -0.155222,-0.09878 0.09525,-1.188861 h 1.262944 v 0.282222 h -0.998361 l -0.05997,0.73025 q 0.05997,-0.01058 0.162278,-0.02469 0.102305,-0.01411 0.225777,-0.01411 z" id="path4330" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 100.34469,41.67167 q 0,-0.271639 0.0459,-0.532694 0.0494,-0.264583 0.17287,-0.47625 0.127,-0.215195 0.35277,-0.342195 0.22578,-0.127 0.58209,-0.127 0.0741,0 0.16227,0.0071 0.0917,0.0071 0.14817,0.02469 v 0.264584 q -0.0635,-0.02117 -0.14464,-0.03175 -0.0776,-0.01058 -0.15875,-0.01058 -0.24341,0 -0.40569,0.08114 -0.16228,0.08114 -0.25753,0.22225 -0.0917,0.141111 -0.13406,0.324556 -0.0423,0.183444 -0.0529,0.391583 h 0.0212 q 0.0811,-0.123472 0.22578,-0.208139 0.14464,-0.08819 0.37042,-0.08819 0.32808,0 0.52917,0.201083 0.20108,0.197556 0.20108,0.564445 0,0.395111 -0.21872,0.620889 -0.2152,0.225777 -0.58209,0.225777 -0.23989,0 -0.43391,-0.119944 -0.19403,-0.119945 -0.31045,-0.366889 -0.11289,-0.246944 -0.11289,-0.624417 z m 0.85373,0.850195 q 0.22225,0 0.35983,-0.141111 0.13758,-0.144639 0.13758,-0.4445 0,-0.239889 -0.12347,-0.381 -0.11994,-0.141111 -0.36336,-0.141111 -0.16581,0 -0.28928,0.07055 -0.12347,0.06703 -0.19403,0.172861 -0.067,0.105834 -0.067,0.218722 0,0.151695 0.06,0.303389 0.06,0.148167 0.17991,0.246945 0.11995,0.09525 0.29987,0.09525 z" id="path4332" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 104.116,40.821476 q 0.24341,0 0.41628,0.105833 0.17638,0.105834 0.26811,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218723 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.29281,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path4334" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 106.28718,40.821476 q 0.33867,0 0.51153,0.165805 0.17286,0.162278 0.17286,0.529167 v 1.231195 h -0.30692 v -1.210028 q 0,-0.455084 -0.42333,-0.455084 -0.31397,0 -0.43392,0.176389 -0.11994,0.176389 -0.11994,0.508 v 0.980723 h -0.31045 v -1.890889 h 0.25048 l 0.0459,0.257527 h 0.0176 q 0.0917,-0.148166 0.254,-0.218722 0.16227,-0.07408 0.34219,-0.07408 z" id="path4336" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 108.18579,42.52892 q 0.0705,0 0.14463,-0.01058 0.0741,-0.01411 0.11995,-0.02822 v 0.236361 q -0.0494,0.02469 -0.14111,0.03881 -0.0917,0.01764 -0.17639,0.01764 -0.14817,0 -0.27517,-0.04939 -0.12347,-0.05292 -0.20108,-0.179916 -0.0776,-0.127 -0.0776,-0.356306 v -1.100666 h -0.26811 v -0.148167 l 0.27164,-0.123472 0.12347,-0.402167 h 0.18344 v 0.433917 h 0.54681 v 0.239889 h -0.54681 v 1.093611 q 0,0.172861 0.0811,0.257527 0.0847,0.08114 0.2152,0.08114 z" id="path4338" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 109.71094,40.821476 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008945 H 108.829 v -1.890889 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path4340" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 110.44158,40.14767 q 0.0705,0 0.12347,0.04939 0.0564,0.04586 0.0564,0.148167 0,0.09878 -0.0564,0.148167 -0.0529,0.04939 -0.12347,0.04939 -0.0776,0 -0.13053,-0.04939 -0.0529,-0.04939 -0.0529,-0.148167 0,-0.102306 0.0529,-0.148167 0.0529,-0.04939 0.13053,-0.04939 z m 0.15169,0.709084 v 1.890889 h -0.31044 v -1.890889 z" id="path4342" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 111.92258,40.821476 q 0.24342,0 0.41628,0.105833 0.17639,0.105834 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218723 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.2928,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.1517,0.395111 h 0.96309 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path4344" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 114.41479,42.225531 q 0,0.275167 -0.20461,0.416278 -0.20461,0.141111 -0.55033,0.141111 -0.19756,0 -0.34219,-0.03175 -0.14112,-0.03175 -0.25048,-0.08819 v -0.282222 q 0.11289,0.05644 0.27164,0.105833 0.16228,0.04586 0.32809,0.04586 0.23636,0 0.34219,-0.07408 0.10583,-0.07761 0.10583,-0.204611 0,-0.07056 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05645 -0.28575,-0.127 -0.18345,-0.07056 -0.31398,-0.141111 -0.13052,-0.07056 -0.20108,-0.169334 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239889 0.19402,-0.370416 0.19756,-0.130528 0.51506,-0.130528 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246944 q -0.11995,-0.04939 -0.25048,-0.08467 -0.13052,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.2928,0.0635 -0.0988,0.05997 -0.0988,0.165805 0,0.07761 0.0459,0.134056 0.0459,0.05292 0.15169,0.105833 0.10937,0.04939 0.28928,0.119945 0.17992,0.06703 0.30692,0.137583 0.127,0.07056 0.19403,0.172861 0.067,0.09878 0.067,0.250472 z" id="path4346" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 115.48906,41.781031 q 0,0.426862 -0.127,0.821973 -0.12347,0.391583 -0.39159,0.702027 h -0.28927 q 0.24341,-0.331611 0.36689,-0.723194 0.127,-0.395111 0.127,-0.804333 0,-0.419806 -0.127,-0.818445 -0.12348,-0.398639 -0.37042,-0.73025 h 0.2928 q 0.26812,0.321028 0.39159,0.723195 0.127,0.398639 0.127,0.829027 z" id="path4348" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Retirement Unit" id="text1629" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 110.95884,74.846594 q 0.56303,0 0.82973,0.2159 0.27094,0.211667 0.27094,0.643467 0,0.2413 -0.0889,0.402166 -0.0889,0.160867 -0.2286,0.258234 -0.13547,0.09313 -0.28787,0.148166 l 0.82973,1.354667 h -0.4445 l -0.73236,-1.248833 h -0.60114 v 1.248833 h -0.381 v -3.0226 z m -0.0212,0.3302 h -0.4318 v 1.121833 h 0.45297 q 0.3683,0 0.53763,-0.143933 0.16934,-0.148167 0.16934,-0.4318 0,-0.296333 -0.1778,-0.4191 -0.1778,-0.127 -0.55034,-0.127 z" id="path4351" style="stroke-width:0.26458332"/>
+<path d="m 113.57967,75.557794 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.55364 q 0.008,0.385234 0.19474,0.588434 0.1905,0.198966 0.52916,0.198966 0.2159,0 0.381,-0.0381 0.16934,-0.04233 0.34714,-0.118533 v 0.325967 q -0.17357,0.0762 -0.3429,0.110066 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131233 -0.24553,-0.131233 -0.38523,-0.389467 -0.13547,-0.262466 -0.13547,-0.639233 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35136,-0.410634 0.2286,-0.143933 0.52917,-0.143933 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287867 -0.13547,-0.465667 -0.13123,-0.182033 -0.41486,-0.182033 z" id="path4353" style="stroke-width:0.26458332"/>
+<path d="m 115.85065,77.606727 q 0.0847,0 0.17357,-0.0127 0.0889,-0.01693 0.14393,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16933,0.04657 -0.11007,0.02117 -0.21167,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14816,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32173 v -0.1778 l 0.32596,-0.148167 0.14817,-0.482599 h 0.22013 v 0.520699 h 0.65617 v 0.287867 h -0.65617 v 1.312333 q 0,0.207434 0.0974,0.309034 0.1016,0.09737 0.25823,0.09737 z" id="path4355" style="stroke-width:0.26458332"/>
+<path d="m 116.81301,74.749228 q 0.0847,0 0.14817,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14817,0.05927 -0.0931,0 -0.15663,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15663,-0.05927 z m 0.18203,0.850899 v 2.269067 h -0.37253 v -2.269067 z" id="path4357" style="stroke-width:0.26458332"/>
+<path d="m 118.77225,75.557794 q 0.0635,0 0.13547,0.0085 0.0762,0.0042 0.13123,0.01693 l -0.0466,0.3429 q -0.055,-0.0127 -0.12276,-0.02117 -0.0635,-0.0085 -0.12277,-0.0085 -0.17357,0 -0.32597,0.09737 -0.1524,0.09313 -0.24553,0.2667 -0.0889,0.169334 -0.0889,0.397934 v 1.210733 h -0.37253 v -2.269067 h 0.3048 l 0.0423,0.414867 h 0.0169 q 0.11007,-0.186267 0.28364,-0.321733 0.17356,-0.135467 0.41063,-0.135467 z" id="path4359" style="stroke-width:0.26458332"/>
+<path d="m 120.25213,75.557794 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.55364 q 0.008,0.385234 0.19474,0.588434 0.1905,0.198966 0.52916,0.198966 0.2159,0 0.381,-0.0381 0.16934,-0.04233 0.34714,-0.118533 v 0.325967 q -0.17357,0.0762 -0.3429,0.110066 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131233 -0.24553,-0.131233 -0.38523,-0.389467 -0.13547,-0.262466 -0.13547,-0.639233 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35136,-0.410634 0.2286,-0.143933 0.52917,-0.143933 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287867 -0.13547,-0.465667 -0.13123,-0.182033 -0.41486,-0.182033 z" id="path4361" style="stroke-width:0.26458332"/>
+<path d="m 124.25455,75.557794 q 0.38523,0 0.57573,0.198967 0.1905,0.194733 0.1905,0.635 v 1.477433 h -0.3683 v -1.4605 q 0,-0.537633 -0.46143,-0.537633 -0.3302,0 -0.47413,0.1905 -0.1397,0.1905 -0.1397,0.554566 v 1.253067 h -0.3683 v -1.4605 q 0,-0.537633 -0.46567,-0.537633 -0.3429,0 -0.47413,0.211666 -0.13124,0.211667 -0.13124,0.6096 v 1.176867 h -0.37253 v -2.269067 h 0.30057 l 0.055,0.309034 h 0.0212 q 0.10583,-0.1778 0.28363,-0.262467 0.18203,-0.0889 0.38523,-0.0889 0.5334,0 0.69427,0.381 h 0.0212 q 0.1143,-0.194733 0.30903,-0.287867 0.19897,-0.09313 0.4191,-0.09313 z" id="path4363" style="stroke-width:0.26458332"/>
+<path d="m 126.60213,75.557794 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.359833 0.1143,0.2286 0.1143,0.537634 v 0.224366 h -1.55364 q 0.008,0.385234 0.19474,0.588434 0.1905,0.198966 0.52916,0.198966 0.2159,0 0.381,-0.0381 0.16934,-0.04233 0.34714,-0.118533 v 0.325967 q -0.17357,0.0762 -0.3429,0.110066 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131233 -0.24553,-0.131233 -0.38523,-0.389467 -0.13547,-0.262466 -0.13547,-0.639233 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35136,-0.410634 0.2286,-0.143933 0.52917,-0.143933 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287867 -0.13547,-0.465667 -0.13123,-0.182033 -0.41486,-0.182033 z" id="path4365" style="stroke-width:0.26458332"/>
+<path d="m 129.20755,75.557794 q 0.4064,0 0.61383,0.198967 0.20743,0.194733 0.20743,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.37676,0 -0.5207,0.211666 -0.14393,0.211667 -0.14393,0.6096 v 1.176867 h -0.37253 v -2.269067 h 0.30056 l 0.055,0.309034 h 0.0212 q 0.11007,-0.1778 0.3048,-0.262467 0.19474,-0.0889 0.41064,-0.0889 z" id="path4367" style="stroke-width:0.26458332"/>
+<path d="m 131.48588,77.606727 q 0.0847,0 0.17356,-0.0127 0.0889,-0.01693 0.14394,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16934,0.04657 -0.11006,0.02117 -0.21166,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14817,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32173 v -0.1778 l 0.32597,-0.148167 0.14816,-0.482599 h 0.22014 v 0.520699 h 0.65616 v 0.287867 h -0.65616 v 1.312333 q 0,0.207434 0.0974,0.309034 0.1016,0.09737 0.25824,0.09737 z" id="path4369" style="stroke-width:0.26458332"/>
+<path d="m 135.70691,74.846594 v 1.9558 q 0,0.313267 -0.127,0.567267 -0.127,0.249766 -0.38947,0.397933 -0.25823,0.143933 -0.6604,0.143933 -0.56303,0 -0.85937,-0.3048 -0.2921,-0.309033 -0.2921,-0.8128 v -1.947333 h 0.381 v 1.960033 q 0,0.3683 0.19474,0.5715 0.19896,0.2032 0.5969,0.2032 0.41063,0 0.59266,-0.2159 0.18627,-0.220133 0.18627,-0.563033 v -1.9558 z" id="path4371" style="stroke-width:0.26458332"/>
+<path d="m 137.54192,75.557794 q 0.4064,0 0.61384,0.198967 0.20743,0.194733 0.20743,0.635 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.37677,0 -0.5207,0.211666 -0.14393,0.211667 -0.14393,0.6096 v 1.176867 h -0.37254 v -2.269067 h 0.30057 l 0.055,0.309034 h 0.0212 q 0.11007,-0.1778 0.3048,-0.262467 0.19473,-0.0889 0.41063,-0.0889 z" id="path4373" style="stroke-width:0.26458332"/>
+<path d="m 139.25298,74.749228 q 0.0847,0 0.14817,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14817,0.05927 -0.0931,0 -0.15663,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15663,-0.05927 z m 0.18204,0.850899 v 2.269067 h -0.37254 v -2.269067 z" id="path4375" style="stroke-width:0.26458332"/>
+<path d="m 140.91166,77.606727 q 0.0847,0 0.17356,-0.0127 0.0889,-0.01693 0.14394,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16934,0.04657 -0.11006,0.02117 -0.21166,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14817,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32173 v -0.1778 l 0.32597,-0.148167 0.14816,-0.482599 h 0.22014 v 0.520699 h 0.65616 v 0.287867 h -0.65616 v 1.312333 q 0,0.207434 0.0974,0.309034 0.1016,0.09737 0.25824,0.09737 z" id="path4377" style="stroke-width:0.26458332"/>
+</g>
+<path d="M 85.989586,19.187502 H 127.00004 V 29.770834 H 85.989586 Z" id="rect1871" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="Load Buffer(72 entries)" id="text1877" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 96.999533,22.903894 v -2.518833 h 0.3175 v 2.236611 H 98.4177 v 0.282222 z" id="path4381" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 100.44772,21.954922 q 0,0.469195 -0.23989,0.726722 -0.236365,0.257528 -0.642059,0.257528 -0.250472,0 -0.448028,-0.112889 -0.194028,-0.116416 -0.306917,-0.335139 -0.112888,-0.22225 -0.112888,-0.536222 0,-0.469194 0.236361,-0.723194 0.236361,-0.254 0.642055,-0.254 0.257528,0 0.451556,0.116416 0.19756,0.112889 0.30692,0.331612 0.11289,0.215194 0.11289,0.529166 z m -1.428755,0 q 0,0.335139 0.130528,0.532695 0.134056,0.194027 0.423333,0.194027 0.28575,0 0.419806,-0.194027 0.134058,-0.197556 0.134058,-0.532695 0,-0.335139 -0.134058,-0.525639 -0.134056,-0.1905 -0.423333,-0.1905 -0.289278,0 -0.419806,0.1905 -0.130528,0.1905 -0.130528,0.525639 z" id="path4383" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 101.65587,20.981256 q 0.34572,0 0.51153,0.151694 0.1658,0.151694 0.1658,0.483306 v 1.287638 h -0.22578 l -0.06,-0.268111 h -0.0141 q -0.12347,0.155223 -0.26105,0.229306 -0.13406,0.07408 -0.37395,0.07408 -0.25753,0 -0.42686,-0.134055 -0.16933,-0.137584 -0.16933,-0.426861 0,-0.282223 0.22225,-0.433917 0.22225,-0.155222 0.68439,-0.169333 l 0.32102,-0.01058 v -0.112889 q 0,-0.236361 -0.1023,-0.328083 -0.10231,-0.09172 -0.28928,-0.09172 -0.14817,0 -0.28222,0.04586 -0.13406,0.04233 -0.25047,0.09878 l -0.0953,-0.232834 q 0.12347,-0.06703 0.2928,-0.112889 0.16933,-0.04939 0.35278,-0.04939 z m 0.37042,0.998361 -0.2787,0.01058 q -0.35278,0.01411 -0.49036,0.112889 -0.13406,0.09878 -0.13406,0.278694 0,0.15875 0.0952,0.232834 0.0988,0.07408 0.25048,0.07408 0.23989,0 0.39864,-0.130528 0.15875,-0.134055 0.15875,-0.409222 z" id="path4385" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 103.58749,22.939172 q -0.35278,0 -0.56444,-0.243416 -0.21167,-0.246945 -0.21167,-0.733778 0,-0.486834 0.21167,-0.733778 0.21519,-0.250472 0.56797,-0.250472 0.21872,0 0.35631,0.08114 0.14111,0.08114 0.2293,0.197555 h 0.0212 q -0.004,-0.04586 -0.0141,-0.134055 -0.007,-0.09172 -0.007,-0.144639 v -0.754945 h 0.31045 v 2.681111 h -0.25048 l -0.0459,-0.254 h -0.0141 q -0.0847,0.119945 -0.22578,0.204612 -0.14111,0.08467 -0.36336,0.08467 z m 0.0494,-0.257528 q 0.29986,0 0.41981,-0.162277 0.12347,-0.165806 0.12347,-0.497417 v -0.05644 q 0,-0.352778 -0.11642,-0.53975 -0.11641,-0.1905 -0.43039,-0.1905 -0.25047,0 -0.37747,0.201083 -0.12347,0.197555 -0.12347,0.532694 0,0.338667 0.12347,0.525639 0.127,0.186972 0.381,0.186972 z" id="path4387" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 106.04635,20.385061 h 0.71967 q 0.47272,0 0.71261,0.141111 0.24342,0.137584 0.24342,0.483306 0,0.22225 -0.12347,0.370416 -0.12348,0.144639 -0.35631,0.186973 v 0.01764 q 0.15875,0.02469 0.28575,0.09172 0.13053,0.06703 0.20461,0.1905 0.0741,0.123472 0.0741,0.321028 0,0.342194 -0.23636,0.529166 -0.23283,0.186972 -0.63852,0.186972 h -0.88548 z m 0.3175,1.072445 h 0.46567 q 0.32456,0 0.4445,-0.102306 0.11994,-0.105833 0.11994,-0.310444 0,-0.208139 -0.14816,-0.296334 -0.14464,-0.09172 -0.46567,-0.09172 h -0.41628 z m 0,0.264583 v 0.913694 h 0.508 q 0.33514,0 0.46567,-0.130527 0.13053,-0.130528 0.13053,-0.342195 0,-0.197555 -0.13759,-0.3175 -0.13405,-0.123472 -0.4833,-0.123472 z" id="path4389" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 109.8789,21.013006 v 1.890888 h -0.254 l -0.0459,-0.250472 h -0.0141 q -0.0917,0.148167 -0.254,0.218722 -0.16228,0.06703 -0.34573,0.06703 -0.34219,0 -0.51505,-0.162278 -0.17286,-0.165805 -0.17286,-0.525638 v -1.23825 h 0.31397 v 1.217083 q 0,0.451555 0.41981,0.451555 0.31397,0 0.43391,-0.176388 0.12347,-0.176389 0.12347,-0.508 v -0.98425 z" id="path4391" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 111.34712,21.252894 h -0.47625 v 1.651 h -0.31045 v -1.651 h -0.33161 v -0.144638 l 0.33161,-0.105834 v -0.109361 q 0,-0.366889 0.16228,-0.525639 0.16228,-0.162277 0.45155,-0.162277 0.11289,0 0.20462,0.02117 0.0952,0.01764 0.16227,0.04233 l -0.0811,0.243416 q -0.0564,-0.01764 -0.13052,-0.03528 -0.0741,-0.01764 -0.1517,-0.01764 -0.15522,0 -0.23283,0.105834 -0.0741,0.102305 -0.0741,0.324555 v 0.123473 h 0.47625 z m 1.21355,0 h -0.47625 v 1.651 h -0.31044 v -1.651 h -0.33161 v -0.144638 l 0.33161,-0.105834 v -0.109361 q 0,-0.366889 0.16227,-0.525639 0.16228,-0.162277 0.45156,-0.162277 0.11289,0 0.20461,0.02117 0.0952,0.01764 0.16228,0.04233 l -0.0811,0.243416 q -0.0564,-0.01764 -0.13053,-0.03528 -0.0741,-0.01764 -0.15169,-0.01764 -0.15522,0 -0.23284,0.105834 -0.0741,0.102305 -0.0741,0.324555 v 0.123473 h 0.47625 z" id="path4393" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 113.63135,20.977728 q 0.24342,0 0.41628,0.105833 0.17639,0.105833 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16227,0.490361 0.15875,0.165806 0.44098,0.165806 0.17991,0 0.3175,-0.03175 0.14111,-0.03528 0.28927,-0.09878 V 22.8157 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32102,-0.324555 -0.11289,-0.218723 -0.11289,-0.532695 0,-0.310444 0.1023,-0.532694 0.10584,-0.22225 0.29281,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35277,0.144639 -0.127,0.141111 -0.1517,0.395111 h 0.96308 q -0.004,-0.239889 -0.11288,-0.388056 -0.10937,-0.151694 -0.34573,-0.151694 z" id="path4395" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 115.77431,20.977728 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.10231,-0.0071 -0.14463,0 -0.27163,0.08114 -0.127,0.07761 -0.20462,0.22225 -0.0741,0.141111 -0.0741,0.331611 v 1.008944 h -0.31044 v -1.890888 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path4397" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 97.211861,27.228949 q 0,-0.430389 0.123473,-0.829027 0.127,-0.402167 0.395111,-0.723195 h 0.292805 q -0.246944,0.331611 -0.373944,0.73025 -0.123472,0.398639 -0.123472,0.818445 0,0.409222 0.123472,0.804333 0.127,0.391583 0.370416,0.723194 H 97.730445 Q 97.462334,28.442505 97.335334,28.050922 97.211861,27.65581 97.211861,27.228949 Z" id="path4399" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 98.611617,28.19556 1.033639,-2.236611 h -1.358194 v -0.282222 h 1.689805 v 0.239889 l -1.023055,2.278944 z" id="path4401" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="M 101.98511,28.19556 H 100.32 v -0.257527 l 0.65969,-0.66675 q 0.1905,-0.1905 0.32103,-0.338667 0.13053,-0.148167 0.19756,-0.289278 0.067,-0.144639 0.067,-0.313972 0,-0.208139 -0.12347,-0.313972 -0.12347,-0.109361 -0.32103,-0.109361 -0.18344,0 -0.32455,0.0635 -0.13758,0.0635 -0.28222,0.176389 l -0.16581,-0.208139 q 0.14817,-0.123472 0.33867,-0.208139 0.19403,-0.08819 0.43391,-0.08819 0.35278,0 0.55739,0.179917 0.20461,0.176389 0.20461,0.490361 0,0.197556 -0.0811,0.370417 -0.0811,0.172861 -0.22578,0.342194 -0.14464,0.165806 -0.33867,0.356306 l -0.52564,0.518583 v 0.01411 h 1.27353 z" id="path4403" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 104.116,26.269394 q 0.24341,0 0.41628,0.105833 0.17638,0.105834 0.26811,0.299861 0.0953,0.1905 0.0953,0.448028 v 0.186972 h -1.2947 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218723 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.29281,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path4405" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 106.28718,26.269394 q 0.33867,0 0.51153,0.165805 0.17286,0.162278 0.17286,0.529167 v 1.231194 h -0.30692 v -1.210027 q 0,-0.455084 -0.42333,-0.455084 -0.31397,0 -0.43392,0.176389 -0.11994,0.176389 -0.11994,0.508 v 0.980722 h -0.31045 v -1.890888 h 0.25048 l 0.0459,0.257527 h 0.0176 q 0.0917,-0.148166 0.254,-0.218722 0.16227,-0.07408 0.34219,-0.07408 z" id="path4407" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 108.18579,27.976838 q 0.0705,0 0.14463,-0.01058 0.0741,-0.01411 0.11995,-0.02822 v 0.236361 q -0.0494,0.02469 -0.14111,0.0388 -0.0917,0.01764 -0.17639,0.01764 -0.14817,0 -0.27517,-0.04939 -0.12347,-0.05292 -0.20108,-0.179916 -0.0776,-0.127 -0.0776,-0.356306 v -1.100666 h -0.26811 v -0.148167 l 0.27164,-0.123472 0.12347,-0.402167 h 0.18344 v 0.433917 h 0.54681 v 0.239889 h -0.54681 v 1.093611 q 0,0.172861 0.0811,0.257527 0.0847,0.08114 0.2152,0.08114 z" id="path4409" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 109.71094,26.269394 q 0.0529,0 0.11289,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.1023,-0.0071 -0.14464,0 -0.27164,0.08114 -0.127,0.07761 -0.20461,0.22225 -0.0741,0.141111 -0.0741,0.331611 V 28.19556 H 108.829 v -1.890888 h 0.254 l 0.0353,0.345722 h 0.0141 q 0.0917,-0.155222 0.23636,-0.268111 0.14464,-0.112889 0.34219,-0.112889 z" id="path4411" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 110.44158,25.595588 q 0.0705,0 0.12347,0.04939 0.0564,0.04586 0.0564,0.148167 0,0.09878 -0.0564,0.148167 -0.0529,0.04939 -0.12347,0.04939 -0.0776,0 -0.13053,-0.04939 -0.0529,-0.04939 -0.0529,-0.148167 0,-0.102306 0.0529,-0.148167 0.0529,-0.04939 0.13053,-0.04939 z m 0.15169,0.709084 v 1.890888 h -0.31044 v -1.890888 z" id="path4413" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 111.92258,26.269394 q 0.24342,0 0.41628,0.105833 0.17639,0.105834 0.26811,0.299861 0.0952,0.1905 0.0952,0.448028 v 0.186972 h -1.29469 q 0.007,0.321028 0.16228,0.490361 0.15875,0.165806 0.44097,0.165806 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271639 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109361 -0.32103,-0.324555 -0.11289,-0.218723 -0.11289,-0.532695 0,-0.310444 0.10231,-0.532694 0.10583,-0.22225 0.2928,-0.342195 0.1905,-0.119944 0.44097,-0.119944 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.1517,0.395111 h 0.96309 q -0.004,-0.239889 -0.11289,-0.388056 -0.10936,-0.151694 -0.34572,-0.151694 z" id="path4415" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 114.41479,27.673449 q 0,0.275167 -0.20461,0.416278 -0.20461,0.141111 -0.55033,0.141111 -0.19756,0 -0.34219,-0.03175 -0.14112,-0.03175 -0.25048,-0.08819 v -0.282222 q 0.11289,0.05644 0.27164,0.105833 0.16228,0.04586 0.32809,0.04586 0.23636,0 0.34219,-0.07408 0.10583,-0.07761 0.10583,-0.204611 0,-0.07056 -0.0388,-0.127 -0.0388,-0.05645 -0.14111,-0.112889 -0.0988,-0.05645 -0.28575,-0.127 -0.18345,-0.07056 -0.31398,-0.141111 -0.13052,-0.07056 -0.20108,-0.169334 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239889 0.19402,-0.370416 0.19756,-0.130528 0.51506,-0.130528 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246944 q -0.11995,-0.04939 -0.25048,-0.08467 -0.13052,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.2928,0.0635 -0.0988,0.05997 -0.0988,0.165805 0,0.07761 0.0459,0.134056 0.0459,0.05292 0.15169,0.105833 0.10937,0.04939 0.28928,0.119945 0.17992,0.06703 0.30692,0.137583 0.127,0.07056 0.19403,0.172861 0.067,0.09878 0.067,0.250472 z" id="path4417" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 115.48906,27.228949 q 0,0.426861 -0.127,0.821973 -0.12347,0.391583 -0.39159,0.702027 h -0.28927 q 0.24341,-0.331611 0.36689,-0.723194 0.127,-0.395111 0.127,-0.804333 0,-0.419806 -0.127,-0.818445 -0.12348,-0.398639 -0.37042,-0.73025 h 0.2928 q 0.26812,0.321028 0.39159,0.723195 0.127,0.398638 0.127,0.829027 z" id="path4419" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+</g>
+<path d="m 83.343751,-31.083332 h 3.968736 v 3.96875 h -3.968736 z" id="path2511" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 75.538712,-37.697918 h 7.80504 V -20.5 h -7.80504 z" id="rect2482" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="L1i TLB" id="text2490" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 78.141554,-34.731861 h 2.518833 v 0.3175 h -2.236611 v 1.100666 h -0.282222 z" id="path15666" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 78.141554,-31.973139 v -0.303389 h 1.760361 q 0.151694,0 0.243417,0.0035 0.09172,0.0035 0.1905,0.01058 -0.05644,-0.05644 -0.09525,-0.102306 -0.03881,-0.04586 -0.09878,-0.116416 l -0.218722,-0.268111 0.208138,-0.162278 0.529167,0.680861 v 0.257528 z" id="path15668" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 80.741526,-30.749001 q 0,0.07056 -0.04939,0.123473 -0.04586,0.05644 -0.148167,0.05644 -0.09878,0 -0.148166,-0.05644 -0.04939,-0.05292 -0.04939,-0.123473 0,-0.07761 0.04939,-0.130527 0.04939,-0.05292 0.148166,-0.05292 0.102306,0 0.148167,0.05292 0.04939,0.05292 0.04939,0.130527 z m -0.709083,0.151695 h -1.890889 v -0.310445 h 1.890889 z" id="path15670" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 78.141554,-28.240751 v -0.3175 h 2.240139 v -0.786694 h 0.278694 v 1.887361 h -0.278694 v -0.783167 z" id="path15672" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 78.141554,-27.076584 h 2.518833 v 0.3175 h -2.236611 v 1.100667 h -0.282222 z" id="path15674" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 80.660387,-25.228029 v 0.719667 q 0,0.472722 -0.141111,0.712611 -0.137583,0.243417 -0.483306,0.243417 -0.22225,0 -0.370416,-0.123472 -0.144639,-0.123473 -0.186972,-0.356306 h -0.01764 q -0.02469,0.15875 -0.09172,0.28575 -0.06703,0.130528 -0.1905,0.204611 -0.123473,0.07408 -0.321028,0.07408 -0.342195,0 -0.529167,-0.236362 -0.186972,-0.232833 -0.186972,-0.638527 v -0.885473 z m -1.072444,0.3175 v 0.465667 q 0,0.324556 0.102305,0.4445 0.105834,0.119945 0.310445,0.119945 0.208139,0 0.296333,-0.148167 0.09172,-0.144639 0.09172,-0.465667 v -0.416278 z m -0.264584,0 h -0.913694 v 0.508 q 0,0.335139 0.130528,0.465667 0.130528,0.130528 0.342194,0.130528 0.197556,0 0.3175,-0.137583 0.123472,-0.134056 0.123472,-0.483306 z" id="path15676" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 89.230647,-20.499997 h 3.96874 v 3.96875 h -3.96874 z" id="path2509" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="m 87.312492,-16.531244 h 7.805041 V 0.66667366 h -7.805041 z" id="rect2497" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="L1d TLB" id="text2501" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 89.915335,-14.194894 h 2.518833 v 0.3175 h -2.236611 v 1.100667 h -0.282222 z" id="path15690" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 89.915335,-11.436172 v -0.303389 h 1.760361 q 0.151694,0 0.243416,0.0035 0.09172,0.0035 0.1905,0.01058 -0.05644,-0.05644 -0.09525,-0.102305 -0.03881,-0.04586 -0.09878,-0.116417 l -0.218723,-0.268111 0.208139,-0.162278 0.529167,0.680861 v 0.257528 z" id="path15692" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 89.880057,-9.7005055 q 0,-0.3527775 0.243417,-0.5644445 0.246944,-0.211667 0.733777,-0.211667 0.486834,0 0.733778,0.211667 0.250472,0.215194 0.250472,0.5679722 0,0.2187223 -0.08114,0.3563056 -0.08114,0.1411111 -0.197555,0.2293055 V -9.0902 q 0.04586,-0.00353 0.134055,-0.014111 0.09172,-0.00706 0.144639,-0.00706 h 0.754945 v 0.3104445 h -2.681111 v -0.2504722 l 0.254,-0.045861 v -0.014111 q -0.119945,-0.084667 -0.204611,-0.2257777 -0.08467,-0.1411111 -0.08467,-0.3633611 z m 0.257528,0.049389 q 0,0.2998612 0.162277,0.4198056 0.165806,0.1234722 0.497417,0.1234722 h 0.05644 q 0.352777,0 0.53975,-0.1164167 0.1905,-0.1164166 0.1905,-0.4303888 0,-0.2504722 -0.201084,-0.3774728 -0.197555,-0.123472 -0.532694,-0.123472 -0.338667,0 -0.525639,0.123472 -0.186972,0.1270006 -0.186972,0.3810005 z" id="path15694" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 89.915335,-6.4443664 v -0.3175 h 2.240139 v -0.7866944 h 0.278694 v 1.8873611 h -0.278694 v -0.7831667 z" id="path15696" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 89.915335,-5.2802002 h 2.518833 v 0.3174999 h -2.236611 v 1.1006667 h -0.282222 z" id="path15698" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 92.434168,-3.4316447 v 0.7196667 q 0,0.4727222 -0.141111,0.7126111 -0.137583,0.2434166 -0.483306,0.2434166 -0.22225,0 -0.370416,-0.1234722 -0.144639,-0.1234722 -0.186973,-0.3563055 h -0.01764 q -0.02469,0.1587499 -0.09172,0.2857499 -0.06703,0.1305278 -0.1905,0.2046111 -0.123472,0.074083 -0.321027,0.074083 -0.342195,0 -0.529167,-0.2363611 -0.186972,-0.2328334 -0.186972,-0.6385278 v -0.8854722 z m -1.072444,0.3175 v 0.4656667 q 0,0.3245555 0.102305,0.4445 0.105833,0.1199444 0.310445,0.1199444 0.208138,0 0.296333,-0.1481667 0.09172,-0.1446389 0.09172,-0.4656666 v -0.4162778 z m -0.264584,0 h -0.913694 v 0.508 q 0,0.3351389 0.130528,0.4656666 0.130527,0.1305278 0.342194,0.1305278 0.197556,0 0.3175,-0.1375833 0.123472,-0.1340556 0.123472,-0.4833055 z" id="path15700" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 87.312492,-37.697918 h 7.805041 V -20.5 h -7.805041 z" id="rect2503" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="L2 TLB" id="text2507" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 89.915335,-34.276774 h 2.518833 v 0.3175 h -2.236611 v 1.100666 h -0.282222 z" id="path15679" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 89.915335,-30.935969 v -1.665111 h 0.257527 l 0.66675,0.659695 q 0.1905,0.1905 0.338667,0.321027 0.148167,0.130528 0.289278,0.197556 0.144639,0.06703 0.313972,0.06703 0.208139,0 0.313972,-0.123473 0.109361,-0.123472 0.109361,-0.321027 0,-0.183445 -0.0635,-0.324556 -0.0635,-0.137583 -0.176388,-0.282222 l 0.208138,-0.165806 q 0.123473,0.148167 0.208139,0.338667 0.08819,0.194028 0.08819,0.433917 0,0.352777 -0.179917,0.557389 -0.176389,0.204611 -0.490361,0.204611 -0.197556,0 -0.370417,-0.08114 -0.172861,-0.08114 -0.342194,-0.225778 -0.165806,-0.144639 -0.356306,-0.338667 l -0.518583,-0.525639 h -0.01411 v 1.273528 z" id="path15681" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 89.915335,-28.69583 v -0.3175 h 2.240139 v -0.786694 h 0.278694 v 1.887361 h -0.278694 v -0.783167 z" id="path15683" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 89.915335,-27.531663 h 2.518833 v 0.3175 h -2.236611 v 1.100666 h -0.282222 z" id="path15685" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 92.434168,-25.683108 v 0.719667 q 0,0.472722 -0.141111,0.712611 -0.137583,0.243416 -0.483306,0.243416 -0.22225,0 -0.370416,-0.123472 -0.144639,-0.123472 -0.186973,-0.356305 h -0.01764 q -0.02469,0.15875 -0.09172,0.28575 -0.06703,0.130527 -0.1905,0.204611 -0.123472,0.07408 -0.321027,0.07408 -0.342195,0 -0.529167,-0.236361 -0.186972,-0.232833 -0.186972,-0.638528 v -0.885472 z m -1.072444,0.3175 v 0.465667 q 0,0.324555 0.102305,0.4445 0.105833,0.119944 0.310445,0.119944 0.208138,0 0.296333,-0.148167 0.09172,-0.144639 0.09172,-0.465666 v -0.416278 z m -0.264584,0 h -0.913694 v 0.508 q 0,0.335139 0.130528,0.465667 0.130527,0.130527 0.342194,0.130527 0.197556,0 0.3175,-0.137583 0.123472,-0.134056 0.123472,-0.483306 z" id="path15687" style="font-size:3.52777767px;text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 839.04297,289.39453 v 60 h -15 v 15 h 15 v 95 h 15 25 v -15 h -25 v -140 h 15 v -15 h -15 z" id="path2513" style="fill:#cccccc;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<g aria-label="Common Data Buses" id="text2523" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 175.10206,36.274092 q 0,-0.405694 -0.27164,-0.638527 -0.27164,-0.232834 -0.74436,-0.232834 -0.46919,0 -0.74436,0.215195 -0.27164,0.218722 -0.27164,0.652639 0,0.165805 0.0282,0.313972 0.0282,0.148166 0.0706,0.289278 h -0.27517 q -0.0529,-0.141112 -0.0776,-0.292806 -0.0247,-0.148167 -0.0247,-0.356306 0,-0.384527 0.15875,-0.642055 0.15875,-0.257528 0.45155,-0.388056 0.29281,-0.127 0.68792,-0.127 0.381,0 0.67028,0.137584 0.2928,0.141111 0.45508,0.41275 0.1658,0.271639 0.1658,0.659694 0,0.398639 -0.14816,0.694972 l -0.26811,-0.127 q 0.0529,-0.116416 0.0952,-0.261055 0.0423,-0.141111 0.0423,-0.310445 z" id="path15722" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 173.77562,39.025759 q -0.4692,0 -0.72673,-0.239889 -0.25752,-0.236361 -0.25752,-0.642055 0,-0.250473 0.11288,-0.448028 0.11642,-0.194028 0.33514,-0.306917 0.22225,-0.112889 0.53623,-0.112889 0.46919,0 0.72319,0.236361 0.254,0.236362 0.254,0.642056 0,0.257528 -0.11642,0.451555 -0.11289,0.197556 -0.33161,0.306917 -0.21519,0.112889 -0.52916,0.112889 z m 0,-1.42875 q -0.33514,0 -0.5327,0.130528 -0.19403,0.134055 -0.19403,0.423333 0,0.28575 0.19403,0.419806 0.19756,0.134055 0.5327,0.134055 0.33513,0 0.52563,-0.134055 0.1905,-0.134056 0.1905,-0.423334 0,-0.289277 -0.1905,-0.419805 -0.1905,-0.130528 -0.52563,-0.130528 z" id="path15724" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 174.75281,41.590453 q 0,0.321028 -0.16581,0.479778 -0.16227,0.15875 -0.52916,0.15875 h -1.2312 v -0.306917 h 1.21709 q 0.44802,0 0.44802,-0.384527 0,-0.275167 -0.15875,-0.395111 -0.15875,-0.116417 -0.46213,-0.116417 h -1.04423 v -0.306917 h 1.21709 q 0.44802,0 0.44802,-0.388055 0,-0.28575 -0.17638,-0.395111 -0.17639,-0.109361 -0.508,-0.109361 h -0.98073 V 39.51612 h 1.89089 v 0.250472 l -0.25753,0.04586 v 0.01764 q 0.14817,0.08819 0.21873,0.236361 0.0741,0.151695 0.0741,0.321028 0,0.4445 -0.3175,0.578556 v 0.01764 q 0.16228,0.09525 0.23989,0.257527 0.0776,0.165806 0.0776,0.34925 z" id="path15726" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 174.75281,44.888926 q 0,0.321028 -0.16581,0.479778 -0.16227,0.15875 -0.52916,0.15875 h -1.2312 v -0.306917 h 1.21709 q 0.44802,0 0.44802,-0.384528 0,-0.275167 -0.15875,-0.395111 -0.15875,-0.116417 -0.46213,-0.116417 h -1.04423 v -0.306916 h 1.21709 q 0.44802,0 0.44802,-0.388056 0,-0.28575 -0.17638,-0.395111 -0.17639,-0.109361 -0.508,-0.109361 h -0.98073 v -0.310444 h 1.89089 v 0.250472 l -0.25753,0.04586 v 0.01764 q 0.14817,0.08819 0.21873,0.236361 0.0741,0.151694 0.0741,0.321028 0,0.4445 -0.3175,0.578555 v 0.01764 q 0.16228,0.09525 0.23989,0.257528 0.0776,0.165805 0.0776,0.34925 z" id="path15728" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 173.77562,47.757009 q -0.4692,0 -0.72673,-0.239889 -0.25752,-0.236361 -0.25752,-0.642055 0,-0.250472 0.11288,-0.448028 0.11642,-0.194028 0.33514,-0.306917 0.22225,-0.112888 0.53623,-0.112888 0.46919,0 0.72319,0.236361 0.254,0.236361 0.254,0.642055 0,0.257528 -0.11642,0.451556 -0.11289,0.197555 -0.33161,0.306916 -0.21519,0.112889 -0.52916,0.112889 z m 0,-1.42875 q -0.33514,0 -0.5327,0.130528 -0.19403,0.134056 -0.19403,0.423333 0,0.28575 0.19403,0.419806 0.19756,0.134056 0.5327,0.134056 0.33513,0 0.52563,-0.134056 0.1905,-0.134056 0.1905,-0.423333 0,-0.289278 -0.1905,-0.419806 -0.1905,-0.130528 -0.52563,-0.130528 z" id="path15730" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 174.75281,49.157537 q 0,0.338666 -0.16581,0.511527 -0.16227,0.172861 -0.52916,0.172861 h -1.2312 v -0.306916 h 1.21003 q 0.45508,0 0.45508,-0.423334 0,-0.313972 -0.17638,-0.433916 -0.17639,-0.119945 -0.508,-0.119945 h -0.98073 V 48.24737 h 1.89089 v 0.250472 l -0.25753,0.04586 v 0.01764 q 0.14817,0.09172 0.21873,0.254 0.0741,0.162278 0.0741,0.342195 z" id="path15732" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 174.11075,53.40498 q -0.63852,0 -0.96308,-0.34925 -0.32103,-0.345722 -0.32103,-0.966611 v -0.702027 h 2.51884 v 0.776111 q 0,0.381 -0.14111,0.659694 -0.14112,0.278694 -0.41628,0.430389 -0.27164,0.151694 -0.67734,0.151694 z m -0.0106,-0.335139 q 0.50447,0 0.73731,-0.250472 0.23636,-0.246944 0.23636,-0.702027 v -0.41275 h -1.97556 v 0.342194 q 0,1.023055 1.00189,1.023055 z" id="path15734" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 174.74928,54.636174 q 0,0.345723 -0.15169,0.511528 -0.1517,0.165806 -0.48331,0.165806 h -1.28764 V 55.08773 l 0.26811,-0.05997 v -0.01411 q -0.15522,-0.123473 -0.2293,-0.261056 -0.0741,-0.134056 -0.0741,-0.373944 0,-0.257528 0.13405,-0.426861 0.13758,-0.169334 0.42686,-0.169334 0.28222,0 0.43392,0.22225 0.15522,0.22225 0.16933,0.684389 l 0.0106,0.321028 h 0.11288 q 0.23637,0 0.32809,-0.102306 0.0917,-0.102305 0.0917,-0.289278 0,-0.148166 -0.0459,-0.282222 -0.0423,-0.134055 -0.0988,-0.250472 l 0.23283,-0.09525 q 0.067,0.123472 0.11289,0.292806 0.0494,0.169333 0.0494,0.352777 z m -0.99836,0.370417 -0.0106,-0.278694 q -0.0141,-0.352778 -0.11289,-0.490361 -0.0988,-0.134056 -0.2787,-0.134056 -0.15875,0 -0.23283,0.09525 -0.0741,0.09878 -0.0741,0.250472 0,0.239889 0.13053,0.398639 0.13405,0.15875 0.40922,0.15875 z" id="path15736" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 173.04537,56.530592 q 0,0.07055 0.0106,0.144639 0.0141,0.07408 0.0282,0.119944 h -0.23636 q -0.0247,-0.04939 -0.0388,-0.141111 -0.0176,-0.09172 -0.0176,-0.176389 0,-0.148167 0.0494,-0.275167 0.0529,-0.123472 0.17992,-0.201083 0.127,-0.07761 0.35631,-0.07761 h 1.10066 v -0.268111 h 0.14817 l 0.12347,0.271639 0.40217,0.123472 v 0.183444 h -0.43392 v 0.546806 h -0.23989 v -0.546806 h -1.09361 q -0.17286,0 -0.25753,0.08114 -0.0811,0.08467 -0.0811,0.215195 z" id="path15738" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 174.74928,57.888786 q 0,0.345722 -0.15169,0.511527 -0.1517,0.165806 -0.48331,0.165806 h -1.28764 v -0.225778 l 0.26811,-0.05997 v -0.01411 q -0.15522,-0.123472 -0.2293,-0.261056 -0.0741,-0.134055 -0.0741,-0.373944 0,-0.257528 0.13405,-0.426861 0.13758,-0.169334 0.42686,-0.169334 0.28222,0 0.43392,0.22225 0.15522,0.22225 0.16933,0.684389 l 0.0106,0.321028 h 0.11288 q 0.23637,0 0.32809,-0.102306 0.0917,-0.102305 0.0917,-0.289277 0,-0.148167 -0.0459,-0.282223 -0.0423,-0.134055 -0.0988,-0.250472 l 0.23283,-0.09525 q 0.067,0.123472 0.11289,0.292806 0.0494,0.169333 0.0494,0.352778 z m -0.99836,0.370416 -0.0106,-0.278694 q -0.0141,-0.352778 -0.11289,-0.490361 -0.0988,-0.134056 -0.2787,-0.134056 -0.15875,0 -0.23283,0.09525 -0.0741,0.09878 -0.0741,0.250472 0,0.239889 0.13053,0.398639 0.13405,0.15875 0.40922,0.15875 z" id="path15740" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 175.34548,60.111287 v 0.719667 q 0,0.472722 -0.14111,0.712611 -0.13759,0.243416 -0.48331,0.243416 -0.22225,0 -0.37042,-0.123472 -0.14464,-0.123472 -0.18697,-0.356305 h -0.0176 q -0.0247,0.15875 -0.0917,0.28575 -0.067,0.130527 -0.1905,0.204611 -0.12347,0.07408 -0.32103,0.07408 -0.34219,0 -0.52916,-0.236361 -0.18698,-0.232833 -0.18698,-0.638528 v -0.885472 z m -1.07245,0.3175 v 0.465667 q 0,0.324555 0.10231,0.4445 0.10583,0.119944 0.31044,0.119944 0.20814,0 0.29634,-0.148167 0.0917,-0.144638 0.0917,-0.465666 v -0.416278 z m -0.26458,0 h -0.9137 v 0.508 q 0,0.335139 0.13053,0.465667 0.13053,0.130527 0.3422,0.130527 0.19755,0 0.3175,-0.137583 0.12347,-0.134055 0.12347,-0.483305 z" id="path15742" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 174.71753,63.942453 h -1.89089 v -0.254 l 0.25048,-0.04586 v -0.01411 q -0.14817,-0.09172 -0.21873,-0.254 -0.067,-0.162277 -0.067,-0.345722 0,-0.342194 0.16227,-0.515055 0.16581,-0.172861 0.52564,-0.172861 h 1.23825 v 0.313972 h -1.21708 q -0.45156,0 -0.45156,0.419805 0,0.313973 0.17639,0.433917 0.17639,0.123472 0.508,0.123472 h 0.98425 z" id="path15744" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 173.34875,65.773369 q -0.27516,0 -0.41627,-0.204611 -0.14111,-0.204611 -0.14111,-0.550334 0,-0.197555 0.0317,-0.342194 0.0318,-0.141111 0.0882,-0.250472 h 0.28222 q -0.0564,0.112889 -0.10583,0.271639 -0.0459,0.162277 -0.0459,0.328083 0,0.236361 0.0741,0.342194 0.0776,0.105834 0.20461,0.105834 0.0706,0 0.127,-0.03881 0.0565,-0.0388 0.11289,-0.141111 0.0565,-0.09878 0.127,-0.28575 0.0706,-0.183444 0.14111,-0.313972 0.0706,-0.130528 0.16934,-0.201083 0.0988,-0.07056 0.254,-0.07056 0.23988,0 0.37041,0.194028 0.13053,0.197555 0.13053,0.515055 0,0.172861 -0.0353,0.321028 -0.0318,0.151695 -0.0917,0.282222 l -0.24694,-0.105833 q 0.0494,-0.119944 0.0847,-0.250472 0.0353,-0.130528 0.0353,-0.268111 0,-0.1905 -0.0635,-0.292806 -0.06,-0.09878 -0.16581,-0.09878 -0.0776,0 -0.13405,0.04586 -0.0529,0.04586 -0.10583,0.151695 -0.0494,0.109361 -0.11995,0.289278 -0.067,0.179916 -0.13758,0.306916 -0.0706,0.127 -0.17286,0.194028 -0.0988,0.06703 -0.25048,0.06703 z" id="path15746" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 174.75281,66.96223 q 0,0.243417 -0.10583,0.416278 -0.10584,0.176389 -0.29986,0.268111 -0.1905,0.09525 -0.44803,0.09525 h -0.18697 v -1.294694 q -0.32103,0.0071 -0.49037,0.162278 -0.1658,0.15875 -0.1658,0.440972 0,0.179917 0.0318,0.3175 0.0353,0.141111 0.0988,0.289278 h -0.27164 q -0.0635,-0.144639 -0.0917,-0.28575 -0.0317,-0.141111 -0.0317,-0.335139 0,-0.268111 0.10936,-0.47625 0.10936,-0.204611 0.32455,-0.321028 0.21872,-0.112889 0.5327,-0.112889 0.31044,0 0.53269,0.102306 0.22225,0.105833 0.3422,0.292805 0.11994,0.1905 0.11994,0.440972 z m -0.254,-0.0035 q 0,-0.22225 -0.14464,-0.352778 -0.14111,-0.127 -0.39511,-0.151695 v 0.963084 q 0.23989,-0.0035 0.38806,-0.112889 0.15169,-0.109361 0.15169,-0.345722 z" id="path15748" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 173.34875,69.452843 q -0.27516,0 -0.41627,-0.204611 -0.14111,-0.204611 -0.14111,-0.550334 0,-0.197555 0.0317,-0.342194 0.0318,-0.141111 0.0882,-0.250472 h 0.28222 q -0.0564,0.112889 -0.10583,0.271639 -0.0459,0.162277 -0.0459,0.328083 0,0.236361 0.0741,0.342194 0.0776,0.105834 0.20461,0.105834 0.0706,0 0.127,-0.03881 0.0565,-0.0388 0.11289,-0.141111 0.0565,-0.09878 0.127,-0.28575 0.0706,-0.183444 0.14111,-0.313972 0.0706,-0.130528 0.16934,-0.201084 0.0988,-0.07055 0.254,-0.07055 0.23988,0 0.37041,0.194028 0.13053,0.197555 0.13053,0.515055 0,0.172861 -0.0353,0.321028 -0.0318,0.151694 -0.0917,0.282222 l -0.24694,-0.105833 q 0.0494,-0.119945 0.0847,-0.250472 0.0353,-0.130528 0.0353,-0.268111 0,-0.1905 -0.0635,-0.292806 -0.06,-0.09878 -0.16581,-0.09878 -0.0776,0 -0.13405,0.04586 -0.0529,0.04586 -0.10583,0.151695 -0.0494,0.109361 -0.11995,0.289278 -0.067,0.179916 -0.13758,0.306916 -0.0706,0.127 -0.17286,0.194028 -0.0988,0.06703 -0.25048,0.06703 z" id="path15750" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 944.04297,159.39453 v 15 h 65.00003 v 260.45508 h 15 V 159.39453 h -15 z" id="path468" style="fill:#cccccc;stroke:none;stroke-width:0.78679591px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 182.5625,-7.2708336 h 17.19792 v 3.968752 H 182.5625 Z" id="path450" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="AGU" id="text454" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 189.50716,-4.0393281 -0.30338,-0.7796389 h -0.99837 l -0.29986,0.7796389 h -0.32102 l 0.98425,-2.5294166 h 0.28575 l 0.98072,2.5294166 z m -0.39863,-1.0618611 -0.28223,-0.762 q -0.0106,-0.028222 -0.0353,-0.1023055 -0.0247,-0.074083 -0.0494,-0.1516944 -0.0212,-0.081139 -0.0353,-0.1234723 -0.0247,0.1093611 -0.0564,0.2151945 -0.0318,0.1023055 -0.0529,0.1622777 l -0.28575,0.762 z" id="path4425" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 191.20452,-5.3693003 h 0.87136 v 1.2347222 q -0.20461,0.067028 -0.41275,0.098778 -0.20814,0.03175 -0.47272,0.03175 -0.39158,0 -0.65969,-0.1552222 -0.26812,-0.15875 -0.40923,-0.4480278 -0.13758,-0.2928056 -0.13758,-0.6914444 0,-0.3951111 0.15522,-0.6843889 0.15522,-0.2892778 0.4445,-0.4480278 0.29281,-0.1622777 0.70556,-0.1622777 0.21166,0 0.39864,0.038806 0.1905,0.038806 0.35277,0.1093611 l -0.11994,0.2751667 q -0.13406,-0.059972 -0.30339,-0.1023056 -0.1658,-0.042333 -0.34572,-0.042333 -0.45156,0 -0.70556,0.2716389 -0.25047,0.2716389 -0.25047,0.7443611 0,0.2998611 0.0953,0.5326944 0.0988,0.2293055 0.30692,0.3598333 0.20814,0.127 0.5468,0.127 0.16581,0 0.28223,-0.017639 0.11641,-0.017639 0.21166,-0.042333 v -0.7478889 h -0.55386 z" id="path4427" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 194.59653,-6.5581614 v 1.6298333 q 0,0.2610556 -0.10583,0.4727222 -0.10583,0.2081389 -0.32455,0.3316111 -0.2152,0.1199445 -0.55034,0.1199445 -0.46919,0 -0.71614,-0.254 -0.24341,-0.2575278 -0.24341,-0.6773333 v -1.6227778 h 0.3175 v 1.6333611 q 0,0.3069167 0.16227,0.47625 0.16581,0.1693333 0.49742,0.1693333 0.3422,0 0.49389,-0.1799166 0.15522,-0.1834445 0.15522,-0.4691945 v -1.6298333 z" id="path4429" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 182.5625,-3.3020836 h 17.19792 V 0.66666901 H 182.5625 Z" id="path456" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<g aria-label="LOAD" id="text460" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="M 186.78468,-0.05852602 V -2.5773593 h 0.3175 v 2.23661106 h 1.10067 v 0.28222222 z" id="path4432" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 190.76016,-1.3214704 q 0,0.39158329 -0.13406,0.68438884 -0.13053,0.28927777 -0.38806,0.45155554 -0.25752,0.16227777 -0.63852,0.16227777 -0.39159,0 -0.65264,-0.16227777 -0.25753,-0.16227777 -0.38453,-0.45508332 -0.127,-0.29280555 -0.127,-0.68438886 0,-0.3880556 0.127,-0.6773333 0.127,-0.2892778 0.38453,-0.4515556 0.26105,-0.1622777 0.65616,-0.1622777 0.37748,0 0.635,0.1622777 0.25753,0.15875 0.38806,0.4515556 0.13406,0.2892777 0.13406,0.6808611 z m -1.98967,0 q 0,0.47624995 0.20108,0.75141661 0.20109,0.27163888 0.62795,0.27163888 0.43039,0 0.62794,-0.27163888 0.19756,-0.27516666 0.19756,-0.75141661 0,-0.47625 -0.19756,-0.7443611 -0.19755,-0.2716389 -0.62442,-0.2716389 -0.42686,0 -0.63147,0.2716389 -0.20108,0.2681111 -0.20108,0.7443611 z" id="path4434" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 192.82997,-0.05852602 -0.30339,-0.77963887 h -0.99836 l -0.29986,0.77963887 h -0.32103 l 0.98425,-2.52941658 h 0.28575 l 0.98072,2.52941658 z m -0.39864,-1.06186108 -0.28222,-0.762 q -0.0106,-0.028222 -0.0353,-0.1023055 -0.0247,-0.074083 -0.0494,-0.1516945 -0.0212,-0.081139 -0.0353,-0.1234722 -0.0247,0.1093611 -0.0564,0.2151944 -0.0318,0.1023056 -0.0529,0.1622778 l -0.28575,0.762 z" id="path4436" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 195.52051,-1.3426371 q 0,0.63852776 -0.34925,0.96308331 -0.34573,0.32102777 -0.96662,0.32102777 h -0.70202 V -2.5773593 h 0.77611 q 0.381,0 0.65969,0.1411111 0.2787,0.1411111 0.43039,0.4162778 0.1517,0.2716389 0.1517,0.6773333 z m -0.33514,0.010583 q 0,-0.5044722 -0.25048,-0.7373055 -0.24694,-0.2363611 -0.70202,-0.2363611 h -0.41275 v 1.9755555 h 0.34219 q 1.02306,0 1.02306,-1.0018889 z" id="path4438" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="port 3" id="text478" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 220.03342,46.78339 q 0,0.34925 -0.24342,0.560916 -0.24341,0.215195 -0.73378,0.215195 -0.4833,0 -0.73377,-0.215195 -0.25048,-0.211666 -0.25048,-0.564444 0,-0.218722 0.0811,-0.363361 0.0847,-0.141111 0.19403,-0.22225 v -0.02117 q -0.06,0.0071 -0.15169,0.01411 -0.0917,0.0071 -0.15875,0.0071 h -0.77611 v -0.310445 h 2.73755 v 0.254 l -0.25753,0.04233 v 0.01411 q 0.12348,0.08467 0.20814,0.22225 0.0847,0.137583 0.0847,0.366889 z m -0.26106,-0.05644 q 0,-0.289278 -0.16227,-0.409222 -0.16228,-0.116417 -0.49389,-0.123472 h -0.06 q -0.34925,0 -0.53975,0.112889 -0.18697,0.116416 -0.18697,0.426861 0,0.172861 0.0952,0.282222 0.0953,0.112889 0.25753,0.165806 0.16581,0.05644 0.37747,0.05644 0.32456,0 0.51859,-0.127 0.19402,-0.123472 0.19402,-0.384528 z" id="path15808" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 219.05622,49.697334 q -0.46919,0 -0.72672,-0.239889 -0.25753,-0.236361 -0.25753,-0.642055 0,-0.250473 0.11289,-0.448028 0.11642,-0.194028 0.33514,-0.306917 0.22225,-0.112889 0.53622,-0.112889 0.4692,0 0.7232,0.236361 0.254,0.236362 0.254,0.642056 0,0.257528 -0.11642,0.451555 -0.11289,0.197556 -0.33161,0.306917 -0.21519,0.112889 -0.52917,0.112889 z m 0,-1.42875 q -0.33513,0 -0.53269,0.130528 -0.19403,0.134055 -0.19403,0.423333 0,0.28575 0.19403,0.419806 0.19756,0.134055 0.53269,0.134055 0.33514,0 0.52564,-0.134055 0.1905,-0.134056 0.1905,-0.423334 0,-0.289277 -0.1905,-0.419805 -0.1905,-0.130528 -0.52564,-0.130528 z" id="path15810" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 220.03342,51.06964 q 0,0.05292 -0.007,0.112888 -0.004,0.0635 -0.0141,0.109362 l -0.28575,-0.03881 q 0.0106,-0.04586 0.0176,-0.102306 0.007,-0.05292 0.007,-0.102305 0,-0.144639 -0.0811,-0.271639 -0.0776,-0.127 -0.22225,-0.204611 -0.14111,-0.07408 -0.33161,-0.07408 h -1.00895 v -0.310445 h 1.89089 v 0.254 l -0.34572,0.03528 v 0.01411 q 0.15522,0.09172 0.26811,0.236361 0.11289,0.144639 0.11289,0.342195 z" id="path15812" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 218.32597,52.276139 q 0,0.07056 0.0106,0.144639 0.0141,0.07408 0.0282,0.119945 h -0.23636 q -0.0247,-0.04939 -0.0388,-0.141111 -0.0176,-0.09172 -0.0176,-0.176389 0,-0.148167 0.0494,-0.275167 0.0529,-0.123472 0.17992,-0.201083 0.127,-0.07761 0.35631,-0.07761 h 1.10066 v -0.268111 h 0.14817 l 0.12347,0.271638 0.40217,0.123473 v 0.183444 h -0.43392 v 0.546806 h -0.23989 v -0.546806 h -1.09361 q -0.17286,0 -0.25753,0.08114 -0.0811,0.08467 -0.0811,0.215194 z" id="path15814" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 220.03695,55.274751 q -0.254,0 -0.4057,-0.141111 -0.14816,-0.141112 -0.19755,-0.381 h -0.0141 q -0.0353,0.303388 -0.1905,0.451555 -0.15523,0.148167 -0.4057,0.148167 -0.21872,0 -0.39158,-0.102306 -0.16934,-0.102305 -0.26459,-0.3175 -0.0952,-0.211666 -0.0952,-0.546805 0,-0.197556 0.0318,-0.366889 0.0282,-0.169334 0.10584,-0.324556 h 0.28928 q -0.0776,0.15875 -0.12348,0.342195 -0.0423,0.183444 -0.0423,0.352777 0,0.338667 0.13053,0.486834 0.13405,0.151694 0.36689,0.151694 0.23636,0 0.33866,-0.186972 0.10584,-0.183444 0.10584,-0.518583 v -0.243417 h 0.26458 v 0.246944 q 0,0.310445 0.13053,0.469195 0.13053,0.162278 0.34572,0.162278 0.18344,0 0.28222,-0.123473 0.10231,-0.123472 0.10231,-0.335138 0,-0.204612 -0.06,-0.34925 -0.06,-0.144639 -0.1517,-0.28575 l 0.21167,-0.155223 q 0.10583,0.134056 0.18344,0.331611 0.0776,0.201084 0.0776,0.455084 0,0.395111 -0.17639,0.585611 -0.17638,0.194028 -0.44802,0.194028 z" id="path15816" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="port 4" id="text484" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 226.648,46.78339 q 0,0.34925 -0.24342,0.560916 -0.24342,0.215195 -0.73378,0.215195 -0.4833,0 -0.73378,-0.215195 -0.25047,-0.211666 -0.25047,-0.564444 0,-0.218722 0.0811,-0.363361 0.0847,-0.141111 0.19403,-0.22225 v -0.02117 q -0.06,0.0071 -0.1517,0.01411 -0.0917,0.0071 -0.15875,0.0071 h -0.77611 v -0.310445 h 2.73756 v 0.254 l -0.25753,0.04233 v 0.01411 q 0.12347,0.08467 0.20814,0.22225 0.0847,0.137583 0.0847,0.366889 z m -0.26106,-0.05644 q 0,-0.289278 -0.16228,-0.409222 -0.16227,-0.116417 -0.49389,-0.123472 h -0.06 q -0.34925,0 -0.53975,0.112889 -0.18697,0.116416 -0.18697,0.426861 0,0.172861 0.0952,0.282222 0.0952,0.112889 0.25753,0.165806 0.1658,0.05644 0.37747,0.05644 0.32456,0 0.51858,-0.127 0.19403,-0.123472 0.19403,-0.384528 z" id="path15797" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 225.6708,49.697334 q -0.46919,0 -0.72672,-0.239889 -0.25753,-0.236361 -0.25753,-0.642055 0,-0.250473 0.11289,-0.448028 0.11642,-0.194028 0.33514,-0.306917 0.22225,-0.112889 0.53622,-0.112889 0.4692,0 0.7232,0.236361 0.254,0.236362 0.254,0.642056 0,0.257528 -0.11642,0.451555 -0.11289,0.197556 -0.33161,0.306917 -0.2152,0.112889 -0.52917,0.112889 z m 0,-1.42875 q -0.33514,0 -0.53269,0.130528 -0.19403,0.134055 -0.19403,0.423333 0,0.28575 0.19403,0.419806 0.19755,0.134055 0.53269,0.134055 0.33514,0 0.52564,-0.134055 0.1905,-0.134056 0.1905,-0.423334 0,-0.289277 -0.1905,-0.419805 -0.1905,-0.130528 -0.52564,-0.130528 z" id="path15799" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 226.648,51.06964 q 0,0.05292 -0.007,0.112888 -0.004,0.0635 -0.0141,0.109362 l -0.28575,-0.03881 q 0.0106,-0.04586 0.0176,-0.102306 0.007,-0.05292 0.007,-0.102305 0,-0.144639 -0.0811,-0.271639 -0.0776,-0.127 -0.22225,-0.204611 -0.14112,-0.07408 -0.33162,-0.07408 h -1.00894 v -0.310445 h 1.89089 v 0.254 l -0.34572,0.03528 v 0.01411 q 0.15522,0.09172 0.26811,0.236361 0.11289,0.144639 0.11289,0.342195 z" id="path15801" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 224.94055,52.276139 q 0,0.07056 0.0106,0.144639 0.0141,0.07408 0.0282,0.119945 H 224.743 q -0.0247,-0.04939 -0.0388,-0.141111 -0.0176,-0.09172 -0.0176,-0.176389 0,-0.148167 0.0494,-0.275167 0.0529,-0.123472 0.17992,-0.201083 0.127,-0.07761 0.3563,-0.07761 h 1.10067 v -0.268111 h 0.14817 l 0.12347,0.271638 0.40217,0.123473 v 0.183444 h -0.43392 v 0.546806 h -0.23989 v -0.546806 h -1.09361 q -0.17286,0 -0.25753,0.08114 -0.0811,0.08467 -0.0811,0.215194 z" id="path15803" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 225.29333,55.48289 v -0.366889 h -0.5715 V 54.81614 h 0.5715 v -1.2065 h 0.26458 l 1.69686,1.185333 v 0.321028 h -1.68275 v 0.366889 z m 0.27869,-0.66675 h 0.79375 q 0.18345,0 0.31045,0.0071 0.13053,0.0071 0.24694,0.01058 v -0.01411 q -0.067,-0.02822 -0.14464,-0.07056 -0.0776,-0.04233 -0.13052,-0.08114 l -1.07598,-0.754945 z" id="path15805" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="port 7" id="text490" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 233.5244,46.427002 q 0,0.34925 -0.24342,0.560916 -0.24341,0.215195 -0.73377,0.215195 -0.48331,0 -0.73378,-0.215195 -0.25047,-0.211666 -0.25047,-0.564444 0,-0.218722 0.0811,-0.363361 0.0847,-0.141111 0.19402,-0.22225 v -0.02117 q -0.06,0.0071 -0.15169,0.01411 -0.0917,0.0071 -0.15875,0.0071 h -0.77611 v -0.310445 h 2.73755 v 0.254 l -0.25752,0.04233 v 0.01411 q 0.12347,0.08467 0.20813,0.22225 0.0847,0.137583 0.0847,0.366889 z m -0.26105,-0.05645 q 0,-0.289278 -0.16228,-0.409222 -0.16228,-0.116417 -0.49389,-0.123472 h -0.06 q -0.34925,0 -0.53975,0.112889 -0.18698,0.116416 -0.18698,0.426861 0,0.172861 0.0952,0.282222 0.0952,0.112889 0.25753,0.165805 0.16581,0.05644 0.37747,0.05644 0.32456,0 0.51859,-0.127 0.19403,-0.123472 0.19403,-0.384528 z" id="path15786" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 232.54721,49.340946 q -0.4692,0 -0.72673,-0.239889 -0.25752,-0.236361 -0.25752,-0.642055 0,-0.250473 0.11289,-0.448028 0.11641,-0.194028 0.33513,-0.306917 0.22225,-0.112889 0.53623,-0.112889 0.46919,0 0.72319,0.236361 0.254,0.236361 0.254,0.642056 0,0.257528 -0.11642,0.451555 -0.11288,0.197556 -0.33161,0.306917 -0.21519,0.112889 -0.52916,0.112889 z m 0,-1.42875 q -0.33514,0 -0.5327,0.130528 -0.19403,0.134055 -0.19403,0.423333 0,0.28575 0.19403,0.419806 0.19756,0.134055 0.5327,0.134055 0.33514,0 0.52564,-0.134055 0.1905,-0.134056 0.1905,-0.423334 0,-0.289277 -0.1905,-0.419805 -0.1905,-0.130528 -0.52564,-0.130528 z" id="path15788" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 233.5244,50.713251 q 0,0.05292 -0.007,0.112889 -0.004,0.0635 -0.0141,0.109361 l -0.28575,-0.03881 q 0.0106,-0.04586 0.0176,-0.102306 0.007,-0.05292 0.007,-0.102305 0,-0.144639 -0.0811,-0.271639 -0.0776,-0.127 -0.22225,-0.204611 -0.14111,-0.07408 -0.33161,-0.07408 h -1.00895 v -0.310444 h 1.89089 v 0.254 l -0.34572,0.03528 v 0.01411 q 0.15522,0.09172 0.26811,0.236361 0.11289,0.144639 0.11289,0.342194 z" id="path15790" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 231.81696,51.919751 q 0,0.07056 0.0106,0.144639 0.0141,0.07408 0.0282,0.119945 h -0.23636 q -0.0247,-0.04939 -0.0388,-0.141111 -0.0176,-0.09172 -0.0176,-0.176389 0,-0.148167 0.0494,-0.275167 0.0529,-0.123472 0.17991,-0.201083 0.127,-0.07761 0.35631,-0.07761 h 1.10066 v -0.268112 h 0.14817 l 0.12347,0.271639 0.40217,0.123473 v 0.183444 h -0.43392 v 0.546806 h -0.23989 v -0.546806 h -1.09361 q -0.17286,0 -0.25752,0.08114 -0.0811,0.08467 -0.0811,0.215194 z" id="path15792" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 231.59823,53.658946 2.23662,1.033639 V 53.33439 h 0.28222 v 1.689806 h -0.23989 l -2.27895,-1.023056 z" id="path15794" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="port 6" id="text496" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 240.13898,46.427002 q 0,0.34925 -0.24342,0.560916 -0.24341,0.215195 -0.73378,0.215195 -0.4833,0 -0.73377,-0.215195 -0.25048,-0.211666 -0.25048,-0.564444 0,-0.218722 0.0811,-0.363361 0.0847,-0.141111 0.19403,-0.22225 v -0.02117 q -0.06,0.0071 -0.15169,0.01411 -0.0917,0.0071 -0.15875,0.0071 h -0.77611 v -0.310445 h 2.73755 v 0.254 l -0.25753,0.04233 v 0.01411 q 0.12348,0.08467 0.20814,0.22225 0.0847,0.137583 0.0847,0.366889 z m -0.26106,-0.05645 q 0,-0.289278 -0.16227,-0.409222 -0.16228,-0.116417 -0.49389,-0.123472 h -0.06 q -0.34925,0 -0.53975,0.112889 -0.18697,0.116416 -0.18697,0.426861 0,0.172861 0.0952,0.282222 0.0953,0.112889 0.25753,0.165805 0.16581,0.05644 0.37747,0.05644 0.32456,0 0.51859,-0.127 0.19402,-0.123472 0.19402,-0.384528 z" id="path15775" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 239.16178,49.340946 q -0.46919,0 -0.72672,-0.239889 -0.25753,-0.236361 -0.25753,-0.642055 0,-0.250473 0.11289,-0.448028 0.11642,-0.194028 0.33514,-0.306917 0.22225,-0.112889 0.53622,-0.112889 0.4692,0 0.7232,0.236361 0.254,0.236361 0.254,0.642056 0,0.257528 -0.11642,0.451555 -0.11289,0.197556 -0.33161,0.306917 -0.21519,0.112889 -0.52917,0.112889 z m 0,-1.42875 q -0.33513,0 -0.53269,0.130528 -0.19403,0.134055 -0.19403,0.423333 0,0.28575 0.19403,0.419806 0.19756,0.134055 0.53269,0.134055 0.33514,0 0.52564,-0.134055 0.1905,-0.134056 0.1905,-0.423334 0,-0.289277 -0.1905,-0.419805 -0.1905,-0.130528 -0.52564,-0.130528 z" id="path15777" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 240.13898,50.713251 q 0,0.05292 -0.007,0.112889 -0.004,0.0635 -0.0141,0.109361 l -0.28575,-0.03881 q 0.0106,-0.04586 0.0176,-0.102306 0.007,-0.05292 0.007,-0.102305 0,-0.144639 -0.0811,-0.271639 -0.0776,-0.127 -0.22225,-0.204611 -0.14111,-0.07408 -0.33161,-0.07408 h -1.00895 v -0.310444 h 1.89089 v 0.254 l -0.34572,0.03528 v 0.01411 q 0.15522,0.09172 0.26811,0.236361 0.11289,0.144639 0.11289,0.342194 z" id="path15779" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 238.43153,51.919751 q 0,0.07056 0.0106,0.144639 0.0141,0.07408 0.0282,0.119945 h -0.23636 q -0.0247,-0.04939 -0.0388,-0.141111 -0.0176,-0.09172 -0.0176,-0.176389 0,-0.148167 0.0494,-0.275167 0.0529,-0.123472 0.17992,-0.201083 0.127,-0.07761 0.35631,-0.07761 h 1.10066 v -0.268112 h 0.14817 l 0.12347,0.271639 0.40217,0.123473 v 0.183444 h -0.43392 v 0.546806 h -0.23989 v -0.546806 h -1.09361 q -0.17286,0 -0.25753,0.08114 -0.0811,0.08467 -0.0811,0.215194 z" id="path15781" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 239.28878,53.373196 q 0.27164,0 0.5327,0.04586 0.26458,0.04939 0.47625,0.172861 0.21519,0.127 0.34219,0.352778 0.127,0.225778 0.127,0.582083 0,0.07408 -0.007,0.162278 -0.007,0.09172 -0.0247,0.148167 h -0.26458 q 0.0212,-0.0635 0.0318,-0.144639 0.0106,-0.07761 0.0106,-0.15875 0,-0.243417 -0.0811,-0.405695 -0.0811,-0.162277 -0.22225,-0.257527 -0.14111,-0.09172 -0.32455,-0.134056 -0.18345,-0.04233 -0.39158,-0.05292 v 0.02117 q 0.12347,0.08114 0.20813,0.225778 0.0882,0.144639 0.0882,0.370416 0,0.328084 -0.20108,0.529167 -0.19756,0.201083 -0.56445,0.201083 -0.39511,0 -0.62089,-0.218722 -0.22578,-0.215194 -0.22578,-0.582083 0,-0.239889 0.11995,-0.433917 0.11994,-0.194028 0.36689,-0.310444 0.24694,-0.112889 0.62441,-0.112889 z m -0.85019,0.853722 q 0,0.22225 0.14111,0.359833 0.14464,0.137584 0.4445,0.137584 0.23989,0 0.381,-0.123472 0.14111,-0.119945 0.14111,-0.363362 0,-0.165805 -0.0705,-0.289277 -0.067,-0.123473 -0.17286,-0.194028 -0.10584,-0.06703 -0.21873,-0.06703 -0.15169,0 -0.30339,0.05997 -0.14816,0.05997 -0.24694,0.179917 -0.0952,0.119944 -0.0952,0.299861 z" id="path15783" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="port 5" id="text502" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 246.75356,46.427002 q 0,0.34925 -0.24342,0.560916 -0.24342,0.215195 -0.73378,0.215195 -0.4833,0 -0.73377,-0.215195 -0.25048,-0.211666 -0.25048,-0.564444 0,-0.218722 0.0811,-0.363361 0.0847,-0.141111 0.19403,-0.22225 v -0.02117 q -0.06,0.0071 -0.15169,0.01411 -0.0917,0.0071 -0.15875,0.0071 h -0.77612 v -0.310445 h 2.73756 v 0.254 l -0.25753,0.04233 v 0.01411 q 0.12347,0.08467 0.20814,0.22225 0.0847,0.137583 0.0847,0.366889 z m -0.26106,-0.05645 q 0,-0.289278 -0.16228,-0.409222 -0.16227,-0.116417 -0.49388,-0.123472 h -0.06 q -0.34925,0 -0.53975,0.112889 -0.18697,0.116416 -0.18697,0.426861 0,0.172861 0.0952,0.282222 0.0952,0.112889 0.25753,0.165805 0.1658,0.05644 0.37747,0.05644 0.32456,0 0.51858,-0.127 0.19403,-0.123472 0.19403,-0.384528 z" id="path15764" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 245.77636,49.340946 q -0.46919,0 -0.72672,-0.239889 -0.25753,-0.236361 -0.25753,-0.642055 0,-0.250473 0.11289,-0.448028 0.11642,-0.194028 0.33514,-0.306917 0.22225,-0.112889 0.53622,-0.112889 0.4692,0 0.7232,0.236361 0.254,0.236361 0.254,0.642056 0,0.257528 -0.11642,0.451555 -0.11289,0.197556 -0.33161,0.306917 -0.21519,0.112889 -0.52917,0.112889 z m 0,-1.42875 q -0.33514,0 -0.53269,0.130528 -0.19403,0.134055 -0.19403,0.423333 0,0.28575 0.19403,0.419806 0.19755,0.134055 0.53269,0.134055 0.33514,0 0.52564,-0.134055 0.1905,-0.134056 0.1905,-0.423334 0,-0.289277 -0.1905,-0.419805 -0.1905,-0.130528 -0.52564,-0.130528 z" id="path15766" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 246.75356,50.713251 q 0,0.05292 -0.007,0.112889 -0.004,0.0635 -0.0141,0.109361 l -0.28575,-0.03881 q 0.0106,-0.04586 0.0176,-0.102306 0.007,-0.05292 0.007,-0.102305 0,-0.144639 -0.0811,-0.271639 -0.0776,-0.127 -0.22225,-0.204611 -0.14111,-0.07408 -0.33161,-0.07408 h -1.00895 v -0.310444 h 1.89089 v 0.254 l -0.34572,0.03528 v 0.01411 q 0.15522,0.09172 0.26811,0.236361 0.11289,0.144639 0.11289,0.342194 z" id="path15768" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 245.04611,51.919751 q 0,0.07056 0.0106,0.144639 0.0141,0.07408 0.0282,0.119945 h -0.23636 q -0.0247,-0.04939 -0.0388,-0.141111 -0.0176,-0.09172 -0.0176,-0.176389 0,-0.148167 0.0494,-0.275167 0.0529,-0.123472 0.17992,-0.201083 0.127,-0.07761 0.3563,-0.07761 h 1.10067 v -0.268112 h 0.14817 l 0.12347,0.271639 0.40217,0.123473 v 0.183444 h -0.43392 v 0.546806 h -0.23989 v -0.546806 h -1.09361 q -0.17286,0 -0.25753,0.08114 -0.0811,0.08467 -0.0811,0.215194 z" id="path15770" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 246.37256,54.149307 q 0,0.388056 -0.19403,0.617361 -0.19403,0.229306 -0.54681,0.229306 -0.39158,0 -0.61736,-0.250473 -0.22225,-0.246944 -0.22225,-0.691444 0,-0.194028 0.0353,-0.366889 0.0353,-0.169333 0.10231,-0.28575 h 0.2928 q -0.0776,0.127 -0.12347,0.306917 -0.0423,0.183444 -0.0423,0.34925 0,0.278694 0.13052,0.448028 0.13406,0.172861 0.41275,0.172861 0.24695,0 0.37748,-0.151695 0.13405,-0.151694 0.13405,-0.479778 0,-0.09878 -0.0176,-0.225777 -0.0176,-0.127 -0.0353,-0.204611 l 0.0988,-0.155223 1.18886,0.09525 v 1.262945 H 247.064 v -0.998361 l -0.73025,-0.05997 q 0.0106,0.05997 0.0247,0.162278 0.0141,0.102306 0.0141,0.225778 z" id="path15772" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 1134.043,329.39453 v 105 h 15 v -90 h 15 v -15 h -15 z" id="path504" style="fill:#cccccc;stroke:none;stroke-width:1.32287538px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(0.26458333,0,0,0.26458333,-50.017786,-46.798174)"/>
+<path d="m 182.5479,68.241005 h 92.5009 v 13.005701 h -92.5009 z" id="rect1685" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.23575263;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="µOP SchedulerUnified Reservation Station (97 entries)" id="text1633" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 216.26748,71.728523 v 2.269066 h -0.30057 l -0.0593,-0.3048 h -0.0212 q -0.10583,0.169333 -0.27517,0.258233 -0.16933,0.0889 -0.4064,0.0889 -0.1651,0 -0.28363,-0.0508 -0.11853,-0.05503 -0.2032,-0.1397 h -0.0169 q 0.008,0.0762 0.0127,0.2032 0.008,0.127 0.008,0.300567 v 0.6604 h -0.37253 v -3.285066 h 0.37253 v 1.464733 q 0,0.537633 0.508,0.537633 0.37677,0 0.5207,-0.211667 0.14394,-0.211666 0.14394,-0.609599 v -1.1811 z" id="path4442" style="stroke-width:0.26458332"/>
+<path d="m 219.67551,72.482056 q 0,0.4699 -0.16086,0.821266 -0.15664,0.347134 -0.46567,0.541867 -0.30903,0.194733 -0.76623,0.194733 -0.4699,0 -0.78317,-0.194733 -0.30903,-0.194733 -0.46143,-0.5461 -0.1524,-0.351367 -0.1524,-0.821266 0,-0.465667 0.1524,-0.8128 0.1524,-0.347134 0.46143,-0.541867 0.31327,-0.194733 0.7874,-0.194733 0.45297,0 0.762,0.194733 0.30903,0.1905 0.46567,0.541867 0.16086,0.347133 0.16086,0.817033 z m -2.3876,0 q 0,0.5715 0.2413,0.9017 0.2413,0.325966 0.75354,0.325966 0.51646,0 0.75353,-0.325966 0.23707,-0.3302 0.23707,-0.9017 0,-0.5715 -0.23707,-0.893233 -0.23707,-0.325967 -0.7493,-0.325967 -0.51223,0 -0.75777,0.325967 -0.2413,0.321733 -0.2413,0.893233 z" id="path4444" style="stroke-width:0.26458332"/>
+<path d="m 221.14554,70.974989 q 0.59266,0 0.8636,0.232834 0.27093,0.232833 0.27093,0.656166 0,0.249767 -0.1143,0.4699 -0.11007,0.2159 -0.37677,0.351367 -0.26246,0.135467 -0.71543,0.135467 h -0.34713 v 1.176866 h -0.381 v -3.0226 z m -0.0339,0.325967 h -0.38523 v 1.1938 h 0.3048 q 0.4318,0 0.64346,-0.1397 0.21167,-0.1397 0.21167,-0.474133 0,-0.2921 -0.18627,-0.436034 -0.18626,-0.143933 -0.58843,-0.143933 z" id="path4446" style="stroke-width:0.26458332"/>
+<path d="m 225.72276,73.189022 q 0,0.402167 -0.2921,0.626534 -0.2921,0.224366 -0.7874,0.224366 -0.254,0 -0.4699,-0.0381 -0.2159,-0.0381 -0.35983,-0.105833 v -0.364067 q 0.1524,0.06773 0.37677,0.122767 0.2286,0.05503 0.4699,0.05503 0.33866,0 0.508,-0.131233 0.17356,-0.131233 0.17356,-0.3556 0,-0.148167 -0.0635,-0.249767 -0.0635,-0.101599 -0.22013,-0.186266 -0.1524,-0.0889 -0.42757,-0.186267 -0.38523,-0.1397 -0.5842,-0.3429 -0.19473,-0.2032 -0.19473,-0.554566 0,-0.2413 0.12277,-0.410634 0.12276,-0.173566 0.33866,-0.2667 0.22014,-0.09313 0.50377,-0.09313 0.24977,0 0.4572,0.04657 0.20743,0.04657 0.37677,0.122766 l -0.11854,0.325967 q -0.15663,-0.06773 -0.3429,-0.1143 -0.18203,-0.04657 -0.381,-0.04657 -0.28363,0 -0.42756,0.122767 -0.14394,0.118533 -0.14394,0.3175 0,0.1524 0.0635,0.254 0.0635,0.1016 0.20744,0.182033 0.14393,0.08043 0.38946,0.173567 0.2667,0.09737 0.44874,0.211667 0.18626,0.110066 0.2794,0.2667 0.0974,0.156633 0.0974,0.393699 z" id="path4448" style="stroke-width:0.26458332"/>
+<path d="m 227.191,74.039922 q -0.30057,0 -0.53763,-0.122766 -0.23284,-0.122767 -0.3683,-0.381 -0.13124,-0.258234 -0.13124,-0.6604 0,-0.4191 0.1397,-0.681567 0.1397,-0.262466 0.37677,-0.385233 0.2413,-0.122767 0.5461,-0.122767 0.17357,0 0.33443,0.0381 0.16087,0.03387 0.26247,0.08467 l -0.1143,0.309033 q -0.1016,-0.0381 -0.23707,-0.07197 -0.13546,-0.03387 -0.254,-0.03387 -0.66886,0 -0.66886,0.859367 0,0.410633 0.16086,0.630766 0.1651,0.2159 0.48684,0.2159 0.18626,0 0.32596,-0.0381 0.14394,-0.0381 0.26247,-0.09313 v 0.3302 q -0.1143,0.05927 -0.254,0.0889 -0.13547,0.03387 -0.3302,0.03387 z" id="path4450" style="stroke-width:0.26458332"/>
+<path d="m 228.68735,70.780256 v 0.944033 q 0,0.169334 -0.0212,0.3175 h 0.0254 q 0.11006,-0.173566 0.29633,-0.262466 0.1905,-0.0889 0.41063,-0.0889 0.41487,0 0.6223,0.198966 0.20744,0.194734 0.20744,0.630767 v 1.477433 h -0.3683 v -1.452033 q 0,-0.5461 -0.508,-0.5461 -0.381,0 -0.52494,0.2159 -0.1397,0.211667 -0.1397,0.6096 v 1.172633 h -0.37253 v -3.217333 z" id="path4452" style="stroke-width:0.26458332"/>
+<path d="m 231.80388,71.686189 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32174,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55364 q 0.008,0.385233 0.19474,0.588433 0.1905,0.198966 0.52916,0.198966 0.2159,0 0.381,-0.0381 0.16934,-0.04233 0.34714,-0.118533 v 0.325967 q -0.17357,0.0762 -0.3429,0.110066 -0.16934,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131233 -0.24553,-0.131233 -0.38523,-0.389467 -0.13547,-0.262466 -0.13547,-0.639233 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35136,-0.410633 0.2286,-0.143934 0.52917,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42334,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287866 -0.13547,-0.465666 -0.13123,-0.182034 -0.41486,-0.182034 z" id="path4454" style="stroke-width:0.26458332"/>
+<path d="m 234.12143,74.039922 q -0.42333,0 -0.67733,-0.2921 -0.254,-0.296333 -0.254,-0.880533 0,-0.5842 0.254,-0.880533 0.25823,-0.300567 0.68156,-0.300567 0.26247,0 0.42757,0.09737 0.16933,0.09737 0.27517,0.237067 h 0.0254 q -0.004,-0.05503 -0.0169,-0.160867 -0.008,-0.110067 -0.008,-0.173567 v -0.905933 h 0.37253 v 3.217333 h -0.30057 l -0.055,-0.3048 h -0.0169 q -0.1016,0.143933 -0.27094,0.245533 -0.16933,0.1016 -0.43603,0.1016 z m 0.0593,-0.309033 q 0.35983,0 0.50376,-0.194733 0.14817,-0.198967 0.14817,-0.5969 v -0.06773 q 0,-0.423334 -0.1397,-0.6477 -0.1397,-0.2286 -0.51647,-0.2286 -0.30056,0 -0.45296,0.2413 -0.14817,0.237066 -0.14817,0.639233 0,0.4064 0.14817,0.630766 0.1524,0.224367 0.4572,0.224367 z" id="path4456" style="stroke-width:0.26458332"/>
+<path d="m 237.81812,71.728523 v 2.269066 h -0.3048 l -0.055,-0.300567 h -0.0169 q -0.11007,0.1778 -0.3048,0.262467 -0.19474,0.08043 -0.41487,0.08043 -0.41063,0 -0.61807,-0.194733 -0.20743,-0.198967 -0.20743,-0.630767 v -1.485899 h 0.37677 v 1.460499 q 0,0.541867 0.50376,0.541867 0.37677,0 0.5207,-0.211667 0.14817,-0.211666 0.14817,-0.609599 v -1.1811 z" id="path4458" style="stroke-width:0.26458332"/>
+<path d="m 238.90688,73.997589 h -0.37253 v -3.217333 h 0.37253 z" id="path4460" style="stroke-width:0.26458332"/>
+<path d="m 240.50205,71.686189 q 0.2921,0 0.49954,0.127 0.21166,0.127 0.32173,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363 q 0.008,0.385233 0.19473,0.588433 0.1905,0.198966 0.52917,0.198966 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118533 v 0.325967 q -0.17357,0.0762 -0.3429,0.110066 -0.16933,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131233 -0.24553,-0.131233 -0.38523,-0.389467 -0.13547,-0.262466 -0.13547,-0.639233 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35137,-0.410633 0.2286,-0.143934 0.52916,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173567 -0.1524,0.169333 -0.18204,0.474133 h 1.1557 q -0.004,-0.287866 -0.13546,-0.465666 -0.13124,-0.182034 -0.41487,-0.182034 z" id="path4462" style="stroke-width:0.26458332"/>
+<path d="m 243.07361,71.686189 q 0.0635,0 0.13546,0.0085 0.0762,0.0042 0.13124,0.01693 l -0.0466,0.3429 q -0.055,-0.0127 -0.12277,-0.02117 -0.0635,-0.0085 -0.12276,-0.0085 -0.17357,0 -0.32597,0.09737 -0.1524,0.09313 -0.24553,0.2667 -0.0889,0.169333 -0.0889,0.397933 v 1.210733 h -0.37254 v -2.269066 h 0.3048 l 0.0423,0.414866 h 0.0169 q 0.11007,-0.186266 0.28363,-0.321733 0.17357,-0.135467 0.41064,-0.135467 z" id="path4464" style="stroke-width:0.26458332"/>
+<path d="m 192.68834,76.266653 v 1.9558 q 0,0.313267 -0.127,0.567267 -0.127,0.249767 -0.38946,0.397933 -0.25824,0.143934 -0.6604,0.143934 -0.56304,0 -0.85937,-0.3048 -0.2921,-0.309034 -0.2921,-0.8128 v -1.947334 h 0.381 v 1.960034 q 0,0.3683 0.19473,0.5715 0.19897,0.2032 0.5969,0.2032 0.41064,0 0.59267,-0.2159 0.18627,-0.220134 0.18627,-0.563034 v -1.9558 z" id="path4466" style="stroke-width:0.26458332"/>
+<path d="m 194.52336,76.977853 q 0.4064,0 0.61384,0.198967 0.20743,0.194733 0.20743,0.635 v 1.477433 h -0.3683 V 77.83722 q 0,-0.5461 -0.508,-0.5461 -0.37677,0 -0.5207,0.211667 -0.14393,0.211666 -0.14393,0.6096 v 1.176866 h -0.37254 v -2.269066 h 0.30057 l 0.055,0.309033 h 0.0212 q 0.11007,-0.1778 0.3048,-0.262467 0.19473,-0.0889 0.41063,-0.0889 z" id="path4468" style="stroke-width:0.26458332"/>
+<path d="m 196.23442,76.169287 q 0.0847,0 0.14817,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14817,0.05927 -0.0931,0 -0.15663,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15663,-0.05927 z m 0.18204,0.8509 v 2.269066 h -0.37254 v -2.269066 z" id="path4470" style="stroke-width:0.26458332"/>
+<path d="m 198.18096,77.308053 h -0.5715 v 1.9812 h -0.37253 v -1.9812 H 196.839 v -0.173566 l 0.39793,-0.127 v -0.131234 q 0,-0.440266 0.19473,-0.630766 0.19473,-0.194734 0.54187,-0.194734 0.13546,0 0.24553,0.0254 0.1143,0.02117 0.19473,0.0508 l -0.0974,0.2921 q -0.0677,-0.02117 -0.15664,-0.04233 -0.0889,-0.02117 -0.18203,-0.02117 -0.18627,0 -0.2794,0.127 -0.0889,0.122767 -0.0889,0.389467 v 0.148167 h 0.5715 z m 0.60113,-1.138766 q 0.0847,0 0.14817,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14817,0.05927 -0.0931,0 -0.15663,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15663,-0.05927 z m 0.18204,0.8509 v 2.269066 h -0.37254 v -2.269066 z" id="path4472" style="stroke-width:0.26458332"/>
+<path d="m 200.55824,76.977853 q 0.2921,0 0.49954,0.127 0.21166,0.127 0.32173,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363 q 0.008,0.385233 0.19473,0.588433 0.1905,0.198967 0.52917,0.198967 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118534 v 0.325967 q -0.17357,0.0762 -0.3429,0.110067 -0.16933,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131234 -0.24553,-0.131233 -0.38523,-0.389466 -0.13547,-0.262467 -0.13547,-0.639234 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35137,-0.410633 0.2286,-0.143934 0.52916,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173567 -0.1524,0.169333 -0.18204,0.474133 h 1.1557 q -0.004,-0.287866 -0.13546,-0.465666 -0.13124,-0.182034 -0.41487,-0.182034 z" id="path4474" style="stroke-width:0.26458332"/>
+<path d="m 202.87579,79.331587 q -0.42333,0 -0.67733,-0.2921 -0.254,-0.296334 -0.254,-0.880534 0,-0.5842 0.254,-0.880533 0.25823,-0.300567 0.68157,-0.300567 0.26246,0 0.42756,0.09737 0.16934,0.09737 0.27517,0.237067 h 0.0254 q -0.004,-0.05503 -0.0169,-0.160867 -0.008,-0.110067 -0.008,-0.173567 V 76.07192 h 0.37253 v 3.217333 h -0.30056 l -0.055,-0.3048 h -0.0169 q -0.1016,0.143934 -0.27093,0.245534 -0.16934,0.1016 -0.43604,0.1016 z m 0.0593,-0.309034 q 0.35983,0 0.50377,-0.194733 0.14816,-0.198967 0.14816,-0.5969 v -0.06773 q 0,-0.423334 -0.1397,-0.6477 -0.1397,-0.2286 -0.51646,-0.2286 -0.30057,0 -0.45297,0.2413 -0.14817,0.237066 -0.14817,0.639233 0,0.4064 0.14817,0.630767 0.1524,0.224366 0.4572,0.224366 z" id="path4476" style="stroke-width:0.26458332"/>
+<path d="m 206.66039,76.266653 q 0.56304,0 0.82974,0.2159 0.27093,0.211667 0.27093,0.643467 0,0.2413 -0.0889,0.402167 -0.0889,0.160866 -0.2286,0.258233 -0.13547,0.09313 -0.28787,0.148167 l 0.82974,1.354666 h -0.4445 l -0.73237,-1.248833 h -0.60113 v 1.248833 h -0.381 v -3.0226 z m -0.0212,0.3302 h -0.4318 v 1.121834 h 0.45296 q 0.3683,0 0.53764,-0.143934 0.16933,-0.148166 0.16933,-0.4318 0,-0.296333 -0.1778,-0.4191 -0.1778,-0.127 -0.55033,-0.127 z" id="path4478" style="stroke-width:0.26458332"/>
+<path d="m 209.28122,76.977853 q 0.2921,0 0.49954,0.127 0.21166,0.127 0.32173,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363 q 0.008,0.385233 0.19473,0.588433 0.1905,0.198967 0.52917,0.198967 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118534 v 0.325967 q -0.17357,0.0762 -0.3429,0.110067 -0.16933,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131234 -0.24553,-0.131233 -0.38523,-0.389466 -0.13547,-0.262467 -0.13547,-0.639234 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35137,-0.410633 0.2286,-0.143934 0.52916,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173567 -0.1524,0.169333 -0.18204,0.474133 h 1.1557 q -0.004,-0.287866 -0.13546,-0.465666 -0.13124,-0.182034 -0.41487,-0.182034 z" id="path4480" style="stroke-width:0.26458332"/>
+<path d="m 212.27187,78.66272 q 0,0.3302 -0.24553,0.499533 -0.24553,0.169334 -0.6604,0.169334 -0.23707,0 -0.41063,-0.0381 -0.16934,-0.0381 -0.30057,-0.105834 v -0.338666 q 0.13547,0.06773 0.32597,0.127 0.19473,0.05503 0.3937,0.05503 0.28363,0 0.41063,-0.0889 0.127,-0.09313 0.127,-0.245533 0,-0.08467 -0.0466,-0.1524 -0.0466,-0.06773 -0.16933,-0.135467 -0.11853,-0.06773 -0.3429,-0.1524 -0.22013,-0.08467 -0.37677,-0.169333 -0.15663,-0.08467 -0.2413,-0.2032 -0.0847,-0.118534 -0.0847,-0.3048 0,-0.287867 0.23283,-0.4445 0.23707,-0.156634 0.61807,-0.156634 0.20743,0 0.38523,0.04233 0.18203,0.0381 0.33867,0.110066 l -0.127,0.296334 q -0.14394,-0.05927 -0.30057,-0.1016 -0.15663,-0.04233 -0.32173,-0.04233 -0.2286,0 -0.35137,0.0762 -0.11853,0.07197 -0.11853,0.198967 0,0.09313 0.055,0.160867 0.055,0.0635 0.18203,0.127 0.13124,0.05927 0.34714,0.143933 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.23283,0.207433 0.0804,0.118534 0.0804,0.300567 z" id="path4482" style="stroke-width:0.26458332"/>
+<path d="m 213.69646,76.977853 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32173,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363 q 0.008,0.385233 0.19473,0.588433 0.1905,0.198967 0.52917,0.198967 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118534 v 0.325967 q -0.17356,0.0762 -0.3429,0.110067 -0.16933,0.0381 -0.40216,0.0381 -0.32174,0 -0.5715,-0.131234 -0.24554,-0.131233 -0.38524,-0.389466 -0.13546,-0.262467 -0.13546,-0.639234 0,-0.372533 0.12276,-0.639233 0.127,-0.2667 0.35137,-0.410633 0.2286,-0.143934 0.52917,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287866 -0.13547,-0.465666 -0.13123,-0.182034 -0.41487,-0.182034 z" id="path4484" style="stroke-width:0.26458332"/>
+<path d="m 216.26801,76.977853 q 0.0635,0 0.13547,0.0085 0.0762,0.0042 0.13123,0.01693 l -0.0466,0.3429 q -0.055,-0.0127 -0.12276,-0.02117 -0.0635,-0.0085 -0.12277,-0.0085 -0.17357,0 -0.32597,0.09737 -0.1524,0.09313 -0.24553,0.2667 -0.0889,0.169333 -0.0889,0.397933 v 1.210733 h -0.37253 v -2.269066 h 0.3048 l 0.0423,0.414866 h 0.0169 q 0.11007,-0.186266 0.28364,-0.321733 0.17356,-0.135467 0.41063,-0.135467 z" id="path4486" style="stroke-width:0.26458332"/>
+<path d="m 217.45381,79.289253 -0.85937,-2.269066 h 0.39793 l 0.4826,1.337733 q 0.0339,0.09313 0.072,0.207433 0.0381,0.1143 0.0677,0.220134 0.0296,0.1016 0.0423,0.173566 h 0.0169 q 0.0169,-0.07197 0.0466,-0.1778 0.0339,-0.105833 0.072,-0.220133 0.0423,-0.1143 0.072,-0.2032 l 0.4826,-1.337733 h 0.39793 l -0.8636,2.269066 z" id="path4488" style="stroke-width:0.26458332"/>
+<path d="m 219.96338,76.982087 q 0.41486,0 0.61383,0.182033 0.19897,0.182033 0.19897,0.579967 v 1.545166 h -0.27094 l -0.072,-0.321733 h -0.0169 q -0.14816,0.186267 -0.31326,0.275167 -0.16087,0.0889 -0.44874,0.0889 -0.30903,0 -0.51223,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.82127,-0.2032 l 0.38523,-0.0127 V 77.78642 q 0,-0.283633 -0.12277,-0.3937 -0.12276,-0.110067 -0.34713,-0.110067 -0.1778,0 -0.33867,0.05503 -0.16086,0.0508 -0.30056,0.118533 l -0.1143,-0.2794 q 0.14816,-0.08043 0.35136,-0.135467 0.2032,-0.05927 0.42334,-0.05927 z m 0.4445,1.198033 -0.33444,0.0127 q -0.42333,0.01693 -0.58843,0.135467 -0.16087,0.118533 -0.16087,0.334433 0,0.1905 0.1143,0.2794 0.11854,0.0889 0.30057,0.0889 0.28787,0 0.47837,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path4490" style="stroke-width:0.26458332"/>
+<path d="m 222.23476,79.026787 q 0.0847,0 0.17357,-0.0127 0.0889,-0.01693 0.14393,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16933,0.04657 -0.11007,0.02117 -0.21167,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14817,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32174 v -0.1778 l 0.32597,-0.148166 0.14817,-0.4826 h 0.22013 v 0.5207 h 0.65617 v 0.287866 h -0.65617 v 1.312334 q 0,0.207433 0.0974,0.309033 0.1016,0.09737 0.25823,0.09737 z" id="path4492" style="stroke-width:0.26458332"/>
+<path d="m 223.19711,76.169287 q 0.0847,0 0.14817,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14817,0.05927 -0.0931,0 -0.15663,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15663,-0.05927 z m 0.18204,0.8509 v 2.269066 h -0.37254 v -2.269066 z" id="path4494" style="stroke-width:0.26458332"/>
+<path d="m 226.07076,78.150487 q 0,0.563033 -0.28787,0.872066 -0.28363,0.309034 -0.77047,0.309034 -0.30056,0 -0.53763,-0.135467 -0.23283,-0.1397 -0.3683,-0.402167 -0.13547,-0.2667 -0.13547,-0.643466 0,-0.563034 0.28364,-0.867834 0.28363,-0.3048 0.77046,-0.3048 0.30904,0 0.54187,0.1397 0.23707,0.135467 0.3683,0.397934 0.13547,0.258233 0.13547,0.635 z m -1.7145,0 q 0,0.402166 0.15663,0.639233 0.16087,0.232833 0.508,0.232833 0.3429,0 0.50377,-0.232833 0.16086,-0.237067 0.16086,-0.639233 0,-0.402167 -0.16086,-0.630767 -0.16087,-0.2286 -0.508,-0.2286 -0.34714,0 -0.50377,0.2286 -0.15663,0.2286 -0.15663,0.630767 z" id="path4496" style="stroke-width:0.26458332"/>
+<path d="m 227.75337,76.977853 q 0.4064,0 0.61383,0.198967 0.20744,0.194733 0.20744,0.635 v 1.477433 h -0.3683 V 77.83722 q 0,-0.5461 -0.508,-0.5461 -0.37677,0 -0.5207,0.211667 -0.14394,0.211666 -0.14394,0.6096 v 1.176866 h -0.37253 v -2.269066 h 0.30057 l 0.055,0.309033 h 0.0212 q 0.11006,-0.1778 0.3048,-0.262467 0.19473,-0.0889 0.41063,-0.0889 z" id="path4498" style="stroke-width:0.26458332"/>
+<path d="m 232.13891,78.480687 q 0,0.402166 -0.2921,0.626533 -0.2921,0.224367 -0.7874,0.224367 -0.254,0 -0.4699,-0.0381 -0.2159,-0.0381 -0.35984,-0.105834 v -0.364066 q 0.1524,0.06773 0.37677,0.122766 0.2286,0.05503 0.4699,0.05503 0.33867,0 0.508,-0.131234 0.17357,-0.131233 0.17357,-0.3556 0,-0.148166 -0.0635,-0.249766 -0.0635,-0.1016 -0.22014,-0.186267 -0.1524,-0.0889 -0.42756,-0.186267 -0.38524,-0.1397 -0.5842,-0.3429 -0.19474,-0.2032 -0.19474,-0.554566 0,-0.2413 0.12277,-0.410634 0.12277,-0.173566 0.33867,-0.2667 0.22013,-0.09313 0.50376,-0.09313 0.24977,0 0.4572,0.04657 0.20744,0.04657 0.37677,0.122766 l -0.11853,0.325967 q -0.15664,-0.06773 -0.3429,-0.1143 -0.18204,-0.04657 -0.381,-0.04657 -0.28364,0 -0.42757,0.122767 -0.14393,0.118533 -0.14393,0.3175 0,0.1524 0.0635,0.254 0.0635,0.1016 0.20743,0.182033 0.14393,0.08043 0.38947,0.173567 0.2667,0.09737 0.44873,0.211667 0.18627,0.110066 0.2794,0.2667 0.0974,0.156633 0.0974,0.3937 z" id="path4500" style="stroke-width:0.26458332"/>
+<path d="m 233.45475,79.026787 q 0.0847,0 0.17356,-0.0127 0.0889,-0.01693 0.14394,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16934,0.04657 -0.11006,0.02117 -0.21166,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14817,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32173 v -0.1778 l 0.32597,-0.148166 0.14816,-0.4826 h 0.22014 v 0.5207 h 0.65616 v 0.287866 h -0.65616 v 1.312334 q 0,0.207433 0.0974,0.309033 0.1016,0.09737 0.25824,0.09737 z" id="path4502" style="stroke-width:0.26458332"/>
+<path d="m 235.08597,76.982087 q 0.41486,0 0.61383,0.182033 0.19897,0.182033 0.19897,0.579967 v 1.545166 h -0.27094 l -0.072,-0.321733 h -0.0169 q -0.14816,0.186267 -0.31326,0.275167 -0.16087,0.0889 -0.44874,0.0889 -0.30903,0 -0.51223,-0.160867 -0.2032,-0.1651 -0.2032,-0.512233 0,-0.338667 0.2667,-0.5207 0.2667,-0.186267 0.82127,-0.2032 l 0.38523,-0.0127 V 77.78642 q 0,-0.283633 -0.12277,-0.3937 -0.12276,-0.110067 -0.34713,-0.110067 -0.1778,0 -0.33867,0.05503 -0.16086,0.0508 -0.30056,0.118533 l -0.1143,-0.2794 q 0.14816,-0.08043 0.35136,-0.135467 0.2032,-0.05927 0.42334,-0.05927 z m 0.4445,1.198033 -0.33444,0.0127 q -0.42333,0.01693 -0.58843,0.135467 -0.16087,0.118533 -0.16087,0.334433 0,0.1905 0.1143,0.2794 0.11854,0.0889 0.30057,0.0889 0.28787,0 0.47837,-0.156633 0.1905,-0.160867 0.1905,-0.491067 z" id="path4504" style="stroke-width:0.26458332"/>
+<path d="m 237.35735,79.026787 q 0.0847,0 0.17357,-0.0127 0.0889,-0.01693 0.14393,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16933,0.04657 -0.11007,0.02117 -0.21167,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14817,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32174 v -0.1778 l 0.32597,-0.148166 0.14817,-0.4826 h 0.22013 v 0.5207 h 0.65617 v 0.287866 h -0.65617 v 1.312334 q 0,0.207433 0.0974,0.309033 0.1016,0.09737 0.25823,0.09737 z" id="path4506" style="stroke-width:0.26458332"/>
+<path d="m 238.31971,76.169287 q 0.0847,0 0.14816,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14816,0.05927 -0.0931,0 -0.15664,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15664,-0.05927 z m 0.18203,0.8509 v 2.269066 h -0.37253 v -2.269066 z" id="path4508" style="stroke-width:0.26458332"/>
+<path d="m 241.19334,78.150487 q 0,0.563033 -0.28786,0.872066 -0.28364,0.309034 -0.77047,0.309034 -0.30057,0 -0.53763,-0.135467 -0.23284,-0.1397 -0.3683,-0.402167 -0.13547,-0.2667 -0.13547,-0.643466 0,-0.563034 0.28363,-0.867834 0.28364,-0.3048 0.77047,-0.3048 0.30903,0 0.54187,0.1397 0.23706,0.135467 0.3683,0.397934 0.13546,0.258233 0.13546,0.635 z m -1.7145,0 q 0,0.402166 0.15664,0.639233 0.16086,0.232833 0.508,0.232833 0.3429,0 0.50376,-0.232833 0.16087,-0.237067 0.16087,-0.639233 0,-0.402167 -0.16087,-0.630767 -0.16086,-0.2286 -0.508,-0.2286 -0.34713,0 -0.50376,0.2286 -0.15664,0.2286 -0.15664,0.630767 z" id="path4510" style="stroke-width:0.26458332"/>
+<path d="m 242.87596,76.977853 q 0.4064,0 0.61384,0.198967 0.20743,0.194733 0.20743,0.635 v 1.477433 h -0.3683 V 77.83722 q 0,-0.5461 -0.508,-0.5461 -0.37677,0 -0.5207,0.211667 -0.14393,0.211666 -0.14393,0.6096 v 1.176866 h -0.37254 v -2.269066 h 0.30057 l 0.055,0.309033 h 0.0212 q 0.11007,-0.1778 0.3048,-0.262467 0.19473,-0.0889 0.41063,-0.0889 z" id="path4512" style="stroke-width:0.26458332"/>
+<path d="m 245.3057,78.12932 q 0,-0.516467 0.14816,-0.994833 0.1524,-0.4826 0.47414,-0.867834 h 0.35136 q -0.29633,0.397934 -0.44873,0.8763 -0.14817,0.478367 -0.14817,0.982134 0,0.491066 0.14817,0.9652 0.1524,0.4699 0.4445,0.867833 H 245.928 q -0.32174,-0.372533 -0.47414,-0.842433 -0.14816,-0.474134 -0.14816,-0.986367 z" id="path4514" style="stroke-width:0.26458332"/>
+<path d="m 248.611,77.55782 q 0,0.325967 -0.0593,0.643467 -0.055,0.313266 -0.20744,0.5715 -0.14816,0.254 -0.42333,0.4064 -0.27093,0.1524 -0.6985,0.1524 -0.0847,0 -0.19897,-0.0127 -0.11006,-0.0085 -0.18203,-0.02963 v -0.3175 q 0.1651,0.05503 0.37253,0.05503 0.29634,0 0.48684,-0.09737 0.19473,-0.09737 0.30903,-0.262467 0.1143,-0.169333 0.1651,-0.389466 0.0508,-0.224367 0.0593,-0.4699 h -0.0254 q -0.0931,0.143933 -0.27094,0.249766 -0.17356,0.1016 -0.44873,0.1016 -0.38947,0 -0.63077,-0.237066 -0.23706,-0.2413 -0.23706,-0.677334 0,-0.3175 0.11853,-0.5461 0.12277,-0.2286 0.33867,-0.351366 0.2159,-0.122767 0.508,-0.122767 0.28786,0 0.5207,0.148167 0.23283,0.143933 0.3683,0.440266 0.13546,0.2921 0.13546,0.745067 z m -1.02446,-1.020233 q -0.26247,0 -0.4318,0.173566 -0.1651,0.173567 -0.1651,0.529167 0,0.2921 0.1397,0.461433 0.14393,0.1651 0.44026,0.1651 0.2032,0 0.35137,-0.08043 0.14817,-0.08467 0.2286,-0.211667 0.0847,-0.127 0.0847,-0.262466 0,-0.182034 -0.072,-0.359834 -0.072,-0.1778 -0.2159,-0.296333 -0.14393,-0.118533 -0.35983,-0.118533 z" id="path4516" style="stroke-width:0.26458332"/>
+<path d="m 249.408,79.289253 1.24036,-2.683933 h -1.62983 v -0.338667 h 2.02777 v 0.287867 l -1.22767,2.734733 z" id="path4518" style="stroke-width:0.26458332"/>
+<path d="m 253.59066,76.977853 q 0.2921,0 0.49954,0.127 0.21166,0.127 0.32173,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363 q 0.008,0.385233 0.19473,0.588433 0.1905,0.198967 0.52917,0.198967 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118534 v 0.325967 q -0.17357,0.0762 -0.3429,0.110067 -0.16933,0.0381 -0.40217,0.0381 -0.32173,0 -0.5715,-0.131234 -0.24553,-0.131233 -0.38523,-0.389466 -0.13547,-0.262467 -0.13547,-0.639234 0,-0.372533 0.12277,-0.639233 0.127,-0.2667 0.35137,-0.410633 0.2286,-0.143934 0.52916,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173567 -0.1524,0.169333 -0.18204,0.474133 h 1.1557 q -0.004,-0.287866 -0.13546,-0.465666 -0.13124,-0.182034 -0.41487,-0.182034 z" id="path4520" style="stroke-width:0.26458332"/>
+<path d="m 256.19608,76.977853 q 0.4064,0 0.61384,0.198967 0.20743,0.194733 0.20743,0.635 v 1.477433 h -0.3683 V 77.83722 q 0,-0.5461 -0.508,-0.5461 -0.37677,0 -0.5207,0.211667 -0.14393,0.211666 -0.14393,0.6096 v 1.176866 h -0.37254 v -2.269066 h 0.30057 l 0.055,0.309033 h 0.0212 q 0.11007,-0.1778 0.3048,-0.262467 0.19473,-0.0889 0.41063,-0.0889 z" id="path4522" style="stroke-width:0.26458332"/>
+<path d="m 258.4744,79.026787 q 0.0847,0 0.17357,-0.0127 0.0889,-0.01693 0.14393,-0.03387 v 0.283633 q -0.0593,0.02963 -0.16933,0.04657 -0.11007,0.02117 -0.21167,0.02117 -0.1778,0 -0.3302,-0.05927 -0.14816,-0.0635 -0.2413,-0.2159 -0.0931,-0.1524 -0.0931,-0.427567 v -1.3208 h -0.32173 v -0.1778 l 0.32596,-0.148166 0.14817,-0.4826 h 0.22013 v 0.5207 h 0.65617 v 0.287866 h -0.65617 v 1.312334 q 0,0.207433 0.0974,0.309033 0.1016,0.09737 0.25823,0.09737 z" id="path4524" style="stroke-width:0.26458332"/>
+<path d="m 260.30459,76.977853 q 0.0635,0 0.13547,0.0085 0.0762,0.0042 0.13123,0.01693 l -0.0466,0.3429 q -0.055,-0.0127 -0.12277,-0.02117 -0.0635,-0.0085 -0.12277,-0.0085 -0.17356,0 -0.32596,0.09737 -0.1524,0.09313 -0.24554,0.2667 -0.0889,0.169333 -0.0889,0.397933 v 1.210733 h -0.37253 v -2.269066 h 0.3048 l 0.0423,0.414866 h 0.0169 q 0.11006,-0.186266 0.28363,-0.321733 0.17357,-0.135467 0.41063,-0.135467 z" id="path4526" style="stroke-width:0.26458332"/>
+<path d="m 261.18136,76.169287 q 0.0847,0 0.14817,0.05927 0.0677,0.05503 0.0677,0.1778 0,0.118534 -0.0677,0.1778 -0.0635,0.05927 -0.14817,0.05927 -0.0931,0 -0.15663,-0.05927 -0.0635,-0.05927 -0.0635,-0.1778 0,-0.122766 0.0635,-0.1778 0.0635,-0.05927 0.15663,-0.05927 z m 0.18203,0.8509 v 2.269066 h -0.37253 v -2.269066 z" id="path4528" style="stroke-width:0.26458332"/>
+<path d="m 262.95857,76.977853 q 0.2921,0 0.49953,0.127 0.21167,0.127 0.32173,0.359834 0.1143,0.2286 0.1143,0.537633 v 0.224367 h -1.55363 q 0.008,0.385233 0.19473,0.588433 0.1905,0.198967 0.52917,0.198967 0.2159,0 0.381,-0.0381 0.16933,-0.04233 0.34713,-0.118534 v 0.325967 q -0.17356,0.0762 -0.3429,0.110067 -0.16933,0.0381 -0.40216,0.0381 -0.32174,0 -0.5715,-0.131234 -0.24554,-0.131233 -0.38524,-0.389466 -0.13546,-0.262467 -0.13546,-0.639234 0,-0.372533 0.12276,-0.639233 0.127,-0.2667 0.35137,-0.410633 0.2286,-0.143934 0.52917,-0.143934 z m -0.004,0.3048 q -0.2667,0 -0.42333,0.173567 -0.1524,0.169333 -0.18203,0.474133 h 1.1557 q -0.004,-0.287866 -0.13547,-0.465666 -0.13123,-0.182034 -0.41487,-0.182034 z" id="path4530" style="stroke-width:0.26458332"/>
+<path d="m 265.94922,78.66272 q 0,0.3302 -0.24553,0.499533 -0.24554,0.169334 -0.6604,0.169334 -0.23707,0 -0.41064,-0.0381 -0.16933,-0.0381 -0.30056,-0.105834 v -0.338666 q 0.13546,0.06773 0.32596,0.127 0.19474,0.05503 0.3937,0.05503 0.28364,0 0.41064,-0.0889 0.127,-0.09313 0.127,-0.245533 0,-0.08467 -0.0466,-0.1524 -0.0466,-0.06773 -0.16933,-0.135467 -0.11854,-0.06773 -0.3429,-0.1524 -0.22014,-0.08467 -0.37677,-0.169333 -0.15663,-0.08467 -0.2413,-0.2032 -0.0847,-0.118534 -0.0847,-0.3048 0,-0.287867 0.23284,-0.4445 0.23706,-0.156634 0.61806,-0.156634 0.20744,0 0.38524,0.04233 0.18203,0.0381 0.33866,0.110066 l -0.127,0.296334 q -0.14393,-0.05927 -0.30056,-0.1016 -0.15664,-0.04233 -0.32174,-0.04233 -0.2286,0 -0.35136,0.0762 -0.11854,0.07197 -0.11854,0.198967 0,0.09313 0.055,0.160867 0.055,0.0635 0.18203,0.127 0.13123,0.05927 0.34713,0.143933 0.2159,0.08043 0.3683,0.1651 0.1524,0.08467 0.23284,0.207433 0.0804,0.118534 0.0804,0.300567 z" id="path4532" style="stroke-width:0.26458332"/>
+<path d="m 267.23833,78.12932 q 0,0.512233 -0.1524,0.986367 -0.14817,0.4699 -0.4699,0.842433 h -0.34713 q 0.2921,-0.397933 0.44026,-0.867833 0.1524,-0.474134 0.1524,-0.9652 0,-0.503767 -0.1524,-0.982134 -0.14816,-0.478366 -0.4445,-0.8763 h 0.35137 q 0.32173,0.385234 0.4699,0.867834 0.1524,0.478366 0.1524,0.994833 z" id="path4534" style="stroke-width:0.26458332"/>
+</g>
+<g aria-label="port 1" id="text508" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 253.36814,46.427002 q 0,0.34925 -0.24342,0.560916 -0.24342,0.215195 -0.73378,0.215195 -0.4833,0 -0.73378,-0.215195 -0.25047,-0.211666 -0.25047,-0.564444 0,-0.218722 0.0811,-0.363361 0.0847,-0.141111 0.19403,-0.22225 v -0.02117 q -0.06,0.0071 -0.1517,0.01411 -0.0917,0.0071 -0.15875,0.0071 h -0.77611 v -0.310445 h 2.73756 v 0.254 l -0.25753,0.04233 v 0.01411 q 0.12347,0.08467 0.20814,0.22225 0.0847,0.137583 0.0847,0.366889 z m -0.26106,-0.05645 q 0,-0.289278 -0.16228,-0.409222 -0.16228,-0.116417 -0.49389,-0.123472 h -0.06 q -0.34925,0 -0.53975,0.112889 -0.18697,0.116416 -0.18697,0.426861 0,0.172861 0.0952,0.282222 0.0952,0.112889 0.25753,0.165805 0.1658,0.05644 0.37747,0.05644 0.32455,0 0.51858,-0.127 0.19403,-0.123472 0.19403,-0.384528 z" id="path15753" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 252.39094,49.340946 q -0.46919,0 -0.72672,-0.239889 -0.25753,-0.236361 -0.25753,-0.642055 0,-0.250473 0.11289,-0.448028 0.11642,-0.194028 0.33514,-0.306917 0.22225,-0.112889 0.53622,-0.112889 0.4692,0 0.7232,0.236361 0.254,0.236361 0.254,0.642056 0,0.257528 -0.11642,0.451555 -0.11289,0.197556 -0.33161,0.306917 -0.2152,0.112889 -0.52917,0.112889 z m 0,-1.42875 q -0.33514,0 -0.53269,0.130528 -0.19403,0.134055 -0.19403,0.423333 0,0.28575 0.19403,0.419806 0.19755,0.134055 0.53269,0.134055 0.33514,0 0.52564,-0.134055 0.1905,-0.134056 0.1905,-0.423334 0,-0.289277 -0.1905,-0.419805 -0.1905,-0.130528 -0.52564,-0.130528 z" id="path15755" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 253.36814,50.713251 q 0,0.05292 -0.007,0.112889 -0.004,0.0635 -0.0141,0.109361 l -0.28575,-0.03881 q 0.0106,-0.04586 0.0176,-0.102306 0.007,-0.05292 0.007,-0.102305 0,-0.144639 -0.0811,-0.271639 -0.0776,-0.127 -0.22225,-0.204611 -0.14111,-0.07408 -0.33161,-0.07408 h -1.00894 v -0.310444 h 1.89089 v 0.254 l -0.34572,0.03528 v 0.01411 q 0.15522,0.09172 0.26811,0.236361 0.11289,0.144639 0.11289,0.342194 z" id="path15757" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 251.66069,51.919751 q 0,0.07056 0.0106,0.144639 0.0141,0.07408 0.0282,0.119945 h -0.23636 q -0.0247,-0.04939 -0.0388,-0.141111 -0.0176,-0.09172 -0.0176,-0.176389 0,-0.148167 0.0494,-0.275167 0.0529,-0.123472 0.17992,-0.201083 0.127,-0.07761 0.3563,-0.07761 h 1.10067 v -0.268112 h 0.14817 l 0.12347,0.271639 0.40216,0.123473 v 0.183444 h -0.43391 v 0.546806 h -0.23989 v -0.546806 h -1.09361 q -0.17286,0 -0.25753,0.08114 -0.0811,0.08467 -0.0811,0.215194 z" id="path15759" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="M 251.44197,54.431529 V 54.12814 h 1.76036 q 0.15169,0 0.24342,0.0035 0.0917,0.0035 0.1905,0.01058 -0.0564,-0.05644 -0.0952,-0.102305 -0.0388,-0.04586 -0.0988,-0.116417 l -0.21872,-0.268111 0.20814,-0.162278 0.52916,0.680861 v 0.257528 z" id="path15761" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;writing-mode:tb-rl;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="M 324.11458,60.197915 285.75,-49.604169" id="path1333" style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.8, 1.8;stroke-dashoffset:0;stroke-opacity:1"/>
+<path d="M 324.11458,82.687498 285.75,125.02083" id="path1335" style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.8, 1.8;stroke-dashoffset:0;stroke-opacity:1"/>
+<g aria-label="Front-end" id="text2709" style="font-style:normal;font-weight:normal;font-size:5.64444447px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -17.955904,-39.550003 h -0.508 v -4.030133 h 2.252133 v 0.445911 h -1.744133 v 1.428044 h 1.636889 v 0.445911 h -1.636889 z" id="path4537" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -14.188061,-42.63187 q 0.08467,0 0.180622,0.01129 0.1016,0.0056 0.174978,0.02258 l -0.06209,0.4572 q -0.07338,-0.01693 -0.163689,-0.02822 -0.08467,-0.01129 -0.163688,-0.01129 -0.231423,0 -0.434623,0.129822 -0.2032,0.124178 -0.327377,0.3556 -0.118534,0.225778 -0.118534,0.530578 v 1.614311 h -0.496711 v -3.025422 h 0.4064 l 0.05645,0.553155 h 0.02258 q 0.146756,-0.248355 0.378178,-0.428978 0.231422,-0.180622 0.547511,-0.180622 z" id="path4539" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -10.752975,-41.068359 q 0,0.750712 -0.383823,1.162756 -0.378177,0.412044 -1.027289,0.412044 -0.400755,0 -0.716844,-0.180622 -0.310444,-0.186266 -0.491067,-0.536222 -0.180622,-0.3556 -0.180622,-0.857956 0,-0.750711 0.378178,-1.157111 0.378178,-0.4064 1.027289,-0.4064 0.412044,0 0.722489,0.186267 0.316089,0.180622 0.491066,0.530578 0.180623,0.344311 0.180623,0.846666 z m -2.286,0 q 0,0.536223 0.208844,0.852312 0.214489,0.310444 0.677333,0.310444 0.4572,0 0.671689,-0.310444 0.214489,-0.316089 0.214489,-0.852312 0,-0.536222 -0.214489,-0.841022 -0.214489,-0.3048 -0.677333,-0.3048 -0.462845,0 -0.671689,0.3048 -0.208844,0.3048 -0.208844,0.841022 z" id="path4541" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -8.509485,-42.63187 q 0.5418667,0 0.8184444,0.265289 0.2765778,0.259645 0.2765778,0.846667 v 1.969911 h -0.4910667 v -1.936045 q 0,-0.728133 -0.6773333,-0.728133 -0.5023556,0 -0.6942667,0.282222 -0.1919111,0.282223 -0.1919111,0.8128 v 1.569156 h -0.4967111 v -3.025422 h 0.4007556 l 0.073378,0.412044 h 0.028222 q 0.1467555,-0.237067 0.4064,-0.349955 0.2596444,-0.118534 0.5475111,-0.118534 z" id="path4543" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -5.4717154,-39.899959 q 0.1128889,0 0.2314222,-0.01693 0.1185334,-0.02258 0.1919111,-0.04516 v 0.378177 q -0.079022,0.03951 -0.2257777,0.06209 -0.1467556,0.02822 -0.2822223,0.02822 -0.2370666,0 -0.4402666,-0.07902 -0.1975556,-0.08467 -0.3217334,-0.287866 -0.1241778,-0.2032 -0.1241778,-0.570089 v -1.761067 h -0.4289777 v -0.237067 l 0.4346222,-0.197555 0.1975555,-0.643467 h 0.2935112 v 0.694267 h 0.8748889 v 0.383822 h -0.8748889 v 1.749778 q 0,0.276578 0.1298222,0.412044 0.1354667,0.129822 0.3443111,0.129822 z" id="path4545" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -4.6965745,-40.842581 v -0.440267 h 1.3659555 v 0.440267 z" id="path4547" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m -1.4551648,-42.63187 q 0.3894667,0 0.66604449,0.169334 0.28222222,0.169333 0.42897778,0.479777 0.1524,0.3048 0.1524,0.716845 v 0.299155 H -2.2792536 q 0.011289,0.513645 0.2596444,0.784578 0.254,0.265289 0.7055556,0.265289 0.2878666,0 0.50799996,-0.0508 0.22577778,-0.05644 0.46284444,-0.158044 v 0.434622 q -0.23142222,0.1016 -0.4572,0.146755 -0.2257778,0.0508 -0.5362222,0.0508 -0.4289778,0 -0.762,-0.174977 -0.3273778,-0.174978 -0.5136445,-0.519289 -0.1806222,-0.349956 -0.1806222,-0.852311 0,-0.496712 0.1636889,-0.852312 0.1693333,-0.3556 0.4684889,-0.547511 0.3048,-0.191911 0.7055555,-0.191911 z m -0.00564,0.4064 q -0.3556,0 -0.5644444,0.231422 -0.2032,0.225778 -0.2427112,0.632178 h 1.54093338 q -0.005644,-0.383822 -0.18062222,-0.620889 -0.17497776,-0.242711 -0.55315556,-0.242711 z" id="path4549" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 2.0187266,-42.63187 q 0.5418666,0 0.8184444,0.265289 0.2765778,0.259645 0.2765778,0.846667 v 1.969911 H 2.6226821 v -1.936045 q 0,-0.728133 -0.6773333,-0.728133 -0.5023556,0 -0.6942667,0.282222 -0.1919111,0.282223 -0.1919111,0.8128 v 1.569156 H 0.56245991 v -3.025422 h 0.40075555 l 0.0733777,0.412044 h 0.028222 q 0.1467555,-0.237067 0.4064,-0.349955 0.2596444,-0.118534 0.5475111,-0.118534 z" id="path4551" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 5.1185851,-39.493559 q -0.5644445,0 -0.9031111,-0.389466 -0.3386667,-0.395111 -0.3386667,-1.174045 0,-0.778933 0.3386667,-1.174044 0.3443111,-0.400756 0.9087555,-0.400756 0.3499556,0 0.5700889,0.129822 0.2257778,0.129823 0.3668889,0.316089 h 0.033867 q -0.00564,-0.07338 -0.022578,-0.214489 -0.011289,-0.146755 -0.011289,-0.231422 v -1.207911 h 0.4967111 v 4.289778 H 6.1571629 l -0.073378,-0.4064 h -0.022578 q -0.1354667,0.191911 -0.3612444,0.327378 -0.2257778,0.135466 -0.5813778,0.135466 z m 0.079022,-0.412044 q 0.4797778,0 0.6716889,-0.259644 0.1975555,-0.265289 0.1975555,-0.795867 v -0.09031 q 0,-0.564445 -0.1862666,-0.8636 -0.1862667,-0.3048 -0.6886222,-0.3048 -0.4007556,0 -0.6039556,0.321733 -0.1975556,0.316089 -0.1975556,0.852311 0,0.541867 0.1975556,0.841022 0.2032,0.299156 0.6096,0.299156 z" id="path4553" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Memory Pipeline" id="text2718" style="font-style:normal;font-weight:normal;font-size:5.64444447px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 84.316029,-40.200436 -1.326445,-3.533422 h -0.02258 q 0.01693,0.174978 0.02822,0.474133 0.01129,0.293512 0.01129,0.615245 v 2.444044 h -0.468489 v -4.030133 h 0.750711 l 1.241778,3.302 h 0.02258 l 1.264356,-3.302 h 0.745067 v 4.030133 h -0.502356 v -2.477911 q 0,-0.293511 0.01129,-0.581378 0.01693,-0.287866 0.02822,-0.468488 h -0.02258 l -1.343377,3.527777 z" id="path4556" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 88.753973,-43.282302 q 0.389467,0 0.666045,0.169333 0.282222,0.169333 0.428977,0.479778 0.1524,0.3048 0.1524,0.716844 v 0.299156 h -2.071511 q 0.01129,0.513644 0.259645,0.784578 0.254,0.265288 0.705555,0.265288 0.287867,0 0.508,-0.0508 0.225778,-0.05644 0.462845,-0.158044 v 0.434622 q -0.231423,0.1016 -0.4572,0.146756 -0.225778,0.0508 -0.536223,0.0508 -0.428977,0 -0.762,-0.174978 -0.327377,-0.174978 -0.513644,-0.519289 -0.180622,-0.349955 -0.180622,-0.852311 0,-0.496711 0.163689,-0.852311 0.169333,-0.3556 0.468489,-0.547511 0.3048,-0.191911 0.705555,-0.191911 z m -0.0056,0.4064 q -0.3556,0 -0.564445,0.231422 -0.2032,0.225778 -0.242711,0.632178 h 1.540933 q -0.0056,-0.383823 -0.180622,-0.620889 -0.174978,-0.242711 -0.553155,-0.242711 z" id="path4558" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 94.090531,-43.282302 q 0.513644,0 0.767644,0.265289 0.254,0.259644 0.254,0.846666 v 1.969911 h -0.491067 v -1.947333 q 0,-0.716844 -0.615244,-0.716844 -0.440267,0 -0.632178,0.254 -0.186266,0.254 -0.186266,0.739422 v 1.670755 h -0.491067 v -1.947333 q 0,-0.716844 -0.620889,-0.716844 -0.4572,0 -0.632178,0.282222 -0.174978,0.282222 -0.174978,0.8128 v 1.569155 h -0.496711 v -3.025422 h 0.400756 l 0.07338,0.412045 h 0.02822 q 0.141111,-0.237067 0.378178,-0.349956 0.242711,-0.118533 0.513644,-0.118533 0.7112,0 0.925689,0.508 h 0.02822 q 0.1524,-0.259645 0.412045,-0.383823 0.265289,-0.124177 0.5588,-0.124177 z" id="path4560" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 98.682551,-41.718791 q 0,0.750711 -0.383822,1.162755 -0.378178,0.412045 -1.027289,0.412045 -0.400756,0 -0.716845,-0.180622 -0.310444,-0.186267 -0.491066,-0.536223 -0.180622,-0.3556 -0.180622,-0.857955 0,-0.750711 0.378177,-1.157111 0.378178,-0.4064 1.027289,-0.4064 0.412045,0 0.722489,0.186266 0.316089,0.180623 0.491067,0.530578 0.180622,0.344311 0.180622,0.846667 z m -2.286,0 q 0,0.536222 0.208844,0.852311 0.214489,0.310444 0.677334,0.310444 0.4572,0 0.671689,-0.310444 0.214489,-0.316089 0.214489,-0.852311 0,-0.536222 -0.214489,-0.841022 -0.214489,-0.3048 -0.677334,-0.3048 -0.462844,0 -0.671689,0.3048 -0.208844,0.3048 -0.208844,0.841022 z" id="path4562" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 100.88089,-43.282302 q 0.0847,0 0.18062,0.01129 0.1016,0.0056 0.17498,0.02258 l -0.0621,0.4572 q -0.0734,-0.01693 -0.16369,-0.02822 -0.0847,-0.01129 -0.16369,-0.01129 -0.23142,0 -0.43462,0.129822 -0.2032,0.124178 -0.32738,0.3556 -0.118534,0.225778 -0.118534,0.530578 v 1.614311 h -0.496711 v -3.025422 h 0.4064 l 0.05644,0.553156 h 0.02258 q 0.146753,-0.248356 0.378173,-0.428978 0.23143,-0.180622 0.54752,-0.180622 z" id="path4564" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 101.32177,-43.225858 h 0.53058 l 0.65475,1.721556 q 0.0847,0.225777 0.1524,0.434622 0.0677,0.2032 0.1016,0.389467 h 0.0226 q 0.0339,-0.141112 0.10724,-0.366889 0.0734,-0.231423 0.1524,-0.462845 l 0.61525,-1.715911 h 0.53622 l -1.30387,3.443111 q -0.15804,0.428978 -0.41204,0.682978 -0.24836,0.254 -0.68862,0.254 -0.13547,0 -0.23707,-0.01693 -0.1016,-0.01129 -0.17498,-0.02822 v -0.395111 q 0.0621,0.01129 0.14676,0.02258 0.0903,0.01129 0.18627,0.01129 0.25964,0 0.41768,-0.146756 0.16369,-0.146755 0.254,-0.389466 l 0.15805,-0.400756 z" id="path4566" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 107.27401,-44.230569 q 0.79022,0 1.15147,0.310444 0.36124,0.310445 0.36124,0.874889 0,0.333023 -0.1524,0.626534 -0.14675,0.287866 -0.50235,0.468489 -0.34996,0.180622 -0.95391,0.180622 h -0.46285 v 1.569155 h -0.508 v -4.030133 z m -0.0452,0.434622 h -0.51365 v 1.591734 h 0.4064 q 0.57574,0 0.85796,-0.186267 0.28222,-0.186267 0.28222,-0.632178 0,-0.389467 -0.24836,-0.581378 -0.24835,-0.191911 -0.78457,-0.191911 z" id="path4568" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 109.81101,-44.360391 q 0.11289,0 0.19756,0.07902 0.0903,0.07338 0.0903,0.237067 0,0.158044 -0.0903,0.237066 -0.0847,0.07902 -0.19756,0.07902 -0.12417,0 -0.20884,-0.07902 -0.0847,-0.07902 -0.0847,-0.237066 0,-0.163689 0.0847,-0.237067 0.0847,-0.07902 0.20884,-0.07902 z m 0.24272,1.134533 v 3.025422 h -0.49672 v -3.025422 z" id="path4570" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 112.45156,-43.282302 q 0.5588,0 0.89746,0.389466 0.34431,0.389467 0.34431,1.174045 0,0.773289 -0.34431,1.174044 -0.33866,0.400756 -0.90311,0.400756 -0.34995,0 -0.58138,-0.129822 -0.22577,-0.135467 -0.3556,-0.310445 h -0.0339 q 0.0113,0.09596 0.0226,0.242711 0.0113,0.146756 0.0113,0.254 v 1.241778 h -0.49671 v -4.380089 h 0.4064 l 0.0677,0.412045 h 0.0226 q 0.13547,-0.197556 0.3556,-0.333023 0.22014,-0.135466 0.58703,-0.135466 z m -0.0903,0.417689 q -0.46284,0 -0.65475,0.259644 -0.18627,0.259644 -0.19756,0.790222 v 0.09596 q 0,0.5588 0.18063,0.8636 0.18626,0.299155 0.68297,0.299155 0.27658,0 0.45156,-0.1524 0.18062,-0.1524 0.26529,-0.412044 0.0903,-0.265289 0.0903,-0.603956 0,-0.519289 -0.2032,-0.829733 -0.19756,-0.310444 -0.61525,-0.310444 z" id="path4572" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 115.65328,-43.282302 q 0.38947,0 0.66604,0.169333 0.28223,0.169333 0.42898,0.479778 0.1524,0.3048 0.1524,0.716844 v 0.299156 h -2.07151 q 0.0113,0.513644 0.25964,0.784578 0.254,0.265288 0.70556,0.265288 0.28787,0 0.508,-0.0508 0.22578,-0.05644 0.46284,-0.158044 v 0.434622 q -0.23142,0.1016 -0.4572,0.146756 -0.22577,0.0508 -0.53622,0.0508 -0.42898,0 -0.762,-0.174978 -0.32738,-0.174978 -0.51364,-0.519289 -0.18062,-0.349955 -0.18062,-0.852311 0,-0.496711 0.16368,-0.852311 0.16934,-0.3556 0.46849,-0.547511 0.3048,-0.191911 0.70556,-0.191911 z m -0.006,0.4064 q -0.3556,0 -0.56444,0.231422 -0.2032,0.225778 -0.24271,0.632178 h 1.54093 q -0.006,-0.383823 -0.18062,-0.620889 -0.17498,-0.242711 -0.55316,-0.242711 z" id="path4574" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 118.16761,-40.200436 h -0.49671 v -4.289777 h 0.49671 z" id="path4576" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 119.38011,-44.360391 q 0.11289,0 0.19756,0.07902 0.0903,0.07338 0.0903,0.237067 0,0.158044 -0.0903,0.237066 -0.0847,0.07902 -0.19756,0.07902 -0.12418,0 -0.20884,-0.07902 -0.0847,-0.07902 -0.0847,-0.237066 0,-0.163689 0.0847,-0.237067 0.0847,-0.07902 0.20884,-0.07902 z m 0.24271,1.134533 v 3.025422 h -0.49671 v -3.025422 z" id="path4578" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 122.03758,-43.282302 q 0.54187,0 0.81845,0.265289 0.27658,0.259644 0.27658,0.846666 v 1.969911 h -0.49107 v -1.936044 q 0,-0.728133 -0.67733,-0.728133 -0.50236,0 -0.69427,0.282222 -0.19191,0.282222 -0.19191,0.8128 v 1.569155 h -0.49671 v -3.025422 h 0.40075 l 0.0734,0.412045 h 0.0282 q 0.14676,-0.237067 0.4064,-0.349956 0.25965,-0.118533 0.54751,-0.118533 z" id="path4580" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 125.2334,-43.282302 q 0.38947,0 0.66604,0.169333 0.28223,0.169333 0.42898,0.479778 0.1524,0.3048 0.1524,0.716844 v 0.299156 h -2.07151 q 0.0113,0.513644 0.25964,0.784578 0.254,0.265288 0.70556,0.265288 0.28787,0 0.508,-0.0508 0.22578,-0.05644 0.46284,-0.158044 v 0.434622 q -0.23142,0.1016 -0.4572,0.146756 -0.22577,0.0508 -0.53622,0.0508 -0.42898,0 -0.762,-0.174978 -0.32738,-0.174978 -0.51364,-0.519289 -0.18062,-0.349955 -0.18062,-0.852311 0,-0.496711 0.16368,-0.852311 0.16934,-0.3556 0.46849,-0.547511 0.3048,-0.191911 0.70556,-0.191911 z m -0.006,0.4064 q -0.3556,0 -0.56444,0.231422 -0.2032,0.225778 -0.24271,0.632178 h 1.54093 q -0.006,-0.383823 -0.18062,-0.620889 -0.17498,-0.242711 -0.55316,-0.242711 z" id="path4582" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Out-of-Order Engine" id="text2722" style="font-style:normal;font-weight:normal;font-size:5.64444447px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 205.78674,-42.205987 q 0,0.626533 -0.21449,1.095022 -0.20884,0.462845 -0.62089,0.722489 -0.41204,0.259644 -1.02164,0.259644 -0.62653,0 -1.04422,-0.259644 -0.41205,-0.259644 -0.61525,-0.728133 -0.2032,-0.468489 -0.2032,-1.095023 0,-0.620888 0.2032,-1.083733 0.2032,-0.462844 0.61525,-0.722489 0.41769,-0.259644 1.04986,-0.259644 0.60396,0 1.016,0.259644 0.41205,0.254 0.62089,0.722489 0.21449,0.462845 0.21449,1.089378 z m -3.18347,0 q 0,0.762 0.32174,1.202267 0.32173,0.434622 1.00471,0.434622 0.68862,0 1.00471,-0.434622 0.31609,-0.440267 0.31609,-1.202267 0,-0.762 -0.31609,-1.190978 -0.31609,-0.434622 -0.99907,-0.434622 -0.68297,0 -1.01035,0.434622 -0.32174,0.428978 -0.32174,1.190978 z" id="path4585" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 209.14095,-43.210698 v 3.025422 h -0.4064 l -0.0734,-0.400756 h -0.0226 q -0.14676,0.237067 -0.4064,0.349956 -0.25965,0.107244 -0.55316,0.107244 -0.54751,0 -0.82409,-0.259644 -0.27658,-0.265289 -0.27658,-0.841022 v -1.9812 h 0.50236 v 1.947333 q 0,0.722489 0.67169,0.722489 0.50235,0 0.69427,-0.282222 0.19755,-0.282222 0.19755,-0.8128 v -1.5748 z" id="path4587" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 211.10628,-40.535232 q 0.11289,0 0.23142,-0.01693 0.11853,-0.02258 0.19191,-0.04516 v 0.378177 q -0.079,0.03951 -0.22578,0.06209 -0.14675,0.02822 -0.28222,0.02822 -0.23707,0 -0.44027,-0.07902 -0.19755,-0.08467 -0.32173,-0.287866 -0.12418,-0.2032 -0.12418,-0.570089 v -1.761067 h -0.42897 v -0.237067 l 0.43462,-0.197555 0.19755,-0.643467 h 0.29351 v 0.694267 h 0.87489 v 0.383822 h -0.87489 v 1.749778 q 0,0.276578 0.12983,0.412044 0.13546,0.129822 0.34431,0.129822 z" id="path4589" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 211.88142,-41.477854 v -0.440266 h 1.36595 v 0.440266 z" id="path4591" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 216.58474,-41.703632 q 0,0.750712 -0.38382,1.162756 -0.37818,0.412044 -1.02729,0.412044 -0.40076,0 -0.71685,-0.180622 -0.31044,-0.186266 -0.49106,-0.536222 -0.18063,-0.3556 -0.18063,-0.857956 0,-0.750711 0.37818,-1.157111 0.37818,-0.4064 1.02729,-0.4064 0.41205,0 0.72249,0.186267 0.31609,0.180622 0.49107,0.530578 0.18062,0.344311 0.18062,0.846666 z m -2.286,0 q 0,0.536223 0.20884,0.852312 0.21449,0.310444 0.67734,0.310444 0.4572,0 0.67169,-0.310444 0.21448,-0.316089 0.21448,-0.852312 0,-0.536222 -0.21448,-0.841022 -0.21449,-0.3048 -0.67734,-0.3048 -0.46284,0 -0.67169,0.3048 -0.20884,0.3048 -0.20884,0.841022 z" id="path4593" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 218.76614,-42.826876 h -0.762 v 2.6416 h -0.49671 v -2.6416 h -0.53058 v -0.231422 l 0.53058,-0.169334 v -0.174977 q 0,-0.587023 0.25964,-0.841023 0.25965,-0.259644 0.72249,-0.259644 0.18063,0 0.32738,0.03387 0.1524,0.02822 0.25965,0.06773 l -0.12983,0.389467 q -0.0903,-0.02822 -0.20884,-0.05645 -0.11853,-0.02822 -0.24271,-0.02822 -0.24836,0 -0.37254,0.169333 -0.11853,0.163689 -0.11853,0.519289 v 0.197556 h 0.762 z" id="path4595" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 219.05824,-41.477854 v -0.440266 h 1.36596 v 0.440266 z" id="path4597" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 224.71547,-42.205987 q 0,0.626533 -0.21449,1.095022 -0.20884,0.462845 -0.62088,0.722489 -0.41205,0.259644 -1.02165,0.259644 -0.62653,0 -1.04422,-0.259644 -0.41205,-0.259644 -0.61525,-0.728133 -0.2032,-0.468489 -0.2032,-1.095023 0,-0.620888 0.2032,-1.083733 0.2032,-0.462844 0.61525,-0.722489 0.41769,-0.259644 1.04987,-0.259644 0.60395,0 1.016,0.259644 0.41204,0.254 0.62088,0.722489 0.21449,0.462845 0.21449,1.089378 z m -3.18346,0 q 0,0.762 0.32173,1.202267 0.32173,0.434622 1.00471,0.434622 0.68862,0 1.00471,-0.434622 0.31609,-0.440267 0.31609,-1.202267 0,-0.762 -0.31609,-1.190978 -0.31609,-0.434622 -0.99906,-0.434622 -0.68298,0 -1.01036,0.434622 -0.32173,0.428978 -0.32173,1.190978 z" id="path4599" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 226.95209,-43.267143 q 0.0847,0 0.18062,0.01129 0.1016,0.0056 0.17498,0.02258 l -0.0621,0.4572 q -0.0734,-0.01693 -0.16369,-0.02822 -0.0847,-0.01129 -0.16369,-0.01129 -0.23142,0 -0.43462,0.129822 -0.2032,0.124178 -0.32738,0.3556 -0.11853,0.225778 -0.11853,0.530578 v 1.614311 h -0.49672 v -3.025422 h 0.4064 l 0.0564,0.553155 h 0.0226 q 0.14675,-0.248355 0.37817,-0.428977 0.23143,-0.180623 0.54752,-0.180623 z" id="path4601" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 228.8293,-40.128832 q -0.56444,0 -0.90311,-0.389466 -0.33866,-0.395111 -0.33866,-1.174045 0,-0.778933 0.33866,-1.174044 0.34431,-0.400756 0.90876,-0.400756 0.34995,0 0.57009,0.129823 0.22577,0.129822 0.36689,0.316088 h 0.0339 q -0.006,-0.07338 -0.0226,-0.214488 -0.0113,-0.146756 -0.0113,-0.231423 v -1.207911 h 0.49671 v 4.289778 h -0.40076 l -0.0734,-0.4064 h -0.0226 q -0.13547,0.191911 -0.36125,0.327378 -0.22578,0.135466 -0.58138,0.135466 z m 0.079,-0.412044 q 0.47977,0 0.67168,-0.259644 0.19756,-0.265289 0.19756,-0.795867 v -0.09031 q 0,-0.564445 -0.18627,-0.8636 -0.18626,-0.3048 -0.68862,-0.3048 -0.40075,0 -0.60395,0.321733 -0.19756,0.316089 -0.19756,0.852311 0,0.541867 0.19756,0.841022 0.2032,0.299156 0.6096,0.299156 z" id="path4603" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 232.39792,-43.267143 q 0.38946,0 0.66604,0.169334 0.28222,0.169333 0.42898,0.479777 0.1524,0.3048 0.1524,0.716845 v 0.299155 h -2.07151 q 0.0113,0.513645 0.25964,0.784578 0.254,0.265289 0.70556,0.265289 0.28786,0 0.508,-0.0508 0.22577,-0.05644 0.46284,-0.158044 v 0.434622 q -0.23142,0.1016 -0.4572,0.146755 -0.22578,0.0508 -0.53622,0.0508 -0.42898,0 -0.762,-0.174977 -0.32738,-0.174978 -0.51365,-0.519289 -0.18062,-0.349956 -0.18062,-0.852311 0,-0.496711 0.16369,-0.852311 0.16933,-0.3556 0.46849,-0.547512 0.3048,-0.191911 0.70556,-0.191911 z m -0.006,0.4064 q -0.3556,0 -0.56444,0.231423 -0.2032,0.225777 -0.24271,0.632177 h 1.54093 q -0.006,-0.383822 -0.18062,-0.620889 -0.17498,-0.242711 -0.55316,-0.242711 z" id="path4605" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 235.82665,-43.267143 q 0.0847,0 0.18062,0.01129 0.1016,0.0056 0.17498,0.02258 l -0.0621,0.4572 q -0.0734,-0.01693 -0.16369,-0.02822 -0.0847,-0.01129 -0.16369,-0.01129 -0.23142,0 -0.43462,0.129822 -0.2032,0.124178 -0.32738,0.3556 -0.11853,0.225778 -0.11853,0.530578 v 1.614311 h -0.49671 v -3.025422 h 0.4064 l 0.0564,0.553155 h 0.0226 q 0.14676,-0.248355 0.37818,-0.428977 0.23142,-0.180623 0.54751,-0.180623 z" id="path4607" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 240.52777,-40.185276 h -2.25214 v -4.030133 h 2.25214 v 0.445911 h -1.74414 v 1.258711 h 1.64254 v 0.440267 h -1.64254 v 1.439333 h 1.74414 z" id="path4609" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 242.80609,-43.267143 q 0.54187,0 0.81845,0.265289 0.27658,0.259645 0.27658,0.846667 v 1.969911 h -0.49107 v -1.936044 q 0,-0.728134 -0.67733,-0.728134 -0.50236,0 -0.69427,0.282222 -0.19191,0.282223 -0.19191,0.8128 v 1.569156 h -0.49671 v -3.025422 h 0.40075 l 0.0734,0.412044 h 0.0282 q 0.14676,-0.237066 0.4064,-0.349955 0.25965,-0.118534 0.54751,-0.118534 z" id="path4611" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 245.90595,-43.267143 q 0.29916,0 0.53622,0.112889 0.24272,0.112889 0.41205,0.344311 h 0.0282 l 0.0677,-0.400755 h 0.39512 v 3.076222 q 0,0.649111 -0.33303,0.976489 -0.32737,0.327378 -1.02164,0.327378 -0.66605,0 -1.08938,-0.191911 v -0.4572 q 0.44591,0.237066 1.1176,0.237066 0.38947,0 0.6096,-0.231422 0.22578,-0.225778 0.22578,-0.620889 v -0.118533 q 0,-0.06773 0.006,-0.191911 0.006,-0.129823 0.0113,-0.180623 h -0.0226 q -0.3048,0.4572 -0.93697,0.4572 -0.58703,0 -0.92005,-0.412044 -0.32738,-0.412044 -0.32738,-1.151467 0,-0.722489 0.32738,-1.145822 0.33302,-0.428978 0.9144,-0.428978 z m 0.0677,0.417689 q -0.37818,0 -0.58703,0.3048 -0.20884,0.299156 -0.20884,0.857956 0,0.5588 0.2032,0.857955 0.20884,0.293511 0.60395,0.293511 0.4572,0 0.66605,-0.242711 0.20884,-0.248355 0.20884,-0.795866 v -0.118534 q 0,-0.620889 -0.21449,-0.886177 -0.21448,-0.270934 -0.67168,-0.270934 z" id="path4613" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 248.56016,-44.345232 q 0.11289,0 0.19756,0.07902 0.0903,0.07338 0.0903,0.237066 0,0.158045 -0.0903,0.237067 -0.0847,0.07902 -0.19756,0.07902 -0.12417,0 -0.20884,-0.07902 -0.0847,-0.07902 -0.0847,-0.237067 0,-0.163689 0.0847,-0.237066 0.0847,-0.07902 0.20884,-0.07902 z m 0.24272,1.134534 v 3.025422 h -0.49672 v -3.025422 z" id="path4615" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 251.21764,-43.267143 q 0.54187,0 0.81844,0.265289 0.27658,0.259645 0.27658,0.846667 v 1.969911 h -0.49107 v -1.936044 q 0,-0.728134 -0.67733,-0.728134 -0.50235,0 -0.69427,0.282222 -0.19191,0.282223 -0.19191,0.8128 v 1.569156 h -0.49671 v -3.025422 h 0.40076 l 0.0734,0.412044 h 0.0282 q 0.14675,-0.237066 0.4064,-0.349955 0.25964,-0.118534 0.54751,-0.118534 z" id="path4617" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 254.41345,-43.267143 q 0.38947,0 0.66605,0.169334 0.28222,0.169333 0.42898,0.479777 0.1524,0.3048 0.1524,0.716845 v 0.299155 h -2.07152 q 0.0113,0.513645 0.25965,0.784578 0.254,0.265289 0.70555,0.265289 0.28787,0 0.508,-0.0508 0.22578,-0.05644 0.46285,-0.158044 v 0.434622 q -0.23142,0.1016 -0.4572,0.146755 -0.22578,0.0508 -0.53622,0.0508 -0.42898,0 -0.762,-0.174977 -0.32738,-0.174978 -0.51365,-0.519289 -0.18062,-0.349956 -0.18062,-0.852311 0,-0.496711 0.16369,-0.852311 0.16933,-0.3556 0.46849,-0.547512 0.3048,-0.191911 0.70555,-0.191911 z m -0.006,0.4064 q -0.3556,0 -0.56445,0.231423 -0.2032,0.225777 -0.24271,0.632177 h 1.54094 q -0.006,-0.383822 -0.18063,-0.620889 -0.17497,-0.242711 -0.55315,-0.242711 z" id="path4619" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 153.9875,71.659752 -1.85208,-0.22014 3e-5,15.216636 v 2.64583 h -30.42712 v -2.64583 h 27.78128 l -3e-5,-15.216636 -1.85208,0.22014 3.175,-2.20142 z" id="path1257" style="fill:#cccccc;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
+<path d="M 83.608765,82.952499 H 121.70834 V 99.885414 H 83.608765 Z" id="rect1936" style="fill:#e6e6e6;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<path d="M 84.666664,87.979164 H 101.73209 V 98.562496 H 84.666664 Z" id="rect1903" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="PrimaryRAT" id="text1775" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 87.522246,89.405826 q 0.493889,0 0.719667,0.194028 0.225777,0.194028 0.225777,0.546806 0,0.208139 -0.09525,0.391583 -0.09172,0.179917 -0.313972,0.292806 -0.218722,0.112889 -0.596194,0.112889 h -0.289278 v 0.980722 h -0.3175 v -2.518834 z m -0.02822,0.271639 h -0.321028 v 0.994834 h 0.254 q 0.359833,0 0.536222,-0.116417 0.176389,-0.116417 0.176389,-0.395111 0,-0.243417 -0.155222,-0.363361 -0.155222,-0.119945 -0.490361,-0.119945 z" id="path4624" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 89.831066,89.998493 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.0388,0.28575 q -0.04586,-0.01058 -0.102306,-0.01764 -0.05292,-0.0071 -0.102305,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008945 h -0.310444 v -1.890889 h 0.254 l 0.03528,0.345722 h 0.01411 q 0.09172,-0.155222 0.236361,-0.268111 0.144639,-0.112889 0.342194,-0.112889 z" id="path4626" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 90.561702,89.324688 q 0.07056,0 0.123472,0.04939 0.05644,0.04586 0.05644,0.148167 0,0.09878 -0.05644,0.148167 -0.05292,0.04939 -0.123472,0.04939 -0.07761,0 -0.130528,-0.04939 -0.05292,-0.04939 -0.05292,-0.148167 0,-0.102305 0.05292,-0.148167 0.05292,-0.04939 0.130528,-0.04939 z m 0.151695,0.709083 v 1.890889 h -0.310445 v -1.890889 z" id="path4628" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 93.386791,89.998493 q 0.321028,0 0.479778,0.165806 0.15875,0.162277 0.15875,0.529166 v 1.231195 h -0.306917 v -1.217084 q 0,-0.448027 -0.384528,-0.448027 -0.275167,0 -0.395111,0.15875 -0.116417,0.15875 -0.116417,0.462139 V 91.92466 H 92.51543 v -1.217084 q 0,-0.448027 -0.388056,-0.448027 -0.28575,0 -0.395111,0.176389 -0.109361,0.176388 -0.109361,0.508 v 0.980722 h -0.310445 v -1.890889 h 0.250473 l 0.04586,0.257528 h 0.01764 q 0.08819,-0.148167 0.236361,-0.218723 0.151694,-0.07408 0.321028,-0.07408 0.4445,0 0.578555,0.3175 h 0.01764 q 0.09525,-0.162278 0.257528,-0.239889 0.165805,-0.07761 0.34925,-0.07761 z" id="path4630" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 95.328998,90.002021 q 0.345722,0 0.511527,0.151694 0.165806,0.151695 0.165806,0.483306 v 1.287639 h -0.225778 l -0.05997,-0.268111 h -0.01411 q -0.123472,0.155222 -0.261056,0.229305 -0.134055,0.07408 -0.373944,0.07408 -0.257528,0 -0.426861,-0.134056 -0.169334,-0.137583 -0.169334,-0.426861 0,-0.282222 0.22225,-0.433917 0.22225,-0.155222 0.684389,-0.169333 l 0.321028,-0.01058 v -0.112889 q 0,-0.236361 -0.102306,-0.328084 -0.102305,-0.09172 -0.289277,-0.09172 -0.148167,0 -0.282223,0.04586 -0.134055,0.04233 -0.250472,0.09878 l -0.09525,-0.232833 q 0.123472,-0.06703 0.292806,-0.112889 0.169333,-0.04939 0.352778,-0.04939 z m 0.370416,0.998361 -0.278694,0.01058 q -0.352778,0.01411 -0.490361,0.112889 -0.134056,0.09878 -0.134056,0.278695 0,0.15875 0.09525,0.232833 0.09878,0.07408 0.250472,0.07408 0.239889,0 0.398639,-0.130527 0.15875,-0.134056 0.15875,-0.409223 z" id="path4632" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 97.472288,89.998493 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.03881,0.28575 q -0.04586,-0.01058 -0.102305,-0.01764 -0.05292,-0.0071 -0.102306,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008945 h -0.310445 v -1.890889 h 0.254 l 0.03528,0.345722 h 0.01411 q 0.09172,-0.155222 0.236361,-0.268111 0.144639,-0.112889 0.342195,-0.112889 z" id="path4634" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 97.747841,90.033771 h 0.331611 l 0.409222,1.075972 q 0.05292,0.141111 0.09525,0.271639 0.04233,0.127 0.0635,0.243417 h 0.01411 q 0.02117,-0.08819 0.06703,-0.229306 0.04586,-0.144639 0.09525,-0.289278 l 0.384528,-1.072444 h 0.335139 l -0.814917,2.151944 q -0.09878,0.268111 -0.257528,0.426861 -0.155222,0.15875 -0.430389,0.15875 -0.08467,0 -0.148166,-0.01058 -0.0635,-0.0071 -0.109361,-0.01764 V 92.49616 q 0.0388,0.0071 0.09172,0.01411 0.05644,0.0071 0.116416,0.0071 0.162278,0 0.261056,-0.09172 0.102306,-0.09172 0.15875,-0.243417 l 0.09878,-0.250472 z" id="path4636" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 90.985228,94.697491 q 0.469195,0 0.691445,0.179916 0.225778,0.176389 0.225778,0.536222 0,0.201084 -0.07408,0.335139 -0.07408,0.134056 -0.1905,0.215195 -0.112889,0.07761 -0.239889,0.123472 l 0.691445,1.128889 h -0.370417 l -0.610305,-1.040695 h -0.500945 v 1.040695 h -0.3175 v -2.518833 z m -0.01764,0.275166 h -0.359833 v 0.934861 h 0.377472 q 0.306917,0 0.448028,-0.119944 0.141111,-0.123472 0.141111,-0.359833 0,-0.246945 -0.148166,-0.34925 -0.148167,-0.105834 -0.458612,-0.105834 z" id="path4638" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 94.061781,97.216324 -0.303389,-0.779639 h -0.998361 l -0.299861,0.779639 h -0.321028 l 0.98425,-2.529417 h 0.28575 l 0.980722,2.529417 z m -0.398639,-1.061861 -0.282222,-0.762 q -0.01058,-0.02822 -0.03528,-0.102306 -0.02469,-0.07408 -0.04939,-0.151694 -0.02117,-0.08114 -0.03528,-0.123472 -0.02469,0.109361 -0.05644,0.215194 -0.03175,0.102306 -0.05292,0.162278 l -0.28575,0.762 z" id="path4640" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 95.28366,97.216324 h -0.3175 v -2.240139 h -0.786695 v -0.278694 h 1.887362 v 0.278694 H 95.28366 Z" id="path4642" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+</g>
+<g aria-label="Register Alias Table" id="text1942" style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 87.629515,83.808575 q 0.469194,0 0.691444,0.179916 0.225778,0.176389 0.225778,0.536222 0,0.201084 -0.07408,0.335139 -0.07408,0.134056 -0.1905,0.215195 -0.112889,0.07761 -0.239889,0.123472 l 0.691444,1.128889 h -0.370416 l -0.610306,-1.040695 h -0.500944 v 1.040695 h -0.3175 v -2.518833 z m -0.01764,0.275166 h -0.359833 v 0.934861 h 0.377472 q 0.306917,0 0.448028,-0.119944 0.141111,-0.123472 0.141111,-0.359833 0,-0.246945 -0.148167,-0.34925 -0.148166,-0.105834 -0.458611,-0.105834 z" id="path4645" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 89.81354,84.401241 q 0.243417,0 0.416278,0.105834 0.176389,0.105833 0.268111,0.299861 0.09525,0.1905 0.09525,0.448027 v 0.186973 h -1.294695 q 0.0071,0.321027 0.162278,0.490361 0.15875,0.165805 0.440972,0.165805 0.179917,0 0.3175,-0.03175 0.141112,-0.03528 0.289278,-0.09878 v 0.271638 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335139,0.03175 -0.268111,0 -0.47625,-0.109361 -0.204611,-0.109362 -0.321027,-0.324556 -0.112889,-0.218722 -0.112889,-0.532694 0,-0.310445 0.102305,-0.532695 0.105834,-0.22225 0.292806,-0.342194 0.1905,-0.119945 0.440972,-0.119945 z m -0.0035,0.254 q -0.22225,0 -0.352778,0.144639 -0.127,0.141111 -0.151694,0.395111 h 0.963083 q -0.0035,-0.239889 -0.112889,-0.388055 -0.109361,-0.151695 -0.345722,-0.151695 z" id="path4647" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 91.744833,84.401241 q 0.186972,0 0.335139,0.07056 0.151694,0.07055 0.257528,0.215194 h 0.01764 l 0.04233,-0.250472 h 0.246944 v 1.922639 q 0,0.405694 -0.208138,0.610305 -0.204612,0.204611 -0.638528,0.204611 -0.416278,0 -0.680861,-0.119944 v -0.28575 q 0.278694,0.148167 0.6985,0.148167 0.243416,0 0.381,-0.144639 0.141111,-0.141111 0.141111,-0.388056 v -0.07408 q 0,-0.04233 0.0035,-0.119944 0.0035,-0.08114 0.0071,-0.112889 h -0.01411 q -0.1905,0.28575 -0.585611,0.28575 -0.366889,0 -0.575028,-0.257528 -0.204611,-0.257528 -0.204611,-0.719667 0,-0.451555 0.204611,-0.716139 0.208139,-0.268111 0.5715,-0.268111 z m 0.04233,0.261056 q -0.236361,0 -0.366888,0.1905 -0.130528,0.186972 -0.130528,0.536222 0,0.34925 0.127,0.536222 0.130528,0.183445 0.377472,0.183445 0.28575,0 0.416278,-0.151695 0.130528,-0.155222 0.130528,-0.497416 v -0.07408 q 0,-0.388055 -0.134056,-0.553861 -0.134056,-0.169333 -0.419806,-0.169333 z" id="path4649" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 93.403715,83.727436 q 0.07056,0 0.123473,0.04939 0.05644,0.04586 0.05644,0.148166 0,0.09878 -0.05644,0.148167 -0.05292,0.04939 -0.123473,0.04939 -0.07761,0 -0.130527,-0.04939 -0.05292,-0.04939 -0.05292,-0.148167 0,-0.102305 0.05292,-0.148166 0.05292,-0.04939 0.130527,-0.04939 z m 0.151695,0.709083 v 1.890889 h -0.310445 v -1.890889 z" id="path4651" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 95.385665,85.805297 q 0,0.275166 -0.204611,0.416278 -0.204611,0.141111 -0.550334,0.141111 -0.197555,0 -0.342194,-0.03175 -0.141111,-0.03175 -0.250472,-0.08819 v -0.282222 q 0.112889,0.05644 0.271639,0.105833 0.162277,0.04586 0.328083,0.04586 0.236361,0 0.342194,-0.07408 0.105834,-0.07761 0.105834,-0.204611 0,-0.07056 -0.03881,-0.127 -0.0388,-0.05644 -0.141111,-0.112889 -0.09878,-0.05644 -0.28575,-0.127 -0.183444,-0.07055 -0.313972,-0.141111 -0.130528,-0.07056 -0.201084,-0.169333 -0.07055,-0.09878 -0.07055,-0.254 0,-0.239889 0.194028,-0.370417 0.197555,-0.130528 0.515055,-0.130528 0.172861,0 0.321028,0.03528 0.151694,0.03175 0.282222,0.09172 l -0.105833,0.246945 q -0.119945,-0.04939 -0.250472,-0.08467 -0.130528,-0.03528 -0.268111,-0.03528 -0.1905,0 -0.292806,0.0635 -0.09878,0.05997 -0.09878,0.165806 0,0.07761 0.04586,0.134055 0.04586,0.05292 0.151695,0.105834 0.109361,0.04939 0.289278,0.119944 0.179916,0.06703 0.306916,0.137583 0.127,0.07056 0.194028,0.172862 0.06703,0.09878 0.06703,0.250472 z" id="path4653" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 96.474039,86.108686 q 0.07056,0 0.144639,-0.01058 0.07408,-0.01411 0.119944,-0.02822 v 0.236361 q -0.04939,0.02469 -0.141111,0.03881 -0.09172,0.01764 -0.176389,0.01764 -0.148166,0 -0.275166,-0.04939 -0.123472,-0.05292 -0.201084,-0.179917 -0.07761,-0.127 -0.07761,-0.356305 V 84.676408 H 95.59915 v -0.148167 l 0.271639,-0.123472 0.123472,-0.402167 h 0.183445 v 0.433917 h 0.546805 v 0.239889 h -0.546805 v 1.093611 q 0,0.172861 0.08114,0.257528 0.08467,0.08114 0.215194,0.08114 z" id="path4655" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 97.847503,84.401241 q 0.243416,0 0.416278,0.105834 0.176388,0.105833 0.268111,0.299861 0.09525,0.1905 0.09525,0.448027 v 0.186973 h -1.294695 q 0.0071,0.321027 0.162278,0.490361 0.15875,0.165805 0.440972,0.165805 0.179917,0 0.3175,-0.03175 0.141111,-0.03528 0.289278,-0.09878 v 0.271638 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335139,0.03175 -0.268111,0 -0.47625,-0.109361 -0.204611,-0.109362 -0.321028,-0.324556 -0.112889,-0.218722 -0.112889,-0.532694 0,-0.310445 0.102306,-0.532695 0.105833,-0.22225 0.292806,-0.342194 0.1905,-0.119945 0.440972,-0.119945 z m -0.0035,0.254 q -0.22225,0 -0.352778,0.144639 -0.127,0.141111 -0.151694,0.395111 h 0.963083 q -0.0035,-0.239889 -0.112889,-0.388055 -0.109361,-0.151695 -0.345722,-0.151695 z" id="path4657" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 99.990462,84.401241 q 0.05292,0 0.112888,0.0071 0.0635,0.0035 0.10936,0.01411 l -0.0388,0.28575 q -0.0459,-0.01058 -0.10231,-0.01764 -0.0529,-0.0071 -0.102304,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008945 h -0.310444 v -1.890889 h 0.254 l 0.03528,0.345722 h 0.01411 q 0.09172,-0.155222 0.236361,-0.268111 0.144639,-0.112889 0.342194,-0.112889 z" id="path4659" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 103.10152,86.327408 -0.30339,-0.779639 h -0.99836 l -0.29986,0.779639 h -0.32103 l 0.98425,-2.529417 h 0.28575 l 0.98072,2.529417 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102306 -0.0247,-0.07408 -0.0494,-0.151694 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0564,0.215194 -0.0318,0.102306 -0.0529,0.162278 l -0.28575,0.762 z" id="path4661" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 104.04228,86.327408 h -0.31044 v -2.681111 h 0.31044 z" id="path4663" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 104.80009,83.727436 q 0.0706,0 0.12347,0.04939 0.0564,0.04586 0.0564,0.148166 0,0.09878 -0.0564,0.148167 -0.0529,0.04939 -0.12347,0.04939 -0.0776,0 -0.13053,-0.04939 -0.0529,-0.04939 -0.0529,-0.148167 0,-0.102305 0.0529,-0.148166 0.0529,-0.04939 0.13053,-0.04939 z m 0.1517,0.709083 v 1.890889 h -0.31045 v -1.890889 z" id="path4665" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 106.26698,84.404769 q 0.34573,0 0.51153,0.151694 0.16581,0.151695 0.16581,0.483306 v 1.287639 h -0.22578 l -0.06,-0.268111 h -0.0141 q -0.12348,0.155222 -0.26106,0.229305 -0.13405,0.07408 -0.37394,0.07408 -0.25753,0 -0.42686,-0.134056 -0.16934,-0.137583 -0.16934,-0.426861 0,-0.282222 0.22225,-0.433917 0.22225,-0.155222 0.68439,-0.169333 l 0.32103,-0.01058 v -0.112889 q 0,-0.236361 -0.10231,-0.328084 -0.1023,-0.09172 -0.28927,-0.09172 -0.14817,0 -0.28223,0.04586 -0.13405,0.04233 -0.25047,0.09878 l -0.0953,-0.232833 q 0.12347,-0.06703 0.29281,-0.112889 0.16933,-0.04939 0.35277,-0.04939 z m 0.37042,0.998361 -0.27869,0.01058 q -0.35278,0.01411 -0.49036,0.112889 -0.13406,0.09878 -0.13406,0.278695 0,0.15875 0.0952,0.232833 0.0988,0.07408 0.25047,0.07408 0.23989,0 0.39864,-0.130527 0.15875,-0.134056 0.15875,-0.409223 z" id="path4667" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 108.75953,85.805297 q 0,0.275166 -0.20462,0.416278 -0.20461,0.141111 -0.55033,0.141111 -0.19755,0 -0.34219,-0.03175 -0.14111,-0.03175 -0.25048,-0.08819 v -0.282222 q 0.11289,0.05644 0.27164,0.105833 0.16228,0.04586 0.32809,0.04586 0.23636,0 0.34219,-0.07408 0.10583,-0.07761 0.10583,-0.204611 0,-0.07056 -0.0388,-0.127 -0.0388,-0.05644 -0.14111,-0.112889 -0.0988,-0.05644 -0.28575,-0.127 -0.18345,-0.07055 -0.31397,-0.141111 -0.13053,-0.07056 -0.20109,-0.169333 -0.0705,-0.09878 -0.0705,-0.254 0,-0.239889 0.19402,-0.370417 0.19756,-0.130528 0.51506,-0.130528 0.17286,0 0.32103,0.03528 0.15169,0.03175 0.28222,0.09172 l -0.10583,0.246945 q -0.11995,-0.04939 -0.25048,-0.08467 -0.13052,-0.03528 -0.26811,-0.03528 -0.1905,0 -0.2928,0.0635 -0.0988,0.05997 -0.0988,0.165806 0,0.07761 0.0459,0.134055 0.0459,0.05292 0.1517,0.105834 0.10936,0.04939 0.28927,0.119944 0.17992,0.06703 0.30692,0.137583 0.127,0.07056 0.19403,0.172862 0.067,0.09878 0.067,0.250472 z" id="path4669" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 110.97243,86.327408 h -0.3175 v -2.240139 h -0.78669 v -0.278694 h 1.88736 v 0.278694 h -0.78317 z" id="path4671" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 112.53017,84.404769 q 0.34572,0 0.51153,0.151694 0.1658,0.151695 0.1658,0.483306 v 1.287639 h -0.22578 l -0.06,-0.268111 h -0.0141 q -0.12347,0.155222 -0.26106,0.229305 -0.13405,0.07408 -0.37394,0.07408 -0.25753,0 -0.42686,-0.134056 -0.16933,-0.137583 -0.16933,-0.426861 0,-0.282222 0.22225,-0.433917 0.22225,-0.155222 0.68438,-0.169333 l 0.32103,-0.01058 v -0.112889 q 0,-0.236361 -0.1023,-0.328084 -0.10231,-0.09172 -0.28928,-0.09172 -0.14817,0 -0.28222,0.04586 -0.13406,0.04233 -0.25048,0.09878 l -0.0953,-0.232833 q 0.12348,-0.06703 0.29281,-0.112889 0.16933,-0.04939 0.35278,-0.04939 z m 0.37041,0.998361 -0.27869,0.01058 q -0.35278,0.01411 -0.49036,0.112889 -0.13406,0.09878 -0.13406,0.278695 0,0.15875 0.0952,0.232833 0.0988,0.07408 0.25048,0.07408 0.23988,0 0.39863,-0.130527 0.15875,-0.134056 0.15875,-0.409223 z" id="path4673" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 114.10196,83.646297 v 0.652639 q 0,0.119944 -0.007,0.225777 -0.004,0.102306 -0.0106,0.162278 h 0.0176 q 0.0811,-0.119944 0.22225,-0.201083 0.14111,-0.08114 0.36336,-0.08114 0.35278,0 0.56444,0.246944 0.2152,0.243417 0.2152,0.73025 0,0.486834 -0.2152,0.733778 -0.21519,0.246945 -0.56444,0.246945 -0.22225,0 -0.36336,-0.08114 -0.14111,-0.08114 -0.22225,-0.194028 h -0.0247 l -0.0635,0.239889 h -0.22225 v -2.681111 z m 0.53269,1.016 q -0.29986,0 -0.41627,0.172861 -0.11642,0.172861 -0.11642,0.536222 v 0.01411 q 0,0.34925 0.11289,0.536222 0.11641,0.183445 0.42686,0.183445 0.254,0 0.37747,-0.186972 0.127,-0.186973 0.127,-0.53975 0,-0.716139 -0.51153,-0.716139 z" id="path4675" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 116.27237,86.327408 h -0.31045 v -2.681111 h 0.31045 z" id="path4677" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+<path d="m 117.60168,84.401241 q 0.24342,0 0.41628,0.105834 0.17639,0.105833 0.26811,0.299861 0.0953,0.1905 0.0953,0.448027 v 0.186973 h -1.2947 q 0.007,0.321027 0.16228,0.490361 0.15875,0.165805 0.44097,0.165805 0.17992,0 0.3175,-0.03175 0.14111,-0.03528 0.28928,-0.09878 v 0.271638 q -0.14464,0.0635 -0.28575,0.09172 -0.14111,0.03175 -0.33514,0.03175 -0.26811,0 -0.47625,-0.109361 -0.20461,-0.109362 -0.32103,-0.324556 -0.11288,-0.218722 -0.11288,-0.532694 0,-0.310445 0.1023,-0.532695 0.10583,-0.22225 0.29281,-0.342194 0.1905,-0.119945 0.44097,-0.119945 z m -0.004,0.254 q -0.22225,0 -0.35278,0.144639 -0.127,0.141111 -0.15169,0.395111 h 0.96308 q -0.004,-0.239889 -0.11289,-0.388055 -0.10936,-0.151695 -0.34572,-0.151695 z" id="path4679" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;text-anchor:middle;stroke-width:0.26458332"/>
+</g>
+<path d="m 103.1875,87.979164 h 17.06542 V 98.562496 H 103.1875 Z" id="rect1251" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="ShadowRAT" id="text1803" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 106.874,91.291336 q 0,0.335139 -0.24342,0.522111 -0.24341,0.186972 -0.65616,0.186972 -0.21167,0 -0.39159,-0.03175 -0.17991,-0.03175 -0.29986,-0.08819 v -0.303389 q 0.127,0.05644 0.31398,0.102305 0.1905,0.04586 0.39158,0.04586 0.28222,0 0.42333,-0.109361 0.14464,-0.109361 0.14464,-0.296333 0,-0.123472 -0.0529,-0.208139 -0.0529,-0.08467 -0.18344,-0.155222 -0.127,-0.07408 -0.35631,-0.155222 -0.32102,-0.116417 -0.48683,-0.28575 -0.16228,-0.169334 -0.16228,-0.462139 0,-0.201084 0.10231,-0.342195 0.1023,-0.144639 0.28222,-0.22225 0.18345,-0.07761 0.41981,-0.07761 0.20814,0 0.381,0.03881 0.17286,0.0388 0.31397,0.102305 l -0.0988,0.271639 q -0.13053,-0.05644 -0.28575,-0.09525 -0.15169,-0.03881 -0.3175,-0.03881 -0.23636,0 -0.3563,0.102305 -0.11995,0.09878 -0.11995,0.264584 0,0.127 0.0529,0.211666 0.0529,0.08467 0.17286,0.151695 0.11994,0.06703 0.32455,0.144639 0.22225,0.08114 0.37395,0.176388 0.15522,0.09172 0.23283,0.22225 0.0811,0.130528 0.0811,0.328084 z" id="path4683" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 107.64951,89.28403 v 0.786695 q 0,0.141111 -0.0176,0.264583 h 0.0212 q 0.0917,-0.144639 0.24695,-0.218722 0.15875,-0.07408 0.34219,-0.07408 0.34573,0 0.51859,0.165806 0.17286,0.162278 0.17286,0.525639 v 1.231194 h -0.30692 v -1.210027 q 0,-0.455084 -0.42333,-0.455084 -0.3175,0 -0.43745,0.179917 -0.11641,0.176389 -0.11641,0.508 v 0.977194 h -0.31045 V 89.28403 Z" id="path4685" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 110.2325,90.042502 q 0.34572,0 0.51153,0.151695 0.1658,0.151694 0.1658,0.483305 v 1.287639 h -0.22577 l -0.06,-0.268111 h -0.0141 q -0.12347,0.155222 -0.26105,0.229306 -0.13406,0.07408 -0.37395,0.07408 -0.25752,0 -0.42686,-0.134055 -0.16933,-0.137584 -0.16933,-0.426862 0,-0.282222 0.22225,-0.433916 0.22225,-0.155222 0.68439,-0.169334 l 0.32103,-0.01058 V 90.71278 q 0,-0.236361 -0.10231,-0.328083 -0.10231,-0.09172 -0.28928,-0.09172 -0.14816,0 -0.28222,0.04586 -0.13406,0.04233 -0.25047,0.09878 l -0.0952,-0.232834 q 0.12347,-0.06703 0.2928,-0.112889 0.16934,-0.04939 0.35278,-0.04939 z m 0.37042,0.998362 -0.2787,0.01058 q -0.35277,0.01411 -0.49036,0.112889 -0.13405,0.09878 -0.13405,0.278694 0,0.15875 0.0953,0.232834 0.0988,0.07408 0.25047,0.07408 0.23989,0 0.39864,-0.130528 0.15875,-0.134055 0.15875,-0.409222 z" id="path4687" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 112.16412,92.000419 q -0.35277,0 -0.56444,-0.243417 -0.21167,-0.246944 -0.21167,-0.733777 0,-0.486834 0.21167,-0.733778 0.21519,-0.250472 0.56797,-0.250472 0.21872,0 0.35631,0.08114 0.14111,0.08114 0.2293,0.197555 h 0.0212 q -0.004,-0.04586 -0.0141,-0.134055 -0.007,-0.09172 -0.007,-0.144639 V 89.28403 h 0.31045 v 2.681111 h -0.25047 l -0.0459,-0.254 h -0.0141 q -0.0847,0.119945 -0.22577,0.204611 -0.14112,0.08467 -0.36337,0.08467 z m 0.0494,-0.257528 q 0.29986,0 0.41981,-0.162277 0.12347,-0.165806 0.12347,-0.497417 v -0.05644 q 0,-0.352777 -0.11642,-0.53975 -0.11641,-0.1905 -0.43038,-0.1905 -0.25048,0 -0.37748,0.201084 -0.12347,0.197555 -0.12347,0.532694 0,0.338667 0.12347,0.525639 0.127,0.186972 0.381,0.186972 z" id="path4689" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 115.3082,91.016169 q 0,0.469195 -0.23989,0.726722 -0.23636,0.257528 -0.64205,0.257528 -0.25047,0 -0.44803,-0.112889 -0.19403,-0.116416 -0.30692,-0.335139 -0.11289,-0.22225 -0.11289,-0.536222 0,-0.469194 0.23637,-0.723194 0.23636,-0.254 0.64205,-0.254 0.25753,0 0.45156,0.116416 0.19755,0.112889 0.30691,0.331611 0.11289,0.215195 0.11289,0.529167 z m -1.42875,0 q 0,0.335139 0.13053,0.532695 0.13406,0.194027 0.42333,0.194027 0.28575,0 0.41981,-0.194027 0.13405,-0.197556 0.13405,-0.532695 0,-0.335139 -0.13405,-0.525639 -0.13406,-0.1905 -0.42333,-0.1905 -0.28928,0 -0.41981,0.1905 -0.13053,0.1905 -0.13053,0.525639 z" id="path4691" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 117.27648,91.961614 -0.32455,-1.065389 q -0.0459,-0.144639 -0.0811,-0.282223 -0.0318,-0.141111 -0.0494,-0.218722 h -0.0141 q -0.0141,0.07761 -0.0459,0.218722 -0.0318,0.137584 -0.0811,0.28575 l -0.33867,1.061862 h -0.35278 l -0.51858,-1.890889 h 0.32103 l 0.26105,1.008944 q 0.0388,0.151695 0.0741,0.306917 0.0353,0.155222 0.0494,0.257528 h 0.0141 q 0.0141,-0.05997 0.0318,-0.148167 0.0212,-0.08819 0.0459,-0.183445 0.0247,-0.09878 0.0494,-0.176388 l 0.33513,-1.065389 h 0.33867 l 0.32456,1.065389 q 0.0388,0.119944 0.0741,0.261055 0.0388,0.141111 0.0529,0.243417 h 0.0141 q 0.0106,-0.08819 0.0459,-0.243417 0.0388,-0.155222 0.0811,-0.3175 l 0.26458,-1.008944 h 0.3175 l -0.52564,1.890889 z" id="path4693" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 109.60943,94.737972 q 0.4692,0 0.69145,0.179917 0.22578,0.176389 0.22578,0.536222 0,0.201083 -0.0741,0.335139 -0.0741,0.134055 -0.1905,0.215194 -0.11289,0.07761 -0.23989,0.123473 l 0.69145,1.128888 h -0.37042 l -0.6103,-1.040694 h -0.50095 v 1.040694 h -0.3175 v -2.518833 z m -0.0176,0.275167 h -0.35984 V 95.948 h 0.37747 q 0.30692,0 0.44803,-0.119945 0.14111,-0.123472 0.14111,-0.359833 0,-0.246944 -0.14816,-0.34925 -0.14817,-0.105833 -0.45861,-0.105833 z" id="path4695" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 112.68599,97.256805 -0.30339,-0.779638 h -0.99836 l -0.29986,0.779638 h -0.32103 l 0.98425,-2.529416 h 0.28575 l 0.98072,2.529416 z m -0.39864,-1.061861 -0.28222,-0.762 q -0.0106,-0.02822 -0.0353,-0.102305 -0.0247,-0.07408 -0.0494,-0.151695 -0.0212,-0.08114 -0.0353,-0.123472 -0.0247,0.109361 -0.0564,0.215195 -0.0318,0.102305 -0.0529,0.162277 l -0.28575,0.762 z" id="path4697" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+<path d="m 113.90787,97.256805 h -0.3175 v -2.240138 h -0.7867 v -0.278695 h 1.88736 v 0.278695 h -0.78316 z" id="path4699" style="font-size:3.52777767px;stroke-width:0.26458332"/>
+</g>
+<path d="M 34.395836,31.093748 H 56.885002 V 41.676664 H 34.395836 Z" id="rect1313" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="Return StackBuffer" id="text1273" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 36.051191,32.543457 q 0.469194,0 0.691444,0.179917 0.225778,0.176388 0.225778,0.536222 0,0.201083 -0.07408,0.335139 -0.07408,0.134055 -0.1905,0.215194 -0.112888,0.07761 -0.239888,0.123472 l 0.691444,1.128889 h -0.370417 l -0.610305,-1.040694 h -0.500945 v 1.040694 h -0.3175 v -2.518833 z m -0.01764,0.275167 h -0.359834 v 0.934861 h 0.377473 q 0.306916,0 0.448027,-0.119945 0.141111,-0.123472 0.141111,-0.359833 0,-0.246945 -0.148166,-0.34925 -0.148167,-0.105833 -0.458611,-0.105833 z" id="path4703" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 38.235216,33.136124 q 0.243416,0 0.416277,0.105833 0.176389,0.105833 0.268112,0.299861 0.09525,0.1905 0.09525,0.448028 v 0.186972 H 37.72016 q 0.0071,0.321028 0.162278,0.490361 0.15875,0.165806 0.440972,0.165806 0.179917,0 0.3175,-0.03175 0.141111,-0.03528 0.289278,-0.09878 v 0.271639 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335139,0.03175 -0.268111,0 -0.47625,-0.109361 -0.204611,-0.109361 -0.321028,-0.324556 -0.112889,-0.218722 -0.112889,-0.532694 0,-0.310445 0.102306,-0.532695 0.105833,-0.22225 0.292805,-0.342194 0.1905,-0.119944 0.440973,-0.119944 z m -0.0035,0.254 q -0.22225,0 -0.352778,0.144638 -0.127,0.141112 -0.151694,0.395112 h 0.963083 q -0.0035,-0.239889 -0.112889,-0.388056 -0.109361,-0.151694 -0.345722,-0.151694 z" id="path4705" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 40.127703,34.843568 q 0.07056,0 0.144639,-0.01058 0.07408,-0.01411 0.119944,-0.02822 v 0.236362 q -0.04939,0.02469 -0.141111,0.0388 -0.09172,0.01764 -0.176389,0.01764 -0.148166,0 -0.275166,-0.04939 -0.123472,-0.05292 -0.201083,-0.179917 -0.07761,-0.127 -0.07761,-0.356305 V 33.41129 h -0.268111 v -0.148166 l 0.271639,-0.123473 0.123472,-0.402166 h 0.183445 v 0.433916 h 0.546805 V 33.41129 H 39.83137 v 1.093611 q 0,0.172861 0.08114,0.257528 0.08467,0.08114 0.215194,0.08114 z" id="path4707" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 42.351361,33.171401 v 1.890889 h -0.254 L 42.0515,34.811818 h -0.01411 q -0.09172,0.148167 -0.254,0.218722 -0.162278,0.06703 -0.345723,0.06703 -0.342194,0 -0.515055,-0.162278 -0.172861,-0.165805 -0.172861,-0.525639 v -1.23825 h 0.313972 v 1.217084 q 0,0.451555 0.419805,0.451555 0.313973,0 0.433917,-0.176389 0.123472,-0.176389 0.123472,-0.508 v -0.98425 z" id="path4709" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 43.830161,33.136124 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.03881,0.28575 q -0.04586,-0.01058 -0.102305,-0.01764 -0.05292,-0.0071 -0.102306,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008944 h -0.310445 v -1.890889 h 0.254 l 0.03528,0.345723 h 0.01411 q 0.09172,-0.155223 0.236361,-0.268112 0.144639,-0.112888 0.342195,-0.112888 z" id="path4711" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 45.312213,33.136124 q 0.338667,0 0.511528,0.165805 0.172861,0.162278 0.172861,0.529167 v 1.231194 h -0.306917 v -1.210028 q 0,-0.455083 -0.423333,-0.455083 -0.313972,0 -0.433917,0.176389 -0.119944,0.176389 -0.119944,0.508 v 0.980722 h -0.310444 v -1.890889 h 0.250472 l 0.04586,0.257528 h 0.01764 q 0.09172,-0.148167 0.254,-0.218722 0.162278,-0.07408 0.342194,-0.07408 z" id="path4713" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 48.966825,34.388485 q 0,0.335139 -0.243416,0.522111 -0.243417,0.186972 -0.656167,0.186972 -0.211666,0 -0.391583,-0.03175 -0.179917,-0.03175 -0.299861,-0.08819 v -0.303389 q 0.127,0.05644 0.313972,0.102305 0.1905,0.04586 0.391583,0.04586 0.282223,0 0.423334,-0.109361 0.144638,-0.109361 0.144638,-0.296333 0,-0.123472 -0.05292,-0.208139 -0.05292,-0.08467 -0.183445,-0.155222 -0.127,-0.07408 -0.356305,-0.155222 -0.321028,-0.116417 -0.486833,-0.28575 -0.162278,-0.169334 -0.162278,-0.462139 0,-0.201084 0.102305,-0.342195 0.102306,-0.144639 0.282223,-0.22225 0.183444,-0.07761 0.419805,-0.07761 0.208139,0 0.381,0.03881 0.172861,0.03881 0.313972,0.102305 l -0.09878,0.271639 q -0.130527,-0.05644 -0.285749,-0.09525 -0.151695,-0.03881 -0.3175,-0.03881 -0.236362,0 -0.356306,0.102305 -0.119944,0.09878 -0.119944,0.264583 0,0.127 0.05292,0.211667 0.05292,0.08467 0.172861,0.151695 0.119945,0.06703 0.324556,0.144638 0.22225,0.08114 0.373944,0.176389 0.155222,0.09172 0.232834,0.22225 0.08114,0.130528 0.08114,0.328084 z" id="path4715" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 50.063358,34.843568 q 0.07056,0 0.144639,-0.01058 0.07408,-0.01411 0.119945,-0.02822 v 0.236362 q -0.04939,0.02469 -0.141112,0.0388 -0.09172,0.01764 -0.176388,0.01764 -0.148167,0 -0.275167,-0.04939 -0.123472,-0.05292 -0.201083,-0.179917 -0.07761,-0.127 -0.07761,-0.356305 V 33.41129 h -0.268112 v -0.148166 l 0.271639,-0.123473 0.123473,-0.402166 h 0.183444 v 0.433916 h 0.546805 v 0.239889 h -0.546805 v 1.093611 q 0,0.172861 0.08114,0.257528 0.08467,0.08114 0.215194,0.08114 z" id="path4717" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 51.42271,33.139651 q 0.345722,0 0.511528,0.151695 0.165805,0.151694 0.165805,0.483305 v 1.287639 h -0.225778 l -0.05997,-0.268111 h -0.01411 q -0.123472,0.155222 -0.261055,0.229306 -0.134056,0.07408 -0.373945,0.07408 -0.257528,0 -0.426861,-0.134056 -0.169333,-0.137583 -0.169333,-0.426861 0,-0.282222 0.22225,-0.433916 0.22225,-0.155223 0.684389,-0.169334 l 0.321027,-0.01058 v -0.112889 q 0,-0.236361 -0.102305,-0.328083 -0.102306,-0.09172 -0.289278,-0.09172 -0.148167,0 -0.282222,0.04586 -0.134056,0.04233 -0.250472,0.09878 l -0.09525,-0.232833 q 0.123472,-0.06703 0.292805,-0.112889 0.169333,-0.04939 0.352778,-0.04939 z m 0.370417,0.998361 -0.278695,0.01058 q -0.352778,0.01411 -0.490361,0.112889 -0.134056,0.09878 -0.134056,0.278694 0,0.15875 0.09525,0.232833 0.09878,0.07408 0.250473,0.07408 0.239889,0 0.398639,-0.130528 0.15875,-0.134056 0.15875,-0.409222 z" id="path4719" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 53.442528,35.097568 q -0.250472,0 -0.448028,-0.102306 -0.194028,-0.102305 -0.306917,-0.3175 -0.109361,-0.215194 -0.109361,-0.550333 0,-0.34925 0.116417,-0.567972 0.116417,-0.218722 0.313972,-0.321028 0.201084,-0.102305 0.455084,-0.102305 0.144638,0 0.278694,0.03175 0.134056,0.02822 0.218722,0.07055 l -0.09525,0.257528 q -0.08467,-0.03175 -0.197555,-0.05997 -0.112889,-0.02822 -0.211667,-0.02822 -0.557389,0 -0.557389,0.716139 0,0.342195 0.134056,0.525639 0.137583,0.179917 0.405694,0.179917 0.155222,0 0.271639,-0.03175 0.119944,-0.03175 0.218722,-0.07761 v 0.275166 q -0.09525,0.04939 -0.211666,0.07408 -0.112889,0.02822 -0.275167,0.02822 z" id="path4721" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 54.685959,32.381179 v 1.400528 q 0,0.05644 -0.0071,0.148167 -0.0035,0.09172 -0.0071,0.15875 h 0.01411 q 0.02117,-0.02822 0.0635,-0.08114 0.04233,-0.05292 0.08467,-0.105834 0.04586,-0.05644 0.07761,-0.09172 l 0.60325,-0.638528 h 0.363362 l -0.765528,0.807861 0.818444,1.083028 H 55.55732 l -0.656167,-0.881944 -0.215194,0.186972 v 0.694972 h -0.306917 v -2.681111 z" id="path4723" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 40.65822,37.835125 h 0.719667 q 0.472722,0 0.712611,0.141111 0.243417,0.137583 0.243417,0.483306 0,0.22225 -0.123473,0.370416 -0.123472,0.144639 -0.356305,0.186972 v 0.01764 q 0.15875,0.0247 0.28575,0.09172 0.130528,0.06703 0.204611,0.190499 0.07408,0.123473 0.07408,0.321028 0,0.342195 -0.236361,0.529167 -0.232833,0.186972 -0.638528,0.186972 H 40.65822 Z m 0.3175,1.072444 h 0.465667 q 0.324555,0 0.4445,-0.102305 0.119944,-0.105834 0.119944,-0.310445 0,-0.208139 -0.148166,-0.296333 -0.144639,-0.09172 -0.465667,-0.09172 H 40.97572 Z m 0,0.264584 v 0.913694 h 0.508 q 0.335139,0 0.465667,-0.130528 0.130528,-0.130528 0.130528,-0.342194 0,-0.197556 -0.137584,-0.3175 -0.134055,-0.123472 -0.483305,-0.123472 z" id="path4725" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 44.490765,38.463069 v 1.890889 h -0.254 l -0.04586,-0.250472 h -0.01411 q -0.09172,0.148167 -0.254,0.218722 -0.162278,0.06703 -0.345723,0.06703 -0.342194,0 -0.515055,-0.162278 -0.172861,-0.165805 -0.172861,-0.525639 v -1.23825 h 0.313972 v 1.217084 q 0,0.451555 0.419806,0.451555 0.313972,0 0.433916,-0.176389 0.123472,-0.176389 0.123472,-0.508 v -0.98425 z" id="path4727" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 45.958982,38.702958 h -0.47625 v 1.651 h -0.310444 v -1.651 h -0.331612 v -0.144639 l 0.331612,-0.105833 v -0.109361 q 0,-0.366889 0.162277,-0.525639 0.162278,-0.162278 0.451556,-0.162278 0.112889,0 0.204611,0.02117 0.09525,0.01764 0.162278,0.04233 l -0.08114,0.243417 q -0.05645,-0.01764 -0.130528,-0.03528 -0.07408,-0.01764 -0.151694,-0.01764 -0.155223,0 -0.232834,0.105834 -0.07408,0.102305 -0.07408,0.324555 v 0.123472 h 0.47625 z m 1.213556,0 h -0.47625 v 1.651 h -0.310445 v -1.651 h -0.331611 v -0.144639 l 0.331611,-0.105833 v -0.109361 q 0,-0.366889 0.162278,-0.525639 0.162278,-0.162278 0.451555,-0.162278 0.112889,0 0.204612,0.02117 0.09525,0.01764 0.162277,0.04233 l -0.08114,0.243417 q -0.05644,-0.01764 -0.130527,-0.03528 -0.07408,-0.01764 -0.151695,-0.01764 -0.155222,0 -0.232833,0.105834 -0.07408,0.102305 -0.07408,0.324555 v 0.123472 h 0.47625 z" id="path4729" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 48.243218,38.427792 q 0.243416,0 0.416278,0.105833 0.176388,0.105833 0.268111,0.299861 0.09525,0.1905 0.09525,0.448028 v 0.186972 h -1.294695 q 0.0071,0.321028 0.162278,0.490361 0.15875,0.165806 0.440972,0.165806 0.179917,0 0.3175,-0.03175 0.141111,-0.03528 0.289278,-0.09878 v 0.271639 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335139,0.03175 -0.268111,0 -0.47625,-0.109361 -0.204611,-0.109361 -0.321028,-0.324556 -0.112889,-0.218722 -0.112889,-0.532694 0,-0.310445 0.102306,-0.532695 0.105833,-0.22225 0.292806,-0.342194 0.1905,-0.119944 0.440972,-0.119944 z m -0.0035,0.254 q -0.22225,0 -0.352778,0.144638 -0.127,0.141112 -0.151694,0.395111 h 0.963083 q -0.0035,-0.239888 -0.112889,-0.388055 -0.109361,-0.151694 -0.345722,-0.151694 z" id="path4731" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 50.386177,38.427792 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.03881,0.28575 q -0.04586,-0.01058 -0.102305,-0.01764 -0.05292,-0.0071 -0.102306,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008944 h -0.310444 v -1.890889 h 0.254 l 0.03528,0.345723 h 0.01411 q 0.09172,-0.155223 0.236362,-0.268112 0.144638,-0.112888 0.342194,-0.112888 z" id="path4733" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+</g>
+<path d="M 34.396252,43 H 56.885418 V 53.582916 H 34.396252 Z" id="rect1293" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-miterlimit:4;stroke-dasharray:none"/>
+<g aria-label="BranchTarget Buffer" id="text1299" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 40.141008,44.043186 h 0.719667 q 0.472722,0 0.712611,0.141111 0.243417,0.137584 0.243417,0.483306 0,0.22225 -0.123473,0.370416 -0.123472,0.144639 -0.356305,0.186973 v 0.01764 q 0.15875,0.0247 0.28575,0.09172 0.130528,0.06703 0.204611,0.1905 0.07408,0.123472 0.07408,0.321027 0,0.342195 -0.236361,0.529167 -0.232833,0.186972 -0.638527,0.186972 h -0.885473 z m 0.3175,1.072445 h 0.465667 q 0.324556,0 0.4445,-0.102306 0.119944,-0.105833 0.119944,-0.310444 0,-0.208139 -0.148166,-0.296334 -0.144639,-0.09172 -0.465667,-0.09172 h -0.416278 z m 0,0.264583 v 0.913694 h 0.508 q 0.335139,0 0.465667,-0.130528 0.130528,-0.130527 0.130528,-0.342194 0,-0.197556 -0.137584,-0.3175 -0.134055,-0.123472 -0.483305,-0.123472 z" id="path4737" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 43.275053,44.635853 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.03881,0.28575 q -0.04586,-0.01058 -0.102305,-0.01764 -0.05292,-0.0071 -0.102306,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008944 h -0.310444 v -1.890888 h 0.254 l 0.03528,0.345722 h 0.01411 q 0.09172,-0.155222 0.236362,-0.268111 0.144638,-0.112889 0.342194,-0.112889 z" id="path4739" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 44.494176,44.639381 q 0.345722,0 0.511527,0.151694 0.165806,0.151694 0.165806,0.483305 v 1.287639 h -0.225778 l -0.05997,-0.268111 h -0.01411 q -0.123472,0.155222 -0.261056,0.229306 -0.134055,0.07408 -0.373944,0.07408 -0.257528,0 -0.426861,-0.134055 -0.169334,-0.137584 -0.169334,-0.426862 0,-0.282222 0.22225,-0.433916 0.22225,-0.155222 0.684389,-0.169334 l 0.321028,-0.01058 v -0.112889 q 0,-0.236361 -0.102305,-0.328083 -0.102306,-0.09172 -0.289278,-0.09172 -0.148167,0 -0.282222,0.04586 -0.134056,0.04233 -0.250473,0.09878 l -0.09525,-0.232834 q 0.123473,-0.06703 0.292806,-0.112889 0.169333,-0.04939 0.352778,-0.04939 z m 0.370416,0.998361 -0.278694,0.01058 q -0.352778,0.01411 -0.490361,0.112889 -0.134056,0.09878 -0.134056,0.278694 0,0.15875 0.09525,0.232834 0.09878,0.07408 0.250472,0.07408 0.239889,0 0.398639,-0.130528 0.15875,-0.134055 0.15875,-0.409222 z" id="path4741" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 46.665688,44.635853 q 0.338667,0 0.511528,0.165805 0.172861,0.162278 0.172861,0.529167 v 1.231194 H 47.04316 v -1.210027 q 0,-0.455084 -0.423333,-0.455084 -0.313972,0 -0.433917,0.176389 -0.119944,0.176389 -0.119944,0.508 v 0.980722 h -0.310444 v -1.890888 h 0.250472 l 0.04586,0.257527 h 0.01764 q 0.09172,-0.148166 0.254,-0.218722 0.162277,-0.07408 0.342194,-0.07408 z" id="path4743" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 48.691294,46.597297 q -0.250472,0 -0.448028,-0.102305 -0.194027,-0.102306 -0.306916,-0.3175 -0.109361,-0.215195 -0.109361,-0.550334 0,-0.34925 0.116416,-0.567972 0.116417,-0.218722 0.313973,-0.321028 0.201083,-0.102305 0.455083,-0.102305 0.144639,0 0.278694,0.03175 0.134056,0.02822 0.218722,0.07055 l -0.09525,0.257528 q -0.08467,-0.03175 -0.197555,-0.05997 -0.112889,-0.02822 -0.211667,-0.02822 -0.557389,0 -0.557389,0.716138 0,0.342195 0.134056,0.525639 0.137583,0.179917 0.405694,0.179917 0.155223,0 0.271639,-0.03175 0.119945,-0.03175 0.218722,-0.07761 v 0.275167 q -0.09525,0.04939 -0.211666,0.07408 -0.112889,0.02822 -0.275167,0.02822 z" id="path4745" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 49.938253,43.880908 v 0.786695 q 0,0.141111 -0.01764,0.264583 h 0.02117 q 0.09172,-0.144639 0.246944,-0.218722 0.15875,-0.07408 0.342195,-0.07408 0.345722,0 0.518583,0.165805 0.172861,0.162278 0.172861,0.525639 v 1.231194 h -0.306916 v -1.210027 q 0,-0.455084 -0.423334,-0.455084 -0.3175,0 -0.437444,0.179917 -0.116417,0.176389 -0.116417,0.508 v 0.977194 h -0.310444 v -2.681111 z" id="path4747" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 35.905002,51.853687 h -0.3175 v -2.240139 h -0.786695 v -0.278694 h 1.887361 v 0.278694 h -0.783166 z" id="path4749" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 37.462736,49.931048 q 0.345722,0 0.511528,0.151695 0.165805,0.151694 0.165805,0.483305 v 1.287639 h -0.225777 l -0.05997,-0.268111 h -0.01411 q -0.123472,0.155222 -0.261055,0.229306 -0.134056,0.07408 -0.373945,0.07408 -0.257527,0 -0.426861,-0.134055 -0.169333,-0.137584 -0.169333,-0.426862 0,-0.282222 0.22225,-0.433916 0.22225,-0.155222 0.684389,-0.169334 l 0.321028,-0.01058 v -0.112889 q 0,-0.236361 -0.102306,-0.328083 -0.102306,-0.09172 -0.289278,-0.09172 -0.148166,0 -0.282222,0.04586 -0.134056,0.04233 -0.250472,0.09878 l -0.09525,-0.232834 q 0.123472,-0.06703 0.292805,-0.112889 0.169334,-0.04939 0.352778,-0.04939 z m 0.370417,0.998362 -0.278695,0.01058 q -0.352777,0.01411 -0.490361,0.112889 -0.134055,0.09878 -0.134055,0.278694 0,0.15875 0.09525,0.232834 0.09878,0.07408 0.250472,0.07408 0.239889,0 0.398639,-0.130528 0.15875,-0.134055 0.15875,-0.409222 z" id="path4751" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 39.606026,49.927521 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.03881,0.28575 q -0.04586,-0.01058 -0.102306,-0.01764 -0.05292,-0.0071 -0.102305,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008944 h -0.310444 v -1.890889 h 0.254 l 0.03528,0.345723 h 0.01411 q 0.09172,-0.155223 0.236361,-0.268111 0.144639,-0.112889 0.342194,-0.112889 z" id="path4753" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 40.813739,49.927521 q 0.186972,0 0.335139,0.07055 0.151694,0.07056 0.257528,0.215195 h 0.01764 l 0.04233,-0.250473 h 0.246944 v 1.922639 q 0,0.405695 -0.208139,0.610306 -0.204611,0.204611 -0.638527,0.204611 -0.416278,0 -0.680861,-0.119945 v -0.28575 q 0.278694,0.148167 0.6985,0.148167 0.243416,0 0.381,-0.144639 0.141111,-0.141111 0.141111,-0.388055 v -0.07408 q 0,-0.04233 0.0035,-0.119944 0.0035,-0.08114 0.0071,-0.112889 h -0.01411 q -0.1905,0.28575 -0.585611,0.28575 -0.366889,0 -0.575028,-0.257528 -0.204611,-0.257527 -0.204611,-0.719666 0,-0.451556 0.204611,-0.716139 0.208139,-0.268111 0.5715,-0.268111 z m 0.04233,0.261055 q -0.236361,0 -0.366889,0.1905 -0.130527,0.186972 -0.130527,0.536222 0,0.34925 0.127,0.536223 0.130527,0.183444 0.377472,0.183444 0.28575,0 0.416278,-0.151694 0.130527,-0.155223 0.130527,-0.497417 v -0.07408 q 0,-0.388056 -0.134055,-0.553861 -0.134056,-0.169334 -0.419806,-0.169334 z" id="path4755" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 43.044121,49.927521 q 0.243417,0 0.416278,0.105833 0.176389,0.105833 0.268111,0.299861 0.09525,0.1905 0.09525,0.448028 v 0.186972 h -1.294694 q 0.0071,0.321028 0.162278,0.490361 0.15875,0.165806 0.440972,0.165806 0.179917,0 0.3175,-0.03175 0.141111,-0.03528 0.289278,-0.09878 v 0.271639 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335139,0.03175 -0.268111,0 -0.47625,-0.109361 -0.204611,-0.109361 -0.321028,-0.324556 -0.112889,-0.218722 -0.112889,-0.532694 0,-0.310444 0.102306,-0.532694 0.105833,-0.22225 0.292805,-0.342195 0.1905,-0.119944 0.440972,-0.119944 z m -0.0035,0.254 q -0.22225,0 -0.352778,0.144639 -0.127,0.141111 -0.151695,0.395111 h 0.963084 q -0.0035,-0.239889 -0.112889,-0.388056 -0.109361,-0.151694 -0.345722,-0.151694 z" id="path4757" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 44.936609,51.634965 q 0.07056,0 0.144639,-0.01058 0.07408,-0.01411 0.119944,-0.02822 v 0.236361 q -0.04939,0.02469 -0.141111,0.03881 -0.09172,0.01764 -0.176389,0.01764 -0.148166,0 -0.275166,-0.04939 -0.123473,-0.05292 -0.201084,-0.179916 -0.07761,-0.127 -0.07761,-0.356306 V 50.202687 H 44.06172 v -0.148166 l 0.271639,-0.123473 0.123472,-0.402166 h 0.183445 v 0.433916 h 0.546805 v 0.239889 h -0.546805 v 1.093611 q 0,0.172862 0.08114,0.257528 0.08467,0.08114 0.215195,0.08114 z" id="path4759" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 46.53855,49.334854 h 0.719667 q 0.472722,0 0.712611,0.141111 0.243417,0.137583 0.243417,0.483306 0,0.22225 -0.123473,0.370416 -0.123472,0.144639 -0.356305,0.186973 v 0.01764 q 0.15875,0.0247 0.28575,0.09172 0.130528,0.06703 0.204611,0.1905 0.07408,0.123472 0.07408,0.321027 0,0.342195 -0.236361,0.529167 -0.232833,0.186972 -0.638528,0.186972 H 46.53855 Z m 0.3175,1.072444 h 0.465667 q 0.324555,0 0.4445,-0.102305 0.119944,-0.105833 0.119944,-0.310445 0,-0.208138 -0.148166,-0.296333 -0.144639,-0.09172 -0.465667,-0.09172 H 46.85605 Z m 0,0.264584 v 0.913694 h 0.508 q 0.335139,0 0.465667,-0.130528 0.130528,-0.130527 0.130528,-0.342194 0,-0.197556 -0.137584,-0.3175 -0.134055,-0.123472 -0.483305,-0.123472 z" id="path4761" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 50.371095,49.962798 v 1.890889 h -0.254 l -0.04586,-0.250472 h -0.01411 q -0.09172,0.148167 -0.254,0.218722 -0.162278,0.06703 -0.345723,0.06703 -0.342194,0 -0.515055,-0.162278 -0.172861,-0.165805 -0.172861,-0.525639 v -1.23825 h 0.313972 v 1.217084 q 0,0.451555 0.419806,0.451555 0.313972,0 0.433916,-0.176389 0.123472,-0.176388 0.123472,-0.508 v -0.98425 z" id="path4763" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 51.839312,50.202687 h -0.47625 v 1.651 h -0.310444 v -1.651 h -0.331612 v -0.144639 l 0.331612,-0.105833 v -0.109361 q 0,-0.366889 0.162277,-0.525639 0.162278,-0.162278 0.451556,-0.162278 0.112889,0 0.204611,0.02117 0.09525,0.01764 0.162278,0.04233 l -0.08114,0.243417 q -0.05645,-0.01764 -0.130528,-0.03528 -0.07408,-0.01764 -0.151694,-0.01764 -0.155223,0 -0.232834,0.105834 -0.07408,0.102305 -0.07408,0.324555 v 0.123472 h 0.47625 z m 1.213555,0 h -0.47625 v 1.651 h -0.310444 v -1.651 h -0.331611 v -0.144639 l 0.331611,-0.105833 v -0.109361 q 0,-0.366889 0.162278,-0.525639 0.162278,-0.162278 0.451555,-0.162278 0.112889,0 0.204611,0.02117 0.09525,0.01764 0.162278,0.04233 l -0.08114,0.243417 q -0.05644,-0.01764 -0.130527,-0.03528 -0.07408,-0.01764 -0.151695,-0.01764 -0.155222,0 -0.232833,0.105834 -0.07408,0.102305 -0.07408,0.324555 v 0.123472 h 0.47625 z" id="path4765" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 54.123548,49.927521 q 0.243417,0 0.416278,0.105833 0.176389,0.105833 0.268111,0.299861 0.09525,0.1905 0.09525,0.448028 v 0.186972 h -1.294694 q 0.0071,0.321028 0.162277,0.490361 0.15875,0.165806 0.440973,0.165806 0.179916,0 0.3175,-0.03175 0.141111,-0.03528 0.289277,-0.09878 v 0.271639 q -0.144639,0.0635 -0.28575,0.09172 -0.141111,0.03175 -0.335138,0.03175 -0.268112,0 -0.47625,-0.109361 -0.204612,-0.109361 -0.321028,-0.324556 -0.112889,-0.218722 -0.112889,-0.532694 0,-0.310444 0.102305,-0.532694 0.105834,-0.22225 0.292806,-0.342195 0.1905,-0.119944 0.440972,-0.119944 z m -0.0035,0.254 q -0.22225,0 -0.352777,0.144639 -0.127,0.141111 -0.151695,0.395111 h 0.963083 q -0.0035,-0.239889 -0.112888,-0.388056 -0.109361,-0.151694 -0.345723,-0.151694 z" id="path4767" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+<path d="m 56.266507,49.927521 q 0.05292,0 0.112889,0.0071 0.0635,0.0035 0.109361,0.01411 l -0.03881,0.28575 q -0.04586,-0.01058 -0.102305,-0.01764 -0.05292,-0.0071 -0.102306,-0.0071 -0.144639,0 -0.271639,0.08114 -0.127,0.07761 -0.204611,0.22225 -0.07408,0.141111 -0.07408,0.331611 v 1.008944 h -0.310444 v -1.890889 h 0.254 l 0.03528,0.345723 h 0.01411 q 0.09172,-0.155223 0.236362,-0.268111 0.144638,-0.112889 0.342194,-0.112889 z" id="path4769" style="font-size:3.52777767px;line-height:1;stroke-width:0.26458332"/>
+</g>
+<path d="m -20.8375,-41.666668 a 3.1072919,3.107291 0 0 1 -3.107292,3.107291 3.1072919,3.107291 0 0 1 -3.107292,-3.107291 3.1072919,3.107291 0 0 1 3.107292,-3.107291 3.1072919,3.107291 0 0 1 3.107292,3.107291 z" id="path1315" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"/>
+<g aria-label="1" id="text1325" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888903px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m -23.54782,-39.903812 h -0.424744 v -2.464506 q 0,-0.212372 0.0049,-0.340783 0.0049,-0.128411 0.01482,-0.2667 -0.07902,0.07902 -0.143227,0.13335 -0.06421,0.05433 -0.162984,0.138289 l -0.375355,0.306211 -0.227189,-0.291395 0.953205,-0.740833 h 0.360539 z" id="path4773" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888903px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+</g>
+<path d="m 80.233337,-41.666668 a 3.1072919,3.107291 0 0 1 -3.107292,3.107291 3.1072919,3.107291 0 0 1 -3.107292,-3.107291 3.1072919,3.107291 0 0 1 3.107292,-3.107291 3.1072919,3.107291 0 0 1 3.107292,3.107291 z" id="ellipse1333" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"/>
+<g aria-label="3" id="text1337" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888903px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 78.204578,-42.604179 q 0,0.3556 -0.197555,0.567972 -0.197556,0.207433 -0.5334,0.276578 v 0.01975 q 0.424744,0.04939 0.632178,0.2667 0.207433,0.217311 0.207433,0.567973 0,0.306211 -0.143228,0.548216 -0.143228,0.237067 -0.4445,0.370417 -0.296333,0.13335 -0.765528,0.13335 -0.276578,0 -0.513644,-0.04445 -0.237067,-0.03951 -0.454378,-0.148167 v -0.404989 q 0.22225,0.108656 0.479072,0.172861 0.256822,0.05927 0.493889,0.05927 0.474133,0 0.681567,-0.182739 0.212372,-0.187678 0.212372,-0.513644 0,-0.330906 -0.261761,-0.474134 -0.256822,-0.148166 -0.726017,-0.148166 h -0.340783 v -0.370417 h 0.345722 q 0.434622,0 0.656872,-0.182739 0.227189,-0.182739 0.227189,-0.484011 0,-0.256822 -0.172861,-0.395111 -0.172861,-0.143228 -0.469194,-0.143228 -0.286456,0 -0.48895,0.08396 -0.202495,0.08396 -0.40005,0.212373 l -0.217311,-0.296334 q 0.187677,-0.148167 0.464255,-0.256822 0.281517,-0.108656 0.637117,-0.108656 0.553155,0 0.819855,0.246945 0.271639,0.246944 0.271639,0.627239 z" id="path4777" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888903px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+</g>
+<path d="m 198.18136,-41.666668 a 3.1072919,3.107291 0 0 1 -3.10729,3.107291 3.1072919,3.107291 0 0 1 -3.1073,-3.107291 3.1072919,3.107291 0 0 1 3.1073,-3.107291 3.1072919,3.107291 0 0 1 3.10729,3.107291 z" id="ellipse1339" style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"/>
+<g aria-label="2" id="text1343" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888903px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332">
+<path d="m 196.28595,-39.87849 h -2.33116 v -0.360539 l 0.92358,-0.93345 q 0.2667,-0.2667 0.44943,-0.474134 0.18274,-0.207433 0.27658,-0.404989 0.0938,-0.202494 0.0938,-0.439561 0,-0.291394 -0.17286,-0.439561 -0.17286,-0.153105 -0.44944,-0.153105 -0.25682,0 -0.45438,0.0889 -0.19261,0.0889 -0.39511,0.246944 l -0.23213,-0.291394 q 0.20744,-0.172862 0.47414,-0.291395 0.27164,-0.123472 0.60748,-0.123472 0.49389,0 0.78035,0.251883 0.28645,0.246945 0.28645,0.686506 0,0.276578 -0.11359,0.518583 -0.1136,0.242006 -0.31609,0.479072 -0.2025,0.232128 -0.47414,0.498828 l -0.73589,0.726017 v 0.01976 h 1.78294 z" id="path4781" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888903px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.26458332"/>
+</g>
+</g>
+
+
+
+
+</svg>
diff --git a/thesis.bib b/thesis.bib
index 4dbdb5e..35a3875 100644
--- a/thesis.bib
+++ b/thesis.bib
@@ -21,6 +21,69 @@
bibsource = {dblp computer science bibliography, https://dblp.org}
}
+@ARTICLE{tomasulo,
+author={R. M. {Tomasulo}},
+journal={IBM Journal of Research and Development},
+title={An Efficient Algorithm for Exploiting Multiple Arithmetic Units},
+year={1967},
+volume={11},
+number={1},
+pages={25-33},
+keywords={},
+doi={10.1147/rd.111.0025},
+ISSN={0018-8646},
+month={Jan},
+type={J},
+}
+
+@article{btb,
+ title={Branch prediction strategies and branch target buffer design},
+ author={Lee, Johnny KF and Smith, Alan Jay},
+ journal={Computer},
+ number={1},
+ pages={6--22},
+ year={1984},
+ publisher={IEEE},
+ type={J},
+}
+
+@inproceedings{rsb,
+ title={Branch history table prediction of moving target branches due to subroutine returns},
+ author={Kaeli, David R and Emma, Philip G},
+ booktitle={ACM SIGARCH Computer Architecture News},
+ volume={19},
+ number={3},
+ pages={34--42},
+ year={1991},
+ organization={Citeseer},
+ type={C},
+}
+
+@inproceedings{smt,
+ title={Simultaneous multithreading: Maximizing on-chip parallelism},
+ author={Tullsen, Dean M and Eggers, Susan J and Levy, Henry M},
+ booktitle={ACM SIGARCH computer architecture news},
+ volume={23},
+ number={2},
+ pages={392--403},
+ year={1995},
+ organization={ACM},
+ type={C},
+}
+
+
+@article{preciseint,
+ title={Implementing precise interrupts in pipelined processors},
+ author={Smith, James E. and Pleszkun, Andrew R.},
+ journal={IEEE Transactions on computers},
+ volume={37},
+ number={5},
+ pages={562--573},
+ year={1988},
+ publisher={IEEE},
+ type={J},
+}
+
@inproceedings{meltdown,
author = {Moritz Lipp and Michael Schwarz and Daniel Gruss and Thomas Prescher and Werner Haas and Anders Fogh and Jann Horn and Stefan Mangard and Paul Kocher and Daniel Genkin and Yuval Yarom and Mike Hamburg},
title = {Meltdown: Reading Kernel Memory from User Space},
@@ -347,7 +410,7 @@
timestamp = {Mon, 13 Aug 2018 16:48:54 +0200},
biburl = {https://dblp.org/rec/bib/journals/corr/abs-1806-05179},
bibsource = {dblp computer science bibliography, https://dblp.org},
- type={J},
+ type={R},
}
@INPROCEEDINGS{invisispec,
@@ -751,4 +814,29 @@ This thesis highlights two aspects of the BOOM design: its industry-competitive
type={J}
}
+@article{zombie,
+ title = {{ZombieLoad}: Cross-Privilege-Boundary Data Sampling},
+ author = {Schwarz, Michael and Lipp, Moritz and Moghimi, Daniel and Van Bulck, Jo and Stecklina, Julian and Prescher, Thomas and Gruss, Daniel},
+ journal = {arXiv:1905.05726},
+ year = {2019},
+ type={R},
+}
+
+@inproceedings{ridl,
+ title = {{RIDL}: Rogue In-flight Data Load},
+ booktitle = {S\&{P}},
+ author = {van Schaik, Stephan and Milburn, Alyssa and Österlund, Sebastian and Frigo, Pietro and Maisuradze, Giorgi and Razavi, Kaveh and Bos, Herbert and Giuffrida, Cristiano},
+ month = may,
+ year = {2019},
+ type={C},
+}
+
+@article{fallout,
+ title={{Fallout}: Reading Kernel Writes From User Space},
+ author={Minkin, Marina and Moghimi, Daniel and Lipp, Moritz and Schwarz, Michael and Van Bulck, Jo, and Genkin, Daniel and Gruss, Daniel and Sunar, Berk and Piessens, Frank and Yarom, Yuval},
+ year={2019},
+ type={R},
+}
+
+
% vim:ts=4:sw=4