aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-29 22:17:13 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-29 22:17:13 +0100
commitd51665904faa31c39106e4b2afa7541615072e72 (patch)
tree01c355472bcca04f59980d961dca0bc46c9b429b
parent010888de490ab1fafc0200c37cd09d57a0ff1e9f (diff)
downloadfbos-d51665904faa31c39106e4b2afa7541615072e72.tar.gz
fbos-d51665904faa31c39106e4b2afa7541615072e72.zip
Allow the kernel to run as a Linux image
In order to run on real hardware, it's actually easier to re-use workflows from existing bootloaders than loading things in memory manually. In order to achieve this two things had to be settled: 1. The image has to have a Linux header as defined in the RISC-V port. This header will be taken into consideration by bootloaders in order to know where to jump, the image offset, the endianness of the image, etc. 2. The image cannot just be an ELF executable. Rather, we must translate it into binary form via `objcopy`. With all of this at hand, I was able to make the kernel run on a Starfive VisionFive 2 board, and I have recorded an example so it's available as documentation. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
-rw-r--r--Makefile24
-rw-r--r--README.md44
-rw-r--r--doc/vf2.svg1
-rw-r--r--include/fbos/image.h23
-rw-r--r--include/fbos/mm.h3
-rw-r--r--kernel/fbos.ld.S10
-rw-r--r--kernel/head.S52
7 files changed, 138 insertions, 19 deletions
diff --git a/Makefile b/Makefile
index 70000a1..5c95c02 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,8 @@ endif
CC = $(CROSS_COMPILE)gcc$(CC_SUFFIX)
LD = $(CROSS_COMPILE)ld
HOSTCC = gcc$(CC_SUFFIX)
-QEMU ?= qemu-system-riscv64
+QEMU ?= qemu-system-riscv64
+OBJCPY = $(CROSS_COMPILE)objcopy
ISA ?= rv64imafdc_zicntr_zicsr_zifencei_zihpm_zca_zcd_zba_zbb
ASFLAGS = -march=$(ISA) -mabi=lp64d -mcmodel=medany -fno-PIE
@@ -59,7 +60,8 @@ endif
SRC = $(filter-out kernel/fbos.ld.S, $(wildcard kernel/*.S kernel/*.c lib/*.c lib/*.S))
OBJ = $(patsubst %.c,%.o,$(patsubst %.S,%.o,$(SRC)))
LINKER = kernel/fbos.ld
-KRNL = fbos
+IMAGE = fbos
+KRNL = $(IMAGE).elf
USR = usr/bin/init usr/bin/fizz usr/bin/buzz usr/bin/fizzbuzz
INIT = usr/initramfs.cpio
TESTS = test/test_dt test/test_initrd
@@ -71,7 +73,13 @@ LDFLAGS += -T $(LINKER)
# Kernel
.PHONY: all
-all: clean $(KRNL) usr test
+all: clean $(IMAGE) usr test
+
+.PHONY: $(IMAGE)
+$(IMAGE): $(KRNL)
+ $(E) " OBJCOPY " $@
+ $(Q) $(OBJCPY) $(KRNL) -O binary $(IMAGE)
+ $(Q) rm $(KRNL)
.PHONY: $(KRNL)
$(KRNL): $(OBJ) $(LINKER).S
@@ -134,7 +142,7 @@ test/%: test/%.o
.PHONY: archive
archive: all
$(Q) $(eval DIR := $(shell mktemp -d))
- $(Q) mkdir -p $(DIR)/fbos && cp $(KRNL) $(INIT) $(DIR)/fbos/
+ $(Q) mkdir -p $(DIR)/fbos && cp $(IMAGE) $(INIT) $(DIR)/fbos/
$(Q) cd $(DIR) && tar czf $(ARCHIVE) fbos/
$(Q) cp $(DIR)/$(ARCHIVE) .
$(E) " TAR $(ARCHIVE)"
@@ -143,11 +151,11 @@ archive: all
# Hacking
.PHONY: qemu
-qemu: clean $(KRNL) usr
+qemu: clean $(IMAGE) usr
ifeq ($(strip $(QEMU_BIOS)),)
- $(Q) $(QEMU) $(QEMU_FLAGS) -machine virt -kernel $(KRNL) -initrd $(INIT)
+ $(Q) $(QEMU) $(QEMU_FLAGS) -machine virt -kernel $(IMAGE) -initrd $(INIT)
else
- $(Q) $(QEMU) $(QEMU_FLAGS) -machine virt -bios $(QEMU_BIOS) -kernel $(KRNL) -initrd $(INIT)
+ $(Q) $(QEMU) $(QEMU_FLAGS) -machine virt -bios $(QEMU_BIOS) -kernel $(IMAGE) -initrd $(INIT)
endif
.PHONY: gdb
@@ -156,7 +164,7 @@ gdb:
.PHONY: clean
clean:
- $(Q) rm -rf $(OBJ) $(KRNL) $(LINKER) $(USR) usr/src/*.o $(INIT) test/*.o test/lib/*.o $(TESTS) $(ARCHIVE)
+ $(Q) rm -rf $(OBJ) $(KRNL) $(IMAGE) $(LINKER) $(USR) usr/src/*.o $(INIT) test/*.o test/lib/*.o $(TESTS) $(ARCHIVE)
.PHONY: lint
lint:
diff --git a/README.md b/README.md
index ea7faec..5bec21e 100644
--- a/README.md
+++ b/README.md
@@ -8,11 +8,9 @@ are unaware of each other and it's up to the kernel to schedule them by using
the timer interrupts as given by openSBI (`fizz` on % 3 seconds, `buzz` on % 5
seconds, and `fizzbuzz` on % 15 seconds).
-This kernel provides just one system call, `write_and_block`, which allows any
-program to pass the string to be written into the serial port and wait for the
-kernel to re-schedule it.
-
-![Demo on QEMU](./doc/qemu.svg)
+This kernel provides just one system call, `write`, which allows any program to
+pass the string to be written into the serial port and wait for the kernel to
+re-schedule it.
## Build
@@ -75,8 +73,12 @@ $ make qemu
This will open up QEMU in `-nographic` mode (hence the serial output will be
simply redirected to stdout), and you will be able to see the whole thing
-working. Moreover, the `qemu` target can be paired with the `DEBUG` parameter
-that you can pass to make. Hence, you can also call it like so:
+working. Just like this:
+
+![Demo on QEMU](./doc/qemu.svg)
+
+Moreover, the `qemu` target can be paired with the `DEBUG` parameter that you
+can pass to make. Hence, you can also call it like so:
```
$ make qemu DEBUG=1
@@ -106,6 +108,34 @@ $ make gdb GDB_EXTRA_FLAGS="-tui"
And now you have started a GDB session with a nice TUI interface.
+### VisionFive 2
+
+This kernel can also be run on real hardware. In particular, I have tested it
+with the Starfive VisionFive 2 board. I have tested this with an existing Linux
+installation. In there, I have modified the bootloader configuration so I have
+now this entry:
+
+```
+label l6
+ menu label FizzBuzz OS
+ linux /fbos
+ initrd /initramfs.cpio
+ fdtdir /dtbs/<versioned directory>
+```
+
+In order to get the needed files, you can use the `archive` make target:
+
+```
+make archive
+```
+
+Copy this tarball to your board and then place the `fbos` binary image and the
+`initramfs.cpio` file into `/boot`. When you reset your board, you will get the
+new entry from U-Boot and you will be able to run the kernel from there. Like
+this:
+
+![Demo on VisionFive 2](./doc/vf2.svg)
+
## Requirements
We do not want to support a myriad of different scenarios, but we want to keep
diff --git a/doc/vf2.svg b/doc/vf2.svg
new file mode 100644
index 0000000..0936ea2
--- /dev/null
+++ b/doc/vf2.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="2130" height="1063.79"><rect width="2130" height="1063.79" rx="0" ry="0" class="a"/><svg height="1063.79" viewBox="0 0 213 106.379" width="2130" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>@keyframes f{0%{transform:translateX(0)}.57%{transform:translateX(-213px)}.59%{transform:translateX(-426px)}3.09%{transform:translateX(-639px)}5.48%{transform:translateX(-852px)}5.5%{transform:translateX(-1065px)}16.57%{transform:translateX(-1278px)}16.61%{transform:translateX(-1491px)}16.94%{transform:translateX(-1704px)}20.15%{transform:translateX(-1917px)}20.16%{transform:translateX(-2130px)}20.26%{transform:translateX(-2343px)}20.34%{transform:translateX(-2556px)}21.52%{transform:translateX(-2769px)}21.53%{transform:translateX(-2982px)}21.54%{transform:translateX(-3408px)}21.55%{transform:translateX(-3621px)}21.56%{transform:translateX(-4047px)}21.57%{transform:translateX(-4260px)}21.58%{transform:translateX(-4473px)}21.59%{transform:translateX(-4686px)}21.72%{transform:translateX(-4899px)}21.73%{transform:translateX(-5112px)}21.74%{transform:translateX(-5538px)}21.75%{transform:translateX(-5751px)}21.76%{transform:translateX(-6177px)}21.77%{transform:translateX(-6603px)}21.78%{transform:translateX(-6816px)}21.79%{transform:translateX(-7242px)}21.8%{transform:translateX(-7455px)}21.81%{transform:translateX(-7881px)}21.82%{transform:translateX(-8094px)}21.83%{transform:translateX(-8520px)}21.84%{transform:translateX(-8733px)}21.85%{transform:translateX(-9159px)}21.86%{transform:translateX(-9372px)}21.87%{transform:translateX(-9798px)}21.88%{transform:translateX(-10011px)}21.89%{transform:translateX(-10437px)}21.9%{transform:translateX(-10863px)}21.91%{transform:translateX(-11076px)}21.92%{transform:translateX(-11502px)}21.93%{transform:translateX(-11715px)}21.94%{transform:translateX(-12141px)}21.95%{transform:translateX(-12354px)}21.96%{transform:translateX(-12780px)}21.97%{transform:translateX(-12993px)}21.98%{transform:translateX(-13419px)}21.99%{transform:translateX(-13632px)}22%{transform:translateX(-14058px)}22.01%{transform:translateX(-14271px)}22.02%{transform:translateX(-14697px)}22.03%{transform:translateX(-15123px)}22.04%{transform:translateX(-15336px)}22.05%{transform:translateX(-15549px)}22.14%{transform:translateX(-15762px)}22.15%{transform:translateX(-16188px)}22.16%{transform:translateX(-16401px)}22.17%{transform:translateX(-16614px)}22.26%{transform:translateX(-16827px)}22.42%{transform:translateX(-17040px)}22.43%{transform:translateX(-17253px)}22.44%{transform:translateX(-17466px)}22.45%{transform:translateX(-17679px)}22.48%{transform:translateX(-17892px)}22.49%{transform:translateX(-18105px)}22.5%{transform:translateX(-18318px)}22.53%{transform:translateX(-18531px)}22.54%{transform:translateX(-18744px)}22.62%{transform:translateX(-19170px)}22.63%{transform:translateX(-19596px)}22.64%{transform:translateX(-19809px)}22.65%{transform:translateX(-20235px)}22.66%{transform:translateX(-20448px)}22.67%{transform:translateX(-20874px)}22.68%{transform:translateX(-21087px)}22.69%{transform:translateX(-21513px)}23.15%{transform:translateX(-21726px)}23.21%{transform:translateX(-21939px)}23.27%{transform:translateX(-22152px)}23.28%{transform:translateX(-22578px)}25.63%{transform:translateX(-22791px)}27.98%{transform:translateX(-23004px)}28.01%{transform:translateX(-23430px)}28.04%{transform:translateX(-23643px)}28.05%{transform:translateX(-23856px)}28.46%{transform:translateX(-24069px)}28.47%{transform:translateX(-24282px)}28.7%{transform:translateX(-24495px)}28.71%{transform:translateX(-24708px)}28.77%{transform:translateX(-24921px)}29.2%{transform:translateX(-25134px)}29.21%{transform:translateX(-25347px)}29.44%{transform:translateX(-25560px)}29.45%{transform:translateX(-25773px)}29.51%{transform:translateX(-25986px)}29.59%{transform:translateX(-26412px)}29.6%{transform:translateX(-26625px)}29.61%{transform:translateX(-27051px)}29.62%{transform:translateX(-27264px)}29.63%{transform:translateX(-27477px)}29.64%{transform:translateX(-27690px)}29.66%{transform:translateX(-28116px)}29.67%{transform:translateX(-28329px)}29.68%{transform:translateX(-28755px)}29.69%{transform:translateX(-28968px)}29.7%{transform:translateX(-29394px)}29.71%{transform:translateX(-29607px)}29.72%{transform:translateX(-30033px)}29.73%{transform:translateX(-30246px)}29.75%{transform:translateX(-30459px)}29.76%{transform:translateX(-30672px)}29.77%{transform:translateX(-30885px)}29.78%{transform:translateX(-31311px)}29.79%{transform:translateX(-31524px)}29.81%{transform:translateX(-31737px)}29.82%{transform:translateX(-31950px)}29.85%{transform:translateX(-32163px)}29.86%{transform:translateX(-32589px)}29.87%{transform:translateX(-32802px)}29.88%{transform:translateX(-33228px)}29.89%{transform:translateX(-33654px)}29.9%{transform:translateX(-33867px)}29.91%{transform:translateX(-34080px)}29.92%{transform:translateX(-34293px)}29.93%{transform:translateX(-34506px)}29.94%{transform:translateX(-34719px)}29.95%{transform:translateX(-35145px)}29.96%{transform:translateX(-35358px)}29.97%{transform:translateX(-35571px)}29.98%{transform:translateX(-35784px)}31.97%{transform:translateX(-35997px)}33.1%{transform:translateX(-36210px)}33.11%{transform:translateX(-36423px)}33.12%{transform:translateX(-36636px)}33.13%{transform:translateX(-36849px)}33.14%{transform:translateX(-37062px)}33.15%{transform:translateX(-37275px)}33.16%{transform:translateX(-37488px)}33.17%{transform:translateX(-37701px)}33.18%{transform:translateX(-37914px)}33.19%{transform:translateX(-38127px)}33.2%{transform:translateX(-38553px)}33.21%{transform:translateX(-38766px)}33.22%{transform:translateX(-39192px)}33.23%{transform:translateX(-39405px)}33.24%{transform:translateX(-39831px)}33.25%{transform:translateX(-40044px)}33.26%{transform:translateX(-40257px)}33.27%{transform:translateX(-40683px)}33.28%{transform:translateX(-40896px)}33.29%{transform:translateX(-41109px)}33.33%{transform:translateX(-41535px)}33.34%{transform:translateX(-41748px)}33.35%{transform:translateX(-42174px)}33.36%{transform:translateX(-42387px)}34.23%{transform:translateX(-42600px)}34.24%{transform:translateX(-43026px)}34.25%{transform:translateX(-43239px)}41.29%{transform:translateX(-43452px)}45.98%{transform:translateX(-43665px)}48.33%{transform:translateX(-43878px)}55.36%{transform:translateX(-44091px)}57.71%{transform:translateX(-44304px)}62.4%{transform:translateX(-44517px)}69.44%{transform:translateX(-44730px)}76.48%{transform:translateX(-44943px)}81.16%{transform:translateX(-45156px)}83.51%{transform:translateX(-45369px)}90.55%{transform:translateX(-45582px)}92.89%{transform:translateX(-45795px)}96.77%{transform:translateX(-46221px)}96.8%{transform:translateX(-46434px)}96.81%{transform:translateX(-46647px)}to{transform:translateX(-46860px)}}.a{fill:#282d35}.c{fill:#b9c0cb;white-space:pre}</style><g font-family="Monaco,Consolas,Menlo,'Bitstream Vera Sans Mono','Powerline Symbols',monospace" font-size="1.67"><defs><symbol id="1"><text y="1.67" class="c">mssola:~</text><text x="9.018" y="1.67" class="c">$</text></symbol><symbol id="2"><text y="1.67" class="c">mssola:~</text><text x="9.018" y="1.67" class="c">$</text><text x="11.022" y="1.67" class="c">sudo</text><text x="16.032" y="1.67" class="c">screen</text><text x="23.046" y="1.67" class="c">/dev/ttyUSB1</text><text x="36.072" y="1.67" class="c">115200</text></symbol><symbol id="3"><text y="1.67" class="c">[sudo]</text><text x="7.014" y="1.67" class="c">contrasenya</text><text x="19.038" y="1.67" class="c">per</text><text x="23.046" y="1.67" class="c">a</text><text x="25.05" y="1.67" class="c">root:</text></symbol><symbol id="4"><text y="1.67" class="c">U-Boot</text><text x="7.014" y="1.67" class="c">SPL</text><text x="11.022" y="1.67" class="c">2021.10</text><text x="19.038" y="1.67" class="c">(May</text><text x="24.048" y="1.67" class="c">09</text><text x="27.054" y="1.67" class="c">2024</text><text x="32.064" y="1.67" class="c">-</text><text x="34.068" y="1.67" class="c">22:42:02</text><text x="43.086" y="1.67" class="c">+0800)</text></symbol><symbol id="5"><text y="1.67" class="c">LPDDR4:</text><text x="8.016" y="1.67" class="c">8G</text><text x="11.022" y="1.67" class="c">version:</text><text x="20.04" y="1.67" class="c">g8ad50857.</text></symbol><symbol id="6"><text y="1.67" class="c">Trying</text><text x="7.014" y="1.67" class="c">to</text><text x="10.02" y="1.67" class="c">boot</text><text x="15.03" y="1.67" class="c">from</text><text x="20.04" y="1.67" class="c">SPI</text></symbol><symbol id="7"><text y="1.67" class="c">OpenSBI</text><text x="8.016" y="1.67" class="c">v1.2</text></symbol><symbol id="8"><text x="3.006" y="1.67" class="c">____</text><text x="27.054" y="1.67" class="c">_____</text><text x="33.066" y="1.67" class="c">____</text><text x="38.076" y="1.67" class="c">_____</text></symbol><symbol id="9"><text x="2.004" y="1.67" class="c">/</text><text x="4.008" y="1.67" class="c">__</text><text x="7.014" y="1.67" class="c">\</text><text x="26.052" y="1.67" class="c">/</text><text x="28.056" y="1.67" class="c">____|</text><text x="35.07" y="1.67" class="c">_</text><text x="37.074" y="1.67" class="c">\_</text><text x="42.084" y="1.67" class="c">_|</text></symbol><symbol id="10"><text x="1.002" y="1.67" class="c">|</text><text x="3.006" y="1.67" class="c">|</text><text x="6.012" y="1.67" class="c">|</text><text x="8.016" y="1.67" class="c">|_</text><text x="11.022" y="1.67" class="c">__</text><text x="16.032" y="1.67" class="c">___</text><text x="20.04" y="1.67" class="c">_</text><text x="22.044" y="1.67" class="c">__</text><text x="25.05" y="1.67" class="c">|</text><text x="27.054" y="1.67" class="c">(___</text><text x="32.064" y="1.67" class="c">|</text><text x="34.068" y="1.67" class="c">|_)</text><text x="38.076" y="1.67" class="c">||</text><text x="41.082" y="1.67" class="c">|</text></symbol><symbol id="11"><text x="1.002" y="1.67" class="c">|</text><text x="3.006" y="1.67" class="c">|</text><text x="6.012" y="1.67" class="c">|</text><text x="8.016" y="1.67" class="c">|</text><text x="10.02" y="1.67" class="c">&apos;_</text><text x="13.026" y="1.67" class="c">\</text><text x="15.03" y="1.67" class="c">/</text><text x="17.034" y="1.67" class="c">_</text><text x="19.038" y="1.67" class="c">\</text><text x="21.042" y="1.67" class="c">&apos;_</text><text x="24.048" y="1.67" class="c">\</text><text x="26.052" y="1.67" class="c">\___</text><text x="31.062" y="1.67" class="c">\|</text><text x="35.07" y="1.67" class="c">_</text><text x="37.074" y="1.67" class="c">&lt;</text><text x="39.078" y="1.67" class="c">|</text><text x="41.082" y="1.67" class="c">|</text></symbol><symbol id="12"><text x="1.002" y="1.67" class="c">|</text><text x="3.006" y="1.67" class="c">|__|</text><text x="8.016" y="1.67" class="c">|</text><text x="10.02" y="1.67" class="c">|_)</text><text x="14.028" y="1.67" class="c">|</text><text x="17.034" y="1.67" class="c">__/</text><text x="21.042" y="1.67" class="c">|</text><text x="23.046" y="1.67" class="c">|</text><text x="25.05" y="1.67" class="c">|____)</text><text x="32.064" y="1.67" class="c">|</text><text x="34.068" y="1.67" class="c">|_)</text><text x="38.076" y="1.67" class="c">||</text><text x="41.082" y="1.67" class="c">|_</text></symbol><symbol id="13"><text x="2.004" y="1.67" class="c">\____/|</text><text x="10.02" y="1.67" class="c">.__/</text><text x="15.03" y="1.67" class="c">\___|_|</text><text x="23.046" y="1.67" class="c">|_|_____/|___/_____|</text></symbol><symbol id="14"><text x="8.016" y="1.67" class="c">|</text><text x="10.02" y="1.67" class="c">|</text></symbol><symbol id="15"><text x="8.016" y="1.67" class="c">|_|</text></symbol><symbol id="16"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">Name</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">StarFive</text><text x="37.074" y="1.67" class="c">VisionFive</text><text x="48.096" y="1.67" class="c">V2</text></symbol><symbol id="17"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">Features</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">medeleg</text></symbol><symbol id="18"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">HART</text><text x="14.028" y="1.67" class="c">Count</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">5</text></symbol><symbol id="19"><text y="1.67" class="c">Platform</text></symbol><symbol id="20"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">IPI</text><text x="13.026" y="1.67" class="c">Device</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">aclint-mswi</text></symbol><symbol id="21"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">Timer</text><text x="15.03" y="1.67" class="c">Device</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">aclint-mtimer</text><text x="42.084" y="1.67" class="c">@</text><text x="44.088" y="1.67" class="c">4000000Hz</text></symbol><symbol id="22"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">Console</text><text x="17.034" y="1.67" class="c">Device</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">uart8250</text></symbol><symbol id="23"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">HSM</text><text x="13.026" y="1.67" class="c">Device</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">---</text></symbol><symbol id="24"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">PMU</text><text x="13.026" y="1.67" class="c">Device</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">---</text></symbol><symbol id="25"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">Reboot</text><text x="16.032" y="1.67" class="c">Device</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">pm-reset</text></symbol><symbol id="26"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">Shutdown</text><text x="18.036" y="1.67" class="c">Device</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">pm-reset</text></symbol><symbol id="27"><text y="1.67" class="c">Platform</text><text x="9.018" y="1.67" class="c">Suspend</text><text x="17.034" y="1.67" class="c">Device</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">---</text></symbol><symbol id="28"><text y="1.67" class="c">Firmware</text><text x="9.018" y="1.67" class="c">Base</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x40000000</text></symbol><symbol id="29"><text y="1.67" class="c">Firmware</text><text x="9.018" y="1.67" class="c">Size</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">392</text><text x="32.064" y="1.67" class="c">KB</text></symbol><symbol id="30"><text y="1.67" class="c">Firmware</text><text x="9.018" y="1.67" class="c">RW</text><text x="12.024" y="1.67" class="c">Offset</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x40000</text></symbol><symbol id="31"><text y="1.67" class="c">Runtime</text><text x="8.016" y="1.67" class="c">SBI</text><text x="12.024" y="1.67" class="c">Version</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">1.0</text></symbol><symbol id="32"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">Name</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">root</text></symbol><symbol id="33"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">Boot</text><text x="13.026" y="1.67" class="c">HART</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">1</text></symbol><symbol id="34"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">HARTs</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0*,1*,2*,3*,4*</text></symbol><symbol id="35"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">Region00</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x0000000002000000-0x000000000200ffff</text><text x="66.132" y="1.67" class="c">M:</text><text x="69.138" y="1.67" class="c">(I,R,W)</text><text x="77.154" y="1.67" class="c">S/U:</text><text x="82.164" y="1.67" class="c">()</text></symbol><symbol id="36"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">Region01</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x0000000040000000-0x000000004003ffff</text><text x="66.132" y="1.67" class="c">M:</text><text x="69.138" y="1.67" class="c">(R,X)</text><text x="75.15" y="1.67" class="c">S/U:</text><text x="80.16" y="1.67" class="c">()</text></symbol><symbol id="37"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">Region02</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x0000000040040000-0x000000004007ffff</text><text x="66.132" y="1.67" class="c">M:</text><text x="69.138" y="1.67" class="c">(R,W)</text><text x="75.15" y="1.67" class="c">S/U:</text><text x="80.16" y="1.67" class="c">()</text></symbol><symbol id="38"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">Region03</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x0000000000000000-0xffffffffffffffff</text><text x="66.132" y="1.67" class="c">M:</text><text x="69.138" y="1.67" class="c">(R,W,X)</text><text x="77.154" y="1.67" class="c">S/U:</text><text x="82.164" y="1.67" class="c">(R,W,X)</text></symbol><symbol id="39"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">Next</text><text x="13.026" y="1.67" class="c">Address</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x0000000040200000</text></symbol><symbol id="40"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">Next</text><text x="13.026" y="1.67" class="c">Arg1</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x0000000042200000</text></symbol><symbol id="41"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">Next</text><text x="13.026" y="1.67" class="c">Mode</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">S-mode</text></symbol><symbol id="42"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">SysReset</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">yes</text></symbol><symbol id="43"><text y="1.67" class="c">Domain0</text><text x="8.016" y="1.67" class="c">SysSuspend</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">yes</text></symbol><symbol id="44"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">ID</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">1</text></symbol><symbol id="45"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">Domain</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">root</text></symbol><symbol id="46"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">Priv</text><text x="15.03" y="1.67" class="c">Version</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">v1.11</text></symbol><symbol id="47"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">Base</text><text x="15.03" y="1.67" class="c">ISA</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">rv64imafdcbx</text></symbol><symbol id="48"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">ISA</text><text x="14.028" y="1.67" class="c">Extensions</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">none</text></symbol><symbol id="49"><text y="1.67" class="c">B</text></symbol><symbol id="50"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">PMP</text><text x="14.028" y="1.67" class="c">Count</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">8</text></symbol><symbol id="51"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">PMP</text><text x="14.028" y="1.67" class="c">Granularity</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">4096</text></symbol><symbol id="52"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">PMP</text><text x="14.028" y="1.67" class="c">Address</text><text x="22.044" y="1.67" class="c">Bits:</text><text x="28.056" y="1.67" class="c">34</text></symbol><symbol id="53"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">MHPM</text><text x="15.03" y="1.67" class="c">Count</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">2</text></symbol><symbol id="54"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">MIDELEG</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x0000000000000222</text></symbol><symbol id="55"><text y="1.67" class="c">Boot</text><text x="5.01" y="1.67" class="c">HART</text><text x="10.02" y="1.67" class="c">MEDELEG</text><text x="26.052" y="1.67" class="c">:</text><text x="28.056" y="1.67" class="c">0x000000000000b109</text></symbol><symbol id="56"><text y="1.67" class="c">U-Boot</text><text x="7.014" y="1.67" class="c">2021.10</text><text x="15.03" y="1.67" class="c">(May</text><text x="20.04" y="1.67" class="c">09</text><text x="23.046" y="1.67" class="c">2024</text><text x="28.056" y="1.67" class="c">-</text><text x="30.06" y="1.67" class="c">22:42:02</text><text x="39.078" y="1.67" class="c">+0800),</text><text x="47.094" y="1.67" class="c">Build:</text><text x="54.108" y="1.67" class="c">jenkins-github_visionfive2-24</text></symbol><symbol id="57"><text y="1.67" class="c">CPU:</text><text x="7.014" y="1.67" class="c">rv64imacu_zba_zbb</text></symbol><symbol id="58"><text y="1.67" class="c">Model:</text><text x="7.014" y="1.67" class="c">StarFive</text><text x="16.032" y="1.67" class="c">VisionFive</text><text x="27.054" y="1.67" class="c">V2</text></symbol><symbol id="59"><text y="1.67" class="c">DRAM:</text><text x="7.014" y="1.67" class="c">8</text><text x="9.018" y="1.67" class="c">GiB</text></symbol><symbol id="60"><text y="1.67" class="c">MMC:</text><text x="7.014" y="1.67" class="c">sdio0@16010000:</text><text x="23.046" y="1.67" class="c">0,</text><text x="26.052" y="1.67" class="c">sdio1@16020000:</text><text x="42.084" y="1.67" class="c">1</text></symbol><symbol id="61"><text y="1.67" class="c">Loading</text><text x="8.016" y="1.67" class="c">Environment</text><text x="20.04" y="1.67" class="c">from</text><text x="25.05" y="1.67" class="c">SPIFlash...</text><text x="37.074" y="1.67" class="c">SF:</text><text x="41.082" y="1.67" class="c">Detected</text><text x="50.1" y="1.67" class="c">gd25lq128</text><text x="60.12" y="1.67" class="c">with</text><text x="65.13" y="1.67" class="c">page</text><text x="70.14" y="1.67" class="c">size</text><text x="75.15" y="1.67" class="c">256</text><text x="79.158" y="1.67" class="c">Bytes,</text><text x="86.172" y="1.67" class="c">erase</text><text x="92.184" y="1.67" class="c">size</text><text x="97.194" y="1.67" class="c">4</text><text x="99.198" y="1.67" class="c">KiB,</text><text x="104.208" y="1.67" class="c">total</text><text x="110.22" y="1.67" class="c">16</text><text x="113.226" y="1.67" class="c">MiB</text></symbol><symbol id="62"><text y="1.67" class="c">***</text><text x="4.008" y="1.67" class="c">Warning</text><text x="12.024" y="1.67" class="c">-</text><text x="14.028" y="1.67" class="c">bad</text><text x="18.036" y="1.67" class="c">CRC,</text><text x="23.046" y="1.67" class="c">using</text><text x="29.058" y="1.67" class="c">default</text><text x="37.074" y="1.67" class="c">environment</text></symbol><symbol id="63"><text y="1.67" class="c">StarFive</text><text x="9.018" y="1.67" class="c">EEPROM</text><text x="16.032" y="1.67" class="c">format</text><text x="23.046" y="1.67" class="c">v2</text></symbol><symbol id="64"><text y="1.67" class="c">--------EEPROM</text><text x="15.03" y="1.67" class="c">INFO--------</text></symbol><symbol id="65"><text y="1.67" class="c">Vendor</text><text x="7.014" y="1.67" class="c">:</text><text x="9.018" y="1.67" class="c">StarFive</text><text x="18.036" y="1.67" class="c">Technology</text><text x="29.058" y="1.67" class="c">Co.,</text><text x="34.068" y="1.67" class="c">Ltd.</text></symbol><symbol id="66"><text y="1.67" class="c">Product</text><text x="8.016" y="1.67" class="c">full</text><text x="13.026" y="1.67" class="c">SN:</text><text x="17.034" y="1.67" class="c">VF7110B1-2318-D008E000-18004831</text></symbol><symbol id="67"><text y="1.67" class="c">data</text><text x="5.01" y="1.67" class="c">version:</text><text x="14.028" y="1.67" class="c">0x2</text></symbol><symbol id="68"><text y="1.67" class="c">PCB</text><text x="4.008" y="1.67" class="c">revision:</text><text x="14.028" y="1.67" class="c">0xb2</text></symbol><symbol id="69"><text y="1.67" class="c">BOM</text><text x="4.008" y="1.67" class="c">revision:</text><text x="14.028" y="1.67" class="c">A</text></symbol><symbol id="70"><text y="1.67" class="c">Ethernet</text><text x="9.018" y="1.67" class="c">MAC0</text><text x="14.028" y="1.67" class="c">address:</text><text x="23.046" y="1.67" class="c">6c:cf:39:00:b8:4c</text></symbol><symbol id="71"><text y="1.67" class="c">Ethernet</text><text x="9.018" y="1.67" class="c">MAC1</text><text x="14.028" y="1.67" class="c">address:</text><text x="23.046" y="1.67" class="c">6c:cf:39:00:b8:4d</text></symbol><symbol id="72"><text y="1.67" class="c">In:</text><text x="7.014" y="1.67" class="c">serial</text></symbol><symbol id="73"><text y="1.67" class="c">Out:</text><text x="7.014" y="1.67" class="c">serial</text></symbol><symbol id="74"><text y="1.67" class="c">Err:</text><text x="7.014" y="1.67" class="c">serial</text></symbol><symbol id="75"><text y="1.67" class="c">Net:</text><text x="7.014" y="1.67" class="c">eth0:</text><text x="13.026" y="1.67" class="c">ethernet@16030000,</text><text x="32.064" y="1.67" class="c">eth1:</text><text x="38.076" y="1.67" class="c">ethernet@16040000</text></symbol><symbol id="76"><text y="1.67" class="c">Hit</text><text x="4.008" y="1.67" class="c">any</text><text x="8.016" y="1.67" class="c">key</text><text x="12.024" y="1.67" class="c">to</text><text x="15.03" y="1.67" class="c">stop</text><text x="20.04" y="1.67" class="c">autoboot:</text><text x="31.062" y="1.67" class="c">2</text></symbol><symbol id="77"><text y="1.67" class="c">Hit</text><text x="4.008" y="1.67" class="c">any</text><text x="8.016" y="1.67" class="c">key</text><text x="12.024" y="1.67" class="c">to</text><text x="15.03" y="1.67" class="c">stop</text><text x="20.04" y="1.67" class="c">autoboot:</text><text x="31.062" y="1.67" class="c">0</text></symbol><symbol id="78"><text y="1.67" class="c">Card</text><text x="5.01" y="1.67" class="c">did</text><text x="9.018" y="1.67" class="c">not</text><text x="13.026" y="1.67" class="c">respond</text><text x="21.042" y="1.67" class="c">to</text><text x="24.048" y="1.67" class="c">voltage</text></symbol><symbol id="79"><text y="1.67" class="c">Card</text><text x="5.01" y="1.67" class="c">did</text><text x="9.018" y="1.67" class="c">not</text><text x="13.026" y="1.67" class="c">respond</text><text x="21.042" y="1.67" class="c">to</text><text x="24.048" y="1.67" class="c">voltage</text><text x="32.064" y="1.67" class="c">select!</text><text x="40.08" y="1.67" class="c">:</text><text x="42.084" y="1.67" class="c">-110</text></symbol><symbol id="80"><text y="1.67" class="c">starfive_pcie</text><text x="14.028" y="1.67" class="c">pcie@2B000000:</text><text x="29.058" y="1.67" class="c">Port</text><text x="34.068" y="1.67" class="c">link</text><text x="39.078" y="1.67" class="c">up.</text></symbol><symbol id="81"><text y="1.67" class="c">starfive_pcie</text><text x="14.028" y="1.67" class="c">pcie@2B000000:</text><text x="29.058" y="1.67" class="c">Starfive</text><text x="38.076" y="1.67" class="c">PCIe</text><text x="43.086" y="1.67" class="c">bus</text><text x="47.094" y="1.67" class="c">probed.</text></symbol><symbol id="82"><text y="1.67" class="c">PCI:</text><text x="5.01" y="1.67" class="c">Failed</text><text x="12.024" y="1.67" class="c">autoconfig</text><text x="23.046" y="1.67" class="c">bar</text><text x="27.054" y="1.67" class="c">10</text></symbol><symbol id="83"><text y="1.67" class="c">starfive_pcie</text><text x="14.028" y="1.67" class="c">pcie@2C000000:</text><text x="29.058" y="1.67" class="c">Port</text><text x="34.068" y="1.67" class="c">link</text><text x="39.078" y="1.67" class="c">up.</text></symbol><symbol id="84"><text y="1.67" class="c">starfive_pcie</text><text x="14.028" y="1.67" class="c">pcie@2C000000:</text><text x="29.058" y="1.67" class="c">Starfive</text><text x="38.076" y="1.67" class="c">PCIe</text><text x="43.086" y="1.67" class="c">bus</text><text x="47.094" y="1.67" class="c">probed.</text></symbol><symbol id="85"><text y="1.67" class="c">Device</text><text x="7.014" y="1.67" class="c">0:</text><text x="10.02" y="1.67" class="c">Vendor:</text><text x="18.036" y="1.67" class="c">0xc0a9</text><text x="25.05" y="1.67" class="c">Rev:</text><text x="30.06" y="1.67" class="c">P8CR002</text><text x="39.078" y="1.67" class="c">Prod:</text><text x="45.09" y="1.67" class="c">234444C8444A</text></symbol><symbol id="86"><text x="12.024" y="1.67" class="c">Type:</text><text x="18.036" y="1.67" class="c">Hard</text><text x="23.046" y="1.67" class="c">Disk</text></symbol><symbol id="87"><text x="12.024" y="1.67" class="c">Capacity:</text><text x="22.044" y="1.67" class="c">476940.0</text><text x="31.062" y="1.67" class="c">MB</text><text x="34.068" y="1.67" class="c">=</text><text x="36.072" y="1.67" class="c">465.7</text><text x="42.084" y="1.67" class="c">GB</text><text x="45.09" y="1.67" class="c">(976773168</text><text x="56.112" y="1.67" class="c">x</text><text x="58.116" y="1.67" class="c">512)</text></symbol><symbol id="88"><text y="1.67" class="c">...</text><text x="4.008" y="1.67" class="c">is</text><text x="7.014" y="1.67" class="c">now</text><text x="11.022" y="1.67" class="c">current</text><text x="19.038" y="1.67" class="c">device</text></symbol><symbol id="89"><text y="1.67" class="c">Try</text><text x="4.008" y="1.67" class="c">booting</text><text x="12.024" y="1.67" class="c">from</text><text x="17.034" y="1.67" class="c">NVME0</text><text x="23.046" y="1.67" class="c">...</text></symbol><symbol id="90"><text y="1.67" class="c">Failed</text><text x="7.014" y="1.67" class="c">to</text><text x="10.02" y="1.67" class="c">load</text><text x="15.03" y="1.67" class="c">&apos;vf2_uEnv.txt&apos;</text></symbol><symbol id="91"><text y="1.67" class="c">##</text><text x="3.006" y="1.67" class="c">Warning:</text><text x="12.024" y="1.67" class="c">Input</text><text x="18.036" y="1.67" class="c">data</text><text x="23.046" y="1.67" class="c">exceeds</text><text x="31.062" y="1.67" class="c">1</text></symbol><symbol id="92"><text y="1.67" class="c">##</text><text x="3.006" y="1.67" class="c">Warning:</text><text x="12.024" y="1.67" class="c">Input</text><text x="18.036" y="1.67" class="c">data</text><text x="23.046" y="1.67" class="c">exceeds</text><text x="31.062" y="1.67" class="c">1048576</text><text x="39.078" y="1.67" class="c">bytes</text><text x="45.09" y="1.67" class="c">-</text><text x="47.094" y="1.67" class="c">truncated</text></symbol><symbol id="93"><text y="1.67" class="c">##</text><text x="3.006" y="1.67" class="c">Inf</text></symbol><symbol id="94"><text y="1.67" class="c">##</text><text x="3.006" y="1.67" class="c">Info:</text><text x="9.018" y="1.67" class="c">input</text><text x="15.03" y="1.67" class="c">data</text><text x="20.04" y="1.67" class="c">size</text><text x="25.05" y="1.67" class="c">=</text><text x="27.054" y="1.67" class="c">1048578</text><text x="35.07" y="1.67" class="c">=</text><text x="37.074" y="1.67" class="c">0</text></symbol><symbol id="95"><text y="1.67" class="c">##</text><text x="3.006" y="1.67" class="c">Info:</text><text x="9.018" y="1.67" class="c">input</text><text x="15.03" y="1.67" class="c">data</text><text x="20.04" y="1.67" class="c">size</text><text x="25.05" y="1.67" class="c">=</text><text x="27.054" y="1.67" class="c">1048578</text><text x="35.07" y="1.67" class="c">=</text><text x="37.074" y="1.67" class="c">0x100002</text></symbol><symbol id="96"><text y="1.67" class="c">##</text><text x="3.006" y="1.67" class="c">Error:</text><text x="10.02" y="1.67" class="c">&quot;boot2&quot;</text><text x="18.036" y="1.67" class="c">not</text><text x="22.044" y="1.67" class="c">d</text></symbol><symbol id="97"><text y="1.67" class="c">##</text><text x="3.006" y="1.67" class="c">Error:</text><text x="10.02" y="1.67" class="c">&quot;boot2&quot;</text><text x="18.036" y="1.67" class="c">not</text><text x="22.044" y="1.67" class="c">defined</text></symbol><symbol id="98"><text y="1.67" class="c">Tring</text><text x="6.012" y="1.67" class="c">booting</text><text x="14.028" y="1.67" class="c">distro</text><text x="21.042" y="1.67" class="c">...</text></symbol><symbol id="99"><text y="1.67" class="c">419</text><text x="4.008" y="1.67" class="c">bytes</text><text x="10.02" y="1.67" class="c">read</text><text x="15.03" y="1.67" class="c">in</text><text x="18.036" y="1.67" class="c">4</text><text x="20.04" y="1.67" class="c">ms</text><text x="23.046" y="1.67" class="c">(101.6</text><text x="30.06" y="1.67" class="c">KiB/s)</text></symbol><symbol id="100"><text y="1.67" class="c">Retrieving</text><text x="11.022" y="1.67" class="c">file:</text><text x="17.034" y="1.67" class="c">/extlinux/extlinux.conf</text></symbol><symbol id="101"><text y="1.67" class="c">838</text><text x="4.008" y="1.67" class="c">bytes</text><text x="10.02" y="1.67" class="c">read</text><text x="15.03" y="1.67" class="c">in</text><text x="18.036" y="1.67" class="c">4</text><text x="20.04" y="1.67" class="c">ms</text><text x="23.046" y="1.67" class="c">(204.1</text><text x="30.06" y="1.67" class="c">KiB/s)</text></symbol><symbol id="102"><text y="1.67" class="c">U-Boot</text><text x="7.014" y="1.67" class="c">menu</text></symbol><symbol id="103"><text y="1.67" class="c">1:</text><text x="8.016" y="1.67" class="c">Debian</text><text x="15.03" y="1.67" class="c">GNU/Linux</text><text x="25.05" y="1.67" class="c">bookworm/sid</text><text x="38.076" y="1.67" class="c">6.12.0mssola</text></symbol><symbol id="104"><text y="1.67" class="c">2:</text><text x="8.016" y="1.67" class="c">Debian</text><text x="15.03" y="1.67" class="c">GNU/Linux</text><text x="25.05" y="1.67" class="c">bookworm/sid</text><text x="38.076" y="1.67" class="c">6.12.0mssola</text><text x="51.102" y="1.67" class="c">(rescue</text><text x="59.118" y="1.67" class="c">target)</text></symbol><symbol id="105"><text y="1.67" class="c">3:</text><text x="8.016" y="1.67" class="c">FizzBuzz</text><text x="17.034" y="1.67" class="c">OS</text></symbol><symbol id="106"><text y="1.67" class="c">Enter</text><text x="6.012" y="1.67" class="c">choice:</text><text x="14.028" y="1.67" class="c">3</text></symbol><symbol id="107"><text y="1.67" class="c">Retrieving</text><text x="11.022" y="1.67" class="c">file:</text><text x="17.034" y="1.67" class="c">/initramfs.cpio</text></symbol><symbol id="108"><text y="1.67" class="c">6656</text><text x="5.01" y="1.67" class="c">bytes</text><text x="11.022" y="1.67" class="c">read</text><text x="16.032" y="1.67" class="c">in</text><text x="19.038" y="1.67" class="c">4</text><text x="21.042" y="1.67" class="c">ms</text><text x="24.048" y="1.67" class="c">(1.6</text><text x="29.058" y="1.67" class="c">MiB/s)</text></symbol><symbol id="109"><text y="1.67" class="c">Retrieving</text><text x="11.022" y="1.67" class="c">file:</text><text x="17.034" y="1.67" class="c">/fbos</text></symbol><symbol id="110"><text y="1.67" class="c">14444</text><text x="6.012" y="1.67" class="c">bytes</text><text x="12.024" y="1.67" class="c">read</text><text x="17.034" y="1.67" class="c">in</text><text x="20.04" y="1.67" class="c">4</text><text x="22.044" y="1.67" class="c">ms</text><text x="25.05" y="1.67" class="c">(3.4</text><text x="30.06" y="1.67" class="c">MiB/s)</text></symbol><symbol id="111"><text y="1.67" class="c">Retrieving</text><text x="11.022" y="1.67" class="c">file:</text><text x="17.034" y="1.67" class="c">/dtbs/6.12.0mssola/starfive/jh7110-starfive-visionfive-2-v1.3b.dtb</text></symbol><symbol id="112"><text y="1.67" class="c">38025</text><text x="6.012" y="1.67" class="c">bytes</text><text x="12.024" y="1.67" class="c">read</text><text x="17.034" y="1.67" class="c">in</text><text x="20.04" y="1.67" class="c">5</text><text x="22.044" y="1.67" class="c">ms</text><text x="25.05" y="1.67" class="c">(7.3</text><text x="30.06" y="1.67" class="c">MiB/s)</text></symbol><symbol id="113"><text y="1.67" class="c">libfdt</text><text x="7.014" y="1.67" class="c">fdt_path_offset()</text><text x="25.05" y="1.67" class="c">returned</text><text x="34.068" y="1.67" class="c">FDT_ERR_NOTFOUND</text></symbol><symbol id="114"><text y="1.67" class="c">##</text><text x="3.006" y="1.67" class="c">Flattened</text><text x="13.026" y="1.67" class="c">Device</text><text x="20.04" y="1.67" class="c">Tree</text><text x="25.05" y="1.67" class="c">blob</text><text x="30.06" y="1.67" class="c">at</text><text x="33.066" y="1.67" class="c">46000000</text></symbol><symbol id="115"><text x="3.006" y="1.67" class="c">Booting</text><text x="11.022" y="1.67" class="c">using</text><text x="17.034" y="1.67" class="c">the</text><text x="21.042" y="1.67" class="c">fdt</text><text x="25.05" y="1.67" class="c">blob</text><text x="30.06" y="1.67" class="c">at</text><text x="33.066" y="1.67" class="c">0x46000000</text></symbol><symbol id="116"><text x="3.006" y="1.67" class="c">Using</text><text x="9.018" y="1.67" class="c">Device</text><text x="16.032" y="1.67" class="c">Tree</text><text x="21.042" y="1.67" class="c">in</text><text x="24.048" y="1.67" class="c">place</text><text x="30.06" y="1.67" class="c">at</text><text x="33.066" y="1.67" class="c">0000000046000000,</text><text x="51.102" y="1.67" class="c">end</text><text x="55.11" y="1.67" class="c">000000004600c488</text></symbol><symbol id="117"><text y="1.67" class="c">Starting</text><text x="9.018" y="1.67" class="c">kernel</text><text x="16.032" y="1.67" class="c">...</text></symbol><symbol id="118"><text y="1.67" class="c">clk</text><text x="4.008" y="1.67" class="c">u2_dw_i2c_clk_core</text><text x="23.046" y="1.67" class="c">already</text><text x="31.062" y="1.67" class="c">disabled</text></symbol><symbol id="119"><text y="1.67" class="c">clk</text><text x="4.008" y="1.67" class="c">u2_dw_i2c_clk_apb</text><text x="22.044" y="1.67" class="c">already</text><text x="30.06" y="1.67" class="c">disabled</text></symbol><symbol id="120"><text y="1.67" class="c">clk</text><text x="4.008" y="1.67" class="c">u5_dw_i2c_clk_core</text><text x="23.046" y="1.67" class="c">already</text><text x="31.062" y="1.67" class="c">disabled</text></symbol><symbol id="121"><text y="1.67" class="c">clk</text><text x="4.008" y="1.67" class="c">u5_dw_i2c_clk_apb</text><text x="22.044" y="1.67" class="c">already</text><text x="30.06" y="1.67" class="c">disabled</text></symbol><symbol id="122"><text y="1.67" class="c">clk</text><text x="4.008" y="1.67" class="c">u0_mipitx_dphy_clk_txesc</text><text x="29.058" y="1.67" class="c">already</text><text x="37.074" y="1.67" class="c">disabled</text></symbol><symbol id="123"><text y="1.67" class="c">Welcome</text><text x="8.016" y="1.67" class="c">to</text><text x="11.022" y="1.67" class="c">FizzBuzz</text><text x="20.04" y="1.67" class="c">OS!</text></symbol><symbol id="124"><text y="1.67" class="c">Running</text><text x="8.016" y="1.67" class="c">on:</text><text x="12.024" y="1.67" class="c">StarFive</text><text x="21.042" y="1.67" class="c">VisionFive</text><text x="32.064" y="1.67" class="c">2</text><text x="34.068" y="1.67" class="c">v1.3B</text></symbol><symbol id="125"><text y="1.67" class="c">fizz</text></symbol><symbol id="126"><text y="1.67" class="c">buzz</text></symbol><symbol id="127"><text y="1.67" class="c">fizzbuzz</text></symbol><symbol id="128"><text y="1.67" class="c">[screen</text><text x="8.016" y="1.67" class="c">is</text><text x="11.022" y="1.67" class="c">terminating]</text></symbol><symbol id="129"><text y="1.67" class="c">Terminat</text></symbol><symbol id="a"><path fill="transparent" d="M0 0h213v49H0z"/></symbol><symbol id="b"><path fill="#6f7683" d="M0 0h1.102v2.171H0z"/></symbol></defs><path class="a" d="M0 0h213v106.379H0z"/><g style="animation-duration:42.63581s;animation-iteration-count:infinite;animation-name:f;animation-timing-function:steps(1,end)"><svg width="47073"><svg><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="213"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="426"><use xlink:href="#a"/><use xlink:href="#b" x="10.996"/><use xlink:href="#1"/></svg><svg x="639"><use xlink:href="#a"/><use xlink:href="#b" x="41.996"/><use xlink:href="#2"/></svg><svg x="852"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="2.146"/><use xlink:href="#2"/></svg><svg x="1065"><use xlink:href="#a"/><use xlink:href="#b" x="30.996" y="2.146"/><use xlink:href="#2"/><use xlink:href="#3" y="2.171"/></svg><svg x="1278"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="4.317"/><use xlink:href="#2"/><use xlink:href="#3" y="2.171"/></svg><svg x="1491"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/><use xlink:href="#2"/><use xlink:href="#3" y="2.171"/></svg><svg x="1704"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="1917"><use xlink:href="#a"/><use xlink:href="#b" x="29.996" y="2.146"/><text y="3.841" class="c">U-Boot</text><text x="7.014" y="3.841" class="c">SPL</text><text x="11.022" y="3.841" class="c">2021.10</text><text x="19.038" y="3.841" class="c">(May</text><text x="24.048" y="3.841" class="c">09</text><text x="27.054" y="3.841" class="c">202</text></svg><svg x="2130"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="4.317"/><use xlink:href="#4" y="2.171"/></svg><svg x="2343"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="6.488"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/></svg><svg x="2556"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="8.659"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/></svg><svg x="2769"><use xlink:href="#a"/><use xlink:href="#b" x="15.996" y="13.001"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><text x="3.006" y="14.696" class="c">____</text></svg><svg x="2982"><use xlink:href="#a"/><use xlink:href="#b" x="2.996" y="15.172"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><text x="2.004" y="16.867" class="c">/</text></svg><svg x="3195"><use xlink:href="#a"/><use xlink:href="#b" x="34.996" y="15.172"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><text x="2.004" y="16.867" class="c">/</text><text x="4.008" y="16.867" class="c">__</text><text x="7.014" y="16.867" class="c">\</text><text x="26.052" y="16.867" class="c">/</text><text x="28.056" y="16.867" class="c">____|</text></svg><svg x="3408"><use xlink:href="#a"/><use xlink:href="#b" x="20.996" y="17.343"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><text x="1.002" y="19.038" class="c">|</text><text x="3.006" y="19.038" class="c">|</text><text x="6.012" y="19.038" class="c">|</text><text x="8.016" y="19.038" class="c">|_</text><text x="11.022" y="19.038" class="c">__</text><text x="16.032" y="19.038" class="c">___</text><text x="20.04" y="19.038" class="c">_</text></svg><svg x="3621"><use xlink:href="#a"/><use xlink:href="#b" x="8.996" y="19.514"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><text x="1.002" y="21.209" class="c">|</text><text x="3.006" y="21.209" class="c">|</text><text x="6.012" y="21.209" class="c">|</text><text x="8.016" y="21.209" class="c">|</text></svg><svg x="3834"><use xlink:href="#a"/><use xlink:href="#b" x="40.996" y="19.514"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><text x="1.002" y="21.209" class="c">|</text><text x="3.006" y="21.209" class="c">|</text><text x="6.012" y="21.209" class="c">|</text><text x="8.016" y="21.209" class="c">|</text><text x="10.02" y="21.209" class="c">&apos;_</text><text x="13.026" y="21.209" class="c">\</text><text x="15.03" y="21.209" class="c">/</text><text x="17.034" y="21.209" class="c">_</text><text x="19.038" y="21.209" class="c">\</text><text x="21.042" y="21.209" class="c">&apos;_</text><text x="24.048" y="21.209" class="c">\</text><text x="26.052" y="21.209" class="c">\___</text><text x="31.062" y="21.209" class="c">\|</text><text x="35.07" y="21.209" class="c">_</text><text x="37.074" y="21.209" class="c">&lt;</text><text x="39.078" y="21.209" class="c">|</text></svg><svg x="4047"><use xlink:href="#a"/><use xlink:href="#b" x="28.996" y="21.685"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><text x="1.002" y="23.38" class="c">|</text><text x="3.006" y="23.38" class="c">|__|</text><text x="8.016" y="23.38" class="c">|</text><text x="10.02" y="23.38" class="c">|_)</text><text x="14.028" y="23.38" class="c">|</text><text x="17.034" y="23.38" class="c">__/</text><text x="21.042" y="23.38" class="c">|</text><text x="23.046" y="23.38" class="c">|</text><text x="25.05" y="23.38" class="c">|___</text></svg><svg x="4260"><use xlink:href="#a"/><use xlink:href="#b" x="15.996" y="23.856"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><text x="2.004" y="25.551" class="c">\____/|</text><text x="10.02" y="25.551" class="c">.__/</text><text x="15.03" y="25.551" class="c">\</text></svg><svg x="4473"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="26.027"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/></svg><svg x="4686"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="32.54"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/></svg><svg x="4899"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="32.54"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><text y="34.235" class="c">Platform</text><text x="9.018" y="34.235" class="c">Name</text><text x="26.052" y="34.235" class="c">:</text><text x="28.056" y="34.235" class="c">Star</text></svg><svg x="5112"><use xlink:href="#a"/><use xlink:href="#b" x="11.996" y="34.711"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><text y="36.406" class="c">Platform</text><text x="9.018" y="36.406" class="c">Fea</text></svg><svg x="5325"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="36.882"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><text y="38.577" class="c">Platfor</text></svg><svg x="5538"><use xlink:href="#a"/><use xlink:href="#b" x="7.996" y="39.053"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#19" y="39.078"/></svg><svg x="5751"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="39.053"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/></svg><svg x="5964"><use xlink:href="#a"/><use xlink:href="#b" x="30.996" y="41.224"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><text y="42.919" class="c">Platform</text><text x="9.018" y="42.919" class="c">Timer</text><text x="15.03" y="42.919" class="c">Device</text><text x="26.052" y="42.919" class="c">:</text><text x="28.056" y="42.919" class="c">acl</text></svg><svg x="6177"><use xlink:href="#a"/><use xlink:href="#b" x="7.996" y="43.395"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#19" y="43.42"/></svg><svg x="6390"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="45.566"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><text y="47.261" class="c">Pl</text></svg><svg x="6603"><use xlink:href="#a"/><use xlink:href="#b" x=".996" y="47.737"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><text y="49.432" class="c">P</text></svg><svg x="6816"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="49.908"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/></svg><svg x="7029"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="49.908"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><text y="51.603" class="c">Platform</text><text x="9.018" y="51.603" class="c">Reboot</text><text x="16.032" y="51.603" class="c">Device</text><text x="26.052" y="51.603" class="c">:</text><text x="28.056" y="51.603" class="c">pm-r</text></svg><svg x="7242"><use xlink:href="#a"/><use xlink:href="#b" x="25.996" y="52.079"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><text y="53.774" class="c">Platform</text><text x="9.018" y="53.774" class="c">Shutdown</text><text x="18.036" y="53.774" class="c">Device</text></svg><svg x="7455"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="54.25"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><text y="55.945" class="c">Platform</text><text x="9.018" y="55.945" class="c">Suspend</text><text x="17.034" y="55.945" class="c">Dev</text></svg><svg x="7668"><use xlink:href="#a"/><use xlink:href="#b" x="18.996" y="56.421"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><text y="58.116" class="c">Firmware</text><text x="9.018" y="58.116" class="c">Base</text></svg><svg x="7881"><use xlink:href="#a"/><use xlink:href="#b" x="10.996" y="58.592"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><text y="60.287" class="c">Firmware</text><text x="9.018" y="60.287" class="c">Si</text></svg><svg x="8094"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="60.763"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><text y="62.458" class="c">Firmwar</text></svg><svg x="8307"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="62.934"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><text y="64.629" class="c">Ru</text></svg><svg x="8520"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="65.105"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/></svg><svg x="8733"><use xlink:href="#a"/><use xlink:href="#b" x="30.996" y="67.276"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><text y="68.971" class="c">Domain0</text><text x="8.016" y="68.971" class="c">Name</text><text x="26.052" y="68.971" class="c">:</text><text x="28.056" y="68.971" class="c">roo</text></svg><svg x="8946"><use xlink:href="#a"/><use xlink:href="#b" x="28.996" y="69.447"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/></svg><svg x="9159"><use xlink:href="#a"/><use xlink:href="#b" x="29.996" y="71.618"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><text y="73.313" class="c">Domain0</text><text x="8.016" y="73.313" class="c">HARTs</text><text x="26.052" y="73.313" class="c">:</text><text x="28.056" y="73.313" class="c">0*</text></svg><svg x="9372"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="73.789"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><text y="75.484" class="c">Domain0</text><text x="8.016" y="75.484" class="c">Region00</text></svg><svg x="9585"><use xlink:href="#a"/><use xlink:href="#b" x="49.996" y="73.789"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><text y="75.484" class="c">Domain0</text><text x="8.016" y="75.484" class="c">Region00</text><text x="26.052" y="75.484" class="c">:</text><text x="28.056" y="75.484" class="c">0x0000000002000000-0x0</text></svg><svg x="9798"><use xlink:href="#a"/><use xlink:href="#b" x="81.996" y="73.789"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><text y="75.484" class="c">Domain0</text><text x="8.016" y="75.484" class="c">Region00</text><text x="26.052" y="75.484" class="c">:</text><text x="28.056" y="75.484" class="c">0x0000000002000000-0x000000000200ffff</text><text x="66.132" y="75.484" class="c">M:</text><text x="69.138" y="75.484" class="c">(I,R,W)</text><text x="77.154" y="75.484" class="c">S/U:</text></svg><svg x="10011"><use xlink:href="#a"/><use xlink:href="#b" x="27.996" y="75.96"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><text y="77.655" class="c">Domain0</text><text x="8.016" y="77.655" class="c">Region01</text><text x="26.052" y="77.655" class="c">:</text></svg><svg x="10224"><use xlink:href="#a"/><use xlink:href="#b" x="59.996" y="75.96"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><text y="77.655" class="c">Domain0</text><text x="8.016" y="77.655" class="c">Region01</text><text x="26.052" y="77.655" class="c">:</text><text x="28.056" y="77.655" class="c">0x0000000040000000-0x00000000400</text></svg><svg x="10437"><use xlink:href="#a"/><use xlink:href="#b" x="7.996" y="78.131"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><text y="79.826" class="c">Domain0</text></svg><svg x="10650"><use xlink:href="#a"/><use xlink:href="#b" x="39.996" y="78.131"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><text y="79.826" class="c">Domain0</text><text x="8.016" y="79.826" class="c">Region02</text><text x="26.052" y="79.826" class="c">:</text><text x="28.056" y="79.826" class="c">0x0000000040</text></svg><svg x="10863"><use xlink:href="#a"/><use xlink:href="#b" x="71.996" y="78.131"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><text y="79.826" class="c">Domain0</text><text x="8.016" y="79.826" class="c">Region02</text><text x="26.052" y="79.826" class="c">:</text><text x="28.056" y="79.826" class="c">0x0000000040040000-0x000000004007ffff</text><text x="66.132" y="79.826" class="c">M:</text><text x="69.138" y="79.826" class="c">(R,</text></svg><svg x="11076"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="80.302"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><text y="81.997" class="c">Domain0</text><text x="8.016" y="81.997" class="c">Region03</text></svg><svg x="11289"><use xlink:href="#a"/><use xlink:href="#b" x="51.996" y="80.302"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><text y="81.997" class="c">Domain0</text><text x="8.016" y="81.997" class="c">Region03</text><text x="26.052" y="81.997" class="c">:</text><text x="28.056" y="81.997" class="c">0x0000000000000000-0xfff</text></svg><svg x="11502"><use xlink:href="#a"/><use xlink:href="#b" x="83.996" y="80.302"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><text y="81.997" class="c">Domain0</text><text x="8.016" y="81.997" class="c">Region03</text><text x="26.052" y="81.997" class="c">:</text><text x="28.056" y="81.997" class="c">0x0000000000000000-0xffffffffffffffff</text><text x="66.132" y="81.997" class="c">M:</text><text x="69.138" y="81.997" class="c">(R,W,X)</text><text x="77.154" y="81.997" class="c">S/U:</text><text x="82.164" y="81.997" class="c">(R</text></svg><svg x="11715"><use xlink:href="#a"/><use xlink:href="#b" x="24.996" y="82.473"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><text y="84.168" class="c">Domain0</text><text x="8.016" y="84.168" class="c">Next</text><text x="13.026" y="84.168" class="c">Address</text></svg><svg x="11928"><use xlink:href="#a"/><use xlink:href="#b" x="8.996" y="84.644"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><text y="86.339" class="c">Domain0</text><text x="8.016" y="86.339" class="c">N</text></svg><svg x="12141"><use xlink:href="#a"/><use xlink:href="#b" x="40.996" y="84.644"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><text y="86.339" class="c">Domain0</text><text x="8.016" y="86.339" class="c">Next</text><text x="13.026" y="86.339" class="c">Arg1</text><text x="26.052" y="86.339" class="c">:</text><text x="28.056" y="86.339" class="c">0x00000000422</text></svg><svg x="12354"><use xlink:href="#a"/><use xlink:href="#b" x="24.996" y="86.815"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><use xlink:href="#40" y="84.669"/><text y="88.51" class="c">Domain0</text><text x="8.016" y="88.51" class="c">Next</text><text x="13.026" y="88.51" class="c">Mode</text></svg><svg x="12567"><use xlink:href="#a"/><use xlink:href="#b" x="20.996" y="88.986"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><use xlink:href="#40" y="84.669"/><use xlink:href="#41" y="86.84"/><text y="90.681" class="c">Domain0</text><text x="8.016" y="90.681" class="c">SysReset</text></svg><svg x="12780"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="91.157"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><use xlink:href="#40" y="84.669"/><use xlink:href="#41" y="86.84"/><use xlink:href="#42" y="89.011"/><text y="92.852" class="c">Domain0</text><text x="8.016" y="92.852" class="c">SysSuspend</text></svg><svg x="12993"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="95.499"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><use xlink:href="#40" y="84.669"/><use xlink:href="#41" y="86.84"/><use xlink:href="#42" y="89.011"/><use xlink:href="#43" y="91.182"/><text y="97.194" class="c">Boot</text><text x="5.01" y="97.194" class="c">HART</text><text x="10.02" y="97.194" class="c">ID</text></svg><svg x="13206"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="97.67"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><use xlink:href="#40" y="84.669"/><use xlink:href="#41" y="86.84"/><use xlink:href="#42" y="89.011"/><use xlink:href="#43" y="91.182"/><use xlink:href="#44" y="95.524"/><text y="99.365" class="c">Boot</text><text x="5.01" y="99.365" class="c">HART</text><text x="10.02" y="99.365" class="c">Domain</text></svg><svg x="13419"><use xlink:href="#a"/><use xlink:href="#b" x="15.996" y="99.841"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><use xlink:href="#40" y="84.669"/><use xlink:href="#41" y="86.84"/><use xlink:href="#42" y="89.011"/><use xlink:href="#43" y="91.182"/><use xlink:href="#44" y="95.524"/><use xlink:href="#45" y="97.695"/><text y="101.536" class="c">Boot</text><text x="5.01" y="101.536" class="c">HART</text><text x="10.02" y="101.536" class="c">Priv</text><text x="15.03" y="101.536" class="c">V</text></svg><svg x="13632"><use xlink:href="#a"/><use xlink:href="#b" x="12.996" y="102.012"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><use xlink:href="#40" y="84.669"/><use xlink:href="#41" y="86.84"/><use xlink:href="#42" y="89.011"/><use xlink:href="#43" y="91.182"/><use xlink:href="#44" y="95.524"/><use xlink:href="#45" y="97.695"/><use xlink:href="#46" y="99.866"/><text y="103.707" class="c">Boot</text><text x="5.01" y="103.707" class="c">HART</text><text x="10.02" y="103.707" class="c">Bas</text></svg><svg x="13845"><use xlink:href="#a"/><use xlink:href="#b" x="2.996" y="104.183"/><use xlink:href="#4" y="2.171"/><use xlink:href="#5" y="4.342"/><use xlink:href="#6" y="6.513"/><use xlink:href="#7" y="10.855"/><use xlink:href="#8" y="13.026"/><use xlink:href="#9" y="15.197"/><use xlink:href="#10" y="17.368"/><use xlink:href="#11" y="19.539"/><use xlink:href="#12" y="21.71"/><use xlink:href="#13" y="23.881"/><use xlink:href="#14" y="26.052"/><use xlink:href="#15" y="28.223"/><use xlink:href="#16" y="32.565"/><use xlink:href="#17" y="34.736"/><use xlink:href="#18" y="36.907"/><use xlink:href="#20" y="39.078"/><use xlink:href="#21" y="41.249"/><use xlink:href="#22" y="43.42"/><use xlink:href="#23" y="45.591"/><use xlink:href="#24" y="47.762"/><use xlink:href="#25" y="49.933"/><use xlink:href="#26" y="52.104"/><use xlink:href="#27" y="54.275"/><use xlink:href="#28" y="56.446"/><use xlink:href="#29" y="58.617"/><use xlink:href="#30" y="60.788"/><use xlink:href="#31" y="62.959"/><use xlink:href="#32" y="67.301"/><use xlink:href="#33" y="69.472"/><use xlink:href="#34" y="71.643"/><use xlink:href="#35" y="73.814"/><use xlink:href="#36" y="75.985"/><use xlink:href="#37" y="78.156"/><use xlink:href="#38" y="80.327"/><use xlink:href="#39" y="82.498"/><use xlink:href="#40" y="84.669"/><use xlink:href="#41" y="86.84"/><use xlink:href="#42" y="89.011"/><use xlink:href="#43" y="91.182"/><use xlink:href="#44" y="95.524"/><use xlink:href="#45" y="97.695"/><use xlink:href="#46" y="99.866"/><use xlink:href="#47" y="102.037"/><text y="105.878" class="c">Boo</text></svg><svg x="14058"><use xlink:href="#a"/><use xlink:href="#b" x=".996" y="104.183"/><use xlink:href="#4"/><use xlink:href="#5" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#7" y="8.684"/><use xlink:href="#8" y="10.855"/><use xlink:href="#9" y="13.026"/><use xlink:href="#10" y="15.197"/><use xlink:href="#11" y="17.368"/><use xlink:href="#12" y="19.539"/><use xlink:href="#13" y="21.71"/><use xlink:href="#14" y="23.881"/><use xlink:href="#15" y="26.052"/><use xlink:href="#16" y="30.394"/><use xlink:href="#17" y="32.565"/><use xlink:href="#18" y="34.736"/><use xlink:href="#20" y="36.907"/><use xlink:href="#21" y="39.078"/><use xlink:href="#22" y="41.249"/><use xlink:href="#23" y="43.42"/><use xlink:href="#24" y="45.591"/><use xlink:href="#25" y="47.762"/><use xlink:href="#26" y="49.933"/><use xlink:href="#27" y="52.104"/><use xlink:href="#28" y="54.275"/><use xlink:href="#29" y="56.446"/><use xlink:href="#30" y="58.617"/><use xlink:href="#31" y="60.788"/><use xlink:href="#32" y="65.13"/><use xlink:href="#33" y="67.301"/><use xlink:href="#34" y="69.472"/><use xlink:href="#35" y="71.643"/><use xlink:href="#36" y="73.814"/><use xlink:href="#37" y="75.985"/><use xlink:href="#38" y="78.156"/><use xlink:href="#39" y="80.327"/><use xlink:href="#40" y="82.498"/><use xlink:href="#41" y="84.669"/><use xlink:href="#42" y="86.84"/><use xlink:href="#43" y="89.011"/><use xlink:href="#44" y="93.353"/><use xlink:href="#45" y="95.524"/><use xlink:href="#46" y="97.695"/><use xlink:href="#47" y="99.866"/><use xlink:href="#48" y="102.037"/><use xlink:href="#49" y="104.208"/></svg><svg x="14271"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="104.183"/><use xlink:href="#5"/><use xlink:href="#6" y="2.171"/><use xlink:href="#7" y="6.513"/><use xlink:href="#8" y="8.684"/><use xlink:href="#9" y="10.855"/><use xlink:href="#10" y="13.026"/><use xlink:href="#11" y="15.197"/><use xlink:href="#12" y="17.368"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="28.223"/><use xlink:href="#17" y="30.394"/><use xlink:href="#18" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="52.104"/><use xlink:href="#29" y="54.275"/><use xlink:href="#30" y="56.446"/><use xlink:href="#31" y="58.617"/><use xlink:href="#32" y="62.959"/><use xlink:href="#33" y="65.13"/><use xlink:href="#34" y="67.301"/><use xlink:href="#35" y="69.472"/><use xlink:href="#36" y="71.643"/><use xlink:href="#37" y="73.814"/><use xlink:href="#38" y="75.985"/><use xlink:href="#39" y="78.156"/><use xlink:href="#40" y="80.327"/><use xlink:href="#41" y="82.498"/><use xlink:href="#42" y="84.669"/><use xlink:href="#43" y="86.84"/><use xlink:href="#44" y="91.182"/><use xlink:href="#45" y="93.353"/><use xlink:href="#46" y="95.524"/><use xlink:href="#47" y="97.695"/><use xlink:href="#48" y="99.866"/><use xlink:href="#50" y="102.037"/><text y="105.878" class="c">Bo</text></svg><svg x="14484"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#6"/><use xlink:href="#7" y="4.342"/><use xlink:href="#8" y="6.513"/><use xlink:href="#9" y="8.684"/><use xlink:href="#10" y="10.855"/><use xlink:href="#11" y="13.026"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="17.368"/><use xlink:href="#14" y="19.539"/><use xlink:href="#15" y="21.71"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#20" y="32.565"/><use xlink:href="#21" y="34.736"/><use xlink:href="#22" y="36.907"/><use xlink:href="#23" y="39.078"/><use xlink:href="#24" y="41.249"/><use xlink:href="#25" y="43.42"/><use xlink:href="#26" y="45.591"/><use xlink:href="#27" y="47.762"/><use xlink:href="#28" y="49.933"/><use xlink:href="#29" y="52.104"/><use xlink:href="#30" y="54.275"/><use xlink:href="#31" y="56.446"/><use xlink:href="#32" y="60.788"/><use xlink:href="#33" y="62.959"/><use xlink:href="#34" y="65.13"/><use xlink:href="#35" y="67.301"/><use xlink:href="#36" y="69.472"/><use xlink:href="#37" y="71.643"/><use xlink:href="#38" y="73.814"/><use xlink:href="#39" y="75.985"/><use xlink:href="#40" y="78.156"/><use xlink:href="#41" y="80.327"/><use xlink:href="#42" y="82.498"/><use xlink:href="#43" y="84.669"/><use xlink:href="#44" y="89.011"/><use xlink:href="#45" y="91.182"/><use xlink:href="#46" y="93.353"/><use xlink:href="#47" y="95.524"/><use xlink:href="#48" y="97.695"/><use xlink:href="#50" y="99.866"/><use xlink:href="#51" y="102.037"/></svg><svg x="14697"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#7" y="2.171"/><use xlink:href="#8" y="4.342"/><use xlink:href="#9" y="6.513"/><use xlink:href="#10" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="13.026"/><use xlink:href="#13" y="15.197"/><use xlink:href="#14" y="17.368"/><use xlink:href="#15" y="19.539"/><use xlink:href="#16" y="23.881"/><use xlink:href="#17" y="26.052"/><use xlink:href="#18" y="28.223"/><use xlink:href="#20" y="30.394"/><use xlink:href="#21" y="32.565"/><use xlink:href="#22" y="34.736"/><use xlink:href="#23" y="36.907"/><use xlink:href="#24" y="39.078"/><use xlink:href="#25" y="41.249"/><use xlink:href="#26" y="43.42"/><use xlink:href="#27" y="45.591"/><use xlink:href="#28" y="47.762"/><use xlink:href="#29" y="49.933"/><use xlink:href="#30" y="52.104"/><use xlink:href="#31" y="54.275"/><use xlink:href="#32" y="58.617"/><use xlink:href="#33" y="60.788"/><use xlink:href="#34" y="62.959"/><use xlink:href="#35" y="65.13"/><use xlink:href="#36" y="67.301"/><use xlink:href="#37" y="69.472"/><use xlink:href="#38" y="71.643"/><use xlink:href="#39" y="73.814"/><use xlink:href="#40" y="75.985"/><use xlink:href="#41" y="78.156"/><use xlink:href="#42" y="80.327"/><use xlink:href="#43" y="82.498"/><use xlink:href="#44" y="86.84"/><use xlink:href="#45" y="89.011"/><use xlink:href="#46" y="91.182"/><use xlink:href="#47" y="93.353"/><use xlink:href="#48" y="95.524"/><use xlink:href="#50" y="97.695"/><use xlink:href="#51" y="99.866"/><use xlink:href="#52" y="102.037"/></svg><svg x="14910"><use xlink:href="#a"/><use xlink:href="#b" x=".996" y="104.183"/><use xlink:href="#7"/><use xlink:href="#8" y="2.171"/><use xlink:href="#9" y="4.342"/><use xlink:href="#10" y="6.513"/><use xlink:href="#11" y="8.684"/><use xlink:href="#12" y="10.855"/><use xlink:href="#13" y="13.026"/><use xlink:href="#14" y="15.197"/><use xlink:href="#15" y="17.368"/><use xlink:href="#16" y="21.71"/><use xlink:href="#17" y="23.881"/><use xlink:href="#18" y="26.052"/><use xlink:href="#20" y="28.223"/><use xlink:href="#21" y="30.394"/><use xlink:href="#22" y="32.565"/><use xlink:href="#23" y="34.736"/><use xlink:href="#24" y="36.907"/><use xlink:href="#25" y="39.078"/><use xlink:href="#26" y="41.249"/><use xlink:href="#27" y="43.42"/><use xlink:href="#28" y="45.591"/><use xlink:href="#29" y="47.762"/><use xlink:href="#30" y="49.933"/><use xlink:href="#31" y="52.104"/><use xlink:href="#32" y="56.446"/><use xlink:href="#33" y="58.617"/><use xlink:href="#34" y="60.788"/><use xlink:href="#35" y="62.959"/><use xlink:href="#36" y="65.13"/><use xlink:href="#37" y="67.301"/><use xlink:href="#38" y="69.472"/><use xlink:href="#39" y="71.643"/><use xlink:href="#40" y="73.814"/><use xlink:href="#41" y="75.985"/><use xlink:href="#42" y="78.156"/><use xlink:href="#43" y="80.327"/><use xlink:href="#44" y="84.669"/><use xlink:href="#45" y="86.84"/><use xlink:href="#46" y="89.011"/><use xlink:href="#47" y="91.182"/><use xlink:href="#48" y="93.353"/><use xlink:href="#50" y="95.524"/><use xlink:href="#51" y="97.695"/><use xlink:href="#52" y="99.866"/><use xlink:href="#53" y="102.037"/><use xlink:href="#49" y="104.208"/></svg><svg x="15123"><use xlink:href="#a"/><use xlink:href="#b" x="32.996" y="104.183"/><use xlink:href="#7"/><use xlink:href="#8" y="2.171"/><use xlink:href="#9" y="4.342"/><use xlink:href="#10" y="6.513"/><use xlink:href="#11" y="8.684"/><use xlink:href="#12" y="10.855"/><use xlink:href="#13" y="13.026"/><use xlink:href="#14" y="15.197"/><use xlink:href="#15" y="17.368"/><use xlink:href="#16" y="21.71"/><use xlink:href="#17" y="23.881"/><use xlink:href="#18" y="26.052"/><use xlink:href="#20" y="28.223"/><use xlink:href="#21" y="30.394"/><use xlink:href="#22" y="32.565"/><use xlink:href="#23" y="34.736"/><use xlink:href="#24" y="36.907"/><use xlink:href="#25" y="39.078"/><use xlink:href="#26" y="41.249"/><use xlink:href="#27" y="43.42"/><use xlink:href="#28" y="45.591"/><use xlink:href="#29" y="47.762"/><use xlink:href="#30" y="49.933"/><use xlink:href="#31" y="52.104"/><use xlink:href="#32" y="56.446"/><use xlink:href="#33" y="58.617"/><use xlink:href="#34" y="60.788"/><use xlink:href="#35" y="62.959"/><use xlink:href="#36" y="65.13"/><use xlink:href="#37" y="67.301"/><use xlink:href="#38" y="69.472"/><use xlink:href="#39" y="71.643"/><use xlink:href="#40" y="73.814"/><use xlink:href="#41" y="75.985"/><use xlink:href="#42" y="78.156"/><use xlink:href="#43" y="80.327"/><use xlink:href="#44" y="84.669"/><use xlink:href="#45" y="86.84"/><use xlink:href="#46" y="89.011"/><use xlink:href="#47" y="91.182"/><use xlink:href="#48" y="93.353"/><use xlink:href="#50" y="95.524"/><use xlink:href="#51" y="97.695"/><use xlink:href="#52" y="99.866"/><use xlink:href="#53" y="102.037"/><text y="105.878" class="c">Boot</text><text x="5.01" y="105.878" class="c">HART</text><text x="10.02" y="105.878" class="c">MIDELEG</text><text x="26.052" y="105.878" class="c">:</text><text x="28.056" y="105.878" class="c">0x000</text></svg><svg x="15336"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="104.183"/><use xlink:href="#8"/><use xlink:href="#9" y="2.171"/><use xlink:href="#10" y="4.342"/><use xlink:href="#11" y="6.513"/><use xlink:href="#12" y="8.684"/><use xlink:href="#13" y="10.855"/><use xlink:href="#14" y="13.026"/><use xlink:href="#15" y="15.197"/><use xlink:href="#16" y="19.539"/><use xlink:href="#17" y="21.71"/><use xlink:href="#18" y="23.881"/><use xlink:href="#20" y="26.052"/><use xlink:href="#21" y="28.223"/><use xlink:href="#22" y="30.394"/><use xlink:href="#23" y="32.565"/><use xlink:href="#24" y="34.736"/><use xlink:href="#25" y="36.907"/><use xlink:href="#26" y="39.078"/><use xlink:href="#27" y="41.249"/><use xlink:href="#28" y="43.42"/><use xlink:href="#29" y="45.591"/><use xlink:href="#30" y="47.762"/><use xlink:href="#31" y="49.933"/><use xlink:href="#32" y="54.275"/><use xlink:href="#33" y="56.446"/><use xlink:href="#34" y="58.617"/><use xlink:href="#35" y="60.788"/><use xlink:href="#36" y="62.959"/><use xlink:href="#37" y="65.13"/><use xlink:href="#38" y="67.301"/><use xlink:href="#39" y="69.472"/><use xlink:href="#40" y="71.643"/><use xlink:href="#41" y="73.814"/><use xlink:href="#42" y="75.985"/><use xlink:href="#43" y="78.156"/><use xlink:href="#44" y="82.498"/><use xlink:href="#45" y="84.669"/><use xlink:href="#46" y="86.84"/><use xlink:href="#47" y="89.011"/><use xlink:href="#48" y="91.182"/><use xlink:href="#50" y="93.353"/><use xlink:href="#51" y="95.524"/><use xlink:href="#52" y="97.695"/><use xlink:href="#53" y="99.866"/><use xlink:href="#54" y="102.037"/><text y="105.878" class="c">Boot</text><text x="5.01" y="105.878" class="c">HART</text><text x="10.02" y="105.878" class="c">MEDELEG</text></svg><svg x="15549"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#11" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="17.368"/><use xlink:href="#17" y="19.539"/><use xlink:href="#18" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#25" y="34.736"/><use xlink:href="#26" y="36.907"/><use xlink:href="#27" y="39.078"/><use xlink:href="#28" y="41.249"/><use xlink:href="#29" y="43.42"/><use xlink:href="#30" y="45.591"/><use xlink:href="#31" y="47.762"/><use xlink:href="#32" y="52.104"/><use xlink:href="#33" y="54.275"/><use xlink:href="#34" y="56.446"/><use xlink:href="#35" y="58.617"/><use xlink:href="#36" y="60.788"/><use xlink:href="#37" y="62.959"/><use xlink:href="#38" y="65.13"/><use xlink:href="#39" y="67.301"/><use xlink:href="#40" y="69.472"/><use xlink:href="#41" y="71.643"/><use xlink:href="#42" y="73.814"/><use xlink:href="#43" y="75.985"/><use xlink:href="#44" y="80.327"/><use xlink:href="#45" y="82.498"/><use xlink:href="#46" y="84.669"/><use xlink:href="#47" y="86.84"/><use xlink:href="#48" y="89.011"/><use xlink:href="#50" y="91.182"/><use xlink:href="#51" y="93.353"/><use xlink:href="#52" y="95.524"/><use xlink:href="#53" y="97.695"/><use xlink:href="#54" y="99.866"/><use xlink:href="#55" y="102.037"/></svg><svg x="15762"><use xlink:href="#a"/><use xlink:href="#b" x="27.996" y="104.183"/><use xlink:href="#11"/><use xlink:href="#12" y="2.171"/><use xlink:href="#13" y="4.342"/><use xlink:href="#14" y="6.513"/><use xlink:href="#15" y="8.684"/><use xlink:href="#16" y="13.026"/><use xlink:href="#17" y="15.197"/><use xlink:href="#18" y="17.368"/><use xlink:href="#20" y="19.539"/><use xlink:href="#21" y="21.71"/><use xlink:href="#22" y="23.881"/><use xlink:href="#23" y="26.052"/><use xlink:href="#24" y="28.223"/><use xlink:href="#25" y="30.394"/><use xlink:href="#26" y="32.565"/><use xlink:href="#27" y="34.736"/><use xlink:href="#28" y="36.907"/><use xlink:href="#29" y="39.078"/><use xlink:href="#30" y="41.249"/><use xlink:href="#31" y="43.42"/><use xlink:href="#32" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#41" y="67.301"/><use xlink:href="#42" y="69.472"/><use xlink:href="#43" y="71.643"/><use xlink:href="#44" y="75.985"/><use xlink:href="#45" y="78.156"/><use xlink:href="#46" y="80.327"/><use xlink:href="#47" y="82.498"/><use xlink:href="#48" y="84.669"/><use xlink:href="#50" y="86.84"/><use xlink:href="#51" y="89.011"/><use xlink:href="#52" y="91.182"/><use xlink:href="#53" y="93.353"/><use xlink:href="#54" y="95.524"/><use xlink:href="#55" y="97.695"/><text y="105.878" class="c">U-Boot</text><text x="7.014" y="105.878" class="c">2021.10</text><text x="15.03" y="105.878" class="c">(May</text><text x="20.04" y="105.878" class="c">09</text><text x="23.046" y="105.878" class="c">2024</text></svg><svg x="15975"><use xlink:href="#a"/><use xlink:href="#b" x="59.996" y="104.183"/><use xlink:href="#11"/><use xlink:href="#12" y="2.171"/><use xlink:href="#13" y="4.342"/><use xlink:href="#14" y="6.513"/><use xlink:href="#15" y="8.684"/><use xlink:href="#16" y="13.026"/><use xlink:href="#17" y="15.197"/><use xlink:href="#18" y="17.368"/><use xlink:href="#20" y="19.539"/><use xlink:href="#21" y="21.71"/><use xlink:href="#22" y="23.881"/><use xlink:href="#23" y="26.052"/><use xlink:href="#24" y="28.223"/><use xlink:href="#25" y="30.394"/><use xlink:href="#26" y="32.565"/><use xlink:href="#27" y="34.736"/><use xlink:href="#28" y="36.907"/><use xlink:href="#29" y="39.078"/><use xlink:href="#30" y="41.249"/><use xlink:href="#31" y="43.42"/><use xlink:href="#32" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#41" y="67.301"/><use xlink:href="#42" y="69.472"/><use xlink:href="#43" y="71.643"/><use xlink:href="#44" y="75.985"/><use xlink:href="#45" y="78.156"/><use xlink:href="#46" y="80.327"/><use xlink:href="#47" y="82.498"/><use xlink:href="#48" y="84.669"/><use xlink:href="#50" y="86.84"/><use xlink:href="#51" y="89.011"/><use xlink:href="#52" y="91.182"/><use xlink:href="#53" y="93.353"/><use xlink:href="#54" y="95.524"/><use xlink:href="#55" y="97.695"/><text y="105.878" class="c">U-Boot</text><text x="7.014" y="105.878" class="c">2021.10</text><text x="15.03" y="105.878" class="c">(May</text><text x="20.04" y="105.878" class="c">09</text><text x="23.046" y="105.878" class="c">2024</text><text x="28.056" y="105.878" class="c">-</text><text x="30.06" y="105.878" class="c">22:42:02</text><text x="39.078" y="105.878" class="c">+0800),</text><text x="47.094" y="105.878" class="c">Build:</text><text x="54.108" y="105.878" class="c">jenkin</text></svg><svg x="16188"><use xlink:href="#a"/><use xlink:href="#b" x="4.996" y="104.183"/><use xlink:href="#13"/><use xlink:href="#14" y="2.171"/><use xlink:href="#15" y="4.342"/><use xlink:href="#16" y="8.684"/><use xlink:href="#17" y="10.855"/><use xlink:href="#18" y="13.026"/><use xlink:href="#20" y="15.197"/><use xlink:href="#21" y="17.368"/><use xlink:href="#22" y="19.539"/><use xlink:href="#23" y="21.71"/><use xlink:href="#24" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="43.42"/><use xlink:href="#33" y="45.591"/><use xlink:href="#34" y="47.762"/><use xlink:href="#35" y="49.933"/><use xlink:href="#36" y="52.104"/><use xlink:href="#37" y="54.275"/><use xlink:href="#38" y="56.446"/><use xlink:href="#39" y="58.617"/><use xlink:href="#40" y="60.788"/><use xlink:href="#41" y="62.959"/><use xlink:href="#42" y="65.13"/><use xlink:href="#43" y="67.301"/><use xlink:href="#44" y="71.643"/><use xlink:href="#45" y="73.814"/><use xlink:href="#46" y="75.985"/><use xlink:href="#47" y="78.156"/><use xlink:href="#48" y="80.327"/><use xlink:href="#50" y="82.498"/><use xlink:href="#51" y="84.669"/><use xlink:href="#52" y="86.84"/><use xlink:href="#53" y="89.011"/><use xlink:href="#54" y="91.182"/><use xlink:href="#55" y="93.353"/><use xlink:href="#56" y="99.866"/><text y="105.878" class="c">CPU:</text></svg><svg x="16401"><use xlink:href="#a"/><use xlink:href="#b" x="10.996" y="104.183"/><use xlink:href="#14"/><use xlink:href="#15" y="2.171"/><use xlink:href="#16" y="6.513"/><use xlink:href="#17" y="8.684"/><use xlink:href="#18" y="10.855"/><use xlink:href="#20" y="13.026"/><use xlink:href="#21" y="15.197"/><use xlink:href="#22" y="17.368"/><use xlink:href="#23" y="19.539"/><use xlink:href="#24" y="21.71"/><use xlink:href="#25" y="23.881"/><use xlink:href="#26" y="26.052"/><use xlink:href="#27" y="28.223"/><use xlink:href="#28" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="34.736"/><use xlink:href="#31" y="36.907"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#44" y="69.472"/><use xlink:href="#45" y="71.643"/><use xlink:href="#46" y="73.814"/><use xlink:href="#47" y="75.985"/><use xlink:href="#48" y="78.156"/><use xlink:href="#50" y="80.327"/><use xlink:href="#51" y="82.498"/><use xlink:href="#52" y="84.669"/><use xlink:href="#53" y="86.84"/><use xlink:href="#54" y="89.011"/><use xlink:href="#55" y="91.182"/><use xlink:href="#56" y="97.695"/><use xlink:href="#57" y="102.037"/><text y="105.878" class="c">Model:</text><text x="7.014" y="105.878" class="c">Star</text></svg><svg x="16614"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="104.183"/><use xlink:href="#15"/><use xlink:href="#16" y="4.342"/><use xlink:href="#17" y="6.513"/><use xlink:href="#18" y="8.684"/><use xlink:href="#20" y="10.855"/><use xlink:href="#21" y="13.026"/><use xlink:href="#22" y="15.197"/><use xlink:href="#23" y="17.368"/><use xlink:href="#24" y="19.539"/><use xlink:href="#25" y="21.71"/><use xlink:href="#26" y="23.881"/><use xlink:href="#27" y="26.052"/><use xlink:href="#28" y="28.223"/><use xlink:href="#29" y="30.394"/><use xlink:href="#30" y="32.565"/><use xlink:href="#31" y="34.736"/><use xlink:href="#32" y="39.078"/><use xlink:href="#33" y="41.249"/><use xlink:href="#34" y="43.42"/><use xlink:href="#35" y="45.591"/><use xlink:href="#36" y="47.762"/><use xlink:href="#37" y="49.933"/><use xlink:href="#38" y="52.104"/><use xlink:href="#39" y="54.275"/><use xlink:href="#40" y="56.446"/><use xlink:href="#41" y="58.617"/><use xlink:href="#42" y="60.788"/><use xlink:href="#43" y="62.959"/><use xlink:href="#44" y="67.301"/><use xlink:href="#45" y="69.472"/><use xlink:href="#46" y="71.643"/><use xlink:href="#47" y="73.814"/><use xlink:href="#48" y="75.985"/><use xlink:href="#50" y="78.156"/><use xlink:href="#51" y="80.327"/><use xlink:href="#52" y="82.498"/><use xlink:href="#53" y="84.669"/><use xlink:href="#54" y="86.84"/><use xlink:href="#55" y="89.011"/><use xlink:href="#56" y="95.524"/><use xlink:href="#57" y="99.866"/><use xlink:href="#58" y="102.037"/><text y="105.878" class="c">DRAM:</text></svg><svg x="16827"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#16" y="2.171"/><use xlink:href="#17" y="4.342"/><use xlink:href="#18" y="6.513"/><use xlink:href="#20" y="8.684"/><use xlink:href="#21" y="10.855"/><use xlink:href="#22" y="13.026"/><use xlink:href="#23" y="15.197"/><use xlink:href="#24" y="17.368"/><use xlink:href="#25" y="19.539"/><use xlink:href="#26" y="21.71"/><use xlink:href="#27" y="23.881"/><use xlink:href="#28" y="26.052"/><use xlink:href="#29" y="28.223"/><use xlink:href="#30" y="30.394"/><use xlink:href="#31" y="32.565"/><use xlink:href="#32" y="36.907"/><use xlink:href="#33" y="39.078"/><use xlink:href="#34" y="41.249"/><use xlink:href="#35" y="43.42"/><use xlink:href="#36" y="45.591"/><use xlink:href="#37" y="47.762"/><use xlink:href="#38" y="49.933"/><use xlink:href="#39" y="52.104"/><use xlink:href="#40" y="54.275"/><use xlink:href="#41" y="56.446"/><use xlink:href="#42" y="58.617"/><use xlink:href="#43" y="60.788"/><use xlink:href="#44" y="65.13"/><use xlink:href="#45" y="67.301"/><use xlink:href="#46" y="69.472"/><use xlink:href="#47" y="71.643"/><use xlink:href="#48" y="73.814"/><use xlink:href="#50" y="75.985"/><use xlink:href="#51" y="78.156"/><use xlink:href="#52" y="80.327"/><use xlink:href="#53" y="82.498"/><use xlink:href="#54" y="84.669"/><use xlink:href="#55" y="86.84"/><use xlink:href="#56" y="93.353"/><use xlink:href="#57" y="97.695"/><use xlink:href="#58" y="99.866"/><use xlink:href="#59" y="102.037"/></svg><svg x="17040"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="104.183"/><use xlink:href="#16" y="2.171"/><use xlink:href="#17" y="4.342"/><use xlink:href="#18" y="6.513"/><use xlink:href="#20" y="8.684"/><use xlink:href="#21" y="10.855"/><use xlink:href="#22" y="13.026"/><use xlink:href="#23" y="15.197"/><use xlink:href="#24" y="17.368"/><use xlink:href="#25" y="19.539"/><use xlink:href="#26" y="21.71"/><use xlink:href="#27" y="23.881"/><use xlink:href="#28" y="26.052"/><use xlink:href="#29" y="28.223"/><use xlink:href="#30" y="30.394"/><use xlink:href="#31" y="32.565"/><use xlink:href="#32" y="36.907"/><use xlink:href="#33" y="39.078"/><use xlink:href="#34" y="41.249"/><use xlink:href="#35" y="43.42"/><use xlink:href="#36" y="45.591"/><use xlink:href="#37" y="47.762"/><use xlink:href="#38" y="49.933"/><use xlink:href="#39" y="52.104"/><use xlink:href="#40" y="54.275"/><use xlink:href="#41" y="56.446"/><use xlink:href="#42" y="58.617"/><use xlink:href="#43" y="60.788"/><use xlink:href="#44" y="65.13"/><use xlink:href="#45" y="67.301"/><use xlink:href="#46" y="69.472"/><use xlink:href="#47" y="71.643"/><use xlink:href="#48" y="73.814"/><use xlink:href="#50" y="75.985"/><use xlink:href="#51" y="78.156"/><use xlink:href="#52" y="80.327"/><use xlink:href="#53" y="82.498"/><use xlink:href="#54" y="84.669"/><use xlink:href="#55" y="86.84"/><use xlink:href="#56" y="93.353"/><use xlink:href="#57" y="97.695"/><use xlink:href="#58" y="99.866"/><use xlink:href="#59" y="102.037"/><text y="105.878" class="c">MMC:</text></svg><svg x="17253"><use xlink:href="#a"/><use xlink:href="#b" x="38.996" y="104.183"/><use xlink:href="#16" y="2.171"/><use xlink:href="#17" y="4.342"/><use xlink:href="#18" y="6.513"/><use xlink:href="#20" y="8.684"/><use xlink:href="#21" y="10.855"/><use xlink:href="#22" y="13.026"/><use xlink:href="#23" y="15.197"/><use xlink:href="#24" y="17.368"/><use xlink:href="#25" y="19.539"/><use xlink:href="#26" y="21.71"/><use xlink:href="#27" y="23.881"/><use xlink:href="#28" y="26.052"/><use xlink:href="#29" y="28.223"/><use xlink:href="#30" y="30.394"/><use xlink:href="#31" y="32.565"/><use xlink:href="#32" y="36.907"/><use xlink:href="#33" y="39.078"/><use xlink:href="#34" y="41.249"/><use xlink:href="#35" y="43.42"/><use xlink:href="#36" y="45.591"/><use xlink:href="#37" y="47.762"/><use xlink:href="#38" y="49.933"/><use xlink:href="#39" y="52.104"/><use xlink:href="#40" y="54.275"/><use xlink:href="#41" y="56.446"/><use xlink:href="#42" y="58.617"/><use xlink:href="#43" y="60.788"/><use xlink:href="#44" y="65.13"/><use xlink:href="#45" y="67.301"/><use xlink:href="#46" y="69.472"/><use xlink:href="#47" y="71.643"/><use xlink:href="#48" y="73.814"/><use xlink:href="#50" y="75.985"/><use xlink:href="#51" y="78.156"/><use xlink:href="#52" y="80.327"/><use xlink:href="#53" y="82.498"/><use xlink:href="#54" y="84.669"/><use xlink:href="#55" y="86.84"/><use xlink:href="#56" y="93.353"/><use xlink:href="#57" y="97.695"/><use xlink:href="#58" y="99.866"/><use xlink:href="#59" y="102.037"/><text y="105.878" class="c">MMC:</text><text x="7.014" y="105.878" class="c">sdio0@16010000:</text><text x="23.046" y="105.878" class="c">0,</text><text x="26.052" y="105.878" class="c">sdio1@1602000</text></svg><svg x="17466"><use xlink:href="#a"/><use xlink:href="#b" x="25.996" y="104.183"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#20" y="6.513"/><use xlink:href="#21" y="8.684"/><use xlink:href="#22" y="10.855"/><use xlink:href="#23" y="13.026"/><use xlink:href="#24" y="15.197"/><use xlink:href="#25" y="17.368"/><use xlink:href="#26" y="19.539"/><use xlink:href="#27" y="21.71"/><use xlink:href="#28" y="23.881"/><use xlink:href="#29" y="26.052"/><use xlink:href="#30" y="28.223"/><use xlink:href="#31" y="30.394"/><use xlink:href="#32" y="34.736"/><use xlink:href="#33" y="36.907"/><use xlink:href="#34" y="39.078"/><use xlink:href="#35" y="41.249"/><use xlink:href="#36" y="43.42"/><use xlink:href="#37" y="45.591"/><use xlink:href="#38" y="47.762"/><use xlink:href="#39" y="49.933"/><use xlink:href="#40" y="52.104"/><use xlink:href="#41" y="54.275"/><use xlink:href="#42" y="56.446"/><use xlink:href="#43" y="58.617"/><use xlink:href="#44" y="62.959"/><use xlink:href="#45" y="65.13"/><use xlink:href="#46" y="67.301"/><use xlink:href="#47" y="69.472"/><use xlink:href="#48" y="71.643"/><use xlink:href="#50" y="73.814"/><use xlink:href="#51" y="75.985"/><use xlink:href="#52" y="78.156"/><use xlink:href="#53" y="80.327"/><use xlink:href="#54" y="82.498"/><use xlink:href="#55" y="84.669"/><use xlink:href="#56" y="91.182"/><use xlink:href="#57" y="95.524"/><use xlink:href="#58" y="97.695"/><use xlink:href="#59" y="99.866"/><use xlink:href="#60" y="102.037"/><text y="105.878" class="c">Loading</text><text x="8.016" y="105.878" class="c">Environment</text><text x="20.04" y="105.878" class="c">from</text><text x="25.05" y="105.878" class="c">S</text></svg><svg x="17679"><use xlink:href="#a"/><use xlink:href="#b" x="36.996" y="104.183"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#20" y="6.513"/><use xlink:href="#21" y="8.684"/><use xlink:href="#22" y="10.855"/><use xlink:href="#23" y="13.026"/><use xlink:href="#24" y="15.197"/><use xlink:href="#25" y="17.368"/><use xlink:href="#26" y="19.539"/><use xlink:href="#27" y="21.71"/><use xlink:href="#28" y="23.881"/><use xlink:href="#29" y="26.052"/><use xlink:href="#30" y="28.223"/><use xlink:href="#31" y="30.394"/><use xlink:href="#32" y="34.736"/><use xlink:href="#33" y="36.907"/><use xlink:href="#34" y="39.078"/><use xlink:href="#35" y="41.249"/><use xlink:href="#36" y="43.42"/><use xlink:href="#37" y="45.591"/><use xlink:href="#38" y="47.762"/><use xlink:href="#39" y="49.933"/><use xlink:href="#40" y="52.104"/><use xlink:href="#41" y="54.275"/><use xlink:href="#42" y="56.446"/><use xlink:href="#43" y="58.617"/><use xlink:href="#44" y="62.959"/><use xlink:href="#45" y="65.13"/><use xlink:href="#46" y="67.301"/><use xlink:href="#47" y="69.472"/><use xlink:href="#48" y="71.643"/><use xlink:href="#50" y="73.814"/><use xlink:href="#51" y="75.985"/><use xlink:href="#52" y="78.156"/><use xlink:href="#53" y="80.327"/><use xlink:href="#54" y="82.498"/><use xlink:href="#55" y="84.669"/><use xlink:href="#56" y="91.182"/><use xlink:href="#57" y="95.524"/><use xlink:href="#58" y="97.695"/><use xlink:href="#59" y="99.866"/><use xlink:href="#60" y="102.037"/><text y="105.878" class="c">Loading</text><text x="8.016" y="105.878" class="c">Environment</text><text x="20.04" y="105.878" class="c">from</text><text x="25.05" y="105.878" class="c">SPIFlash...</text></svg><svg x="17892"><use xlink:href="#a"/><use xlink:href="#b" x="68.996" y="104.183"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#20" y="6.513"/><use xlink:href="#21" y="8.684"/><use xlink:href="#22" y="10.855"/><use xlink:href="#23" y="13.026"/><use xlink:href="#24" y="15.197"/><use xlink:href="#25" y="17.368"/><use xlink:href="#26" y="19.539"/><use xlink:href="#27" y="21.71"/><use xlink:href="#28" y="23.881"/><use xlink:href="#29" y="26.052"/><use xlink:href="#30" y="28.223"/><use xlink:href="#31" y="30.394"/><use xlink:href="#32" y="34.736"/><use xlink:href="#33" y="36.907"/><use xlink:href="#34" y="39.078"/><use xlink:href="#35" y="41.249"/><use xlink:href="#36" y="43.42"/><use xlink:href="#37" y="45.591"/><use xlink:href="#38" y="47.762"/><use xlink:href="#39" y="49.933"/><use xlink:href="#40" y="52.104"/><use xlink:href="#41" y="54.275"/><use xlink:href="#42" y="56.446"/><use xlink:href="#43" y="58.617"/><use xlink:href="#44" y="62.959"/><use xlink:href="#45" y="65.13"/><use xlink:href="#46" y="67.301"/><use xlink:href="#47" y="69.472"/><use xlink:href="#48" y="71.643"/><use xlink:href="#50" y="73.814"/><use xlink:href="#51" y="75.985"/><use xlink:href="#52" y="78.156"/><use xlink:href="#53" y="80.327"/><use xlink:href="#54" y="82.498"/><use xlink:href="#55" y="84.669"/><use xlink:href="#56" y="91.182"/><use xlink:href="#57" y="95.524"/><use xlink:href="#58" y="97.695"/><use xlink:href="#59" y="99.866"/><use xlink:href="#60" y="102.037"/><text y="105.878" class="c">Loading</text><text x="8.016" y="105.878" class="c">Environment</text><text x="20.04" y="105.878" class="c">from</text><text x="25.05" y="105.878" class="c">SPIFlash...</text><text x="37.074" y="105.878" class="c">SF:</text><text x="41.082" y="105.878" class="c">Detected</text><text x="50.1" y="105.878" class="c">gd25lq128</text><text x="60.12" y="105.878" class="c">with</text><text x="65.13" y="105.878" class="c">page</text></svg><svg x="18105"><use xlink:href="#a"/><use xlink:href="#b" x="100.996" y="104.183"/><use xlink:href="#16"/><use xlink:href="#17" y="2.171"/><use xlink:href="#18" y="4.342"/><use xlink:href="#20" y="6.513"/><use xlink:href="#21" y="8.684"/><use xlink:href="#22" y="10.855"/><use xlink:href="#23" y="13.026"/><use xlink:href="#24" y="15.197"/><use xlink:href="#25" y="17.368"/><use xlink:href="#26" y="19.539"/><use xlink:href="#27" y="21.71"/><use xlink:href="#28" y="23.881"/><use xlink:href="#29" y="26.052"/><use xlink:href="#30" y="28.223"/><use xlink:href="#31" y="30.394"/><use xlink:href="#32" y="34.736"/><use xlink:href="#33" y="36.907"/><use xlink:href="#34" y="39.078"/><use xlink:href="#35" y="41.249"/><use xlink:href="#36" y="43.42"/><use xlink:href="#37" y="45.591"/><use xlink:href="#38" y="47.762"/><use xlink:href="#39" y="49.933"/><use xlink:href="#40" y="52.104"/><use xlink:href="#41" y="54.275"/><use xlink:href="#42" y="56.446"/><use xlink:href="#43" y="58.617"/><use xlink:href="#44" y="62.959"/><use xlink:href="#45" y="65.13"/><use xlink:href="#46" y="67.301"/><use xlink:href="#47" y="69.472"/><use xlink:href="#48" y="71.643"/><use xlink:href="#50" y="73.814"/><use xlink:href="#51" y="75.985"/><use xlink:href="#52" y="78.156"/><use xlink:href="#53" y="80.327"/><use xlink:href="#54" y="82.498"/><use xlink:href="#55" y="84.669"/><use xlink:href="#56" y="91.182"/><use xlink:href="#57" y="95.524"/><use xlink:href="#58" y="97.695"/><use xlink:href="#59" y="99.866"/><use xlink:href="#60" y="102.037"/><text y="105.878" class="c">Loading</text><text x="8.016" y="105.878" class="c">Environment</text><text x="20.04" y="105.878" class="c">from</text><text x="25.05" y="105.878" class="c">SPIFlash...</text><text x="37.074" y="105.878" class="c">SF:</text><text x="41.082" y="105.878" class="c">Detected</text><text x="50.1" y="105.878" class="c">gd25lq128</text><text x="60.12" y="105.878" class="c">with</text><text x="65.13" y="105.878" class="c">page</text><text x="70.14" y="105.878" class="c">size</text><text x="75.15" y="105.878" class="c">256</text><text x="79.158" y="105.878" class="c">Bytes,</text><text x="86.172" y="105.878" class="c">erase</text><text x="92.184" y="105.878" class="c">size</text><text x="97.194" y="105.878" class="c">4</text><text x="99.198" y="105.878" class="c">Ki</text></svg><svg x="18318"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#17"/><use xlink:href="#18" y="2.171"/><use xlink:href="#20" y="4.342"/><use xlink:href="#21" y="6.513"/><use xlink:href="#22" y="8.684"/><use xlink:href="#23" y="10.855"/><use xlink:href="#24" y="13.026"/><use xlink:href="#25" y="15.197"/><use xlink:href="#26" y="17.368"/><use xlink:href="#27" y="19.539"/><use xlink:href="#28" y="21.71"/><use xlink:href="#29" y="23.881"/><use xlink:href="#30" y="26.052"/><use xlink:href="#31" y="28.223"/><use xlink:href="#32" y="32.565"/><use xlink:href="#33" y="34.736"/><use xlink:href="#34" y="36.907"/><use xlink:href="#35" y="39.078"/><use xlink:href="#36" y="41.249"/><use xlink:href="#37" y="43.42"/><use xlink:href="#38" y="45.591"/><use xlink:href="#39" y="47.762"/><use xlink:href="#40" y="49.933"/><use xlink:href="#41" y="52.104"/><use xlink:href="#42" y="54.275"/><use xlink:href="#43" y="56.446"/><use xlink:href="#44" y="60.788"/><use xlink:href="#45" y="62.959"/><use xlink:href="#46" y="65.13"/><use xlink:href="#47" y="67.301"/><use xlink:href="#48" y="69.472"/><use xlink:href="#50" y="71.643"/><use xlink:href="#51" y="73.814"/><use xlink:href="#52" y="75.985"/><use xlink:href="#53" y="78.156"/><use xlink:href="#54" y="80.327"/><use xlink:href="#55" y="82.498"/><use xlink:href="#56" y="89.011"/><use xlink:href="#57" y="93.353"/><use xlink:href="#58" y="95.524"/><use xlink:href="#59" y="97.695"/><use xlink:href="#60" y="99.866"/><use xlink:href="#61" y="102.037"/></svg><svg x="18531"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#17"/><use xlink:href="#18" y="2.171"/><use xlink:href="#20" y="4.342"/><use xlink:href="#21" y="6.513"/><use xlink:href="#22" y="8.684"/><use xlink:href="#23" y="10.855"/><use xlink:href="#24" y="13.026"/><use xlink:href="#25" y="15.197"/><use xlink:href="#26" y="17.368"/><use xlink:href="#27" y="19.539"/><use xlink:href="#28" y="21.71"/><use xlink:href="#29" y="23.881"/><use xlink:href="#30" y="26.052"/><use xlink:href="#31" y="28.223"/><use xlink:href="#32" y="32.565"/><use xlink:href="#33" y="34.736"/><use xlink:href="#34" y="36.907"/><use xlink:href="#35" y="39.078"/><use xlink:href="#36" y="41.249"/><use xlink:href="#37" y="43.42"/><use xlink:href="#38" y="45.591"/><use xlink:href="#39" y="47.762"/><use xlink:href="#40" y="49.933"/><use xlink:href="#41" y="52.104"/><use xlink:href="#42" y="54.275"/><use xlink:href="#43" y="56.446"/><use xlink:href="#44" y="60.788"/><use xlink:href="#45" y="62.959"/><use xlink:href="#46" y="65.13"/><use xlink:href="#47" y="67.301"/><use xlink:href="#48" y="69.472"/><use xlink:href="#50" y="71.643"/><use xlink:href="#51" y="73.814"/><use xlink:href="#52" y="75.985"/><use xlink:href="#53" y="78.156"/><use xlink:href="#54" y="80.327"/><use xlink:href="#55" y="82.498"/><use xlink:href="#56" y="89.011"/><use xlink:href="#57" y="93.353"/><use xlink:href="#58" y="95.524"/><use xlink:href="#59" y="97.695"/><use xlink:href="#60" y="99.866"/><use xlink:href="#61" y="102.037"/><text y="105.878" class="c">***</text><text x="4.008" y="105.878" class="c">Warning</text><text x="12.024" y="105.878" class="c">-</text><text x="14.028" y="105.878" class="c">bad</text><text x="18.036" y="105.878" class="c">CRC,</text><text x="23.046" y="105.878" class="c">using</text><text x="29.058" y="105.878" class="c">def</text></svg><svg x="18744"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#20"/><use xlink:href="#21" y="2.171"/><use xlink:href="#22" y="4.342"/><use xlink:href="#23" y="6.513"/><use xlink:href="#24" y="8.684"/><use xlink:href="#25" y="10.855"/><use xlink:href="#26" y="13.026"/><use xlink:href="#27" y="15.197"/><use xlink:href="#28" y="17.368"/><use xlink:href="#29" y="19.539"/><use xlink:href="#30" y="21.71"/><use xlink:href="#31" y="23.881"/><use xlink:href="#32" y="28.223"/><use xlink:href="#33" y="30.394"/><use xlink:href="#34" y="32.565"/><use xlink:href="#35" y="34.736"/><use xlink:href="#36" y="36.907"/><use xlink:href="#37" y="39.078"/><use xlink:href="#38" y="41.249"/><use xlink:href="#39" y="43.42"/><use xlink:href="#40" y="45.591"/><use xlink:href="#41" y="47.762"/><use xlink:href="#42" y="49.933"/><use xlink:href="#43" y="52.104"/><use xlink:href="#44" y="56.446"/><use xlink:href="#45" y="58.617"/><use xlink:href="#46" y="60.788"/><use xlink:href="#47" y="62.959"/><use xlink:href="#48" y="65.13"/><use xlink:href="#50" y="67.301"/><use xlink:href="#51" y="69.472"/><use xlink:href="#52" y="71.643"/><use xlink:href="#53" y="73.814"/><use xlink:href="#54" y="75.985"/><use xlink:href="#55" y="78.156"/><use xlink:href="#56" y="84.669"/><use xlink:href="#57" y="89.011"/><use xlink:href="#58" y="91.182"/><use xlink:href="#59" y="93.353"/><use xlink:href="#60" y="95.524"/><use xlink:href="#61" y="97.695"/><use xlink:href="#62" y="99.866"/></svg><svg x="18957"><use xlink:href="#a"/><use xlink:href="#b" x="2.996" y="104.183"/><use xlink:href="#22"/><use xlink:href="#23" y="2.171"/><use xlink:href="#24" y="4.342"/><use xlink:href="#25" y="6.513"/><use xlink:href="#26" y="8.684"/><use xlink:href="#27" y="10.855"/><use xlink:href="#28" y="13.026"/><use xlink:href="#29" y="15.197"/><use xlink:href="#30" y="17.368"/><use xlink:href="#31" y="19.539"/><use xlink:href="#32" y="23.881"/><use xlink:href="#33" y="26.052"/><use xlink:href="#34" y="28.223"/><use xlink:href="#35" y="30.394"/><use xlink:href="#36" y="32.565"/><use xlink:href="#37" y="34.736"/><use xlink:href="#38" y="36.907"/><use xlink:href="#39" y="39.078"/><use xlink:href="#40" y="41.249"/><use xlink:href="#41" y="43.42"/><use xlink:href="#42" y="45.591"/><use xlink:href="#43" y="47.762"/><use xlink:href="#44" y="52.104"/><use xlink:href="#45" y="54.275"/><use xlink:href="#46" y="56.446"/><use xlink:href="#47" y="58.617"/><use xlink:href="#48" y="60.788"/><use xlink:href="#50" y="62.959"/><use xlink:href="#51" y="65.13"/><use xlink:href="#52" y="67.301"/><use xlink:href="#53" y="69.472"/><use xlink:href="#54" y="71.643"/><use xlink:href="#55" y="73.814"/><use xlink:href="#56" y="80.327"/><use xlink:href="#57" y="84.669"/><use xlink:href="#58" y="86.84"/><use xlink:href="#59" y="89.011"/><use xlink:href="#60" y="91.182"/><use xlink:href="#61" y="93.353"/><use xlink:href="#62" y="95.524"/><use xlink:href="#63" y="99.866"/><text y="105.878" class="c">---</text></svg><svg x="19170"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="104.183"/><use xlink:href="#23"/><use xlink:href="#24" y="2.171"/><use xlink:href="#25" y="4.342"/><use xlink:href="#26" y="6.513"/><use xlink:href="#27" y="8.684"/><use xlink:href="#28" y="10.855"/><use xlink:href="#29" y="13.026"/><use xlink:href="#30" y="15.197"/><use xlink:href="#31" y="17.368"/><use xlink:href="#32" y="21.71"/><use xlink:href="#33" y="23.881"/><use xlink:href="#34" y="26.052"/><use xlink:href="#35" y="28.223"/><use xlink:href="#36" y="30.394"/><use xlink:href="#37" y="32.565"/><use xlink:href="#38" y="34.736"/><use xlink:href="#39" y="36.907"/><use xlink:href="#40" y="39.078"/><use xlink:href="#41" y="41.249"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="49.933"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#50" y="60.788"/><use xlink:href="#51" y="62.959"/><use xlink:href="#52" y="65.13"/><use xlink:href="#53" y="67.301"/><use xlink:href="#54" y="69.472"/><use xlink:href="#55" y="71.643"/><use xlink:href="#56" y="78.156"/><use xlink:href="#57" y="82.498"/><use xlink:href="#58" y="84.669"/><use xlink:href="#59" y="86.84"/><use xlink:href="#60" y="89.011"/><use xlink:href="#61" y="91.182"/><use xlink:href="#62" y="93.353"/><use xlink:href="#63" y="97.695"/><use xlink:href="#64" y="102.037"/><text y="105.878" class="c">Vendor</text></svg><svg x="19383"><use xlink:href="#a"/><use xlink:href="#b" x="37.996" y="104.183"/><use xlink:href="#23"/><use xlink:href="#24" y="2.171"/><use xlink:href="#25" y="4.342"/><use xlink:href="#26" y="6.513"/><use xlink:href="#27" y="8.684"/><use xlink:href="#28" y="10.855"/><use xlink:href="#29" y="13.026"/><use xlink:href="#30" y="15.197"/><use xlink:href="#31" y="17.368"/><use xlink:href="#32" y="21.71"/><use xlink:href="#33" y="23.881"/><use xlink:href="#34" y="26.052"/><use xlink:href="#35" y="28.223"/><use xlink:href="#36" y="30.394"/><use xlink:href="#37" y="32.565"/><use xlink:href="#38" y="34.736"/><use xlink:href="#39" y="36.907"/><use xlink:href="#40" y="39.078"/><use xlink:href="#41" y="41.249"/><use xlink:href="#42" y="43.42"/><use xlink:href="#43" y="45.591"/><use xlink:href="#44" y="49.933"/><use xlink:href="#45" y="52.104"/><use xlink:href="#46" y="54.275"/><use xlink:href="#47" y="56.446"/><use xlink:href="#48" y="58.617"/><use xlink:href="#50" y="60.788"/><use xlink:href="#51" y="62.959"/><use xlink:href="#52" y="65.13"/><use xlink:href="#53" y="67.301"/><use xlink:href="#54" y="69.472"/><use xlink:href="#55" y="71.643"/><use xlink:href="#56" y="78.156"/><use xlink:href="#57" y="82.498"/><use xlink:href="#58" y="84.669"/><use xlink:href="#59" y="86.84"/><use xlink:href="#60" y="89.011"/><use xlink:href="#61" y="91.182"/><use xlink:href="#62" y="93.353"/><use xlink:href="#63" y="97.695"/><use xlink:href="#64" y="102.037"/><use xlink:href="#65" y="104.208"/></svg><svg x="19596"><use xlink:href="#a"/><use xlink:href="#b" x="29.996" y="104.183"/><use xlink:href="#24"/><use xlink:href="#25" y="2.171"/><use xlink:href="#26" y="4.342"/><use xlink:href="#27" y="6.513"/><use xlink:href="#28" y="8.684"/><use xlink:href="#29" y="10.855"/><use xlink:href="#30" y="13.026"/><use xlink:href="#31" y="15.197"/><use xlink:href="#32" y="19.539"/><use xlink:href="#33" y="21.71"/><use xlink:href="#34" y="23.881"/><use xlink:href="#35" y="26.052"/><use xlink:href="#36" y="28.223"/><use xlink:href="#37" y="30.394"/><use xlink:href="#38" y="32.565"/><use xlink:href="#39" y="34.736"/><use xlink:href="#40" y="36.907"/><use xlink:href="#41" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="47.762"/><use xlink:href="#45" y="49.933"/><use xlink:href="#46" y="52.104"/><use xlink:href="#47" y="54.275"/><use xlink:href="#48" y="56.446"/><use xlink:href="#50" y="58.617"/><use xlink:href="#51" y="60.788"/><use xlink:href="#52" y="62.959"/><use xlink:href="#53" y="65.13"/><use xlink:href="#54" y="67.301"/><use xlink:href="#55" y="69.472"/><use xlink:href="#56" y="75.985"/><use xlink:href="#57" y="80.327"/><use xlink:href="#58" y="82.498"/><use xlink:href="#59" y="84.669"/><use xlink:href="#60" y="86.84"/><use xlink:href="#61" y="89.011"/><use xlink:href="#62" y="91.182"/><use xlink:href="#63" y="95.524"/><use xlink:href="#64" y="99.866"/><use xlink:href="#65" y="102.037"/><text y="105.878" class="c">Product</text><text x="8.016" y="105.878" class="c">full</text><text x="13.026" y="105.878" class="c">SN:</text><text x="17.034" y="105.878" class="c">VF7110B1-2318</text></svg><svg x="19809"><use xlink:href="#a"/><use xlink:href="#b" x="11.996" y="104.183"/><use xlink:href="#25"/><use xlink:href="#26" y="2.171"/><use xlink:href="#27" y="4.342"/><use xlink:href="#28" y="6.513"/><use xlink:href="#29" y="8.684"/><use xlink:href="#30" y="10.855"/><use xlink:href="#31" y="13.026"/><use xlink:href="#32" y="17.368"/><use xlink:href="#33" y="19.539"/><use xlink:href="#34" y="21.71"/><use xlink:href="#35" y="23.881"/><use xlink:href="#36" y="26.052"/><use xlink:href="#37" y="28.223"/><use xlink:href="#38" y="30.394"/><use xlink:href="#39" y="32.565"/><use xlink:href="#40" y="34.736"/><use xlink:href="#41" y="36.907"/><use xlink:href="#42" y="39.078"/><use xlink:href="#43" y="41.249"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#46" y="49.933"/><use xlink:href="#47" y="52.104"/><use xlink:href="#48" y="54.275"/><use xlink:href="#50" y="56.446"/><use xlink:href="#51" y="58.617"/><use xlink:href="#52" y="60.788"/><use xlink:href="#53" y="62.959"/><use xlink:href="#54" y="65.13"/><use xlink:href="#55" y="67.301"/><use xlink:href="#56" y="73.814"/><use xlink:href="#57" y="78.156"/><use xlink:href="#58" y="80.327"/><use xlink:href="#59" y="82.498"/><use xlink:href="#60" y="84.669"/><use xlink:href="#61" y="86.84"/><use xlink:href="#62" y="89.011"/><use xlink:href="#63" y="93.353"/><use xlink:href="#64" y="97.695"/><use xlink:href="#65" y="99.866"/><use xlink:href="#66" y="102.037"/><text y="105.878" class="c">data</text><text x="5.01" y="105.878" class="c">version</text></svg><svg x="20022"><use xlink:href="#a"/><use xlink:href="#b" x="4.996" y="104.183"/><use xlink:href="#27"/><use xlink:href="#28" y="2.171"/><use xlink:href="#29" y="4.342"/><use xlink:href="#30" y="6.513"/><use xlink:href="#31" y="8.684"/><use xlink:href="#32" y="13.026"/><use xlink:href="#33" y="15.197"/><use xlink:href="#34" y="17.368"/><use xlink:href="#35" y="19.539"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="23.881"/><use xlink:href="#38" y="26.052"/><use xlink:href="#39" y="28.223"/><use xlink:href="#40" y="30.394"/><use xlink:href="#41" y="32.565"/><use xlink:href="#42" y="34.736"/><use xlink:href="#43" y="36.907"/><use xlink:href="#44" y="41.249"/><use xlink:href="#45" y="43.42"/><use xlink:href="#46" y="45.591"/><use xlink:href="#47" y="47.762"/><use xlink:href="#48" y="49.933"/><use xlink:href="#50" y="52.104"/><use xlink:href="#51" y="54.275"/><use xlink:href="#52" y="56.446"/><use xlink:href="#53" y="58.617"/><use xlink:href="#54" y="60.788"/><use xlink:href="#55" y="62.959"/><use xlink:href="#56" y="69.472"/><use xlink:href="#57" y="73.814"/><use xlink:href="#58" y="75.985"/><use xlink:href="#59" y="78.156"/><use xlink:href="#60" y="80.327"/><use xlink:href="#61" y="82.498"/><use xlink:href="#62" y="84.669"/><use xlink:href="#63" y="89.011"/><use xlink:href="#64" y="93.353"/><use xlink:href="#65" y="95.524"/><use xlink:href="#66" y="97.695"/><use xlink:href="#67" y="99.866"/><use xlink:href="#68" y="102.037"/><text y="105.878" class="c">BOM</text><text x="4.008" y="105.878" class="c">r</text></svg><svg x="20235"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="104.183"/><use xlink:href="#28"/><use xlink:href="#29" y="2.171"/><use xlink:href="#30" y="4.342"/><use xlink:href="#31" y="6.513"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="19.539"/><use xlink:href="#37" y="21.71"/><use xlink:href="#38" y="23.881"/><use xlink:href="#39" y="26.052"/><use xlink:href="#40" y="28.223"/><use xlink:href="#41" y="30.394"/><use xlink:href="#42" y="32.565"/><use xlink:href="#43" y="34.736"/><use xlink:href="#44" y="39.078"/><use xlink:href="#45" y="41.249"/><use xlink:href="#46" y="43.42"/><use xlink:href="#47" y="45.591"/><use xlink:href="#48" y="47.762"/><use xlink:href="#50" y="49.933"/><use xlink:href="#51" y="52.104"/><use xlink:href="#52" y="54.275"/><use xlink:href="#53" y="56.446"/><use xlink:href="#54" y="58.617"/><use xlink:href="#55" y="60.788"/><use xlink:href="#56" y="67.301"/><use xlink:href="#57" y="71.643"/><use xlink:href="#58" y="73.814"/><use xlink:href="#59" y="75.985"/><use xlink:href="#60" y="78.156"/><use xlink:href="#61" y="80.327"/><use xlink:href="#62" y="82.498"/><use xlink:href="#63" y="86.84"/><use xlink:href="#64" y="91.182"/><use xlink:href="#65" y="93.353"/><use xlink:href="#66" y="95.524"/><use xlink:href="#67" y="97.695"/><use xlink:href="#68" y="99.866"/><use xlink:href="#69" y="102.037"/><text y="105.878" class="c">Ethernet</text><text x="9.018" y="105.878" class="c">MAC0</text><text x="14.028" y="105.878" class="c">addres</text></svg><svg x="20448"><use xlink:href="#a"/><use xlink:href="#b" x="9.996" y="104.183"/><use xlink:href="#29"/><use xlink:href="#30" y="2.171"/><use xlink:href="#31" y="4.342"/><use xlink:href="#32" y="8.684"/><use xlink:href="#33" y="10.855"/><use xlink:href="#34" y="13.026"/><use xlink:href="#35" y="15.197"/><use xlink:href="#36" y="17.368"/><use xlink:href="#37" y="19.539"/><use xlink:href="#38" y="21.71"/><use xlink:href="#39" y="23.881"/><use xlink:href="#40" y="26.052"/><use xlink:href="#41" y="28.223"/><use xlink:href="#42" y="30.394"/><use xlink:href="#43" y="32.565"/><use xlink:href="#44" y="36.907"/><use xlink:href="#45" y="39.078"/><use xlink:href="#46" y="41.249"/><use xlink:href="#47" y="43.42"/><use xlink:href="#48" y="45.591"/><use xlink:href="#50" y="47.762"/><use xlink:href="#51" y="49.933"/><use xlink:href="#52" y="52.104"/><use xlink:href="#53" y="54.275"/><use xlink:href="#54" y="56.446"/><use xlink:href="#55" y="58.617"/><use xlink:href="#56" y="65.13"/><use xlink:href="#57" y="69.472"/><use xlink:href="#58" y="71.643"/><use xlink:href="#59" y="73.814"/><use xlink:href="#60" y="75.985"/><use xlink:href="#61" y="78.156"/><use xlink:href="#62" y="80.327"/><use xlink:href="#63" y="84.669"/><use xlink:href="#64" y="89.011"/><use xlink:href="#65" y="91.182"/><use xlink:href="#66" y="93.353"/><use xlink:href="#67" y="95.524"/><use xlink:href="#68" y="97.695"/><use xlink:href="#69" y="99.866"/><use xlink:href="#70" y="102.037"/><text y="105.878" class="c">Ethernet</text><text x="9.018" y="105.878" class="c">M</text></svg><svg x="20661"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#30"/><use xlink:href="#31" y="2.171"/><use xlink:href="#32" y="6.513"/><use xlink:href="#33" y="8.684"/><use xlink:href="#34" y="10.855"/><use xlink:href="#35" y="13.026"/><use xlink:href="#36" y="15.197"/><use xlink:href="#37" y="17.368"/><use xlink:href="#38" y="19.539"/><use xlink:href="#39" y="21.71"/><use xlink:href="#40" y="23.881"/><use xlink:href="#41" y="26.052"/><use xlink:href="#42" y="28.223"/><use xlink:href="#43" y="30.394"/><use xlink:href="#44" y="34.736"/><use xlink:href="#45" y="36.907"/><use xlink:href="#46" y="39.078"/><use xlink:href="#47" y="41.249"/><use xlink:href="#48" y="43.42"/><use xlink:href="#50" y="45.591"/><use xlink:href="#51" y="47.762"/><use xlink:href="#52" y="49.933"/><use xlink:href="#53" y="52.104"/><use xlink:href="#54" y="54.275"/><use xlink:href="#55" y="56.446"/><use xlink:href="#56" y="62.959"/><use xlink:href="#57" y="67.301"/><use xlink:href="#58" y="69.472"/><use xlink:href="#59" y="71.643"/><use xlink:href="#60" y="73.814"/><use xlink:href="#61" y="75.985"/><use xlink:href="#62" y="78.156"/><use xlink:href="#63" y="82.498"/><use xlink:href="#64" y="86.84"/><use xlink:href="#65" y="89.011"/><use xlink:href="#66" y="91.182"/><use xlink:href="#67" y="93.353"/><use xlink:href="#68" y="95.524"/><use xlink:href="#69" y="97.695"/><use xlink:href="#70" y="99.866"/><use xlink:href="#71" y="102.037"/></svg><svg x="20874"><use xlink:href="#a"/><use xlink:href="#b" x=".996" y="104.183"/><use xlink:href="#32" y="2.171"/><use xlink:href="#33" y="4.342"/><use xlink:href="#34" y="6.513"/><use xlink:href="#35" y="8.684"/><use xlink:href="#36" y="10.855"/><use xlink:href="#37" y="13.026"/><use xlink:href="#38" y="15.197"/><use xlink:href="#39" y="17.368"/><use xlink:href="#40" y="19.539"/><use xlink:href="#41" y="21.71"/><use xlink:href="#42" y="23.881"/><use xlink:href="#43" y="26.052"/><use xlink:href="#44" y="30.394"/><use xlink:href="#45" y="32.565"/><use xlink:href="#46" y="34.736"/><use xlink:href="#47" y="36.907"/><use xlink:href="#48" y="39.078"/><use xlink:href="#50" y="41.249"/><use xlink:href="#51" y="43.42"/><use xlink:href="#52" y="45.591"/><use xlink:href="#53" y="47.762"/><use xlink:href="#54" y="49.933"/><use xlink:href="#55" y="52.104"/><use xlink:href="#56" y="58.617"/><use xlink:href="#57" y="62.959"/><use xlink:href="#58" y="65.13"/><use xlink:href="#59" y="67.301"/><use xlink:href="#60" y="69.472"/><use xlink:href="#61" y="71.643"/><use xlink:href="#62" y="73.814"/><use xlink:href="#63" y="78.156"/><use xlink:href="#64" y="82.498"/><use xlink:href="#65" y="84.669"/><use xlink:href="#66" y="86.84"/><use xlink:href="#67" y="89.011"/><use xlink:href="#68" y="91.182"/><use xlink:href="#69" y="93.353"/><use xlink:href="#70" y="95.524"/><use xlink:href="#71" y="97.695"/><use xlink:href="#64" y="99.866"/><text y="105.878" class="c">I</text></svg><svg x="21087"><use xlink:href="#a"/><use xlink:href="#b" x="2.996" y="104.183"/><use xlink:href="#33"/><use xlink:href="#34" y="2.171"/><use xlink:href="#35" y="4.342"/><use xlink:href="#36" y="6.513"/><use xlink:href="#37" y="8.684"/><use xlink:href="#38" y="10.855"/><use xlink:href="#39" y="13.026"/><use xlink:href="#40" y="15.197"/><use xlink:href="#41" y="17.368"/><use xlink:href="#42" y="19.539"/><use xlink:href="#43" y="21.71"/><use xlink:href="#44" y="26.052"/><use xlink:href="#45" y="28.223"/><use xlink:href="#46" y="30.394"/><use xlink:href="#47" y="32.565"/><use xlink:href="#48" y="34.736"/><use xlink:href="#50" y="36.907"/><use xlink:href="#51" y="39.078"/><use xlink:href="#52" y="41.249"/><use xlink:href="#53" y="43.42"/><use xlink:href="#54" y="45.591"/><use xlink:href="#55" y="47.762"/><use xlink:href="#56" y="54.275"/><use xlink:href="#57" y="58.617"/><use xlink:href="#58" y="60.788"/><use xlink:href="#59" y="62.959"/><use xlink:href="#60" y="65.13"/><use xlink:href="#61" y="67.301"/><use xlink:href="#62" y="69.472"/><use xlink:href="#63" y="73.814"/><use xlink:href="#64" y="78.156"/><use xlink:href="#65" y="80.327"/><use xlink:href="#66" y="82.498"/><use xlink:href="#67" y="84.669"/><use xlink:href="#68" y="86.84"/><use xlink:href="#69" y="89.011"/><use xlink:href="#70" y="91.182"/><use xlink:href="#71" y="93.353"/><use xlink:href="#64" y="95.524"/><use xlink:href="#72" y="99.866"/><use xlink:href="#73" y="102.037"/><text y="105.878" class="c">Err</text></svg><svg x="21300"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="104.183"/><use xlink:href="#34"/><use xlink:href="#35" y="2.171"/><use xlink:href="#36" y="4.342"/><use xlink:href="#37" y="6.513"/><use xlink:href="#38" y="8.684"/><use xlink:href="#39" y="10.855"/><use xlink:href="#40" y="13.026"/><use xlink:href="#41" y="15.197"/><use xlink:href="#42" y="17.368"/><use xlink:href="#43" y="19.539"/><use xlink:href="#44" y="23.881"/><use xlink:href="#45" y="26.052"/><use xlink:href="#46" y="28.223"/><use xlink:href="#47" y="30.394"/><use xlink:href="#48" y="32.565"/><use xlink:href="#50" y="34.736"/><use xlink:href="#51" y="36.907"/><use xlink:href="#52" y="39.078"/><use xlink:href="#53" y="41.249"/><use xlink:href="#54" y="43.42"/><use xlink:href="#55" y="45.591"/><use xlink:href="#56" y="52.104"/><use xlink:href="#57" y="56.446"/><use xlink:href="#58" y="58.617"/><use xlink:href="#59" y="60.788"/><use xlink:href="#60" y="62.959"/><use xlink:href="#61" y="65.13"/><use xlink:href="#62" y="67.301"/><use xlink:href="#63" y="71.643"/><use xlink:href="#64" y="75.985"/><use xlink:href="#65" y="78.156"/><use xlink:href="#66" y="80.327"/><use xlink:href="#67" y="82.498"/><use xlink:href="#68" y="84.669"/><use xlink:href="#69" y="86.84"/><use xlink:href="#70" y="89.011"/><use xlink:href="#71" y="91.182"/><use xlink:href="#64" y="93.353"/><use xlink:href="#72" y="97.695"/><use xlink:href="#73" y="99.866"/><use xlink:href="#74" y="102.037"/><text y="105.878" class="c">Model:</text><text x="7.014" y="105.878" class="c">StarFive</text><text x="16.032" y="105.878" class="c">Visi</text></svg><svg x="21513"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#35"/><use xlink:href="#36" y="2.171"/><use xlink:href="#37" y="4.342"/><use xlink:href="#38" y="6.513"/><use xlink:href="#39" y="8.684"/><use xlink:href="#40" y="10.855"/><use xlink:href="#41" y="13.026"/><use xlink:href="#42" y="15.197"/><use xlink:href="#43" y="17.368"/><use xlink:href="#44" y="21.71"/><use xlink:href="#45" y="23.881"/><use xlink:href="#46" y="26.052"/><use xlink:href="#47" y="28.223"/><use xlink:href="#48" y="30.394"/><use xlink:href="#50" y="32.565"/><use xlink:href="#51" y="34.736"/><use xlink:href="#52" y="36.907"/><use xlink:href="#53" y="39.078"/><use xlink:href="#54" y="41.249"/><use xlink:href="#55" y="43.42"/><use xlink:href="#56" y="49.933"/><use xlink:href="#57" y="54.275"/><use xlink:href="#58" y="56.446"/><use xlink:href="#59" y="58.617"/><use xlink:href="#60" y="60.788"/><use xlink:href="#61" y="62.959"/><use xlink:href="#62" y="65.13"/><use xlink:href="#63" y="69.472"/><use xlink:href="#64" y="73.814"/><use xlink:href="#65" y="75.985"/><use xlink:href="#66" y="78.156"/><use xlink:href="#67" y="80.327"/><use xlink:href="#68" y="82.498"/><use xlink:href="#69" y="84.669"/><use xlink:href="#70" y="86.84"/><use xlink:href="#71" y="89.011"/><use xlink:href="#64" y="91.182"/><use xlink:href="#72" y="95.524"/><use xlink:href="#73" y="97.695"/><use xlink:href="#74" y="99.866"/><use xlink:href="#58" y="102.037"/></svg><svg x="21726"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="104.183"/><use xlink:href="#35"/><use xlink:href="#36" y="2.171"/><use xlink:href="#37" y="4.342"/><use xlink:href="#38" y="6.513"/><use xlink:href="#39" y="8.684"/><use xlink:href="#40" y="10.855"/><use xlink:href="#41" y="13.026"/><use xlink:href="#42" y="15.197"/><use xlink:href="#43" y="17.368"/><use xlink:href="#44" y="21.71"/><use xlink:href="#45" y="23.881"/><use xlink:href="#46" y="26.052"/><use xlink:href="#47" y="28.223"/><use xlink:href="#48" y="30.394"/><use xlink:href="#50" y="32.565"/><use xlink:href="#51" y="34.736"/><use xlink:href="#52" y="36.907"/><use xlink:href="#53" y="39.078"/><use xlink:href="#54" y="41.249"/><use xlink:href="#55" y="43.42"/><use xlink:href="#56" y="49.933"/><use xlink:href="#57" y="54.275"/><use xlink:href="#58" y="56.446"/><use xlink:href="#59" y="58.617"/><use xlink:href="#60" y="60.788"/><use xlink:href="#61" y="62.959"/><use xlink:href="#62" y="65.13"/><use xlink:href="#63" y="69.472"/><use xlink:href="#64" y="73.814"/><use xlink:href="#65" y="75.985"/><use xlink:href="#66" y="78.156"/><use xlink:href="#67" y="80.327"/><use xlink:href="#68" y="82.498"/><use xlink:href="#69" y="84.669"/><use xlink:href="#70" y="86.84"/><use xlink:href="#71" y="89.011"/><use xlink:href="#64" y="91.182"/><use xlink:href="#72" y="95.524"/><use xlink:href="#73" y="97.695"/><use xlink:href="#74" y="99.866"/><use xlink:href="#58" y="102.037"/><text y="105.878" class="c">Net:</text></svg><svg x="21939"><use xlink:href="#a"/><use xlink:href="#b" x="29.996" y="104.183"/><use xlink:href="#35"/><use xlink:href="#36" y="2.171"/><use xlink:href="#37" y="4.342"/><use xlink:href="#38" y="6.513"/><use xlink:href="#39" y="8.684"/><use xlink:href="#40" y="10.855"/><use xlink:href="#41" y="13.026"/><use xlink:href="#42" y="15.197"/><use xlink:href="#43" y="17.368"/><use xlink:href="#44" y="21.71"/><use xlink:href="#45" y="23.881"/><use xlink:href="#46" y="26.052"/><use xlink:href="#47" y="28.223"/><use xlink:href="#48" y="30.394"/><use xlink:href="#50" y="32.565"/><use xlink:href="#51" y="34.736"/><use xlink:href="#52" y="36.907"/><use xlink:href="#53" y="39.078"/><use xlink:href="#54" y="41.249"/><use xlink:href="#55" y="43.42"/><use xlink:href="#56" y="49.933"/><use xlink:href="#57" y="54.275"/><use xlink:href="#58" y="56.446"/><use xlink:href="#59" y="58.617"/><use xlink:href="#60" y="60.788"/><use xlink:href="#61" y="62.959"/><use xlink:href="#62" y="65.13"/><use xlink:href="#63" y="69.472"/><use xlink:href="#64" y="73.814"/><use xlink:href="#65" y="75.985"/><use xlink:href="#66" y="78.156"/><use xlink:href="#67" y="80.327"/><use xlink:href="#68" y="82.498"/><use xlink:href="#69" y="84.669"/><use xlink:href="#70" y="86.84"/><use xlink:href="#71" y="89.011"/><use xlink:href="#64" y="91.182"/><use xlink:href="#72" y="95.524"/><use xlink:href="#73" y="97.695"/><use xlink:href="#74" y="99.866"/><use xlink:href="#58" y="102.037"/><text y="105.878" class="c">Net:</text><text x="7.014" y="105.878" class="c">eth0:</text><text x="13.026" y="105.878" class="c">ethernet@16030000</text></svg><svg x="22152"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#36"/><use xlink:href="#37" y="2.171"/><use xlink:href="#38" y="4.342"/><use xlink:href="#39" y="6.513"/><use xlink:href="#40" y="8.684"/><use xlink:href="#41" y="10.855"/><use xlink:href="#42" y="13.026"/><use xlink:href="#43" y="15.197"/><use xlink:href="#44" y="19.539"/><use xlink:href="#45" y="21.71"/><use xlink:href="#46" y="23.881"/><use xlink:href="#47" y="26.052"/><use xlink:href="#48" y="28.223"/><use xlink:href="#50" y="30.394"/><use xlink:href="#51" y="32.565"/><use xlink:href="#52" y="34.736"/><use xlink:href="#53" y="36.907"/><use xlink:href="#54" y="39.078"/><use xlink:href="#55" y="41.249"/><use xlink:href="#56" y="47.762"/><use xlink:href="#57" y="52.104"/><use xlink:href="#58" y="54.275"/><use xlink:href="#59" y="56.446"/><use xlink:href="#60" y="58.617"/><use xlink:href="#61" y="60.788"/><use xlink:href="#62" y="62.959"/><use xlink:href="#63" y="67.301"/><use xlink:href="#64" y="71.643"/><use xlink:href="#65" y="73.814"/><use xlink:href="#66" y="75.985"/><use xlink:href="#67" y="78.156"/><use xlink:href="#68" y="80.327"/><use xlink:href="#69" y="82.498"/><use xlink:href="#70" y="84.669"/><use xlink:href="#71" y="86.84"/><use xlink:href="#64" y="89.011"/><use xlink:href="#72" y="93.353"/><use xlink:href="#73" y="95.524"/><use xlink:href="#74" y="97.695"/><use xlink:href="#58" y="99.866"/><use xlink:href="#75" y="102.037"/></svg><svg x="22365"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#36"/><use xlink:href="#37" y="2.171"/><use xlink:href="#38" y="4.342"/><use xlink:href="#39" y="6.513"/><use xlink:href="#40" y="8.684"/><use xlink:href="#41" y="10.855"/><use xlink:href="#42" y="13.026"/><use xlink:href="#43" y="15.197"/><use xlink:href="#44" y="19.539"/><use xlink:href="#45" y="21.71"/><use xlink:href="#46" y="23.881"/><use xlink:href="#47" y="26.052"/><use xlink:href="#48" y="28.223"/><use xlink:href="#50" y="30.394"/><use xlink:href="#51" y="32.565"/><use xlink:href="#52" y="34.736"/><use xlink:href="#53" y="36.907"/><use xlink:href="#54" y="39.078"/><use xlink:href="#55" y="41.249"/><use xlink:href="#56" y="47.762"/><use xlink:href="#57" y="52.104"/><use xlink:href="#58" y="54.275"/><use xlink:href="#59" y="56.446"/><use xlink:href="#60" y="58.617"/><use xlink:href="#61" y="60.788"/><use xlink:href="#62" y="62.959"/><use xlink:href="#63" y="67.301"/><use xlink:href="#64" y="71.643"/><use xlink:href="#65" y="73.814"/><use xlink:href="#66" y="75.985"/><use xlink:href="#67" y="78.156"/><use xlink:href="#68" y="80.327"/><use xlink:href="#69" y="82.498"/><use xlink:href="#70" y="84.669"/><use xlink:href="#71" y="86.84"/><use xlink:href="#64" y="89.011"/><use xlink:href="#72" y="93.353"/><use xlink:href="#73" y="95.524"/><use xlink:href="#74" y="97.695"/><use xlink:href="#58" y="99.866"/><use xlink:href="#75" y="102.037"/><use xlink:href="#76" y="104.208"/></svg><svg x="22578"><use xlink:href="#a"/><use xlink:href="#b" x="32.996" y="104.183"/><use xlink:href="#36"/><use xlink:href="#37" y="2.171"/><use xlink:href="#38" y="4.342"/><use xlink:href="#39" y="6.513"/><use xlink:href="#40" y="8.684"/><use xlink:href="#41" y="10.855"/><use xlink:href="#42" y="13.026"/><use xlink:href="#43" y="15.197"/><use xlink:href="#44" y="19.539"/><use xlink:href="#45" y="21.71"/><use xlink:href="#46" y="23.881"/><use xlink:href="#47" y="26.052"/><use xlink:href="#48" y="28.223"/><use xlink:href="#50" y="30.394"/><use xlink:href="#51" y="32.565"/><use xlink:href="#52" y="34.736"/><use xlink:href="#53" y="36.907"/><use xlink:href="#54" y="39.078"/><use xlink:href="#55" y="41.249"/><use xlink:href="#56" y="47.762"/><use xlink:href="#57" y="52.104"/><use xlink:href="#58" y="54.275"/><use xlink:href="#59" y="56.446"/><use xlink:href="#60" y="58.617"/><use xlink:href="#61" y="60.788"/><use xlink:href="#62" y="62.959"/><use xlink:href="#63" y="67.301"/><use xlink:href="#64" y="71.643"/><use xlink:href="#65" y="73.814"/><use xlink:href="#66" y="75.985"/><use xlink:href="#67" y="78.156"/><use xlink:href="#68" y="80.327"/><use xlink:href="#69" y="82.498"/><use xlink:href="#70" y="84.669"/><use xlink:href="#71" y="86.84"/><use xlink:href="#64" y="89.011"/><use xlink:href="#72" y="93.353"/><use xlink:href="#73" y="95.524"/><use xlink:href="#74" y="97.695"/><use xlink:href="#58" y="99.866"/><use xlink:href="#75" y="102.037"/><use xlink:href="#76" y="104.208"/></svg><svg x="22791"><use xlink:href="#a"/><use xlink:href="#b" x="32.996" y="104.183"/><use xlink:href="#36"/><use xlink:href="#37" y="2.171"/><use xlink:href="#38" y="4.342"/><use xlink:href="#39" y="6.513"/><use xlink:href="#40" y="8.684"/><use xlink:href="#41" y="10.855"/><use xlink:href="#42" y="13.026"/><use xlink:href="#43" y="15.197"/><use xlink:href="#44" y="19.539"/><use xlink:href="#45" y="21.71"/><use xlink:href="#46" y="23.881"/><use xlink:href="#47" y="26.052"/><use xlink:href="#48" y="28.223"/><use xlink:href="#50" y="30.394"/><use xlink:href="#51" y="32.565"/><use xlink:href="#52" y="34.736"/><use xlink:href="#53" y="36.907"/><use xlink:href="#54" y="39.078"/><use xlink:href="#55" y="41.249"/><use xlink:href="#56" y="47.762"/><use xlink:href="#57" y="52.104"/><use xlink:href="#58" y="54.275"/><use xlink:href="#59" y="56.446"/><use xlink:href="#60" y="58.617"/><use xlink:href="#61" y="60.788"/><use xlink:href="#62" y="62.959"/><use xlink:href="#63" y="67.301"/><use xlink:href="#64" y="71.643"/><use xlink:href="#65" y="73.814"/><use xlink:href="#66" y="75.985"/><use xlink:href="#67" y="78.156"/><use xlink:href="#68" y="80.327"/><use xlink:href="#69" y="82.498"/><use xlink:href="#70" y="84.669"/><use xlink:href="#71" y="86.84"/><use xlink:href="#64" y="89.011"/><use xlink:href="#72" y="93.353"/><use xlink:href="#73" y="95.524"/><use xlink:href="#74" y="97.695"/><use xlink:href="#58" y="99.866"/><use xlink:href="#75" y="102.037"/><text y="105.878" class="c">Hit</text><text x="4.008" y="105.878" class="c">any</text><text x="8.016" y="105.878" class="c">key</text><text x="12.024" y="105.878" class="c">to</text><text x="15.03" y="105.878" class="c">stop</text><text x="20.04" y="105.878" class="c">autoboot:</text><text x="31.062" y="105.878" class="c">1</text></svg><svg x="23004"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#37"/><use xlink:href="#38" y="2.171"/><use xlink:href="#39" y="4.342"/><use xlink:href="#40" y="6.513"/><use xlink:href="#41" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="17.368"/><use xlink:href="#45" y="19.539"/><use xlink:href="#46" y="21.71"/><use xlink:href="#47" y="23.881"/><use xlink:href="#48" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#52" y="32.565"/><use xlink:href="#53" y="34.736"/><use xlink:href="#54" y="36.907"/><use xlink:href="#55" y="39.078"/><use xlink:href="#56" y="45.591"/><use xlink:href="#57" y="49.933"/><use xlink:href="#58" y="52.104"/><use xlink:href="#59" y="54.275"/><use xlink:href="#60" y="56.446"/><use xlink:href="#61" y="58.617"/><use xlink:href="#62" y="60.788"/><use xlink:href="#63" y="65.13"/><use xlink:href="#64" y="69.472"/><use xlink:href="#65" y="71.643"/><use xlink:href="#66" y="73.814"/><use xlink:href="#67" y="75.985"/><use xlink:href="#68" y="78.156"/><use xlink:href="#69" y="80.327"/><use xlink:href="#70" y="82.498"/><use xlink:href="#71" y="84.669"/><use xlink:href="#64" y="86.84"/><use xlink:href="#72" y="91.182"/><use xlink:href="#73" y="93.353"/><use xlink:href="#74" y="95.524"/><use xlink:href="#58" y="97.695"/><use xlink:href="#75" y="99.866"/><use xlink:href="#77" y="102.037"/></svg><svg x="23217"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#37"/><use xlink:href="#38" y="2.171"/><use xlink:href="#39" y="4.342"/><use xlink:href="#40" y="6.513"/><use xlink:href="#41" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="17.368"/><use xlink:href="#45" y="19.539"/><use xlink:href="#46" y="21.71"/><use xlink:href="#47" y="23.881"/><use xlink:href="#48" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#52" y="32.565"/><use xlink:href="#53" y="34.736"/><use xlink:href="#54" y="36.907"/><use xlink:href="#55" y="39.078"/><use xlink:href="#56" y="45.591"/><use xlink:href="#57" y="49.933"/><use xlink:href="#58" y="52.104"/><use xlink:href="#59" y="54.275"/><use xlink:href="#60" y="56.446"/><use xlink:href="#61" y="58.617"/><use xlink:href="#62" y="60.788"/><use xlink:href="#63" y="65.13"/><use xlink:href="#64" y="69.472"/><use xlink:href="#65" y="71.643"/><use xlink:href="#66" y="73.814"/><use xlink:href="#67" y="75.985"/><use xlink:href="#68" y="78.156"/><use xlink:href="#69" y="80.327"/><use xlink:href="#70" y="82.498"/><use xlink:href="#71" y="84.669"/><use xlink:href="#64" y="86.84"/><use xlink:href="#72" y="91.182"/><use xlink:href="#73" y="93.353"/><use xlink:href="#74" y="95.524"/><use xlink:href="#58" y="97.695"/><use xlink:href="#75" y="99.866"/><use xlink:href="#77" y="102.037"/><use xlink:href="#78" y="104.208"/></svg><svg x="23430"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#38"/><use xlink:href="#39" y="2.171"/><use xlink:href="#40" y="4.342"/><use xlink:href="#41" y="6.513"/><use xlink:href="#42" y="8.684"/><use xlink:href="#43" y="10.855"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#50" y="26.052"/><use xlink:href="#51" y="28.223"/><use xlink:href="#52" y="30.394"/><use xlink:href="#53" y="32.565"/><use xlink:href="#54" y="34.736"/><use xlink:href="#55" y="36.907"/><use xlink:href="#56" y="43.42"/><use xlink:href="#57" y="47.762"/><use xlink:href="#58" y="49.933"/><use xlink:href="#59" y="52.104"/><use xlink:href="#60" y="54.275"/><use xlink:href="#61" y="56.446"/><use xlink:href="#62" y="58.617"/><use xlink:href="#63" y="62.959"/><use xlink:href="#64" y="67.301"/><use xlink:href="#65" y="69.472"/><use xlink:href="#66" y="71.643"/><use xlink:href="#67" y="73.814"/><use xlink:href="#68" y="75.985"/><use xlink:href="#69" y="78.156"/><use xlink:href="#70" y="80.327"/><use xlink:href="#71" y="82.498"/><use xlink:href="#64" y="84.669"/><use xlink:href="#72" y="89.011"/><use xlink:href="#73" y="91.182"/><use xlink:href="#74" y="93.353"/><use xlink:href="#58" y="95.524"/><use xlink:href="#75" y="97.695"/><use xlink:href="#77" y="99.866"/><use xlink:href="#79" y="102.037"/></svg><svg x="23643"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#38"/><use xlink:href="#39" y="2.171"/><use xlink:href="#40" y="4.342"/><use xlink:href="#41" y="6.513"/><use xlink:href="#42" y="8.684"/><use xlink:href="#43" y="10.855"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#50" y="26.052"/><use xlink:href="#51" y="28.223"/><use xlink:href="#52" y="30.394"/><use xlink:href="#53" y="32.565"/><use xlink:href="#54" y="34.736"/><use xlink:href="#55" y="36.907"/><use xlink:href="#56" y="43.42"/><use xlink:href="#57" y="47.762"/><use xlink:href="#58" y="49.933"/><use xlink:href="#59" y="52.104"/><use xlink:href="#60" y="54.275"/><use xlink:href="#61" y="56.446"/><use xlink:href="#62" y="58.617"/><use xlink:href="#63" y="62.959"/><use xlink:href="#64" y="67.301"/><use xlink:href="#65" y="69.472"/><use xlink:href="#66" y="71.643"/><use xlink:href="#67" y="73.814"/><use xlink:href="#68" y="75.985"/><use xlink:href="#69" y="78.156"/><use xlink:href="#70" y="80.327"/><use xlink:href="#71" y="82.498"/><use xlink:href="#64" y="84.669"/><use xlink:href="#72" y="89.011"/><use xlink:href="#73" y="91.182"/><use xlink:href="#74" y="93.353"/><use xlink:href="#58" y="95.524"/><use xlink:href="#75" y="97.695"/><use xlink:href="#77" y="99.866"/><use xlink:href="#79" y="102.037"/><use xlink:href="#78" y="104.208"/></svg><svg x="23856"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#39"/><use xlink:href="#40" y="2.171"/><use xlink:href="#41" y="4.342"/><use xlink:href="#42" y="6.513"/><use xlink:href="#43" y="8.684"/><use xlink:href="#44" y="13.026"/><use xlink:href="#45" y="15.197"/><use xlink:href="#46" y="17.368"/><use xlink:href="#47" y="19.539"/><use xlink:href="#48" y="21.71"/><use xlink:href="#50" y="23.881"/><use xlink:href="#51" y="26.052"/><use xlink:href="#52" y="28.223"/><use xlink:href="#53" y="30.394"/><use xlink:href="#54" y="32.565"/><use xlink:href="#55" y="34.736"/><use xlink:href="#56" y="41.249"/><use xlink:href="#57" y="45.591"/><use xlink:href="#58" y="47.762"/><use xlink:href="#59" y="49.933"/><use xlink:href="#60" y="52.104"/><use xlink:href="#61" y="54.275"/><use xlink:href="#62" y="56.446"/><use xlink:href="#63" y="60.788"/><use xlink:href="#64" y="65.13"/><use xlink:href="#65" y="67.301"/><use xlink:href="#66" y="69.472"/><use xlink:href="#67" y="71.643"/><use xlink:href="#68" y="73.814"/><use xlink:href="#69" y="75.985"/><use xlink:href="#70" y="78.156"/><use xlink:href="#71" y="80.327"/><use xlink:href="#64" y="82.498"/><use xlink:href="#72" y="86.84"/><use xlink:href="#73" y="89.011"/><use xlink:href="#74" y="91.182"/><use xlink:href="#58" y="93.353"/><use xlink:href="#75" y="95.524"/><use xlink:href="#77" y="97.695"/><use xlink:href="#79" y="99.866"/><use xlink:href="#79" y="102.037"/></svg><svg x="24069"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#39"/><use xlink:href="#40" y="2.171"/><use xlink:href="#41" y="4.342"/><use xlink:href="#42" y="6.513"/><use xlink:href="#43" y="8.684"/><use xlink:href="#44" y="13.026"/><use xlink:href="#45" y="15.197"/><use xlink:href="#46" y="17.368"/><use xlink:href="#47" y="19.539"/><use xlink:href="#48" y="21.71"/><use xlink:href="#50" y="23.881"/><use xlink:href="#51" y="26.052"/><use xlink:href="#52" y="28.223"/><use xlink:href="#53" y="30.394"/><use xlink:href="#54" y="32.565"/><use xlink:href="#55" y="34.736"/><use xlink:href="#56" y="41.249"/><use xlink:href="#57" y="45.591"/><use xlink:href="#58" y="47.762"/><use xlink:href="#59" y="49.933"/><use xlink:href="#60" y="52.104"/><use xlink:href="#61" y="54.275"/><use xlink:href="#62" y="56.446"/><use xlink:href="#63" y="60.788"/><use xlink:href="#64" y="65.13"/><use xlink:href="#65" y="67.301"/><use xlink:href="#66" y="69.472"/><use xlink:href="#67" y="71.643"/><use xlink:href="#68" y="73.814"/><use xlink:href="#69" y="75.985"/><use xlink:href="#70" y="78.156"/><use xlink:href="#71" y="80.327"/><use xlink:href="#64" y="82.498"/><use xlink:href="#72" y="86.84"/><use xlink:href="#73" y="89.011"/><use xlink:href="#74" y="91.182"/><use xlink:href="#58" y="93.353"/><use xlink:href="#75" y="95.524"/><use xlink:href="#77" y="97.695"/><use xlink:href="#79" y="99.866"/><use xlink:href="#79" y="102.037"/><text y="105.878" class="c">starfive_pcie</text><text x="14.028" y="105.878" class="c">pcie@2B000000:</text><text x="29.058" y="105.878" class="c">Por</text></svg><svg x="24282"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#40"/><use xlink:href="#41" y="2.171"/><use xlink:href="#42" y="4.342"/><use xlink:href="#43" y="6.513"/><use xlink:href="#44" y="10.855"/><use xlink:href="#45" y="13.026"/><use xlink:href="#46" y="15.197"/><use xlink:href="#47" y="17.368"/><use xlink:href="#48" y="19.539"/><use xlink:href="#50" y="21.71"/><use xlink:href="#51" y="23.881"/><use xlink:href="#52" y="26.052"/><use xlink:href="#53" y="28.223"/><use xlink:href="#54" y="30.394"/><use xlink:href="#55" y="32.565"/><use xlink:href="#56" y="39.078"/><use xlink:href="#57" y="43.42"/><use xlink:href="#58" y="45.591"/><use xlink:href="#59" y="47.762"/><use xlink:href="#60" y="49.933"/><use xlink:href="#61" y="52.104"/><use xlink:href="#62" y="54.275"/><use xlink:href="#63" y="58.617"/><use xlink:href="#64" y="62.959"/><use xlink:href="#65" y="65.13"/><use xlink:href="#66" y="67.301"/><use xlink:href="#67" y="69.472"/><use xlink:href="#68" y="71.643"/><use xlink:href="#69" y="73.814"/><use xlink:href="#70" y="75.985"/><use xlink:href="#71" y="78.156"/><use xlink:href="#64" y="80.327"/><use xlink:href="#72" y="84.669"/><use xlink:href="#73" y="86.84"/><use xlink:href="#74" y="89.011"/><use xlink:href="#58" y="91.182"/><use xlink:href="#75" y="93.353"/><use xlink:href="#77" y="95.524"/><use xlink:href="#79" y="97.695"/><use xlink:href="#79" y="99.866"/><use xlink:href="#80" y="102.037"/></svg><svg x="24495"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#40"/><use xlink:href="#41" y="2.171"/><use xlink:href="#42" y="4.342"/><use xlink:href="#43" y="6.513"/><use xlink:href="#44" y="10.855"/><use xlink:href="#45" y="13.026"/><use xlink:href="#46" y="15.197"/><use xlink:href="#47" y="17.368"/><use xlink:href="#48" y="19.539"/><use xlink:href="#50" y="21.71"/><use xlink:href="#51" y="23.881"/><use xlink:href="#52" y="26.052"/><use xlink:href="#53" y="28.223"/><use xlink:href="#54" y="30.394"/><use xlink:href="#55" y="32.565"/><use xlink:href="#56" y="39.078"/><use xlink:href="#57" y="43.42"/><use xlink:href="#58" y="45.591"/><use xlink:href="#59" y="47.762"/><use xlink:href="#60" y="49.933"/><use xlink:href="#61" y="52.104"/><use xlink:href="#62" y="54.275"/><use xlink:href="#63" y="58.617"/><use xlink:href="#64" y="62.959"/><use xlink:href="#65" y="65.13"/><use xlink:href="#66" y="67.301"/><use xlink:href="#67" y="69.472"/><use xlink:href="#68" y="71.643"/><use xlink:href="#69" y="73.814"/><use xlink:href="#70" y="75.985"/><use xlink:href="#71" y="78.156"/><use xlink:href="#64" y="80.327"/><use xlink:href="#72" y="84.669"/><use xlink:href="#73" y="86.84"/><use xlink:href="#74" y="89.011"/><use xlink:href="#58" y="91.182"/><use xlink:href="#75" y="93.353"/><use xlink:href="#77" y="95.524"/><use xlink:href="#79" y="97.695"/><use xlink:href="#79" y="99.866"/><use xlink:href="#80" y="102.037"/><text y="105.878" class="c">starfive_pcie</text><text x="14.028" y="105.878" class="c">pcie@2B000000:</text><text x="29.058" y="105.878" class="c">Sta</text></svg><svg x="24708"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#41"/><use xlink:href="#42" y="2.171"/><use xlink:href="#43" y="4.342"/><use xlink:href="#44" y="8.684"/><use xlink:href="#45" y="10.855"/><use xlink:href="#46" y="13.026"/><use xlink:href="#47" y="15.197"/><use xlink:href="#48" y="17.368"/><use xlink:href="#50" y="19.539"/><use xlink:href="#51" y="21.71"/><use xlink:href="#52" y="23.881"/><use xlink:href="#53" y="26.052"/><use xlink:href="#54" y="28.223"/><use xlink:href="#55" y="30.394"/><use xlink:href="#56" y="36.907"/><use xlink:href="#57" y="41.249"/><use xlink:href="#58" y="43.42"/><use xlink:href="#59" y="45.591"/><use xlink:href="#60" y="47.762"/><use xlink:href="#61" y="49.933"/><use xlink:href="#62" y="52.104"/><use xlink:href="#63" y="56.446"/><use xlink:href="#64" y="60.788"/><use xlink:href="#65" y="62.959"/><use xlink:href="#66" y="65.13"/><use xlink:href="#67" y="67.301"/><use xlink:href="#68" y="69.472"/><use xlink:href="#69" y="71.643"/><use xlink:href="#70" y="73.814"/><use xlink:href="#71" y="75.985"/><use xlink:href="#64" y="78.156"/><use xlink:href="#72" y="82.498"/><use xlink:href="#73" y="84.669"/><use xlink:href="#74" y="86.84"/><use xlink:href="#58" y="89.011"/><use xlink:href="#75" y="91.182"/><use xlink:href="#77" y="93.353"/><use xlink:href="#79" y="95.524"/><use xlink:href="#79" y="97.695"/><use xlink:href="#80" y="99.866"/><use xlink:href="#81" y="102.037"/></svg><svg x="24921"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#42"/><use xlink:href="#43" y="2.171"/><use xlink:href="#44" y="6.513"/><use xlink:href="#45" y="8.684"/><use xlink:href="#46" y="10.855"/><use xlink:href="#47" y="13.026"/><use xlink:href="#48" y="15.197"/><use xlink:href="#50" y="17.368"/><use xlink:href="#51" y="19.539"/><use xlink:href="#52" y="21.71"/><use xlink:href="#53" y="23.881"/><use xlink:href="#54" y="26.052"/><use xlink:href="#55" y="28.223"/><use xlink:href="#56" y="34.736"/><use xlink:href="#57" y="39.078"/><use xlink:href="#58" y="41.249"/><use xlink:href="#59" y="43.42"/><use xlink:href="#60" y="45.591"/><use xlink:href="#61" y="47.762"/><use xlink:href="#62" y="49.933"/><use xlink:href="#63" y="54.275"/><use xlink:href="#64" y="58.617"/><use xlink:href="#65" y="60.788"/><use xlink:href="#66" y="62.959"/><use xlink:href="#67" y="65.13"/><use xlink:href="#68" y="67.301"/><use xlink:href="#69" y="69.472"/><use xlink:href="#70" y="71.643"/><use xlink:href="#71" y="73.814"/><use xlink:href="#64" y="75.985"/><use xlink:href="#72" y="80.327"/><use xlink:href="#73" y="82.498"/><use xlink:href="#74" y="84.669"/><use xlink:href="#58" y="86.84"/><use xlink:href="#75" y="89.011"/><use xlink:href="#77" y="91.182"/><use xlink:href="#79" y="93.353"/><use xlink:href="#79" y="95.524"/><use xlink:href="#80" y="97.695"/><use xlink:href="#81" y="99.866"/><use xlink:href="#82" y="102.037"/></svg><svg x="25134"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#42"/><use xlink:href="#43" y="2.171"/><use xlink:href="#44" y="6.513"/><use xlink:href="#45" y="8.684"/><use xlink:href="#46" y="10.855"/><use xlink:href="#47" y="13.026"/><use xlink:href="#48" y="15.197"/><use xlink:href="#50" y="17.368"/><use xlink:href="#51" y="19.539"/><use xlink:href="#52" y="21.71"/><use xlink:href="#53" y="23.881"/><use xlink:href="#54" y="26.052"/><use xlink:href="#55" y="28.223"/><use xlink:href="#56" y="34.736"/><use xlink:href="#57" y="39.078"/><use xlink:href="#58" y="41.249"/><use xlink:href="#59" y="43.42"/><use xlink:href="#60" y="45.591"/><use xlink:href="#61" y="47.762"/><use xlink:href="#62" y="49.933"/><use xlink:href="#63" y="54.275"/><use xlink:href="#64" y="58.617"/><use xlink:href="#65" y="60.788"/><use xlink:href="#66" y="62.959"/><use xlink:href="#67" y="65.13"/><use xlink:href="#68" y="67.301"/><use xlink:href="#69" y="69.472"/><use xlink:href="#70" y="71.643"/><use xlink:href="#71" y="73.814"/><use xlink:href="#64" y="75.985"/><use xlink:href="#72" y="80.327"/><use xlink:href="#73" y="82.498"/><use xlink:href="#74" y="84.669"/><use xlink:href="#58" y="86.84"/><use xlink:href="#75" y="89.011"/><use xlink:href="#77" y="91.182"/><use xlink:href="#79" y="93.353"/><use xlink:href="#79" y="95.524"/><use xlink:href="#80" y="97.695"/><use xlink:href="#81" y="99.866"/><use xlink:href="#82" y="102.037"/><text y="105.878" class="c">starfive_pcie</text><text x="14.028" y="105.878" class="c">pcie@2C000000:</text><text x="29.058" y="105.878" class="c">Por</text></svg><svg x="25347"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#43"/><use xlink:href="#44" y="4.342"/><use xlink:href="#45" y="6.513"/><use xlink:href="#46" y="8.684"/><use xlink:href="#47" y="10.855"/><use xlink:href="#48" y="13.026"/><use xlink:href="#50" y="15.197"/><use xlink:href="#51" y="17.368"/><use xlink:href="#52" y="19.539"/><use xlink:href="#53" y="21.71"/><use xlink:href="#54" y="23.881"/><use xlink:href="#55" y="26.052"/><use xlink:href="#56" y="32.565"/><use xlink:href="#57" y="36.907"/><use xlink:href="#58" y="39.078"/><use xlink:href="#59" y="41.249"/><use xlink:href="#60" y="43.42"/><use xlink:href="#61" y="45.591"/><use xlink:href="#62" y="47.762"/><use xlink:href="#63" y="52.104"/><use xlink:href="#64" y="56.446"/><use xlink:href="#65" y="58.617"/><use xlink:href="#66" y="60.788"/><use xlink:href="#67" y="62.959"/><use xlink:href="#68" y="65.13"/><use xlink:href="#69" y="67.301"/><use xlink:href="#70" y="69.472"/><use xlink:href="#71" y="71.643"/><use xlink:href="#64" y="73.814"/><use xlink:href="#72" y="78.156"/><use xlink:href="#73" y="80.327"/><use xlink:href="#74" y="82.498"/><use xlink:href="#58" y="84.669"/><use xlink:href="#75" y="86.84"/><use xlink:href="#77" y="89.011"/><use xlink:href="#79" y="91.182"/><use xlink:href="#79" y="93.353"/><use xlink:href="#80" y="95.524"/><use xlink:href="#81" y="97.695"/><use xlink:href="#82" y="99.866"/><use xlink:href="#83" y="102.037"/></svg><svg x="25560"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#43"/><use xlink:href="#44" y="4.342"/><use xlink:href="#45" y="6.513"/><use xlink:href="#46" y="8.684"/><use xlink:href="#47" y="10.855"/><use xlink:href="#48" y="13.026"/><use xlink:href="#50" y="15.197"/><use xlink:href="#51" y="17.368"/><use xlink:href="#52" y="19.539"/><use xlink:href="#53" y="21.71"/><use xlink:href="#54" y="23.881"/><use xlink:href="#55" y="26.052"/><use xlink:href="#56" y="32.565"/><use xlink:href="#57" y="36.907"/><use xlink:href="#58" y="39.078"/><use xlink:href="#59" y="41.249"/><use xlink:href="#60" y="43.42"/><use xlink:href="#61" y="45.591"/><use xlink:href="#62" y="47.762"/><use xlink:href="#63" y="52.104"/><use xlink:href="#64" y="56.446"/><use xlink:href="#65" y="58.617"/><use xlink:href="#66" y="60.788"/><use xlink:href="#67" y="62.959"/><use xlink:href="#68" y="65.13"/><use xlink:href="#69" y="67.301"/><use xlink:href="#70" y="69.472"/><use xlink:href="#71" y="71.643"/><use xlink:href="#64" y="73.814"/><use xlink:href="#72" y="78.156"/><use xlink:href="#73" y="80.327"/><use xlink:href="#74" y="82.498"/><use xlink:href="#58" y="84.669"/><use xlink:href="#75" y="86.84"/><use xlink:href="#77" y="89.011"/><use xlink:href="#79" y="91.182"/><use xlink:href="#79" y="93.353"/><use xlink:href="#80" y="95.524"/><use xlink:href="#81" y="97.695"/><use xlink:href="#82" y="99.866"/><use xlink:href="#83" y="102.037"/><text y="105.878" class="c">starfive_pcie</text><text x="14.028" y="105.878" class="c">pcie@2C000000:</text><text x="29.058" y="105.878" class="c">Sta</text></svg><svg x="25773"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#44" y="2.171"/><use xlink:href="#45" y="4.342"/><use xlink:href="#46" y="6.513"/><use xlink:href="#47" y="8.684"/><use xlink:href="#48" y="10.855"/><use xlink:href="#50" y="13.026"/><use xlink:href="#51" y="15.197"/><use xlink:href="#52" y="17.368"/><use xlink:href="#53" y="19.539"/><use xlink:href="#54" y="21.71"/><use xlink:href="#55" y="23.881"/><use xlink:href="#56" y="30.394"/><use xlink:href="#57" y="34.736"/><use xlink:href="#58" y="36.907"/><use xlink:href="#59" y="39.078"/><use xlink:href="#60" y="41.249"/><use xlink:href="#61" y="43.42"/><use xlink:href="#62" y="45.591"/><use xlink:href="#63" y="49.933"/><use xlink:href="#64" y="54.275"/><use xlink:href="#65" y="56.446"/><use xlink:href="#66" y="58.617"/><use xlink:href="#67" y="60.788"/><use xlink:href="#68" y="62.959"/><use xlink:href="#69" y="65.13"/><use xlink:href="#70" y="67.301"/><use xlink:href="#71" y="69.472"/><use xlink:href="#64" y="71.643"/><use xlink:href="#72" y="75.985"/><use xlink:href="#73" y="78.156"/><use xlink:href="#74" y="80.327"/><use xlink:href="#58" y="82.498"/><use xlink:href="#75" y="84.669"/><use xlink:href="#77" y="86.84"/><use xlink:href="#79" y="89.011"/><use xlink:href="#79" y="91.182"/><use xlink:href="#80" y="93.353"/><use xlink:href="#81" y="95.524"/><use xlink:href="#82" y="97.695"/><use xlink:href="#83" y="99.866"/><use xlink:href="#84" y="102.037"/></svg><svg x="25986"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#44"/><use xlink:href="#45" y="2.171"/><use xlink:href="#46" y="4.342"/><use xlink:href="#47" y="6.513"/><use xlink:href="#48" y="8.684"/><use xlink:href="#50" y="10.855"/><use xlink:href="#51" y="13.026"/><use xlink:href="#52" y="15.197"/><use xlink:href="#53" y="17.368"/><use xlink:href="#54" y="19.539"/><use xlink:href="#55" y="21.71"/><use xlink:href="#56" y="28.223"/><use xlink:href="#57" y="32.565"/><use xlink:href="#58" y="34.736"/><use xlink:href="#59" y="36.907"/><use xlink:href="#60" y="39.078"/><use xlink:href="#61" y="41.249"/><use xlink:href="#62" y="43.42"/><use xlink:href="#63" y="47.762"/><use xlink:href="#64" y="52.104"/><use xlink:href="#65" y="54.275"/><use xlink:href="#66" y="56.446"/><use xlink:href="#67" y="58.617"/><use xlink:href="#68" y="60.788"/><use xlink:href="#69" y="62.959"/><use xlink:href="#70" y="65.13"/><use xlink:href="#71" y="67.301"/><use xlink:href="#64" y="69.472"/><use xlink:href="#72" y="73.814"/><use xlink:href="#73" y="75.985"/><use xlink:href="#74" y="78.156"/><use xlink:href="#58" y="80.327"/><use xlink:href="#75" y="82.498"/><use xlink:href="#77" y="84.669"/><use xlink:href="#79" y="86.84"/><use xlink:href="#79" y="89.011"/><use xlink:href="#80" y="91.182"/><use xlink:href="#81" y="93.353"/><use xlink:href="#82" y="95.524"/><use xlink:href="#83" y="97.695"/><use xlink:href="#84" y="99.866"/><use xlink:href="#82" y="102.037"/></svg><svg x="26199"><use xlink:href="#a"/><use xlink:href="#b" x="29.996" y="104.183"/><use xlink:href="#45"/><use xlink:href="#46" y="2.171"/><use xlink:href="#47" y="4.342"/><use xlink:href="#48" y="6.513"/><use xlink:href="#50" y="8.684"/><use xlink:href="#51" y="10.855"/><use xlink:href="#52" y="13.026"/><use xlink:href="#53" y="15.197"/><use xlink:href="#54" y="17.368"/><use xlink:href="#55" y="19.539"/><use xlink:href="#56" y="26.052"/><use xlink:href="#57" y="30.394"/><use xlink:href="#58" y="32.565"/><use xlink:href="#59" y="34.736"/><use xlink:href="#60" y="36.907"/><use xlink:href="#61" y="39.078"/><use xlink:href="#62" y="41.249"/><use xlink:href="#63" y="45.591"/><use xlink:href="#64" y="49.933"/><use xlink:href="#65" y="52.104"/><use xlink:href="#66" y="54.275"/><use xlink:href="#67" y="56.446"/><use xlink:href="#68" y="58.617"/><use xlink:href="#69" y="60.788"/><use xlink:href="#70" y="62.959"/><use xlink:href="#71" y="65.13"/><use xlink:href="#64" y="67.301"/><use xlink:href="#72" y="71.643"/><use xlink:href="#73" y="73.814"/><use xlink:href="#74" y="75.985"/><use xlink:href="#58" y="78.156"/><use xlink:href="#75" y="80.327"/><use xlink:href="#77" y="82.498"/><use xlink:href="#79" y="84.669"/><use xlink:href="#79" y="86.84"/><use xlink:href="#80" y="89.011"/><use xlink:href="#81" y="91.182"/><use xlink:href="#82" y="93.353"/><use xlink:href="#83" y="95.524"/><use xlink:href="#84" y="97.695"/><use xlink:href="#82" y="99.866"/><text y="105.878" class="c">Device</text><text x="7.014" y="105.878" class="c">0:</text><text x="10.02" y="105.878" class="c">Vendor:</text><text x="18.036" y="105.878" class="c">0xc0a9</text><text x="25.05" y="105.878" class="c">Rev:</text></svg><svg x="26412"><use xlink:href="#a"/><use xlink:href="#b" x="61.996" y="104.183"/><use xlink:href="#45"/><use xlink:href="#46" y="2.171"/><use xlink:href="#47" y="4.342"/><use xlink:href="#48" y="6.513"/><use xlink:href="#50" y="8.684"/><use xlink:href="#51" y="10.855"/><use xlink:href="#52" y="13.026"/><use xlink:href="#53" y="15.197"/><use xlink:href="#54" y="17.368"/><use xlink:href="#55" y="19.539"/><use xlink:href="#56" y="26.052"/><use xlink:href="#57" y="30.394"/><use xlink:href="#58" y="32.565"/><use xlink:href="#59" y="34.736"/><use xlink:href="#60" y="36.907"/><use xlink:href="#61" y="39.078"/><use xlink:href="#62" y="41.249"/><use xlink:href="#63" y="45.591"/><use xlink:href="#64" y="49.933"/><use xlink:href="#65" y="52.104"/><use xlink:href="#66" y="54.275"/><use xlink:href="#67" y="56.446"/><use xlink:href="#68" y="58.617"/><use xlink:href="#69" y="60.788"/><use xlink:href="#70" y="62.959"/><use xlink:href="#71" y="65.13"/><use xlink:href="#64" y="67.301"/><use xlink:href="#72" y="71.643"/><use xlink:href="#73" y="73.814"/><use xlink:href="#74" y="75.985"/><use xlink:href="#58" y="78.156"/><use xlink:href="#75" y="80.327"/><use xlink:href="#77" y="82.498"/><use xlink:href="#79" y="84.669"/><use xlink:href="#79" y="86.84"/><use xlink:href="#80" y="89.011"/><use xlink:href="#81" y="91.182"/><use xlink:href="#82" y="93.353"/><use xlink:href="#83" y="95.524"/><use xlink:href="#84" y="97.695"/><use xlink:href="#82" y="99.866"/><use xlink:href="#85" y="104.208"/></svg><svg x="26625"><use xlink:href="#a"/><use xlink:href="#b" x="26.996" y="104.183"/><use xlink:href="#46"/><use xlink:href="#47" y="2.171"/><use xlink:href="#48" y="4.342"/><use xlink:href="#50" y="6.513"/><use xlink:href="#51" y="8.684"/><use xlink:href="#52" y="10.855"/><use xlink:href="#53" y="13.026"/><use xlink:href="#54" y="15.197"/><use xlink:href="#55" y="17.368"/><use xlink:href="#56" y="23.881"/><use xlink:href="#57" y="28.223"/><use xlink:href="#58" y="30.394"/><use xlink:href="#59" y="32.565"/><use xlink:href="#60" y="34.736"/><use xlink:href="#61" y="36.907"/><use xlink:href="#62" y="39.078"/><use xlink:href="#63" y="43.42"/><use xlink:href="#64" y="47.762"/><use xlink:href="#65" y="49.933"/><use xlink:href="#66" y="52.104"/><use xlink:href="#67" y="54.275"/><use xlink:href="#68" y="56.446"/><use xlink:href="#69" y="58.617"/><use xlink:href="#70" y="60.788"/><use xlink:href="#71" y="62.959"/><use xlink:href="#64" y="65.13"/><use xlink:href="#72" y="69.472"/><use xlink:href="#73" y="71.643"/><use xlink:href="#74" y="73.814"/><use xlink:href="#58" y="75.985"/><use xlink:href="#75" y="78.156"/><use xlink:href="#77" y="80.327"/><use xlink:href="#79" y="82.498"/><use xlink:href="#79" y="84.669"/><use xlink:href="#80" y="86.84"/><use xlink:href="#81" y="89.011"/><use xlink:href="#82" y="91.182"/><use xlink:href="#83" y="93.353"/><use xlink:href="#84" y="95.524"/><use xlink:href="#82" y="97.695"/><use xlink:href="#85" y="102.037"/><use xlink:href="#86" y="104.208"/></svg><svg x="26838"><use xlink:href="#a"/><use xlink:href="#b" x="29.996" y="104.183"/><use xlink:href="#47"/><use xlink:href="#48" y="2.171"/><use xlink:href="#50" y="4.342"/><use xlink:href="#51" y="6.513"/><use xlink:href="#52" y="8.684"/><use xlink:href="#53" y="10.855"/><use xlink:href="#54" y="13.026"/><use xlink:href="#55" y="15.197"/><use xlink:href="#56" y="21.71"/><use xlink:href="#57" y="26.052"/><use xlink:href="#58" y="28.223"/><use xlink:href="#59" y="30.394"/><use xlink:href="#60" y="32.565"/><use xlink:href="#61" y="34.736"/><use xlink:href="#62" y="36.907"/><use xlink:href="#63" y="41.249"/><use xlink:href="#64" y="45.591"/><use xlink:href="#65" y="47.762"/><use xlink:href="#66" y="49.933"/><use xlink:href="#67" y="52.104"/><use xlink:href="#68" y="54.275"/><use xlink:href="#69" y="56.446"/><use xlink:href="#70" y="58.617"/><use xlink:href="#71" y="60.788"/><use xlink:href="#64" y="62.959"/><use xlink:href="#72" y="67.301"/><use xlink:href="#73" y="69.472"/><use xlink:href="#74" y="71.643"/><use xlink:href="#58" y="73.814"/><use xlink:href="#75" y="75.985"/><use xlink:href="#77" y="78.156"/><use xlink:href="#79" y="80.327"/><use xlink:href="#79" y="82.498"/><use xlink:href="#80" y="84.669"/><use xlink:href="#81" y="86.84"/><use xlink:href="#82" y="89.011"/><use xlink:href="#83" y="91.182"/><use xlink:href="#84" y="93.353"/><use xlink:href="#82" y="95.524"/><use xlink:href="#85" y="99.866"/><use xlink:href="#86" y="102.037"/><text x="12.024" y="105.878" class="c">Capacity:</text><text x="22.044" y="105.878" class="c">476940.0</text></svg><svg x="27051"><use xlink:href="#a"/><use xlink:href="#b" x="61.996" y="104.183"/><use xlink:href="#47"/><use xlink:href="#48" y="2.171"/><use xlink:href="#50" y="4.342"/><use xlink:href="#51" y="6.513"/><use xlink:href="#52" y="8.684"/><use xlink:href="#53" y="10.855"/><use xlink:href="#54" y="13.026"/><use xlink:href="#55" y="15.197"/><use xlink:href="#56" y="21.71"/><use xlink:href="#57" y="26.052"/><use xlink:href="#58" y="28.223"/><use xlink:href="#59" y="30.394"/><use xlink:href="#60" y="32.565"/><use xlink:href="#61" y="34.736"/><use xlink:href="#62" y="36.907"/><use xlink:href="#63" y="41.249"/><use xlink:href="#64" y="45.591"/><use xlink:href="#65" y="47.762"/><use xlink:href="#66" y="49.933"/><use xlink:href="#67" y="52.104"/><use xlink:href="#68" y="54.275"/><use xlink:href="#69" y="56.446"/><use xlink:href="#70" y="58.617"/><use xlink:href="#71" y="60.788"/><use xlink:href="#64" y="62.959"/><use xlink:href="#72" y="67.301"/><use xlink:href="#73" y="69.472"/><use xlink:href="#74" y="71.643"/><use xlink:href="#58" y="73.814"/><use xlink:href="#75" y="75.985"/><use xlink:href="#77" y="78.156"/><use xlink:href="#79" y="80.327"/><use xlink:href="#79" y="82.498"/><use xlink:href="#80" y="84.669"/><use xlink:href="#81" y="86.84"/><use xlink:href="#82" y="89.011"/><use xlink:href="#83" y="91.182"/><use xlink:href="#84" y="93.353"/><use xlink:href="#82" y="95.524"/><use xlink:href="#85" y="99.866"/><use xlink:href="#86" y="102.037"/><use xlink:href="#87" y="104.208"/></svg><svg x="27264"><use xlink:href="#a"/><use xlink:href="#b" x="2.996" y="104.183"/><use xlink:href="#50"/><use xlink:href="#51" y="2.171"/><use xlink:href="#52" y="4.342"/><use xlink:href="#53" y="6.513"/><use xlink:href="#54" y="8.684"/><use xlink:href="#55" y="10.855"/><use xlink:href="#56" y="17.368"/><use xlink:href="#57" y="21.71"/><use xlink:href="#58" y="23.881"/><use xlink:href="#59" y="26.052"/><use xlink:href="#60" y="28.223"/><use xlink:href="#61" y="30.394"/><use xlink:href="#62" y="32.565"/><use xlink:href="#63" y="36.907"/><use xlink:href="#64" y="41.249"/><use xlink:href="#65" y="43.42"/><use xlink:href="#66" y="45.591"/><use xlink:href="#67" y="47.762"/><use xlink:href="#68" y="49.933"/><use xlink:href="#69" y="52.104"/><use xlink:href="#70" y="54.275"/><use xlink:href="#71" y="56.446"/><use xlink:href="#64" y="58.617"/><use xlink:href="#72" y="62.959"/><use xlink:href="#73" y="65.13"/><use xlink:href="#74" y="67.301"/><use xlink:href="#58" y="69.472"/><use xlink:href="#75" y="71.643"/><use xlink:href="#77" y="73.814"/><use xlink:href="#79" y="75.985"/><use xlink:href="#79" y="78.156"/><use xlink:href="#80" y="80.327"/><use xlink:href="#81" y="82.498"/><use xlink:href="#82" y="84.669"/><use xlink:href="#83" y="86.84"/><use xlink:href="#84" y="89.011"/><use xlink:href="#82" y="91.182"/><use xlink:href="#85" y="95.524"/><use xlink:href="#86" y="97.695"/><use xlink:href="#87" y="99.866"/><use xlink:href="#88" y="102.037"/><text y="105.878" class="c">Try</text></svg><svg x="27477"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="104.183"/><use xlink:href="#51"/><use xlink:href="#52" y="2.171"/><use xlink:href="#53" y="4.342"/><use xlink:href="#54" y="6.513"/><use xlink:href="#55" y="8.684"/><use xlink:href="#56" y="15.197"/><use xlink:href="#57" y="19.539"/><use xlink:href="#58" y="21.71"/><use xlink:href="#59" y="23.881"/><use xlink:href="#60" y="26.052"/><use xlink:href="#61" y="28.223"/><use xlink:href="#62" y="30.394"/><use xlink:href="#63" y="34.736"/><use xlink:href="#64" y="39.078"/><use xlink:href="#65" y="41.249"/><use xlink:href="#66" y="43.42"/><use xlink:href="#67" y="45.591"/><use xlink:href="#68" y="47.762"/><use xlink:href="#69" y="49.933"/><use xlink:href="#70" y="52.104"/><use xlink:href="#71" y="54.275"/><use xlink:href="#64" y="56.446"/><use xlink:href="#72" y="60.788"/><use xlink:href="#73" y="62.959"/><use xlink:href="#74" y="65.13"/><use xlink:href="#58" y="67.301"/><use xlink:href="#75" y="69.472"/><use xlink:href="#77" y="71.643"/><use xlink:href="#79" y="73.814"/><use xlink:href="#79" y="75.985"/><use xlink:href="#80" y="78.156"/><use xlink:href="#81" y="80.327"/><use xlink:href="#82" y="82.498"/><use xlink:href="#83" y="84.669"/><use xlink:href="#84" y="86.84"/><use xlink:href="#82" y="89.011"/><use xlink:href="#85" y="93.353"/><use xlink:href="#86" y="95.524"/><use xlink:href="#87" y="97.695"/><use xlink:href="#88" y="99.866"/><use xlink:href="#89" y="102.037"/><text y="105.878" class="c">Failed</text></svg><svg x="27690"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#52"/><use xlink:href="#53" y="2.171"/><use xlink:href="#54" y="4.342"/><use xlink:href="#55" y="6.513"/><use xlink:href="#56" y="13.026"/><use xlink:href="#57" y="17.368"/><use xlink:href="#58" y="19.539"/><use xlink:href="#59" y="21.71"/><use xlink:href="#60" y="23.881"/><use xlink:href="#61" y="26.052"/><use xlink:href="#62" y="28.223"/><use xlink:href="#63" y="32.565"/><use xlink:href="#64" y="36.907"/><use xlink:href="#65" y="39.078"/><use xlink:href="#66" y="41.249"/><use xlink:href="#67" y="43.42"/><use xlink:href="#68" y="45.591"/><use xlink:href="#69" y="47.762"/><use xlink:href="#70" y="49.933"/><use xlink:href="#71" y="52.104"/><use xlink:href="#64" y="54.275"/><use xlink:href="#72" y="58.617"/><use xlink:href="#73" y="60.788"/><use xlink:href="#74" y="62.959"/><use xlink:href="#58" y="65.13"/><use xlink:href="#75" y="67.301"/><use xlink:href="#77" y="69.472"/><use xlink:href="#79" y="71.643"/><use xlink:href="#79" y="73.814"/><use xlink:href="#80" y="75.985"/><use xlink:href="#81" y="78.156"/><use xlink:href="#82" y="80.327"/><use xlink:href="#83" y="82.498"/><use xlink:href="#84" y="84.669"/><use xlink:href="#82" y="86.84"/><use xlink:href="#85" y="91.182"/><use xlink:href="#86" y="93.353"/><use xlink:href="#87" y="95.524"/><use xlink:href="#88" y="97.695"/><use xlink:href="#89" y="99.866"/><use xlink:href="#90" y="102.037"/></svg><svg x="27903"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#52"/><use xlink:href="#53" y="2.171"/><use xlink:href="#54" y="4.342"/><use xlink:href="#55" y="6.513"/><use xlink:href="#56" y="13.026"/><use xlink:href="#57" y="17.368"/><use xlink:href="#58" y="19.539"/><use xlink:href="#59" y="21.71"/><use xlink:href="#60" y="23.881"/><use xlink:href="#61" y="26.052"/><use xlink:href="#62" y="28.223"/><use xlink:href="#63" y="32.565"/><use xlink:href="#64" y="36.907"/><use xlink:href="#65" y="39.078"/><use xlink:href="#66" y="41.249"/><use xlink:href="#67" y="43.42"/><use xlink:href="#68" y="45.591"/><use xlink:href="#69" y="47.762"/><use xlink:href="#70" y="49.933"/><use xlink:href="#71" y="52.104"/><use xlink:href="#64" y="54.275"/><use xlink:href="#72" y="58.617"/><use xlink:href="#73" y="60.788"/><use xlink:href="#74" y="62.959"/><use xlink:href="#58" y="65.13"/><use xlink:href="#75" y="67.301"/><use xlink:href="#77" y="69.472"/><use xlink:href="#79" y="71.643"/><use xlink:href="#79" y="73.814"/><use xlink:href="#80" y="75.985"/><use xlink:href="#81" y="78.156"/><use xlink:href="#82" y="80.327"/><use xlink:href="#83" y="82.498"/><use xlink:href="#84" y="84.669"/><use xlink:href="#82" y="86.84"/><use xlink:href="#85" y="91.182"/><use xlink:href="#86" y="93.353"/><use xlink:href="#87" y="95.524"/><use xlink:href="#88" y="97.695"/><use xlink:href="#89" y="99.866"/><use xlink:href="#90" y="102.037"/><use xlink:href="#91" y="104.208"/></svg><svg x="28116"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="104.183"/><use xlink:href="#53"/><use xlink:href="#54" y="2.171"/><use xlink:href="#55" y="4.342"/><use xlink:href="#56" y="10.855"/><use xlink:href="#57" y="15.197"/><use xlink:href="#58" y="17.368"/><use xlink:href="#59" y="19.539"/><use xlink:href="#60" y="21.71"/><use xlink:href="#61" y="23.881"/><use xlink:href="#62" y="26.052"/><use xlink:href="#63" y="30.394"/><use xlink:href="#64" y="34.736"/><use xlink:href="#65" y="36.907"/><use xlink:href="#66" y="39.078"/><use xlink:href="#67" y="41.249"/><use xlink:href="#68" y="43.42"/><use xlink:href="#69" y="45.591"/><use xlink:href="#70" y="47.762"/><use xlink:href="#71" y="49.933"/><use xlink:href="#64" y="52.104"/><use xlink:href="#72" y="56.446"/><use xlink:href="#73" y="58.617"/><use xlink:href="#74" y="60.788"/><use xlink:href="#58" y="62.959"/><use xlink:href="#75" y="65.13"/><use xlink:href="#77" y="67.301"/><use xlink:href="#79" y="69.472"/><use xlink:href="#79" y="71.643"/><use xlink:href="#80" y="73.814"/><use xlink:href="#81" y="75.985"/><use xlink:href="#82" y="78.156"/><use xlink:href="#83" y="80.327"/><use xlink:href="#84" y="82.498"/><use xlink:href="#82" y="84.669"/><use xlink:href="#85" y="89.011"/><use xlink:href="#86" y="91.182"/><use xlink:href="#87" y="93.353"/><use xlink:href="#88" y="95.524"/><use xlink:href="#89" y="97.695"/><use xlink:href="#90" y="99.866"/><use xlink:href="#92" y="102.037"/><use xlink:href="#93" y="104.208"/></svg><svg x="28329"><use xlink:href="#a"/><use xlink:href="#b" x="37.996" y="104.183"/><use xlink:href="#53"/><use xlink:href="#54" y="2.171"/><use xlink:href="#55" y="4.342"/><use xlink:href="#56" y="10.855"/><use xlink:href="#57" y="15.197"/><use xlink:href="#58" y="17.368"/><use xlink:href="#59" y="19.539"/><use xlink:href="#60" y="21.71"/><use xlink:href="#61" y="23.881"/><use xlink:href="#62" y="26.052"/><use xlink:href="#63" y="30.394"/><use xlink:href="#64" y="34.736"/><use xlink:href="#65" y="36.907"/><use xlink:href="#66" y="39.078"/><use xlink:href="#67" y="41.249"/><use xlink:href="#68" y="43.42"/><use xlink:href="#69" y="45.591"/><use xlink:href="#70" y="47.762"/><use xlink:href="#71" y="49.933"/><use xlink:href="#64" y="52.104"/><use xlink:href="#72" y="56.446"/><use xlink:href="#73" y="58.617"/><use xlink:href="#74" y="60.788"/><use xlink:href="#58" y="62.959"/><use xlink:href="#75" y="65.13"/><use xlink:href="#77" y="67.301"/><use xlink:href="#79" y="69.472"/><use xlink:href="#79" y="71.643"/><use xlink:href="#80" y="73.814"/><use xlink:href="#81" y="75.985"/><use xlink:href="#82" y="78.156"/><use xlink:href="#83" y="80.327"/><use xlink:href="#84" y="82.498"/><use xlink:href="#82" y="84.669"/><use xlink:href="#85" y="89.011"/><use xlink:href="#86" y="91.182"/><use xlink:href="#87" y="93.353"/><use xlink:href="#88" y="95.524"/><use xlink:href="#89" y="97.695"/><use xlink:href="#90" y="99.866"/><use xlink:href="#92" y="102.037"/><use xlink:href="#94" y="104.208"/></svg><svg x="28542"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="104.183"/><use xlink:href="#54"/><use xlink:href="#55" y="2.171"/><use xlink:href="#56" y="8.684"/><use xlink:href="#57" y="13.026"/><use xlink:href="#58" y="15.197"/><use xlink:href="#59" y="17.368"/><use xlink:href="#60" y="19.539"/><use xlink:href="#61" y="21.71"/><use xlink:href="#62" y="23.881"/><use xlink:href="#63" y="28.223"/><use xlink:href="#64" y="32.565"/><use xlink:href="#65" y="34.736"/><use xlink:href="#66" y="36.907"/><use xlink:href="#67" y="39.078"/><use xlink:href="#68" y="41.249"/><use xlink:href="#69" y="43.42"/><use xlink:href="#70" y="45.591"/><use xlink:href="#71" y="47.762"/><use xlink:href="#64" y="49.933"/><use xlink:href="#72" y="54.275"/><use xlink:href="#73" y="56.446"/><use xlink:href="#74" y="58.617"/><use xlink:href="#58" y="60.788"/><use xlink:href="#75" y="62.959"/><use xlink:href="#77" y="65.13"/><use xlink:href="#79" y="67.301"/><use xlink:href="#79" y="69.472"/><use xlink:href="#80" y="71.643"/><use xlink:href="#81" y="73.814"/><use xlink:href="#82" y="75.985"/><use xlink:href="#83" y="78.156"/><use xlink:href="#84" y="80.327"/><use xlink:href="#82" y="82.498"/><use xlink:href="#85" y="86.84"/><use xlink:href="#86" y="89.011"/><use xlink:href="#87" y="91.182"/><use xlink:href="#88" y="93.353"/><use xlink:href="#89" y="95.524"/><use xlink:href="#90" y="97.695"/><use xlink:href="#92" y="99.866"/><use xlink:href="#95" y="102.037"/><use xlink:href="#96" y="104.208"/></svg><svg x="28755"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="104.183"/><use xlink:href="#56" y="4.342"/><use xlink:href="#57" y="8.684"/><use xlink:href="#58" y="10.855"/><use xlink:href="#59" y="13.026"/><use xlink:href="#60" y="15.197"/><use xlink:href="#61" y="17.368"/><use xlink:href="#62" y="19.539"/><use xlink:href="#63" y="23.881"/><use xlink:href="#64" y="28.223"/><use xlink:href="#65" y="30.394"/><use xlink:href="#66" y="32.565"/><use xlink:href="#67" y="34.736"/><use xlink:href="#68" y="36.907"/><use xlink:href="#69" y="39.078"/><use xlink:href="#70" y="41.249"/><use xlink:href="#71" y="43.42"/><use xlink:href="#64" y="45.591"/><use xlink:href="#72" y="49.933"/><use xlink:href="#73" y="52.104"/><use xlink:href="#74" y="54.275"/><use xlink:href="#58" y="56.446"/><use xlink:href="#75" y="58.617"/><use xlink:href="#77" y="60.788"/><use xlink:href="#79" y="62.959"/><use xlink:href="#79" y="65.13"/><use xlink:href="#80" y="67.301"/><use xlink:href="#81" y="69.472"/><use xlink:href="#82" y="71.643"/><use xlink:href="#83" y="73.814"/><use xlink:href="#84" y="75.985"/><use xlink:href="#82" y="78.156"/><use xlink:href="#85" y="82.498"/><use xlink:href="#86" y="84.669"/><use xlink:href="#87" y="86.84"/><use xlink:href="#88" y="89.011"/><use xlink:href="#89" y="91.182"/><use xlink:href="#90" y="93.353"/><use xlink:href="#92" y="95.524"/><use xlink:href="#95" y="97.695"/><use xlink:href="#97" y="99.866"/><text y="105.878" class="c">Device</text><text x="7.014" y="105.878" class="c">0:</text><text x="10.02" y="105.878" class="c">Vendor:</text><text x="18.036" y="105.878" class="c">0xc0</text></svg><svg x="28968"><use xlink:href="#a"/><use xlink:href="#b" x="53.996" y="104.183"/><use xlink:href="#56" y="4.342"/><use xlink:href="#57" y="8.684"/><use xlink:href="#58" y="10.855"/><use xlink:href="#59" y="13.026"/><use xlink:href="#60" y="15.197"/><use xlink:href="#61" y="17.368"/><use xlink:href="#62" y="19.539"/><use xlink:href="#63" y="23.881"/><use xlink:href="#64" y="28.223"/><use xlink:href="#65" y="30.394"/><use xlink:href="#66" y="32.565"/><use xlink:href="#67" y="34.736"/><use xlink:href="#68" y="36.907"/><use xlink:href="#69" y="39.078"/><use xlink:href="#70" y="41.249"/><use xlink:href="#71" y="43.42"/><use xlink:href="#64" y="45.591"/><use xlink:href="#72" y="49.933"/><use xlink:href="#73" y="52.104"/><use xlink:href="#74" y="54.275"/><use xlink:href="#58" y="56.446"/><use xlink:href="#75" y="58.617"/><use xlink:href="#77" y="60.788"/><use xlink:href="#79" y="62.959"/><use xlink:href="#79" y="65.13"/><use xlink:href="#80" y="67.301"/><use xlink:href="#81" y="69.472"/><use xlink:href="#82" y="71.643"/><use xlink:href="#83" y="73.814"/><use xlink:href="#84" y="75.985"/><use xlink:href="#82" y="78.156"/><use xlink:href="#85" y="82.498"/><use xlink:href="#86" y="84.669"/><use xlink:href="#87" y="86.84"/><use xlink:href="#88" y="89.011"/><use xlink:href="#89" y="91.182"/><use xlink:href="#90" y="93.353"/><use xlink:href="#92" y="95.524"/><use xlink:href="#95" y="97.695"/><use xlink:href="#97" y="99.866"/><text y="105.878" class="c">Device</text><text x="7.014" y="105.878" class="c">0:</text><text x="10.02" y="105.878" class="c">Vendor:</text><text x="18.036" y="105.878" class="c">0xc0a9</text><text x="25.05" y="105.878" class="c">Rev:</text><text x="30.06" y="105.878" class="c">P8CR002</text><text x="39.078" y="105.878" class="c">Prod:</text><text x="45.09" y="105.878" class="c">234444C84</text></svg><svg x="29181"><use xlink:href="#a"/><use xlink:href="#b" x="18.996" y="104.183"/><use xlink:href="#56" y="2.171"/><use xlink:href="#57" y="6.513"/><use xlink:href="#58" y="8.684"/><use xlink:href="#59" y="10.855"/><use xlink:href="#60" y="13.026"/><use xlink:href="#61" y="15.197"/><use xlink:href="#62" y="17.368"/><use xlink:href="#63" y="21.71"/><use xlink:href="#64" y="26.052"/><use xlink:href="#65" y="28.223"/><use xlink:href="#66" y="30.394"/><use xlink:href="#67" y="32.565"/><use xlink:href="#68" y="34.736"/><use xlink:href="#69" y="36.907"/><use xlink:href="#70" y="39.078"/><use xlink:href="#71" y="41.249"/><use xlink:href="#64" y="43.42"/><use xlink:href="#72" y="47.762"/><use xlink:href="#73" y="49.933"/><use xlink:href="#74" y="52.104"/><use xlink:href="#58" y="54.275"/><use xlink:href="#75" y="56.446"/><use xlink:href="#77" y="58.617"/><use xlink:href="#79" y="60.788"/><use xlink:href="#79" y="62.959"/><use xlink:href="#80" y="65.13"/><use xlink:href="#81" y="67.301"/><use xlink:href="#82" y="69.472"/><use xlink:href="#83" y="71.643"/><use xlink:href="#84" y="73.814"/><use xlink:href="#82" y="75.985"/><use xlink:href="#85" y="80.327"/><use xlink:href="#86" y="82.498"/><use xlink:href="#87" y="84.669"/><use xlink:href="#88" y="86.84"/><use xlink:href="#89" y="89.011"/><use xlink:href="#90" y="91.182"/><use xlink:href="#92" y="93.353"/><use xlink:href="#95" y="95.524"/><use xlink:href="#97" y="97.695"/><use xlink:href="#85" y="102.037"/><text x="12.024" y="105.878" class="c">Type:</text><text x="18.036" y="105.878" class="c">H</text></svg><svg x="29394"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="104.183"/><use xlink:href="#56"/><use xlink:href="#57" y="4.342"/><use xlink:href="#58" y="6.513"/><use xlink:href="#59" y="8.684"/><use xlink:href="#60" y="10.855"/><use xlink:href="#61" y="13.026"/><use xlink:href="#62" y="15.197"/><use xlink:href="#63" y="19.539"/><use xlink:href="#64" y="23.881"/><use xlink:href="#65" y="26.052"/><use xlink:href="#66" y="28.223"/><use xlink:href="#67" y="30.394"/><use xlink:href="#68" y="32.565"/><use xlink:href="#69" y="34.736"/><use xlink:href="#70" y="36.907"/><use xlink:href="#71" y="39.078"/><use xlink:href="#64" y="41.249"/><use xlink:href="#72" y="45.591"/><use xlink:href="#73" y="47.762"/><use xlink:href="#74" y="49.933"/><use xlink:href="#58" y="52.104"/><use xlink:href="#75" y="54.275"/><use xlink:href="#77" y="56.446"/><use xlink:href="#79" y="58.617"/><use xlink:href="#79" y="60.788"/><use xlink:href="#80" y="62.959"/><use xlink:href="#81" y="65.13"/><use xlink:href="#82" y="67.301"/><use xlink:href="#83" y="69.472"/><use xlink:href="#84" y="71.643"/><use xlink:href="#82" y="73.814"/><use xlink:href="#85" y="78.156"/><use xlink:href="#86" y="80.327"/><use xlink:href="#87" y="82.498"/><use xlink:href="#88" y="84.669"/><use xlink:href="#89" y="86.84"/><use xlink:href="#90" y="89.011"/><use xlink:href="#92" y="91.182"/><use xlink:href="#95" y="93.353"/><use xlink:href="#97" y="95.524"/><use xlink:href="#85" y="99.866"/><use xlink:href="#86" y="102.037"/><text x="12.024" y="105.878" class="c">Capacity:</text></svg><svg x="29607"><use xlink:href="#a"/><use xlink:href="#b" x="53.996" y="104.183"/><use xlink:href="#56"/><use xlink:href="#57" y="4.342"/><use xlink:href="#58" y="6.513"/><use xlink:href="#59" y="8.684"/><use xlink:href="#60" y="10.855"/><use xlink:href="#61" y="13.026"/><use xlink:href="#62" y="15.197"/><use xlink:href="#63" y="19.539"/><use xlink:href="#64" y="23.881"/><use xlink:href="#65" y="26.052"/><use xlink:href="#66" y="28.223"/><use xlink:href="#67" y="30.394"/><use xlink:href="#68" y="32.565"/><use xlink:href="#69" y="34.736"/><use xlink:href="#70" y="36.907"/><use xlink:href="#71" y="39.078"/><use xlink:href="#64" y="41.249"/><use xlink:href="#72" y="45.591"/><use xlink:href="#73" y="47.762"/><use xlink:href="#74" y="49.933"/><use xlink:href="#58" y="52.104"/><use xlink:href="#75" y="54.275"/><use xlink:href="#77" y="56.446"/><use xlink:href="#79" y="58.617"/><use xlink:href="#79" y="60.788"/><use xlink:href="#80" y="62.959"/><use xlink:href="#81" y="65.13"/><use xlink:href="#82" y="67.301"/><use xlink:href="#83" y="69.472"/><use xlink:href="#84" y="71.643"/><use xlink:href="#82" y="73.814"/><use xlink:href="#85" y="78.156"/><use xlink:href="#86" y="80.327"/><use xlink:href="#87" y="82.498"/><use xlink:href="#88" y="84.669"/><use xlink:href="#89" y="86.84"/><use xlink:href="#90" y="89.011"/><use xlink:href="#92" y="91.182"/><use xlink:href="#95" y="93.353"/><use xlink:href="#97" y="95.524"/><use xlink:href="#85" y="99.866"/><use xlink:href="#86" y="102.037"/><text x="12.024" y="105.878" class="c">Capacity:</text><text x="22.044" y="105.878" class="c">476940.0</text><text x="31.062" y="105.878" class="c">MB</text><text x="34.068" y="105.878" class="c">=</text><text x="36.072" y="105.878" class="c">465.7</text><text x="42.084" y="105.878" class="c">GB</text><text x="45.09" y="105.878" class="c">(97677316</text></svg><svg x="29820"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="104.183"/><use xlink:href="#57" y="2.171"/><use xlink:href="#58" y="4.342"/><use xlink:href="#59" y="6.513"/><use xlink:href="#60" y="8.684"/><use xlink:href="#61" y="10.855"/><use xlink:href="#62" y="13.026"/><use xlink:href="#63" y="17.368"/><use xlink:href="#64" y="21.71"/><use xlink:href="#65" y="23.881"/><use xlink:href="#66" y="26.052"/><use xlink:href="#67" y="28.223"/><use xlink:href="#68" y="30.394"/><use xlink:href="#69" y="32.565"/><use xlink:href="#70" y="34.736"/><use xlink:href="#71" y="36.907"/><use xlink:href="#64" y="39.078"/><use xlink:href="#72" y="43.42"/><use xlink:href="#73" y="45.591"/><use xlink:href="#74" y="47.762"/><use xlink:href="#58" y="49.933"/><use xlink:href="#75" y="52.104"/><use xlink:href="#77" y="54.275"/><use xlink:href="#79" y="56.446"/><use xlink:href="#79" y="58.617"/><use xlink:href="#80" y="60.788"/><use xlink:href="#81" y="62.959"/><use xlink:href="#82" y="65.13"/><use xlink:href="#83" y="67.301"/><use xlink:href="#84" y="69.472"/><use xlink:href="#82" y="71.643"/><use xlink:href="#85" y="75.985"/><use xlink:href="#86" y="78.156"/><use xlink:href="#87" y="80.327"/><use xlink:href="#88" y="82.498"/><use xlink:href="#89" y="84.669"/><use xlink:href="#90" y="86.84"/><use xlink:href="#92" y="89.011"/><use xlink:href="#95" y="91.182"/><use xlink:href="#97" y="93.353"/><use xlink:href="#85" y="97.695"/><use xlink:href="#86" y="99.866"/><use xlink:href="#87" y="102.037"/><text y="105.878" class="c">...</text><text x="4.008" y="105.878" class="c">is</text><text x="7.014" y="105.878" class="c">now</text><text x="11.022" y="105.878" class="c">current</text><text x="19.038" y="105.878" class="c">dev</text></svg><svg x="30033"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#57"/><use xlink:href="#58" y="2.171"/><use xlink:href="#59" y="4.342"/><use xlink:href="#60" y="6.513"/><use xlink:href="#61" y="8.684"/><use xlink:href="#62" y="10.855"/><use xlink:href="#63" y="15.197"/><use xlink:href="#64" y="19.539"/><use xlink:href="#65" y="21.71"/><use xlink:href="#66" y="23.881"/><use xlink:href="#67" y="26.052"/><use xlink:href="#68" y="28.223"/><use xlink:href="#69" y="30.394"/><use xlink:href="#70" y="32.565"/><use xlink:href="#71" y="34.736"/><use xlink:href="#64" y="36.907"/><use xlink:href="#72" y="41.249"/><use xlink:href="#73" y="43.42"/><use xlink:href="#74" y="45.591"/><use xlink:href="#58" y="47.762"/><use xlink:href="#75" y="49.933"/><use xlink:href="#77" y="52.104"/><use xlink:href="#79" y="54.275"/><use xlink:href="#79" y="56.446"/><use xlink:href="#80" y="58.617"/><use xlink:href="#81" y="60.788"/><use xlink:href="#82" y="62.959"/><use xlink:href="#83" y="65.13"/><use xlink:href="#84" y="67.301"/><use xlink:href="#82" y="69.472"/><use xlink:href="#85" y="73.814"/><use xlink:href="#86" y="75.985"/><use xlink:href="#87" y="78.156"/><use xlink:href="#88" y="80.327"/><use xlink:href="#89" y="82.498"/><use xlink:href="#90" y="84.669"/><use xlink:href="#92" y="86.84"/><use xlink:href="#95" y="89.011"/><use xlink:href="#97" y="91.182"/><use xlink:href="#85" y="95.524"/><use xlink:href="#86" y="97.695"/><use xlink:href="#87" y="99.866"/><use xlink:href="#88" y="102.037"/><use xlink:href="#89" y="104.208"/></svg><svg x="30246"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#59"/><use xlink:href="#60" y="2.171"/><use xlink:href="#61" y="4.342"/><use xlink:href="#62" y="6.513"/><use xlink:href="#63" y="10.855"/><use xlink:href="#64" y="15.197"/><use xlink:href="#65" y="17.368"/><use xlink:href="#66" y="19.539"/><use xlink:href="#67" y="21.71"/><use xlink:href="#68" y="23.881"/><use xlink:href="#69" y="26.052"/><use xlink:href="#70" y="28.223"/><use xlink:href="#71" y="30.394"/><use xlink:href="#64" y="32.565"/><use xlink:href="#72" y="36.907"/><use xlink:href="#73" y="39.078"/><use xlink:href="#74" y="41.249"/><use xlink:href="#58" y="43.42"/><use xlink:href="#75" y="45.591"/><use xlink:href="#77" y="47.762"/><use xlink:href="#79" y="49.933"/><use xlink:href="#79" y="52.104"/><use xlink:href="#80" y="54.275"/><use xlink:href="#81" y="56.446"/><use xlink:href="#82" y="58.617"/><use xlink:href="#83" y="60.788"/><use xlink:href="#84" y="62.959"/><use xlink:href="#82" y="65.13"/><use xlink:href="#85" y="69.472"/><use xlink:href="#86" y="71.643"/><use xlink:href="#87" y="73.814"/><use xlink:href="#88" y="75.985"/><use xlink:href="#89" y="78.156"/><use xlink:href="#90" y="80.327"/><use xlink:href="#92" y="82.498"/><use xlink:href="#95" y="84.669"/><use xlink:href="#97" y="86.84"/><use xlink:href="#85" y="91.182"/><use xlink:href="#86" y="93.353"/><use xlink:href="#87" y="95.524"/><use xlink:href="#88" y="97.695"/><use xlink:href="#89" y="99.866"/><use xlink:href="#90" y="102.037"/></svg><svg x="30459"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#59"/><use xlink:href="#60" y="2.171"/><use xlink:href="#61" y="4.342"/><use xlink:href="#62" y="6.513"/><use xlink:href="#63" y="10.855"/><use xlink:href="#64" y="15.197"/><use xlink:href="#65" y="17.368"/><use xlink:href="#66" y="19.539"/><use xlink:href="#67" y="21.71"/><use xlink:href="#68" y="23.881"/><use xlink:href="#69" y="26.052"/><use xlink:href="#70" y="28.223"/><use xlink:href="#71" y="30.394"/><use xlink:href="#64" y="32.565"/><use xlink:href="#72" y="36.907"/><use xlink:href="#73" y="39.078"/><use xlink:href="#74" y="41.249"/><use xlink:href="#58" y="43.42"/><use xlink:href="#75" y="45.591"/><use xlink:href="#77" y="47.762"/><use xlink:href="#79" y="49.933"/><use xlink:href="#79" y="52.104"/><use xlink:href="#80" y="54.275"/><use xlink:href="#81" y="56.446"/><use xlink:href="#82" y="58.617"/><use xlink:href="#83" y="60.788"/><use xlink:href="#84" y="62.959"/><use xlink:href="#82" y="65.13"/><use xlink:href="#85" y="69.472"/><use xlink:href="#86" y="71.643"/><use xlink:href="#87" y="73.814"/><use xlink:href="#88" y="75.985"/><use xlink:href="#89" y="78.156"/><use xlink:href="#90" y="80.327"/><use xlink:href="#92" y="82.498"/><use xlink:href="#95" y="84.669"/><use xlink:href="#97" y="86.84"/><use xlink:href="#85" y="91.182"/><use xlink:href="#86" y="93.353"/><use xlink:href="#87" y="95.524"/><use xlink:href="#88" y="97.695"/><use xlink:href="#89" y="99.866"/><use xlink:href="#90" y="102.037"/><use xlink:href="#91" y="104.208"/></svg><svg x="30672"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="104.183"/><use xlink:href="#60"/><use xlink:href="#61" y="2.171"/><use xlink:href="#62" y="4.342"/><use xlink:href="#63" y="8.684"/><use xlink:href="#64" y="13.026"/><use xlink:href="#65" y="15.197"/><use xlink:href="#66" y="17.368"/><use xlink:href="#67" y="19.539"/><use xlink:href="#68" y="21.71"/><use xlink:href="#69" y="23.881"/><use xlink:href="#70" y="26.052"/><use xlink:href="#71" y="28.223"/><use xlink:href="#64" y="30.394"/><use xlink:href="#72" y="34.736"/><use xlink:href="#73" y="36.907"/><use xlink:href="#74" y="39.078"/><use xlink:href="#58" y="41.249"/><use xlink:href="#75" y="43.42"/><use xlink:href="#77" y="45.591"/><use xlink:href="#79" y="47.762"/><use xlink:href="#79" y="49.933"/><use xlink:href="#80" y="52.104"/><use xlink:href="#81" y="54.275"/><use xlink:href="#82" y="56.446"/><use xlink:href="#83" y="58.617"/><use xlink:href="#84" y="60.788"/><use xlink:href="#82" y="62.959"/><use xlink:href="#85" y="67.301"/><use xlink:href="#86" y="69.472"/><use xlink:href="#87" y="71.643"/><use xlink:href="#88" y="73.814"/><use xlink:href="#89" y="75.985"/><use xlink:href="#90" y="78.156"/><use xlink:href="#92" y="80.327"/><use xlink:href="#95" y="82.498"/><use xlink:href="#97" y="84.669"/><use xlink:href="#85" y="89.011"/><use xlink:href="#86" y="91.182"/><use xlink:href="#87" y="93.353"/><use xlink:href="#88" y="95.524"/><use xlink:href="#89" y="97.695"/><use xlink:href="#90" y="99.866"/><use xlink:href="#92" y="102.037"/><use xlink:href="#93" y="104.208"/></svg><svg x="30885"><use xlink:href="#a"/><use xlink:href="#b" x="37.996" y="104.183"/><use xlink:href="#60"/><use xlink:href="#61" y="2.171"/><use xlink:href="#62" y="4.342"/><use xlink:href="#63" y="8.684"/><use xlink:href="#64" y="13.026"/><use xlink:href="#65" y="15.197"/><use xlink:href="#66" y="17.368"/><use xlink:href="#67" y="19.539"/><use xlink:href="#68" y="21.71"/><use xlink:href="#69" y="23.881"/><use xlink:href="#70" y="26.052"/><use xlink:href="#71" y="28.223"/><use xlink:href="#64" y="30.394"/><use xlink:href="#72" y="34.736"/><use xlink:href="#73" y="36.907"/><use xlink:href="#74" y="39.078"/><use xlink:href="#58" y="41.249"/><use xlink:href="#75" y="43.42"/><use xlink:href="#77" y="45.591"/><use xlink:href="#79" y="47.762"/><use xlink:href="#79" y="49.933"/><use xlink:href="#80" y="52.104"/><use xlink:href="#81" y="54.275"/><use xlink:href="#82" y="56.446"/><use xlink:href="#83" y="58.617"/><use xlink:href="#84" y="60.788"/><use xlink:href="#82" y="62.959"/><use xlink:href="#85" y="67.301"/><use xlink:href="#86" y="69.472"/><use xlink:href="#87" y="71.643"/><use xlink:href="#88" y="73.814"/><use xlink:href="#89" y="75.985"/><use xlink:href="#90" y="78.156"/><use xlink:href="#92" y="80.327"/><use xlink:href="#95" y="82.498"/><use xlink:href="#97" y="84.669"/><use xlink:href="#85" y="89.011"/><use xlink:href="#86" y="91.182"/><use xlink:href="#87" y="93.353"/><use xlink:href="#88" y="95.524"/><use xlink:href="#89" y="97.695"/><use xlink:href="#90" y="99.866"/><use xlink:href="#92" y="102.037"/><use xlink:href="#94" y="104.208"/></svg><svg x="31098"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="104.183"/><use xlink:href="#61"/><use xlink:href="#62" y="2.171"/><use xlink:href="#63" y="6.513"/><use xlink:href="#64" y="10.855"/><use xlink:href="#65" y="13.026"/><use xlink:href="#66" y="15.197"/><use xlink:href="#67" y="17.368"/><use xlink:href="#68" y="19.539"/><use xlink:href="#69" y="21.71"/><use xlink:href="#70" y="23.881"/><use xlink:href="#71" y="26.052"/><use xlink:href="#64" y="28.223"/><use xlink:href="#72" y="32.565"/><use xlink:href="#73" y="34.736"/><use xlink:href="#74" y="36.907"/><use xlink:href="#58" y="39.078"/><use xlink:href="#75" y="41.249"/><use xlink:href="#77" y="43.42"/><use xlink:href="#79" y="45.591"/><use xlink:href="#79" y="47.762"/><use xlink:href="#80" y="49.933"/><use xlink:href="#81" y="52.104"/><use xlink:href="#82" y="54.275"/><use xlink:href="#83" y="56.446"/><use xlink:href="#84" y="58.617"/><use xlink:href="#82" y="60.788"/><use xlink:href="#85" y="65.13"/><use xlink:href="#86" y="67.301"/><use xlink:href="#87" y="69.472"/><use xlink:href="#88" y="71.643"/><use xlink:href="#89" y="73.814"/><use xlink:href="#90" y="75.985"/><use xlink:href="#92" y="78.156"/><use xlink:href="#95" y="80.327"/><use xlink:href="#97" y="82.498"/><use xlink:href="#85" y="86.84"/><use xlink:href="#86" y="89.011"/><use xlink:href="#87" y="91.182"/><use xlink:href="#88" y="93.353"/><use xlink:href="#89" y="95.524"/><use xlink:href="#90" y="97.695"/><use xlink:href="#92" y="99.866"/><use xlink:href="#95" y="102.037"/><use xlink:href="#96" y="104.208"/></svg><svg x="31311"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="104.183"/><use xlink:href="#62"/><use xlink:href="#63" y="4.342"/><use xlink:href="#64" y="8.684"/><use xlink:href="#65" y="10.855"/><use xlink:href="#66" y="13.026"/><use xlink:href="#67" y="15.197"/><use xlink:href="#68" y="17.368"/><use xlink:href="#69" y="19.539"/><use xlink:href="#70" y="21.71"/><use xlink:href="#71" y="23.881"/><use xlink:href="#64" y="26.052"/><use xlink:href="#72" y="30.394"/><use xlink:href="#73" y="32.565"/><use xlink:href="#74" y="34.736"/><use xlink:href="#58" y="36.907"/><use xlink:href="#75" y="39.078"/><use xlink:href="#77" y="41.249"/><use xlink:href="#79" y="43.42"/><use xlink:href="#79" y="45.591"/><use xlink:href="#80" y="47.762"/><use xlink:href="#81" y="49.933"/><use xlink:href="#82" y="52.104"/><use xlink:href="#83" y="54.275"/><use xlink:href="#84" y="56.446"/><use xlink:href="#82" y="58.617"/><use xlink:href="#85" y="62.959"/><use xlink:href="#86" y="65.13"/><use xlink:href="#87" y="67.301"/><use xlink:href="#88" y="69.472"/><use xlink:href="#89" y="71.643"/><use xlink:href="#90" y="73.814"/><use xlink:href="#92" y="75.985"/><use xlink:href="#95" y="78.156"/><use xlink:href="#97" y="80.327"/><use xlink:href="#85" y="84.669"/><use xlink:href="#86" y="86.84"/><use xlink:href="#87" y="89.011"/><use xlink:href="#88" y="91.182"/><use xlink:href="#89" y="93.353"/><use xlink:href="#90" y="95.524"/><use xlink:href="#92" y="97.695"/><use xlink:href="#95" y="99.866"/><use xlink:href="#97" y="102.037"/><use xlink:href="#98" y="104.208"/></svg><svg x="31524"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#63" y="2.171"/><use xlink:href="#64" y="6.513"/><use xlink:href="#65" y="8.684"/><use xlink:href="#66" y="10.855"/><use xlink:href="#67" y="13.026"/><use xlink:href="#68" y="15.197"/><use xlink:href="#69" y="17.368"/><use xlink:href="#70" y="19.539"/><use xlink:href="#71" y="21.71"/><use xlink:href="#64" y="23.881"/><use xlink:href="#72" y="28.223"/><use xlink:href="#73" y="30.394"/><use xlink:href="#74" y="32.565"/><use xlink:href="#58" y="34.736"/><use xlink:href="#75" y="36.907"/><use xlink:href="#77" y="39.078"/><use xlink:href="#79" y="41.249"/><use xlink:href="#79" y="43.42"/><use xlink:href="#80" y="45.591"/><use xlink:href="#81" y="47.762"/><use xlink:href="#82" y="49.933"/><use xlink:href="#83" y="52.104"/><use xlink:href="#84" y="54.275"/><use xlink:href="#82" y="56.446"/><use xlink:href="#85" y="60.788"/><use xlink:href="#86" y="62.959"/><use xlink:href="#87" y="65.13"/><use xlink:href="#88" y="67.301"/><use xlink:href="#89" y="69.472"/><use xlink:href="#90" y="71.643"/><use xlink:href="#92" y="73.814"/><use xlink:href="#95" y="75.985"/><use xlink:href="#97" y="78.156"/><use xlink:href="#85" y="82.498"/><use xlink:href="#86" y="84.669"/><use xlink:href="#87" y="86.84"/><use xlink:href="#88" y="89.011"/><use xlink:href="#89" y="91.182"/><use xlink:href="#90" y="93.353"/><use xlink:href="#92" y="95.524"/><use xlink:href="#95" y="97.695"/><use xlink:href="#97" y="99.866"/><use xlink:href="#98" y="102.037"/></svg><svg x="31737"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#63" y="2.171"/><use xlink:href="#64" y="6.513"/><use xlink:href="#65" y="8.684"/><use xlink:href="#66" y="10.855"/><use xlink:href="#67" y="13.026"/><use xlink:href="#68" y="15.197"/><use xlink:href="#69" y="17.368"/><use xlink:href="#70" y="19.539"/><use xlink:href="#71" y="21.71"/><use xlink:href="#64" y="23.881"/><use xlink:href="#72" y="28.223"/><use xlink:href="#73" y="30.394"/><use xlink:href="#74" y="32.565"/><use xlink:href="#58" y="34.736"/><use xlink:href="#75" y="36.907"/><use xlink:href="#77" y="39.078"/><use xlink:href="#79" y="41.249"/><use xlink:href="#79" y="43.42"/><use xlink:href="#80" y="45.591"/><use xlink:href="#81" y="47.762"/><use xlink:href="#82" y="49.933"/><use xlink:href="#83" y="52.104"/><use xlink:href="#84" y="54.275"/><use xlink:href="#82" y="56.446"/><use xlink:href="#85" y="60.788"/><use xlink:href="#86" y="62.959"/><use xlink:href="#87" y="65.13"/><use xlink:href="#88" y="67.301"/><use xlink:href="#89" y="69.472"/><use xlink:href="#90" y="71.643"/><use xlink:href="#92" y="73.814"/><use xlink:href="#95" y="75.985"/><use xlink:href="#97" y="78.156"/><use xlink:href="#85" y="82.498"/><use xlink:href="#86" y="84.669"/><use xlink:href="#87" y="86.84"/><use xlink:href="#88" y="89.011"/><use xlink:href="#89" y="91.182"/><use xlink:href="#90" y="93.353"/><use xlink:href="#92" y="95.524"/><use xlink:href="#95" y="97.695"/><use xlink:href="#97" y="99.866"/><use xlink:href="#98" y="102.037"/><use xlink:href="#78" y="104.208"/></svg><svg x="31950"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#63"/><use xlink:href="#64" y="4.342"/><use xlink:href="#65" y="6.513"/><use xlink:href="#66" y="8.684"/><use xlink:href="#67" y="10.855"/><use xlink:href="#68" y="13.026"/><use xlink:href="#69" y="15.197"/><use xlink:href="#70" y="17.368"/><use xlink:href="#71" y="19.539"/><use xlink:href="#64" y="21.71"/><use xlink:href="#72" y="26.052"/><use xlink:href="#73" y="28.223"/><use xlink:href="#74" y="30.394"/><use xlink:href="#58" y="32.565"/><use xlink:href="#75" y="34.736"/><use xlink:href="#77" y="36.907"/><use xlink:href="#79" y="39.078"/><use xlink:href="#79" y="41.249"/><use xlink:href="#80" y="43.42"/><use xlink:href="#81" y="45.591"/><use xlink:href="#82" y="47.762"/><use xlink:href="#83" y="49.933"/><use xlink:href="#84" y="52.104"/><use xlink:href="#82" y="54.275"/><use xlink:href="#85" y="58.617"/><use xlink:href="#86" y="60.788"/><use xlink:href="#87" y="62.959"/><use xlink:href="#88" y="65.13"/><use xlink:href="#89" y="67.301"/><use xlink:href="#90" y="69.472"/><use xlink:href="#92" y="71.643"/><use xlink:href="#95" y="73.814"/><use xlink:href="#97" y="75.985"/><use xlink:href="#85" y="80.327"/><use xlink:href="#86" y="82.498"/><use xlink:href="#87" y="84.669"/><use xlink:href="#88" y="86.84"/><use xlink:href="#89" y="89.011"/><use xlink:href="#90" y="91.182"/><use xlink:href="#92" y="93.353"/><use xlink:href="#95" y="95.524"/><use xlink:href="#97" y="97.695"/><use xlink:href="#98" y="99.866"/><use xlink:href="#79" y="102.037"/></svg><svg x="32163"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#63"/><use xlink:href="#64" y="4.342"/><use xlink:href="#65" y="6.513"/><use xlink:href="#66" y="8.684"/><use xlink:href="#67" y="10.855"/><use xlink:href="#68" y="13.026"/><use xlink:href="#69" y="15.197"/><use xlink:href="#70" y="17.368"/><use xlink:href="#71" y="19.539"/><use xlink:href="#64" y="21.71"/><use xlink:href="#72" y="26.052"/><use xlink:href="#73" y="28.223"/><use xlink:href="#74" y="30.394"/><use xlink:href="#58" y="32.565"/><use xlink:href="#75" y="34.736"/><use xlink:href="#77" y="36.907"/><use xlink:href="#79" y="39.078"/><use xlink:href="#79" y="41.249"/><use xlink:href="#80" y="43.42"/><use xlink:href="#81" y="45.591"/><use xlink:href="#82" y="47.762"/><use xlink:href="#83" y="49.933"/><use xlink:href="#84" y="52.104"/><use xlink:href="#82" y="54.275"/><use xlink:href="#85" y="58.617"/><use xlink:href="#86" y="60.788"/><use xlink:href="#87" y="62.959"/><use xlink:href="#88" y="65.13"/><use xlink:href="#89" y="67.301"/><use xlink:href="#90" y="69.472"/><use xlink:href="#92" y="71.643"/><use xlink:href="#95" y="73.814"/><use xlink:href="#97" y="75.985"/><use xlink:href="#85" y="80.327"/><use xlink:href="#86" y="82.498"/><use xlink:href="#87" y="84.669"/><use xlink:href="#88" y="86.84"/><use xlink:href="#89" y="89.011"/><use xlink:href="#90" y="91.182"/><use xlink:href="#92" y="93.353"/><use xlink:href="#95" y="95.524"/><use xlink:href="#97" y="97.695"/><use xlink:href="#98" y="99.866"/><use xlink:href="#79" y="102.037"/><use xlink:href="#78" y="104.208"/></svg><svg x="32376"><use xlink:href="#a"/><use xlink:href="#b" x="13.996" y="104.183"/><use xlink:href="#64"/><use xlink:href="#65" y="2.171"/><use xlink:href="#66" y="4.342"/><use xlink:href="#67" y="6.513"/><use xlink:href="#68" y="8.684"/><use xlink:href="#69" y="10.855"/><use xlink:href="#70" y="13.026"/><use xlink:href="#71" y="15.197"/><use xlink:href="#64" y="17.368"/><use xlink:href="#72" y="21.71"/><use xlink:href="#73" y="23.881"/><use xlink:href="#74" y="26.052"/><use xlink:href="#58" y="28.223"/><use xlink:href="#75" y="30.394"/><use xlink:href="#77" y="32.565"/><use xlink:href="#79" y="34.736"/><use xlink:href="#79" y="36.907"/><use xlink:href="#80" y="39.078"/><use xlink:href="#81" y="41.249"/><use xlink:href="#82" y="43.42"/><use xlink:href="#83" y="45.591"/><use xlink:href="#84" y="47.762"/><use xlink:href="#82" y="49.933"/><use xlink:href="#85" y="54.275"/><use xlink:href="#86" y="56.446"/><use xlink:href="#87" y="58.617"/><use xlink:href="#88" y="60.788"/><use xlink:href="#89" y="62.959"/><use xlink:href="#90" y="65.13"/><use xlink:href="#92" y="67.301"/><use xlink:href="#95" y="69.472"/><use xlink:href="#97" y="71.643"/><use xlink:href="#85" y="75.985"/><use xlink:href="#86" y="78.156"/><use xlink:href="#87" y="80.327"/><use xlink:href="#88" y="82.498"/><use xlink:href="#89" y="84.669"/><use xlink:href="#90" y="86.84"/><use xlink:href="#92" y="89.011"/><use xlink:href="#95" y="91.182"/><use xlink:href="#97" y="93.353"/><use xlink:href="#98" y="95.524"/><use xlink:href="#79" y="97.695"/><use xlink:href="#79" y="99.866"/><text y="105.878" class="c">Device</text><text x="7.014" y="105.878" class="c">0:</text><text x="10.02" y="105.878" class="c">Vend</text></svg><svg x="32589"><use xlink:href="#a"/><use xlink:href="#b" x="45.996" y="104.183"/><use xlink:href="#64"/><use xlink:href="#65" y="2.171"/><use xlink:href="#66" y="4.342"/><use xlink:href="#67" y="6.513"/><use xlink:href="#68" y="8.684"/><use xlink:href="#69" y="10.855"/><use xlink:href="#70" y="13.026"/><use xlink:href="#71" y="15.197"/><use xlink:href="#64" y="17.368"/><use xlink:href="#72" y="21.71"/><use xlink:href="#73" y="23.881"/><use xlink:href="#74" y="26.052"/><use xlink:href="#58" y="28.223"/><use xlink:href="#75" y="30.394"/><use xlink:href="#77" y="32.565"/><use xlink:href="#79" y="34.736"/><use xlink:href="#79" y="36.907"/><use xlink:href="#80" y="39.078"/><use xlink:href="#81" y="41.249"/><use xlink:href="#82" y="43.42"/><use xlink:href="#83" y="45.591"/><use xlink:href="#84" y="47.762"/><use xlink:href="#82" y="49.933"/><use xlink:href="#85" y="54.275"/><use xlink:href="#86" y="56.446"/><use xlink:href="#87" y="58.617"/><use xlink:href="#88" y="60.788"/><use xlink:href="#89" y="62.959"/><use xlink:href="#90" y="65.13"/><use xlink:href="#92" y="67.301"/><use xlink:href="#95" y="69.472"/><use xlink:href="#97" y="71.643"/><use xlink:href="#85" y="75.985"/><use xlink:href="#86" y="78.156"/><use xlink:href="#87" y="80.327"/><use xlink:href="#88" y="82.498"/><use xlink:href="#89" y="84.669"/><use xlink:href="#90" y="86.84"/><use xlink:href="#92" y="89.011"/><use xlink:href="#95" y="91.182"/><use xlink:href="#97" y="93.353"/><use xlink:href="#98" y="95.524"/><use xlink:href="#79" y="97.695"/><use xlink:href="#79" y="99.866"/><text y="105.878" class="c">Device</text><text x="7.014" y="105.878" class="c">0:</text><text x="10.02" y="105.878" class="c">Vendor:</text><text x="18.036" y="105.878" class="c">0xc0a9</text><text x="25.05" y="105.878" class="c">Rev:</text><text x="30.06" y="105.878" class="c">P8CR002</text><text x="39.078" y="105.878" class="c">Prod:</text><text x="45.09" y="105.878" class="c">2</text></svg><svg x="32802"><use xlink:href="#a"/><use xlink:href="#b" x="10.996" y="104.183"/><use xlink:href="#65"/><use xlink:href="#66" y="2.171"/><use xlink:href="#67" y="4.342"/><use xlink:href="#68" y="6.513"/><use xlink:href="#69" y="8.684"/><use xlink:href="#70" y="10.855"/><use xlink:href="#71" y="13.026"/><use xlink:href="#64" y="15.197"/><use xlink:href="#72" y="19.539"/><use xlink:href="#73" y="21.71"/><use xlink:href="#74" y="23.881"/><use xlink:href="#58" y="26.052"/><use xlink:href="#75" y="28.223"/><use xlink:href="#77" y="30.394"/><use xlink:href="#79" y="32.565"/><use xlink:href="#79" y="34.736"/><use xlink:href="#80" y="36.907"/><use xlink:href="#81" y="39.078"/><use xlink:href="#82" y="41.249"/><use xlink:href="#83" y="43.42"/><use xlink:href="#84" y="45.591"/><use xlink:href="#82" y="47.762"/><use xlink:href="#85" y="52.104"/><use xlink:href="#86" y="54.275"/><use xlink:href="#87" y="56.446"/><use xlink:href="#88" y="58.617"/><use xlink:href="#89" y="60.788"/><use xlink:href="#90" y="62.959"/><use xlink:href="#92" y="65.13"/><use xlink:href="#95" y="67.301"/><use xlink:href="#97" y="69.472"/><use xlink:href="#85" y="73.814"/><use xlink:href="#86" y="75.985"/><use xlink:href="#87" y="78.156"/><use xlink:href="#88" y="80.327"/><use xlink:href="#89" y="82.498"/><use xlink:href="#90" y="84.669"/><use xlink:href="#92" y="86.84"/><use xlink:href="#95" y="89.011"/><use xlink:href="#97" y="91.182"/><use xlink:href="#98" y="93.353"/><use xlink:href="#79" y="95.524"/><use xlink:href="#79" y="97.695"/><use xlink:href="#85" y="102.037"/></svg><svg x="33015"><use xlink:href="#a"/><use xlink:href="#b" x="13.996" y="104.183"/><use xlink:href="#66"/><use xlink:href="#67" y="2.171"/><use xlink:href="#68" y="4.342"/><use xlink:href="#69" y="6.513"/><use xlink:href="#70" y="8.684"/><use xlink:href="#71" y="10.855"/><use xlink:href="#64" y="13.026"/><use xlink:href="#72" y="17.368"/><use xlink:href="#73" y="19.539"/><use xlink:href="#74" y="21.71"/><use xlink:href="#58" y="23.881"/><use xlink:href="#75" y="26.052"/><use xlink:href="#77" y="28.223"/><use xlink:href="#79" y="30.394"/><use xlink:href="#79" y="32.565"/><use xlink:href="#80" y="34.736"/><use xlink:href="#81" y="36.907"/><use xlink:href="#82" y="39.078"/><use xlink:href="#83" y="41.249"/><use xlink:href="#84" y="43.42"/><use xlink:href="#82" y="45.591"/><use xlink:href="#85" y="49.933"/><use xlink:href="#86" y="52.104"/><use xlink:href="#87" y="54.275"/><use xlink:href="#88" y="56.446"/><use xlink:href="#89" y="58.617"/><use xlink:href="#90" y="60.788"/><use xlink:href="#92" y="62.959"/><use xlink:href="#95" y="65.13"/><use xlink:href="#97" y="67.301"/><use xlink:href="#85" y="71.643"/><use xlink:href="#86" y="73.814"/><use xlink:href="#87" y="75.985"/><use xlink:href="#88" y="78.156"/><use xlink:href="#89" y="80.327"/><use xlink:href="#90" y="82.498"/><use xlink:href="#92" y="84.669"/><use xlink:href="#95" y="86.84"/><use xlink:href="#97" y="89.011"/><use xlink:href="#98" y="91.182"/><use xlink:href="#79" y="93.353"/><use xlink:href="#79" y="95.524"/><use xlink:href="#85" y="99.866"/><use xlink:href="#86" y="102.037"/><text x="12.024" y="105.878" class="c">Ca</text></svg><svg x="33228"><use xlink:href="#a"/><use xlink:href="#b" x="45.996" y="104.183"/><use xlink:href="#66"/><use xlink:href="#67" y="2.171"/><use xlink:href="#68" y="4.342"/><use xlink:href="#69" y="6.513"/><use xlink:href="#70" y="8.684"/><use xlink:href="#71" y="10.855"/><use xlink:href="#64" y="13.026"/><use xlink:href="#72" y="17.368"/><use xlink:href="#73" y="19.539"/><use xlink:href="#74" y="21.71"/><use xlink:href="#58" y="23.881"/><use xlink:href="#75" y="26.052"/><use xlink:href="#77" y="28.223"/><use xlink:href="#79" y="30.394"/><use xlink:href="#79" y="32.565"/><use xlink:href="#80" y="34.736"/><use xlink:href="#81" y="36.907"/><use xlink:href="#82" y="39.078"/><use xlink:href="#83" y="41.249"/><use xlink:href="#84" y="43.42"/><use xlink:href="#82" y="45.591"/><use xlink:href="#85" y="49.933"/><use xlink:href="#86" y="52.104"/><use xlink:href="#87" y="54.275"/><use xlink:href="#88" y="56.446"/><use xlink:href="#89" y="58.617"/><use xlink:href="#90" y="60.788"/><use xlink:href="#92" y="62.959"/><use xlink:href="#95" y="65.13"/><use xlink:href="#97" y="67.301"/><use xlink:href="#85" y="71.643"/><use xlink:href="#86" y="73.814"/><use xlink:href="#87" y="75.985"/><use xlink:href="#88" y="78.156"/><use xlink:href="#89" y="80.327"/><use xlink:href="#90" y="82.498"/><use xlink:href="#92" y="84.669"/><use xlink:href="#95" y="86.84"/><use xlink:href="#97" y="89.011"/><use xlink:href="#98" y="91.182"/><use xlink:href="#79" y="93.353"/><use xlink:href="#79" y="95.524"/><use xlink:href="#85" y="99.866"/><use xlink:href="#86" y="102.037"/><text x="12.024" y="105.878" class="c">Capacity:</text><text x="22.044" y="105.878" class="c">476940.0</text><text x="31.062" y="105.878" class="c">MB</text><text x="34.068" y="105.878" class="c">=</text><text x="36.072" y="105.878" class="c">465.7</text><text x="42.084" y="105.878" class="c">GB</text><text x="45.09" y="105.878" class="c">(</text></svg><svg x="33441"><use xlink:href="#a"/><use xlink:href="#b" x="13.996" y="104.183"/><use xlink:href="#67"/><use xlink:href="#68" y="2.171"/><use xlink:href="#69" y="4.342"/><use xlink:href="#70" y="6.513"/><use xlink:href="#71" y="8.684"/><use xlink:href="#64" y="10.855"/><use xlink:href="#72" y="15.197"/><use xlink:href="#73" y="17.368"/><use xlink:href="#74" y="19.539"/><use xlink:href="#58" y="21.71"/><use xlink:href="#75" y="23.881"/><use xlink:href="#77" y="26.052"/><use xlink:href="#79" y="28.223"/><use xlink:href="#79" y="30.394"/><use xlink:href="#80" y="32.565"/><use xlink:href="#81" y="34.736"/><use xlink:href="#82" y="36.907"/><use xlink:href="#83" y="39.078"/><use xlink:href="#84" y="41.249"/><use xlink:href="#82" y="43.42"/><use xlink:href="#85" y="47.762"/><use xlink:href="#86" y="49.933"/><use xlink:href="#87" y="52.104"/><use xlink:href="#88" y="54.275"/><use xlink:href="#89" y="56.446"/><use xlink:href="#90" y="58.617"/><use xlink:href="#92" y="60.788"/><use xlink:href="#95" y="62.959"/><use xlink:href="#97" y="65.13"/><use xlink:href="#85" y="69.472"/><use xlink:href="#86" y="71.643"/><use xlink:href="#87" y="73.814"/><use xlink:href="#88" y="75.985"/><use xlink:href="#89" y="78.156"/><use xlink:href="#90" y="80.327"/><use xlink:href="#92" y="82.498"/><use xlink:href="#95" y="84.669"/><use xlink:href="#97" y="86.84"/><use xlink:href="#98" y="89.011"/><use xlink:href="#79" y="91.182"/><use xlink:href="#79" y="93.353"/><use xlink:href="#85" y="97.695"/><use xlink:href="#86" y="99.866"/><use xlink:href="#87" y="102.037"/><text y="105.878" class="c">...</text><text x="4.008" y="105.878" class="c">is</text><text x="7.014" y="105.878" class="c">now</text><text x="11.022" y="105.878" class="c">cur</text></svg><svg x="33654"><use xlink:href="#a"/><use xlink:href="#b" x="18.996" y="104.183"/><use xlink:href="#68"/><use xlink:href="#69" y="2.171"/><use xlink:href="#70" y="4.342"/><use xlink:href="#71" y="6.513"/><use xlink:href="#64" y="8.684"/><use xlink:href="#72" y="13.026"/><use xlink:href="#73" y="15.197"/><use xlink:href="#74" y="17.368"/><use xlink:href="#58" y="19.539"/><use xlink:href="#75" y="21.71"/><use xlink:href="#77" y="23.881"/><use xlink:href="#79" y="26.052"/><use xlink:href="#79" y="28.223"/><use xlink:href="#80" y="30.394"/><use xlink:href="#81" y="32.565"/><use xlink:href="#82" y="34.736"/><use xlink:href="#83" y="36.907"/><use xlink:href="#84" y="39.078"/><use xlink:href="#82" y="41.249"/><use xlink:href="#85" y="45.591"/><use xlink:href="#86" y="47.762"/><use xlink:href="#87" y="49.933"/><use xlink:href="#88" y="52.104"/><use xlink:href="#89" y="54.275"/><use xlink:href="#90" y="56.446"/><use xlink:href="#92" y="58.617"/><use xlink:href="#95" y="60.788"/><use xlink:href="#97" y="62.959"/><use xlink:href="#85" y="67.301"/><use xlink:href="#86" y="69.472"/><use xlink:href="#87" y="71.643"/><use xlink:href="#88" y="73.814"/><use xlink:href="#89" y="75.985"/><use xlink:href="#90" y="78.156"/><use xlink:href="#92" y="80.327"/><use xlink:href="#95" y="82.498"/><use xlink:href="#97" y="84.669"/><use xlink:href="#98" y="86.84"/><use xlink:href="#79" y="89.011"/><use xlink:href="#79" y="91.182"/><use xlink:href="#85" y="95.524"/><use xlink:href="#86" y="97.695"/><use xlink:href="#87" y="99.866"/><use xlink:href="#88" y="102.037"/><text y="105.878" class="c">Try</text><text x="4.008" y="105.878" class="c">booting</text><text x="12.024" y="105.878" class="c">from</text><text x="17.034" y="105.878" class="c">NV</text></svg><svg x="33867"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#69"/><use xlink:href="#70" y="2.171"/><use xlink:href="#71" y="4.342"/><use xlink:href="#64" y="6.513"/><use xlink:href="#72" y="10.855"/><use xlink:href="#73" y="13.026"/><use xlink:href="#74" y="15.197"/><use xlink:href="#58" y="17.368"/><use xlink:href="#75" y="19.539"/><use xlink:href="#77" y="21.71"/><use xlink:href="#79" y="23.881"/><use xlink:href="#79" y="26.052"/><use xlink:href="#80" y="28.223"/><use xlink:href="#81" y="30.394"/><use xlink:href="#82" y="32.565"/><use xlink:href="#83" y="34.736"/><use xlink:href="#84" y="36.907"/><use xlink:href="#82" y="39.078"/><use xlink:href="#85" y="43.42"/><use xlink:href="#86" y="45.591"/><use xlink:href="#87" y="47.762"/><use xlink:href="#88" y="49.933"/><use xlink:href="#89" y="52.104"/><use xlink:href="#90" y="54.275"/><use xlink:href="#92" y="56.446"/><use xlink:href="#95" y="58.617"/><use xlink:href="#97" y="60.788"/><use xlink:href="#85" y="65.13"/><use xlink:href="#86" y="67.301"/><use xlink:href="#87" y="69.472"/><use xlink:href="#88" y="71.643"/><use xlink:href="#89" y="73.814"/><use xlink:href="#90" y="75.985"/><use xlink:href="#92" y="78.156"/><use xlink:href="#95" y="80.327"/><use xlink:href="#97" y="82.498"/><use xlink:href="#98" y="84.669"/><use xlink:href="#79" y="86.84"/><use xlink:href="#79" y="89.011"/><use xlink:href="#85" y="93.353"/><use xlink:href="#86" y="95.524"/><use xlink:href="#87" y="97.695"/><use xlink:href="#88" y="99.866"/><use xlink:href="#89" y="102.037"/></svg><svg x="34080"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#69"/><use xlink:href="#70" y="2.171"/><use xlink:href="#71" y="4.342"/><use xlink:href="#64" y="6.513"/><use xlink:href="#72" y="10.855"/><use xlink:href="#73" y="13.026"/><use xlink:href="#74" y="15.197"/><use xlink:href="#58" y="17.368"/><use xlink:href="#75" y="19.539"/><use xlink:href="#77" y="21.71"/><use xlink:href="#79" y="23.881"/><use xlink:href="#79" y="26.052"/><use xlink:href="#80" y="28.223"/><use xlink:href="#81" y="30.394"/><use xlink:href="#82" y="32.565"/><use xlink:href="#83" y="34.736"/><use xlink:href="#84" y="36.907"/><use xlink:href="#82" y="39.078"/><use xlink:href="#85" y="43.42"/><use xlink:href="#86" y="45.591"/><use xlink:href="#87" y="47.762"/><use xlink:href="#88" y="49.933"/><use xlink:href="#89" y="52.104"/><use xlink:href="#90" y="54.275"/><use xlink:href="#92" y="56.446"/><use xlink:href="#95" y="58.617"/><use xlink:href="#97" y="60.788"/><use xlink:href="#85" y="65.13"/><use xlink:href="#86" y="67.301"/><use xlink:href="#87" y="69.472"/><use xlink:href="#88" y="71.643"/><use xlink:href="#89" y="73.814"/><use xlink:href="#90" y="75.985"/><use xlink:href="#92" y="78.156"/><use xlink:href="#95" y="80.327"/><use xlink:href="#97" y="82.498"/><use xlink:href="#98" y="84.669"/><use xlink:href="#79" y="86.84"/><use xlink:href="#79" y="89.011"/><use xlink:href="#85" y="93.353"/><use xlink:href="#86" y="95.524"/><use xlink:href="#87" y="97.695"/><use xlink:href="#88" y="99.866"/><use xlink:href="#89" y="102.037"/><text y="105.878" class="c">419</text><text x="4.008" y="105.878" class="c">bytes</text><text x="10.02" y="105.878" class="c">read</text><text x="15.03" y="105.878" class="c">in</text><text x="18.036" y="105.878" class="c">4</text><text x="20.04" y="105.878" class="c">ms</text><text x="23.046" y="105.878" class="c">(101.6</text><text x="30.06" y="105.878" class="c">Ki</text></svg><svg x="34293"><use xlink:href="#a"/><use xlink:href="#b" x="25.996" y="104.183"/><use xlink:href="#70"/><use xlink:href="#71" y="2.171"/><use xlink:href="#64" y="4.342"/><use xlink:href="#72" y="8.684"/><use xlink:href="#73" y="10.855"/><use xlink:href="#74" y="13.026"/><use xlink:href="#58" y="15.197"/><use xlink:href="#75" y="17.368"/><use xlink:href="#77" y="19.539"/><use xlink:href="#79" y="21.71"/><use xlink:href="#79" y="23.881"/><use xlink:href="#80" y="26.052"/><use xlink:href="#81" y="28.223"/><use xlink:href="#82" y="30.394"/><use xlink:href="#83" y="32.565"/><use xlink:href="#84" y="34.736"/><use xlink:href="#82" y="36.907"/><use xlink:href="#85" y="41.249"/><use xlink:href="#86" y="43.42"/><use xlink:href="#87" y="45.591"/><use xlink:href="#88" y="47.762"/><use xlink:href="#89" y="49.933"/><use xlink:href="#90" y="52.104"/><use xlink:href="#92" y="54.275"/><use xlink:href="#95" y="56.446"/><use xlink:href="#97" y="58.617"/><use xlink:href="#85" y="62.959"/><use xlink:href="#86" y="65.13"/><use xlink:href="#87" y="67.301"/><use xlink:href="#88" y="69.472"/><use xlink:href="#89" y="71.643"/><use xlink:href="#90" y="73.814"/><use xlink:href="#92" y="75.985"/><use xlink:href="#95" y="78.156"/><use xlink:href="#97" y="80.327"/><use xlink:href="#98" y="82.498"/><use xlink:href="#79" y="84.669"/><use xlink:href="#79" y="86.84"/><use xlink:href="#85" y="91.182"/><use xlink:href="#86" y="93.353"/><use xlink:href="#87" y="95.524"/><use xlink:href="#88" y="97.695"/><use xlink:href="#89" y="99.866"/><use xlink:href="#99" y="102.037"/><text y="105.878" class="c">Retrieving</text><text x="11.022" y="105.878" class="c">file:</text><text x="17.034" y="105.878" class="c">/extlinux</text></svg><svg x="34506"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#71"/><use xlink:href="#64" y="2.171"/><use xlink:href="#72" y="6.513"/><use xlink:href="#73" y="8.684"/><use xlink:href="#74" y="10.855"/><use xlink:href="#58" y="13.026"/><use xlink:href="#75" y="15.197"/><use xlink:href="#77" y="17.368"/><use xlink:href="#79" y="19.539"/><use xlink:href="#79" y="21.71"/><use xlink:href="#80" y="23.881"/><use xlink:href="#81" y="26.052"/><use xlink:href="#82" y="28.223"/><use xlink:href="#83" y="30.394"/><use xlink:href="#84" y="32.565"/><use xlink:href="#82" y="34.736"/><use xlink:href="#85" y="39.078"/><use xlink:href="#86" y="41.249"/><use xlink:href="#87" y="43.42"/><use xlink:href="#88" y="45.591"/><use xlink:href="#89" y="47.762"/><use xlink:href="#90" y="49.933"/><use xlink:href="#92" y="52.104"/><use xlink:href="#95" y="54.275"/><use xlink:href="#97" y="56.446"/><use xlink:href="#85" y="60.788"/><use xlink:href="#86" y="62.959"/><use xlink:href="#87" y="65.13"/><use xlink:href="#88" y="67.301"/><use xlink:href="#89" y="69.472"/><use xlink:href="#90" y="71.643"/><use xlink:href="#92" y="73.814"/><use xlink:href="#95" y="75.985"/><use xlink:href="#97" y="78.156"/><use xlink:href="#98" y="80.327"/><use xlink:href="#79" y="82.498"/><use xlink:href="#79" y="84.669"/><use xlink:href="#85" y="89.011"/><use xlink:href="#86" y="91.182"/><use xlink:href="#87" y="93.353"/><use xlink:href="#88" y="95.524"/><use xlink:href="#89" y="97.695"/><use xlink:href="#99" y="99.866"/><use xlink:href="#100" y="102.037"/></svg><svg x="34719"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#71"/><use xlink:href="#64" y="2.171"/><use xlink:href="#72" y="6.513"/><use xlink:href="#73" y="8.684"/><use xlink:href="#74" y="10.855"/><use xlink:href="#58" y="13.026"/><use xlink:href="#75" y="15.197"/><use xlink:href="#77" y="17.368"/><use xlink:href="#79" y="19.539"/><use xlink:href="#79" y="21.71"/><use xlink:href="#80" y="23.881"/><use xlink:href="#81" y="26.052"/><use xlink:href="#82" y="28.223"/><use xlink:href="#83" y="30.394"/><use xlink:href="#84" y="32.565"/><use xlink:href="#82" y="34.736"/><use xlink:href="#85" y="39.078"/><use xlink:href="#86" y="41.249"/><use xlink:href="#87" y="43.42"/><use xlink:href="#88" y="45.591"/><use xlink:href="#89" y="47.762"/><use xlink:href="#90" y="49.933"/><use xlink:href="#92" y="52.104"/><use xlink:href="#95" y="54.275"/><use xlink:href="#97" y="56.446"/><use xlink:href="#85" y="60.788"/><use xlink:href="#86" y="62.959"/><use xlink:href="#87" y="65.13"/><use xlink:href="#88" y="67.301"/><use xlink:href="#89" y="69.472"/><use xlink:href="#90" y="71.643"/><use xlink:href="#92" y="73.814"/><use xlink:href="#95" y="75.985"/><use xlink:href="#97" y="78.156"/><use xlink:href="#98" y="80.327"/><use xlink:href="#79" y="82.498"/><use xlink:href="#79" y="84.669"/><use xlink:href="#85" y="89.011"/><use xlink:href="#86" y="91.182"/><use xlink:href="#87" y="93.353"/><use xlink:href="#88" y="95.524"/><use xlink:href="#89" y="97.695"/><use xlink:href="#99" y="99.866"/><use xlink:href="#100" y="102.037"/><text y="105.878" class="c">838</text><text x="4.008" y="105.878" class="c">bytes</text><text x="10.02" y="105.878" class="c">read</text><text x="15.03" y="105.878" class="c">in</text><text x="18.036" y="105.878" class="c">4</text><text x="20.04" y="105.878" class="c">ms</text><text x="23.046" y="105.878" class="c">(204.1</text><text x="30.06" y="105.878" class="c">Ki</text></svg><svg x="34932"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="104.183"/><use xlink:href="#72" y="2.171"/><use xlink:href="#73" y="4.342"/><use xlink:href="#74" y="6.513"/><use xlink:href="#58" y="8.684"/><use xlink:href="#75" y="10.855"/><use xlink:href="#77" y="13.026"/><use xlink:href="#79" y="15.197"/><use xlink:href="#79" y="17.368"/><use xlink:href="#80" y="19.539"/><use xlink:href="#81" y="21.71"/><use xlink:href="#82" y="23.881"/><use xlink:href="#83" y="26.052"/><use xlink:href="#84" y="28.223"/><use xlink:href="#82" y="30.394"/><use xlink:href="#85" y="34.736"/><use xlink:href="#86" y="36.907"/><use xlink:href="#87" y="39.078"/><use xlink:href="#88" y="41.249"/><use xlink:href="#89" y="43.42"/><use xlink:href="#90" y="45.591"/><use xlink:href="#92" y="47.762"/><use xlink:href="#95" y="49.933"/><use xlink:href="#97" y="52.104"/><use xlink:href="#85" y="56.446"/><use xlink:href="#86" y="58.617"/><use xlink:href="#87" y="60.788"/><use xlink:href="#88" y="62.959"/><use xlink:href="#89" y="65.13"/><use xlink:href="#90" y="67.301"/><use xlink:href="#92" y="69.472"/><use xlink:href="#95" y="71.643"/><use xlink:href="#97" y="73.814"/><use xlink:href="#98" y="75.985"/><use xlink:href="#79" y="78.156"/><use xlink:href="#79" y="80.327"/><use xlink:href="#85" y="84.669"/><use xlink:href="#86" y="86.84"/><use xlink:href="#87" y="89.011"/><use xlink:href="#88" y="91.182"/><use xlink:href="#89" y="93.353"/><use xlink:href="#99" y="95.524"/><use xlink:href="#100" y="97.695"/><use xlink:href="#101" y="99.866"/><use xlink:href="#102" y="102.037"/><text y="105.878" class="c">1:</text><text x="8.016" y="105.878" class="c">Debian</text><text x="15.03" y="105.878" class="c">GNU</text></svg><svg x="35145"><use xlink:href="#a"/><use xlink:href="#b" x="49.996" y="104.183"/><use xlink:href="#72" y="2.171"/><use xlink:href="#73" y="4.342"/><use xlink:href="#74" y="6.513"/><use xlink:href="#58" y="8.684"/><use xlink:href="#75" y="10.855"/><use xlink:href="#77" y="13.026"/><use xlink:href="#79" y="15.197"/><use xlink:href="#79" y="17.368"/><use xlink:href="#80" y="19.539"/><use xlink:href="#81" y="21.71"/><use xlink:href="#82" y="23.881"/><use xlink:href="#83" y="26.052"/><use xlink:href="#84" y="28.223"/><use xlink:href="#82" y="30.394"/><use xlink:href="#85" y="34.736"/><use xlink:href="#86" y="36.907"/><use xlink:href="#87" y="39.078"/><use xlink:href="#88" y="41.249"/><use xlink:href="#89" y="43.42"/><use xlink:href="#90" y="45.591"/><use xlink:href="#92" y="47.762"/><use xlink:href="#95" y="49.933"/><use xlink:href="#97" y="52.104"/><use xlink:href="#85" y="56.446"/><use xlink:href="#86" y="58.617"/><use xlink:href="#87" y="60.788"/><use xlink:href="#88" y="62.959"/><use xlink:href="#89" y="65.13"/><use xlink:href="#90" y="67.301"/><use xlink:href="#92" y="69.472"/><use xlink:href="#95" y="71.643"/><use xlink:href="#97" y="73.814"/><use xlink:href="#98" y="75.985"/><use xlink:href="#79" y="78.156"/><use xlink:href="#79" y="80.327"/><use xlink:href="#85" y="84.669"/><use xlink:href="#86" y="86.84"/><use xlink:href="#87" y="89.011"/><use xlink:href="#88" y="91.182"/><use xlink:href="#89" y="93.353"/><use xlink:href="#99" y="95.524"/><use xlink:href="#100" y="97.695"/><use xlink:href="#101" y="99.866"/><use xlink:href="#102" y="102.037"/><use xlink:href="#103" y="104.208"/></svg><svg x="35358"><use xlink:href="#a"/><use xlink:href="#b" x="34.996" y="104.183"/><use xlink:href="#72"/><use xlink:href="#73" y="2.171"/><use xlink:href="#74" y="4.342"/><use xlink:href="#58" y="6.513"/><use xlink:href="#75" y="8.684"/><use xlink:href="#77" y="10.855"/><use xlink:href="#79" y="13.026"/><use xlink:href="#79" y="15.197"/><use xlink:href="#80" y="17.368"/><use xlink:href="#81" y="19.539"/><use xlink:href="#82" y="21.71"/><use xlink:href="#83" y="23.881"/><use xlink:href="#84" y="26.052"/><use xlink:href="#82" y="28.223"/><use xlink:href="#85" y="32.565"/><use xlink:href="#86" y="34.736"/><use xlink:href="#87" y="36.907"/><use xlink:href="#88" y="39.078"/><use xlink:href="#89" y="41.249"/><use xlink:href="#90" y="43.42"/><use xlink:href="#92" y="45.591"/><use xlink:href="#95" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#85" y="54.275"/><use xlink:href="#86" y="56.446"/><use xlink:href="#87" y="58.617"/><use xlink:href="#88" y="60.788"/><use xlink:href="#89" y="62.959"/><use xlink:href="#90" y="65.13"/><use xlink:href="#92" y="67.301"/><use xlink:href="#95" y="69.472"/><use xlink:href="#97" y="71.643"/><use xlink:href="#98" y="73.814"/><use xlink:href="#79" y="75.985"/><use xlink:href="#79" y="78.156"/><use xlink:href="#85" y="82.498"/><use xlink:href="#86" y="84.669"/><use xlink:href="#87" y="86.84"/><use xlink:href="#88" y="89.011"/><use xlink:href="#89" y="91.182"/><use xlink:href="#99" y="93.353"/><use xlink:href="#100" y="95.524"/><use xlink:href="#101" y="97.695"/><use xlink:href="#102" y="99.866"/><use xlink:href="#103" y="102.037"/><text y="105.878" class="c">2:</text><text x="8.016" y="105.878" class="c">Debian</text><text x="15.03" y="105.878" class="c">GNU/Linux</text><text x="25.05" y="105.878" class="c">bookworm/s</text></svg><svg x="35571"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#72"/><use xlink:href="#73" y="2.171"/><use xlink:href="#74" y="4.342"/><use xlink:href="#58" y="6.513"/><use xlink:href="#75" y="8.684"/><use xlink:href="#77" y="10.855"/><use xlink:href="#79" y="13.026"/><use xlink:href="#79" y="15.197"/><use xlink:href="#80" y="17.368"/><use xlink:href="#81" y="19.539"/><use xlink:href="#82" y="21.71"/><use xlink:href="#83" y="23.881"/><use xlink:href="#84" y="26.052"/><use xlink:href="#82" y="28.223"/><use xlink:href="#85" y="32.565"/><use xlink:href="#86" y="34.736"/><use xlink:href="#87" y="36.907"/><use xlink:href="#88" y="39.078"/><use xlink:href="#89" y="41.249"/><use xlink:href="#90" y="43.42"/><use xlink:href="#92" y="45.591"/><use xlink:href="#95" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#85" y="54.275"/><use xlink:href="#86" y="56.446"/><use xlink:href="#87" y="58.617"/><use xlink:href="#88" y="60.788"/><use xlink:href="#89" y="62.959"/><use xlink:href="#90" y="65.13"/><use xlink:href="#92" y="67.301"/><use xlink:href="#95" y="69.472"/><use xlink:href="#97" y="71.643"/><use xlink:href="#98" y="73.814"/><use xlink:href="#79" y="75.985"/><use xlink:href="#79" y="78.156"/><use xlink:href="#85" y="82.498"/><use xlink:href="#86" y="84.669"/><use xlink:href="#87" y="86.84"/><use xlink:href="#88" y="89.011"/><use xlink:href="#89" y="91.182"/><use xlink:href="#99" y="93.353"/><use xlink:href="#100" y="95.524"/><use xlink:href="#101" y="97.695"/><use xlink:href="#102" y="99.866"/><use xlink:href="#103" y="102.037"/><use xlink:href="#104" y="104.208"/></svg><svg x="35784"><use xlink:href="#a"/><use xlink:href="#b" x="13.996" y="104.183"/><use xlink:href="#74"/><use xlink:href="#58" y="2.171"/><use xlink:href="#75" y="4.342"/><use xlink:href="#77" y="6.513"/><use xlink:href="#79" y="8.684"/><use xlink:href="#79" y="10.855"/><use xlink:href="#80" y="13.026"/><use xlink:href="#81" y="15.197"/><use xlink:href="#82" y="17.368"/><use xlink:href="#83" y="19.539"/><use xlink:href="#84" y="21.71"/><use xlink:href="#82" y="23.881"/><use xlink:href="#85" y="28.223"/><use xlink:href="#86" y="30.394"/><use xlink:href="#87" y="32.565"/><use xlink:href="#88" y="34.736"/><use xlink:href="#89" y="36.907"/><use xlink:href="#90" y="39.078"/><use xlink:href="#92" y="41.249"/><use xlink:href="#95" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#85" y="49.933"/><use xlink:href="#86" y="52.104"/><use xlink:href="#87" y="54.275"/><use xlink:href="#88" y="56.446"/><use xlink:href="#89" y="58.617"/><use xlink:href="#90" y="60.788"/><use xlink:href="#92" y="62.959"/><use xlink:href="#95" y="65.13"/><use xlink:href="#97" y="67.301"/><use xlink:href="#98" y="69.472"/><use xlink:href="#79" y="71.643"/><use xlink:href="#79" y="73.814"/><use xlink:href="#85" y="78.156"/><use xlink:href="#86" y="80.327"/><use xlink:href="#87" y="82.498"/><use xlink:href="#88" y="84.669"/><use xlink:href="#89" y="86.84"/><use xlink:href="#99" y="89.011"/><use xlink:href="#100" y="91.182"/><use xlink:href="#101" y="93.353"/><use xlink:href="#102" y="95.524"/><use xlink:href="#103" y="97.695"/><use xlink:href="#104" y="99.866"/><use xlink:href="#105" y="102.037"/><text y="105.878" class="c">Enter</text><text x="6.012" y="105.878" class="c">choice:</text></svg><svg x="35997"><use xlink:href="#a"/><use xlink:href="#b" x="14.996" y="104.183"/><use xlink:href="#74"/><use xlink:href="#58" y="2.171"/><use xlink:href="#75" y="4.342"/><use xlink:href="#77" y="6.513"/><use xlink:href="#79" y="8.684"/><use xlink:href="#79" y="10.855"/><use xlink:href="#80" y="13.026"/><use xlink:href="#81" y="15.197"/><use xlink:href="#82" y="17.368"/><use xlink:href="#83" y="19.539"/><use xlink:href="#84" y="21.71"/><use xlink:href="#82" y="23.881"/><use xlink:href="#85" y="28.223"/><use xlink:href="#86" y="30.394"/><use xlink:href="#87" y="32.565"/><use xlink:href="#88" y="34.736"/><use xlink:href="#89" y="36.907"/><use xlink:href="#90" y="39.078"/><use xlink:href="#92" y="41.249"/><use xlink:href="#95" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#85" y="49.933"/><use xlink:href="#86" y="52.104"/><use xlink:href="#87" y="54.275"/><use xlink:href="#88" y="56.446"/><use xlink:href="#89" y="58.617"/><use xlink:href="#90" y="60.788"/><use xlink:href="#92" y="62.959"/><use xlink:href="#95" y="65.13"/><use xlink:href="#97" y="67.301"/><use xlink:href="#98" y="69.472"/><use xlink:href="#79" y="71.643"/><use xlink:href="#79" y="73.814"/><use xlink:href="#85" y="78.156"/><use xlink:href="#86" y="80.327"/><use xlink:href="#87" y="82.498"/><use xlink:href="#88" y="84.669"/><use xlink:href="#89" y="86.84"/><use xlink:href="#99" y="89.011"/><use xlink:href="#100" y="91.182"/><use xlink:href="#101" y="93.353"/><use xlink:href="#102" y="95.524"/><use xlink:href="#103" y="97.695"/><use xlink:href="#104" y="99.866"/><use xlink:href="#105" y="102.037"/><use xlink:href="#106" y="104.208"/></svg><svg x="36210"><use xlink:href="#a"/><use xlink:href="#b" x="13.996" y="104.183"/><use xlink:href="#75"/><use xlink:href="#77" y="2.171"/><use xlink:href="#79" y="4.342"/><use xlink:href="#79" y="6.513"/><use xlink:href="#80" y="8.684"/><use xlink:href="#81" y="10.855"/><use xlink:href="#82" y="13.026"/><use xlink:href="#83" y="15.197"/><use xlink:href="#84" y="17.368"/><use xlink:href="#82" y="19.539"/><use xlink:href="#85" y="23.881"/><use xlink:href="#86" y="26.052"/><use xlink:href="#87" y="28.223"/><use xlink:href="#88" y="30.394"/><use xlink:href="#89" y="32.565"/><use xlink:href="#90" y="34.736"/><use xlink:href="#92" y="36.907"/><use xlink:href="#95" y="39.078"/><use xlink:href="#97" y="41.249"/><use xlink:href="#85" y="45.591"/><use xlink:href="#86" y="47.762"/><use xlink:href="#87" y="49.933"/><use xlink:href="#88" y="52.104"/><use xlink:href="#89" y="54.275"/><use xlink:href="#90" y="56.446"/><use xlink:href="#92" y="58.617"/><use xlink:href="#95" y="60.788"/><use xlink:href="#97" y="62.959"/><use xlink:href="#98" y="65.13"/><use xlink:href="#79" y="67.301"/><use xlink:href="#79" y="69.472"/><use xlink:href="#85" y="73.814"/><use xlink:href="#86" y="75.985"/><use xlink:href="#87" y="78.156"/><use xlink:href="#88" y="80.327"/><use xlink:href="#89" y="82.498"/><use xlink:href="#99" y="84.669"/><use xlink:href="#100" y="86.84"/><use xlink:href="#101" y="89.011"/><use xlink:href="#102" y="91.182"/><use xlink:href="#103" y="93.353"/><use xlink:href="#104" y="95.524"/><use xlink:href="#105" y="97.695"/><use xlink:href="#106" y="99.866"/><use xlink:href="#105" y="102.037"/><text y="105.878" class="c">Retrieving</text><text x="11.022" y="105.878" class="c">fil</text></svg><svg x="36423"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#77"/><use xlink:href="#79" y="2.171"/><use xlink:href="#79" y="4.342"/><use xlink:href="#80" y="6.513"/><use xlink:href="#81" y="8.684"/><use xlink:href="#82" y="10.855"/><use xlink:href="#83" y="13.026"/><use xlink:href="#84" y="15.197"/><use xlink:href="#82" y="17.368"/><use xlink:href="#85" y="21.71"/><use xlink:href="#86" y="23.881"/><use xlink:href="#87" y="26.052"/><use xlink:href="#88" y="28.223"/><use xlink:href="#89" y="30.394"/><use xlink:href="#90" y="32.565"/><use xlink:href="#92" y="34.736"/><use xlink:href="#95" y="36.907"/><use xlink:href="#97" y="39.078"/><use xlink:href="#85" y="43.42"/><use xlink:href="#86" y="45.591"/><use xlink:href="#87" y="47.762"/><use xlink:href="#88" y="49.933"/><use xlink:href="#89" y="52.104"/><use xlink:href="#90" y="54.275"/><use xlink:href="#92" y="56.446"/><use xlink:href="#95" y="58.617"/><use xlink:href="#97" y="60.788"/><use xlink:href="#98" y="62.959"/><use xlink:href="#79" y="65.13"/><use xlink:href="#79" y="67.301"/><use xlink:href="#85" y="71.643"/><use xlink:href="#86" y="73.814"/><use xlink:href="#87" y="75.985"/><use xlink:href="#88" y="78.156"/><use xlink:href="#89" y="80.327"/><use xlink:href="#99" y="82.498"/><use xlink:href="#100" y="84.669"/><use xlink:href="#101" y="86.84"/><use xlink:href="#102" y="89.011"/><use xlink:href="#103" y="91.182"/><use xlink:href="#104" y="93.353"/><use xlink:href="#105" y="95.524"/><use xlink:href="#106" y="97.695"/><use xlink:href="#105" y="99.866"/><use xlink:href="#107" y="102.037"/></svg><svg x="36636"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#77"/><use xlink:href="#79" y="2.171"/><use xlink:href="#79" y="4.342"/><use xlink:href="#80" y="6.513"/><use xlink:href="#81" y="8.684"/><use xlink:href="#82" y="10.855"/><use xlink:href="#83" y="13.026"/><use xlink:href="#84" y="15.197"/><use xlink:href="#82" y="17.368"/><use xlink:href="#85" y="21.71"/><use xlink:href="#86" y="23.881"/><use xlink:href="#87" y="26.052"/><use xlink:href="#88" y="28.223"/><use xlink:href="#89" y="30.394"/><use xlink:href="#90" y="32.565"/><use xlink:href="#92" y="34.736"/><use xlink:href="#95" y="36.907"/><use xlink:href="#97" y="39.078"/><use xlink:href="#85" y="43.42"/><use xlink:href="#86" y="45.591"/><use xlink:href="#87" y="47.762"/><use xlink:href="#88" y="49.933"/><use xlink:href="#89" y="52.104"/><use xlink:href="#90" y="54.275"/><use xlink:href="#92" y="56.446"/><use xlink:href="#95" y="58.617"/><use xlink:href="#97" y="60.788"/><use xlink:href="#98" y="62.959"/><use xlink:href="#79" y="65.13"/><use xlink:href="#79" y="67.301"/><use xlink:href="#85" y="71.643"/><use xlink:href="#86" y="73.814"/><use xlink:href="#87" y="75.985"/><use xlink:href="#88" y="78.156"/><use xlink:href="#89" y="80.327"/><use xlink:href="#99" y="82.498"/><use xlink:href="#100" y="84.669"/><use xlink:href="#101" y="86.84"/><use xlink:href="#102" y="89.011"/><use xlink:href="#103" y="91.182"/><use xlink:href="#104" y="93.353"/><use xlink:href="#105" y="95.524"/><use xlink:href="#106" y="97.695"/><use xlink:href="#105" y="99.866"/><use xlink:href="#107" y="102.037"/><text y="105.878" class="c">6656</text><text x="5.01" y="105.878" class="c">bytes</text><text x="11.022" y="105.878" class="c">read</text><text x="16.032" y="105.878" class="c">in</text><text x="19.038" y="105.878" class="c">4</text><text x="21.042" y="105.878" class="c">ms</text><text x="24.048" y="105.878" class="c">(1.6</text><text x="29.058" y="105.878" class="c">MiB</text></svg><svg x="36849"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#79"/><use xlink:href="#80" y="2.171"/><use xlink:href="#81" y="4.342"/><use xlink:href="#82" y="6.513"/><use xlink:href="#83" y="8.684"/><use xlink:href="#84" y="10.855"/><use xlink:href="#82" y="13.026"/><use xlink:href="#85" y="17.368"/><use xlink:href="#86" y="19.539"/><use xlink:href="#87" y="21.71"/><use xlink:href="#88" y="23.881"/><use xlink:href="#89" y="26.052"/><use xlink:href="#90" y="28.223"/><use xlink:href="#92" y="30.394"/><use xlink:href="#95" y="32.565"/><use xlink:href="#97" y="34.736"/><use xlink:href="#85" y="39.078"/><use xlink:href="#86" y="41.249"/><use xlink:href="#87" y="43.42"/><use xlink:href="#88" y="45.591"/><use xlink:href="#89" y="47.762"/><use xlink:href="#90" y="49.933"/><use xlink:href="#92" y="52.104"/><use xlink:href="#95" y="54.275"/><use xlink:href="#97" y="56.446"/><use xlink:href="#98" y="58.617"/><use xlink:href="#79" y="60.788"/><use xlink:href="#79" y="62.959"/><use xlink:href="#85" y="67.301"/><use xlink:href="#86" y="69.472"/><use xlink:href="#87" y="71.643"/><use xlink:href="#88" y="73.814"/><use xlink:href="#89" y="75.985"/><use xlink:href="#99" y="78.156"/><use xlink:href="#100" y="80.327"/><use xlink:href="#101" y="82.498"/><use xlink:href="#102" y="84.669"/><use xlink:href="#103" y="86.84"/><use xlink:href="#104" y="89.011"/><use xlink:href="#105" y="91.182"/><use xlink:href="#106" y="93.353"/><use xlink:href="#105" y="95.524"/><use xlink:href="#107" y="97.695"/><use xlink:href="#108" y="99.866"/><use xlink:href="#109" y="102.037"/></svg><svg x="37062"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#79"/><use xlink:href="#80" y="2.171"/><use xlink:href="#81" y="4.342"/><use xlink:href="#82" y="6.513"/><use xlink:href="#83" y="8.684"/><use xlink:href="#84" y="10.855"/><use xlink:href="#82" y="13.026"/><use xlink:href="#85" y="17.368"/><use xlink:href="#86" y="19.539"/><use xlink:href="#87" y="21.71"/><use xlink:href="#88" y="23.881"/><use xlink:href="#89" y="26.052"/><use xlink:href="#90" y="28.223"/><use xlink:href="#92" y="30.394"/><use xlink:href="#95" y="32.565"/><use xlink:href="#97" y="34.736"/><use xlink:href="#85" y="39.078"/><use xlink:href="#86" y="41.249"/><use xlink:href="#87" y="43.42"/><use xlink:href="#88" y="45.591"/><use xlink:href="#89" y="47.762"/><use xlink:href="#90" y="49.933"/><use xlink:href="#92" y="52.104"/><use xlink:href="#95" y="54.275"/><use xlink:href="#97" y="56.446"/><use xlink:href="#98" y="58.617"/><use xlink:href="#79" y="60.788"/><use xlink:href="#79" y="62.959"/><use xlink:href="#85" y="67.301"/><use xlink:href="#86" y="69.472"/><use xlink:href="#87" y="71.643"/><use xlink:href="#88" y="73.814"/><use xlink:href="#89" y="75.985"/><use xlink:href="#99" y="78.156"/><use xlink:href="#100" y="80.327"/><use xlink:href="#101" y="82.498"/><use xlink:href="#102" y="84.669"/><use xlink:href="#103" y="86.84"/><use xlink:href="#104" y="89.011"/><use xlink:href="#105" y="91.182"/><use xlink:href="#106" y="93.353"/><use xlink:href="#105" y="95.524"/><use xlink:href="#107" y="97.695"/><use xlink:href="#108" y="99.866"/><use xlink:href="#109" y="102.037"/><text y="105.878" class="c">14444</text><text x="6.012" y="105.878" class="c">bytes</text><text x="12.024" y="105.878" class="c">read</text><text x="17.034" y="105.878" class="c">in</text><text x="20.04" y="105.878" class="c">4</text><text x="22.044" y="105.878" class="c">ms</text><text x="25.05" y="105.878" class="c">(3.4</text><text x="30.06" y="105.878" class="c">Mi</text></svg><svg x="37275"><use xlink:href="#a"/><use xlink:href="#b" x="25.996" y="104.183"/><use xlink:href="#80"/><use xlink:href="#81" y="2.171"/><use xlink:href="#82" y="4.342"/><use xlink:href="#83" y="6.513"/><use xlink:href="#84" y="8.684"/><use xlink:href="#82" y="10.855"/><use xlink:href="#85" y="15.197"/><use xlink:href="#86" y="17.368"/><use xlink:href="#87" y="19.539"/><use xlink:href="#88" y="21.71"/><use xlink:href="#89" y="23.881"/><use xlink:href="#90" y="26.052"/><use xlink:href="#92" y="28.223"/><use xlink:href="#95" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#85" y="36.907"/><use xlink:href="#86" y="39.078"/><use xlink:href="#87" y="41.249"/><use xlink:href="#88" y="43.42"/><use xlink:href="#89" y="45.591"/><use xlink:href="#90" y="47.762"/><use xlink:href="#92" y="49.933"/><use xlink:href="#95" y="52.104"/><use xlink:href="#97" y="54.275"/><use xlink:href="#98" y="56.446"/><use xlink:href="#79" y="58.617"/><use xlink:href="#79" y="60.788"/><use xlink:href="#85" y="65.13"/><use xlink:href="#86" y="67.301"/><use xlink:href="#87" y="69.472"/><use xlink:href="#88" y="71.643"/><use xlink:href="#89" y="73.814"/><use xlink:href="#99" y="75.985"/><use xlink:href="#100" y="78.156"/><use xlink:href="#101" y="80.327"/><use xlink:href="#102" y="82.498"/><use xlink:href="#103" y="84.669"/><use xlink:href="#104" y="86.84"/><use xlink:href="#105" y="89.011"/><use xlink:href="#106" y="91.182"/><use xlink:href="#105" y="93.353"/><use xlink:href="#107" y="95.524"/><use xlink:href="#108" y="97.695"/><use xlink:href="#109" y="99.866"/><use xlink:href="#110" y="102.037"/><text y="105.878" class="c">Retrieving</text><text x="11.022" y="105.878" class="c">file:</text><text x="17.034" y="105.878" class="c">/dtbs/6.1</text></svg><svg x="37488"><use xlink:href="#a"/><use xlink:href="#b" x="57.996" y="104.183"/><use xlink:href="#80"/><use xlink:href="#81" y="2.171"/><use xlink:href="#82" y="4.342"/><use xlink:href="#83" y="6.513"/><use xlink:href="#84" y="8.684"/><use xlink:href="#82" y="10.855"/><use xlink:href="#85" y="15.197"/><use xlink:href="#86" y="17.368"/><use xlink:href="#87" y="19.539"/><use xlink:href="#88" y="21.71"/><use xlink:href="#89" y="23.881"/><use xlink:href="#90" y="26.052"/><use xlink:href="#92" y="28.223"/><use xlink:href="#95" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#85" y="36.907"/><use xlink:href="#86" y="39.078"/><use xlink:href="#87" y="41.249"/><use xlink:href="#88" y="43.42"/><use xlink:href="#89" y="45.591"/><use xlink:href="#90" y="47.762"/><use xlink:href="#92" y="49.933"/><use xlink:href="#95" y="52.104"/><use xlink:href="#97" y="54.275"/><use xlink:href="#98" y="56.446"/><use xlink:href="#79" y="58.617"/><use xlink:href="#79" y="60.788"/><use xlink:href="#85" y="65.13"/><use xlink:href="#86" y="67.301"/><use xlink:href="#87" y="69.472"/><use xlink:href="#88" y="71.643"/><use xlink:href="#89" y="73.814"/><use xlink:href="#99" y="75.985"/><use xlink:href="#100" y="78.156"/><use xlink:href="#101" y="80.327"/><use xlink:href="#102" y="82.498"/><use xlink:href="#103" y="84.669"/><use xlink:href="#104" y="86.84"/><use xlink:href="#105" y="89.011"/><use xlink:href="#106" y="91.182"/><use xlink:href="#105" y="93.353"/><use xlink:href="#107" y="95.524"/><use xlink:href="#108" y="97.695"/><use xlink:href="#109" y="99.866"/><use xlink:href="#110" y="102.037"/><text y="105.878" class="c">Retrieving</text><text x="11.022" y="105.878" class="c">file:</text><text x="17.034" y="105.878" class="c">/dtbs/6.12.0mssola/starfive/jh7110-starfi</text></svg><svg x="37701"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#81"/><use xlink:href="#82" y="2.171"/><use xlink:href="#83" y="4.342"/><use xlink:href="#84" y="6.513"/><use xlink:href="#82" y="8.684"/><use xlink:href="#85" y="13.026"/><use xlink:href="#86" y="15.197"/><use xlink:href="#87" y="17.368"/><use xlink:href="#88" y="19.539"/><use xlink:href="#89" y="21.71"/><use xlink:href="#90" y="23.881"/><use xlink:href="#92" y="26.052"/><use xlink:href="#95" y="28.223"/><use xlink:href="#97" y="30.394"/><use xlink:href="#85" y="34.736"/><use xlink:href="#86" y="36.907"/><use xlink:href="#87" y="39.078"/><use xlink:href="#88" y="41.249"/><use xlink:href="#89" y="43.42"/><use xlink:href="#90" y="45.591"/><use xlink:href="#92" y="47.762"/><use xlink:href="#95" y="49.933"/><use xlink:href="#97" y="52.104"/><use xlink:href="#98" y="54.275"/><use xlink:href="#79" y="56.446"/><use xlink:href="#79" y="58.617"/><use xlink:href="#85" y="62.959"/><use xlink:href="#86" y="65.13"/><use xlink:href="#87" y="67.301"/><use xlink:href="#88" y="69.472"/><use xlink:href="#89" y="71.643"/><use xlink:href="#99" y="73.814"/><use xlink:href="#100" y="75.985"/><use xlink:href="#101" y="78.156"/><use xlink:href="#102" y="80.327"/><use xlink:href="#103" y="82.498"/><use xlink:href="#104" y="84.669"/><use xlink:href="#105" y="86.84"/><use xlink:href="#106" y="89.011"/><use xlink:href="#105" y="91.182"/><use xlink:href="#107" y="93.353"/><use xlink:href="#108" y="95.524"/><use xlink:href="#109" y="97.695"/><use xlink:href="#110" y="99.866"/><use xlink:href="#111" y="102.037"/></svg><svg x="37914"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#81"/><use xlink:href="#82" y="2.171"/><use xlink:href="#83" y="4.342"/><use xlink:href="#84" y="6.513"/><use xlink:href="#82" y="8.684"/><use xlink:href="#85" y="13.026"/><use xlink:href="#86" y="15.197"/><use xlink:href="#87" y="17.368"/><use xlink:href="#88" y="19.539"/><use xlink:href="#89" y="21.71"/><use xlink:href="#90" y="23.881"/><use xlink:href="#92" y="26.052"/><use xlink:href="#95" y="28.223"/><use xlink:href="#97" y="30.394"/><use xlink:href="#85" y="34.736"/><use xlink:href="#86" y="36.907"/><use xlink:href="#87" y="39.078"/><use xlink:href="#88" y="41.249"/><use xlink:href="#89" y="43.42"/><use xlink:href="#90" y="45.591"/><use xlink:href="#92" y="47.762"/><use xlink:href="#95" y="49.933"/><use xlink:href="#97" y="52.104"/><use xlink:href="#98" y="54.275"/><use xlink:href="#79" y="56.446"/><use xlink:href="#79" y="58.617"/><use xlink:href="#85" y="62.959"/><use xlink:href="#86" y="65.13"/><use xlink:href="#87" y="67.301"/><use xlink:href="#88" y="69.472"/><use xlink:href="#89" y="71.643"/><use xlink:href="#99" y="73.814"/><use xlink:href="#100" y="75.985"/><use xlink:href="#101" y="78.156"/><use xlink:href="#102" y="80.327"/><use xlink:href="#103" y="82.498"/><use xlink:href="#104" y="84.669"/><use xlink:href="#105" y="86.84"/><use xlink:href="#106" y="89.011"/><use xlink:href="#105" y="91.182"/><use xlink:href="#107" y="93.353"/><use xlink:href="#108" y="95.524"/><use xlink:href="#109" y="97.695"/><use xlink:href="#110" y="99.866"/><use xlink:href="#111" y="102.037"/><text y="105.878" class="c">38025</text><text x="6.012" y="105.878" class="c">bytes</text><text x="12.024" y="105.878" class="c">read</text><text x="17.034" y="105.878" class="c">in</text><text x="20.04" y="105.878" class="c">5</text><text x="22.044" y="105.878" class="c">ms</text><text x="25.05" y="105.878" class="c">(7.3</text><text x="30.06" y="105.878" class="c">Mi</text></svg><svg x="38127"><use xlink:href="#a"/><use xlink:href="#b" x="25.996" y="104.183"/><use xlink:href="#82"/><use xlink:href="#83" y="2.171"/><use xlink:href="#84" y="4.342"/><use xlink:href="#82" y="6.513"/><use xlink:href="#85" y="10.855"/><use xlink:href="#86" y="13.026"/><use xlink:href="#87" y="15.197"/><use xlink:href="#88" y="17.368"/><use xlink:href="#89" y="19.539"/><use xlink:href="#90" y="21.71"/><use xlink:href="#92" y="23.881"/><use xlink:href="#95" y="26.052"/><use xlink:href="#97" y="28.223"/><use xlink:href="#85" y="32.565"/><use xlink:href="#86" y="34.736"/><use xlink:href="#87" y="36.907"/><use xlink:href="#88" y="39.078"/><use xlink:href="#89" y="41.249"/><use xlink:href="#90" y="43.42"/><use xlink:href="#92" y="45.591"/><use xlink:href="#95" y="47.762"/><use xlink:href="#97" y="49.933"/><use xlink:href="#98" y="52.104"/><use xlink:href="#79" y="54.275"/><use xlink:href="#79" y="56.446"/><use xlink:href="#85" y="60.788"/><use xlink:href="#86" y="62.959"/><use xlink:href="#87" y="65.13"/><use xlink:href="#88" y="67.301"/><use xlink:href="#89" y="69.472"/><use xlink:href="#99" y="71.643"/><use xlink:href="#100" y="73.814"/><use xlink:href="#101" y="75.985"/><use xlink:href="#102" y="78.156"/><use xlink:href="#103" y="80.327"/><use xlink:href="#104" y="82.498"/><use xlink:href="#105" y="84.669"/><use xlink:href="#106" y="86.84"/><use xlink:href="#105" y="89.011"/><use xlink:href="#107" y="91.182"/><use xlink:href="#108" y="93.353"/><use xlink:href="#109" y="95.524"/><use xlink:href="#110" y="97.695"/><use xlink:href="#111" y="99.866"/><use xlink:href="#112" y="102.037"/><text y="105.878" class="c">libfdt</text><text x="7.014" y="105.878" class="c">fdt_path_offset()</text><text x="25.05" y="105.878" class="c">r</text></svg><svg x="38340"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="104.183"/><use xlink:href="#83"/><use xlink:href="#84" y="2.171"/><use xlink:href="#82" y="4.342"/><use xlink:href="#85" y="8.684"/><use xlink:href="#86" y="10.855"/><use xlink:href="#87" y="13.026"/><use xlink:href="#88" y="15.197"/><use xlink:href="#89" y="17.368"/><use xlink:href="#90" y="19.539"/><use xlink:href="#92" y="21.71"/><use xlink:href="#95" y="23.881"/><use xlink:href="#97" y="26.052"/><use xlink:href="#85" y="30.394"/><use xlink:href="#86" y="32.565"/><use xlink:href="#87" y="34.736"/><use xlink:href="#88" y="36.907"/><use xlink:href="#89" y="39.078"/><use xlink:href="#90" y="41.249"/><use xlink:href="#92" y="43.42"/><use xlink:href="#95" y="45.591"/><use xlink:href="#97" y="47.762"/><use xlink:href="#98" y="49.933"/><use xlink:href="#79" y="52.104"/><use xlink:href="#79" y="54.275"/><use xlink:href="#85" y="58.617"/><use xlink:href="#86" y="60.788"/><use xlink:href="#87" y="62.959"/><use xlink:href="#88" y="65.13"/><use xlink:href="#89" y="67.301"/><use xlink:href="#99" y="69.472"/><use xlink:href="#100" y="71.643"/><use xlink:href="#101" y="73.814"/><use xlink:href="#102" y="75.985"/><use xlink:href="#103" y="78.156"/><use xlink:href="#104" y="80.327"/><use xlink:href="#105" y="82.498"/><use xlink:href="#106" y="84.669"/><use xlink:href="#105" y="86.84"/><use xlink:href="#107" y="89.011"/><use xlink:href="#108" y="91.182"/><use xlink:href="#109" y="93.353"/><use xlink:href="#110" y="95.524"/><use xlink:href="#111" y="97.695"/><use xlink:href="#112" y="99.866"/><use xlink:href="#113" y="102.037"/><text y="105.878" class="c">libfdt</text></svg><svg x="38553"><use xlink:href="#a"/><use xlink:href="#b" x="37.996" y="104.183"/><use xlink:href="#83"/><use xlink:href="#84" y="2.171"/><use xlink:href="#82" y="4.342"/><use xlink:href="#85" y="8.684"/><use xlink:href="#86" y="10.855"/><use xlink:href="#87" y="13.026"/><use xlink:href="#88" y="15.197"/><use xlink:href="#89" y="17.368"/><use xlink:href="#90" y="19.539"/><use xlink:href="#92" y="21.71"/><use xlink:href="#95" y="23.881"/><use xlink:href="#97" y="26.052"/><use xlink:href="#85" y="30.394"/><use xlink:href="#86" y="32.565"/><use xlink:href="#87" y="34.736"/><use xlink:href="#88" y="36.907"/><use xlink:href="#89" y="39.078"/><use xlink:href="#90" y="41.249"/><use xlink:href="#92" y="43.42"/><use xlink:href="#95" y="45.591"/><use xlink:href="#97" y="47.762"/><use xlink:href="#98" y="49.933"/><use xlink:href="#79" y="52.104"/><use xlink:href="#79" y="54.275"/><use xlink:href="#85" y="58.617"/><use xlink:href="#86" y="60.788"/><use xlink:href="#87" y="62.959"/><use xlink:href="#88" y="65.13"/><use xlink:href="#89" y="67.301"/><use xlink:href="#99" y="69.472"/><use xlink:href="#100" y="71.643"/><use xlink:href="#101" y="73.814"/><use xlink:href="#102" y="75.985"/><use xlink:href="#103" y="78.156"/><use xlink:href="#104" y="80.327"/><use xlink:href="#105" y="82.498"/><use xlink:href="#106" y="84.669"/><use xlink:href="#105" y="86.84"/><use xlink:href="#107" y="89.011"/><use xlink:href="#108" y="91.182"/><use xlink:href="#109" y="93.353"/><use xlink:href="#110" y="95.524"/><use xlink:href="#111" y="97.695"/><use xlink:href="#112" y="99.866"/><use xlink:href="#113" y="102.037"/><text y="105.878" class="c">libfdt</text><text x="7.014" y="105.878" class="c">fdt_path_offset()</text><text x="25.05" y="105.878" class="c">returned</text><text x="34.068" y="105.878" class="c">FDT_</text></svg><svg x="38766"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="104.183"/><use xlink:href="#84"/><use xlink:href="#82" y="2.171"/><use xlink:href="#85" y="6.513"/><use xlink:href="#86" y="8.684"/><use xlink:href="#87" y="10.855"/><use xlink:href="#88" y="13.026"/><use xlink:href="#89" y="15.197"/><use xlink:href="#90" y="17.368"/><use xlink:href="#92" y="19.539"/><use xlink:href="#95" y="21.71"/><use xlink:href="#97" y="23.881"/><use xlink:href="#85" y="28.223"/><use xlink:href="#86" y="30.394"/><use xlink:href="#87" y="32.565"/><use xlink:href="#88" y="34.736"/><use xlink:href="#89" y="36.907"/><use xlink:href="#90" y="39.078"/><use xlink:href="#92" y="41.249"/><use xlink:href="#95" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#98" y="47.762"/><use xlink:href="#79" y="49.933"/><use xlink:href="#79" y="52.104"/><use xlink:href="#85" y="56.446"/><use xlink:href="#86" y="58.617"/><use xlink:href="#87" y="60.788"/><use xlink:href="#88" y="62.959"/><use xlink:href="#89" y="65.13"/><use xlink:href="#99" y="67.301"/><use xlink:href="#100" y="69.472"/><use xlink:href="#101" y="71.643"/><use xlink:href="#102" y="73.814"/><use xlink:href="#103" y="75.985"/><use xlink:href="#104" y="78.156"/><use xlink:href="#105" y="80.327"/><use xlink:href="#106" y="82.498"/><use xlink:href="#105" y="84.669"/><use xlink:href="#107" y="86.84"/><use xlink:href="#108" y="89.011"/><use xlink:href="#109" y="91.182"/><use xlink:href="#110" y="93.353"/><use xlink:href="#111" y="95.524"/><use xlink:href="#112" y="97.695"/><use xlink:href="#113" y="99.866"/><use xlink:href="#113" y="102.037"/><text y="105.878" class="c">libfdt</text><text x="7.014" y="105.878" class="c">fdt_path_of</text></svg><svg x="38979"><use xlink:href="#a"/><use xlink:href="#b" x="49.996" y="104.183"/><use xlink:href="#84"/><use xlink:href="#82" y="2.171"/><use xlink:href="#85" y="6.513"/><use xlink:href="#86" y="8.684"/><use xlink:href="#87" y="10.855"/><use xlink:href="#88" y="13.026"/><use xlink:href="#89" y="15.197"/><use xlink:href="#90" y="17.368"/><use xlink:href="#92" y="19.539"/><use xlink:href="#95" y="21.71"/><use xlink:href="#97" y="23.881"/><use xlink:href="#85" y="28.223"/><use xlink:href="#86" y="30.394"/><use xlink:href="#87" y="32.565"/><use xlink:href="#88" y="34.736"/><use xlink:href="#89" y="36.907"/><use xlink:href="#90" y="39.078"/><use xlink:href="#92" y="41.249"/><use xlink:href="#95" y="43.42"/><use xlink:href="#97" y="45.591"/><use xlink:href="#98" y="47.762"/><use xlink:href="#79" y="49.933"/><use xlink:href="#79" y="52.104"/><use xlink:href="#85" y="56.446"/><use xlink:href="#86" y="58.617"/><use xlink:href="#87" y="60.788"/><use xlink:href="#88" y="62.959"/><use xlink:href="#89" y="65.13"/><use xlink:href="#99" y="67.301"/><use xlink:href="#100" y="69.472"/><use xlink:href="#101" y="71.643"/><use xlink:href="#102" y="73.814"/><use xlink:href="#103" y="75.985"/><use xlink:href="#104" y="78.156"/><use xlink:href="#105" y="80.327"/><use xlink:href="#106" y="82.498"/><use xlink:href="#105" y="84.669"/><use xlink:href="#107" y="86.84"/><use xlink:href="#108" y="89.011"/><use xlink:href="#109" y="91.182"/><use xlink:href="#110" y="93.353"/><use xlink:href="#111" y="95.524"/><use xlink:href="#112" y="97.695"/><use xlink:href="#113" y="99.866"/><use xlink:href="#113" y="102.037"/><use xlink:href="#113" y="104.208"/></svg><svg x="39192"><use xlink:href="#a"/><use xlink:href="#b" x="29.996" y="104.183"/><use xlink:href="#82"/><use xlink:href="#85" y="4.342"/><use xlink:href="#86" y="6.513"/><use xlink:href="#87" y="8.684"/><use xlink:href="#88" y="10.855"/><use xlink:href="#89" y="13.026"/><use xlink:href="#90" y="15.197"/><use xlink:href="#92" y="17.368"/><use xlink:href="#95" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#85" y="26.052"/><use xlink:href="#86" y="28.223"/><use xlink:href="#87" y="30.394"/><use xlink:href="#88" y="32.565"/><use xlink:href="#89" y="34.736"/><use xlink:href="#90" y="36.907"/><use xlink:href="#92" y="39.078"/><use xlink:href="#95" y="41.249"/><use xlink:href="#97" y="43.42"/><use xlink:href="#98" y="45.591"/><use xlink:href="#79" y="47.762"/><use xlink:href="#79" y="49.933"/><use xlink:href="#85" y="54.275"/><use xlink:href="#86" y="56.446"/><use xlink:href="#87" y="58.617"/><use xlink:href="#88" y="60.788"/><use xlink:href="#89" y="62.959"/><use xlink:href="#99" y="65.13"/><use xlink:href="#100" y="67.301"/><use xlink:href="#101" y="69.472"/><use xlink:href="#102" y="71.643"/><use xlink:href="#103" y="73.814"/><use xlink:href="#104" y="75.985"/><use xlink:href="#105" y="78.156"/><use xlink:href="#106" y="80.327"/><use xlink:href="#105" y="82.498"/><use xlink:href="#107" y="84.669"/><use xlink:href="#108" y="86.84"/><use xlink:href="#109" y="89.011"/><use xlink:href="#110" y="91.182"/><use xlink:href="#111" y="93.353"/><use xlink:href="#112" y="95.524"/><use xlink:href="#113" y="97.695"/><use xlink:href="#113" y="99.866"/><use xlink:href="#113" y="102.037"/><text y="105.878" class="c">libfdt</text><text x="7.014" y="105.878" class="c">fdt_path_offset()</text><text x="25.05" y="105.878" class="c">retur</text></svg><svg x="39405"><use xlink:href="#a"/><use xlink:href="#b" x="9.996" y="104.183"/><use xlink:href="#85" y="2.171"/><use xlink:href="#86" y="4.342"/><use xlink:href="#87" y="6.513"/><use xlink:href="#88" y="8.684"/><use xlink:href="#89" y="10.855"/><use xlink:href="#90" y="13.026"/><use xlink:href="#92" y="15.197"/><use xlink:href="#95" y="17.368"/><use xlink:href="#97" y="19.539"/><use xlink:href="#85" y="23.881"/><use xlink:href="#86" y="26.052"/><use xlink:href="#87" y="28.223"/><use xlink:href="#88" y="30.394"/><use xlink:href="#89" y="32.565"/><use xlink:href="#90" y="34.736"/><use xlink:href="#92" y="36.907"/><use xlink:href="#95" y="39.078"/><use xlink:href="#97" y="41.249"/><use xlink:href="#98" y="43.42"/><use xlink:href="#79" y="45.591"/><use xlink:href="#79" y="47.762"/><use xlink:href="#85" y="52.104"/><use xlink:href="#86" y="54.275"/><use xlink:href="#87" y="56.446"/><use xlink:href="#88" y="58.617"/><use xlink:href="#89" y="60.788"/><use xlink:href="#99" y="62.959"/><use xlink:href="#100" y="65.13"/><use xlink:href="#101" y="67.301"/><use xlink:href="#102" y="69.472"/><use xlink:href="#103" y="71.643"/><use xlink:href="#104" y="73.814"/><use xlink:href="#105" y="75.985"/><use xlink:href="#106" y="78.156"/><use xlink:href="#105" y="80.327"/><use xlink:href="#107" y="82.498"/><use xlink:href="#108" y="84.669"/><use xlink:href="#109" y="86.84"/><use xlink:href="#110" y="89.011"/><use xlink:href="#111" y="91.182"/><use xlink:href="#112" y="93.353"/><use xlink:href="#113" y="95.524"/><use xlink:href="#113" y="97.695"/><use xlink:href="#113" y="99.866"/><use xlink:href="#113" y="102.037"/><text y="105.878" class="c">libfdt</text><text x="7.014" y="105.878" class="c">fdt</text></svg><svg x="39618"><use xlink:href="#a"/><use xlink:href="#b" x="41.996" y="104.183"/><use xlink:href="#85" y="2.171"/><use xlink:href="#86" y="4.342"/><use xlink:href="#87" y="6.513"/><use xlink:href="#88" y="8.684"/><use xlink:href="#89" y="10.855"/><use xlink:href="#90" y="13.026"/><use xlink:href="#92" y="15.197"/><use xlink:href="#95" y="17.368"/><use xlink:href="#97" y="19.539"/><use xlink:href="#85" y="23.881"/><use xlink:href="#86" y="26.052"/><use xlink:href="#87" y="28.223"/><use xlink:href="#88" y="30.394"/><use xlink:href="#89" y="32.565"/><use xlink:href="#90" y="34.736"/><use xlink:href="#92" y="36.907"/><use xlink:href="#95" y="39.078"/><use xlink:href="#97" y="41.249"/><use xlink:href="#98" y="43.42"/><use xlink:href="#79" y="45.591"/><use xlink:href="#79" y="47.762"/><use xlink:href="#85" y="52.104"/><use xlink:href="#86" y="54.275"/><use xlink:href="#87" y="56.446"/><use xlink:href="#88" y="58.617"/><use xlink:href="#89" y="60.788"/><use xlink:href="#99" y="62.959"/><use xlink:href="#100" y="65.13"/><use xlink:href="#101" y="67.301"/><use xlink:href="#102" y="69.472"/><use xlink:href="#103" y="71.643"/><use xlink:href="#104" y="73.814"/><use xlink:href="#105" y="75.985"/><use xlink:href="#106" y="78.156"/><use xlink:href="#105" y="80.327"/><use xlink:href="#107" y="82.498"/><use xlink:href="#108" y="84.669"/><use xlink:href="#109" y="86.84"/><use xlink:href="#110" y="89.011"/><use xlink:href="#111" y="91.182"/><use xlink:href="#112" y="93.353"/><use xlink:href="#113" y="95.524"/><use xlink:href="#113" y="97.695"/><use xlink:href="#113" y="99.866"/><use xlink:href="#113" y="102.037"/><text y="105.878" class="c">libfdt</text><text x="7.014" y="105.878" class="c">fdt_path_offset()</text><text x="25.05" y="105.878" class="c">returned</text><text x="34.068" y="105.878" class="c">FDT_ERR_</text></svg><svg x="39831"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="104.183"/><use xlink:href="#85"/><use xlink:href="#86" y="2.171"/><use xlink:href="#87" y="4.342"/><use xlink:href="#88" y="6.513"/><use xlink:href="#89" y="8.684"/><use xlink:href="#90" y="10.855"/><use xlink:href="#92" y="13.026"/><use xlink:href="#95" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#85" y="21.71"/><use xlink:href="#86" y="23.881"/><use xlink:href="#87" y="26.052"/><use xlink:href="#88" y="28.223"/><use xlink:href="#89" y="30.394"/><use xlink:href="#90" y="32.565"/><use xlink:href="#92" y="34.736"/><use xlink:href="#95" y="36.907"/><use xlink:href="#97" y="39.078"/><use xlink:href="#98" y="41.249"/><use xlink:href="#79" y="43.42"/><use xlink:href="#79" y="45.591"/><use xlink:href="#85" y="49.933"/><use xlink:href="#86" y="52.104"/><use xlink:href="#87" y="54.275"/><use xlink:href="#88" y="56.446"/><use xlink:href="#89" y="58.617"/><use xlink:href="#99" y="60.788"/><use xlink:href="#100" y="62.959"/><use xlink:href="#101" y="65.13"/><use xlink:href="#102" y="67.301"/><use xlink:href="#103" y="69.472"/><use xlink:href="#104" y="71.643"/><use xlink:href="#105" y="73.814"/><use xlink:href="#106" y="75.985"/><use xlink:href="#105" y="78.156"/><use xlink:href="#107" y="80.327"/><use xlink:href="#108" y="82.498"/><use xlink:href="#109" y="84.669"/><use xlink:href="#110" y="86.84"/><use xlink:href="#111" y="89.011"/><use xlink:href="#112" y="91.182"/><use xlink:href="#113" y="93.353"/><use xlink:href="#113" y="95.524"/><use xlink:href="#113" y="97.695"/><use xlink:href="#113" y="99.866"/><use xlink:href="#113" y="102.037"/><text y="105.878" class="c">libfdt</text><text x="7.014" y="105.878" class="c">fdt_path_offset</text></svg><svg x="40044"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="104.183"/><use xlink:href="#86"/><use xlink:href="#87" y="2.171"/><use xlink:href="#88" y="4.342"/><use xlink:href="#89" y="6.513"/><use xlink:href="#90" y="8.684"/><use xlink:href="#92" y="10.855"/><use xlink:href="#95" y="13.026"/><use xlink:href="#97" y="15.197"/><use xlink:href="#85" y="19.539"/><use xlink:href="#86" y="21.71"/><use xlink:href="#87" y="23.881"/><use xlink:href="#88" y="26.052"/><use xlink:href="#89" y="28.223"/><use xlink:href="#90" y="30.394"/><use xlink:href="#92" y="32.565"/><use xlink:href="#95" y="34.736"/><use xlink:href="#97" y="36.907"/><use xlink:href="#98" y="39.078"/><use xlink:href="#79" y="41.249"/><use xlink:href="#79" y="43.42"/><use xlink:href="#85" y="47.762"/><use xlink:href="#86" y="49.933"/><use xlink:href="#87" y="52.104"/><use xlink:href="#88" y="54.275"/><use xlink:href="#89" y="56.446"/><use xlink:href="#99" y="58.617"/><use xlink:href="#100" y="60.788"/><use xlink:href="#101" y="62.959"/><use xlink:href="#102" y="65.13"/><use xlink:href="#103" y="67.301"/><use xlink:href="#104" y="69.472"/><use xlink:href="#105" y="71.643"/><use xlink:href="#106" y="73.814"/><use xlink:href="#105" y="75.985"/><use xlink:href="#107" y="78.156"/><use xlink:href="#108" y="80.327"/><use xlink:href="#109" y="82.498"/><use xlink:href="#110" y="84.669"/><use xlink:href="#111" y="86.84"/><use xlink:href="#112" y="89.011"/><use xlink:href="#113" y="91.182"/><use xlink:href="#113" y="93.353"/><use xlink:href="#113" y="95.524"/><use xlink:href="#113" y="97.695"/><use xlink:href="#113" y="99.866"/><use xlink:href="#113" y="102.037"/><text y="105.878" class="c">##</text></svg><svg x="40257"><use xlink:href="#a"/><use xlink:href="#b" x="33.996" y="104.183"/><use xlink:href="#86"/><use xlink:href="#87" y="2.171"/><use xlink:href="#88" y="4.342"/><use xlink:href="#89" y="6.513"/><use xlink:href="#90" y="8.684"/><use xlink:href="#92" y="10.855"/><use xlink:href="#95" y="13.026"/><use xlink:href="#97" y="15.197"/><use xlink:href="#85" y="19.539"/><use xlink:href="#86" y="21.71"/><use xlink:href="#87" y="23.881"/><use xlink:href="#88" y="26.052"/><use xlink:href="#89" y="28.223"/><use xlink:href="#90" y="30.394"/><use xlink:href="#92" y="32.565"/><use xlink:href="#95" y="34.736"/><use xlink:href="#97" y="36.907"/><use xlink:href="#98" y="39.078"/><use xlink:href="#79" y="41.249"/><use xlink:href="#79" y="43.42"/><use xlink:href="#85" y="47.762"/><use xlink:href="#86" y="49.933"/><use xlink:href="#87" y="52.104"/><use xlink:href="#88" y="54.275"/><use xlink:href="#89" y="56.446"/><use xlink:href="#99" y="58.617"/><use xlink:href="#100" y="60.788"/><use xlink:href="#101" y="62.959"/><use xlink:href="#102" y="65.13"/><use xlink:href="#103" y="67.301"/><use xlink:href="#104" y="69.472"/><use xlink:href="#105" y="71.643"/><use xlink:href="#106" y="73.814"/><use xlink:href="#105" y="75.985"/><use xlink:href="#107" y="78.156"/><use xlink:href="#108" y="80.327"/><use xlink:href="#109" y="82.498"/><use xlink:href="#110" y="84.669"/><use xlink:href="#111" y="86.84"/><use xlink:href="#112" y="89.011"/><use xlink:href="#113" y="91.182"/><use xlink:href="#113" y="93.353"/><use xlink:href="#113" y="95.524"/><use xlink:href="#113" y="97.695"/><use xlink:href="#113" y="99.866"/><use xlink:href="#113" y="102.037"/><text y="105.878" class="c">##</text><text x="3.006" y="105.878" class="c">Flattened</text><text x="13.026" y="105.878" class="c">Device</text><text x="20.04" y="105.878" class="c">Tree</text><text x="25.05" y="105.878" class="c">blob</text><text x="30.06" y="105.878" class="c">at</text><text x="33.066" y="105.878" class="c">4</text></svg><svg x="40470"><use xlink:href="#a"/><use xlink:href="#b" x="22.996" y="104.183"/><use xlink:href="#87"/><use xlink:href="#88" y="2.171"/><use xlink:href="#89" y="4.342"/><use xlink:href="#90" y="6.513"/><use xlink:href="#92" y="8.684"/><use xlink:href="#95" y="10.855"/><use xlink:href="#97" y="13.026"/><use xlink:href="#85" y="17.368"/><use xlink:href="#86" y="19.539"/><use xlink:href="#87" y="21.71"/><use xlink:href="#88" y="23.881"/><use xlink:href="#89" y="26.052"/><use xlink:href="#90" y="28.223"/><use xlink:href="#92" y="30.394"/><use xlink:href="#95" y="32.565"/><use xlink:href="#97" y="34.736"/><use xlink:href="#98" y="36.907"/><use xlink:href="#79" y="39.078"/><use xlink:href="#79" y="41.249"/><use xlink:href="#85" y="45.591"/><use xlink:href="#86" y="47.762"/><use xlink:href="#87" y="49.933"/><use xlink:href="#88" y="52.104"/><use xlink:href="#89" y="54.275"/><use xlink:href="#99" y="56.446"/><use xlink:href="#100" y="58.617"/><use xlink:href="#101" y="60.788"/><use xlink:href="#102" y="62.959"/><use xlink:href="#103" y="65.13"/><use xlink:href="#104" y="67.301"/><use xlink:href="#105" y="69.472"/><use xlink:href="#106" y="71.643"/><use xlink:href="#105" y="73.814"/><use xlink:href="#107" y="75.985"/><use xlink:href="#108" y="78.156"/><use xlink:href="#109" y="80.327"/><use xlink:href="#110" y="82.498"/><use xlink:href="#111" y="84.669"/><use xlink:href="#112" y="86.84"/><use xlink:href="#113" y="89.011"/><use xlink:href="#113" y="91.182"/><use xlink:href="#113" y="93.353"/><use xlink:href="#113" y="95.524"/><use xlink:href="#113" y="97.695"/><use xlink:href="#113" y="99.866"/><use xlink:href="#114" y="102.037"/><text x="3.006" y="105.878" class="c">Booting</text><text x="11.022" y="105.878" class="c">using</text><text x="17.034" y="105.878" class="c">the</text><text x="21.042" y="105.878" class="c">fd</text></svg><svg x="40683"><use xlink:href="#a"/><use xlink:href="#b" x="9.996" y="104.183"/><use xlink:href="#88"/><use xlink:href="#89" y="2.171"/><use xlink:href="#90" y="4.342"/><use xlink:href="#92" y="6.513"/><use xlink:href="#95" y="8.684"/><use xlink:href="#97" y="10.855"/><use xlink:href="#85" y="15.197"/><use xlink:href="#86" y="17.368"/><use xlink:href="#87" y="19.539"/><use xlink:href="#88" y="21.71"/><use xlink:href="#89" y="23.881"/><use xlink:href="#90" y="26.052"/><use xlink:href="#92" y="28.223"/><use xlink:href="#95" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#98" y="34.736"/><use xlink:href="#79" y="36.907"/><use xlink:href="#79" y="39.078"/><use xlink:href="#85" y="43.42"/><use xlink:href="#86" y="45.591"/><use xlink:href="#87" y="47.762"/><use xlink:href="#88" y="49.933"/><use xlink:href="#89" y="52.104"/><use xlink:href="#99" y="54.275"/><use xlink:href="#100" y="56.446"/><use xlink:href="#101" y="58.617"/><use xlink:href="#102" y="60.788"/><use xlink:href="#103" y="62.959"/><use xlink:href="#104" y="65.13"/><use xlink:href="#105" y="67.301"/><use xlink:href="#106" y="69.472"/><use xlink:href="#105" y="71.643"/><use xlink:href="#107" y="73.814"/><use xlink:href="#108" y="75.985"/><use xlink:href="#109" y="78.156"/><use xlink:href="#110" y="80.327"/><use xlink:href="#111" y="82.498"/><use xlink:href="#112" y="84.669"/><use xlink:href="#113" y="86.84"/><use xlink:href="#113" y="89.011"/><use xlink:href="#113" y="91.182"/><use xlink:href="#113" y="93.353"/><use xlink:href="#113" y="95.524"/><use xlink:href="#113" y="97.695"/><use xlink:href="#114" y="99.866"/><use xlink:href="#115" y="102.037"/><text x="3.006" y="105.878" class="c">Using</text><text x="9.018" y="105.878" class="c">D</text></svg><svg x="40896"><use xlink:href="#a"/><use xlink:href="#b" x="41.996" y="104.183"/><use xlink:href="#88"/><use xlink:href="#89" y="2.171"/><use xlink:href="#90" y="4.342"/><use xlink:href="#92" y="6.513"/><use xlink:href="#95" y="8.684"/><use xlink:href="#97" y="10.855"/><use xlink:href="#85" y="15.197"/><use xlink:href="#86" y="17.368"/><use xlink:href="#87" y="19.539"/><use xlink:href="#88" y="21.71"/><use xlink:href="#89" y="23.881"/><use xlink:href="#90" y="26.052"/><use xlink:href="#92" y="28.223"/><use xlink:href="#95" y="30.394"/><use xlink:href="#97" y="32.565"/><use xlink:href="#98" y="34.736"/><use xlink:href="#79" y="36.907"/><use xlink:href="#79" y="39.078"/><use xlink:href="#85" y="43.42"/><use xlink:href="#86" y="45.591"/><use xlink:href="#87" y="47.762"/><use xlink:href="#88" y="49.933"/><use xlink:href="#89" y="52.104"/><use xlink:href="#99" y="54.275"/><use xlink:href="#100" y="56.446"/><use xlink:href="#101" y="58.617"/><use xlink:href="#102" y="60.788"/><use xlink:href="#103" y="62.959"/><use xlink:href="#104" y="65.13"/><use xlink:href="#105" y="67.301"/><use xlink:href="#106" y="69.472"/><use xlink:href="#105" y="71.643"/><use xlink:href="#107" y="73.814"/><use xlink:href="#108" y="75.985"/><use xlink:href="#109" y="78.156"/><use xlink:href="#110" y="80.327"/><use xlink:href="#111" y="82.498"/><use xlink:href="#112" y="84.669"/><use xlink:href="#113" y="86.84"/><use xlink:href="#113" y="89.011"/><use xlink:href="#113" y="91.182"/><use xlink:href="#113" y="93.353"/><use xlink:href="#113" y="95.524"/><use xlink:href="#113" y="97.695"/><use xlink:href="#114" y="99.866"/><use xlink:href="#115" y="102.037"/><text x="3.006" y="105.878" class="c">Using</text><text x="9.018" y="105.878" class="c">Device</text><text x="16.032" y="105.878" class="c">Tree</text><text x="21.042" y="105.878" class="c">in</text><text x="24.048" y="105.878" class="c">place</text><text x="30.06" y="105.878" class="c">at</text><text x="33.066" y="105.878" class="c">000000004</text></svg><svg x="41109"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#89"/><use xlink:href="#90" y="2.171"/><use xlink:href="#92" y="4.342"/><use xlink:href="#95" y="6.513"/><use xlink:href="#97" y="8.684"/><use xlink:href="#85" y="13.026"/><use xlink:href="#86" y="15.197"/><use xlink:href="#87" y="17.368"/><use xlink:href="#88" y="19.539"/><use xlink:href="#89" y="21.71"/><use xlink:href="#90" y="23.881"/><use xlink:href="#92" y="26.052"/><use xlink:href="#95" y="28.223"/><use xlink:href="#97" y="30.394"/><use xlink:href="#98" y="32.565"/><use xlink:href="#79" y="34.736"/><use xlink:href="#79" y="36.907"/><use xlink:href="#85" y="41.249"/><use xlink:href="#86" y="43.42"/><use xlink:href="#87" y="45.591"/><use xlink:href="#88" y="47.762"/><use xlink:href="#89" y="49.933"/><use xlink:href="#99" y="52.104"/><use xlink:href="#100" y="54.275"/><use xlink:href="#101" y="56.446"/><use xlink:href="#102" y="58.617"/><use xlink:href="#103" y="60.788"/><use xlink:href="#104" y="62.959"/><use xlink:href="#105" y="65.13"/><use xlink:href="#106" y="67.301"/><use xlink:href="#105" y="69.472"/><use xlink:href="#107" y="71.643"/><use xlink:href="#108" y="73.814"/><use xlink:href="#109" y="75.985"/><use xlink:href="#110" y="78.156"/><use xlink:href="#111" y="80.327"/><use xlink:href="#112" y="82.498"/><use xlink:href="#113" y="84.669"/><use xlink:href="#113" y="86.84"/><use xlink:href="#113" y="89.011"/><use xlink:href="#113" y="91.182"/><use xlink:href="#113" y="93.353"/><use xlink:href="#113" y="95.524"/><use xlink:href="#114" y="97.695"/><use xlink:href="#115" y="99.866"/><use xlink:href="#116" y="102.037"/></svg><svg x="41322"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="104.183"/><use xlink:href="#95"/><use xlink:href="#97" y="2.171"/><use xlink:href="#85" y="6.513"/><use xlink:href="#86" y="8.684"/><use xlink:href="#87" y="10.855"/><use xlink:href="#88" y="13.026"/><use xlink:href="#89" y="15.197"/><use xlink:href="#90" y="17.368"/><use xlink:href="#92" y="19.539"/><use xlink:href="#95" y="21.71"/><use xlink:href="#97" y="23.881"/><use xlink:href="#98" y="26.052"/><use xlink:href="#79" y="28.223"/><use xlink:href="#79" y="30.394"/><use xlink:href="#85" y="34.736"/><use xlink:href="#86" y="36.907"/><use xlink:href="#87" y="39.078"/><use xlink:href="#88" y="41.249"/><use xlink:href="#89" y="43.42"/><use xlink:href="#99" y="45.591"/><use xlink:href="#100" y="47.762"/><use xlink:href="#101" y="49.933"/><use xlink:href="#102" y="52.104"/><use xlink:href="#103" y="54.275"/><use xlink:href="#104" y="56.446"/><use xlink:href="#105" y="58.617"/><use xlink:href="#106" y="60.788"/><use xlink:href="#105" y="62.959"/><use xlink:href="#107" y="65.13"/><use xlink:href="#108" y="67.301"/><use xlink:href="#109" y="69.472"/><use xlink:href="#110" y="71.643"/><use xlink:href="#111" y="73.814"/><use xlink:href="#112" y="75.985"/><use xlink:href="#113" y="78.156"/><use xlink:href="#113" y="80.327"/><use xlink:href="#113" y="82.498"/><use xlink:href="#113" y="84.669"/><use xlink:href="#113" y="86.84"/><use xlink:href="#113" y="89.011"/><use xlink:href="#114" y="91.182"/><use xlink:href="#115" y="93.353"/><use xlink:href="#116" y="95.524"/><use xlink:href="#117" y="99.866"/><text y="105.878" class="c">clk</text><text x="4.008" y="105.878" class="c">u2_</text></svg><svg x="41535"><use xlink:href="#a"/><use xlink:href="#b" x="38.996" y="104.183"/><use xlink:href="#95"/><use xlink:href="#97" y="2.171"/><use xlink:href="#85" y="6.513"/><use xlink:href="#86" y="8.684"/><use xlink:href="#87" y="10.855"/><use xlink:href="#88" y="13.026"/><use xlink:href="#89" y="15.197"/><use xlink:href="#90" y="17.368"/><use xlink:href="#92" y="19.539"/><use xlink:href="#95" y="21.71"/><use xlink:href="#97" y="23.881"/><use xlink:href="#98" y="26.052"/><use xlink:href="#79" y="28.223"/><use xlink:href="#79" y="30.394"/><use xlink:href="#85" y="34.736"/><use xlink:href="#86" y="36.907"/><use xlink:href="#87" y="39.078"/><use xlink:href="#88" y="41.249"/><use xlink:href="#89" y="43.42"/><use xlink:href="#99" y="45.591"/><use xlink:href="#100" y="47.762"/><use xlink:href="#101" y="49.933"/><use xlink:href="#102" y="52.104"/><use xlink:href="#103" y="54.275"/><use xlink:href="#104" y="56.446"/><use xlink:href="#105" y="58.617"/><use xlink:href="#106" y="60.788"/><use xlink:href="#105" y="62.959"/><use xlink:href="#107" y="65.13"/><use xlink:href="#108" y="67.301"/><use xlink:href="#109" y="69.472"/><use xlink:href="#110" y="71.643"/><use xlink:href="#111" y="73.814"/><use xlink:href="#112" y="75.985"/><use xlink:href="#113" y="78.156"/><use xlink:href="#113" y="80.327"/><use xlink:href="#113" y="82.498"/><use xlink:href="#113" y="84.669"/><use xlink:href="#113" y="86.84"/><use xlink:href="#113" y="89.011"/><use xlink:href="#114" y="91.182"/><use xlink:href="#115" y="93.353"/><use xlink:href="#116" y="95.524"/><use xlink:href="#117" y="99.866"/><use xlink:href="#118" y="104.208"/></svg><svg x="41748"><use xlink:href="#a"/><use xlink:href="#b" x="29.996" y="104.183"/><use xlink:href="#97"/><use xlink:href="#85" y="4.342"/><use xlink:href="#86" y="6.513"/><use xlink:href="#87" y="8.684"/><use xlink:href="#88" y="10.855"/><use xlink:href="#89" y="13.026"/><use xlink:href="#90" y="15.197"/><use xlink:href="#92" y="17.368"/><use xlink:href="#95" y="19.539"/><use xlink:href="#97" y="21.71"/><use xlink:href="#98" y="23.881"/><use xlink:href="#79" y="26.052"/><use xlink:href="#79" y="28.223"/><use xlink:href="#85" y="32.565"/><use xlink:href="#86" y="34.736"/><use xlink:href="#87" y="36.907"/><use xlink:href="#88" y="39.078"/><use xlink:href="#89" y="41.249"/><use xlink:href="#99" y="43.42"/><use xlink:href="#100" y="45.591"/><use xlink:href="#101" y="47.762"/><use xlink:href="#102" y="49.933"/><use xlink:href="#103" y="52.104"/><use xlink:href="#104" y="54.275"/><use xlink:href="#105" y="56.446"/><use xlink:href="#106" y="58.617"/><use xlink:href="#105" y="60.788"/><use xlink:href="#107" y="62.959"/><use xlink:href="#108" y="65.13"/><use xlink:href="#109" y="67.301"/><use xlink:href="#110" y="69.472"/><use xlink:href="#111" y="71.643"/><use xlink:href="#112" y="73.814"/><use xlink:href="#113" y="75.985"/><use xlink:href="#113" y="78.156"/><use xlink:href="#113" y="80.327"/><use xlink:href="#113" y="82.498"/><use xlink:href="#113" y="84.669"/><use xlink:href="#113" y="86.84"/><use xlink:href="#114" y="89.011"/><use xlink:href="#115" y="91.182"/><use xlink:href="#116" y="93.353"/><use xlink:href="#117" y="97.695"/><use xlink:href="#118" y="102.037"/><text y="105.878" class="c">clk</text><text x="4.008" y="105.878" class="c">u2_dw_i2c_clk_apb</text><text x="22.044" y="105.878" class="c">already</text></svg><svg x="41961"><use xlink:href="#a"/><use xlink:href="#b" x="21.996" y="104.183"/><use xlink:href="#85" y="2.171"/><use xlink:href="#86" y="4.342"/><use xlink:href="#87" y="6.513"/><use xlink:href="#88" y="8.684"/><use xlink:href="#89" y="10.855"/><use xlink:href="#90" y="13.026"/><use xlink:href="#92" y="15.197"/><use xlink:href="#95" y="17.368"/><use xlink:href="#97" y="19.539"/><use xlink:href="#98" y="21.71"/><use xlink:href="#79" y="23.881"/><use xlink:href="#79" y="26.052"/><use xlink:href="#85" y="30.394"/><use xlink:href="#86" y="32.565"/><use xlink:href="#87" y="34.736"/><use xlink:href="#88" y="36.907"/><use xlink:href="#89" y="39.078"/><use xlink:href="#99" y="41.249"/><use xlink:href="#100" y="43.42"/><use xlink:href="#101" y="45.591"/><use xlink:href="#102" y="47.762"/><use xlink:href="#103" y="49.933"/><use xlink:href="#104" y="52.104"/><use xlink:href="#105" y="54.275"/><use xlink:href="#106" y="56.446"/><use xlink:href="#105" y="58.617"/><use xlink:href="#107" y="60.788"/><use xlink:href="#108" y="62.959"/><use xlink:href="#109" y="65.13"/><use xlink:href="#110" y="67.301"/><use xlink:href="#111" y="69.472"/><use xlink:href="#112" y="71.643"/><use xlink:href="#113" y="73.814"/><use xlink:href="#113" y="75.985"/><use xlink:href="#113" y="78.156"/><use xlink:href="#113" y="80.327"/><use xlink:href="#113" y="82.498"/><use xlink:href="#113" y="84.669"/><use xlink:href="#114" y="86.84"/><use xlink:href="#115" y="89.011"/><use xlink:href="#116" y="91.182"/><use xlink:href="#117" y="95.524"/><use xlink:href="#118" y="99.866"/><use xlink:href="#119" y="102.037"/><text y="105.878" class="c">clk</text><text x="4.008" y="105.878" class="c">u5_dw_i2c_clk_core</text></svg><svg x="42174"><use xlink:href="#a"/><use xlink:href="#b" x="12.996" y="104.183"/><use xlink:href="#85"/><use xlink:href="#86" y="2.171"/><use xlink:href="#87" y="4.342"/><use xlink:href="#88" y="6.513"/><use xlink:href="#89" y="8.684"/><use xlink:href="#90" y="10.855"/><use xlink:href="#92" y="13.026"/><use xlink:href="#95" y="15.197"/><use xlink:href="#97" y="17.368"/><use xlink:href="#98" y="19.539"/><use xlink:href="#79" y="21.71"/><use xlink:href="#79" y="23.881"/><use xlink:href="#85" y="28.223"/><use xlink:href="#86" y="30.394"/><use xlink:href="#87" y="32.565"/><use xlink:href="#88" y="34.736"/><use xlink:href="#89" y="36.907"/><use xlink:href="#99" y="39.078"/><use xlink:href="#100" y="41.249"/><use xlink:href="#101" y="43.42"/><use xlink:href="#102" y="45.591"/><use xlink:href="#103" y="47.762"/><use xlink:href="#104" y="49.933"/><use xlink:href="#105" y="52.104"/><use xlink:href="#106" y="54.275"/><use xlink:href="#105" y="56.446"/><use xlink:href="#107" y="58.617"/><use xlink:href="#108" y="60.788"/><use xlink:href="#109" y="62.959"/><use xlink:href="#110" y="65.13"/><use xlink:href="#111" y="67.301"/><use xlink:href="#112" y="69.472"/><use xlink:href="#113" y="71.643"/><use xlink:href="#113" y="73.814"/><use xlink:href="#113" y="75.985"/><use xlink:href="#113" y="78.156"/><use xlink:href="#113" y="80.327"/><use xlink:href="#113" y="82.498"/><use xlink:href="#114" y="84.669"/><use xlink:href="#115" y="86.84"/><use xlink:href="#116" y="89.011"/><use xlink:href="#117" y="93.353"/><use xlink:href="#118" y="97.695"/><use xlink:href="#119" y="99.866"/><use xlink:href="#120" y="102.037"/><text y="105.878" class="c">clk</text><text x="4.008" y="105.878" class="c">u5_dw_i2c</text></svg><svg x="42387"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#86"/><use xlink:href="#87" y="2.171"/><use xlink:href="#88" y="4.342"/><use xlink:href="#89" y="6.513"/><use xlink:href="#90" y="8.684"/><use xlink:href="#92" y="10.855"/><use xlink:href="#95" y="13.026"/><use xlink:href="#97" y="15.197"/><use xlink:href="#98" y="17.368"/><use xlink:href="#79" y="19.539"/><use xlink:href="#79" y="21.71"/><use xlink:href="#85" y="26.052"/><use xlink:href="#86" y="28.223"/><use xlink:href="#87" y="30.394"/><use xlink:href="#88" y="32.565"/><use xlink:href="#89" y="34.736"/><use xlink:href="#99" y="36.907"/><use xlink:href="#100" y="39.078"/><use xlink:href="#101" y="41.249"/><use xlink:href="#102" y="43.42"/><use xlink:href="#103" y="45.591"/><use xlink:href="#104" y="47.762"/><use xlink:href="#105" y="49.933"/><use xlink:href="#106" y="52.104"/><use xlink:href="#105" y="54.275"/><use xlink:href="#107" y="56.446"/><use xlink:href="#108" y="58.617"/><use xlink:href="#109" y="60.788"/><use xlink:href="#110" y="62.959"/><use xlink:href="#111" y="65.13"/><use xlink:href="#112" y="67.301"/><use xlink:href="#113" y="69.472"/><use xlink:href="#113" y="71.643"/><use xlink:href="#113" y="73.814"/><use xlink:href="#113" y="75.985"/><use xlink:href="#113" y="78.156"/><use xlink:href="#113" y="80.327"/><use xlink:href="#114" y="82.498"/><use xlink:href="#115" y="84.669"/><use xlink:href="#116" y="86.84"/><use xlink:href="#117" y="91.182"/><use xlink:href="#118" y="95.524"/><use xlink:href="#119" y="97.695"/><use xlink:href="#120" y="99.866"/><use xlink:href="#121" y="102.037"/></svg><svg x="42600"><use xlink:href="#a"/><use xlink:href="#b" x="31.996" y="104.183"/><use xlink:href="#86"/><use xlink:href="#87" y="2.171"/><use xlink:href="#88" y="4.342"/><use xlink:href="#89" y="6.513"/><use xlink:href="#90" y="8.684"/><use xlink:href="#92" y="10.855"/><use xlink:href="#95" y="13.026"/><use xlink:href="#97" y="15.197"/><use xlink:href="#98" y="17.368"/><use xlink:href="#79" y="19.539"/><use xlink:href="#79" y="21.71"/><use xlink:href="#85" y="26.052"/><use xlink:href="#86" y="28.223"/><use xlink:href="#87" y="30.394"/><use xlink:href="#88" y="32.565"/><use xlink:href="#89" y="34.736"/><use xlink:href="#99" y="36.907"/><use xlink:href="#100" y="39.078"/><use xlink:href="#101" y="41.249"/><use xlink:href="#102" y="43.42"/><use xlink:href="#103" y="45.591"/><use xlink:href="#104" y="47.762"/><use xlink:href="#105" y="49.933"/><use xlink:href="#106" y="52.104"/><use xlink:href="#105" y="54.275"/><use xlink:href="#107" y="56.446"/><use xlink:href="#108" y="58.617"/><use xlink:href="#109" y="60.788"/><use xlink:href="#110" y="62.959"/><use xlink:href="#111" y="65.13"/><use xlink:href="#112" y="67.301"/><use xlink:href="#113" y="69.472"/><use xlink:href="#113" y="71.643"/><use xlink:href="#113" y="73.814"/><use xlink:href="#113" y="75.985"/><use xlink:href="#113" y="78.156"/><use xlink:href="#113" y="80.327"/><use xlink:href="#114" y="82.498"/><use xlink:href="#115" y="84.669"/><use xlink:href="#116" y="86.84"/><use xlink:href="#117" y="91.182"/><use xlink:href="#118" y="95.524"/><use xlink:href="#119" y="97.695"/><use xlink:href="#120" y="99.866"/><use xlink:href="#121" y="102.037"/><text y="105.878" class="c">clk</text><text x="4.008" y="105.878" class="c">u0_mipitx_dphy_clk_txesc</text><text x="29.058" y="105.878" class="c">alr</text></svg><svg x="42813"><use xlink:href="#a"/><use xlink:href="#b" x="16.996" y="104.183"/><use xlink:href="#87"/><use xlink:href="#88" y="2.171"/><use xlink:href="#89" y="4.342"/><use xlink:href="#90" y="6.513"/><use xlink:href="#92" y="8.684"/><use xlink:href="#95" y="10.855"/><use xlink:href="#97" y="13.026"/><use xlink:href="#98" y="15.197"/><use xlink:href="#79" y="17.368"/><use xlink:href="#79" y="19.539"/><use xlink:href="#85" y="23.881"/><use xlink:href="#86" y="26.052"/><use xlink:href="#87" y="28.223"/><use xlink:href="#88" y="30.394"/><use xlink:href="#89" y="32.565"/><use xlink:href="#99" y="34.736"/><use xlink:href="#100" y="36.907"/><use xlink:href="#101" y="39.078"/><use xlink:href="#102" y="41.249"/><use xlink:href="#103" y="43.42"/><use xlink:href="#104" y="45.591"/><use xlink:href="#105" y="47.762"/><use xlink:href="#106" y="49.933"/><use xlink:href="#105" y="52.104"/><use xlink:href="#107" y="54.275"/><use xlink:href="#108" y="56.446"/><use xlink:href="#109" y="58.617"/><use xlink:href="#110" y="60.788"/><use xlink:href="#111" y="62.959"/><use xlink:href="#112" y="65.13"/><use xlink:href="#113" y="67.301"/><use xlink:href="#113" y="69.472"/><use xlink:href="#113" y="71.643"/><use xlink:href="#113" y="73.814"/><use xlink:href="#113" y="75.985"/><use xlink:href="#113" y="78.156"/><use xlink:href="#114" y="80.327"/><use xlink:href="#115" y="82.498"/><use xlink:href="#116" y="84.669"/><use xlink:href="#117" y="89.011"/><use xlink:href="#118" y="93.353"/><use xlink:href="#119" y="95.524"/><use xlink:href="#120" y="97.695"/><use xlink:href="#121" y="99.866"/><use xlink:href="#122" y="102.037"/><text y="105.878" class="c">Welcome</text><text x="8.016" y="105.878" class="c">to</text><text x="11.022" y="105.878" class="c">FizzBu</text></svg><svg x="43026"><use xlink:href="#a"/><use xlink:href="#b" x="23.996" y="104.183"/><use xlink:href="#88"/><use xlink:href="#89" y="2.171"/><use xlink:href="#90" y="4.342"/><use xlink:href="#92" y="6.513"/><use xlink:href="#95" y="8.684"/><use xlink:href="#97" y="10.855"/><use xlink:href="#98" y="13.026"/><use xlink:href="#79" y="15.197"/><use xlink:href="#79" y="17.368"/><use xlink:href="#85" y="21.71"/><use xlink:href="#86" y="23.881"/><use xlink:href="#87" y="26.052"/><use xlink:href="#88" y="28.223"/><use xlink:href="#89" y="30.394"/><use xlink:href="#99" y="32.565"/><use xlink:href="#100" y="34.736"/><use xlink:href="#101" y="36.907"/><use xlink:href="#102" y="39.078"/><use xlink:href="#103" y="41.249"/><use xlink:href="#104" y="43.42"/><use xlink:href="#105" y="45.591"/><use xlink:href="#106" y="47.762"/><use xlink:href="#105" y="49.933"/><use xlink:href="#107" y="52.104"/><use xlink:href="#108" y="54.275"/><use xlink:href="#109" y="56.446"/><use xlink:href="#110" y="58.617"/><use xlink:href="#111" y="60.788"/><use xlink:href="#112" y="62.959"/><use xlink:href="#113" y="65.13"/><use xlink:href="#113" y="67.301"/><use xlink:href="#113" y="69.472"/><use xlink:href="#113" y="71.643"/><use xlink:href="#113" y="73.814"/><use xlink:href="#113" y="75.985"/><use xlink:href="#114" y="78.156"/><use xlink:href="#115" y="80.327"/><use xlink:href="#116" y="82.498"/><use xlink:href="#117" y="86.84"/><use xlink:href="#118" y="91.182"/><use xlink:href="#119" y="93.353"/><use xlink:href="#120" y="95.524"/><use xlink:href="#121" y="97.695"/><use xlink:href="#122" y="99.866"/><use xlink:href="#123" y="102.037"/><text y="105.878" class="c">Running</text><text x="8.016" y="105.878" class="c">on:</text><text x="12.024" y="105.878" class="c">StarFive</text><text x="21.042" y="105.878" class="c">Vis</text></svg><svg x="43239"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#89"/><use xlink:href="#90" y="2.171"/><use xlink:href="#92" y="4.342"/><use xlink:href="#95" y="6.513"/><use xlink:href="#97" y="8.684"/><use xlink:href="#98" y="10.855"/><use xlink:href="#79" y="13.026"/><use xlink:href="#79" y="15.197"/><use xlink:href="#85" y="19.539"/><use xlink:href="#86" y="21.71"/><use xlink:href="#87" y="23.881"/><use xlink:href="#88" y="26.052"/><use xlink:href="#89" y="28.223"/><use xlink:href="#99" y="30.394"/><use xlink:href="#100" y="32.565"/><use xlink:href="#101" y="34.736"/><use xlink:href="#102" y="36.907"/><use xlink:href="#103" y="39.078"/><use xlink:href="#104" y="41.249"/><use xlink:href="#105" y="43.42"/><use xlink:href="#106" y="45.591"/><use xlink:href="#105" y="47.762"/><use xlink:href="#107" y="49.933"/><use xlink:href="#108" y="52.104"/><use xlink:href="#109" y="54.275"/><use xlink:href="#110" y="56.446"/><use xlink:href="#111" y="58.617"/><use xlink:href="#112" y="60.788"/><use xlink:href="#113" y="62.959"/><use xlink:href="#113" y="65.13"/><use xlink:href="#113" y="67.301"/><use xlink:href="#113" y="69.472"/><use xlink:href="#113" y="71.643"/><use xlink:href="#113" y="73.814"/><use xlink:href="#114" y="75.985"/><use xlink:href="#115" y="78.156"/><use xlink:href="#116" y="80.327"/><use xlink:href="#117" y="84.669"/><use xlink:href="#118" y="89.011"/><use xlink:href="#119" y="91.182"/><use xlink:href="#120" y="93.353"/><use xlink:href="#121" y="95.524"/><use xlink:href="#122" y="97.695"/><use xlink:href="#123" y="99.866"/><use xlink:href="#124" y="102.037"/></svg><svg x="43452"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#90"/><use xlink:href="#92" y="2.171"/><use xlink:href="#95" y="4.342"/><use xlink:href="#97" y="6.513"/><use xlink:href="#98" y="8.684"/><use xlink:href="#79" y="10.855"/><use xlink:href="#79" y="13.026"/><use xlink:href="#85" y="17.368"/><use xlink:href="#86" y="19.539"/><use xlink:href="#87" y="21.71"/><use xlink:href="#88" y="23.881"/><use xlink:href="#89" y="26.052"/><use xlink:href="#99" y="28.223"/><use xlink:href="#100" y="30.394"/><use xlink:href="#101" y="32.565"/><use xlink:href="#102" y="34.736"/><use xlink:href="#103" y="36.907"/><use xlink:href="#104" y="39.078"/><use xlink:href="#105" y="41.249"/><use xlink:href="#106" y="43.42"/><use xlink:href="#105" y="45.591"/><use xlink:href="#107" y="47.762"/><use xlink:href="#108" y="49.933"/><use xlink:href="#109" y="52.104"/><use xlink:href="#110" y="54.275"/><use xlink:href="#111" y="56.446"/><use xlink:href="#112" y="58.617"/><use xlink:href="#113" y="60.788"/><use xlink:href="#113" y="62.959"/><use xlink:href="#113" y="65.13"/><use xlink:href="#113" y="67.301"/><use xlink:href="#113" y="69.472"/><use xlink:href="#113" y="71.643"/><use xlink:href="#114" y="73.814"/><use xlink:href="#115" y="75.985"/><use xlink:href="#116" y="78.156"/><use xlink:href="#117" y="82.498"/><use xlink:href="#118" y="86.84"/><use xlink:href="#119" y="89.011"/><use xlink:href="#120" y="91.182"/><use xlink:href="#121" y="93.353"/><use xlink:href="#122" y="95.524"/><use xlink:href="#123" y="97.695"/><use xlink:href="#124" y="99.866"/><use xlink:href="#125" y="102.037"/></svg><svg x="43665"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#92"/><use xlink:href="#95" y="2.171"/><use xlink:href="#97" y="4.342"/><use xlink:href="#98" y="6.513"/><use xlink:href="#79" y="8.684"/><use xlink:href="#79" y="10.855"/><use xlink:href="#85" y="15.197"/><use xlink:href="#86" y="17.368"/><use xlink:href="#87" y="19.539"/><use xlink:href="#88" y="21.71"/><use xlink:href="#89" y="23.881"/><use xlink:href="#99" y="26.052"/><use xlink:href="#100" y="28.223"/><use xlink:href="#101" y="30.394"/><use xlink:href="#102" y="32.565"/><use xlink:href="#103" y="34.736"/><use xlink:href="#104" y="36.907"/><use xlink:href="#105" y="39.078"/><use xlink:href="#106" y="41.249"/><use xlink:href="#105" y="43.42"/><use xlink:href="#107" y="45.591"/><use xlink:href="#108" y="47.762"/><use xlink:href="#109" y="49.933"/><use xlink:href="#110" y="52.104"/><use xlink:href="#111" y="54.275"/><use xlink:href="#112" y="56.446"/><use xlink:href="#113" y="58.617"/><use xlink:href="#113" y="60.788"/><use xlink:href="#113" y="62.959"/><use xlink:href="#113" y="65.13"/><use xlink:href="#113" y="67.301"/><use xlink:href="#113" y="69.472"/><use xlink:href="#114" y="71.643"/><use xlink:href="#115" y="73.814"/><use xlink:href="#116" y="75.985"/><use xlink:href="#117" y="80.327"/><use xlink:href="#118" y="84.669"/><use xlink:href="#119" y="86.84"/><use xlink:href="#120" y="89.011"/><use xlink:href="#121" y="91.182"/><use xlink:href="#122" y="93.353"/><use xlink:href="#123" y="95.524"/><use xlink:href="#124" y="97.695"/><use xlink:href="#125" y="99.866"/><use xlink:href="#126" y="102.037"/></svg><svg x="43878"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#95"/><use xlink:href="#97" y="2.171"/><use xlink:href="#98" y="4.342"/><use xlink:href="#79" y="6.513"/><use xlink:href="#79" y="8.684"/><use xlink:href="#85" y="13.026"/><use xlink:href="#86" y="15.197"/><use xlink:href="#87" y="17.368"/><use xlink:href="#88" y="19.539"/><use xlink:href="#89" y="21.71"/><use xlink:href="#99" y="23.881"/><use xlink:href="#100" y="26.052"/><use xlink:href="#101" y="28.223"/><use xlink:href="#102" y="30.394"/><use xlink:href="#103" y="32.565"/><use xlink:href="#104" y="34.736"/><use xlink:href="#105" y="36.907"/><use xlink:href="#106" y="39.078"/><use xlink:href="#105" y="41.249"/><use xlink:href="#107" y="43.42"/><use xlink:href="#108" y="45.591"/><use xlink:href="#109" y="47.762"/><use xlink:href="#110" y="49.933"/><use xlink:href="#111" y="52.104"/><use xlink:href="#112" y="54.275"/><use xlink:href="#113" y="56.446"/><use xlink:href="#113" y="58.617"/><use xlink:href="#113" y="60.788"/><use xlink:href="#113" y="62.959"/><use xlink:href="#113" y="65.13"/><use xlink:href="#113" y="67.301"/><use xlink:href="#114" y="69.472"/><use xlink:href="#115" y="71.643"/><use xlink:href="#116" y="73.814"/><use xlink:href="#117" y="78.156"/><use xlink:href="#118" y="82.498"/><use xlink:href="#119" y="84.669"/><use xlink:href="#120" y="86.84"/><use xlink:href="#121" y="89.011"/><use xlink:href="#122" y="91.182"/><use xlink:href="#123" y="93.353"/><use xlink:href="#124" y="95.524"/><use xlink:href="#125" y="97.695"/><use xlink:href="#126" y="99.866"/><use xlink:href="#125" y="102.037"/></svg><svg x="44091"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#97"/><use xlink:href="#98" y="2.171"/><use xlink:href="#79" y="4.342"/><use xlink:href="#79" y="6.513"/><use xlink:href="#85" y="10.855"/><use xlink:href="#86" y="13.026"/><use xlink:href="#87" y="15.197"/><use xlink:href="#88" y="17.368"/><use xlink:href="#89" y="19.539"/><use xlink:href="#99" y="21.71"/><use xlink:href="#100" y="23.881"/><use xlink:href="#101" y="26.052"/><use xlink:href="#102" y="28.223"/><use xlink:href="#103" y="30.394"/><use xlink:href="#104" y="32.565"/><use xlink:href="#105" y="34.736"/><use xlink:href="#106" y="36.907"/><use xlink:href="#105" y="39.078"/><use xlink:href="#107" y="41.249"/><use xlink:href="#108" y="43.42"/><use xlink:href="#109" y="45.591"/><use xlink:href="#110" y="47.762"/><use xlink:href="#111" y="49.933"/><use xlink:href="#112" y="52.104"/><use xlink:href="#113" y="54.275"/><use xlink:href="#113" y="56.446"/><use xlink:href="#113" y="58.617"/><use xlink:href="#113" y="60.788"/><use xlink:href="#113" y="62.959"/><use xlink:href="#113" y="65.13"/><use xlink:href="#114" y="67.301"/><use xlink:href="#115" y="69.472"/><use xlink:href="#116" y="71.643"/><use xlink:href="#117" y="75.985"/><use xlink:href="#118" y="80.327"/><use xlink:href="#119" y="82.498"/><use xlink:href="#120" y="84.669"/><use xlink:href="#121" y="86.84"/><use xlink:href="#122" y="89.011"/><use xlink:href="#123" y="91.182"/><use xlink:href="#124" y="93.353"/><use xlink:href="#125" y="95.524"/><use xlink:href="#126" y="97.695"/><use xlink:href="#125" y="99.866"/><use xlink:href="#125" y="102.037"/></svg><svg x="44304"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#98"/><use xlink:href="#79" y="2.171"/><use xlink:href="#79" y="4.342"/><use xlink:href="#85" y="8.684"/><use xlink:href="#86" y="10.855"/><use xlink:href="#87" y="13.026"/><use xlink:href="#88" y="15.197"/><use xlink:href="#89" y="17.368"/><use xlink:href="#99" y="19.539"/><use xlink:href="#100" y="21.71"/><use xlink:href="#101" y="23.881"/><use xlink:href="#102" y="26.052"/><use xlink:href="#103" y="28.223"/><use xlink:href="#104" y="30.394"/><use xlink:href="#105" y="32.565"/><use xlink:href="#106" y="34.736"/><use xlink:href="#105" y="36.907"/><use xlink:href="#107" y="39.078"/><use xlink:href="#108" y="41.249"/><use xlink:href="#109" y="43.42"/><use xlink:href="#110" y="45.591"/><use xlink:href="#111" y="47.762"/><use xlink:href="#112" y="49.933"/><use xlink:href="#113" y="52.104"/><use xlink:href="#113" y="54.275"/><use xlink:href="#113" y="56.446"/><use xlink:href="#113" y="58.617"/><use xlink:href="#113" y="60.788"/><use xlink:href="#113" y="62.959"/><use xlink:href="#114" y="65.13"/><use xlink:href="#115" y="67.301"/><use xlink:href="#116" y="69.472"/><use xlink:href="#117" y="73.814"/><use xlink:href="#118" y="78.156"/><use xlink:href="#119" y="80.327"/><use xlink:href="#120" y="82.498"/><use xlink:href="#121" y="84.669"/><use xlink:href="#122" y="86.84"/><use xlink:href="#123" y="89.011"/><use xlink:href="#124" y="91.182"/><use xlink:href="#125" y="93.353"/><use xlink:href="#126" y="95.524"/><use xlink:href="#125" y="97.695"/><use xlink:href="#125" y="99.866"/><use xlink:href="#126" y="102.037"/></svg><svg x="44517"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#79"/><use xlink:href="#79" y="2.171"/><use xlink:href="#85" y="6.513"/><use xlink:href="#86" y="8.684"/><use xlink:href="#87" y="10.855"/><use xlink:href="#88" y="13.026"/><use xlink:href="#89" y="15.197"/><use xlink:href="#99" y="17.368"/><use xlink:href="#100" y="19.539"/><use xlink:href="#101" y="21.71"/><use xlink:href="#102" y="23.881"/><use xlink:href="#103" y="26.052"/><use xlink:href="#104" y="28.223"/><use xlink:href="#105" y="30.394"/><use xlink:href="#106" y="32.565"/><use xlink:href="#105" y="34.736"/><use xlink:href="#107" y="36.907"/><use xlink:href="#108" y="39.078"/><use xlink:href="#109" y="41.249"/><use xlink:href="#110" y="43.42"/><use xlink:href="#111" y="45.591"/><use xlink:href="#112" y="47.762"/><use xlink:href="#113" y="49.933"/><use xlink:href="#113" y="52.104"/><use xlink:href="#113" y="54.275"/><use xlink:href="#113" y="56.446"/><use xlink:href="#113" y="58.617"/><use xlink:href="#113" y="60.788"/><use xlink:href="#114" y="62.959"/><use xlink:href="#115" y="65.13"/><use xlink:href="#116" y="67.301"/><use xlink:href="#117" y="71.643"/><use xlink:href="#118" y="75.985"/><use xlink:href="#119" y="78.156"/><use xlink:href="#120" y="80.327"/><use xlink:href="#121" y="82.498"/><use xlink:href="#122" y="84.669"/><use xlink:href="#123" y="86.84"/><use xlink:href="#124" y="89.011"/><use xlink:href="#125" y="91.182"/><use xlink:href="#126" y="93.353"/><use xlink:href="#125" y="95.524"/><use xlink:href="#125" y="97.695"/><use xlink:href="#126" y="99.866"/><use xlink:href="#125" y="102.037"/></svg><svg x="44730"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#79"/><use xlink:href="#85" y="4.342"/><use xlink:href="#86" y="6.513"/><use xlink:href="#87" y="8.684"/><use xlink:href="#88" y="10.855"/><use xlink:href="#89" y="13.026"/><use xlink:href="#99" y="15.197"/><use xlink:href="#100" y="17.368"/><use xlink:href="#101" y="19.539"/><use xlink:href="#102" y="21.71"/><use xlink:href="#103" y="23.881"/><use xlink:href="#104" y="26.052"/><use xlink:href="#105" y="28.223"/><use xlink:href="#106" y="30.394"/><use xlink:href="#105" y="32.565"/><use xlink:href="#107" y="34.736"/><use xlink:href="#108" y="36.907"/><use xlink:href="#109" y="39.078"/><use xlink:href="#110" y="41.249"/><use xlink:href="#111" y="43.42"/><use xlink:href="#112" y="45.591"/><use xlink:href="#113" y="47.762"/><use xlink:href="#113" y="49.933"/><use xlink:href="#113" y="52.104"/><use xlink:href="#113" y="54.275"/><use xlink:href="#113" y="56.446"/><use xlink:href="#113" y="58.617"/><use xlink:href="#114" y="60.788"/><use xlink:href="#115" y="62.959"/><use xlink:href="#116" y="65.13"/><use xlink:href="#117" y="69.472"/><use xlink:href="#118" y="73.814"/><use xlink:href="#119" y="75.985"/><use xlink:href="#120" y="78.156"/><use xlink:href="#121" y="80.327"/><use xlink:href="#122" y="82.498"/><use xlink:href="#123" y="84.669"/><use xlink:href="#124" y="86.84"/><use xlink:href="#125" y="89.011"/><use xlink:href="#126" y="91.182"/><use xlink:href="#125" y="93.353"/><use xlink:href="#125" y="95.524"/><use xlink:href="#126" y="97.695"/><use xlink:href="#125" y="99.866"/><use xlink:href="#127" y="102.037"/></svg><svg x="44943"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#85" y="2.171"/><use xlink:href="#86" y="4.342"/><use xlink:href="#87" y="6.513"/><use xlink:href="#88" y="8.684"/><use xlink:href="#89" y="10.855"/><use xlink:href="#99" y="13.026"/><use xlink:href="#100" y="15.197"/><use xlink:href="#101" y="17.368"/><use xlink:href="#102" y="19.539"/><use xlink:href="#103" y="21.71"/><use xlink:href="#104" y="23.881"/><use xlink:href="#105" y="26.052"/><use xlink:href="#106" y="28.223"/><use xlink:href="#105" y="30.394"/><use xlink:href="#107" y="32.565"/><use xlink:href="#108" y="34.736"/><use xlink:href="#109" y="36.907"/><use xlink:href="#110" y="39.078"/><use xlink:href="#111" y="41.249"/><use xlink:href="#112" y="43.42"/><use xlink:href="#113" y="45.591"/><use xlink:href="#113" y="47.762"/><use xlink:href="#113" y="49.933"/><use xlink:href="#113" y="52.104"/><use xlink:href="#113" y="54.275"/><use xlink:href="#113" y="56.446"/><use xlink:href="#114" y="58.617"/><use xlink:href="#115" y="60.788"/><use xlink:href="#116" y="62.959"/><use xlink:href="#117" y="67.301"/><use xlink:href="#118" y="71.643"/><use xlink:href="#119" y="73.814"/><use xlink:href="#120" y="75.985"/><use xlink:href="#121" y="78.156"/><use xlink:href="#122" y="80.327"/><use xlink:href="#123" y="82.498"/><use xlink:href="#124" y="84.669"/><use xlink:href="#125" y="86.84"/><use xlink:href="#126" y="89.011"/><use xlink:href="#125" y="91.182"/><use xlink:href="#125" y="93.353"/><use xlink:href="#126" y="95.524"/><use xlink:href="#125" y="97.695"/><use xlink:href="#127" y="99.866"/><use xlink:href="#125" y="102.037"/></svg><svg x="45156"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#85"/><use xlink:href="#86" y="2.171"/><use xlink:href="#87" y="4.342"/><use xlink:href="#88" y="6.513"/><use xlink:href="#89" y="8.684"/><use xlink:href="#99" y="10.855"/><use xlink:href="#100" y="13.026"/><use xlink:href="#101" y="15.197"/><use xlink:href="#102" y="17.368"/><use xlink:href="#103" y="19.539"/><use xlink:href="#104" y="21.71"/><use xlink:href="#105" y="23.881"/><use xlink:href="#106" y="26.052"/><use xlink:href="#105" y="28.223"/><use xlink:href="#107" y="30.394"/><use xlink:href="#108" y="32.565"/><use xlink:href="#109" y="34.736"/><use xlink:href="#110" y="36.907"/><use xlink:href="#111" y="39.078"/><use xlink:href="#112" y="41.249"/><use xlink:href="#113" y="43.42"/><use xlink:href="#113" y="45.591"/><use xlink:href="#113" y="47.762"/><use xlink:href="#113" y="49.933"/><use xlink:href="#113" y="52.104"/><use xlink:href="#113" y="54.275"/><use xlink:href="#114" y="56.446"/><use xlink:href="#115" y="58.617"/><use xlink:href="#116" y="60.788"/><use xlink:href="#117" y="65.13"/><use xlink:href="#118" y="69.472"/><use xlink:href="#119" y="71.643"/><use xlink:href="#120" y="73.814"/><use xlink:href="#121" y="75.985"/><use xlink:href="#122" y="78.156"/><use xlink:href="#123" y="80.327"/><use xlink:href="#124" y="82.498"/><use xlink:href="#125" y="84.669"/><use xlink:href="#126" y="86.84"/><use xlink:href="#125" y="89.011"/><use xlink:href="#125" y="91.182"/><use xlink:href="#126" y="93.353"/><use xlink:href="#125" y="95.524"/><use xlink:href="#127" y="97.695"/><use xlink:href="#125" y="99.866"/><use xlink:href="#126" y="102.037"/></svg><svg x="45369"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#86"/><use xlink:href="#87" y="2.171"/><use xlink:href="#88" y="4.342"/><use xlink:href="#89" y="6.513"/><use xlink:href="#99" y="8.684"/><use xlink:href="#100" y="10.855"/><use xlink:href="#101" y="13.026"/><use xlink:href="#102" y="15.197"/><use xlink:href="#103" y="17.368"/><use xlink:href="#104" y="19.539"/><use xlink:href="#105" y="21.71"/><use xlink:href="#106" y="23.881"/><use xlink:href="#105" y="26.052"/><use xlink:href="#107" y="28.223"/><use xlink:href="#108" y="30.394"/><use xlink:href="#109" y="32.565"/><use xlink:href="#110" y="34.736"/><use xlink:href="#111" y="36.907"/><use xlink:href="#112" y="39.078"/><use xlink:href="#113" y="41.249"/><use xlink:href="#113" y="43.42"/><use xlink:href="#113" y="45.591"/><use xlink:href="#113" y="47.762"/><use xlink:href="#113" y="49.933"/><use xlink:href="#113" y="52.104"/><use xlink:href="#114" y="54.275"/><use xlink:href="#115" y="56.446"/><use xlink:href="#116" y="58.617"/><use xlink:href="#117" y="62.959"/><use xlink:href="#118" y="67.301"/><use xlink:href="#119" y="69.472"/><use xlink:href="#120" y="71.643"/><use xlink:href="#121" y="73.814"/><use xlink:href="#122" y="75.985"/><use xlink:href="#123" y="78.156"/><use xlink:href="#124" y="80.327"/><use xlink:href="#125" y="82.498"/><use xlink:href="#126" y="84.669"/><use xlink:href="#125" y="86.84"/><use xlink:href="#125" y="89.011"/><use xlink:href="#126" y="91.182"/><use xlink:href="#125" y="93.353"/><use xlink:href="#127" y="95.524"/><use xlink:href="#125" y="97.695"/><use xlink:href="#126" y="99.866"/><use xlink:href="#125" y="102.037"/></svg><svg x="45582"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#87"/><use xlink:href="#88" y="2.171"/><use xlink:href="#89" y="4.342"/><use xlink:href="#99" y="6.513"/><use xlink:href="#100" y="8.684"/><use xlink:href="#101" y="10.855"/><use xlink:href="#102" y="13.026"/><use xlink:href="#103" y="15.197"/><use xlink:href="#104" y="17.368"/><use xlink:href="#105" y="19.539"/><use xlink:href="#106" y="21.71"/><use xlink:href="#105" y="23.881"/><use xlink:href="#107" y="26.052"/><use xlink:href="#108" y="28.223"/><use xlink:href="#109" y="30.394"/><use xlink:href="#110" y="32.565"/><use xlink:href="#111" y="34.736"/><use xlink:href="#112" y="36.907"/><use xlink:href="#113" y="39.078"/><use xlink:href="#113" y="41.249"/><use xlink:href="#113" y="43.42"/><use xlink:href="#113" y="45.591"/><use xlink:href="#113" y="47.762"/><use xlink:href="#113" y="49.933"/><use xlink:href="#114" y="52.104"/><use xlink:href="#115" y="54.275"/><use xlink:href="#116" y="56.446"/><use xlink:href="#117" y="60.788"/><use xlink:href="#118" y="65.13"/><use xlink:href="#119" y="67.301"/><use xlink:href="#120" y="69.472"/><use xlink:href="#121" y="71.643"/><use xlink:href="#122" y="73.814"/><use xlink:href="#123" y="75.985"/><use xlink:href="#124" y="78.156"/><use xlink:href="#125" y="80.327"/><use xlink:href="#126" y="82.498"/><use xlink:href="#125" y="84.669"/><use xlink:href="#125" y="86.84"/><use xlink:href="#126" y="89.011"/><use xlink:href="#125" y="91.182"/><use xlink:href="#127" y="93.353"/><use xlink:href="#125" y="95.524"/><use xlink:href="#126" y="97.695"/><use xlink:href="#125" y="99.866"/><use xlink:href="#125" y="102.037"/></svg><svg x="45795"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#88"/><use xlink:href="#89" y="2.171"/><use xlink:href="#99" y="4.342"/><use xlink:href="#100" y="6.513"/><use xlink:href="#101" y="8.684"/><use xlink:href="#102" y="10.855"/><use xlink:href="#103" y="13.026"/><use xlink:href="#104" y="15.197"/><use xlink:href="#105" y="17.368"/><use xlink:href="#106" y="19.539"/><use xlink:href="#105" y="21.71"/><use xlink:href="#107" y="23.881"/><use xlink:href="#108" y="26.052"/><use xlink:href="#109" y="28.223"/><use xlink:href="#110" y="30.394"/><use xlink:href="#111" y="32.565"/><use xlink:href="#112" y="34.736"/><use xlink:href="#113" y="36.907"/><use xlink:href="#113" y="39.078"/><use xlink:href="#113" y="41.249"/><use xlink:href="#113" y="43.42"/><use xlink:href="#113" y="45.591"/><use xlink:href="#113" y="47.762"/><use xlink:href="#114" y="49.933"/><use xlink:href="#115" y="52.104"/><use xlink:href="#116" y="54.275"/><use xlink:href="#117" y="58.617"/><use xlink:href="#118" y="62.959"/><use xlink:href="#119" y="65.13"/><use xlink:href="#120" y="67.301"/><use xlink:href="#121" y="69.472"/><use xlink:href="#122" y="71.643"/><use xlink:href="#123" y="73.814"/><use xlink:href="#124" y="75.985"/><use xlink:href="#125" y="78.156"/><use xlink:href="#126" y="80.327"/><use xlink:href="#125" y="82.498"/><use xlink:href="#125" y="84.669"/><use xlink:href="#126" y="86.84"/><use xlink:href="#125" y="89.011"/><use xlink:href="#127" y="91.182"/><use xlink:href="#125" y="93.353"/><use xlink:href="#126" y="95.524"/><use xlink:href="#125" y="97.695"/><use xlink:href="#125" y="99.866"/><use xlink:href="#126" y="102.037"/></svg><svg x="46008"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#99"/><use xlink:href="#100" y="2.171"/><use xlink:href="#101" y="4.342"/><use xlink:href="#102" y="6.513"/><use xlink:href="#103" y="8.684"/><use xlink:href="#104" y="10.855"/><use xlink:href="#105" y="13.026"/><use xlink:href="#106" y="15.197"/><use xlink:href="#105" y="17.368"/><use xlink:href="#107" y="19.539"/><use xlink:href="#108" y="21.71"/><use xlink:href="#109" y="23.881"/><use xlink:href="#110" y="26.052"/><use xlink:href="#111" y="28.223"/><use xlink:href="#112" y="30.394"/><use xlink:href="#113" y="32.565"/><use xlink:href="#113" y="34.736"/><use xlink:href="#113" y="36.907"/><use xlink:href="#113" y="39.078"/><use xlink:href="#113" y="41.249"/><use xlink:href="#113" y="43.42"/><use xlink:href="#114" y="45.591"/><use xlink:href="#115" y="47.762"/><use xlink:href="#116" y="49.933"/><use xlink:href="#117" y="54.275"/><use xlink:href="#118" y="58.617"/><use xlink:href="#119" y="60.788"/><use xlink:href="#120" y="62.959"/><use xlink:href="#121" y="65.13"/><use xlink:href="#122" y="67.301"/><use xlink:href="#123" y="69.472"/><use xlink:href="#124" y="71.643"/><use xlink:href="#125" y="73.814"/><use xlink:href="#126" y="75.985"/><use xlink:href="#125" y="78.156"/><use xlink:href="#125" y="80.327"/><use xlink:href="#126" y="82.498"/><use xlink:href="#125" y="84.669"/><use xlink:href="#127" y="86.84"/><use xlink:href="#125" y="89.011"/><use xlink:href="#126" y="91.182"/><use xlink:href="#125" y="93.353"/><use xlink:href="#125" y="95.524"/><use xlink:href="#126" y="97.695"/><use xlink:href="#128" y="102.037"/></svg><svg x="46221"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#100"/><use xlink:href="#101" y="2.171"/><use xlink:href="#102" y="4.342"/><use xlink:href="#103" y="6.513"/><use xlink:href="#104" y="8.684"/><use xlink:href="#105" y="10.855"/><use xlink:href="#106" y="13.026"/><use xlink:href="#105" y="15.197"/><use xlink:href="#107" y="17.368"/><use xlink:href="#108" y="19.539"/><use xlink:href="#109" y="21.71"/><use xlink:href="#110" y="23.881"/><use xlink:href="#111" y="26.052"/><use xlink:href="#112" y="28.223"/><use xlink:href="#113" y="30.394"/><use xlink:href="#113" y="32.565"/><use xlink:href="#113" y="34.736"/><use xlink:href="#113" y="36.907"/><use xlink:href="#113" y="39.078"/><use xlink:href="#113" y="41.249"/><use xlink:href="#114" y="43.42"/><use xlink:href="#115" y="45.591"/><use xlink:href="#116" y="47.762"/><use xlink:href="#117" y="52.104"/><use xlink:href="#118" y="56.446"/><use xlink:href="#119" y="58.617"/><use xlink:href="#120" y="60.788"/><use xlink:href="#121" y="62.959"/><use xlink:href="#122" y="65.13"/><use xlink:href="#123" y="67.301"/><use xlink:href="#124" y="69.472"/><use xlink:href="#125" y="71.643"/><use xlink:href="#126" y="73.814"/><use xlink:href="#125" y="75.985"/><use xlink:href="#125" y="78.156"/><use xlink:href="#126" y="80.327"/><use xlink:href="#125" y="82.498"/><use xlink:href="#127" y="84.669"/><use xlink:href="#125" y="86.84"/><use xlink:href="#126" y="89.011"/><use xlink:href="#125" y="91.182"/><use xlink:href="#125" y="93.353"/><use xlink:href="#126" y="95.524"/><use xlink:href="#128" y="99.866"/><use xlink:href="#129" y="102.037"/></svg><svg x="46434"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#100"/><use xlink:href="#101" y="2.171"/><use xlink:href="#102" y="4.342"/><use xlink:href="#103" y="6.513"/><use xlink:href="#104" y="8.684"/><use xlink:href="#105" y="10.855"/><use xlink:href="#106" y="13.026"/><use xlink:href="#105" y="15.197"/><use xlink:href="#107" y="17.368"/><use xlink:href="#108" y="19.539"/><use xlink:href="#109" y="21.71"/><use xlink:href="#110" y="23.881"/><use xlink:href="#111" y="26.052"/><use xlink:href="#112" y="28.223"/><use xlink:href="#113" y="30.394"/><use xlink:href="#113" y="32.565"/><use xlink:href="#113" y="34.736"/><use xlink:href="#113" y="36.907"/><use xlink:href="#113" y="39.078"/><use xlink:href="#113" y="41.249"/><use xlink:href="#114" y="43.42"/><use xlink:href="#115" y="45.591"/><use xlink:href="#116" y="47.762"/><use xlink:href="#117" y="52.104"/><use xlink:href="#118" y="56.446"/><use xlink:href="#119" y="58.617"/><use xlink:href="#120" y="60.788"/><use xlink:href="#121" y="62.959"/><use xlink:href="#122" y="65.13"/><use xlink:href="#123" y="67.301"/><use xlink:href="#124" y="69.472"/><use xlink:href="#125" y="71.643"/><use xlink:href="#126" y="73.814"/><use xlink:href="#125" y="75.985"/><use xlink:href="#125" y="78.156"/><use xlink:href="#126" y="80.327"/><use xlink:href="#125" y="82.498"/><use xlink:href="#127" y="84.669"/><use xlink:href="#125" y="86.84"/><use xlink:href="#126" y="89.011"/><use xlink:href="#125" y="91.182"/><use xlink:href="#125" y="93.353"/><use xlink:href="#126" y="95.524"/><use xlink:href="#128" y="99.866"/><use xlink:href="#129" y="102.037"/></svg><svg x="46647"><use xlink:href="#a"/><use xlink:href="#b" x="10.996" y="104.183"/><use xlink:href="#100"/><use xlink:href="#101" y="2.171"/><use xlink:href="#102" y="4.342"/><use xlink:href="#103" y="6.513"/><use xlink:href="#104" y="8.684"/><use xlink:href="#105" y="10.855"/><use xlink:href="#106" y="13.026"/><use xlink:href="#105" y="15.197"/><use xlink:href="#107" y="17.368"/><use xlink:href="#108" y="19.539"/><use xlink:href="#109" y="21.71"/><use xlink:href="#110" y="23.881"/><use xlink:href="#111" y="26.052"/><use xlink:href="#112" y="28.223"/><use xlink:href="#113" y="30.394"/><use xlink:href="#113" y="32.565"/><use xlink:href="#113" y="34.736"/><use xlink:href="#113" y="36.907"/><use xlink:href="#113" y="39.078"/><use xlink:href="#113" y="41.249"/><use xlink:href="#114" y="43.42"/><use xlink:href="#115" y="45.591"/><use xlink:href="#116" y="47.762"/><use xlink:href="#117" y="52.104"/><use xlink:href="#118" y="56.446"/><use xlink:href="#119" y="58.617"/><use xlink:href="#120" y="60.788"/><use xlink:href="#121" y="62.959"/><use xlink:href="#122" y="65.13"/><use xlink:href="#123" y="67.301"/><use xlink:href="#124" y="69.472"/><use xlink:href="#125" y="71.643"/><use xlink:href="#126" y="73.814"/><use xlink:href="#125" y="75.985"/><use xlink:href="#125" y="78.156"/><use xlink:href="#126" y="80.327"/><use xlink:href="#125" y="82.498"/><use xlink:href="#127" y="84.669"/><use xlink:href="#125" y="86.84"/><use xlink:href="#126" y="89.011"/><use xlink:href="#125" y="91.182"/><use xlink:href="#125" y="93.353"/><use xlink:href="#126" y="95.524"/><use xlink:href="#128" y="99.866"/><use xlink:href="#129" y="102.037"/><use xlink:href="#1" y="104.208"/></svg><svg x="46860"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="104.183"/><use xlink:href="#101"/><use xlink:href="#102" y="2.171"/><use xlink:href="#103" y="4.342"/><use xlink:href="#104" y="6.513"/><use xlink:href="#105" y="8.684"/><use xlink:href="#106" y="10.855"/><use xlink:href="#105" y="13.026"/><use xlink:href="#107" y="15.197"/><use xlink:href="#108" y="17.368"/><use xlink:href="#109" y="19.539"/><use xlink:href="#110" y="21.71"/><use xlink:href="#111" y="23.881"/><use xlink:href="#112" y="26.052"/><use xlink:href="#113" y="28.223"/><use xlink:href="#113" y="30.394"/><use xlink:href="#113" y="32.565"/><use xlink:href="#113" y="34.736"/><use xlink:href="#113" y="36.907"/><use xlink:href="#113" y="39.078"/><use xlink:href="#114" y="41.249"/><use xlink:href="#115" y="43.42"/><use xlink:href="#116" y="45.591"/><use xlink:href="#117" y="49.933"/><use xlink:href="#118" y="54.275"/><use xlink:href="#119" y="56.446"/><use xlink:href="#120" y="58.617"/><use xlink:href="#121" y="60.788"/><use xlink:href="#122" y="62.959"/><use xlink:href="#123" y="65.13"/><use xlink:href="#124" y="67.301"/><use xlink:href="#125" y="69.472"/><use xlink:href="#126" y="71.643"/><use xlink:href="#125" y="73.814"/><use xlink:href="#125" y="75.985"/><use xlink:href="#126" y="78.156"/><use xlink:href="#125" y="80.327"/><use xlink:href="#127" y="82.498"/><use xlink:href="#125" y="84.669"/><use xlink:href="#126" y="86.84"/><use xlink:href="#125" y="89.011"/><use xlink:href="#125" y="91.182"/><use xlink:href="#126" y="93.353"/><use xlink:href="#128" y="97.695"/><use xlink:href="#129" y="99.866"/><text y="103.707" class="c">mssola:~</text><text x="9.018" y="103.707" class="c">$</text><text x="11.022" y="103.707" class="c">exit</text></svg></svg></g></g></svg></svg> \ No newline at end of file
diff --git a/include/fbos/image.h b/include/fbos/image.h
new file mode 100644
index 0000000..c217c36
--- /dev/null
+++ b/include/fbos/image.h
@@ -0,0 +1,23 @@
+#ifndef __FBOS_IMAGE_H
+#define __FBOS_IMAGE_H
+
+/*
+ * General definitions for building up an image that is suitable on real
+ * hardware that expect a Linux kernel header.
+ */
+
+// Deprecated image magic.
+#define RISCV_IMAGE_MAGIC "RISCV\0\0\0"
+
+// Image magic that the bootloader expects. It's placed at the same position as
+// ARM64, which is why the previous 'RISCV_IMAGE_MAGIC' has been deprecated in
+// favour of this one.
+#define RISCV_IMAGE_MAGIC2 "RSC\x05"
+
+// Image header version as defined by Linux in the format of
+// u32: MSB| u16: major | u16: minor |LSB
+#define RISCV_HEADER_VERSION_MAJOR 0
+#define RISCV_HEADER_VERSION_MINOR 2
+#define RISCV_HEADER_VERSION (RISCV_HEADER_VERSION_MAJOR << 16 | RISCV_HEADER_VERSION_MINOR)
+
+#endif /* __FBOS_IMAGE */
diff --git a/include/fbos/mm.h b/include/fbos/mm.h
index 25d18ce..e913fa7 100644
--- a/include/fbos/mm.h
+++ b/include/fbos/mm.h
@@ -17,7 +17,8 @@
* The code will be linked to start at the first page, which will have a given
* offset.
*/
+
#define PAGE_OFFSET 0x80200000
-#define LINK_ADDR PAGE_OFFSET
+#define LOAD_OFFSET PAGE_OFFSET
#endif /* __FBOS_MM_H */
diff --git a/kernel/fbos.ld.S b/kernel/fbos.ld.S
index f74d90f..160a5cb 100644
--- a/kernel/fbos.ld.S
+++ b/kernel/fbos.ld.S
@@ -1,8 +1,11 @@
#include <fbos/mm.h>
+OUTPUT_ARCH(riscv)
+ENTRY(_start)
+
SECTIONS {
// Ensure that the image starts at the very exact address SBI expects it to.
- . = LINK_ADDR;
+ . = LOAD_OFFSET;
_start = .;
. = ALIGN(PAGE_SIZE);
@@ -10,8 +13,9 @@ SECTIONS {
// instead of clumping it into the main `.text` one. Well, I'm no expert on
// linker configuration, so patches are welcome :)
.text : {
+ // head.S
+ KEEP(*(.head.text))
_text = .;
- *(.head.text)
// Aligning it to a full page is maybe a bit too much considering how
// small `.text.head` really is. I just saw this same thing on the Linux
@@ -19,7 +23,7 @@ SECTIONS {
. = ALIGN(PAGE_SIZE);
// From now on the rest of the `.text` could just be a continuation, but
- // I further split it into `.text.kernel` so the jump from head isn't
+ // I further split it into `.kernel.text` so the jump from head isn't
// that large. That is, we put first the very core of the kernel, and
// the rest can go wherever.
__kernel_text_start = .;
diff --git a/kernel/head.S b/kernel/head.S
index c8f523d..210eb7c 100644
--- a/kernel/head.S
+++ b/kernel/head.S
@@ -1,9 +1,61 @@
+#include <fbos/image.h>
#include <fbos/mm.h>
.global _start
+.global _start_kernel
.section .head.text
+// Since this kernel boots in virtualization environments and machines that are
+// expecting a Linux kernel, we have to adhere to how bootloaders expect Linux
+// kernel images to look like. In particular, the entry of the kernel is
+// actually a Boot image header, as defined in:
+//
+// https://docs.kernel.org/arch/riscv/boot-image-header.html
+//
+// Conveniently, for machines who don't care about this (e.g. QEMU), the first
+// 64 bits correspond to two instructions that can be set up, and hence entering
+// here will simply jumpt to `_start_kernel`, our real entry.
_start:
+ // The first two words give us room for two executable instructions. Linux
+ // uses that on EFI support to first allocate a magic value for UEFI and
+ // then have a `j _start_kernel` instruction. Otherwise it just allocates
+ // the first one for `j _start_kernel` and leaves the second word empty. The
+ // latter is what we do here as well.
+ j _start_kernel
+ .word 0
+
+ // Ensure alignment for the next double word.
+ .balign 8
+
+ // Load offset. Note that this matches the PAGE_OFFSET as defined in
+ // `include/mm.h`.
+ .dword 0x200000
+
+ // Size of the image. This is *mandatory* as per bootloader request.
+ .dword _end - _start
+
+ // Flags. As defined by Linux, only one bit matters here, which is related
+ // to endianness. Setting 0 means little-endian.
+ .dword 0
+
+ // Header version.
+ .word RISCV_HEADER_VERSION
+
+ // Reserved fields.
+ .word 0
+ .dword 0
+
+ // Deprecated image magic.
+ .ascii RISCV_IMAGE_MAGIC
+ .balign 4
+
+ // Good image magic, in little-endian format.
+ .ascii RISCV_IMAGE_MAGIC2
+
+ // Reserved field.
+ .word 0
+
+_start_kernel:
// Mask all interrupts
csrw sie, zero
csrw sip, zero