From: Yicong Yang yangyicong@hisilicon.com
Signed-off-by: Yicong Yang yangyicong@hisilicon.com --- .../Wayca-Kunpeng-高性能调度/README.md | 5 + .../WayCa-Kunpeng-高性能调度.md | 94 + .../Wayca-Kunpeng-高性能调度/topo.svg | 4658 +++++++++++++++++ 3 files changed, 4757 insertions(+) create mode 100644 WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/WayCa-Kunpeng-高性能调度.md create mode 100644 WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/topo.svg
diff --git a/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/README.md b/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/README.md index 9c3bbf0..86a670f 100644 --- a/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/README.md +++ b/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/README.md @@ -4,6 +4,11 @@
本文档提供了鲲鹏高性能调度CPU特性的介绍和基本使用,具体内容详见如下:
+### 拓扑及调度 + +- WayCa-Kunpeng-高性能调度.md +- https://gitee.com/openeuler/WayCa + ### CPU特性介绍
- Wayca-Kunpeng-高性能调度-CPU特性介绍.md diff --git a/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/WayCa-Kunpeng-高性能调度.md b/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/WayCa-Kunpeng-高性能调度.md new file mode 100644 index 0000000..e887f70 --- /dev/null +++ b/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/WayCa-Kunpeng-高性能调度.md @@ -0,0 +1,94 @@ + +# openEuler WayCa SIG 高性能调度Wayca Scheduler + +[toc] + +## 介绍及范围 + +Wayca Scheduler希望能够基于鲲鹏服务器的硬件拓扑结构,通过优化的调度方法充分利用CPU, +cache,内存,IO外设等组件,提升系统硬件的利用率,提升内存带宽,降低内存及Cache的访 +问延迟及外设访问延迟,从而使应用在鲲鹏服务器上达到较为优化的性能。 + +当前Wayca Scheduler仅考虑运行Linux系统的鲲鹏服务器。主要考虑在Linux内核和用户态两 +个方面进行优化和支持的完善。 + +主线Linux内核对于鲲鹏服务器的拓扑支持待完善,相关的算法比如CFS调度算法对于鲲鹏拓扑 +不感知,从而导致用户不能通过系统获取完整完善的拓扑结构,并且不能充分利用硬件的拓扑 +特性从而使状态达到最优化。当前我们在持续推动内核在以下方面进行支持和完善。 + +- 完善Linux内核对于鲲鹏拓扑的支持和导出 +- 优化Linux CFS算法实现,能够感知考虑鲲鹏的拓扑结构 +- 其他部分的优化探索 + +同时考虑到Linux调度算法(及其他算法)面对的是普适场景,可能无法满足用户场景的多样 +性和满足特定应用对资源的特定需求;对于系统资源考虑到的粒度太粗,不能考虑到详细的拓 +扑层级,可能不能基于业务特点根据业务的内存,充分考虑中断,IO,外设等资源进行调度; +不能考虑到时延、带宽等对于软件部署的影响。因此,Wayca Scheduler基于鲲鹏服务器考虑 +在用户态进行以下支持和探索: + +- 支持用户态工具对于鲲鹏拓扑的感知和导出 +- 探索用户态调度(eBPF,UMCG等)在鲲鹏上的应用 + +## 拓扑介绍 + +![鲲鹏920拓扑示例](WayCa-Kunpeng-底软/WayCa-Kunpeng-高性能调度/topo.svg) + +一台典型的2x64C鲲鹏服务器拓扑如图所示([数据源](https://github.com/open-mpi/hwloc/blob/v2.9/tests/hwloc/linux/128arm-2pa2n8c... +单片处理器由2个DIE组成,每个DIE为独立的NUMA节点,共享L3 Cache;L3 Cache由L3 Tag +(标签缓存及一致性维护)和L3 Data(数据缓存)组成,共享L3Tag的CPU组成一个Cluster。 + +外设位于每片的第一个NUMA上。 + +## 内核态 + +### Cluster拓扑的解析和导出 + +ACPI协议已经支持对Cluster拓扑的描述。需要内核arch topology驱动支持对于该信息的解析 +并通过sysfs文件系统导出该拓扑信息。 + +当前主线已经支持该[特性](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?i... OLK-5.10已合入该 +特性: + +|commit id|Subject| +|---------|-------| +|c84cd40a40dc|topology: Represent clusters of CPUs within a die| + +### Cluster调度域的建立及CFS负载均衡对于Cluster的支持 + +支持CFS调度器感知识别cluster拓扑,能够建立cluster调度域。负载均衡算法在鲲鹏服务器 +上能够在cluster间对任务进行均衡。 + +由于Cluster内的CPU共享L3T的带宽,当任务聚集在Cluster内时可能导致任务的L3 Cache访问 +带宽受限;通过对任务在Cluster间进行均衡,能够提升任务可以获取的L3带宽上限。 + +当前主线已经支持该[特性](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?i... OLK-5.10已合入该 +特性: + +|commit id|Subject| +|---------|-------| +|ac032ae3d889|sched: Add cluster scheduler level in core and related Kconfig for ARM64| + +### CFS任务唤醒算法对于Cluster的支持 + +当前该[特性](https://lore.kernel.org/lkml/20220822073610.27205-1-yangyicong@huawei.com/)%... + +### NUMA调度对于鲲鹏3-Hop拓扑的支持 + +完善CFS对于鲲鹏NUMA拓扑的支持,正确建立NUMA调度域及调度组。 + +当前主线已经支持该[特性](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?i... OLK-5.10分支已合入 +该特性: + +|commit id|Subject| +|---------|-------| +|0bba059c590d|sched/topology: fix the issue groups don't span domain->span for NUMA diameter > 2"| + +## 用户态工具 + +### hwloc支持 + +Hwloc是Open MPI的子项目之一,主要针对HPC场景,提供一套基于C API的动态库和一组命令 +行工具用于提供硬件的外设,互联及其他拓扑信息。 + +Hwloc原生支持大部分的鲲鹏拓扑解析。对于Cluster的拓扑[支持](https://github.com/open-mpi/hwloc/pull/495) +在2.7.0版本中合入。 diff --git a/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/topo.svg b/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/topo.svg new file mode 100644 index 0000000..83b8ef8 --- /dev/null +++ b/WayCa-Kunpeng-底软/Wayca-Kunpeng-高性能调度/topo.svg @@ -0,0 +1,4658 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1798pt" height="1392pt" viewBox="0 0 1798 1392" version="1.1"> +<defs> +<g> +<symbol overflow="visible" id="glyph0-0"> +<path style="stroke:none;" d="M 0.5 1.765625 L 0.5 -7.046875 L 5.5 -7.046875 L 5.5 1.765625 Z M 1.0625 1.21875 L 4.9375 1.21875 L 4.9375 -6.484375 L 1.0625 -6.484375 Z M 1.0625 1.21875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-1"> +<path style="stroke:none;" d="M 0.984375 -7.296875 L 2.453125 -7.296875 L 4.3125 -2.328125 L 6.1875 -7.296875 L 7.65625 -7.296875 L 7.65625 0 L 6.6875 0 L 6.6875 -6.40625 L 4.8125 -1.40625 L 3.8125 -1.40625 L 1.9375 -6.40625 L 1.9375 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-2"> +<path style="stroke:none;" d="M 3.421875 -2.75 C 2.703125 -2.75 2.203125 -2.664062 1.921875 -2.5 C 1.640625 -2.332031 1.5 -2.050781 1.5 -1.65625 C 1.5 -1.332031 1.601562 -1.078125 1.8125 -0.890625 C 2.019531 -0.703125 2.304688 -0.609375 2.671875 -0.609375 C 3.171875 -0.609375 3.570312 -0.785156 3.875 -1.140625 C 4.175781 -1.492188 4.328125 -1.960938 4.328125 -2.546875 L 4.328125 -2.75 Z M 5.21875 -3.125 L 5.21875 0 L 4.328125 0 L 4.328125 -0.828125 C 4.117188 -0.492188 3.859375 -0.25 3.546875 -0.09375 C 3.242188 0.0585938 2.875 0.140625 2.4375 0.140625 C 1.875 0.140625 1.425781 -0.015625 1.09375 -0.328125 C 0.757812 -0.640625 0.59375 -1.0625 0.59375 -1.59375 C 0.59375 -2.207031 0.800781 -2.671875 1.21875 -2.984375 C 1.632812 -3.296875 2.25 -3.453125 3.0625 -3.453125 L 4.328125 -3.453125 L 4.328125 -3.546875 C 4.328125 -3.953125 4.1875 -4.269531 3.90625 -4.5 C 3.632812 -4.726562 3.253906 -4.84375 2.765625 -4.84375 C 2.453125 -4.84375 2.144531 -4.800781 1.84375 -4.71875 C 1.550781 -4.644531 1.269531 -4.535156 1 -4.390625 L 1 -5.21875 C 1.332031 -5.34375 1.648438 -5.4375 1.953125 -5.5 C 2.265625 -5.5625 2.566406 -5.59375 2.859375 -5.59375 C 3.648438 -5.59375 4.238281 -5.390625 4.625 -4.984375 C 5.019531 -4.578125 5.21875 -3.957031 5.21875 -3.125 Z M 5.21875 -3.125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-3"> +<path style="stroke:none;" d="M 4.875 -5.265625 L 4.875 -4.421875 C 4.625 -4.554688 4.367188 -4.660156 4.109375 -4.734375 C 3.859375 -4.804688 3.601562 -4.84375 3.34375 -4.84375 C 2.757812 -4.84375 2.304688 -4.65625 1.984375 -4.28125 C 1.660156 -3.914062 1.5 -3.398438 1.5 -2.734375 C 1.5 -2.066406 1.660156 -1.546875 1.984375 -1.171875 C 2.304688 -0.804688 2.757812 -0.625 3.34375 -0.625 C 3.601562 -0.625 3.859375 -0.65625 4.109375 -0.71875 C 4.367188 -0.789062 4.625 -0.898438 4.875 -1.046875 L 4.875 -0.203125 C 4.625 -0.0859375 4.363281 -0.00390625 4.09375 0.046875 C 3.832031 0.109375 3.550781 0.140625 3.25 0.140625 C 2.414062 0.140625 1.753906 -0.113281 1.265625 -0.625 C 0.785156 -1.144531 0.546875 -1.847656 0.546875 -2.734375 C 0.546875 -3.617188 0.789062 -4.316406 1.28125 -4.828125 C 1.769531 -5.335938 2.441406 -5.59375 3.296875 -5.59375 C 3.578125 -5.59375 3.847656 -5.566406 4.109375 -5.515625 C 4.367188 -5.460938 4.625 -5.378906 4.875 -5.265625 Z M 4.875 -5.265625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-4"> +<path style="stroke:none;" d="M 5.484375 -3.296875 L 5.484375 0 L 4.59375 0 L 4.59375 -3.265625 C 4.59375 -3.785156 4.488281 -4.171875 4.28125 -4.421875 C 4.082031 -4.679688 3.78125 -4.8125 3.375 -4.8125 C 2.894531 -4.8125 2.515625 -4.65625 2.234375 -4.34375 C 1.953125 -4.039062 1.8125 -3.625 1.8125 -3.09375 L 1.8125 0 L 0.90625 0 L 0.90625 -7.59375 L 1.8125 -7.59375 L 1.8125 -4.625 C 2.03125 -4.945312 2.285156 -5.1875 2.578125 -5.34375 C 2.867188 -5.507812 3.203125 -5.59375 3.578125 -5.59375 C 4.203125 -5.59375 4.675781 -5.398438 5 -5.015625 C 5.320312 -4.628906 5.484375 -4.054688 5.484375 -3.296875 Z M 5.484375 -3.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-5"> +<path style="stroke:none;" d="M 0.9375 -5.46875 L 1.84375 -5.46875 L 1.84375 0 L 0.9375 0 Z M 0.9375 -7.59375 L 1.84375 -7.59375 L 1.84375 -6.453125 L 0.9375 -6.453125 Z M 0.9375 -7.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-6"> +<path style="stroke:none;" d="M 5.484375 -3.296875 L 5.484375 0 L 4.59375 0 L 4.59375 -3.265625 C 4.59375 -3.785156 4.488281 -4.171875 4.28125 -4.421875 C 4.082031 -4.679688 3.78125 -4.8125 3.375 -4.8125 C 2.894531 -4.8125 2.515625 -4.65625 2.234375 -4.34375 C 1.953125 -4.039062 1.8125 -3.625 1.8125 -3.09375 L 1.8125 0 L 0.90625 0 L 0.90625 -5.46875 L 1.8125 -5.46875 L 1.8125 -4.625 C 2.03125 -4.945312 2.285156 -5.1875 2.578125 -5.34375 C 2.867188 -5.507812 3.203125 -5.59375 3.578125 -5.59375 C 4.203125 -5.59375 4.675781 -5.398438 5 -5.015625 C 5.320312 -4.628906 5.484375 -4.054688 5.484375 -3.296875 Z M 5.484375 -3.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-7"> +<path style="stroke:none;" d="M 5.625 -2.953125 L 5.625 -2.515625 L 1.484375 -2.515625 C 1.523438 -1.898438 1.710938 -1.429688 2.046875 -1.109375 C 2.378906 -0.785156 2.84375 -0.625 3.4375 -0.625 C 3.78125 -0.625 4.113281 -0.664062 4.4375 -0.75 C 4.769531 -0.832031 5.09375 -0.957031 5.40625 -1.125 L 5.40625 -0.28125 C 5.082031 -0.144531 4.75 -0.0390625 4.40625 0.03125 C 4.070312 0.101562 3.734375 0.140625 3.390625 0.140625 C 2.515625 0.140625 1.820312 -0.109375 1.3125 -0.609375 C 0.800781 -1.117188 0.546875 -1.8125 0.546875 -2.6875 C 0.546875 -3.582031 0.785156 -4.289062 1.265625 -4.8125 C 1.753906 -5.332031 2.410156 -5.59375 3.234375 -5.59375 C 3.972656 -5.59375 4.554688 -5.359375 4.984375 -4.890625 C 5.410156 -4.421875 5.625 -3.773438 5.625 -2.953125 Z M 4.71875 -3.21875 C 4.71875 -3.707031 4.582031 -4.097656 4.3125 -4.390625 C 4.039062 -4.691406 3.6875 -4.84375 3.25 -4.84375 C 2.738281 -4.84375 2.332031 -4.695312 2.03125 -4.40625 C 1.738281 -4.125 1.566406 -3.726562 1.515625 -3.21875 Z M 4.71875 -3.21875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-8"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph0-9"> +<path style="stroke:none;" d="M 3.09375 -7.59375 C 2.664062 -6.84375 2.34375 -6.097656 2.125 -5.359375 C 1.914062 -4.628906 1.8125 -3.890625 1.8125 -3.140625 C 1.8125 -2.390625 1.914062 -1.644531 2.125 -0.90625 C 2.34375 -0.164062 2.664062 0.570312 3.09375 1.3125 L 2.3125 1.3125 C 1.832031 0.550781 1.46875 -0.195312 1.21875 -0.9375 C 0.976562 -1.675781 0.859375 -2.410156 0.859375 -3.140625 C 0.859375 -3.867188 0.976562 -4.597656 1.21875 -5.328125 C 1.457031 -6.066406 1.820312 -6.820312 2.3125 -7.59375 Z M 3.09375 -7.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-10"> +<path style="stroke:none;" d="M 1.078125 -7.296875 L 4.953125 -7.296875 L 4.953125 -6.453125 L 1.984375 -6.453125 L 1.984375 -4.671875 C 2.128906 -4.722656 2.269531 -4.757812 2.40625 -4.78125 C 2.550781 -4.800781 2.695312 -4.8125 2.84375 -4.8125 C 3.65625 -4.8125 4.296875 -4.585938 4.765625 -4.140625 C 5.242188 -3.703125 5.484375 -3.101562 5.484375 -2.34375 C 5.484375 -1.550781 5.238281 -0.9375 4.75 -0.5 C 4.269531 -0.0703125 3.582031 0.140625 2.6875 0.140625 C 2.382812 0.140625 2.070312 0.113281 1.75 0.0625 C 1.4375 0.0078125 1.109375 -0.0664062 0.765625 -0.171875 L 0.765625 -1.15625 C 1.066406 -1 1.375 -0.878906 1.6875 -0.796875 C 2 -0.722656 2.328125 -0.6875 2.671875 -0.6875 C 3.234375 -0.6875 3.675781 -0.832031 4 -1.125 C 4.332031 -1.425781 4.5 -1.832031 4.5 -2.34375 C 4.5 -2.84375 4.332031 -3.238281 4 -3.53125 C 3.675781 -3.832031 3.234375 -3.984375 2.671875 -3.984375 C 2.410156 -3.984375 2.144531 -3.953125 1.875 -3.890625 C 1.613281 -3.835938 1.347656 -3.75 1.078125 -3.625 Z M 1.078125 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-11"> +<path style="stroke:none;" d="M 3.171875 -6.640625 C 2.671875 -6.640625 2.289062 -6.390625 2.03125 -5.890625 C 1.78125 -5.390625 1.65625 -4.640625 1.65625 -3.640625 C 1.65625 -2.640625 1.78125 -1.890625 2.03125 -1.390625 C 2.289062 -0.890625 2.671875 -0.640625 3.171875 -0.640625 C 3.691406 -0.640625 4.078125 -0.890625 4.328125 -1.390625 C 4.585938 -1.890625 4.71875 -2.640625 4.71875 -3.640625 C 4.71875 -4.640625 4.585938 -5.390625 4.328125 -5.890625 C 4.078125 -6.390625 3.691406 -6.640625 3.171875 -6.640625 Z M 3.171875 -7.421875 C 3.992188 -7.421875 4.617188 -7.097656 5.046875 -6.453125 C 5.484375 -5.804688 5.703125 -4.867188 5.703125 -3.640625 C 5.703125 -2.410156 5.484375 -1.472656 5.046875 -0.828125 C 4.617188 -0.179688 3.992188 0.140625 3.171875 0.140625 C 2.359375 0.140625 1.734375 -0.179688 1.296875 -0.828125 C 0.867188 -1.472656 0.65625 -2.410156 0.65625 -3.640625 C 0.65625 -4.867188 0.867188 -5.804688 1.296875 -6.453125 C 1.734375 -7.097656 2.359375 -7.421875 3.171875 -7.421875 Z M 3.171875 -7.421875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-12"> +<path style="stroke:none;" d="M 1.234375 -0.828125 L 2.859375 -0.828125 L 2.859375 -6.390625 L 1.09375 -6.046875 L 1.09375 -6.9375 L 2.84375 -7.296875 L 3.828125 -7.296875 L 3.828125 -0.828125 L 5.4375 -0.828125 L 5.4375 0 L 1.234375 0 Z M 1.234375 -0.828125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-13"> +<path style="stroke:none;" d="M 5.953125 -1.046875 L 5.953125 -3 L 4.34375 -3 L 4.34375 -3.8125 L 6.921875 -3.8125 L 6.921875 -0.671875 C 6.546875 -0.410156 6.128906 -0.207031 5.671875 -0.0625 C 5.210938 0.0703125 4.722656 0.140625 4.203125 0.140625 C 3.054688 0.140625 2.160156 -0.191406 1.515625 -0.859375 C 0.878906 -1.523438 0.5625 -2.453125 0.5625 -3.640625 C 0.5625 -4.828125 0.878906 -5.753906 1.515625 -6.421875 C 2.160156 -7.085938 3.054688 -7.421875 4.203125 -7.421875 C 4.671875 -7.421875 5.117188 -7.363281 5.546875 -7.25 C 5.984375 -7.132812 6.378906 -6.960938 6.734375 -6.734375 L 6.734375 -5.671875 C 6.367188 -5.984375 5.984375 -6.21875 5.578125 -6.375 C 5.171875 -6.53125 4.738281 -6.609375 4.28125 -6.609375 C 3.382812 -6.609375 2.710938 -6.359375 2.265625 -5.859375 C 1.828125 -5.367188 1.609375 -4.628906 1.609375 -3.640625 C 1.609375 -2.648438 1.828125 -1.90625 2.265625 -1.40625 C 2.710938 -0.914062 3.382812 -0.671875 4.28125 -0.671875 C 4.632812 -0.671875 4.945312 -0.695312 5.21875 -0.75 C 5.488281 -0.8125 5.734375 -0.910156 5.953125 -1.046875 Z M 5.953125 -1.046875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-14"> +<path style="stroke:none;" d="M 1.96875 -3.484375 L 1.96875 -0.8125 L 3.546875 -0.8125 C 4.078125 -0.8125 4.46875 -0.921875 4.71875 -1.140625 C 4.976562 -1.359375 5.109375 -1.695312 5.109375 -2.15625 C 5.109375 -2.601562 4.976562 -2.9375 4.71875 -3.15625 C 4.46875 -3.375 4.078125 -3.484375 3.546875 -3.484375 Z M 1.96875 -6.484375 L 1.96875 -4.28125 L 3.421875 -4.28125 C 3.910156 -4.28125 4.269531 -4.367188 4.5 -4.546875 C 4.738281 -4.734375 4.859375 -5.007812 4.859375 -5.375 C 4.859375 -5.75 4.738281 -6.023438 4.5 -6.203125 C 4.269531 -6.390625 3.910156 -6.484375 3.421875 -6.484375 Z M 0.984375 -7.296875 L 3.5 -7.296875 C 4.25 -7.296875 4.828125 -7.140625 5.234375 -6.828125 C 5.640625 -6.515625 5.84375 -6.066406 5.84375 -5.484375 C 5.84375 -5.035156 5.738281 -4.679688 5.53125 -4.421875 C 5.320312 -4.160156 5.019531 -4 4.625 -3.9375 C 5.101562 -3.832031 5.476562 -3.613281 5.75 -3.28125 C 6.019531 -2.945312 6.15625 -2.535156 6.15625 -2.046875 C 6.15625 -1.390625 5.929688 -0.882812 5.484375 -0.53125 C 5.046875 -0.175781 4.414062 0 3.59375 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-15"> +<path style="stroke:none;" d="M 1.828125 -7.015625 L 1.828125 -5.46875 L 3.6875 -5.46875 L 3.6875 -4.765625 L 1.828125 -4.765625 L 1.828125 -1.796875 C 1.828125 -1.359375 1.890625 -1.070312 2.015625 -0.9375 C 2.140625 -0.8125 2.390625 -0.75 2.765625 -0.75 L 3.6875 -0.75 L 3.6875 0 L 2.765625 0 C 2.066406 0 1.582031 -0.128906 1.3125 -0.390625 C 1.050781 -0.648438 0.921875 -1.117188 0.921875 -1.796875 L 0.921875 -4.765625 L 0.265625 -4.765625 L 0.265625 -5.46875 L 0.921875 -5.46875 L 0.921875 -7.015625 Z M 1.828125 -7.015625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-16"> +<path style="stroke:none;" d="M 3.0625 -4.84375 C 2.582031 -4.84375 2.203125 -4.65625 1.921875 -4.28125 C 1.640625 -3.90625 1.5 -3.390625 1.5 -2.734375 C 1.5 -2.078125 1.632812 -1.5625 1.90625 -1.1875 C 2.1875 -0.8125 2.570312 -0.625 3.0625 -0.625 C 3.539062 -0.625 3.921875 -0.8125 4.203125 -1.1875 C 4.484375 -1.5625 4.625 -2.078125 4.625 -2.734375 C 4.625 -3.378906 4.484375 -3.890625 4.203125 -4.265625 C 3.921875 -4.648438 3.539062 -4.84375 3.0625 -4.84375 Z M 3.0625 -5.59375 C 3.84375 -5.59375 4.457031 -5.335938 4.90625 -4.828125 C 5.351562 -4.328125 5.578125 -3.628906 5.578125 -2.734375 C 5.578125 -1.835938 5.351562 -1.132812 4.90625 -0.625 C 4.457031 -0.113281 3.84375 0.140625 3.0625 0.140625 C 2.28125 0.140625 1.664062 -0.113281 1.21875 -0.625 C 0.769531 -1.132812 0.546875 -1.835938 0.546875 -2.734375 C 0.546875 -3.628906 0.769531 -4.328125 1.21875 -4.828125 C 1.664062 -5.335938 2.28125 -5.59375 3.0625 -5.59375 Z M 3.0625 -5.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-17"> +<path style="stroke:none;" d="M 0.9375 -7.59375 L 1.84375 -7.59375 L 1.84375 0 L 0.9375 0 Z M 0.9375 -7.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-18"> +<path style="stroke:none;" d="M 0.796875 -7.59375 L 1.578125 -7.59375 C 2.066406 -6.820312 2.429688 -6.066406 2.671875 -5.328125 C 2.921875 -4.597656 3.046875 -3.867188 3.046875 -3.140625 C 3.046875 -2.410156 2.921875 -1.675781 2.671875 -0.9375 C 2.429688 -0.195312 2.066406 0.550781 1.578125 1.3125 L 0.796875 1.3125 C 1.234375 0.570312 1.554688 -0.164062 1.765625 -0.90625 C 1.984375 -1.644531 2.09375 -2.390625 2.09375 -3.140625 C 2.09375 -3.890625 1.984375 -4.628906 1.765625 -5.359375 C 1.554688 -6.097656 1.234375 -6.84375 0.796875 -7.59375 Z M 0.796875 -7.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-19"> +<path style="stroke:none;" d="M 1.96875 -6.484375 L 1.96875 -3.734375 L 3.203125 -3.734375 C 3.660156 -3.734375 4.015625 -3.851562 4.265625 -4.09375 C 4.523438 -4.332031 4.65625 -4.671875 4.65625 -5.109375 C 4.65625 -5.546875 4.523438 -5.882812 4.265625 -6.125 C 4.015625 -6.363281 3.660156 -6.484375 3.203125 -6.484375 Z M 0.984375 -7.296875 L 3.203125 -7.296875 C 4.023438 -7.296875 4.644531 -7.109375 5.0625 -6.734375 C 5.476562 -6.367188 5.6875 -5.828125 5.6875 -5.109375 C 5.6875 -4.390625 5.476562 -3.847656 5.0625 -3.484375 C 4.644531 -3.117188 4.023438 -2.9375 3.203125 -2.9375 L 1.96875 -2.9375 L 1.96875 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-20"> +<path style="stroke:none;" d="M 0.90625 -7.59375 L 1.8125 -7.59375 L 1.8125 -3.109375 L 4.5 -5.46875 L 5.640625 -5.46875 L 2.734375 -2.90625 L 5.765625 0 L 4.59375 0 L 1.8125 -2.671875 L 1.8125 0 L 0.90625 0 Z M 0.90625 -7.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-21"> +<path style="stroke:none;" d="M 4.546875 -2.796875 C 4.546875 -3.453125 4.410156 -3.957031 4.140625 -4.3125 C 3.867188 -4.664062 3.492188 -4.84375 3.015625 -4.84375 C 2.523438 -4.84375 2.144531 -4.664062 1.875 -4.3125 C 1.613281 -3.957031 1.484375 -3.453125 1.484375 -2.796875 C 1.484375 -2.148438 1.613281 -1.644531 1.875 -1.28125 C 2.144531 -0.925781 2.523438 -0.75 3.015625 -0.75 C 3.492188 -0.75 3.867188 -0.925781 4.140625 -1.28125 C 4.410156 -1.644531 4.546875 -2.148438 4.546875 -2.796875 Z M 5.4375 -0.671875 C 5.4375 0.253906 5.226562 0.941406 4.8125 1.390625 C 4.40625 1.847656 3.773438 2.078125 2.921875 2.078125 C 2.609375 2.078125 2.3125 2.050781 2.03125 2 C 1.75 1.957031 1.476562 1.890625 1.21875 1.796875 L 1.21875 0.921875 C 1.476562 1.066406 1.734375 1.171875 1.984375 1.234375 C 2.242188 1.304688 2.507812 1.34375 2.78125 1.34375 C 3.363281 1.34375 3.800781 1.1875 4.09375 0.875 C 4.394531 0.570312 4.546875 0.105469 4.546875 -0.515625 L 4.546875 -0.96875 C 4.359375 -0.644531 4.117188 -0.398438 3.828125 -0.234375 C 3.535156 -0.078125 3.1875 0 2.78125 0 C 2.113281 0 1.570312 -0.253906 1.15625 -0.765625 C 0.75 -1.273438 0.546875 -1.953125 0.546875 -2.796875 C 0.546875 -3.640625 0.75 -4.316406 1.15625 -4.828125 C 1.570312 -5.335938 2.113281 -5.59375 2.78125 -5.59375 C 3.1875 -5.59375 3.535156 -5.515625 3.828125 -5.359375 C 4.117188 -5.203125 4.359375 -4.960938 4.546875 -4.640625 L 4.546875 -5.46875 L 5.4375 -5.46875 Z M 5.4375 -0.671875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-22"> +<path style="stroke:none;" d="M 0.984375 -7.296875 L 1.96875 -7.296875 L 1.96875 -0.828125 L 5.515625 -0.828125 L 5.515625 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-23"> +<path style="stroke:none;" d="M 5.109375 -4.40625 L 3.6875 -4.40625 L 3.28125 -2.765625 L 4.71875 -2.765625 Z M 4.375 -7.171875 L 3.875 -5.15625 L 5.296875 -5.15625 L 5.8125 -7.171875 L 6.59375 -7.171875 L 6.09375 -5.15625 L 7.609375 -5.15625 L 7.609375 -4.40625 L 5.90625 -4.40625 L 5.5 -2.765625 L 7.046875 -2.765625 L 7.046875 -2.015625 L 5.3125 -2.015625 L 4.796875 0 L 4.015625 0 L 4.515625 -2.015625 L 3.09375 -2.015625 L 2.59375 0 L 1.796875 0 L 2.3125 -2.015625 L 0.765625 -2.015625 L 0.765625 -2.765625 L 2.484375 -2.765625 L 2.90625 -4.40625 L 1.328125 -4.40625 L 1.328125 -5.15625 L 3.09375 -5.15625 L 3.59375 -7.171875 Z M 4.375 -7.171875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-24"> +<path style="stroke:none;" d="M 4.0625 -3.9375 C 4.53125 -3.832031 4.894531 -3.617188 5.15625 -3.296875 C 5.425781 -2.984375 5.5625 -2.59375 5.5625 -2.125 C 5.5625 -1.40625 5.3125 -0.847656 4.8125 -0.453125 C 4.320312 -0.0546875 3.617188 0.140625 2.703125 0.140625 C 2.398438 0.140625 2.085938 0.109375 1.765625 0.046875 C 1.441406 -0.0117188 1.109375 -0.101562 0.765625 -0.21875 L 0.765625 -1.171875 C 1.035156 -1.015625 1.332031 -0.894531 1.65625 -0.8125 C 1.988281 -0.726562 2.332031 -0.6875 2.6875 -0.6875 C 3.300781 -0.6875 3.769531 -0.804688 4.09375 -1.046875 C 4.414062 -1.296875 4.578125 -1.65625 4.578125 -2.125 C 4.578125 -2.550781 4.425781 -2.882812 4.125 -3.125 C 3.820312 -3.363281 3.40625 -3.484375 2.875 -3.484375 L 2.015625 -3.484375 L 2.015625 -4.296875 L 2.90625 -4.296875 C 3.394531 -4.296875 3.765625 -4.394531 4.015625 -4.59375 C 4.273438 -4.789062 4.40625 -5.070312 4.40625 -5.4375 C 4.40625 -5.800781 4.269531 -6.082031 4 -6.28125 C 3.738281 -6.488281 3.363281 -6.59375 2.875 -6.59375 C 2.601562 -6.59375 2.3125 -6.5625 2 -6.5 C 1.6875 -6.445312 1.347656 -6.359375 0.984375 -6.234375 L 0.984375 -7.109375 C 1.359375 -7.210938 1.707031 -7.289062 2.03125 -7.34375 C 2.363281 -7.394531 2.671875 -7.421875 2.953125 -7.421875 C 3.703125 -7.421875 4.296875 -7.25 4.734375 -6.90625 C 5.171875 -6.570312 5.390625 -6.113281 5.390625 -5.53125 C 5.390625 -5.125 5.273438 -4.78125 5.046875 -4.5 C 4.816406 -4.226562 4.488281 -4.039062 4.0625 -3.9375 Z M 4.0625 -3.9375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-25"> +<path style="stroke:none;" d="M 1.921875 -0.828125 L 5.359375 -0.828125 L 5.359375 0 L 0.734375 0 L 0.734375 -0.828125 C 1.109375 -1.210938 1.617188 -1.734375 2.265625 -2.390625 C 2.910156 -3.046875 3.316406 -3.46875 3.484375 -3.65625 C 3.796875 -4.007812 4.015625 -4.304688 4.140625 -4.546875 C 4.265625 -4.796875 4.328125 -5.039062 4.328125 -5.28125 C 4.328125 -5.664062 4.191406 -5.976562 3.921875 -6.21875 C 3.648438 -6.46875 3.296875 -6.59375 2.859375 -6.59375 C 2.546875 -6.59375 2.21875 -6.535156 1.875 -6.421875 C 1.539062 -6.316406 1.175781 -6.15625 0.78125 -5.9375 L 0.78125 -6.9375 C 1.175781 -7.09375 1.546875 -7.210938 1.890625 -7.296875 C 2.234375 -7.378906 2.550781 -7.421875 2.84375 -7.421875 C 3.59375 -7.421875 4.191406 -7.234375 4.640625 -6.859375 C 5.097656 -6.484375 5.328125 -5.976562 5.328125 -5.34375 C 5.328125 -5.039062 5.269531 -4.753906 5.15625 -4.484375 C 5.039062 -4.222656 4.835938 -3.910156 4.546875 -3.546875 C 4.460938 -3.453125 4.203125 -3.175781 3.765625 -2.71875 C 3.328125 -2.269531 2.710938 -1.640625 1.921875 -0.828125 Z M 1.921875 -0.828125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-26"> +<path style="stroke:none;" d="M 6.4375 -6.734375 L 6.4375 -5.6875 C 6.101562 -6 5.75 -6.226562 5.375 -6.375 C 5 -6.53125 4.601562 -6.609375 4.1875 -6.609375 C 3.351562 -6.609375 2.710938 -6.351562 2.265625 -5.84375 C 1.828125 -5.332031 1.609375 -4.597656 1.609375 -3.640625 C 1.609375 -2.679688 1.828125 -1.945312 2.265625 -1.4375 C 2.710938 -0.925781 3.351562 -0.671875 4.1875 -0.671875 C 4.601562 -0.671875 5 -0.742188 5.375 -0.890625 C 5.75 -1.046875 6.101562 -1.28125 6.4375 -1.59375 L 6.4375 -0.5625 C 6.09375 -0.320312 5.726562 -0.144531 5.34375 -0.03125 C 4.957031 0.0820312 4.550781 0.140625 4.125 0.140625 C 3.019531 0.140625 2.148438 -0.195312 1.515625 -0.875 C 0.878906 -1.550781 0.5625 -2.472656 0.5625 -3.640625 C 0.5625 -4.804688 0.878906 -5.726562 1.515625 -6.40625 C 2.148438 -7.082031 3.019531 -7.421875 4.125 -7.421875 C 4.5625 -7.421875 4.972656 -7.363281 5.359375 -7.25 C 5.742188 -7.132812 6.101562 -6.960938 6.4375 -6.734375 Z M 6.4375 -6.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-27"> +<path style="stroke:none;" d="M 0.84375 -2.15625 L 0.84375 -5.46875 L 1.75 -5.46875 L 1.75 -2.1875 C 1.75 -1.675781 1.847656 -1.289062 2.046875 -1.03125 C 2.253906 -0.769531 2.554688 -0.640625 2.953125 -0.640625 C 3.441406 -0.640625 3.828125 -0.789062 4.109375 -1.09375 C 4.390625 -1.40625 4.53125 -1.832031 4.53125 -2.375 L 4.53125 -5.46875 L 5.4375 -5.46875 L 5.4375 0 L 4.53125 0 L 4.53125 -0.84375 C 4.3125 -0.507812 4.054688 -0.257812 3.765625 -0.09375 C 3.484375 0.0585938 3.148438 0.140625 2.765625 0.140625 C 2.140625 0.140625 1.660156 -0.0507812 1.328125 -0.4375 C 1.003906 -0.832031 0.84375 -1.40625 0.84375 -2.15625 Z M 3.109375 -5.59375 Z M 3.109375 -5.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-28"> +<path style="stroke:none;" d="M 4.421875 -5.3125 L 4.421875 -4.453125 C 4.171875 -4.585938 3.910156 -4.6875 3.640625 -4.75 C 3.367188 -4.8125 3.082031 -4.84375 2.78125 -4.84375 C 2.34375 -4.84375 2.007812 -4.773438 1.78125 -4.640625 C 1.5625 -4.503906 1.453125 -4.300781 1.453125 -4.03125 C 1.453125 -3.820312 1.53125 -3.65625 1.6875 -3.53125 C 1.84375 -3.414062 2.164062 -3.304688 2.65625 -3.203125 L 2.953125 -3.125 C 3.597656 -2.988281 4.050781 -2.796875 4.3125 -2.546875 C 4.582031 -2.296875 4.71875 -1.953125 4.71875 -1.515625 C 4.71875 -1.003906 4.515625 -0.597656 4.109375 -0.296875 C 3.710938 -0.00390625 3.164062 0.140625 2.46875 0.140625 C 2.164062 0.140625 1.851562 0.109375 1.53125 0.046875 C 1.21875 -0.00390625 0.890625 -0.0859375 0.546875 -0.203125 L 0.546875 -1.125 C 0.878906 -0.957031 1.203125 -0.828125 1.515625 -0.734375 C 1.835938 -0.648438 2.160156 -0.609375 2.484375 -0.609375 C 2.898438 -0.609375 3.222656 -0.679688 3.453125 -0.828125 C 3.679688 -0.972656 3.796875 -1.175781 3.796875 -1.4375 C 3.796875 -1.6875 3.710938 -1.875 3.546875 -2 C 3.390625 -2.132812 3.03125 -2.257812 2.46875 -2.375 L 2.15625 -2.453125 C 1.601562 -2.566406 1.203125 -2.742188 0.953125 -2.984375 C 0.703125 -3.234375 0.578125 -3.566406 0.578125 -3.984375 C 0.578125 -4.503906 0.757812 -4.898438 1.125 -5.171875 C 1.488281 -5.453125 2.007812 -5.59375 2.6875 -5.59375 C 3.007812 -5.59375 3.316406 -5.566406 3.609375 -5.515625 C 3.910156 -5.472656 4.179688 -5.40625 4.421875 -5.3125 Z M 4.421875 -5.3125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-29"> +<path style="stroke:none;" d="M 4.109375 -4.625 C 4.003906 -4.6875 3.894531 -4.726562 3.78125 -4.75 C 3.664062 -4.78125 3.535156 -4.796875 3.390625 -4.796875 C 2.878906 -4.796875 2.488281 -4.628906 2.21875 -4.296875 C 1.945312 -3.972656 1.8125 -3.5 1.8125 -2.875 L 1.8125 0 L 0.90625 0 L 0.90625 -5.46875 L 1.8125 -5.46875 L 1.8125 -4.625 C 2 -4.957031 2.242188 -5.203125 2.546875 -5.359375 C 2.847656 -5.515625 3.21875 -5.59375 3.65625 -5.59375 C 3.71875 -5.59375 3.785156 -5.585938 3.859375 -5.578125 C 3.929688 -5.578125 4.015625 -5.566406 4.109375 -5.546875 Z M 4.109375 -4.625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-30"> +<path style="stroke:none;" d="M 0.984375 -7.296875 L 1.96875 -7.296875 L 1.96875 -4.203125 L 5.234375 -7.296875 L 6.515625 -7.296875 L 2.890625 -3.890625 L 6.765625 0 L 5.46875 0 L 1.96875 -3.515625 L 1.96875 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-31"> +<path style="stroke:none;" d="M 4.546875 -4.640625 L 4.546875 -7.59375 L 5.4375 -7.59375 L 5.4375 0 L 4.546875 0 L 4.546875 -0.828125 C 4.359375 -0.492188 4.117188 -0.25 3.828125 -0.09375 C 3.535156 0.0585938 3.1875 0.140625 2.78125 0.140625 C 2.125 0.140625 1.585938 -0.117188 1.171875 -0.640625 C 0.753906 -1.171875 0.546875 -1.867188 0.546875 -2.734375 C 0.546875 -3.585938 0.753906 -4.273438 1.171875 -4.796875 C 1.585938 -5.328125 2.125 -5.59375 2.78125 -5.59375 C 3.1875 -5.59375 3.535156 -5.515625 3.828125 -5.359375 C 4.117188 -5.203125 4.359375 -4.960938 4.546875 -4.640625 Z M 1.484375 -2.734375 C 1.484375 -2.066406 1.617188 -1.546875 1.890625 -1.171875 C 2.160156 -0.796875 2.535156 -0.609375 3.015625 -0.609375 C 3.484375 -0.609375 3.851562 -0.796875 4.125 -1.171875 C 4.40625 -1.546875 4.546875 -2.066406 4.546875 -2.734375 C 4.546875 -3.390625 4.40625 -3.90625 4.125 -4.28125 C 3.851562 -4.65625 3.484375 -4.84375 3.015625 -4.84375 C 2.535156 -4.84375 2.160156 -4.65625 1.890625 -4.28125 C 1.617188 -3.90625 1.484375 -3.390625 1.484375 -2.734375 Z M 1.484375 -2.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-32"> +<path style="stroke:none;" d="M 3.296875 -4.03125 C 2.859375 -4.03125 2.507812 -3.878906 2.25 -3.578125 C 1.988281 -3.273438 1.859375 -2.863281 1.859375 -2.34375 C 1.859375 -1.8125 1.988281 -1.394531 2.25 -1.09375 C 2.507812 -0.789062 2.859375 -0.640625 3.296875 -0.640625 C 3.742188 -0.640625 4.09375 -0.789062 4.34375 -1.09375 C 4.601562 -1.394531 4.734375 -1.8125 4.734375 -2.34375 C 4.734375 -2.863281 4.601562 -3.273438 4.34375 -3.578125 C 4.09375 -3.878906 3.742188 -4.03125 3.296875 -4.03125 Z M 5.265625 -7.125 L 5.265625 -6.234375 C 5.015625 -6.347656 4.757812 -6.4375 4.5 -6.5 C 4.25 -6.5625 4.003906 -6.59375 3.765625 -6.59375 C 3.109375 -6.59375 2.609375 -6.375 2.265625 -5.9375 C 1.921875 -5.5 1.726562 -4.832031 1.6875 -3.9375 C 1.875 -4.21875 2.113281 -4.429688 2.40625 -4.578125 C 2.695312 -4.734375 3.015625 -4.8125 3.359375 -4.8125 C 4.085938 -4.8125 4.664062 -4.585938 5.09375 -4.140625 C 5.519531 -3.703125 5.734375 -3.101562 5.734375 -2.34375 C 5.734375 -1.59375 5.507812 -0.988281 5.0625 -0.53125 C 4.625 -0.0820312 4.035156 0.140625 3.296875 0.140625 C 2.453125 0.140625 1.804688 -0.179688 1.359375 -0.828125 C 0.921875 -1.472656 0.703125 -2.410156 0.703125 -3.640625 C 0.703125 -4.785156 0.972656 -5.703125 1.515625 -6.390625 C 2.066406 -7.078125 2.800781 -7.421875 3.71875 -7.421875 C 3.96875 -7.421875 4.21875 -7.394531 4.46875 -7.34375 C 4.71875 -7.300781 4.984375 -7.226562 5.265625 -7.125 Z M 5.265625 -7.125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-33"> +<path style="stroke:none;" d="M 3.78125 -6.4375 L 1.296875 -2.546875 L 3.78125 -2.546875 Z M 3.515625 -7.296875 L 4.765625 -7.296875 L 4.765625 -2.546875 L 5.796875 -2.546875 L 5.796875 -1.71875 L 4.765625 -1.71875 L 4.765625 0 L 3.78125 0 L 3.78125 -1.71875 L 0.484375 -1.71875 L 0.484375 -2.671875 Z M 3.515625 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-34"> +<path style="stroke:none;" d="M 0.875 -7.296875 L 1.859375 -7.296875 L 1.859375 -2.859375 C 1.859375 -2.078125 2 -1.515625 2.28125 -1.171875 C 2.5625 -0.828125 3.019531 -0.65625 3.65625 -0.65625 C 4.289062 -0.65625 4.75 -0.828125 5.03125 -1.171875 C 5.3125 -1.515625 5.453125 -2.078125 5.453125 -2.859375 L 5.453125 -7.296875 L 6.453125 -7.296875 L 6.453125 -2.734375 C 6.453125 -1.785156 6.21875 -1.066406 5.75 -0.578125 C 5.28125 -0.0976562 4.582031 0.140625 3.65625 0.140625 C 2.738281 0.140625 2.046875 -0.0976562 1.578125 -0.578125 C 1.109375 -1.066406 0.875 -1.785156 0.875 -2.734375 Z M 0.875 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-35"> +<path style="stroke:none;" d="M 0.828125 -7.296875 L 5.515625 -7.296875 L 5.515625 -6.875 L 2.859375 0 L 1.828125 0 L 4.328125 -6.453125 L 0.828125 -6.453125 Z M 0.828125 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-36"> +<path style="stroke:none;" d="M 3.171875 -3.46875 C 2.703125 -3.46875 2.332031 -3.335938 2.0625 -3.078125 C 1.800781 -2.828125 1.671875 -2.484375 1.671875 -2.046875 C 1.671875 -1.609375 1.800781 -1.265625 2.0625 -1.015625 C 2.332031 -0.765625 2.703125 -0.640625 3.171875 -0.640625 C 3.640625 -0.640625 4.007812 -0.765625 4.28125 -1.015625 C 4.550781 -1.265625 4.6875 -1.609375 4.6875 -2.046875 C 4.6875 -2.484375 4.550781 -2.828125 4.28125 -3.078125 C 4.019531 -3.335938 3.648438 -3.46875 3.171875 -3.46875 Z M 2.1875 -3.875 C 1.769531 -3.976562 1.441406 -4.175781 1.203125 -4.46875 C 0.960938 -4.757812 0.84375 -5.113281 0.84375 -5.53125 C 0.84375 -6.113281 1.050781 -6.570312 1.46875 -6.90625 C 1.882812 -7.25 2.453125 -7.421875 3.171875 -7.421875 C 3.898438 -7.421875 4.472656 -7.25 4.890625 -6.90625 C 5.304688 -6.570312 5.515625 -6.113281 5.515625 -5.53125 C 5.515625 -5.113281 5.394531 -4.757812 5.15625 -4.46875 C 4.914062 -4.175781 4.585938 -3.976562 4.171875 -3.875 C 4.648438 -3.769531 5.019531 -3.554688 5.28125 -3.234375 C 5.539062 -2.910156 5.671875 -2.515625 5.671875 -2.046875 C 5.671875 -1.335938 5.457031 -0.796875 5.03125 -0.421875 C 4.601562 -0.046875 3.984375 0.140625 3.171875 0.140625 C 2.367188 0.140625 1.75 -0.046875 1.3125 -0.421875 C 0.882812 -0.796875 0.671875 -1.335938 0.671875 -2.046875 C 0.671875 -2.515625 0.804688 -2.910156 1.078125 -3.234375 C 1.347656 -3.554688 1.71875 -3.769531 2.1875 -3.875 Z M 1.828125 -5.4375 C 1.828125 -5.0625 1.945312 -4.765625 2.1875 -4.546875 C 2.425781 -4.335938 2.753906 -4.234375 3.171875 -4.234375 C 3.597656 -4.234375 3.929688 -4.335938 4.171875 -4.546875 C 4.410156 -4.765625 4.53125 -5.0625 4.53125 -5.4375 C 4.53125 -5.8125 4.410156 -6.101562 4.171875 -6.3125 C 3.929688 -6.53125 3.597656 -6.640625 3.171875 -6.640625 C 2.753906 -6.640625 2.425781 -6.53125 2.1875 -6.3125 C 1.945312 -6.101562 1.828125 -5.8125 1.828125 -5.4375 Z M 1.828125 -5.4375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-37"> +<path style="stroke:none;" d="M 5.484375 -5.46875 L 3.515625 -2.8125 L 5.59375 0 L 4.53125 0 L 2.9375 -2.15625 L 1.34375 0 L 0.28125 0 L 2.40625 -2.859375 L 0.46875 -5.46875 L 1.53125 -5.46875 L 2.984375 -3.515625 L 4.421875 -5.46875 Z M 5.484375 -5.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-38"> +<path style="stroke:none;" d="M 1.09375 -0.15625 L 1.09375 -1.046875 C 1.34375 -0.929688 1.59375 -0.84375 1.84375 -0.78125 C 2.101562 -0.71875 2.351562 -0.6875 2.59375 -0.6875 C 3.25 -0.6875 3.75 -0.90625 4.09375 -1.34375 C 4.4375 -1.78125 4.628906 -2.445312 4.671875 -3.34375 C 4.484375 -3.0625 4.242188 -2.84375 3.953125 -2.6875 C 3.671875 -2.539062 3.351562 -2.46875 3 -2.46875 C 2.269531 -2.46875 1.691406 -2.6875 1.265625 -3.125 C 0.835938 -3.570312 0.625 -4.175781 0.625 -4.9375 C 0.625 -5.6875 0.84375 -6.285156 1.28125 -6.734375 C 1.726562 -7.191406 2.320312 -7.421875 3.0625 -7.421875 C 3.90625 -7.421875 4.546875 -7.097656 4.984375 -6.453125 C 5.429688 -5.804688 5.65625 -4.867188 5.65625 -3.640625 C 5.65625 -2.492188 5.382812 -1.578125 4.84375 -0.890625 C 4.300781 -0.203125 3.566406 0.140625 2.640625 0.140625 C 2.390625 0.140625 2.140625 0.113281 1.890625 0.0625 C 1.640625 0.0195312 1.375 -0.0507812 1.09375 -0.15625 Z M 3.0625 -3.25 C 3.5 -3.25 3.847656 -3.398438 4.109375 -3.703125 C 4.367188 -4.003906 4.5 -4.414062 4.5 -4.9375 C 4.5 -5.46875 4.367188 -5.882812 4.109375 -6.1875 C 3.847656 -6.488281 3.5 -6.640625 3.0625 -6.640625 C 2.613281 -6.640625 2.257812 -6.488281 2 -6.1875 C 1.75 -5.882812 1.625 -5.46875 1.625 -4.9375 C 1.625 -4.414062 1.75 -4.003906 2 -3.703125 C 2.257812 -3.398438 2.613281 -3.25 3.0625 -3.25 Z M 3.0625 -3.25 "/> +</symbol> +<symbol overflow="visible" id="glyph0-39"> +<path style="stroke:none;" d="M 0.984375 -7.296875 L 2.3125 -7.296875 L 5.546875 -1.1875 L 5.546875 -7.296875 L 6.5 -7.296875 L 6.5 0 L 5.171875 0 L 1.9375 -6.09375 L 1.9375 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-40"> +<path style="stroke:none;" d="M 3.421875 -6.3125 L 2.078125 -2.6875 L 4.765625 -2.6875 Z M 2.859375 -7.296875 L 3.984375 -7.296875 L 6.765625 0 L 5.734375 0 L 5.0625 -1.875 L 1.78125 -1.875 L 1.125 0 L 0.078125 0 Z M 2.859375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-41"> +<path style="stroke:none;" d="M 1.0625 -1.234375 L 2.09375 -1.234375 L 2.09375 0 L 1.0625 0 Z M 1.0625 -1.234375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-42"> +<path style="stroke:none;" d="M 0.984375 -7.296875 L 1.96875 -7.296875 L 1.96875 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-43"> +<path style="stroke:none;" d="M 1.171875 -1.234375 L 2.203125 -1.234375 L 2.203125 0 L 1.171875 0 Z M 1.171875 -5.171875 L 2.203125 -5.171875 L 2.203125 -3.9375 L 1.171875 -3.9375 Z M 1.171875 -5.171875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-44"> +<path style="stroke:none;" d="M 1.8125 -0.828125 L 1.8125 2.078125 L 0.90625 2.078125 L 0.90625 -5.46875 L 1.8125 -5.46875 L 1.8125 -4.640625 C 2 -4.960938 2.234375 -5.203125 2.515625 -5.359375 C 2.804688 -5.515625 3.15625 -5.59375 3.5625 -5.59375 C 4.226562 -5.59375 4.765625 -5.328125 5.171875 -4.796875 C 5.585938 -4.273438 5.796875 -3.585938 5.796875 -2.734375 C 5.796875 -1.867188 5.585938 -1.171875 5.171875 -0.640625 C 4.765625 -0.117188 4.226562 0.140625 3.5625 0.140625 C 3.15625 0.140625 2.804688 0.0585938 2.515625 -0.09375 C 2.234375 -0.25 2 -0.492188 1.8125 -0.828125 Z M 4.875 -2.734375 C 4.875 -3.390625 4.734375 -3.90625 4.453125 -4.28125 C 4.179688 -4.65625 3.8125 -4.84375 3.34375 -4.84375 C 2.863281 -4.84375 2.488281 -4.65625 2.21875 -4.28125 C 1.945312 -3.90625 1.8125 -3.390625 1.8125 -2.734375 C 1.8125 -2.066406 1.945312 -1.546875 2.21875 -1.171875 C 2.488281 -0.796875 2.863281 -0.609375 3.34375 -0.609375 C 3.8125 -0.609375 4.179688 -0.796875 4.453125 -1.171875 C 4.734375 -1.546875 4.875 -2.066406 4.875 -2.734375 Z M 4.875 -2.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-45"> +<path style="stroke:none;" d="M 3.71875 -7.59375 L 3.71875 -6.84375 L 2.859375 -6.84375 C 2.535156 -6.84375 2.3125 -6.773438 2.1875 -6.640625 C 2.0625 -6.515625 2 -6.285156 2 -5.953125 L 2 -5.46875 L 3.46875 -5.46875 L 3.46875 -4.765625 L 2 -4.765625 L 2 0 L 1.09375 0 L 1.09375 -4.765625 L 0.234375 -4.765625 L 0.234375 -5.46875 L 1.09375 -5.46875 L 1.09375 -5.84375 C 1.09375 -6.457031 1.234375 -6.898438 1.515625 -7.171875 C 1.796875 -7.453125 2.242188 -7.59375 2.859375 -7.59375 Z M 3.71875 -7.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-46"> +<path style="stroke:none;" d="M 3.9375 -6.625 C 3.21875 -6.625 2.648438 -6.351562 2.234375 -5.8125 C 1.816406 -5.28125 1.609375 -4.554688 1.609375 -3.640625 C 1.609375 -2.722656 1.816406 -1.992188 2.234375 -1.453125 C 2.648438 -0.921875 3.21875 -0.65625 3.9375 -0.65625 C 4.65625 -0.65625 5.222656 -0.921875 5.640625 -1.453125 C 6.054688 -1.992188 6.265625 -2.722656 6.265625 -3.640625 C 6.265625 -4.554688 6.054688 -5.28125 5.640625 -5.8125 C 5.222656 -6.351562 4.65625 -6.625 3.9375 -6.625 Z M 3.9375 -7.421875 C 4.957031 -7.421875 5.773438 -7.078125 6.390625 -6.390625 C 7.003906 -5.703125 7.3125 -4.785156 7.3125 -3.640625 C 7.3125 -2.492188 7.003906 -1.578125 6.390625 -0.890625 C 5.773438 -0.203125 4.957031 0.140625 3.9375 0.140625 C 2.914062 0.140625 2.097656 -0.195312 1.484375 -0.875 C 0.867188 -1.5625 0.5625 -2.484375 0.5625 -3.640625 C 0.5625 -4.785156 0.867188 -5.703125 1.484375 -6.390625 C 2.097656 -7.078125 2.914062 -7.421875 3.9375 -7.421875 Z M 3.9375 -7.421875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-47"> +<path style="stroke:none;" d="M 0.984375 -7.296875 L 5.171875 -7.296875 L 5.171875 -6.453125 L 1.96875 -6.453125 L 1.96875 -4.3125 L 4.859375 -4.3125 L 4.859375 -3.484375 L 1.96875 -3.484375 L 1.96875 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-48"> +<path style="stroke:none;" d="M 4.875 -2.734375 C 4.875 -3.390625 4.734375 -3.90625 4.453125 -4.28125 C 4.179688 -4.65625 3.8125 -4.84375 3.34375 -4.84375 C 2.863281 -4.84375 2.488281 -4.65625 2.21875 -4.28125 C 1.945312 -3.90625 1.8125 -3.390625 1.8125 -2.734375 C 1.8125 -2.066406 1.945312 -1.546875 2.21875 -1.171875 C 2.488281 -0.796875 2.863281 -0.609375 3.34375 -0.609375 C 3.8125 -0.609375 4.179688 -0.796875 4.453125 -1.171875 C 4.734375 -1.546875 4.875 -2.066406 4.875 -2.734375 Z M 1.8125 -4.640625 C 2 -4.960938 2.234375 -5.203125 2.515625 -5.359375 C 2.804688 -5.515625 3.15625 -5.59375 3.5625 -5.59375 C 4.226562 -5.59375 4.765625 -5.328125 5.171875 -4.796875 C 5.585938 -4.273438 5.796875 -3.585938 5.796875 -2.734375 C 5.796875 -1.867188 5.585938 -1.171875 5.171875 -0.640625 C 4.765625 -0.117188 4.226562 0.140625 3.5625 0.140625 C 3.15625 0.140625 2.804688 0.0585938 2.515625 -0.09375 C 2.234375 -0.25 2 -0.492188 1.8125 -0.828125 L 1.8125 0 L 0.90625 0 L 0.90625 -7.59375 L 1.8125 -7.59375 Z M 1.8125 -4.640625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-49"> +<path style="stroke:none;" d="M 0.296875 -5.46875 L 1.25 -5.46875 L 2.953125 -0.875 L 4.671875 -5.46875 L 5.625 -5.46875 L 3.5625 0 L 2.34375 0 Z M 0.296875 -5.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-50"> +<path style="stroke:none;" d="M 5.203125 -4.421875 C 5.421875 -4.828125 5.6875 -5.125 6 -5.3125 C 6.3125 -5.5 6.679688 -5.59375 7.109375 -5.59375 C 7.679688 -5.59375 8.117188 -5.394531 8.421875 -5 C 8.734375 -4.601562 8.890625 -4.035156 8.890625 -3.296875 L 8.890625 0 L 7.984375 0 L 7.984375 -3.265625 C 7.984375 -3.796875 7.890625 -4.1875 7.703125 -4.4375 C 7.523438 -4.6875 7.242188 -4.8125 6.859375 -4.8125 C 6.390625 -4.8125 6.019531 -4.65625 5.75 -4.34375 C 5.488281 -4.039062 5.359375 -3.625 5.359375 -3.09375 L 5.359375 0 L 4.453125 0 L 4.453125 -3.265625 C 4.453125 -3.796875 4.359375 -4.1875 4.171875 -4.4375 C 3.984375 -4.6875 3.695312 -4.8125 3.3125 -4.8125 C 2.851562 -4.8125 2.488281 -4.65625 2.21875 -4.34375 C 1.945312 -4.039062 1.8125 -3.625 1.8125 -3.09375 L 1.8125 0 L 0.90625 0 L 0.90625 -5.46875 L 1.8125 -5.46875 L 1.8125 -4.625 C 2.019531 -4.957031 2.265625 -5.203125 2.546875 -5.359375 C 2.835938 -5.515625 3.175781 -5.59375 3.5625 -5.59375 C 3.96875 -5.59375 4.304688 -5.492188 4.578125 -5.296875 C 4.859375 -5.097656 5.066406 -4.804688 5.203125 -4.421875 Z M 5.203125 -4.421875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-51"> +<path style="stroke:none;" d="M 0.984375 -7.296875 L 1.96875 -7.296875 L 1.96875 -4.296875 L 5.546875 -4.296875 L 5.546875 -7.296875 L 6.53125 -7.296875 L 6.53125 0 L 5.546875 0 L 5.546875 -3.46875 L 1.96875 -3.46875 L 1.96875 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-52"> +<path style="stroke:none;" d="M 1.96875 -6.484375 L 1.96875 -0.8125 L 3.15625 -0.8125 C 4.164062 -0.8125 4.898438 -1.035156 5.359375 -1.484375 C 5.828125 -1.941406 6.0625 -2.664062 6.0625 -3.65625 C 6.0625 -4.632812 5.828125 -5.347656 5.359375 -5.796875 C 4.898438 -6.253906 4.164062 -6.484375 3.15625 -6.484375 Z M 0.984375 -7.296875 L 3.015625 -7.296875 C 4.421875 -7.296875 5.453125 -7 6.109375 -6.40625 C 6.773438 -5.820312 7.109375 -4.90625 7.109375 -3.65625 C 7.109375 -2.394531 6.773438 -1.46875 6.109375 -0.875 C 5.453125 -0.289062 4.421875 0 3.015625 0 L 0.984375 0 Z M 0.984375 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-53"> +<path style="stroke:none;" d="M -0.03125 -7.296875 L 6.140625 -7.296875 L 6.140625 -6.453125 L 3.546875 -6.453125 L 3.546875 0 L 2.5625 0 L 2.5625 -6.453125 L -0.03125 -6.453125 Z M -0.03125 -7.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-54"> +<path style="stroke:none;" d="M 5.359375 -7.046875 L 5.359375 -6.09375 C 4.984375 -6.269531 4.628906 -6.398438 4.296875 -6.484375 C 3.960938 -6.578125 3.640625 -6.625 3.328125 -6.625 C 2.796875 -6.625 2.382812 -6.519531 2.09375 -6.3125 C 1.800781 -6.101562 1.65625 -5.804688 1.65625 -5.421875 C 1.65625 -5.097656 1.75 -4.851562 1.9375 -4.6875 C 2.132812 -4.519531 2.503906 -4.390625 3.046875 -4.296875 L 3.640625 -4.171875 C 4.367188 -4.023438 4.910156 -3.773438 5.265625 -3.421875 C 5.617188 -3.078125 5.796875 -2.609375 5.796875 -2.015625 C 5.796875 -1.304688 5.554688 -0.769531 5.078125 -0.40625 C 4.609375 -0.0390625 3.914062 0.140625 3 0.140625 C 2.65625 0.140625 2.285156 0.0976562 1.890625 0.015625 C 1.503906 -0.0546875 1.101562 -0.171875 0.6875 -0.328125 L 0.6875 -1.34375 C 1.09375 -1.113281 1.484375 -0.941406 1.859375 -0.828125 C 2.242188 -0.710938 2.625 -0.65625 3 -0.65625 C 3.5625 -0.65625 3.992188 -0.765625 4.296875 -0.984375 C 4.609375 -1.210938 4.765625 -1.53125 4.765625 -1.9375 C 4.765625 -2.289062 4.65625 -2.566406 4.4375 -2.765625 C 4.21875 -2.972656 3.851562 -3.128906 3.34375 -3.234375 L 2.75 -3.34375 C 2.007812 -3.488281 1.472656 -3.71875 1.140625 -4.03125 C 0.816406 -4.34375 0.65625 -4.78125 0.65625 -5.34375 C 0.65625 -5.988281 0.878906 -6.492188 1.328125 -6.859375 C 1.785156 -7.234375 2.414062 -7.421875 3.21875 -7.421875 C 3.5625 -7.421875 3.910156 -7.390625 4.265625 -7.328125 C 4.617188 -7.265625 4.984375 -7.171875 5.359375 -7.046875 Z M 5.359375 -7.046875 "/> +</symbol> +</g> +</defs> +<g id="surface6"> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 0 L 1798 0 L 1798 1354 L 0 1354 Z M 0 0 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="7" y="17"/> + <use xlink:href="#glyph0-2" x="15.62793" y="17"/> + <use xlink:href="#glyph0-3" x="21.755859" y="17"/> + <use xlink:href="#glyph0-4" x="27.253906" y="17"/> + <use xlink:href="#glyph0-5" x="33.591797" y="17"/> + <use xlink:href="#glyph0-6" x="36.370117" y="17"/> + <use xlink:href="#glyph0-7" x="42.708008" y="17"/> + <use xlink:href="#glyph0-8" x="48.860352" y="17"/> + <use xlink:href="#glyph0-9" x="52.039062" y="17"/> + <use xlink:href="#glyph0-10" x="55.94043" y="17"/> + <use xlink:href="#glyph0-11" x="62.302734" y="17"/> + <use xlink:href="#glyph0-12" x="68.665039" y="17"/> + <use xlink:href="#glyph0-13" x="75.027344" y="17"/> + <use xlink:href="#glyph0-14" x="82.776367" y="17"/> + <use xlink:href="#glyph0-8" x="89.636719" y="17"/> + <use xlink:href="#glyph0-15" x="92.81543" y="17"/> + <use xlink:href="#glyph0-16" x="96.736328" y="17"/> + <use xlink:href="#glyph0-15" x="102.854492" y="17"/> + <use xlink:href="#glyph0-2" x="106.775391" y="17"/> + <use xlink:href="#glyph0-17" x="112.90332" y="17"/> + <use xlink:href="#glyph0-18" x="115.681641" y="17"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(82.352942%,90.588236%,64.313728%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7 24 L 1746 24 L 1746 682 L 7 682 Z M 7 24 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="14" y="41"/> + <use xlink:href="#glyph0-2" x="20.030273" y="41"/> + <use xlink:href="#glyph0-3" x="26.158203" y="41"/> + <use xlink:href="#glyph0-20" x="31.65625" y="41"/> + <use xlink:href="#glyph0-2" x="37.447266" y="41"/> + <use xlink:href="#glyph0-21" x="43.575195" y="41"/> + <use xlink:href="#glyph0-7" x="49.922852" y="41"/> + <use xlink:href="#glyph0-8" x="56.075195" y="41"/> + <use xlink:href="#glyph0-22" x="59.253906" y="41"/> + <use xlink:href="#glyph0-23" x="64.825195" y="41"/> + <use xlink:href="#glyph0-11" x="73.204102" y="41"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 79 L 1739 79 L 1739 103 L 14 103 Z M 14 79 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="21" y="96"/> + <use xlink:href="#glyph0-24" x="26.571289" y="96"/> + <use xlink:href="#glyph0-8" x="32.933594" y="96"/> + <use xlink:href="#glyph0-9" x="36.112305" y="96"/> + <use xlink:href="#glyph0-24" x="40.013672" y="96"/> + <use xlink:href="#glyph0-25" x="46.375977" y="96"/> + <use xlink:href="#glyph0-1" x="52.738281" y="96"/> + <use xlink:href="#glyph0-14" x="61.366211" y="96"/> + <use xlink:href="#glyph0-18" x="68.226562" y="96"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 110 L 353 110 L 353 303 L 14 303 Z M 14 110 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="21" y="127"/> + <use xlink:href="#glyph0-17" x="27.982422" y="127"/> + <use xlink:href="#glyph0-27" x="30.760742" y="127"/> + <use xlink:href="#glyph0-28" x="37.098633" y="127"/> + <use xlink:href="#glyph0-15" x="42.308594" y="127"/> + <use xlink:href="#glyph0-7" x="46.229492" y="127"/> + <use xlink:href="#glyph0-29" x="52.381836" y="127"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 134 L 97 134 L 97 158 L 21 158 Z M 21 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="151"/> + <use xlink:href="#glyph0-25" x="33.571289" y="151"/> + <use xlink:href="#glyph0-8" x="39.933594" y="151"/> + <use xlink:href="#glyph0-9" x="43.112305" y="151"/> + <use xlink:href="#glyph0-10" x="47.013672" y="151"/> + <use xlink:href="#glyph0-12" x="53.375977" y="151"/> + <use xlink:href="#glyph0-25" x="59.738281" y="151"/> + <use xlink:href="#glyph0-30" x="66.100586" y="151"/> + <use xlink:href="#glyph0-14" x="72.658203" y="151"/> + <use xlink:href="#glyph0-18" x="79.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 165 L 97 165 L 97 189 L 21 189 Z M 21 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="182"/> + <use xlink:href="#glyph0-12" x="33.571289" y="182"/> + <use xlink:href="#glyph0-31" x="39.933594" y="182"/> + <use xlink:href="#glyph0-8" x="46.28125" y="182"/> + <use xlink:href="#glyph0-9" x="49.459961" y="182"/> + <use xlink:href="#glyph0-32" x="53.361328" y="182"/> + <use xlink:href="#glyph0-33" x="59.723633" y="182"/> + <use xlink:href="#glyph0-30" x="66.085938" y="182"/> + <use xlink:href="#glyph0-14" x="72.643555" y="182"/> + <use xlink:href="#glyph0-18" x="79.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 196 L 97 196 L 97 220 L 21 220 Z M 21 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="213"/> + <use xlink:href="#glyph0-12" x="33.571289" y="213"/> + <use xlink:href="#glyph0-5" x="39.933594" y="213"/> + <use xlink:href="#glyph0-8" x="42.711914" y="213"/> + <use xlink:href="#glyph0-9" x="45.890625" y="213"/> + <use xlink:href="#glyph0-32" x="49.791992" y="213"/> + <use xlink:href="#glyph0-33" x="56.154297" y="213"/> + <use xlink:href="#glyph0-30" x="62.516602" y="213"/> + <use xlink:href="#glyph0-14" x="69.074219" y="213"/> + <use xlink:href="#glyph0-18" x="75.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 227 L 97 227 L 97 296 L 21 296 Z M 21 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="28" y="244"/> + <use xlink:href="#glyph0-16" x="34.982422" y="244"/> + <use xlink:href="#glyph0-29" x="41.100586" y="244"/> + <use xlink:href="#glyph0-7" x="45.211914" y="244"/> + <use xlink:href="#glyph0-8" x="51.364258" y="244"/> + <use xlink:href="#glyph0-22" x="54.542969" y="244"/> + <use xlink:href="#glyph0-23" x="60.114258" y="244"/> + <use xlink:href="#glyph0-11" x="68.493164" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28 251 L 90 251 L 90 289 L 28 289 Z M 28 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="41" y="268"/> + <use xlink:href="#glyph0-34" x="47.030273" y="268"/> + <use xlink:href="#glyph0-8" x="54.349609" y="268"/> + <use xlink:href="#glyph0-22" x="57.52832" y="268"/> + <use xlink:href="#glyph0-23" x="63.099609" y="268"/> + <use xlink:href="#glyph0-11" x="71.478516" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="49" y="282"/> + <use xlink:href="#glyph0-23" x="55.030273" y="282"/> + <use xlink:href="#glyph0-11" x="63.40918" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 134 L 180 134 L 180 158 L 104 158 Z M 104 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="151"/> + <use xlink:href="#glyph0-25" x="116.571289" y="151"/> + <use xlink:href="#glyph0-8" x="122.933594" y="151"/> + <use xlink:href="#glyph0-9" x="126.112305" y="151"/> + <use xlink:href="#glyph0-10" x="130.013672" y="151"/> + <use xlink:href="#glyph0-12" x="136.375977" y="151"/> + <use xlink:href="#glyph0-25" x="142.738281" y="151"/> + <use xlink:href="#glyph0-30" x="149.100586" y="151"/> + <use xlink:href="#glyph0-14" x="155.658203" y="151"/> + <use xlink:href="#glyph0-18" x="162.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 165 L 180 165 L 180 189 L 104 189 Z M 104 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="182"/> + <use xlink:href="#glyph0-12" x="116.571289" y="182"/> + <use xlink:href="#glyph0-31" x="122.933594" y="182"/> + <use xlink:href="#glyph0-8" x="129.28125" y="182"/> + <use xlink:href="#glyph0-9" x="132.459961" y="182"/> + <use xlink:href="#glyph0-32" x="136.361328" y="182"/> + <use xlink:href="#glyph0-33" x="142.723633" y="182"/> + <use xlink:href="#glyph0-30" x="149.085938" y="182"/> + <use xlink:href="#glyph0-14" x="155.643555" y="182"/> + <use xlink:href="#glyph0-18" x="162.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 196 L 180 196 L 180 220 L 104 220 Z M 104 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="213"/> + <use xlink:href="#glyph0-12" x="116.571289" y="213"/> + <use xlink:href="#glyph0-5" x="122.933594" y="213"/> + <use xlink:href="#glyph0-8" x="125.711914" y="213"/> + <use xlink:href="#glyph0-9" x="128.890625" y="213"/> + <use xlink:href="#glyph0-32" x="132.791992" y="213"/> + <use xlink:href="#glyph0-33" x="139.154297" y="213"/> + <use xlink:href="#glyph0-30" x="145.516602" y="213"/> + <use xlink:href="#glyph0-14" x="152.074219" y="213"/> + <use xlink:href="#glyph0-18" x="158.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 227 L 180 227 L 180 296 L 104 296 Z M 104 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="111" y="244"/> + <use xlink:href="#glyph0-16" x="117.982422" y="244"/> + <use xlink:href="#glyph0-29" x="124.100586" y="244"/> + <use xlink:href="#glyph0-7" x="128.211914" y="244"/> + <use xlink:href="#glyph0-8" x="134.364258" y="244"/> + <use xlink:href="#glyph0-22" x="137.542969" y="244"/> + <use xlink:href="#glyph0-23" x="143.114258" y="244"/> + <use xlink:href="#glyph0-12" x="151.493164" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111 251 L 173 251 L 173 289 L 111 289 Z M 111 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="125" y="268"/> + <use xlink:href="#glyph0-34" x="131.030273" y="268"/> + <use xlink:href="#glyph0-8" x="138.349609" y="268"/> + <use xlink:href="#glyph0-22" x="141.52832" y="268"/> + <use xlink:href="#glyph0-23" x="147.099609" y="268"/> + <use xlink:href="#glyph0-12" x="155.478516" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="133" y="282"/> + <use xlink:href="#glyph0-23" x="139.030273" y="282"/> + <use xlink:href="#glyph0-12" x="147.40918" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 134 L 263 134 L 263 158 L 187 158 Z M 187 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="151"/> + <use xlink:href="#glyph0-25" x="199.571289" y="151"/> + <use xlink:href="#glyph0-8" x="205.933594" y="151"/> + <use xlink:href="#glyph0-9" x="209.112305" y="151"/> + <use xlink:href="#glyph0-10" x="213.013672" y="151"/> + <use xlink:href="#glyph0-12" x="219.375977" y="151"/> + <use xlink:href="#glyph0-25" x="225.738281" y="151"/> + <use xlink:href="#glyph0-30" x="232.100586" y="151"/> + <use xlink:href="#glyph0-14" x="238.658203" y="151"/> + <use xlink:href="#glyph0-18" x="245.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 165 L 263 165 L 263 189 L 187 189 Z M 187 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="182"/> + <use xlink:href="#glyph0-12" x="199.571289" y="182"/> + <use xlink:href="#glyph0-31" x="205.933594" y="182"/> + <use xlink:href="#glyph0-8" x="212.28125" y="182"/> + <use xlink:href="#glyph0-9" x="215.459961" y="182"/> + <use xlink:href="#glyph0-32" x="219.361328" y="182"/> + <use xlink:href="#glyph0-33" x="225.723633" y="182"/> + <use xlink:href="#glyph0-30" x="232.085938" y="182"/> + <use xlink:href="#glyph0-14" x="238.643555" y="182"/> + <use xlink:href="#glyph0-18" x="245.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 196 L 263 196 L 263 220 L 187 220 Z M 187 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="213"/> + <use xlink:href="#glyph0-12" x="199.571289" y="213"/> + <use xlink:href="#glyph0-5" x="205.933594" y="213"/> + <use xlink:href="#glyph0-8" x="208.711914" y="213"/> + <use xlink:href="#glyph0-9" x="211.890625" y="213"/> + <use xlink:href="#glyph0-32" x="215.791992" y="213"/> + <use xlink:href="#glyph0-33" x="222.154297" y="213"/> + <use xlink:href="#glyph0-30" x="228.516602" y="213"/> + <use xlink:href="#glyph0-14" x="235.074219" y="213"/> + <use xlink:href="#glyph0-18" x="241.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 227 L 263 227 L 263 296 L 187 296 Z M 187 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="194" y="244"/> + <use xlink:href="#glyph0-16" x="200.982422" y="244"/> + <use xlink:href="#glyph0-29" x="207.100586" y="244"/> + <use xlink:href="#glyph0-7" x="211.211914" y="244"/> + <use xlink:href="#glyph0-8" x="217.364258" y="244"/> + <use xlink:href="#glyph0-22" x="220.542969" y="244"/> + <use xlink:href="#glyph0-23" x="226.114258" y="244"/> + <use xlink:href="#glyph0-25" x="234.493164" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194 251 L 256 251 L 256 289 L 194 289 Z M 194 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="208" y="268"/> + <use xlink:href="#glyph0-34" x="214.030273" y="268"/> + <use xlink:href="#glyph0-8" x="221.349609" y="268"/> + <use xlink:href="#glyph0-22" x="224.52832" y="268"/> + <use xlink:href="#glyph0-23" x="230.099609" y="268"/> + <use xlink:href="#glyph0-25" x="238.478516" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="216" y="282"/> + <use xlink:href="#glyph0-23" x="222.030273" y="282"/> + <use xlink:href="#glyph0-25" x="230.40918" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 134 L 346 134 L 346 158 L 270 158 Z M 270 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="151"/> + <use xlink:href="#glyph0-25" x="282.571289" y="151"/> + <use xlink:href="#glyph0-8" x="288.933594" y="151"/> + <use xlink:href="#glyph0-9" x="292.112305" y="151"/> + <use xlink:href="#glyph0-10" x="296.013672" y="151"/> + <use xlink:href="#glyph0-12" x="302.375977" y="151"/> + <use xlink:href="#glyph0-25" x="308.738281" y="151"/> + <use xlink:href="#glyph0-30" x="315.100586" y="151"/> + <use xlink:href="#glyph0-14" x="321.658203" y="151"/> + <use xlink:href="#glyph0-18" x="328.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 165 L 346 165 L 346 189 L 270 189 Z M 270 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="182"/> + <use xlink:href="#glyph0-12" x="282.571289" y="182"/> + <use xlink:href="#glyph0-31" x="288.933594" y="182"/> + <use xlink:href="#glyph0-8" x="295.28125" y="182"/> + <use xlink:href="#glyph0-9" x="298.459961" y="182"/> + <use xlink:href="#glyph0-32" x="302.361328" y="182"/> + <use xlink:href="#glyph0-33" x="308.723633" y="182"/> + <use xlink:href="#glyph0-30" x="315.085938" y="182"/> + <use xlink:href="#glyph0-14" x="321.643555" y="182"/> + <use xlink:href="#glyph0-18" x="328.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 196 L 346 196 L 346 220 L 270 220 Z M 270 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="213"/> + <use xlink:href="#glyph0-12" x="282.571289" y="213"/> + <use xlink:href="#glyph0-5" x="288.933594" y="213"/> + <use xlink:href="#glyph0-8" x="291.711914" y="213"/> + <use xlink:href="#glyph0-9" x="294.890625" y="213"/> + <use xlink:href="#glyph0-32" x="298.791992" y="213"/> + <use xlink:href="#glyph0-33" x="305.154297" y="213"/> + <use xlink:href="#glyph0-30" x="311.516602" y="213"/> + <use xlink:href="#glyph0-14" x="318.074219" y="213"/> + <use xlink:href="#glyph0-18" x="324.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 227 L 346 227 L 346 296 L 270 296 Z M 270 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="277" y="244"/> + <use xlink:href="#glyph0-16" x="283.982422" y="244"/> + <use xlink:href="#glyph0-29" x="290.100586" y="244"/> + <use xlink:href="#glyph0-7" x="294.211914" y="244"/> + <use xlink:href="#glyph0-8" x="300.364258" y="244"/> + <use xlink:href="#glyph0-22" x="303.542969" y="244"/> + <use xlink:href="#glyph0-23" x="309.114258" y="244"/> + <use xlink:href="#glyph0-24" x="317.493164" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277 251 L 339 251 L 339 289 L 277 289 Z M 277 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="290" y="268"/> + <use xlink:href="#glyph0-34" x="296.030273" y="268"/> + <use xlink:href="#glyph0-8" x="303.349609" y="268"/> + <use xlink:href="#glyph0-22" x="306.52832" y="268"/> + <use xlink:href="#glyph0-23" x="312.099609" y="268"/> + <use xlink:href="#glyph0-24" x="320.478516" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="299" y="282"/> + <use xlink:href="#glyph0-23" x="305.030273" y="282"/> + <use xlink:href="#glyph0-24" x="313.40918" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360 110 L 699 110 L 699 303 L 360 303 Z M 360 110 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="367" y="127"/> + <use xlink:href="#glyph0-17" x="373.982422" y="127"/> + <use xlink:href="#glyph0-27" x="376.760742" y="127"/> + <use xlink:href="#glyph0-28" x="383.098633" y="127"/> + <use xlink:href="#glyph0-15" x="388.308594" y="127"/> + <use xlink:href="#glyph0-7" x="392.229492" y="127"/> + <use xlink:href="#glyph0-29" x="398.381836" y="127"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 134 L 443 134 L 443 158 L 367 158 Z M 367 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="151"/> + <use xlink:href="#glyph0-25" x="379.571289" y="151"/> + <use xlink:href="#glyph0-8" x="385.933594" y="151"/> + <use xlink:href="#glyph0-9" x="389.112305" y="151"/> + <use xlink:href="#glyph0-10" x="393.013672" y="151"/> + <use xlink:href="#glyph0-12" x="399.375977" y="151"/> + <use xlink:href="#glyph0-25" x="405.738281" y="151"/> + <use xlink:href="#glyph0-30" x="412.100586" y="151"/> + <use xlink:href="#glyph0-14" x="418.658203" y="151"/> + <use xlink:href="#glyph0-18" x="425.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 165 L 443 165 L 443 189 L 367 189 Z M 367 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="182"/> + <use xlink:href="#glyph0-12" x="379.571289" y="182"/> + <use xlink:href="#glyph0-31" x="385.933594" y="182"/> + <use xlink:href="#glyph0-8" x="392.28125" y="182"/> + <use xlink:href="#glyph0-9" x="395.459961" y="182"/> + <use xlink:href="#glyph0-32" x="399.361328" y="182"/> + <use xlink:href="#glyph0-33" x="405.723633" y="182"/> + <use xlink:href="#glyph0-30" x="412.085938" y="182"/> + <use xlink:href="#glyph0-14" x="418.643555" y="182"/> + <use xlink:href="#glyph0-18" x="425.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 196 L 443 196 L 443 220 L 367 220 Z M 367 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="213"/> + <use xlink:href="#glyph0-12" x="379.571289" y="213"/> + <use xlink:href="#glyph0-5" x="385.933594" y="213"/> + <use xlink:href="#glyph0-8" x="388.711914" y="213"/> + <use xlink:href="#glyph0-9" x="391.890625" y="213"/> + <use xlink:href="#glyph0-32" x="395.791992" y="213"/> + <use xlink:href="#glyph0-33" x="402.154297" y="213"/> + <use xlink:href="#glyph0-30" x="408.516602" y="213"/> + <use xlink:href="#glyph0-14" x="415.074219" y="213"/> + <use xlink:href="#glyph0-18" x="421.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 227 L 443 227 L 443 296 L 367 296 Z M 367 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="374" y="244"/> + <use xlink:href="#glyph0-16" x="380.982422" y="244"/> + <use xlink:href="#glyph0-29" x="387.100586" y="244"/> + <use xlink:href="#glyph0-7" x="391.211914" y="244"/> + <use xlink:href="#glyph0-8" x="397.364258" y="244"/> + <use xlink:href="#glyph0-22" x="400.542969" y="244"/> + <use xlink:href="#glyph0-23" x="406.114258" y="244"/> + <use xlink:href="#glyph0-33" x="414.493164" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374 251 L 436 251 L 436 289 L 374 289 Z M 374 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="387" y="268"/> + <use xlink:href="#glyph0-34" x="393.030273" y="268"/> + <use xlink:href="#glyph0-8" x="400.349609" y="268"/> + <use xlink:href="#glyph0-22" x="403.52832" y="268"/> + <use xlink:href="#glyph0-23" x="409.099609" y="268"/> + <use xlink:href="#glyph0-33" x="417.478516" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="395" y="282"/> + <use xlink:href="#glyph0-23" x="401.030273" y="282"/> + <use xlink:href="#glyph0-33" x="409.40918" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 134 L 526 134 L 526 158 L 450 158 Z M 450 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="151"/> + <use xlink:href="#glyph0-25" x="462.571289" y="151"/> + <use xlink:href="#glyph0-8" x="468.933594" y="151"/> + <use xlink:href="#glyph0-9" x="472.112305" y="151"/> + <use xlink:href="#glyph0-10" x="476.013672" y="151"/> + <use xlink:href="#glyph0-12" x="482.375977" y="151"/> + <use xlink:href="#glyph0-25" x="488.738281" y="151"/> + <use xlink:href="#glyph0-30" x="495.100586" y="151"/> + <use xlink:href="#glyph0-14" x="501.658203" y="151"/> + <use xlink:href="#glyph0-18" x="508.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 165 L 526 165 L 526 189 L 450 189 Z M 450 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="182"/> + <use xlink:href="#glyph0-12" x="462.571289" y="182"/> + <use xlink:href="#glyph0-31" x="468.933594" y="182"/> + <use xlink:href="#glyph0-8" x="475.28125" y="182"/> + <use xlink:href="#glyph0-9" x="478.459961" y="182"/> + <use xlink:href="#glyph0-32" x="482.361328" y="182"/> + <use xlink:href="#glyph0-33" x="488.723633" y="182"/> + <use xlink:href="#glyph0-30" x="495.085938" y="182"/> + <use xlink:href="#glyph0-14" x="501.643555" y="182"/> + <use xlink:href="#glyph0-18" x="508.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 196 L 526 196 L 526 220 L 450 220 Z M 450 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="213"/> + <use xlink:href="#glyph0-12" x="462.571289" y="213"/> + <use xlink:href="#glyph0-5" x="468.933594" y="213"/> + <use xlink:href="#glyph0-8" x="471.711914" y="213"/> + <use xlink:href="#glyph0-9" x="474.890625" y="213"/> + <use xlink:href="#glyph0-32" x="478.791992" y="213"/> + <use xlink:href="#glyph0-33" x="485.154297" y="213"/> + <use xlink:href="#glyph0-30" x="491.516602" y="213"/> + <use xlink:href="#glyph0-14" x="498.074219" y="213"/> + <use xlink:href="#glyph0-18" x="504.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 227 L 526 227 L 526 296 L 450 296 Z M 450 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="457" y="244"/> + <use xlink:href="#glyph0-16" x="463.982422" y="244"/> + <use xlink:href="#glyph0-29" x="470.100586" y="244"/> + <use xlink:href="#glyph0-7" x="474.211914" y="244"/> + <use xlink:href="#glyph0-8" x="480.364258" y="244"/> + <use xlink:href="#glyph0-22" x="483.542969" y="244"/> + <use xlink:href="#glyph0-23" x="489.114258" y="244"/> + <use xlink:href="#glyph0-10" x="497.493164" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 457 251 L 519 251 L 519 289 L 457 289 Z M 457 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="471" y="268"/> + <use xlink:href="#glyph0-34" x="477.030273" y="268"/> + <use xlink:href="#glyph0-8" x="484.349609" y="268"/> + <use xlink:href="#glyph0-22" x="487.52832" y="268"/> + <use xlink:href="#glyph0-23" x="493.099609" y="268"/> + <use xlink:href="#glyph0-10" x="501.478516" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="479" y="282"/> + <use xlink:href="#glyph0-23" x="485.030273" y="282"/> + <use xlink:href="#glyph0-10" x="493.40918" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 134 L 609 134 L 609 158 L 533 158 Z M 533 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="151"/> + <use xlink:href="#glyph0-25" x="545.571289" y="151"/> + <use xlink:href="#glyph0-8" x="551.933594" y="151"/> + <use xlink:href="#glyph0-9" x="555.112305" y="151"/> + <use xlink:href="#glyph0-10" x="559.013672" y="151"/> + <use xlink:href="#glyph0-12" x="565.375977" y="151"/> + <use xlink:href="#glyph0-25" x="571.738281" y="151"/> + <use xlink:href="#glyph0-30" x="578.100586" y="151"/> + <use xlink:href="#glyph0-14" x="584.658203" y="151"/> + <use xlink:href="#glyph0-18" x="591.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 165 L 609 165 L 609 189 L 533 189 Z M 533 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="182"/> + <use xlink:href="#glyph0-12" x="545.571289" y="182"/> + <use xlink:href="#glyph0-31" x="551.933594" y="182"/> + <use xlink:href="#glyph0-8" x="558.28125" y="182"/> + <use xlink:href="#glyph0-9" x="561.459961" y="182"/> + <use xlink:href="#glyph0-32" x="565.361328" y="182"/> + <use xlink:href="#glyph0-33" x="571.723633" y="182"/> + <use xlink:href="#glyph0-30" x="578.085938" y="182"/> + <use xlink:href="#glyph0-14" x="584.643555" y="182"/> + <use xlink:href="#glyph0-18" x="591.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 196 L 609 196 L 609 220 L 533 220 Z M 533 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="213"/> + <use xlink:href="#glyph0-12" x="545.571289" y="213"/> + <use xlink:href="#glyph0-5" x="551.933594" y="213"/> + <use xlink:href="#glyph0-8" x="554.711914" y="213"/> + <use xlink:href="#glyph0-9" x="557.890625" y="213"/> + <use xlink:href="#glyph0-32" x="561.791992" y="213"/> + <use xlink:href="#glyph0-33" x="568.154297" y="213"/> + <use xlink:href="#glyph0-30" x="574.516602" y="213"/> + <use xlink:href="#glyph0-14" x="581.074219" y="213"/> + <use xlink:href="#glyph0-18" x="587.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 227 L 609 227 L 609 296 L 533 296 Z M 533 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="540" y="244"/> + <use xlink:href="#glyph0-16" x="546.982422" y="244"/> + <use xlink:href="#glyph0-29" x="553.100586" y="244"/> + <use xlink:href="#glyph0-7" x="557.211914" y="244"/> + <use xlink:href="#glyph0-8" x="563.364258" y="244"/> + <use xlink:href="#glyph0-22" x="566.542969" y="244"/> + <use xlink:href="#glyph0-23" x="572.114258" y="244"/> + <use xlink:href="#glyph0-32" x="580.493164" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 540 251 L 602 251 L 602 289 L 540 289 Z M 540 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="553" y="268"/> + <use xlink:href="#glyph0-34" x="559.030273" y="268"/> + <use xlink:href="#glyph0-8" x="566.349609" y="268"/> + <use xlink:href="#glyph0-22" x="569.52832" y="268"/> + <use xlink:href="#glyph0-23" x="575.099609" y="268"/> + <use xlink:href="#glyph0-32" x="583.478516" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="561" y="282"/> + <use xlink:href="#glyph0-23" x="567.030273" y="282"/> + <use xlink:href="#glyph0-32" x="575.40918" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 134 L 692 134 L 692 158 L 616 158 Z M 616 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="151"/> + <use xlink:href="#glyph0-25" x="628.571289" y="151"/> + <use xlink:href="#glyph0-8" x="634.933594" y="151"/> + <use xlink:href="#glyph0-9" x="638.112305" y="151"/> + <use xlink:href="#glyph0-10" x="642.013672" y="151"/> + <use xlink:href="#glyph0-12" x="648.375977" y="151"/> + <use xlink:href="#glyph0-25" x="654.738281" y="151"/> + <use xlink:href="#glyph0-30" x="661.100586" y="151"/> + <use xlink:href="#glyph0-14" x="667.658203" y="151"/> + <use xlink:href="#glyph0-18" x="674.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 165 L 692 165 L 692 189 L 616 189 Z M 616 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="182"/> + <use xlink:href="#glyph0-12" x="628.571289" y="182"/> + <use xlink:href="#glyph0-31" x="634.933594" y="182"/> + <use xlink:href="#glyph0-8" x="641.28125" y="182"/> + <use xlink:href="#glyph0-9" x="644.459961" y="182"/> + <use xlink:href="#glyph0-32" x="648.361328" y="182"/> + <use xlink:href="#glyph0-33" x="654.723633" y="182"/> + <use xlink:href="#glyph0-30" x="661.085938" y="182"/> + <use xlink:href="#glyph0-14" x="667.643555" y="182"/> + <use xlink:href="#glyph0-18" x="674.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 196 L 692 196 L 692 220 L 616 220 Z M 616 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="213"/> + <use xlink:href="#glyph0-12" x="628.571289" y="213"/> + <use xlink:href="#glyph0-5" x="634.933594" y="213"/> + <use xlink:href="#glyph0-8" x="637.711914" y="213"/> + <use xlink:href="#glyph0-9" x="640.890625" y="213"/> + <use xlink:href="#glyph0-32" x="644.791992" y="213"/> + <use xlink:href="#glyph0-33" x="651.154297" y="213"/> + <use xlink:href="#glyph0-30" x="657.516602" y="213"/> + <use xlink:href="#glyph0-14" x="664.074219" y="213"/> + <use xlink:href="#glyph0-18" x="670.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 227 L 692 227 L 692 296 L 616 296 Z M 616 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="623" y="244"/> + <use xlink:href="#glyph0-16" x="629.982422" y="244"/> + <use xlink:href="#glyph0-29" x="636.100586" y="244"/> + <use xlink:href="#glyph0-7" x="640.211914" y="244"/> + <use xlink:href="#glyph0-8" x="646.364258" y="244"/> + <use xlink:href="#glyph0-22" x="649.542969" y="244"/> + <use xlink:href="#glyph0-23" x="655.114258" y="244"/> + <use xlink:href="#glyph0-35" x="663.493164" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 623 251 L 685 251 L 685 289 L 623 289 Z M 623 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="636" y="268"/> + <use xlink:href="#glyph0-34" x="642.030273" y="268"/> + <use xlink:href="#glyph0-8" x="649.349609" y="268"/> + <use xlink:href="#glyph0-22" x="652.52832" y="268"/> + <use xlink:href="#glyph0-23" x="658.099609" y="268"/> + <use xlink:href="#glyph0-35" x="666.478516" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="645" y="282"/> + <use xlink:href="#glyph0-23" x="651.030273" y="282"/> + <use xlink:href="#glyph0-35" x="659.40918" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 706 117 L 713 117 L 713 124 L 706 124 Z M 706 117 "/> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 720 117 L 727 117 L 727 124 L 720 124 Z M 720 117 "/> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 734 117 L 741 117 L 741 124 L 734 124 Z M 734 117 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-36" x="706" y="138"/> + <use xlink:href="#glyph0-37" x="712.362305" y="138"/> + <use xlink:href="#glyph0-8" x="718.280273" y="138"/> + <use xlink:href="#glyph0-15" x="721.458984" y="138"/> + <use xlink:href="#glyph0-16" x="725.379883" y="138"/> + <use xlink:href="#glyph0-15" x="731.498047" y="138"/> + <use xlink:href="#glyph0-2" x="735.418945" y="138"/> + <use xlink:href="#glyph0-17" x="741.546875" y="138"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 749 110 L 1088 110 L 1088 303 L 749 303 Z M 749 110 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="756" y="127"/> + <use xlink:href="#glyph0-17" x="762.982422" y="127"/> + <use xlink:href="#glyph0-27" x="765.760742" y="127"/> + <use xlink:href="#glyph0-28" x="772.098633" y="127"/> + <use xlink:href="#glyph0-15" x="777.308594" y="127"/> + <use xlink:href="#glyph0-7" x="781.229492" y="127"/> + <use xlink:href="#glyph0-29" x="787.381836" y="127"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 134 L 832 134 L 832 158 L 756 158 Z M 756 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="151"/> + <use xlink:href="#glyph0-25" x="768.571289" y="151"/> + <use xlink:href="#glyph0-8" x="774.933594" y="151"/> + <use xlink:href="#glyph0-9" x="778.112305" y="151"/> + <use xlink:href="#glyph0-10" x="782.013672" y="151"/> + <use xlink:href="#glyph0-12" x="788.375977" y="151"/> + <use xlink:href="#glyph0-25" x="794.738281" y="151"/> + <use xlink:href="#glyph0-30" x="801.100586" y="151"/> + <use xlink:href="#glyph0-14" x="807.658203" y="151"/> + <use xlink:href="#glyph0-18" x="814.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 165 L 832 165 L 832 189 L 756 189 Z M 756 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="182"/> + <use xlink:href="#glyph0-12" x="768.571289" y="182"/> + <use xlink:href="#glyph0-31" x="774.933594" y="182"/> + <use xlink:href="#glyph0-8" x="781.28125" y="182"/> + <use xlink:href="#glyph0-9" x="784.459961" y="182"/> + <use xlink:href="#glyph0-32" x="788.361328" y="182"/> + <use xlink:href="#glyph0-33" x="794.723633" y="182"/> + <use xlink:href="#glyph0-30" x="801.085938" y="182"/> + <use xlink:href="#glyph0-14" x="807.643555" y="182"/> + <use xlink:href="#glyph0-18" x="814.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 196 L 832 196 L 832 220 L 756 220 Z M 756 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="213"/> + <use xlink:href="#glyph0-12" x="768.571289" y="213"/> + <use xlink:href="#glyph0-5" x="774.933594" y="213"/> + <use xlink:href="#glyph0-8" x="777.711914" y="213"/> + <use xlink:href="#glyph0-9" x="780.890625" y="213"/> + <use xlink:href="#glyph0-32" x="784.791992" y="213"/> + <use xlink:href="#glyph0-33" x="791.154297" y="213"/> + <use xlink:href="#glyph0-30" x="797.516602" y="213"/> + <use xlink:href="#glyph0-14" x="804.074219" y="213"/> + <use xlink:href="#glyph0-18" x="810.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 227 L 832 227 L 832 296 L 756 296 Z M 756 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="763" y="244"/> + <use xlink:href="#glyph0-16" x="769.982422" y="244"/> + <use xlink:href="#glyph0-29" x="776.100586" y="244"/> + <use xlink:href="#glyph0-7" x="780.211914" y="244"/> + <use xlink:href="#glyph0-8" x="786.364258" y="244"/> + <use xlink:href="#glyph0-22" x="789.542969" y="244"/> + <use xlink:href="#glyph0-23" x="795.114258" y="244"/> + <use xlink:href="#glyph0-25" x="803.493164" y="244"/> + <use xlink:href="#glyph0-36" x="809.855469" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 763 251 L 825 251 L 825 289 L 763 289 Z M 763 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="773" y="268"/> + <use xlink:href="#glyph0-34" x="779.030273" y="268"/> + <use xlink:href="#glyph0-8" x="786.349609" y="268"/> + <use xlink:href="#glyph0-22" x="789.52832" y="268"/> + <use xlink:href="#glyph0-23" x="795.099609" y="268"/> + <use xlink:href="#glyph0-25" x="803.478516" y="268"/> + <use xlink:href="#glyph0-36" x="809.84082" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="781" y="282"/> + <use xlink:href="#glyph0-23" x="787.030273" y="282"/> + <use xlink:href="#glyph0-25" x="795.40918" y="282"/> + <use xlink:href="#glyph0-36" x="801.771484" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 134 L 915 134 L 915 158 L 839 158 Z M 839 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="151"/> + <use xlink:href="#glyph0-25" x="851.571289" y="151"/> + <use xlink:href="#glyph0-8" x="857.933594" y="151"/> + <use xlink:href="#glyph0-9" x="861.112305" y="151"/> + <use xlink:href="#glyph0-10" x="865.013672" y="151"/> + <use xlink:href="#glyph0-12" x="871.375977" y="151"/> + <use xlink:href="#glyph0-25" x="877.738281" y="151"/> + <use xlink:href="#glyph0-30" x="884.100586" y="151"/> + <use xlink:href="#glyph0-14" x="890.658203" y="151"/> + <use xlink:href="#glyph0-18" x="897.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 165 L 915 165 L 915 189 L 839 189 Z M 839 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="182"/> + <use xlink:href="#glyph0-12" x="851.571289" y="182"/> + <use xlink:href="#glyph0-31" x="857.933594" y="182"/> + <use xlink:href="#glyph0-8" x="864.28125" y="182"/> + <use xlink:href="#glyph0-9" x="867.459961" y="182"/> + <use xlink:href="#glyph0-32" x="871.361328" y="182"/> + <use xlink:href="#glyph0-33" x="877.723633" y="182"/> + <use xlink:href="#glyph0-30" x="884.085938" y="182"/> + <use xlink:href="#glyph0-14" x="890.643555" y="182"/> + <use xlink:href="#glyph0-18" x="897.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 196 L 915 196 L 915 220 L 839 220 Z M 839 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="213"/> + <use xlink:href="#glyph0-12" x="851.571289" y="213"/> + <use xlink:href="#glyph0-5" x="857.933594" y="213"/> + <use xlink:href="#glyph0-8" x="860.711914" y="213"/> + <use xlink:href="#glyph0-9" x="863.890625" y="213"/> + <use xlink:href="#glyph0-32" x="867.791992" y="213"/> + <use xlink:href="#glyph0-33" x="874.154297" y="213"/> + <use xlink:href="#glyph0-30" x="880.516602" y="213"/> + <use xlink:href="#glyph0-14" x="887.074219" y="213"/> + <use xlink:href="#glyph0-18" x="893.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 227 L 915 227 L 915 296 L 839 296 Z M 839 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="846" y="244"/> + <use xlink:href="#glyph0-16" x="852.982422" y="244"/> + <use xlink:href="#glyph0-29" x="859.100586" y="244"/> + <use xlink:href="#glyph0-7" x="863.211914" y="244"/> + <use xlink:href="#glyph0-8" x="869.364258" y="244"/> + <use xlink:href="#glyph0-22" x="872.542969" y="244"/> + <use xlink:href="#glyph0-23" x="878.114258" y="244"/> + <use xlink:href="#glyph0-25" x="886.493164" y="244"/> + <use xlink:href="#glyph0-38" x="892.855469" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 846 251 L 908 251 L 908 289 L 846 289 Z M 846 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="856" y="268"/> + <use xlink:href="#glyph0-34" x="862.030273" y="268"/> + <use xlink:href="#glyph0-8" x="869.349609" y="268"/> + <use xlink:href="#glyph0-22" x="872.52832" y="268"/> + <use xlink:href="#glyph0-23" x="878.099609" y="268"/> + <use xlink:href="#glyph0-25" x="886.478516" y="268"/> + <use xlink:href="#glyph0-38" x="892.84082" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="864" y="282"/> + <use xlink:href="#glyph0-23" x="870.030273" y="282"/> + <use xlink:href="#glyph0-25" x="878.40918" y="282"/> + <use xlink:href="#glyph0-38" x="884.771484" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 134 L 998 134 L 998 158 L 922 158 Z M 922 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="151"/> + <use xlink:href="#glyph0-25" x="934.571289" y="151"/> + <use xlink:href="#glyph0-8" x="940.933594" y="151"/> + <use xlink:href="#glyph0-9" x="944.112305" y="151"/> + <use xlink:href="#glyph0-10" x="948.013672" y="151"/> + <use xlink:href="#glyph0-12" x="954.375977" y="151"/> + <use xlink:href="#glyph0-25" x="960.738281" y="151"/> + <use xlink:href="#glyph0-30" x="967.100586" y="151"/> + <use xlink:href="#glyph0-14" x="973.658203" y="151"/> + <use xlink:href="#glyph0-18" x="980.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 165 L 998 165 L 998 189 L 922 189 Z M 922 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="182"/> + <use xlink:href="#glyph0-12" x="934.571289" y="182"/> + <use xlink:href="#glyph0-31" x="940.933594" y="182"/> + <use xlink:href="#glyph0-8" x="947.28125" y="182"/> + <use xlink:href="#glyph0-9" x="950.459961" y="182"/> + <use xlink:href="#glyph0-32" x="954.361328" y="182"/> + <use xlink:href="#glyph0-33" x="960.723633" y="182"/> + <use xlink:href="#glyph0-30" x="967.085938" y="182"/> + <use xlink:href="#glyph0-14" x="973.643555" y="182"/> + <use xlink:href="#glyph0-18" x="980.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 196 L 998 196 L 998 220 L 922 220 Z M 922 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="213"/> + <use xlink:href="#glyph0-12" x="934.571289" y="213"/> + <use xlink:href="#glyph0-5" x="940.933594" y="213"/> + <use xlink:href="#glyph0-8" x="943.711914" y="213"/> + <use xlink:href="#glyph0-9" x="946.890625" y="213"/> + <use xlink:href="#glyph0-32" x="950.791992" y="213"/> + <use xlink:href="#glyph0-33" x="957.154297" y="213"/> + <use xlink:href="#glyph0-30" x="963.516602" y="213"/> + <use xlink:href="#glyph0-14" x="970.074219" y="213"/> + <use xlink:href="#glyph0-18" x="976.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 227 L 998 227 L 998 296 L 922 296 Z M 922 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="929" y="244"/> + <use xlink:href="#glyph0-16" x="935.982422" y="244"/> + <use xlink:href="#glyph0-29" x="942.100586" y="244"/> + <use xlink:href="#glyph0-7" x="946.211914" y="244"/> + <use xlink:href="#glyph0-8" x="952.364258" y="244"/> + <use xlink:href="#glyph0-22" x="955.542969" y="244"/> + <use xlink:href="#glyph0-23" x="961.114258" y="244"/> + <use xlink:href="#glyph0-24" x="969.493164" y="244"/> + <use xlink:href="#glyph0-11" x="975.855469" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 929 251 L 991 251 L 991 289 L 929 289 Z M 929 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="939" y="268"/> + <use xlink:href="#glyph0-34" x="945.030273" y="268"/> + <use xlink:href="#glyph0-8" x="952.349609" y="268"/> + <use xlink:href="#glyph0-22" x="955.52832" y="268"/> + <use xlink:href="#glyph0-23" x="961.099609" y="268"/> + <use xlink:href="#glyph0-24" x="969.478516" y="268"/> + <use xlink:href="#glyph0-11" x="975.84082" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="947" y="282"/> + <use xlink:href="#glyph0-23" x="953.030273" y="282"/> + <use xlink:href="#glyph0-24" x="961.40918" y="282"/> + <use xlink:href="#glyph0-11" x="967.771484" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 134 L 1081 134 L 1081 158 L 1005 158 Z M 1005 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="151"/> + <use xlink:href="#glyph0-25" x="1017.571289" y="151"/> + <use xlink:href="#glyph0-8" x="1023.933594" y="151"/> + <use xlink:href="#glyph0-9" x="1027.112305" y="151"/> + <use xlink:href="#glyph0-10" x="1031.013672" y="151"/> + <use xlink:href="#glyph0-12" x="1037.375977" y="151"/> + <use xlink:href="#glyph0-25" x="1043.738281" y="151"/> + <use xlink:href="#glyph0-30" x="1050.100586" y="151"/> + <use xlink:href="#glyph0-14" x="1056.658203" y="151"/> + <use xlink:href="#glyph0-18" x="1063.518555" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 165 L 1081 165 L 1081 189 L 1005 189 Z M 1005 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="182"/> + <use xlink:href="#glyph0-12" x="1017.571289" y="182"/> + <use xlink:href="#glyph0-31" x="1023.933594" y="182"/> + <use xlink:href="#glyph0-8" x="1030.28125" y="182"/> + <use xlink:href="#glyph0-9" x="1033.459961" y="182"/> + <use xlink:href="#glyph0-32" x="1037.361328" y="182"/> + <use xlink:href="#glyph0-33" x="1043.723633" y="182"/> + <use xlink:href="#glyph0-30" x="1050.085938" y="182"/> + <use xlink:href="#glyph0-14" x="1056.643555" y="182"/> + <use xlink:href="#glyph0-18" x="1063.503906" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 196 L 1081 196 L 1081 220 L 1005 220 Z M 1005 196 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="213"/> + <use xlink:href="#glyph0-12" x="1017.571289" y="213"/> + <use xlink:href="#glyph0-5" x="1023.933594" y="213"/> + <use xlink:href="#glyph0-8" x="1026.711914" y="213"/> + <use xlink:href="#glyph0-9" x="1029.890625" y="213"/> + <use xlink:href="#glyph0-32" x="1033.791992" y="213"/> + <use xlink:href="#glyph0-33" x="1040.154297" y="213"/> + <use xlink:href="#glyph0-30" x="1046.516602" y="213"/> + <use xlink:href="#glyph0-14" x="1053.074219" y="213"/> + <use xlink:href="#glyph0-18" x="1059.93457" y="213"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 227 L 1081 227 L 1081 296 L 1005 296 Z M 1005 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="1012" y="244"/> + <use xlink:href="#glyph0-16" x="1018.982422" y="244"/> + <use xlink:href="#glyph0-29" x="1025.100586" y="244"/> + <use xlink:href="#glyph0-7" x="1029.211914" y="244"/> + <use xlink:href="#glyph0-8" x="1035.364258" y="244"/> + <use xlink:href="#glyph0-22" x="1038.542969" y="244"/> + <use xlink:href="#glyph0-23" x="1044.114258" y="244"/> + <use xlink:href="#glyph0-24" x="1052.493164" y="244"/> + <use xlink:href="#glyph0-12" x="1058.855469" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1012 251 L 1074 251 L 1074 289 L 1012 289 Z M 1012 251 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1022" y="268"/> + <use xlink:href="#glyph0-34" x="1028.030273" y="268"/> + <use xlink:href="#glyph0-8" x="1035.349609" y="268"/> + <use xlink:href="#glyph0-22" x="1038.52832" y="268"/> + <use xlink:href="#glyph0-23" x="1044.099609" y="268"/> + <use xlink:href="#glyph0-24" x="1052.478516" y="268"/> + <use xlink:href="#glyph0-12" x="1058.84082" y="268"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1030" y="282"/> + <use xlink:href="#glyph0-23" x="1036.030273" y="282"/> + <use xlink:href="#glyph0-24" x="1044.40918" y="282"/> + <use xlink:href="#glyph0-12" x="1050.771484" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(93.725491%,87.450981%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 48 L 1739 48 L 1739 72 L 14 72 Z M 14 48 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="21" y="65"/> + <use xlink:href="#glyph0-34" x="28.480469" y="65"/> + <use xlink:href="#glyph0-1" x="35.799805" y="65"/> + <use xlink:href="#glyph0-40" x="44.427734" y="65"/> + <use xlink:href="#glyph0-39" x="51.268555" y="65"/> + <use xlink:href="#glyph0-16" x="58.749023" y="65"/> + <use xlink:href="#glyph0-31" x="64.867188" y="65"/> + <use xlink:href="#glyph0-7" x="71.214844" y="65"/> + <use xlink:href="#glyph0-8" x="77.367188" y="65"/> + <use xlink:href="#glyph0-22" x="80.545898" y="65"/> + <use xlink:href="#glyph0-23" x="86.117188" y="65"/> + <use xlink:href="#glyph0-11" x="94.496094" y="65"/> + <use xlink:href="#glyph0-8" x="100.858398" y="65"/> + <use xlink:href="#glyph0-19" x="104.037109" y="65"/> + <use xlink:href="#glyph0-23" x="110.067383" y="65"/> + <use xlink:href="#glyph0-11" x="118.446289" y="65"/> + <use xlink:href="#glyph0-8" x="124.808594" y="65"/> + <use xlink:href="#glyph0-9" x="127.987305" y="65"/> + <use xlink:href="#glyph0-12" x="131.888672" y="65"/> + <use xlink:href="#glyph0-25" x="138.250977" y="65"/> + <use xlink:href="#glyph0-10" x="144.613281" y="65"/> + <use xlink:href="#glyph0-13" x="150.975586" y="65"/> + <use xlink:href="#glyph0-14" x="158.724609" y="65"/> + <use xlink:href="#glyph0-18" x="165.584961" y="65"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1095 110 L 1102 110 L 1102 117 L 1095 117 Z M 1095 110 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1102 113 L 1109 113 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1109 113 L 1133 113 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-35" x="1112" y="126"/> + <use xlink:href="#glyph0-41" x="1118.362305" y="126"/> + <use xlink:href="#glyph0-38" x="1121.541016" y="126"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1109 144 L 1133 144 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-33" x="1112" y="157"/> + <use xlink:href="#glyph0-41" x="1118.362305" y="157"/> + <use xlink:href="#glyph0-11" x="1121.541016" y="157"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1109 268 L 1133 268 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1112" y="281"/> + <use xlink:href="#glyph0-41" x="1118.362305" y="281"/> + <use xlink:href="#glyph0-25" x="1121.541016" y="281"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1109 113 L 1109 268 "/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1133 110 L 1140 110 L 1140 117 L 1133 117 Z M 1133 110 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1140 113 L 1147 113 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1147 113 L 1171 113 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-35" x="1150" y="126"/> + <use xlink:href="#glyph0-41" x="1156.362305" y="126"/> + <use xlink:href="#glyph0-38" x="1159.541016" y="126"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1147 113 L 1147 113 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1171 110 L 1240 110 L 1240 134 L 1171 134 Z M 1171 110 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1178" y="127"/> + <use xlink:href="#glyph0-26" x="1184.030273" y="127"/> + <use xlink:href="#glyph0-42" x="1191.012695" y="127"/> + <use xlink:href="#glyph0-8" x="1193.961914" y="127"/> + <use xlink:href="#glyph0-11" x="1197.140625" y="127"/> + <use xlink:href="#glyph0-24" x="1203.50293" y="127"/> + <use xlink:href="#glyph0-43" x="1209.865234" y="127"/> + <use xlink:href="#glyph0-11" x="1213.234375" y="127"/> + <use xlink:href="#glyph0-11" x="1219.59668" y="127"/> + <use xlink:href="#glyph0-41" x="1225.958984" y="127"/> + <use xlink:href="#glyph0-11" x="1229.137695" y="127"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1133 141 L 1140 141 L 1140 148 L 1133 148 Z M 1133 141 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1140 144 L 1147 144 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1147 144 L 1171 144 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-33" x="1150" y="157"/> + <use xlink:href="#glyph0-41" x="1156.362305" y="157"/> + <use xlink:href="#glyph0-11" x="1159.541016" y="157"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1147 206 L 1171 206 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-33" x="1150" y="219"/> + <use xlink:href="#glyph0-41" x="1156.362305" y="219"/> + <use xlink:href="#glyph0-11" x="1159.541016" y="219"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1147 144 L 1147 206 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1171 141 L 1264 141 L 1264 196 L 1171 196 Z M 1171 141 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1178" y="158"/> + <use xlink:href="#glyph0-26" x="1184.030273" y="158"/> + <use xlink:href="#glyph0-42" x="1191.012695" y="158"/> + <use xlink:href="#glyph0-8" x="1193.961914" y="158"/> + <use xlink:href="#glyph0-11" x="1197.140625" y="158"/> + <use xlink:href="#glyph0-33" x="1203.50293" y="158"/> + <use xlink:href="#glyph0-43" x="1209.865234" y="158"/> + <use xlink:href="#glyph0-11" x="1213.234375" y="158"/> + <use xlink:href="#glyph0-11" x="1219.59668" y="158"/> + <use xlink:href="#glyph0-41" x="1225.958984" y="158"/> + <use xlink:href="#glyph0-11" x="1229.137695" y="158"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1178 165 L 1257 165 L 1257 189 L 1178 189 Z M 1178 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1185" y="182"/> + <use xlink:href="#glyph0-7" x="1192.480469" y="182"/> + <use xlink:href="#glyph0-15" x="1198.632812" y="182"/> + <use xlink:href="#glyph0-8" x="1202.553711" y="182"/> + <use xlink:href="#glyph0-7" x="1205.732422" y="182"/> + <use xlink:href="#glyph0-6" x="1211.884766" y="182"/> + <use xlink:href="#glyph0-44" x="1218.222656" y="182"/> + <use xlink:href="#glyph0-33" x="1224.570312" y="182"/> + <use xlink:href="#glyph0-28" x="1230.932617" y="182"/> + <use xlink:href="#glyph0-11" x="1236.142578" y="182"/> + <use xlink:href="#glyph0-45" x="1242.504883" y="182"/> + <use xlink:href="#glyph0-11" x="1246.025391" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1171 203 L 1264 203 L 1264 258 L 1171 258 Z M 1171 203 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1178" y="220"/> + <use xlink:href="#glyph0-26" x="1184.030273" y="220"/> + <use xlink:href="#glyph0-42" x="1191.012695" y="220"/> + <use xlink:href="#glyph0-8" x="1193.961914" y="220"/> + <use xlink:href="#glyph0-11" x="1197.140625" y="220"/> + <use xlink:href="#glyph0-33" x="1203.50293" y="220"/> + <use xlink:href="#glyph0-43" x="1209.865234" y="220"/> + <use xlink:href="#glyph0-11" x="1213.234375" y="220"/> + <use xlink:href="#glyph0-11" x="1219.59668" y="220"/> + <use xlink:href="#glyph0-41" x="1225.958984" y="220"/> + <use xlink:href="#glyph0-12" x="1229.137695" y="220"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1178 227 L 1257 227 L 1257 251 L 1178 251 Z M 1178 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1185" y="244"/> + <use xlink:href="#glyph0-7" x="1192.480469" y="244"/> + <use xlink:href="#glyph0-15" x="1198.632812" y="244"/> + <use xlink:href="#glyph0-8" x="1202.553711" y="244"/> + <use xlink:href="#glyph0-7" x="1205.732422" y="244"/> + <use xlink:href="#glyph0-6" x="1211.884766" y="244"/> + <use xlink:href="#glyph0-44" x="1218.222656" y="244"/> + <use xlink:href="#glyph0-33" x="1224.570312" y="244"/> + <use xlink:href="#glyph0-28" x="1230.932617" y="244"/> + <use xlink:href="#glyph0-11" x="1236.142578" y="244"/> + <use xlink:href="#glyph0-45" x="1242.504883" y="244"/> + <use xlink:href="#glyph0-12" x="1246.025391" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1133 265 L 1140 265 L 1140 272 L 1133 272 Z M 1133 265 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1140 268 L 1147 268 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1147 268 L 1171 268 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1150" y="281"/> + <use xlink:href="#glyph0-41" x="1156.362305" y="281"/> + <use xlink:href="#glyph0-25" x="1159.541016" y="281"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1147 268 L 1147 268 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1171 265 L 1240 265 L 1240 289 L 1171 289 Z M 1171 265 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1178" y="282"/> + <use xlink:href="#glyph0-26" x="1184.030273" y="282"/> + <use xlink:href="#glyph0-42" x="1191.012695" y="282"/> + <use xlink:href="#glyph0-8" x="1193.961914" y="282"/> + <use xlink:href="#glyph0-11" x="1197.140625" y="282"/> + <use xlink:href="#glyph0-32" x="1203.50293" y="282"/> + <use xlink:href="#glyph0-43" x="1209.865234" y="282"/> + <use xlink:href="#glyph0-11" x="1213.234375" y="282"/> + <use xlink:href="#glyph0-11" x="1219.59668" y="282"/> + <use xlink:href="#glyph0-41" x="1225.958984" y="282"/> + <use xlink:href="#glyph0-11" x="1229.137695" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1271 110 L 1278 110 L 1278 117 L 1271 117 Z M 1271 110 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1278 113 L 1285 113 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1285 113 L 1309 113 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1288" y="126"/> + <use xlink:href="#glyph0-41" x="1294.362305" y="126"/> + <use xlink:href="#glyph0-25" x="1297.541016" y="126"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1285 144 L 1309 144 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1288" y="157"/> + <use xlink:href="#glyph0-41" x="1294.362305" y="157"/> + <use xlink:href="#glyph0-25" x="1297.541016" y="157"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1285 175 L 1309 175 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1288" y="188"/> + <use xlink:href="#glyph0-41" x="1294.362305" y="188"/> + <use xlink:href="#glyph0-25" x="1297.541016" y="188"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1285 206 L 1309 206 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1288" y="219"/> + <use xlink:href="#glyph0-41" x="1294.362305" y="219"/> + <use xlink:href="#glyph0-25" x="1297.541016" y="219"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1285 113 L 1285 206 "/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1309 110 L 1316 110 L 1316 117 L 1309 117 Z M 1309 110 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1316 113 L 1323 113 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1323 113 L 1347 113 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1326" y="126"/> + <use xlink:href="#glyph0-41" x="1332.362305" y="126"/> + <use xlink:href="#glyph0-25" x="1335.541016" y="126"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1323 113 L 1323 113 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1347 110 L 1416 110 L 1416 134 L 1347 134 Z M 1347 110 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1354" y="127"/> + <use xlink:href="#glyph0-26" x="1360.030273" y="127"/> + <use xlink:href="#glyph0-42" x="1367.012695" y="127"/> + <use xlink:href="#glyph0-8" x="1369.961914" y="127"/> + <use xlink:href="#glyph0-35" x="1373.140625" y="127"/> + <use xlink:href="#glyph0-10" x="1379.50293" y="127"/> + <use xlink:href="#glyph0-43" x="1385.865234" y="127"/> + <use xlink:href="#glyph0-11" x="1389.234375" y="127"/> + <use xlink:href="#glyph0-11" x="1395.59668" y="127"/> + <use xlink:href="#glyph0-41" x="1401.958984" y="127"/> + <use xlink:href="#glyph0-11" x="1405.137695" y="127"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1309 141 L 1378 141 L 1378 165 L 1309 165 Z M 1309 141 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1316" y="158"/> + <use xlink:href="#glyph0-26" x="1322.030273" y="158"/> + <use xlink:href="#glyph0-42" x="1329.012695" y="158"/> + <use xlink:href="#glyph0-8" x="1331.961914" y="158"/> + <use xlink:href="#glyph0-35" x="1335.140625" y="158"/> + <use xlink:href="#glyph0-33" x="1341.50293" y="158"/> + <use xlink:href="#glyph0-43" x="1347.865234" y="158"/> + <use xlink:href="#glyph0-11" x="1351.234375" y="158"/> + <use xlink:href="#glyph0-25" x="1357.59668" y="158"/> + <use xlink:href="#glyph0-41" x="1363.958984" y="158"/> + <use xlink:href="#glyph0-11" x="1367.137695" y="158"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1309 172 L 1378 172 L 1378 196 L 1309 196 Z M 1309 172 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1316" y="189"/> + <use xlink:href="#glyph0-26" x="1322.030273" y="189"/> + <use xlink:href="#glyph0-42" x="1329.012695" y="189"/> + <use xlink:href="#glyph0-8" x="1331.961914" y="189"/> + <use xlink:href="#glyph0-35" x="1335.140625" y="189"/> + <use xlink:href="#glyph0-33" x="1341.50293" y="189"/> + <use xlink:href="#glyph0-43" x="1347.865234" y="189"/> + <use xlink:href="#glyph0-11" x="1351.234375" y="189"/> + <use xlink:href="#glyph0-24" x="1357.59668" y="189"/> + <use xlink:href="#glyph0-41" x="1363.958984" y="189"/> + <use xlink:href="#glyph0-11" x="1367.137695" y="189"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1309 203 L 1378 203 L 1378 227 L 1309 227 Z M 1309 203 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1316" y="220"/> + <use xlink:href="#glyph0-26" x="1322.030273" y="220"/> + <use xlink:href="#glyph0-42" x="1329.012695" y="220"/> + <use xlink:href="#glyph0-8" x="1331.961914" y="220"/> + <use xlink:href="#glyph0-35" x="1335.140625" y="220"/> + <use xlink:href="#glyph0-33" x="1341.50293" y="220"/> + <use xlink:href="#glyph0-43" x="1347.865234" y="220"/> + <use xlink:href="#glyph0-11" x="1351.234375" y="220"/> + <use xlink:href="#glyph0-33" x="1357.59668" y="220"/> + <use xlink:href="#glyph0-41" x="1363.958984" y="220"/> + <use xlink:href="#glyph0-11" x="1367.137695" y="220"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1423 110 L 1430 110 L 1430 117 L 1423 117 Z M 1423 110 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1430 113 L 1437 113 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1437 113 L 1461 113 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1440" y="126"/> + <use xlink:href="#glyph0-41" x="1446.362305" y="126"/> + <use xlink:href="#glyph0-25" x="1449.541016" y="126"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1437 113 L 1437 113 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1461 110 L 1530 110 L 1530 134 L 1461 134 Z M 1461 110 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1468" y="127"/> + <use xlink:href="#glyph0-26" x="1474.030273" y="127"/> + <use xlink:href="#glyph0-42" x="1481.012695" y="127"/> + <use xlink:href="#glyph0-8" x="1483.961914" y="127"/> + <use xlink:href="#glyph0-35" x="1487.140625" y="127"/> + <use xlink:href="#glyph0-36" x="1493.50293" y="127"/> + <use xlink:href="#glyph0-43" x="1499.865234" y="127"/> + <use xlink:href="#glyph0-11" x="1503.234375" y="127"/> + <use xlink:href="#glyph0-12" x="1509.59668" y="127"/> + <use xlink:href="#glyph0-41" x="1515.958984" y="127"/> + <use xlink:href="#glyph0-11" x="1519.137695" y="127"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1537 110 L 1544 110 L 1544 117 L 1537 117 Z M 1537 110 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1544 113 L 1551 113 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1551 113 L 1575 113 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1554" y="126"/> + <use xlink:href="#glyph0-41" x="1560.362305" y="126"/> + <use xlink:href="#glyph0-25" x="1563.541016" y="126"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1551 113 L 1551 113 "/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1575 110 L 1582 110 L 1582 117 L 1575 117 Z M 1575 110 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1582 113 L 1589 113 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1589 113 L 1613 113 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1592" y="126"/> + <use xlink:href="#glyph0-41" x="1598.362305" y="126"/> + <use xlink:href="#glyph0-25" x="1601.541016" y="126"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1589 206 L 1613 206 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1592" y="219"/> + <use xlink:href="#glyph0-41" x="1598.362305" y="219"/> + <use xlink:href="#glyph0-25" x="1601.541016" y="219"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1589 268 L 1613 268 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1592" y="281"/> + <use xlink:href="#glyph0-41" x="1598.362305" y="281"/> + <use xlink:href="#glyph0-25" x="1601.541016" y="281"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1589 361 L 1613 361 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1592" y="374"/> + <use xlink:href="#glyph0-41" x="1598.362305" y="374"/> + <use xlink:href="#glyph0-25" x="1601.541016" y="374"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1589 113 L 1589 361 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1613 110 L 1739 110 L 1739 196 L 1613 196 Z M 1613 110 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1620" y="127"/> + <use xlink:href="#glyph0-26" x="1626.030273" y="127"/> + <use xlink:href="#glyph0-42" x="1633.012695" y="127"/> + <use xlink:href="#glyph0-8" x="1635.961914" y="127"/> + <use xlink:href="#glyph0-35" x="1639.140625" y="127"/> + <use xlink:href="#glyph0-31" x="1645.50293" y="127"/> + <use xlink:href="#glyph0-43" x="1651.850586" y="127"/> + <use xlink:href="#glyph0-11" x="1655.219727" y="127"/> + <use xlink:href="#glyph0-11" x="1661.582031" y="127"/> + <use xlink:href="#glyph0-41" x="1667.944336" y="127"/> + <use xlink:href="#glyph0-11" x="1671.123047" y="127"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1620 134 L 1677 134 L 1677 158 L 1620 158 Z M 1620 134 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1627" y="151"/> + <use xlink:href="#glyph0-7" x="1634.480469" y="151"/> + <use xlink:href="#glyph0-15" x="1640.632812" y="151"/> + <use xlink:href="#glyph0-8" x="1644.553711" y="151"/> + <use xlink:href="#glyph0-7" x="1647.732422" y="151"/> + <use xlink:href="#glyph0-6" x="1653.884766" y="151"/> + <use xlink:href="#glyph0-16" x="1660.222656" y="151"/> + <use xlink:href="#glyph0-12" x="1666.34082" y="151"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1620 165 L 1732 165 L 1732 189 L 1620 189 Z M 1620 165 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-46" x="1627" y="182"/> + <use xlink:href="#glyph0-44" x="1634.871094" y="182"/> + <use xlink:href="#glyph0-7" x="1641.21875" y="182"/> + <use xlink:href="#glyph0-6" x="1647.371094" y="182"/> + <use xlink:href="#glyph0-47" x="1653.708984" y="182"/> + <use xlink:href="#glyph0-2" x="1659.460938" y="182"/> + <use xlink:href="#glyph0-48" x="1665.588867" y="182"/> + <use xlink:href="#glyph0-29" x="1671.936523" y="182"/> + <use xlink:href="#glyph0-5" x="1676.047852" y="182"/> + <use xlink:href="#glyph0-3" x="1678.826172" y="182"/> + <use xlink:href="#glyph0-28" x="1684.324219" y="182"/> + <use xlink:href="#glyph0-8" x="1689.53418" y="182"/> + <use xlink:href="#glyph0-29" x="1692.712891" y="182"/> + <use xlink:href="#glyph0-16" x="1696.824219" y="182"/> + <use xlink:href="#glyph0-3" x="1702.942383" y="182"/> + <use xlink:href="#glyph0-7" x="1708.44043" y="182"/> + <use xlink:href="#glyph0-16" x="1714.592773" y="182"/> + <use xlink:href="#glyph0-12" x="1720.710938" y="182"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1613 203 L 1684 203 L 1684 258 L 1613 258 Z M 1613 203 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1620" y="220"/> + <use xlink:href="#glyph0-26" x="1626.030273" y="220"/> + <use xlink:href="#glyph0-42" x="1633.012695" y="220"/> + <use xlink:href="#glyph0-8" x="1635.961914" y="220"/> + <use xlink:href="#glyph0-35" x="1639.140625" y="220"/> + <use xlink:href="#glyph0-31" x="1645.50293" y="220"/> + <use xlink:href="#glyph0-43" x="1651.850586" y="220"/> + <use xlink:href="#glyph0-11" x="1655.219727" y="220"/> + <use xlink:href="#glyph0-11" x="1661.582031" y="220"/> + <use xlink:href="#glyph0-41" x="1667.944336" y="220"/> + <use xlink:href="#glyph0-12" x="1671.123047" y="220"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1620 227 L 1677 227 L 1677 251 L 1620 251 Z M 1620 227 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1627" y="244"/> + <use xlink:href="#glyph0-7" x="1634.480469" y="244"/> + <use xlink:href="#glyph0-15" x="1640.632812" y="244"/> + <use xlink:href="#glyph0-8" x="1644.553711" y="244"/> + <use xlink:href="#glyph0-7" x="1647.732422" y="244"/> + <use xlink:href="#glyph0-6" x="1653.884766" y="244"/> + <use xlink:href="#glyph0-16" x="1660.222656" y="244"/> + <use xlink:href="#glyph0-25" x="1666.34082" y="244"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1613 265 L 1739 265 L 1739 351 L 1613 351 Z M 1613 265 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1620" y="282"/> + <use xlink:href="#glyph0-26" x="1626.030273" y="282"/> + <use xlink:href="#glyph0-42" x="1633.012695" y="282"/> + <use xlink:href="#glyph0-8" x="1635.961914" y="282"/> + <use xlink:href="#glyph0-35" x="1639.140625" y="282"/> + <use xlink:href="#glyph0-31" x="1645.50293" y="282"/> + <use xlink:href="#glyph0-43" x="1651.850586" y="282"/> + <use xlink:href="#glyph0-11" x="1655.219727" y="282"/> + <use xlink:href="#glyph0-11" x="1661.582031" y="282"/> + <use xlink:href="#glyph0-41" x="1667.944336" y="282"/> + <use xlink:href="#glyph0-25" x="1671.123047" y="282"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1620 289 L 1677 289 L 1677 313 L 1620 313 Z M 1620 289 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1627" y="306"/> + <use xlink:href="#glyph0-7" x="1634.480469" y="306"/> + <use xlink:href="#glyph0-15" x="1640.632812" y="306"/> + <use xlink:href="#glyph0-8" x="1644.553711" y="306"/> + <use xlink:href="#glyph0-7" x="1647.732422" y="306"/> + <use xlink:href="#glyph0-6" x="1653.884766" y="306"/> + <use xlink:href="#glyph0-16" x="1660.222656" y="306"/> + <use xlink:href="#glyph0-24" x="1666.34082" y="306"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1620 320 L 1732 320 L 1732 344 L 1620 344 Z M 1620 320 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-46" x="1627" y="337"/> + <use xlink:href="#glyph0-44" x="1634.871094" y="337"/> + <use xlink:href="#glyph0-7" x="1641.21875" y="337"/> + <use xlink:href="#glyph0-6" x="1647.371094" y="337"/> + <use xlink:href="#glyph0-47" x="1653.708984" y="337"/> + <use xlink:href="#glyph0-2" x="1659.460938" y="337"/> + <use xlink:href="#glyph0-48" x="1665.588867" y="337"/> + <use xlink:href="#glyph0-29" x="1671.936523" y="337"/> + <use xlink:href="#glyph0-5" x="1676.047852" y="337"/> + <use xlink:href="#glyph0-3" x="1678.826172" y="337"/> + <use xlink:href="#glyph0-28" x="1684.324219" y="337"/> + <use xlink:href="#glyph0-8" x="1689.53418" y="337"/> + <use xlink:href="#glyph0-29" x="1692.712891" y="337"/> + <use xlink:href="#glyph0-16" x="1696.824219" y="337"/> + <use xlink:href="#glyph0-3" x="1702.942383" y="337"/> + <use xlink:href="#glyph0-7" x="1708.44043" y="337"/> + <use xlink:href="#glyph0-16" x="1714.592773" y="337"/> + <use xlink:href="#glyph0-24" x="1720.710938" y="337"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1613 358 L 1685 358 L 1685 413 L 1613 413 Z M 1613 358 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1620" y="375"/> + <use xlink:href="#glyph0-26" x="1626.030273" y="375"/> + <use xlink:href="#glyph0-42" x="1633.012695" y="375"/> + <use xlink:href="#glyph0-8" x="1635.961914" y="375"/> + <use xlink:href="#glyph0-35" x="1639.140625" y="375"/> + <use xlink:href="#glyph0-31" x="1645.50293" y="375"/> + <use xlink:href="#glyph0-43" x="1651.850586" y="375"/> + <use xlink:href="#glyph0-11" x="1655.219727" y="375"/> + <use xlink:href="#glyph0-11" x="1661.582031" y="375"/> + <use xlink:href="#glyph0-41" x="1667.944336" y="375"/> + <use xlink:href="#glyph0-24" x="1671.123047" y="375"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1620 382 L 1678 382 L 1678 406 L 1620 406 Z M 1620 382 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1627" y="399"/> + <use xlink:href="#glyph0-7" x="1634.480469" y="399"/> + <use xlink:href="#glyph0-15" x="1640.632812" y="399"/> + <use xlink:href="#glyph0-8" x="1644.553711" y="399"/> + <use xlink:href="#glyph0-7" x="1647.732422" y="399"/> + <use xlink:href="#glyph0-6" x="1653.884766" y="399"/> + <use xlink:href="#glyph0-16" x="1660.222656" y="399"/> + <use xlink:href="#glyph0-33" x="1666.34082" y="399"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 451 L 1088 451 L 1088 475 L 14 475 Z M 14 451 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="21" y="468"/> + <use xlink:href="#glyph0-24" x="26.571289" y="468"/> + <use xlink:href="#glyph0-8" x="32.933594" y="468"/> + <use xlink:href="#glyph0-9" x="36.112305" y="468"/> + <use xlink:href="#glyph0-24" x="40.013672" y="468"/> + <use xlink:href="#glyph0-25" x="46.375977" y="468"/> + <use xlink:href="#glyph0-1" x="52.738281" y="468"/> + <use xlink:href="#glyph0-14" x="61.366211" y="468"/> + <use xlink:href="#glyph0-18" x="68.226562" y="468"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 482 L 353 482 L 353 675 L 14 675 Z M 14 482 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="21" y="499"/> + <use xlink:href="#glyph0-17" x="27.982422" y="499"/> + <use xlink:href="#glyph0-27" x="30.760742" y="499"/> + <use xlink:href="#glyph0-28" x="37.098633" y="499"/> + <use xlink:href="#glyph0-15" x="42.308594" y="499"/> + <use xlink:href="#glyph0-7" x="46.229492" y="499"/> + <use xlink:href="#glyph0-29" x="52.381836" y="499"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 506 L 97 506 L 97 530 L 21 530 Z M 21 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="523"/> + <use xlink:href="#glyph0-25" x="33.571289" y="523"/> + <use xlink:href="#glyph0-8" x="39.933594" y="523"/> + <use xlink:href="#glyph0-9" x="43.112305" y="523"/> + <use xlink:href="#glyph0-10" x="47.013672" y="523"/> + <use xlink:href="#glyph0-12" x="53.375977" y="523"/> + <use xlink:href="#glyph0-25" x="59.738281" y="523"/> + <use xlink:href="#glyph0-30" x="66.100586" y="523"/> + <use xlink:href="#glyph0-14" x="72.658203" y="523"/> + <use xlink:href="#glyph0-18" x="79.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 537 L 97 537 L 97 561 L 21 561 Z M 21 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="554"/> + <use xlink:href="#glyph0-12" x="33.571289" y="554"/> + <use xlink:href="#glyph0-31" x="39.933594" y="554"/> + <use xlink:href="#glyph0-8" x="46.28125" y="554"/> + <use xlink:href="#glyph0-9" x="49.459961" y="554"/> + <use xlink:href="#glyph0-32" x="53.361328" y="554"/> + <use xlink:href="#glyph0-33" x="59.723633" y="554"/> + <use xlink:href="#glyph0-30" x="66.085938" y="554"/> + <use xlink:href="#glyph0-14" x="72.643555" y="554"/> + <use xlink:href="#glyph0-18" x="79.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 568 L 97 568 L 97 592 L 21 592 Z M 21 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="585"/> + <use xlink:href="#glyph0-12" x="33.571289" y="585"/> + <use xlink:href="#glyph0-5" x="39.933594" y="585"/> + <use xlink:href="#glyph0-8" x="42.711914" y="585"/> + <use xlink:href="#glyph0-9" x="45.890625" y="585"/> + <use xlink:href="#glyph0-32" x="49.791992" y="585"/> + <use xlink:href="#glyph0-33" x="56.154297" y="585"/> + <use xlink:href="#glyph0-30" x="62.516602" y="585"/> + <use xlink:href="#glyph0-14" x="69.074219" y="585"/> + <use xlink:href="#glyph0-18" x="75.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 599 L 97 599 L 97 668 L 21 668 Z M 21 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="28" y="616"/> + <use xlink:href="#glyph0-16" x="34.982422" y="616"/> + <use xlink:href="#glyph0-29" x="41.100586" y="616"/> + <use xlink:href="#glyph0-7" x="45.211914" y="616"/> + <use xlink:href="#glyph0-8" x="51.364258" y="616"/> + <use xlink:href="#glyph0-22" x="54.542969" y="616"/> + <use xlink:href="#glyph0-23" x="60.114258" y="616"/> + <use xlink:href="#glyph0-24" x="68.493164" y="616"/> + <use xlink:href="#glyph0-25" x="74.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28 623 L 90 623 L 90 661 L 28 661 Z M 28 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="38" y="640"/> + <use xlink:href="#glyph0-34" x="44.030273" y="640"/> + <use xlink:href="#glyph0-8" x="51.349609" y="640"/> + <use xlink:href="#glyph0-22" x="54.52832" y="640"/> + <use xlink:href="#glyph0-23" x="60.099609" y="640"/> + <use xlink:href="#glyph0-24" x="68.478516" y="640"/> + <use xlink:href="#glyph0-25" x="74.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="46" y="654"/> + <use xlink:href="#glyph0-23" x="52.030273" y="654"/> + <use xlink:href="#glyph0-24" x="60.40918" y="654"/> + <use xlink:href="#glyph0-25" x="66.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 506 L 180 506 L 180 530 L 104 530 Z M 104 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="523"/> + <use xlink:href="#glyph0-25" x="116.571289" y="523"/> + <use xlink:href="#glyph0-8" x="122.933594" y="523"/> + <use xlink:href="#glyph0-9" x="126.112305" y="523"/> + <use xlink:href="#glyph0-10" x="130.013672" y="523"/> + <use xlink:href="#glyph0-12" x="136.375977" y="523"/> + <use xlink:href="#glyph0-25" x="142.738281" y="523"/> + <use xlink:href="#glyph0-30" x="149.100586" y="523"/> + <use xlink:href="#glyph0-14" x="155.658203" y="523"/> + <use xlink:href="#glyph0-18" x="162.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 537 L 180 537 L 180 561 L 104 561 Z M 104 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="554"/> + <use xlink:href="#glyph0-12" x="116.571289" y="554"/> + <use xlink:href="#glyph0-31" x="122.933594" y="554"/> + <use xlink:href="#glyph0-8" x="129.28125" y="554"/> + <use xlink:href="#glyph0-9" x="132.459961" y="554"/> + <use xlink:href="#glyph0-32" x="136.361328" y="554"/> + <use xlink:href="#glyph0-33" x="142.723633" y="554"/> + <use xlink:href="#glyph0-30" x="149.085938" y="554"/> + <use xlink:href="#glyph0-14" x="155.643555" y="554"/> + <use xlink:href="#glyph0-18" x="162.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 568 L 180 568 L 180 592 L 104 592 Z M 104 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="585"/> + <use xlink:href="#glyph0-12" x="116.571289" y="585"/> + <use xlink:href="#glyph0-5" x="122.933594" y="585"/> + <use xlink:href="#glyph0-8" x="125.711914" y="585"/> + <use xlink:href="#glyph0-9" x="128.890625" y="585"/> + <use xlink:href="#glyph0-32" x="132.791992" y="585"/> + <use xlink:href="#glyph0-33" x="139.154297" y="585"/> + <use xlink:href="#glyph0-30" x="145.516602" y="585"/> + <use xlink:href="#glyph0-14" x="152.074219" y="585"/> + <use xlink:href="#glyph0-18" x="158.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 599 L 180 599 L 180 668 L 104 668 Z M 104 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="111" y="616"/> + <use xlink:href="#glyph0-16" x="117.982422" y="616"/> + <use xlink:href="#glyph0-29" x="124.100586" y="616"/> + <use xlink:href="#glyph0-7" x="128.211914" y="616"/> + <use xlink:href="#glyph0-8" x="134.364258" y="616"/> + <use xlink:href="#glyph0-22" x="137.542969" y="616"/> + <use xlink:href="#glyph0-23" x="143.114258" y="616"/> + <use xlink:href="#glyph0-24" x="151.493164" y="616"/> + <use xlink:href="#glyph0-24" x="157.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111 623 L 173 623 L 173 661 L 111 661 Z M 111 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="121" y="640"/> + <use xlink:href="#glyph0-34" x="127.030273" y="640"/> + <use xlink:href="#glyph0-8" x="134.349609" y="640"/> + <use xlink:href="#glyph0-22" x="137.52832" y="640"/> + <use xlink:href="#glyph0-23" x="143.099609" y="640"/> + <use xlink:href="#glyph0-24" x="151.478516" y="640"/> + <use xlink:href="#glyph0-24" x="157.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="129" y="654"/> + <use xlink:href="#glyph0-23" x="135.030273" y="654"/> + <use xlink:href="#glyph0-24" x="143.40918" y="654"/> + <use xlink:href="#glyph0-24" x="149.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 506 L 263 506 L 263 530 L 187 530 Z M 187 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="523"/> + <use xlink:href="#glyph0-25" x="199.571289" y="523"/> + <use xlink:href="#glyph0-8" x="205.933594" y="523"/> + <use xlink:href="#glyph0-9" x="209.112305" y="523"/> + <use xlink:href="#glyph0-10" x="213.013672" y="523"/> + <use xlink:href="#glyph0-12" x="219.375977" y="523"/> + <use xlink:href="#glyph0-25" x="225.738281" y="523"/> + <use xlink:href="#glyph0-30" x="232.100586" y="523"/> + <use xlink:href="#glyph0-14" x="238.658203" y="523"/> + <use xlink:href="#glyph0-18" x="245.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 537 L 263 537 L 263 561 L 187 561 Z M 187 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="554"/> + <use xlink:href="#glyph0-12" x="199.571289" y="554"/> + <use xlink:href="#glyph0-31" x="205.933594" y="554"/> + <use xlink:href="#glyph0-8" x="212.28125" y="554"/> + <use xlink:href="#glyph0-9" x="215.459961" y="554"/> + <use xlink:href="#glyph0-32" x="219.361328" y="554"/> + <use xlink:href="#glyph0-33" x="225.723633" y="554"/> + <use xlink:href="#glyph0-30" x="232.085938" y="554"/> + <use xlink:href="#glyph0-14" x="238.643555" y="554"/> + <use xlink:href="#glyph0-18" x="245.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 568 L 263 568 L 263 592 L 187 592 Z M 187 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="585"/> + <use xlink:href="#glyph0-12" x="199.571289" y="585"/> + <use xlink:href="#glyph0-5" x="205.933594" y="585"/> + <use xlink:href="#glyph0-8" x="208.711914" y="585"/> + <use xlink:href="#glyph0-9" x="211.890625" y="585"/> + <use xlink:href="#glyph0-32" x="215.791992" y="585"/> + <use xlink:href="#glyph0-33" x="222.154297" y="585"/> + <use xlink:href="#glyph0-30" x="228.516602" y="585"/> + <use xlink:href="#glyph0-14" x="235.074219" y="585"/> + <use xlink:href="#glyph0-18" x="241.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 599 L 263 599 L 263 668 L 187 668 Z M 187 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="194" y="616"/> + <use xlink:href="#glyph0-16" x="200.982422" y="616"/> + <use xlink:href="#glyph0-29" x="207.100586" y="616"/> + <use xlink:href="#glyph0-7" x="211.211914" y="616"/> + <use xlink:href="#glyph0-8" x="217.364258" y="616"/> + <use xlink:href="#glyph0-22" x="220.542969" y="616"/> + <use xlink:href="#glyph0-23" x="226.114258" y="616"/> + <use xlink:href="#glyph0-24" x="234.493164" y="616"/> + <use xlink:href="#glyph0-33" x="240.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194 623 L 256 623 L 256 661 L 194 661 Z M 194 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="204" y="640"/> + <use xlink:href="#glyph0-34" x="210.030273" y="640"/> + <use xlink:href="#glyph0-8" x="217.349609" y="640"/> + <use xlink:href="#glyph0-22" x="220.52832" y="640"/> + <use xlink:href="#glyph0-23" x="226.099609" y="640"/> + <use xlink:href="#glyph0-24" x="234.478516" y="640"/> + <use xlink:href="#glyph0-33" x="240.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="212" y="654"/> + <use xlink:href="#glyph0-23" x="218.030273" y="654"/> + <use xlink:href="#glyph0-24" x="226.40918" y="654"/> + <use xlink:href="#glyph0-33" x="232.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 506 L 346 506 L 346 530 L 270 530 Z M 270 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="523"/> + <use xlink:href="#glyph0-25" x="282.571289" y="523"/> + <use xlink:href="#glyph0-8" x="288.933594" y="523"/> + <use xlink:href="#glyph0-9" x="292.112305" y="523"/> + <use xlink:href="#glyph0-10" x="296.013672" y="523"/> + <use xlink:href="#glyph0-12" x="302.375977" y="523"/> + <use xlink:href="#glyph0-25" x="308.738281" y="523"/> + <use xlink:href="#glyph0-30" x="315.100586" y="523"/> + <use xlink:href="#glyph0-14" x="321.658203" y="523"/> + <use xlink:href="#glyph0-18" x="328.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 537 L 346 537 L 346 561 L 270 561 Z M 270 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="554"/> + <use xlink:href="#glyph0-12" x="282.571289" y="554"/> + <use xlink:href="#glyph0-31" x="288.933594" y="554"/> + <use xlink:href="#glyph0-8" x="295.28125" y="554"/> + <use xlink:href="#glyph0-9" x="298.459961" y="554"/> + <use xlink:href="#glyph0-32" x="302.361328" y="554"/> + <use xlink:href="#glyph0-33" x="308.723633" y="554"/> + <use xlink:href="#glyph0-30" x="315.085938" y="554"/> + <use xlink:href="#glyph0-14" x="321.643555" y="554"/> + <use xlink:href="#glyph0-18" x="328.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 568 L 346 568 L 346 592 L 270 592 Z M 270 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="585"/> + <use xlink:href="#glyph0-12" x="282.571289" y="585"/> + <use xlink:href="#glyph0-5" x="288.933594" y="585"/> + <use xlink:href="#glyph0-8" x="291.711914" y="585"/> + <use xlink:href="#glyph0-9" x="294.890625" y="585"/> + <use xlink:href="#glyph0-32" x="298.791992" y="585"/> + <use xlink:href="#glyph0-33" x="305.154297" y="585"/> + <use xlink:href="#glyph0-30" x="311.516602" y="585"/> + <use xlink:href="#glyph0-14" x="318.074219" y="585"/> + <use xlink:href="#glyph0-18" x="324.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 599 L 346 599 L 346 668 L 270 668 Z M 270 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="277" y="616"/> + <use xlink:href="#glyph0-16" x="283.982422" y="616"/> + <use xlink:href="#glyph0-29" x="290.100586" y="616"/> + <use xlink:href="#glyph0-7" x="294.211914" y="616"/> + <use xlink:href="#glyph0-8" x="300.364258" y="616"/> + <use xlink:href="#glyph0-22" x="303.542969" y="616"/> + <use xlink:href="#glyph0-23" x="309.114258" y="616"/> + <use xlink:href="#glyph0-24" x="317.493164" y="616"/> + <use xlink:href="#glyph0-10" x="323.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277 623 L 339 623 L 339 661 L 277 661 Z M 277 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="287" y="640"/> + <use xlink:href="#glyph0-34" x="293.030273" y="640"/> + <use xlink:href="#glyph0-8" x="300.349609" y="640"/> + <use xlink:href="#glyph0-22" x="303.52832" y="640"/> + <use xlink:href="#glyph0-23" x="309.099609" y="640"/> + <use xlink:href="#glyph0-24" x="317.478516" y="640"/> + <use xlink:href="#glyph0-10" x="323.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="295" y="654"/> + <use xlink:href="#glyph0-23" x="301.030273" y="654"/> + <use xlink:href="#glyph0-24" x="309.40918" y="654"/> + <use xlink:href="#glyph0-10" x="315.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360 482 L 699 482 L 699 675 L 360 675 Z M 360 482 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="367" y="499"/> + <use xlink:href="#glyph0-17" x="373.982422" y="499"/> + <use xlink:href="#glyph0-27" x="376.760742" y="499"/> + <use xlink:href="#glyph0-28" x="383.098633" y="499"/> + <use xlink:href="#glyph0-15" x="388.308594" y="499"/> + <use xlink:href="#glyph0-7" x="392.229492" y="499"/> + <use xlink:href="#glyph0-29" x="398.381836" y="499"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 506 L 443 506 L 443 530 L 367 530 Z M 367 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="523"/> + <use xlink:href="#glyph0-25" x="379.571289" y="523"/> + <use xlink:href="#glyph0-8" x="385.933594" y="523"/> + <use xlink:href="#glyph0-9" x="389.112305" y="523"/> + <use xlink:href="#glyph0-10" x="393.013672" y="523"/> + <use xlink:href="#glyph0-12" x="399.375977" y="523"/> + <use xlink:href="#glyph0-25" x="405.738281" y="523"/> + <use xlink:href="#glyph0-30" x="412.100586" y="523"/> + <use xlink:href="#glyph0-14" x="418.658203" y="523"/> + <use xlink:href="#glyph0-18" x="425.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 537 L 443 537 L 443 561 L 367 561 Z M 367 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="554"/> + <use xlink:href="#glyph0-12" x="379.571289" y="554"/> + <use xlink:href="#glyph0-31" x="385.933594" y="554"/> + <use xlink:href="#glyph0-8" x="392.28125" y="554"/> + <use xlink:href="#glyph0-9" x="395.459961" y="554"/> + <use xlink:href="#glyph0-32" x="399.361328" y="554"/> + <use xlink:href="#glyph0-33" x="405.723633" y="554"/> + <use xlink:href="#glyph0-30" x="412.085938" y="554"/> + <use xlink:href="#glyph0-14" x="418.643555" y="554"/> + <use xlink:href="#glyph0-18" x="425.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 568 L 443 568 L 443 592 L 367 592 Z M 367 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="585"/> + <use xlink:href="#glyph0-12" x="379.571289" y="585"/> + <use xlink:href="#glyph0-5" x="385.933594" y="585"/> + <use xlink:href="#glyph0-8" x="388.711914" y="585"/> + <use xlink:href="#glyph0-9" x="391.890625" y="585"/> + <use xlink:href="#glyph0-32" x="395.791992" y="585"/> + <use xlink:href="#glyph0-33" x="402.154297" y="585"/> + <use xlink:href="#glyph0-30" x="408.516602" y="585"/> + <use xlink:href="#glyph0-14" x="415.074219" y="585"/> + <use xlink:href="#glyph0-18" x="421.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 599 L 443 599 L 443 668 L 367 668 Z M 367 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="374" y="616"/> + <use xlink:href="#glyph0-16" x="380.982422" y="616"/> + <use xlink:href="#glyph0-29" x="387.100586" y="616"/> + <use xlink:href="#glyph0-7" x="391.211914" y="616"/> + <use xlink:href="#glyph0-8" x="397.364258" y="616"/> + <use xlink:href="#glyph0-22" x="400.542969" y="616"/> + <use xlink:href="#glyph0-23" x="406.114258" y="616"/> + <use xlink:href="#glyph0-24" x="414.493164" y="616"/> + <use xlink:href="#glyph0-32" x="420.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374 623 L 436 623 L 436 661 L 374 661 Z M 374 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="384" y="640"/> + <use xlink:href="#glyph0-34" x="390.030273" y="640"/> + <use xlink:href="#glyph0-8" x="397.349609" y="640"/> + <use xlink:href="#glyph0-22" x="400.52832" y="640"/> + <use xlink:href="#glyph0-23" x="406.099609" y="640"/> + <use xlink:href="#glyph0-24" x="414.478516" y="640"/> + <use xlink:href="#glyph0-32" x="420.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="392" y="654"/> + <use xlink:href="#glyph0-23" x="398.030273" y="654"/> + <use xlink:href="#glyph0-24" x="406.40918" y="654"/> + <use xlink:href="#glyph0-32" x="412.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 506 L 526 506 L 526 530 L 450 530 Z M 450 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="523"/> + <use xlink:href="#glyph0-25" x="462.571289" y="523"/> + <use xlink:href="#glyph0-8" x="468.933594" y="523"/> + <use xlink:href="#glyph0-9" x="472.112305" y="523"/> + <use xlink:href="#glyph0-10" x="476.013672" y="523"/> + <use xlink:href="#glyph0-12" x="482.375977" y="523"/> + <use xlink:href="#glyph0-25" x="488.738281" y="523"/> + <use xlink:href="#glyph0-30" x="495.100586" y="523"/> + <use xlink:href="#glyph0-14" x="501.658203" y="523"/> + <use xlink:href="#glyph0-18" x="508.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 537 L 526 537 L 526 561 L 450 561 Z M 450 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="554"/> + <use xlink:href="#glyph0-12" x="462.571289" y="554"/> + <use xlink:href="#glyph0-31" x="468.933594" y="554"/> + <use xlink:href="#glyph0-8" x="475.28125" y="554"/> + <use xlink:href="#glyph0-9" x="478.459961" y="554"/> + <use xlink:href="#glyph0-32" x="482.361328" y="554"/> + <use xlink:href="#glyph0-33" x="488.723633" y="554"/> + <use xlink:href="#glyph0-30" x="495.085938" y="554"/> + <use xlink:href="#glyph0-14" x="501.643555" y="554"/> + <use xlink:href="#glyph0-18" x="508.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 568 L 526 568 L 526 592 L 450 592 Z M 450 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="585"/> + <use xlink:href="#glyph0-12" x="462.571289" y="585"/> + <use xlink:href="#glyph0-5" x="468.933594" y="585"/> + <use xlink:href="#glyph0-8" x="471.711914" y="585"/> + <use xlink:href="#glyph0-9" x="474.890625" y="585"/> + <use xlink:href="#glyph0-32" x="478.791992" y="585"/> + <use xlink:href="#glyph0-33" x="485.154297" y="585"/> + <use xlink:href="#glyph0-30" x="491.516602" y="585"/> + <use xlink:href="#glyph0-14" x="498.074219" y="585"/> + <use xlink:href="#glyph0-18" x="504.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 599 L 526 599 L 526 668 L 450 668 Z M 450 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="457" y="616"/> + <use xlink:href="#glyph0-16" x="463.982422" y="616"/> + <use xlink:href="#glyph0-29" x="470.100586" y="616"/> + <use xlink:href="#glyph0-7" x="474.211914" y="616"/> + <use xlink:href="#glyph0-8" x="480.364258" y="616"/> + <use xlink:href="#glyph0-22" x="483.542969" y="616"/> + <use xlink:href="#glyph0-23" x="489.114258" y="616"/> + <use xlink:href="#glyph0-24" x="497.493164" y="616"/> + <use xlink:href="#glyph0-35" x="503.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 457 623 L 519 623 L 519 661 L 457 661 Z M 457 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="467" y="640"/> + <use xlink:href="#glyph0-34" x="473.030273" y="640"/> + <use xlink:href="#glyph0-8" x="480.349609" y="640"/> + <use xlink:href="#glyph0-22" x="483.52832" y="640"/> + <use xlink:href="#glyph0-23" x="489.099609" y="640"/> + <use xlink:href="#glyph0-24" x="497.478516" y="640"/> + <use xlink:href="#glyph0-35" x="503.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="475" y="654"/> + <use xlink:href="#glyph0-23" x="481.030273" y="654"/> + <use xlink:href="#glyph0-24" x="489.40918" y="654"/> + <use xlink:href="#glyph0-35" x="495.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 506 L 609 506 L 609 530 L 533 530 Z M 533 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="523"/> + <use xlink:href="#glyph0-25" x="545.571289" y="523"/> + <use xlink:href="#glyph0-8" x="551.933594" y="523"/> + <use xlink:href="#glyph0-9" x="555.112305" y="523"/> + <use xlink:href="#glyph0-10" x="559.013672" y="523"/> + <use xlink:href="#glyph0-12" x="565.375977" y="523"/> + <use xlink:href="#glyph0-25" x="571.738281" y="523"/> + <use xlink:href="#glyph0-30" x="578.100586" y="523"/> + <use xlink:href="#glyph0-14" x="584.658203" y="523"/> + <use xlink:href="#glyph0-18" x="591.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 537 L 609 537 L 609 561 L 533 561 Z M 533 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="554"/> + <use xlink:href="#glyph0-12" x="545.571289" y="554"/> + <use xlink:href="#glyph0-31" x="551.933594" y="554"/> + <use xlink:href="#glyph0-8" x="558.28125" y="554"/> + <use xlink:href="#glyph0-9" x="561.459961" y="554"/> + <use xlink:href="#glyph0-32" x="565.361328" y="554"/> + <use xlink:href="#glyph0-33" x="571.723633" y="554"/> + <use xlink:href="#glyph0-30" x="578.085938" y="554"/> + <use xlink:href="#glyph0-14" x="584.643555" y="554"/> + <use xlink:href="#glyph0-18" x="591.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 568 L 609 568 L 609 592 L 533 592 Z M 533 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="585"/> + <use xlink:href="#glyph0-12" x="545.571289" y="585"/> + <use xlink:href="#glyph0-5" x="551.933594" y="585"/> + <use xlink:href="#glyph0-8" x="554.711914" y="585"/> + <use xlink:href="#glyph0-9" x="557.890625" y="585"/> + <use xlink:href="#glyph0-32" x="561.791992" y="585"/> + <use xlink:href="#glyph0-33" x="568.154297" y="585"/> + <use xlink:href="#glyph0-30" x="574.516602" y="585"/> + <use xlink:href="#glyph0-14" x="581.074219" y="585"/> + <use xlink:href="#glyph0-18" x="587.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 599 L 609 599 L 609 668 L 533 668 Z M 533 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="540" y="616"/> + <use xlink:href="#glyph0-16" x="546.982422" y="616"/> + <use xlink:href="#glyph0-29" x="553.100586" y="616"/> + <use xlink:href="#glyph0-7" x="557.211914" y="616"/> + <use xlink:href="#glyph0-8" x="563.364258" y="616"/> + <use xlink:href="#glyph0-22" x="566.542969" y="616"/> + <use xlink:href="#glyph0-23" x="572.114258" y="616"/> + <use xlink:href="#glyph0-24" x="580.493164" y="616"/> + <use xlink:href="#glyph0-36" x="586.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 540 623 L 602 623 L 602 661 L 540 661 Z M 540 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="550" y="640"/> + <use xlink:href="#glyph0-34" x="556.030273" y="640"/> + <use xlink:href="#glyph0-8" x="563.349609" y="640"/> + <use xlink:href="#glyph0-22" x="566.52832" y="640"/> + <use xlink:href="#glyph0-23" x="572.099609" y="640"/> + <use xlink:href="#glyph0-24" x="580.478516" y="640"/> + <use xlink:href="#glyph0-36" x="586.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="558" y="654"/> + <use xlink:href="#glyph0-23" x="564.030273" y="654"/> + <use xlink:href="#glyph0-24" x="572.40918" y="654"/> + <use xlink:href="#glyph0-36" x="578.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 506 L 692 506 L 692 530 L 616 530 Z M 616 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="523"/> + <use xlink:href="#glyph0-25" x="628.571289" y="523"/> + <use xlink:href="#glyph0-8" x="634.933594" y="523"/> + <use xlink:href="#glyph0-9" x="638.112305" y="523"/> + <use xlink:href="#glyph0-10" x="642.013672" y="523"/> + <use xlink:href="#glyph0-12" x="648.375977" y="523"/> + <use xlink:href="#glyph0-25" x="654.738281" y="523"/> + <use xlink:href="#glyph0-30" x="661.100586" y="523"/> + <use xlink:href="#glyph0-14" x="667.658203" y="523"/> + <use xlink:href="#glyph0-18" x="674.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 537 L 692 537 L 692 561 L 616 561 Z M 616 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="554"/> + <use xlink:href="#glyph0-12" x="628.571289" y="554"/> + <use xlink:href="#glyph0-31" x="634.933594" y="554"/> + <use xlink:href="#glyph0-8" x="641.28125" y="554"/> + <use xlink:href="#glyph0-9" x="644.459961" y="554"/> + <use xlink:href="#glyph0-32" x="648.361328" y="554"/> + <use xlink:href="#glyph0-33" x="654.723633" y="554"/> + <use xlink:href="#glyph0-30" x="661.085938" y="554"/> + <use xlink:href="#glyph0-14" x="667.643555" y="554"/> + <use xlink:href="#glyph0-18" x="674.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 568 L 692 568 L 692 592 L 616 592 Z M 616 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="585"/> + <use xlink:href="#glyph0-12" x="628.571289" y="585"/> + <use xlink:href="#glyph0-5" x="634.933594" y="585"/> + <use xlink:href="#glyph0-8" x="637.711914" y="585"/> + <use xlink:href="#glyph0-9" x="640.890625" y="585"/> + <use xlink:href="#glyph0-32" x="644.791992" y="585"/> + <use xlink:href="#glyph0-33" x="651.154297" y="585"/> + <use xlink:href="#glyph0-30" x="657.516602" y="585"/> + <use xlink:href="#glyph0-14" x="664.074219" y="585"/> + <use xlink:href="#glyph0-18" x="670.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 599 L 692 599 L 692 668 L 616 668 Z M 616 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="623" y="616"/> + <use xlink:href="#glyph0-16" x="629.982422" y="616"/> + <use xlink:href="#glyph0-29" x="636.100586" y="616"/> + <use xlink:href="#glyph0-7" x="640.211914" y="616"/> + <use xlink:href="#glyph0-8" x="646.364258" y="616"/> + <use xlink:href="#glyph0-22" x="649.542969" y="616"/> + <use xlink:href="#glyph0-23" x="655.114258" y="616"/> + <use xlink:href="#glyph0-24" x="663.493164" y="616"/> + <use xlink:href="#glyph0-38" x="669.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 623 623 L 685 623 L 685 661 L 623 661 Z M 623 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="633" y="640"/> + <use xlink:href="#glyph0-34" x="639.030273" y="640"/> + <use xlink:href="#glyph0-8" x="646.349609" y="640"/> + <use xlink:href="#glyph0-22" x="649.52832" y="640"/> + <use xlink:href="#glyph0-23" x="655.099609" y="640"/> + <use xlink:href="#glyph0-24" x="663.478516" y="640"/> + <use xlink:href="#glyph0-38" x="669.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="641" y="654"/> + <use xlink:href="#glyph0-23" x="647.030273" y="654"/> + <use xlink:href="#glyph0-24" x="655.40918" y="654"/> + <use xlink:href="#glyph0-38" x="661.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 706 489 L 713 489 L 713 496 L 706 496 Z M 706 489 "/> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 720 489 L 727 489 L 727 496 L 720 496 Z M 720 489 "/> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 734 489 L 741 489 L 741 496 L 734 496 Z M 734 489 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-36" x="706" y="510"/> + <use xlink:href="#glyph0-37" x="712.362305" y="510"/> + <use xlink:href="#glyph0-8" x="718.280273" y="510"/> + <use xlink:href="#glyph0-15" x="721.458984" y="510"/> + <use xlink:href="#glyph0-16" x="725.379883" y="510"/> + <use xlink:href="#glyph0-15" x="731.498047" y="510"/> + <use xlink:href="#glyph0-2" x="735.418945" y="510"/> + <use xlink:href="#glyph0-17" x="741.546875" y="510"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 749 482 L 1088 482 L 1088 675 L 749 675 Z M 749 482 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="756" y="499"/> + <use xlink:href="#glyph0-17" x="762.982422" y="499"/> + <use xlink:href="#glyph0-27" x="765.760742" y="499"/> + <use xlink:href="#glyph0-28" x="772.098633" y="499"/> + <use xlink:href="#glyph0-15" x="777.308594" y="499"/> + <use xlink:href="#glyph0-7" x="781.229492" y="499"/> + <use xlink:href="#glyph0-29" x="787.381836" y="499"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 506 L 832 506 L 832 530 L 756 530 Z M 756 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="523"/> + <use xlink:href="#glyph0-25" x="768.571289" y="523"/> + <use xlink:href="#glyph0-8" x="774.933594" y="523"/> + <use xlink:href="#glyph0-9" x="778.112305" y="523"/> + <use xlink:href="#glyph0-10" x="782.013672" y="523"/> + <use xlink:href="#glyph0-12" x="788.375977" y="523"/> + <use xlink:href="#glyph0-25" x="794.738281" y="523"/> + <use xlink:href="#glyph0-30" x="801.100586" y="523"/> + <use xlink:href="#glyph0-14" x="807.658203" y="523"/> + <use xlink:href="#glyph0-18" x="814.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 537 L 832 537 L 832 561 L 756 561 Z M 756 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="554"/> + <use xlink:href="#glyph0-12" x="768.571289" y="554"/> + <use xlink:href="#glyph0-31" x="774.933594" y="554"/> + <use xlink:href="#glyph0-8" x="781.28125" y="554"/> + <use xlink:href="#glyph0-9" x="784.459961" y="554"/> + <use xlink:href="#glyph0-32" x="788.361328" y="554"/> + <use xlink:href="#glyph0-33" x="794.723633" y="554"/> + <use xlink:href="#glyph0-30" x="801.085938" y="554"/> + <use xlink:href="#glyph0-14" x="807.643555" y="554"/> + <use xlink:href="#glyph0-18" x="814.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 568 L 832 568 L 832 592 L 756 592 Z M 756 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="585"/> + <use xlink:href="#glyph0-12" x="768.571289" y="585"/> + <use xlink:href="#glyph0-5" x="774.933594" y="585"/> + <use xlink:href="#glyph0-8" x="777.711914" y="585"/> + <use xlink:href="#glyph0-9" x="780.890625" y="585"/> + <use xlink:href="#glyph0-32" x="784.791992" y="585"/> + <use xlink:href="#glyph0-33" x="791.154297" y="585"/> + <use xlink:href="#glyph0-30" x="797.516602" y="585"/> + <use xlink:href="#glyph0-14" x="804.074219" y="585"/> + <use xlink:href="#glyph0-18" x="810.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 599 L 832 599 L 832 668 L 756 668 Z M 756 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="763" y="616"/> + <use xlink:href="#glyph0-16" x="769.982422" y="616"/> + <use xlink:href="#glyph0-29" x="776.100586" y="616"/> + <use xlink:href="#glyph0-7" x="780.211914" y="616"/> + <use xlink:href="#glyph0-8" x="786.364258" y="616"/> + <use xlink:href="#glyph0-22" x="789.542969" y="616"/> + <use xlink:href="#glyph0-23" x="795.114258" y="616"/> + <use xlink:href="#glyph0-32" x="803.493164" y="616"/> + <use xlink:href="#glyph0-11" x="809.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 763 623 L 825 623 L 825 661 L 763 661 Z M 763 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="773" y="640"/> + <use xlink:href="#glyph0-34" x="779.030273" y="640"/> + <use xlink:href="#glyph0-8" x="786.349609" y="640"/> + <use xlink:href="#glyph0-22" x="789.52832" y="640"/> + <use xlink:href="#glyph0-23" x="795.099609" y="640"/> + <use xlink:href="#glyph0-32" x="803.478516" y="640"/> + <use xlink:href="#glyph0-11" x="809.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="781" y="654"/> + <use xlink:href="#glyph0-23" x="787.030273" y="654"/> + <use xlink:href="#glyph0-32" x="795.40918" y="654"/> + <use xlink:href="#glyph0-11" x="801.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 506 L 915 506 L 915 530 L 839 530 Z M 839 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="523"/> + <use xlink:href="#glyph0-25" x="851.571289" y="523"/> + <use xlink:href="#glyph0-8" x="857.933594" y="523"/> + <use xlink:href="#glyph0-9" x="861.112305" y="523"/> + <use xlink:href="#glyph0-10" x="865.013672" y="523"/> + <use xlink:href="#glyph0-12" x="871.375977" y="523"/> + <use xlink:href="#glyph0-25" x="877.738281" y="523"/> + <use xlink:href="#glyph0-30" x="884.100586" y="523"/> + <use xlink:href="#glyph0-14" x="890.658203" y="523"/> + <use xlink:href="#glyph0-18" x="897.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 537 L 915 537 L 915 561 L 839 561 Z M 839 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="554"/> + <use xlink:href="#glyph0-12" x="851.571289" y="554"/> + <use xlink:href="#glyph0-31" x="857.933594" y="554"/> + <use xlink:href="#glyph0-8" x="864.28125" y="554"/> + <use xlink:href="#glyph0-9" x="867.459961" y="554"/> + <use xlink:href="#glyph0-32" x="871.361328" y="554"/> + <use xlink:href="#glyph0-33" x="877.723633" y="554"/> + <use xlink:href="#glyph0-30" x="884.085938" y="554"/> + <use xlink:href="#glyph0-14" x="890.643555" y="554"/> + <use xlink:href="#glyph0-18" x="897.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 568 L 915 568 L 915 592 L 839 592 Z M 839 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="585"/> + <use xlink:href="#glyph0-12" x="851.571289" y="585"/> + <use xlink:href="#glyph0-5" x="857.933594" y="585"/> + <use xlink:href="#glyph0-8" x="860.711914" y="585"/> + <use xlink:href="#glyph0-9" x="863.890625" y="585"/> + <use xlink:href="#glyph0-32" x="867.791992" y="585"/> + <use xlink:href="#glyph0-33" x="874.154297" y="585"/> + <use xlink:href="#glyph0-30" x="880.516602" y="585"/> + <use xlink:href="#glyph0-14" x="887.074219" y="585"/> + <use xlink:href="#glyph0-18" x="893.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 599 L 915 599 L 915 668 L 839 668 Z M 839 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="846" y="616"/> + <use xlink:href="#glyph0-16" x="852.982422" y="616"/> + <use xlink:href="#glyph0-29" x="859.100586" y="616"/> + <use xlink:href="#glyph0-7" x="863.211914" y="616"/> + <use xlink:href="#glyph0-8" x="869.364258" y="616"/> + <use xlink:href="#glyph0-22" x="872.542969" y="616"/> + <use xlink:href="#glyph0-23" x="878.114258" y="616"/> + <use xlink:href="#glyph0-32" x="886.493164" y="616"/> + <use xlink:href="#glyph0-12" x="892.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 846 623 L 908 623 L 908 661 L 846 661 Z M 846 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="856" y="640"/> + <use xlink:href="#glyph0-34" x="862.030273" y="640"/> + <use xlink:href="#glyph0-8" x="869.349609" y="640"/> + <use xlink:href="#glyph0-22" x="872.52832" y="640"/> + <use xlink:href="#glyph0-23" x="878.099609" y="640"/> + <use xlink:href="#glyph0-32" x="886.478516" y="640"/> + <use xlink:href="#glyph0-12" x="892.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="864" y="654"/> + <use xlink:href="#glyph0-23" x="870.030273" y="654"/> + <use xlink:href="#glyph0-32" x="878.40918" y="654"/> + <use xlink:href="#glyph0-12" x="884.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 506 L 998 506 L 998 530 L 922 530 Z M 922 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="523"/> + <use xlink:href="#glyph0-25" x="934.571289" y="523"/> + <use xlink:href="#glyph0-8" x="940.933594" y="523"/> + <use xlink:href="#glyph0-9" x="944.112305" y="523"/> + <use xlink:href="#glyph0-10" x="948.013672" y="523"/> + <use xlink:href="#glyph0-12" x="954.375977" y="523"/> + <use xlink:href="#glyph0-25" x="960.738281" y="523"/> + <use xlink:href="#glyph0-30" x="967.100586" y="523"/> + <use xlink:href="#glyph0-14" x="973.658203" y="523"/> + <use xlink:href="#glyph0-18" x="980.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 537 L 998 537 L 998 561 L 922 561 Z M 922 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="554"/> + <use xlink:href="#glyph0-12" x="934.571289" y="554"/> + <use xlink:href="#glyph0-31" x="940.933594" y="554"/> + <use xlink:href="#glyph0-8" x="947.28125" y="554"/> + <use xlink:href="#glyph0-9" x="950.459961" y="554"/> + <use xlink:href="#glyph0-32" x="954.361328" y="554"/> + <use xlink:href="#glyph0-33" x="960.723633" y="554"/> + <use xlink:href="#glyph0-30" x="967.085938" y="554"/> + <use xlink:href="#glyph0-14" x="973.643555" y="554"/> + <use xlink:href="#glyph0-18" x="980.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 568 L 998 568 L 998 592 L 922 592 Z M 922 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="585"/> + <use xlink:href="#glyph0-12" x="934.571289" y="585"/> + <use xlink:href="#glyph0-5" x="940.933594" y="585"/> + <use xlink:href="#glyph0-8" x="943.711914" y="585"/> + <use xlink:href="#glyph0-9" x="946.890625" y="585"/> + <use xlink:href="#glyph0-32" x="950.791992" y="585"/> + <use xlink:href="#glyph0-33" x="957.154297" y="585"/> + <use xlink:href="#glyph0-30" x="963.516602" y="585"/> + <use xlink:href="#glyph0-14" x="970.074219" y="585"/> + <use xlink:href="#glyph0-18" x="976.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 599 L 998 599 L 998 668 L 922 668 Z M 922 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="929" y="616"/> + <use xlink:href="#glyph0-16" x="935.982422" y="616"/> + <use xlink:href="#glyph0-29" x="942.100586" y="616"/> + <use xlink:href="#glyph0-7" x="946.211914" y="616"/> + <use xlink:href="#glyph0-8" x="952.364258" y="616"/> + <use xlink:href="#glyph0-22" x="955.542969" y="616"/> + <use xlink:href="#glyph0-23" x="961.114258" y="616"/> + <use xlink:href="#glyph0-32" x="969.493164" y="616"/> + <use xlink:href="#glyph0-25" x="975.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 929 623 L 991 623 L 991 661 L 929 661 Z M 929 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="939" y="640"/> + <use xlink:href="#glyph0-34" x="945.030273" y="640"/> + <use xlink:href="#glyph0-8" x="952.349609" y="640"/> + <use xlink:href="#glyph0-22" x="955.52832" y="640"/> + <use xlink:href="#glyph0-23" x="961.099609" y="640"/> + <use xlink:href="#glyph0-32" x="969.478516" y="640"/> + <use xlink:href="#glyph0-25" x="975.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="947" y="654"/> + <use xlink:href="#glyph0-23" x="953.030273" y="654"/> + <use xlink:href="#glyph0-32" x="961.40918" y="654"/> + <use xlink:href="#glyph0-25" x="967.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 506 L 1081 506 L 1081 530 L 1005 530 Z M 1005 506 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="523"/> + <use xlink:href="#glyph0-25" x="1017.571289" y="523"/> + <use xlink:href="#glyph0-8" x="1023.933594" y="523"/> + <use xlink:href="#glyph0-9" x="1027.112305" y="523"/> + <use xlink:href="#glyph0-10" x="1031.013672" y="523"/> + <use xlink:href="#glyph0-12" x="1037.375977" y="523"/> + <use xlink:href="#glyph0-25" x="1043.738281" y="523"/> + <use xlink:href="#glyph0-30" x="1050.100586" y="523"/> + <use xlink:href="#glyph0-14" x="1056.658203" y="523"/> + <use xlink:href="#glyph0-18" x="1063.518555" y="523"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 537 L 1081 537 L 1081 561 L 1005 561 Z M 1005 537 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="554"/> + <use xlink:href="#glyph0-12" x="1017.571289" y="554"/> + <use xlink:href="#glyph0-31" x="1023.933594" y="554"/> + <use xlink:href="#glyph0-8" x="1030.28125" y="554"/> + <use xlink:href="#glyph0-9" x="1033.459961" y="554"/> + <use xlink:href="#glyph0-32" x="1037.361328" y="554"/> + <use xlink:href="#glyph0-33" x="1043.723633" y="554"/> + <use xlink:href="#glyph0-30" x="1050.085938" y="554"/> + <use xlink:href="#glyph0-14" x="1056.643555" y="554"/> + <use xlink:href="#glyph0-18" x="1063.503906" y="554"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 568 L 1081 568 L 1081 592 L 1005 592 Z M 1005 568 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="585"/> + <use xlink:href="#glyph0-12" x="1017.571289" y="585"/> + <use xlink:href="#glyph0-5" x="1023.933594" y="585"/> + <use xlink:href="#glyph0-8" x="1026.711914" y="585"/> + <use xlink:href="#glyph0-9" x="1029.890625" y="585"/> + <use xlink:href="#glyph0-32" x="1033.791992" y="585"/> + <use xlink:href="#glyph0-33" x="1040.154297" y="585"/> + <use xlink:href="#glyph0-30" x="1046.516602" y="585"/> + <use xlink:href="#glyph0-14" x="1053.074219" y="585"/> + <use xlink:href="#glyph0-18" x="1059.93457" y="585"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 599 L 1081 599 L 1081 668 L 1005 668 Z M 1005 599 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="1012" y="616"/> + <use xlink:href="#glyph0-16" x="1018.982422" y="616"/> + <use xlink:href="#glyph0-29" x="1025.100586" y="616"/> + <use xlink:href="#glyph0-7" x="1029.211914" y="616"/> + <use xlink:href="#glyph0-8" x="1035.364258" y="616"/> + <use xlink:href="#glyph0-22" x="1038.542969" y="616"/> + <use xlink:href="#glyph0-23" x="1044.114258" y="616"/> + <use xlink:href="#glyph0-32" x="1052.493164" y="616"/> + <use xlink:href="#glyph0-24" x="1058.855469" y="616"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1012 623 L 1074 623 L 1074 661 L 1012 661 Z M 1012 623 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1022" y="640"/> + <use xlink:href="#glyph0-34" x="1028.030273" y="640"/> + <use xlink:href="#glyph0-8" x="1035.349609" y="640"/> + <use xlink:href="#glyph0-22" x="1038.52832" y="640"/> + <use xlink:href="#glyph0-23" x="1044.099609" y="640"/> + <use xlink:href="#glyph0-32" x="1052.478516" y="640"/> + <use xlink:href="#glyph0-24" x="1058.84082" y="640"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1030" y="654"/> + <use xlink:href="#glyph0-23" x="1036.030273" y="654"/> + <use xlink:href="#glyph0-32" x="1044.40918" y="654"/> + <use xlink:href="#glyph0-24" x="1050.771484" y="654"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(93.725491%,87.450981%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 420 L 1088 420 L 1088 444 L 14 444 Z M 14 420 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="21" y="437"/> + <use xlink:href="#glyph0-34" x="28.480469" y="437"/> + <use xlink:href="#glyph0-1" x="35.799805" y="437"/> + <use xlink:href="#glyph0-40" x="44.427734" y="437"/> + <use xlink:href="#glyph0-39" x="51.268555" y="437"/> + <use xlink:href="#glyph0-16" x="58.749023" y="437"/> + <use xlink:href="#glyph0-31" x="64.867188" y="437"/> + <use xlink:href="#glyph0-7" x="71.214844" y="437"/> + <use xlink:href="#glyph0-8" x="77.367188" y="437"/> + <use xlink:href="#glyph0-22" x="80.545898" y="437"/> + <use xlink:href="#glyph0-23" x="86.117188" y="437"/> + <use xlink:href="#glyph0-12" x="94.496094" y="437"/> + <use xlink:href="#glyph0-8" x="100.858398" y="437"/> + <use xlink:href="#glyph0-19" x="104.037109" y="437"/> + <use xlink:href="#glyph0-23" x="110.067383" y="437"/> + <use xlink:href="#glyph0-12" x="118.446289" y="437"/> + <use xlink:href="#glyph0-8" x="124.808594" y="437"/> + <use xlink:href="#glyph0-9" x="127.987305" y="437"/> + <use xlink:href="#glyph0-12" x="131.888672" y="437"/> + <use xlink:href="#glyph0-25" x="138.250977" y="437"/> + <use xlink:href="#glyph0-32" x="144.613281" y="437"/> + <use xlink:href="#glyph0-13" x="150.975586" y="437"/> + <use xlink:href="#glyph0-14" x="158.724609" y="437"/> + <use xlink:href="#glyph0-18" x="165.584961" y="437"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(82.352942%,90.588236%,64.313728%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7 689 L 1791 689 L 1791 1347 L 7 1347 Z M 7 689 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="14" y="706"/> + <use xlink:href="#glyph0-2" x="20.030273" y="706"/> + <use xlink:href="#glyph0-3" x="26.158203" y="706"/> + <use xlink:href="#glyph0-20" x="31.65625" y="706"/> + <use xlink:href="#glyph0-2" x="37.447266" y="706"/> + <use xlink:href="#glyph0-21" x="43.575195" y="706"/> + <use xlink:href="#glyph0-7" x="49.922852" y="706"/> + <use xlink:href="#glyph0-8" x="56.075195" y="706"/> + <use xlink:href="#glyph0-22" x="59.253906" y="706"/> + <use xlink:href="#glyph0-23" x="64.825195" y="706"/> + <use xlink:href="#glyph0-12" x="73.204102" y="706"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 744 L 1784 744 L 1784 768 L 14 768 Z M 14 744 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="21" y="761"/> + <use xlink:href="#glyph0-24" x="26.571289" y="761"/> + <use xlink:href="#glyph0-8" x="32.933594" y="761"/> + <use xlink:href="#glyph0-9" x="36.112305" y="761"/> + <use xlink:href="#glyph0-24" x="40.013672" y="761"/> + <use xlink:href="#glyph0-25" x="46.375977" y="761"/> + <use xlink:href="#glyph0-1" x="52.738281" y="761"/> + <use xlink:href="#glyph0-14" x="61.366211" y="761"/> + <use xlink:href="#glyph0-18" x="68.226562" y="761"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 775 L 353 775 L 353 968 L 14 968 Z M 14 775 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="21" y="792"/> + <use xlink:href="#glyph0-17" x="27.982422" y="792"/> + <use xlink:href="#glyph0-27" x="30.760742" y="792"/> + <use xlink:href="#glyph0-28" x="37.098633" y="792"/> + <use xlink:href="#glyph0-15" x="42.308594" y="792"/> + <use xlink:href="#glyph0-7" x="46.229492" y="792"/> + <use xlink:href="#glyph0-29" x="52.381836" y="792"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 799 L 97 799 L 97 823 L 21 823 Z M 21 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="816"/> + <use xlink:href="#glyph0-25" x="33.571289" y="816"/> + <use xlink:href="#glyph0-8" x="39.933594" y="816"/> + <use xlink:href="#glyph0-9" x="43.112305" y="816"/> + <use xlink:href="#glyph0-10" x="47.013672" y="816"/> + <use xlink:href="#glyph0-12" x="53.375977" y="816"/> + <use xlink:href="#glyph0-25" x="59.738281" y="816"/> + <use xlink:href="#glyph0-30" x="66.100586" y="816"/> + <use xlink:href="#glyph0-14" x="72.658203" y="816"/> + <use xlink:href="#glyph0-18" x="79.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 830 L 97 830 L 97 854 L 21 854 Z M 21 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="847"/> + <use xlink:href="#glyph0-12" x="33.571289" y="847"/> + <use xlink:href="#glyph0-31" x="39.933594" y="847"/> + <use xlink:href="#glyph0-8" x="46.28125" y="847"/> + <use xlink:href="#glyph0-9" x="49.459961" y="847"/> + <use xlink:href="#glyph0-32" x="53.361328" y="847"/> + <use xlink:href="#glyph0-33" x="59.723633" y="847"/> + <use xlink:href="#glyph0-30" x="66.085938" y="847"/> + <use xlink:href="#glyph0-14" x="72.643555" y="847"/> + <use xlink:href="#glyph0-18" x="79.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 861 L 97 861 L 97 885 L 21 885 Z M 21 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="878"/> + <use xlink:href="#glyph0-12" x="33.571289" y="878"/> + <use xlink:href="#glyph0-5" x="39.933594" y="878"/> + <use xlink:href="#glyph0-8" x="42.711914" y="878"/> + <use xlink:href="#glyph0-9" x="45.890625" y="878"/> + <use xlink:href="#glyph0-32" x="49.791992" y="878"/> + <use xlink:href="#glyph0-33" x="56.154297" y="878"/> + <use xlink:href="#glyph0-30" x="62.516602" y="878"/> + <use xlink:href="#glyph0-14" x="69.074219" y="878"/> + <use xlink:href="#glyph0-18" x="75.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 892 L 97 892 L 97 961 L 21 961 Z M 21 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="28" y="909"/> + <use xlink:href="#glyph0-16" x="34.982422" y="909"/> + <use xlink:href="#glyph0-29" x="41.100586" y="909"/> + <use xlink:href="#glyph0-7" x="45.211914" y="909"/> + <use xlink:href="#glyph0-8" x="51.364258" y="909"/> + <use xlink:href="#glyph0-22" x="54.542969" y="909"/> + <use xlink:href="#glyph0-23" x="60.114258" y="909"/> + <use xlink:href="#glyph0-32" x="68.493164" y="909"/> + <use xlink:href="#glyph0-33" x="74.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28 916 L 90 916 L 90 954 L 28 954 Z M 28 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="38" y="933"/> + <use xlink:href="#glyph0-34" x="44.030273" y="933"/> + <use xlink:href="#glyph0-8" x="51.349609" y="933"/> + <use xlink:href="#glyph0-22" x="54.52832" y="933"/> + <use xlink:href="#glyph0-23" x="60.099609" y="933"/> + <use xlink:href="#glyph0-32" x="68.478516" y="933"/> + <use xlink:href="#glyph0-33" x="74.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="46" y="947"/> + <use xlink:href="#glyph0-23" x="52.030273" y="947"/> + <use xlink:href="#glyph0-32" x="60.40918" y="947"/> + <use xlink:href="#glyph0-33" x="66.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 799 L 180 799 L 180 823 L 104 823 Z M 104 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="816"/> + <use xlink:href="#glyph0-25" x="116.571289" y="816"/> + <use xlink:href="#glyph0-8" x="122.933594" y="816"/> + <use xlink:href="#glyph0-9" x="126.112305" y="816"/> + <use xlink:href="#glyph0-10" x="130.013672" y="816"/> + <use xlink:href="#glyph0-12" x="136.375977" y="816"/> + <use xlink:href="#glyph0-25" x="142.738281" y="816"/> + <use xlink:href="#glyph0-30" x="149.100586" y="816"/> + <use xlink:href="#glyph0-14" x="155.658203" y="816"/> + <use xlink:href="#glyph0-18" x="162.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 830 L 180 830 L 180 854 L 104 854 Z M 104 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="847"/> + <use xlink:href="#glyph0-12" x="116.571289" y="847"/> + <use xlink:href="#glyph0-31" x="122.933594" y="847"/> + <use xlink:href="#glyph0-8" x="129.28125" y="847"/> + <use xlink:href="#glyph0-9" x="132.459961" y="847"/> + <use xlink:href="#glyph0-32" x="136.361328" y="847"/> + <use xlink:href="#glyph0-33" x="142.723633" y="847"/> + <use xlink:href="#glyph0-30" x="149.085938" y="847"/> + <use xlink:href="#glyph0-14" x="155.643555" y="847"/> + <use xlink:href="#glyph0-18" x="162.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 861 L 180 861 L 180 885 L 104 885 Z M 104 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="878"/> + <use xlink:href="#glyph0-12" x="116.571289" y="878"/> + <use xlink:href="#glyph0-5" x="122.933594" y="878"/> + <use xlink:href="#glyph0-8" x="125.711914" y="878"/> + <use xlink:href="#glyph0-9" x="128.890625" y="878"/> + <use xlink:href="#glyph0-32" x="132.791992" y="878"/> + <use xlink:href="#glyph0-33" x="139.154297" y="878"/> + <use xlink:href="#glyph0-30" x="145.516602" y="878"/> + <use xlink:href="#glyph0-14" x="152.074219" y="878"/> + <use xlink:href="#glyph0-18" x="158.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 892 L 180 892 L 180 961 L 104 961 Z M 104 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="111" y="909"/> + <use xlink:href="#glyph0-16" x="117.982422" y="909"/> + <use xlink:href="#glyph0-29" x="124.100586" y="909"/> + <use xlink:href="#glyph0-7" x="128.211914" y="909"/> + <use xlink:href="#glyph0-8" x="134.364258" y="909"/> + <use xlink:href="#glyph0-22" x="137.542969" y="909"/> + <use xlink:href="#glyph0-23" x="143.114258" y="909"/> + <use xlink:href="#glyph0-32" x="151.493164" y="909"/> + <use xlink:href="#glyph0-10" x="157.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111 916 L 173 916 L 173 954 L 111 954 Z M 111 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="121" y="933"/> + <use xlink:href="#glyph0-34" x="127.030273" y="933"/> + <use xlink:href="#glyph0-8" x="134.349609" y="933"/> + <use xlink:href="#glyph0-22" x="137.52832" y="933"/> + <use xlink:href="#glyph0-23" x="143.099609" y="933"/> + <use xlink:href="#glyph0-32" x="151.478516" y="933"/> + <use xlink:href="#glyph0-10" x="157.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="129" y="947"/> + <use xlink:href="#glyph0-23" x="135.030273" y="947"/> + <use xlink:href="#glyph0-32" x="143.40918" y="947"/> + <use xlink:href="#glyph0-10" x="149.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 799 L 263 799 L 263 823 L 187 823 Z M 187 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="816"/> + <use xlink:href="#glyph0-25" x="199.571289" y="816"/> + <use xlink:href="#glyph0-8" x="205.933594" y="816"/> + <use xlink:href="#glyph0-9" x="209.112305" y="816"/> + <use xlink:href="#glyph0-10" x="213.013672" y="816"/> + <use xlink:href="#glyph0-12" x="219.375977" y="816"/> + <use xlink:href="#glyph0-25" x="225.738281" y="816"/> + <use xlink:href="#glyph0-30" x="232.100586" y="816"/> + <use xlink:href="#glyph0-14" x="238.658203" y="816"/> + <use xlink:href="#glyph0-18" x="245.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 830 L 263 830 L 263 854 L 187 854 Z M 187 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="847"/> + <use xlink:href="#glyph0-12" x="199.571289" y="847"/> + <use xlink:href="#glyph0-31" x="205.933594" y="847"/> + <use xlink:href="#glyph0-8" x="212.28125" y="847"/> + <use xlink:href="#glyph0-9" x="215.459961" y="847"/> + <use xlink:href="#glyph0-32" x="219.361328" y="847"/> + <use xlink:href="#glyph0-33" x="225.723633" y="847"/> + <use xlink:href="#glyph0-30" x="232.085938" y="847"/> + <use xlink:href="#glyph0-14" x="238.643555" y="847"/> + <use xlink:href="#glyph0-18" x="245.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 861 L 263 861 L 263 885 L 187 885 Z M 187 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="878"/> + <use xlink:href="#glyph0-12" x="199.571289" y="878"/> + <use xlink:href="#glyph0-5" x="205.933594" y="878"/> + <use xlink:href="#glyph0-8" x="208.711914" y="878"/> + <use xlink:href="#glyph0-9" x="211.890625" y="878"/> + <use xlink:href="#glyph0-32" x="215.791992" y="878"/> + <use xlink:href="#glyph0-33" x="222.154297" y="878"/> + <use xlink:href="#glyph0-30" x="228.516602" y="878"/> + <use xlink:href="#glyph0-14" x="235.074219" y="878"/> + <use xlink:href="#glyph0-18" x="241.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 892 L 263 892 L 263 961 L 187 961 Z M 187 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="194" y="909"/> + <use xlink:href="#glyph0-16" x="200.982422" y="909"/> + <use xlink:href="#glyph0-29" x="207.100586" y="909"/> + <use xlink:href="#glyph0-7" x="211.211914" y="909"/> + <use xlink:href="#glyph0-8" x="217.364258" y="909"/> + <use xlink:href="#glyph0-22" x="220.542969" y="909"/> + <use xlink:href="#glyph0-23" x="226.114258" y="909"/> + <use xlink:href="#glyph0-32" x="234.493164" y="909"/> + <use xlink:href="#glyph0-32" x="240.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194 916 L 256 916 L 256 954 L 194 954 Z M 194 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="204" y="933"/> + <use xlink:href="#glyph0-34" x="210.030273" y="933"/> + <use xlink:href="#glyph0-8" x="217.349609" y="933"/> + <use xlink:href="#glyph0-22" x="220.52832" y="933"/> + <use xlink:href="#glyph0-23" x="226.099609" y="933"/> + <use xlink:href="#glyph0-32" x="234.478516" y="933"/> + <use xlink:href="#glyph0-32" x="240.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="212" y="947"/> + <use xlink:href="#glyph0-23" x="218.030273" y="947"/> + <use xlink:href="#glyph0-32" x="226.40918" y="947"/> + <use xlink:href="#glyph0-32" x="232.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 799 L 346 799 L 346 823 L 270 823 Z M 270 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="816"/> + <use xlink:href="#glyph0-25" x="282.571289" y="816"/> + <use xlink:href="#glyph0-8" x="288.933594" y="816"/> + <use xlink:href="#glyph0-9" x="292.112305" y="816"/> + <use xlink:href="#glyph0-10" x="296.013672" y="816"/> + <use xlink:href="#glyph0-12" x="302.375977" y="816"/> + <use xlink:href="#glyph0-25" x="308.738281" y="816"/> + <use xlink:href="#glyph0-30" x="315.100586" y="816"/> + <use xlink:href="#glyph0-14" x="321.658203" y="816"/> + <use xlink:href="#glyph0-18" x="328.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 830 L 346 830 L 346 854 L 270 854 Z M 270 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="847"/> + <use xlink:href="#glyph0-12" x="282.571289" y="847"/> + <use xlink:href="#glyph0-31" x="288.933594" y="847"/> + <use xlink:href="#glyph0-8" x="295.28125" y="847"/> + <use xlink:href="#glyph0-9" x="298.459961" y="847"/> + <use xlink:href="#glyph0-32" x="302.361328" y="847"/> + <use xlink:href="#glyph0-33" x="308.723633" y="847"/> + <use xlink:href="#glyph0-30" x="315.085938" y="847"/> + <use xlink:href="#glyph0-14" x="321.643555" y="847"/> + <use xlink:href="#glyph0-18" x="328.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 861 L 346 861 L 346 885 L 270 885 Z M 270 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="878"/> + <use xlink:href="#glyph0-12" x="282.571289" y="878"/> + <use xlink:href="#glyph0-5" x="288.933594" y="878"/> + <use xlink:href="#glyph0-8" x="291.711914" y="878"/> + <use xlink:href="#glyph0-9" x="294.890625" y="878"/> + <use xlink:href="#glyph0-32" x="298.791992" y="878"/> + <use xlink:href="#glyph0-33" x="305.154297" y="878"/> + <use xlink:href="#glyph0-30" x="311.516602" y="878"/> + <use xlink:href="#glyph0-14" x="318.074219" y="878"/> + <use xlink:href="#glyph0-18" x="324.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 892 L 346 892 L 346 961 L 270 961 Z M 270 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="277" y="909"/> + <use xlink:href="#glyph0-16" x="283.982422" y="909"/> + <use xlink:href="#glyph0-29" x="290.100586" y="909"/> + <use xlink:href="#glyph0-7" x="294.211914" y="909"/> + <use xlink:href="#glyph0-8" x="300.364258" y="909"/> + <use xlink:href="#glyph0-22" x="303.542969" y="909"/> + <use xlink:href="#glyph0-23" x="309.114258" y="909"/> + <use xlink:href="#glyph0-32" x="317.493164" y="909"/> + <use xlink:href="#glyph0-35" x="323.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277 916 L 339 916 L 339 954 L 277 954 Z M 277 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="287" y="933"/> + <use xlink:href="#glyph0-34" x="293.030273" y="933"/> + <use xlink:href="#glyph0-8" x="300.349609" y="933"/> + <use xlink:href="#glyph0-22" x="303.52832" y="933"/> + <use xlink:href="#glyph0-23" x="309.099609" y="933"/> + <use xlink:href="#glyph0-32" x="317.478516" y="933"/> + <use xlink:href="#glyph0-35" x="323.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="295" y="947"/> + <use xlink:href="#glyph0-23" x="301.030273" y="947"/> + <use xlink:href="#glyph0-32" x="309.40918" y="947"/> + <use xlink:href="#glyph0-35" x="315.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360 775 L 699 775 L 699 968 L 360 968 Z M 360 775 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="367" y="792"/> + <use xlink:href="#glyph0-17" x="373.982422" y="792"/> + <use xlink:href="#glyph0-27" x="376.760742" y="792"/> + <use xlink:href="#glyph0-28" x="383.098633" y="792"/> + <use xlink:href="#glyph0-15" x="388.308594" y="792"/> + <use xlink:href="#glyph0-7" x="392.229492" y="792"/> + <use xlink:href="#glyph0-29" x="398.381836" y="792"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 799 L 443 799 L 443 823 L 367 823 Z M 367 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="816"/> + <use xlink:href="#glyph0-25" x="379.571289" y="816"/> + <use xlink:href="#glyph0-8" x="385.933594" y="816"/> + <use xlink:href="#glyph0-9" x="389.112305" y="816"/> + <use xlink:href="#glyph0-10" x="393.013672" y="816"/> + <use xlink:href="#glyph0-12" x="399.375977" y="816"/> + <use xlink:href="#glyph0-25" x="405.738281" y="816"/> + <use xlink:href="#glyph0-30" x="412.100586" y="816"/> + <use xlink:href="#glyph0-14" x="418.658203" y="816"/> + <use xlink:href="#glyph0-18" x="425.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 830 L 443 830 L 443 854 L 367 854 Z M 367 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="847"/> + <use xlink:href="#glyph0-12" x="379.571289" y="847"/> + <use xlink:href="#glyph0-31" x="385.933594" y="847"/> + <use xlink:href="#glyph0-8" x="392.28125" y="847"/> + <use xlink:href="#glyph0-9" x="395.459961" y="847"/> + <use xlink:href="#glyph0-32" x="399.361328" y="847"/> + <use xlink:href="#glyph0-33" x="405.723633" y="847"/> + <use xlink:href="#glyph0-30" x="412.085938" y="847"/> + <use xlink:href="#glyph0-14" x="418.643555" y="847"/> + <use xlink:href="#glyph0-18" x="425.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 861 L 443 861 L 443 885 L 367 885 Z M 367 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="878"/> + <use xlink:href="#glyph0-12" x="379.571289" y="878"/> + <use xlink:href="#glyph0-5" x="385.933594" y="878"/> + <use xlink:href="#glyph0-8" x="388.711914" y="878"/> + <use xlink:href="#glyph0-9" x="391.890625" y="878"/> + <use xlink:href="#glyph0-32" x="395.791992" y="878"/> + <use xlink:href="#glyph0-33" x="402.154297" y="878"/> + <use xlink:href="#glyph0-30" x="408.516602" y="878"/> + <use xlink:href="#glyph0-14" x="415.074219" y="878"/> + <use xlink:href="#glyph0-18" x="421.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 892 L 443 892 L 443 961 L 367 961 Z M 367 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="374" y="909"/> + <use xlink:href="#glyph0-16" x="380.982422" y="909"/> + <use xlink:href="#glyph0-29" x="387.100586" y="909"/> + <use xlink:href="#glyph0-7" x="391.211914" y="909"/> + <use xlink:href="#glyph0-8" x="397.364258" y="909"/> + <use xlink:href="#glyph0-22" x="400.542969" y="909"/> + <use xlink:href="#glyph0-23" x="406.114258" y="909"/> + <use xlink:href="#glyph0-32" x="414.493164" y="909"/> + <use xlink:href="#glyph0-36" x="420.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374 916 L 436 916 L 436 954 L 374 954 Z M 374 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="384" y="933"/> + <use xlink:href="#glyph0-34" x="390.030273" y="933"/> + <use xlink:href="#glyph0-8" x="397.349609" y="933"/> + <use xlink:href="#glyph0-22" x="400.52832" y="933"/> + <use xlink:href="#glyph0-23" x="406.099609" y="933"/> + <use xlink:href="#glyph0-32" x="414.478516" y="933"/> + <use xlink:href="#glyph0-36" x="420.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="392" y="947"/> + <use xlink:href="#glyph0-23" x="398.030273" y="947"/> + <use xlink:href="#glyph0-32" x="406.40918" y="947"/> + <use xlink:href="#glyph0-36" x="412.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 799 L 526 799 L 526 823 L 450 823 Z M 450 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="816"/> + <use xlink:href="#glyph0-25" x="462.571289" y="816"/> + <use xlink:href="#glyph0-8" x="468.933594" y="816"/> + <use xlink:href="#glyph0-9" x="472.112305" y="816"/> + <use xlink:href="#glyph0-10" x="476.013672" y="816"/> + <use xlink:href="#glyph0-12" x="482.375977" y="816"/> + <use xlink:href="#glyph0-25" x="488.738281" y="816"/> + <use xlink:href="#glyph0-30" x="495.100586" y="816"/> + <use xlink:href="#glyph0-14" x="501.658203" y="816"/> + <use xlink:href="#glyph0-18" x="508.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 830 L 526 830 L 526 854 L 450 854 Z M 450 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="847"/> + <use xlink:href="#glyph0-12" x="462.571289" y="847"/> + <use xlink:href="#glyph0-31" x="468.933594" y="847"/> + <use xlink:href="#glyph0-8" x="475.28125" y="847"/> + <use xlink:href="#glyph0-9" x="478.459961" y="847"/> + <use xlink:href="#glyph0-32" x="482.361328" y="847"/> + <use xlink:href="#glyph0-33" x="488.723633" y="847"/> + <use xlink:href="#glyph0-30" x="495.085938" y="847"/> + <use xlink:href="#glyph0-14" x="501.643555" y="847"/> + <use xlink:href="#glyph0-18" x="508.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 861 L 526 861 L 526 885 L 450 885 Z M 450 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="878"/> + <use xlink:href="#glyph0-12" x="462.571289" y="878"/> + <use xlink:href="#glyph0-5" x="468.933594" y="878"/> + <use xlink:href="#glyph0-8" x="471.711914" y="878"/> + <use xlink:href="#glyph0-9" x="474.890625" y="878"/> + <use xlink:href="#glyph0-32" x="478.791992" y="878"/> + <use xlink:href="#glyph0-33" x="485.154297" y="878"/> + <use xlink:href="#glyph0-30" x="491.516602" y="878"/> + <use xlink:href="#glyph0-14" x="498.074219" y="878"/> + <use xlink:href="#glyph0-18" x="504.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 892 L 526 892 L 526 961 L 450 961 Z M 450 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="457" y="909"/> + <use xlink:href="#glyph0-16" x="463.982422" y="909"/> + <use xlink:href="#glyph0-29" x="470.100586" y="909"/> + <use xlink:href="#glyph0-7" x="474.211914" y="909"/> + <use xlink:href="#glyph0-8" x="480.364258" y="909"/> + <use xlink:href="#glyph0-22" x="483.542969" y="909"/> + <use xlink:href="#glyph0-23" x="489.114258" y="909"/> + <use xlink:href="#glyph0-32" x="497.493164" y="909"/> + <use xlink:href="#glyph0-38" x="503.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 457 916 L 519 916 L 519 954 L 457 954 Z M 457 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="467" y="933"/> + <use xlink:href="#glyph0-34" x="473.030273" y="933"/> + <use xlink:href="#glyph0-8" x="480.349609" y="933"/> + <use xlink:href="#glyph0-22" x="483.52832" y="933"/> + <use xlink:href="#glyph0-23" x="489.099609" y="933"/> + <use xlink:href="#glyph0-32" x="497.478516" y="933"/> + <use xlink:href="#glyph0-38" x="503.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="475" y="947"/> + <use xlink:href="#glyph0-23" x="481.030273" y="947"/> + <use xlink:href="#glyph0-32" x="489.40918" y="947"/> + <use xlink:href="#glyph0-38" x="495.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 799 L 609 799 L 609 823 L 533 823 Z M 533 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="816"/> + <use xlink:href="#glyph0-25" x="545.571289" y="816"/> + <use xlink:href="#glyph0-8" x="551.933594" y="816"/> + <use xlink:href="#glyph0-9" x="555.112305" y="816"/> + <use xlink:href="#glyph0-10" x="559.013672" y="816"/> + <use xlink:href="#glyph0-12" x="565.375977" y="816"/> + <use xlink:href="#glyph0-25" x="571.738281" y="816"/> + <use xlink:href="#glyph0-30" x="578.100586" y="816"/> + <use xlink:href="#glyph0-14" x="584.658203" y="816"/> + <use xlink:href="#glyph0-18" x="591.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 830 L 609 830 L 609 854 L 533 854 Z M 533 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="847"/> + <use xlink:href="#glyph0-12" x="545.571289" y="847"/> + <use xlink:href="#glyph0-31" x="551.933594" y="847"/> + <use xlink:href="#glyph0-8" x="558.28125" y="847"/> + <use xlink:href="#glyph0-9" x="561.459961" y="847"/> + <use xlink:href="#glyph0-32" x="565.361328" y="847"/> + <use xlink:href="#glyph0-33" x="571.723633" y="847"/> + <use xlink:href="#glyph0-30" x="578.085938" y="847"/> + <use xlink:href="#glyph0-14" x="584.643555" y="847"/> + <use xlink:href="#glyph0-18" x="591.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 861 L 609 861 L 609 885 L 533 885 Z M 533 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="878"/> + <use xlink:href="#glyph0-12" x="545.571289" y="878"/> + <use xlink:href="#glyph0-5" x="551.933594" y="878"/> + <use xlink:href="#glyph0-8" x="554.711914" y="878"/> + <use xlink:href="#glyph0-9" x="557.890625" y="878"/> + <use xlink:href="#glyph0-32" x="561.791992" y="878"/> + <use xlink:href="#glyph0-33" x="568.154297" y="878"/> + <use xlink:href="#glyph0-30" x="574.516602" y="878"/> + <use xlink:href="#glyph0-14" x="581.074219" y="878"/> + <use xlink:href="#glyph0-18" x="587.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 892 L 609 892 L 609 961 L 533 961 Z M 533 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="540" y="909"/> + <use xlink:href="#glyph0-16" x="546.982422" y="909"/> + <use xlink:href="#glyph0-29" x="553.100586" y="909"/> + <use xlink:href="#glyph0-7" x="557.211914" y="909"/> + <use xlink:href="#glyph0-8" x="563.364258" y="909"/> + <use xlink:href="#glyph0-22" x="566.542969" y="909"/> + <use xlink:href="#glyph0-23" x="572.114258" y="909"/> + <use xlink:href="#glyph0-35" x="580.493164" y="909"/> + <use xlink:href="#glyph0-11" x="586.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 540 916 L 602 916 L 602 954 L 540 954 Z M 540 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="550" y="933"/> + <use xlink:href="#glyph0-34" x="556.030273" y="933"/> + <use xlink:href="#glyph0-8" x="563.349609" y="933"/> + <use xlink:href="#glyph0-22" x="566.52832" y="933"/> + <use xlink:href="#glyph0-23" x="572.099609" y="933"/> + <use xlink:href="#glyph0-35" x="580.478516" y="933"/> + <use xlink:href="#glyph0-11" x="586.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="558" y="947"/> + <use xlink:href="#glyph0-23" x="564.030273" y="947"/> + <use xlink:href="#glyph0-35" x="572.40918" y="947"/> + <use xlink:href="#glyph0-11" x="578.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 799 L 692 799 L 692 823 L 616 823 Z M 616 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="816"/> + <use xlink:href="#glyph0-25" x="628.571289" y="816"/> + <use xlink:href="#glyph0-8" x="634.933594" y="816"/> + <use xlink:href="#glyph0-9" x="638.112305" y="816"/> + <use xlink:href="#glyph0-10" x="642.013672" y="816"/> + <use xlink:href="#glyph0-12" x="648.375977" y="816"/> + <use xlink:href="#glyph0-25" x="654.738281" y="816"/> + <use xlink:href="#glyph0-30" x="661.100586" y="816"/> + <use xlink:href="#glyph0-14" x="667.658203" y="816"/> + <use xlink:href="#glyph0-18" x="674.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 830 L 692 830 L 692 854 L 616 854 Z M 616 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="847"/> + <use xlink:href="#glyph0-12" x="628.571289" y="847"/> + <use xlink:href="#glyph0-31" x="634.933594" y="847"/> + <use xlink:href="#glyph0-8" x="641.28125" y="847"/> + <use xlink:href="#glyph0-9" x="644.459961" y="847"/> + <use xlink:href="#glyph0-32" x="648.361328" y="847"/> + <use xlink:href="#glyph0-33" x="654.723633" y="847"/> + <use xlink:href="#glyph0-30" x="661.085938" y="847"/> + <use xlink:href="#glyph0-14" x="667.643555" y="847"/> + <use xlink:href="#glyph0-18" x="674.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 861 L 692 861 L 692 885 L 616 885 Z M 616 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="878"/> + <use xlink:href="#glyph0-12" x="628.571289" y="878"/> + <use xlink:href="#glyph0-5" x="634.933594" y="878"/> + <use xlink:href="#glyph0-8" x="637.711914" y="878"/> + <use xlink:href="#glyph0-9" x="640.890625" y="878"/> + <use xlink:href="#glyph0-32" x="644.791992" y="878"/> + <use xlink:href="#glyph0-33" x="651.154297" y="878"/> + <use xlink:href="#glyph0-30" x="657.516602" y="878"/> + <use xlink:href="#glyph0-14" x="664.074219" y="878"/> + <use xlink:href="#glyph0-18" x="670.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 892 L 692 892 L 692 961 L 616 961 Z M 616 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="623" y="909"/> + <use xlink:href="#glyph0-16" x="629.982422" y="909"/> + <use xlink:href="#glyph0-29" x="636.100586" y="909"/> + <use xlink:href="#glyph0-7" x="640.211914" y="909"/> + <use xlink:href="#glyph0-8" x="646.364258" y="909"/> + <use xlink:href="#glyph0-22" x="649.542969" y="909"/> + <use xlink:href="#glyph0-23" x="655.114258" y="909"/> + <use xlink:href="#glyph0-35" x="663.493164" y="909"/> + <use xlink:href="#glyph0-12" x="669.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 623 916 L 685 916 L 685 954 L 623 954 Z M 623 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="633" y="933"/> + <use xlink:href="#glyph0-34" x="639.030273" y="933"/> + <use xlink:href="#glyph0-8" x="646.349609" y="933"/> + <use xlink:href="#glyph0-22" x="649.52832" y="933"/> + <use xlink:href="#glyph0-23" x="655.099609" y="933"/> + <use xlink:href="#glyph0-35" x="663.478516" y="933"/> + <use xlink:href="#glyph0-12" x="669.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="641" y="947"/> + <use xlink:href="#glyph0-23" x="647.030273" y="947"/> + <use xlink:href="#glyph0-35" x="655.40918" y="947"/> + <use xlink:href="#glyph0-12" x="661.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 706 782 L 713 782 L 713 789 L 706 789 Z M 706 782 "/> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 720 782 L 727 782 L 727 789 L 720 789 Z M 720 782 "/> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 734 782 L 741 782 L 741 789 L 734 789 Z M 734 782 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-36" x="706" y="803"/> + <use xlink:href="#glyph0-37" x="712.362305" y="803"/> + <use xlink:href="#glyph0-8" x="718.280273" y="803"/> + <use xlink:href="#glyph0-15" x="721.458984" y="803"/> + <use xlink:href="#glyph0-16" x="725.379883" y="803"/> + <use xlink:href="#glyph0-15" x="731.498047" y="803"/> + <use xlink:href="#glyph0-2" x="735.418945" y="803"/> + <use xlink:href="#glyph0-17" x="741.546875" y="803"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 749 775 L 1088 775 L 1088 968 L 749 968 Z M 749 775 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="756" y="792"/> + <use xlink:href="#glyph0-17" x="762.982422" y="792"/> + <use xlink:href="#glyph0-27" x="765.760742" y="792"/> + <use xlink:href="#glyph0-28" x="772.098633" y="792"/> + <use xlink:href="#glyph0-15" x="777.308594" y="792"/> + <use xlink:href="#glyph0-7" x="781.229492" y="792"/> + <use xlink:href="#glyph0-29" x="787.381836" y="792"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 799 L 832 799 L 832 823 L 756 823 Z M 756 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="816"/> + <use xlink:href="#glyph0-25" x="768.571289" y="816"/> + <use xlink:href="#glyph0-8" x="774.933594" y="816"/> + <use xlink:href="#glyph0-9" x="778.112305" y="816"/> + <use xlink:href="#glyph0-10" x="782.013672" y="816"/> + <use xlink:href="#glyph0-12" x="788.375977" y="816"/> + <use xlink:href="#glyph0-25" x="794.738281" y="816"/> + <use xlink:href="#glyph0-30" x="801.100586" y="816"/> + <use xlink:href="#glyph0-14" x="807.658203" y="816"/> + <use xlink:href="#glyph0-18" x="814.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 830 L 832 830 L 832 854 L 756 854 Z M 756 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="847"/> + <use xlink:href="#glyph0-12" x="768.571289" y="847"/> + <use xlink:href="#glyph0-31" x="774.933594" y="847"/> + <use xlink:href="#glyph0-8" x="781.28125" y="847"/> + <use xlink:href="#glyph0-9" x="784.459961" y="847"/> + <use xlink:href="#glyph0-32" x="788.361328" y="847"/> + <use xlink:href="#glyph0-33" x="794.723633" y="847"/> + <use xlink:href="#glyph0-30" x="801.085938" y="847"/> + <use xlink:href="#glyph0-14" x="807.643555" y="847"/> + <use xlink:href="#glyph0-18" x="814.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 861 L 832 861 L 832 885 L 756 885 Z M 756 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="878"/> + <use xlink:href="#glyph0-12" x="768.571289" y="878"/> + <use xlink:href="#glyph0-5" x="774.933594" y="878"/> + <use xlink:href="#glyph0-8" x="777.711914" y="878"/> + <use xlink:href="#glyph0-9" x="780.890625" y="878"/> + <use xlink:href="#glyph0-32" x="784.791992" y="878"/> + <use xlink:href="#glyph0-33" x="791.154297" y="878"/> + <use xlink:href="#glyph0-30" x="797.516602" y="878"/> + <use xlink:href="#glyph0-14" x="804.074219" y="878"/> + <use xlink:href="#glyph0-18" x="810.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 892 L 832 892 L 832 961 L 756 961 Z M 756 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="763" y="909"/> + <use xlink:href="#glyph0-16" x="769.982422" y="909"/> + <use xlink:href="#glyph0-29" x="776.100586" y="909"/> + <use xlink:href="#glyph0-7" x="780.211914" y="909"/> + <use xlink:href="#glyph0-8" x="786.364258" y="909"/> + <use xlink:href="#glyph0-22" x="789.542969" y="909"/> + <use xlink:href="#glyph0-23" x="795.114258" y="909"/> + <use xlink:href="#glyph0-38" x="803.493164" y="909"/> + <use xlink:href="#glyph0-25" x="809.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 763 916 L 825 916 L 825 954 L 763 954 Z M 763 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="773" y="933"/> + <use xlink:href="#glyph0-34" x="779.030273" y="933"/> + <use xlink:href="#glyph0-8" x="786.349609" y="933"/> + <use xlink:href="#glyph0-22" x="789.52832" y="933"/> + <use xlink:href="#glyph0-23" x="795.099609" y="933"/> + <use xlink:href="#glyph0-38" x="803.478516" y="933"/> + <use xlink:href="#glyph0-25" x="809.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="781" y="947"/> + <use xlink:href="#glyph0-23" x="787.030273" y="947"/> + <use xlink:href="#glyph0-38" x="795.40918" y="947"/> + <use xlink:href="#glyph0-25" x="801.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 799 L 915 799 L 915 823 L 839 823 Z M 839 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="816"/> + <use xlink:href="#glyph0-25" x="851.571289" y="816"/> + <use xlink:href="#glyph0-8" x="857.933594" y="816"/> + <use xlink:href="#glyph0-9" x="861.112305" y="816"/> + <use xlink:href="#glyph0-10" x="865.013672" y="816"/> + <use xlink:href="#glyph0-12" x="871.375977" y="816"/> + <use xlink:href="#glyph0-25" x="877.738281" y="816"/> + <use xlink:href="#glyph0-30" x="884.100586" y="816"/> + <use xlink:href="#glyph0-14" x="890.658203" y="816"/> + <use xlink:href="#glyph0-18" x="897.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 830 L 915 830 L 915 854 L 839 854 Z M 839 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="847"/> + <use xlink:href="#glyph0-12" x="851.571289" y="847"/> + <use xlink:href="#glyph0-31" x="857.933594" y="847"/> + <use xlink:href="#glyph0-8" x="864.28125" y="847"/> + <use xlink:href="#glyph0-9" x="867.459961" y="847"/> + <use xlink:href="#glyph0-32" x="871.361328" y="847"/> + <use xlink:href="#glyph0-33" x="877.723633" y="847"/> + <use xlink:href="#glyph0-30" x="884.085938" y="847"/> + <use xlink:href="#glyph0-14" x="890.643555" y="847"/> + <use xlink:href="#glyph0-18" x="897.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 861 L 915 861 L 915 885 L 839 885 Z M 839 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="878"/> + <use xlink:href="#glyph0-12" x="851.571289" y="878"/> + <use xlink:href="#glyph0-5" x="857.933594" y="878"/> + <use xlink:href="#glyph0-8" x="860.711914" y="878"/> + <use xlink:href="#glyph0-9" x="863.890625" y="878"/> + <use xlink:href="#glyph0-32" x="867.791992" y="878"/> + <use xlink:href="#glyph0-33" x="874.154297" y="878"/> + <use xlink:href="#glyph0-30" x="880.516602" y="878"/> + <use xlink:href="#glyph0-14" x="887.074219" y="878"/> + <use xlink:href="#glyph0-18" x="893.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 892 L 915 892 L 915 961 L 839 961 Z M 839 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="846" y="909"/> + <use xlink:href="#glyph0-16" x="852.982422" y="909"/> + <use xlink:href="#glyph0-29" x="859.100586" y="909"/> + <use xlink:href="#glyph0-7" x="863.211914" y="909"/> + <use xlink:href="#glyph0-8" x="869.364258" y="909"/> + <use xlink:href="#glyph0-22" x="872.542969" y="909"/> + <use xlink:href="#glyph0-23" x="878.114258" y="909"/> + <use xlink:href="#glyph0-38" x="886.493164" y="909"/> + <use xlink:href="#glyph0-24" x="892.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 846 916 L 908 916 L 908 954 L 846 954 Z M 846 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="856" y="933"/> + <use xlink:href="#glyph0-34" x="862.030273" y="933"/> + <use xlink:href="#glyph0-8" x="869.349609" y="933"/> + <use xlink:href="#glyph0-22" x="872.52832" y="933"/> + <use xlink:href="#glyph0-23" x="878.099609" y="933"/> + <use xlink:href="#glyph0-38" x="886.478516" y="933"/> + <use xlink:href="#glyph0-24" x="892.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="864" y="947"/> + <use xlink:href="#glyph0-23" x="870.030273" y="947"/> + <use xlink:href="#glyph0-38" x="878.40918" y="947"/> + <use xlink:href="#glyph0-24" x="884.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 799 L 998 799 L 998 823 L 922 823 Z M 922 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="816"/> + <use xlink:href="#glyph0-25" x="934.571289" y="816"/> + <use xlink:href="#glyph0-8" x="940.933594" y="816"/> + <use xlink:href="#glyph0-9" x="944.112305" y="816"/> + <use xlink:href="#glyph0-10" x="948.013672" y="816"/> + <use xlink:href="#glyph0-12" x="954.375977" y="816"/> + <use xlink:href="#glyph0-25" x="960.738281" y="816"/> + <use xlink:href="#glyph0-30" x="967.100586" y="816"/> + <use xlink:href="#glyph0-14" x="973.658203" y="816"/> + <use xlink:href="#glyph0-18" x="980.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 830 L 998 830 L 998 854 L 922 854 Z M 922 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="847"/> + <use xlink:href="#glyph0-12" x="934.571289" y="847"/> + <use xlink:href="#glyph0-31" x="940.933594" y="847"/> + <use xlink:href="#glyph0-8" x="947.28125" y="847"/> + <use xlink:href="#glyph0-9" x="950.459961" y="847"/> + <use xlink:href="#glyph0-32" x="954.361328" y="847"/> + <use xlink:href="#glyph0-33" x="960.723633" y="847"/> + <use xlink:href="#glyph0-30" x="967.085938" y="847"/> + <use xlink:href="#glyph0-14" x="973.643555" y="847"/> + <use xlink:href="#glyph0-18" x="980.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 861 L 998 861 L 998 885 L 922 885 Z M 922 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="878"/> + <use xlink:href="#glyph0-12" x="934.571289" y="878"/> + <use xlink:href="#glyph0-5" x="940.933594" y="878"/> + <use xlink:href="#glyph0-8" x="943.711914" y="878"/> + <use xlink:href="#glyph0-9" x="946.890625" y="878"/> + <use xlink:href="#glyph0-32" x="950.791992" y="878"/> + <use xlink:href="#glyph0-33" x="957.154297" y="878"/> + <use xlink:href="#glyph0-30" x="963.516602" y="878"/> + <use xlink:href="#glyph0-14" x="970.074219" y="878"/> + <use xlink:href="#glyph0-18" x="976.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 892 L 998 892 L 998 961 L 922 961 Z M 922 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="929" y="909"/> + <use xlink:href="#glyph0-16" x="935.982422" y="909"/> + <use xlink:href="#glyph0-29" x="942.100586" y="909"/> + <use xlink:href="#glyph0-7" x="946.211914" y="909"/> + <use xlink:href="#glyph0-8" x="952.364258" y="909"/> + <use xlink:href="#glyph0-22" x="955.542969" y="909"/> + <use xlink:href="#glyph0-23" x="961.114258" y="909"/> + <use xlink:href="#glyph0-38" x="969.493164" y="909"/> + <use xlink:href="#glyph0-33" x="975.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 929 916 L 991 916 L 991 954 L 929 954 Z M 929 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="939" y="933"/> + <use xlink:href="#glyph0-34" x="945.030273" y="933"/> + <use xlink:href="#glyph0-8" x="952.349609" y="933"/> + <use xlink:href="#glyph0-22" x="955.52832" y="933"/> + <use xlink:href="#glyph0-23" x="961.099609" y="933"/> + <use xlink:href="#glyph0-38" x="969.478516" y="933"/> + <use xlink:href="#glyph0-33" x="975.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="947" y="947"/> + <use xlink:href="#glyph0-23" x="953.030273" y="947"/> + <use xlink:href="#glyph0-38" x="961.40918" y="947"/> + <use xlink:href="#glyph0-33" x="967.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 799 L 1081 799 L 1081 823 L 1005 823 Z M 1005 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="816"/> + <use xlink:href="#glyph0-25" x="1017.571289" y="816"/> + <use xlink:href="#glyph0-8" x="1023.933594" y="816"/> + <use xlink:href="#glyph0-9" x="1027.112305" y="816"/> + <use xlink:href="#glyph0-10" x="1031.013672" y="816"/> + <use xlink:href="#glyph0-12" x="1037.375977" y="816"/> + <use xlink:href="#glyph0-25" x="1043.738281" y="816"/> + <use xlink:href="#glyph0-30" x="1050.100586" y="816"/> + <use xlink:href="#glyph0-14" x="1056.658203" y="816"/> + <use xlink:href="#glyph0-18" x="1063.518555" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 830 L 1081 830 L 1081 854 L 1005 854 Z M 1005 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="847"/> + <use xlink:href="#glyph0-12" x="1017.571289" y="847"/> + <use xlink:href="#glyph0-31" x="1023.933594" y="847"/> + <use xlink:href="#glyph0-8" x="1030.28125" y="847"/> + <use xlink:href="#glyph0-9" x="1033.459961" y="847"/> + <use xlink:href="#glyph0-32" x="1037.361328" y="847"/> + <use xlink:href="#glyph0-33" x="1043.723633" y="847"/> + <use xlink:href="#glyph0-30" x="1050.085938" y="847"/> + <use xlink:href="#glyph0-14" x="1056.643555" y="847"/> + <use xlink:href="#glyph0-18" x="1063.503906" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 861 L 1081 861 L 1081 885 L 1005 885 Z M 1005 861 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="878"/> + <use xlink:href="#glyph0-12" x="1017.571289" y="878"/> + <use xlink:href="#glyph0-5" x="1023.933594" y="878"/> + <use xlink:href="#glyph0-8" x="1026.711914" y="878"/> + <use xlink:href="#glyph0-9" x="1029.890625" y="878"/> + <use xlink:href="#glyph0-32" x="1033.791992" y="878"/> + <use xlink:href="#glyph0-33" x="1040.154297" y="878"/> + <use xlink:href="#glyph0-30" x="1046.516602" y="878"/> + <use xlink:href="#glyph0-14" x="1053.074219" y="878"/> + <use xlink:href="#glyph0-18" x="1059.93457" y="878"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 892 L 1081 892 L 1081 961 L 1005 961 Z M 1005 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="1012" y="909"/> + <use xlink:href="#glyph0-16" x="1018.982422" y="909"/> + <use xlink:href="#glyph0-29" x="1025.100586" y="909"/> + <use xlink:href="#glyph0-7" x="1029.211914" y="909"/> + <use xlink:href="#glyph0-8" x="1035.364258" y="909"/> + <use xlink:href="#glyph0-22" x="1038.542969" y="909"/> + <use xlink:href="#glyph0-23" x="1044.114258" y="909"/> + <use xlink:href="#glyph0-38" x="1052.493164" y="909"/> + <use xlink:href="#glyph0-10" x="1058.855469" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1012 916 L 1074 916 L 1074 954 L 1012 954 Z M 1012 916 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1022" y="933"/> + <use xlink:href="#glyph0-34" x="1028.030273" y="933"/> + <use xlink:href="#glyph0-8" x="1035.349609" y="933"/> + <use xlink:href="#glyph0-22" x="1038.52832" y="933"/> + <use xlink:href="#glyph0-23" x="1044.099609" y="933"/> + <use xlink:href="#glyph0-38" x="1052.478516" y="933"/> + <use xlink:href="#glyph0-10" x="1058.84082" y="933"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1030" y="947"/> + <use xlink:href="#glyph0-23" x="1036.030273" y="947"/> + <use xlink:href="#glyph0-38" x="1044.40918" y="947"/> + <use xlink:href="#glyph0-10" x="1050.771484" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(93.725491%,87.450981%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 713 L 1784 713 L 1784 737 L 14 737 Z M 14 713 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="21" y="730"/> + <use xlink:href="#glyph0-34" x="28.480469" y="730"/> + <use xlink:href="#glyph0-1" x="35.799805" y="730"/> + <use xlink:href="#glyph0-40" x="44.427734" y="730"/> + <use xlink:href="#glyph0-39" x="51.268555" y="730"/> + <use xlink:href="#glyph0-16" x="58.749023" y="730"/> + <use xlink:href="#glyph0-31" x="64.867188" y="730"/> + <use xlink:href="#glyph0-7" x="71.214844" y="730"/> + <use xlink:href="#glyph0-8" x="77.367188" y="730"/> + <use xlink:href="#glyph0-22" x="80.545898" y="730"/> + <use xlink:href="#glyph0-23" x="86.117188" y="730"/> + <use xlink:href="#glyph0-25" x="94.496094" y="730"/> + <use xlink:href="#glyph0-8" x="100.858398" y="730"/> + <use xlink:href="#glyph0-19" x="104.037109" y="730"/> + <use xlink:href="#glyph0-23" x="110.067383" y="730"/> + <use xlink:href="#glyph0-25" x="118.446289" y="730"/> + <use xlink:href="#glyph0-8" x="124.808594" y="730"/> + <use xlink:href="#glyph0-9" x="127.987305" y="730"/> + <use xlink:href="#glyph0-12" x="131.888672" y="730"/> + <use xlink:href="#glyph0-25" x="138.250977" y="730"/> + <use xlink:href="#glyph0-32" x="144.613281" y="730"/> + <use xlink:href="#glyph0-13" x="150.975586" y="730"/> + <use xlink:href="#glyph0-14" x="158.724609" y="730"/> + <use xlink:href="#glyph0-18" x="165.584961" y="730"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1095 775 L 1102 775 L 1102 782 L 1095 782 Z M 1095 775 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1102 778 L 1109 778 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1109 778 L 1133 778 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-24" x="1112" y="791"/> + <use xlink:href="#glyph0-41" x="1118.362305" y="791"/> + <use xlink:href="#glyph0-38" x="1121.541016" y="791"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1109 778 L 1109 778 "/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1133 775 L 1140 775 L 1140 782 L 1133 782 Z M 1133 775 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1140 778 L 1147 778 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1147 778 L 1171 778 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-24" x="1150" y="791"/> + <use xlink:href="#glyph0-41" x="1156.362305" y="791"/> + <use xlink:href="#glyph0-38" x="1159.541016" y="791"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1147 778 L 1147 778 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1171 775 L 1274 775 L 1274 844 L 1171 844 Z M 1171 775 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1178" y="792"/> + <use xlink:href="#glyph0-26" x="1184.030273" y="792"/> + <use xlink:href="#glyph0-42" x="1191.012695" y="792"/> + <use xlink:href="#glyph0-8" x="1193.961914" y="792"/> + <use xlink:href="#glyph0-36" x="1197.140625" y="792"/> + <use xlink:href="#glyph0-10" x="1203.50293" y="792"/> + <use xlink:href="#glyph0-43" x="1209.865234" y="792"/> + <use xlink:href="#glyph0-11" x="1213.234375" y="792"/> + <use xlink:href="#glyph0-11" x="1219.59668" y="792"/> + <use xlink:href="#glyph0-41" x="1225.958984" y="792"/> + <use xlink:href="#glyph0-11" x="1229.137695" y="792"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1178 799 L 1267 799 L 1267 837 L 1178 837 Z M 1178 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-14" x="1185" y="816"/> + <use xlink:href="#glyph0-17" x="1191.860352" y="816"/> + <use xlink:href="#glyph0-16" x="1194.638672" y="816"/> + <use xlink:href="#glyph0-3" x="1200.756836" y="816"/> + <use xlink:href="#glyph0-20" x="1206.254883" y="816"/> + <use xlink:href="#glyph0-8" x="1212.045898" y="816"/> + <use xlink:href="#glyph0-6" x="1215.224609" y="816"/> + <use xlink:href="#glyph0-49" x="1221.5625" y="816"/> + <use xlink:href="#glyph0-50" x="1227.480469" y="816"/> + <use xlink:href="#glyph0-7" x="1237.22168" y="816"/> + <use xlink:href="#glyph0-11" x="1243.374023" y="816"/> + <use xlink:href="#glyph0-6" x="1249.736328" y="816"/> + <use xlink:href="#glyph0-12" x="1256.074219" y="816"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-12" x="1185" y="830"/> + <use xlink:href="#glyph0-33" x="1191.362305" y="830"/> + <use xlink:href="#glyph0-38" x="1197.724609" y="830"/> + <use xlink:href="#glyph0-11" x="1204.086914" y="830"/> + <use xlink:href="#glyph0-8" x="1210.449219" y="830"/> + <use xlink:href="#glyph0-13" x="1213.62793" y="830"/> + <use xlink:href="#glyph0-14" x="1221.376953" y="830"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1281 775 L 1288 775 L 1288 782 L 1281 782 Z M 1281 775 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1288 778 L 1295 778 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1295 778 L 1319 778 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1298" y="791"/> + <use xlink:href="#glyph0-41" x="1304.362305" y="791"/> + <use xlink:href="#glyph0-25" x="1307.541016" y="791"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1295 809 L 1319 809 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1298" y="822"/> + <use xlink:href="#glyph0-41" x="1304.362305" y="822"/> + <use xlink:href="#glyph0-25" x="1307.541016" y="822"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1295 840 L 1319 840 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1298" y="853"/> + <use xlink:href="#glyph0-41" x="1304.362305" y="853"/> + <use xlink:href="#glyph0-25" x="1307.541016" y="853"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1295 871 L 1319 871 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1298" y="884"/> + <use xlink:href="#glyph0-41" x="1304.362305" y="884"/> + <use xlink:href="#glyph0-25" x="1307.541016" y="884"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1295 778 L 1295 871 "/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1319 775 L 1326 775 L 1326 782 L 1319 782 Z M 1319 775 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1326 778 L 1333 778 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1333 778 L 1357 778 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1336" y="791"/> + <use xlink:href="#glyph0-41" x="1342.362305" y="791"/> + <use xlink:href="#glyph0-25" x="1345.541016" y="791"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1333 778 L 1333 778 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1357 775 L 1426 775 L 1426 799 L 1357 799 Z M 1357 775 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1364" y="792"/> + <use xlink:href="#glyph0-26" x="1370.030273" y="792"/> + <use xlink:href="#glyph0-42" x="1377.012695" y="792"/> + <use xlink:href="#glyph0-8" x="1379.961914" y="792"/> + <use xlink:href="#glyph0-48" x="1383.140625" y="792"/> + <use xlink:href="#glyph0-10" x="1389.488281" y="792"/> + <use xlink:href="#glyph0-43" x="1395.850586" y="792"/> + <use xlink:href="#glyph0-11" x="1399.219727" y="792"/> + <use xlink:href="#glyph0-11" x="1405.582031" y="792"/> + <use xlink:href="#glyph0-41" x="1411.944336" y="792"/> + <use xlink:href="#glyph0-11" x="1415.123047" y="792"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1319 806 L 1388 806 L 1388 830 L 1319 830 Z M 1319 806 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1326" y="823"/> + <use xlink:href="#glyph0-26" x="1332.030273" y="823"/> + <use xlink:href="#glyph0-42" x="1339.012695" y="823"/> + <use xlink:href="#glyph0-8" x="1341.961914" y="823"/> + <use xlink:href="#glyph0-48" x="1345.140625" y="823"/> + <use xlink:href="#glyph0-33" x="1351.488281" y="823"/> + <use xlink:href="#glyph0-43" x="1357.850586" y="823"/> + <use xlink:href="#glyph0-11" x="1361.219727" y="823"/> + <use xlink:href="#glyph0-25" x="1367.582031" y="823"/> + <use xlink:href="#glyph0-41" x="1373.944336" y="823"/> + <use xlink:href="#glyph0-11" x="1377.123047" y="823"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1319 837 L 1388 837 L 1388 861 L 1319 861 Z M 1319 837 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1326" y="854"/> + <use xlink:href="#glyph0-26" x="1332.030273" y="854"/> + <use xlink:href="#glyph0-42" x="1339.012695" y="854"/> + <use xlink:href="#glyph0-8" x="1341.961914" y="854"/> + <use xlink:href="#glyph0-48" x="1345.140625" y="854"/> + <use xlink:href="#glyph0-33" x="1351.488281" y="854"/> + <use xlink:href="#glyph0-43" x="1357.850586" y="854"/> + <use xlink:href="#glyph0-11" x="1361.219727" y="854"/> + <use xlink:href="#glyph0-24" x="1367.582031" y="854"/> + <use xlink:href="#glyph0-41" x="1373.944336" y="854"/> + <use xlink:href="#glyph0-11" x="1377.123047" y="854"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1319 868 L 1388 868 L 1388 892 L 1319 892 Z M 1319 868 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1326" y="885"/> + <use xlink:href="#glyph0-26" x="1332.030273" y="885"/> + <use xlink:href="#glyph0-42" x="1339.012695" y="885"/> + <use xlink:href="#glyph0-8" x="1341.961914" y="885"/> + <use xlink:href="#glyph0-48" x="1345.140625" y="885"/> + <use xlink:href="#glyph0-33" x="1351.488281" y="885"/> + <use xlink:href="#glyph0-43" x="1357.850586" y="885"/> + <use xlink:href="#glyph0-11" x="1361.219727" y="885"/> + <use xlink:href="#glyph0-33" x="1367.582031" y="885"/> + <use xlink:href="#glyph0-41" x="1373.944336" y="885"/> + <use xlink:href="#glyph0-11" x="1377.123047" y="885"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1433 775 L 1440 775 L 1440 782 L 1433 782 Z M 1433 775 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1440 778 L 1447 778 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1447 778 L 1471 778 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1450" y="791"/> + <use xlink:href="#glyph0-41" x="1456.362305" y="791"/> + <use xlink:href="#glyph0-25" x="1459.541016" y="791"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1447 778 L 1447 778 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1471 775 L 1540 775 L 1540 799 L 1471 799 Z M 1471 775 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1478" y="792"/> + <use xlink:href="#glyph0-26" x="1484.030273" y="792"/> + <use xlink:href="#glyph0-42" x="1491.012695" y="792"/> + <use xlink:href="#glyph0-8" x="1493.961914" y="792"/> + <use xlink:href="#glyph0-48" x="1497.140625" y="792"/> + <use xlink:href="#glyph0-36" x="1503.488281" y="792"/> + <use xlink:href="#glyph0-43" x="1509.850586" y="792"/> + <use xlink:href="#glyph0-11" x="1513.219727" y="792"/> + <use xlink:href="#glyph0-12" x="1519.582031" y="792"/> + <use xlink:href="#glyph0-41" x="1525.944336" y="792"/> + <use xlink:href="#glyph0-11" x="1529.123047" y="792"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1547 775 L 1554 775 L 1554 782 L 1547 782 Z M 1547 775 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1554 778 L 1561 778 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1561 778 L 1585 778 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1564" y="791"/> + <use xlink:href="#glyph0-41" x="1570.362305" y="791"/> + <use xlink:href="#glyph0-25" x="1573.541016" y="791"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1561 778 L 1561 778 "/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1585 775 L 1592 775 L 1592 782 L 1585 782 Z M 1585 775 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1592 778 L 1599 778 "/> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1599 778 L 1623 778 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1602" y="791"/> + <use xlink:href="#glyph0-41" x="1608.362305" y="791"/> + <use xlink:href="#glyph0-25" x="1611.541016" y="791"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1599 871 L 1623 871 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1602" y="884"/> + <use xlink:href="#glyph0-41" x="1608.362305" y="884"/> + <use xlink:href="#glyph0-25" x="1611.541016" y="884"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1599 933 L 1623 933 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1602" y="946"/> + <use xlink:href="#glyph0-41" x="1608.362305" y="946"/> + <use xlink:href="#glyph0-25" x="1611.541016" y="946"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1599 1026 L 1623 1026 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="1602" y="1039"/> + <use xlink:href="#glyph0-41" x="1608.362305" y="1039"/> + <use xlink:href="#glyph0-25" x="1611.541016" y="1039"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1599 778 L 1599 1026 "/> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1623 775 L 1784 775 L 1784 861 L 1623 861 Z M 1623 775 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1630" y="792"/> + <use xlink:href="#glyph0-26" x="1636.030273" y="792"/> + <use xlink:href="#glyph0-42" x="1643.012695" y="792"/> + <use xlink:href="#glyph0-8" x="1645.961914" y="792"/> + <use xlink:href="#glyph0-48" x="1649.140625" y="792"/> + <use xlink:href="#glyph0-31" x="1655.488281" y="792"/> + <use xlink:href="#glyph0-43" x="1661.835938" y="792"/> + <use xlink:href="#glyph0-11" x="1665.205078" y="792"/> + <use xlink:href="#glyph0-11" x="1671.567383" y="792"/> + <use xlink:href="#glyph0-41" x="1677.929688" y="792"/> + <use xlink:href="#glyph0-11" x="1681.108398" y="792"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1630 799 L 1722 799 L 1722 823 L 1630 823 Z M 1630 799 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1637" y="816"/> + <use xlink:href="#glyph0-7" x="1644.480469" y="816"/> + <use xlink:href="#glyph0-15" x="1650.632812" y="816"/> + <use xlink:href="#glyph0-8" x="1654.553711" y="816"/> + <use xlink:href="#glyph0-7" x="1657.732422" y="816"/> + <use xlink:href="#glyph0-6" x="1663.884766" y="816"/> + <use xlink:href="#glyph0-44" x="1670.222656" y="816"/> + <use xlink:href="#glyph0-12" x="1676.570312" y="816"/> + <use xlink:href="#glyph0-36" x="1682.932617" y="816"/> + <use xlink:href="#glyph0-38" x="1689.294922" y="816"/> + <use xlink:href="#glyph0-28" x="1695.657227" y="816"/> + <use xlink:href="#glyph0-11" x="1700.867188" y="816"/> + <use xlink:href="#glyph0-45" x="1707.229492" y="816"/> + <use xlink:href="#glyph0-11" x="1710.75" y="816"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1630 830 L 1777 830 L 1777 854 L 1630 854 Z M 1630 830 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-46" x="1637" y="847"/> + <use xlink:href="#glyph0-44" x="1644.871094" y="847"/> + <use xlink:href="#glyph0-7" x="1651.21875" y="847"/> + <use xlink:href="#glyph0-6" x="1657.371094" y="847"/> + <use xlink:href="#glyph0-47" x="1663.708984" y="847"/> + <use xlink:href="#glyph0-2" x="1669.460938" y="847"/> + <use xlink:href="#glyph0-48" x="1675.588867" y="847"/> + <use xlink:href="#glyph0-29" x="1681.936523" y="847"/> + <use xlink:href="#glyph0-5" x="1686.047852" y="847"/> + <use xlink:href="#glyph0-3" x="1688.826172" y="847"/> + <use xlink:href="#glyph0-28" x="1694.324219" y="847"/> + <use xlink:href="#glyph0-8" x="1699.53418" y="847"/> + <use xlink:href="#glyph0-29" x="1702.712891" y="847"/> + <use xlink:href="#glyph0-16" x="1706.824219" y="847"/> + <use xlink:href="#glyph0-3" x="1712.942383" y="847"/> + <use xlink:href="#glyph0-7" x="1718.44043" y="847"/> + <use xlink:href="#glyph0-44" x="1724.592773" y="847"/> + <use xlink:href="#glyph0-12" x="1730.94043" y="847"/> + <use xlink:href="#glyph0-36" x="1737.302734" y="847"/> + <use xlink:href="#glyph0-38" x="1743.665039" y="847"/> + <use xlink:href="#glyph0-28" x="1750.027344" y="847"/> + <use xlink:href="#glyph0-11" x="1755.237305" y="847"/> + <use xlink:href="#glyph0-45" x="1761.599609" y="847"/> + <use xlink:href="#glyph0-11" x="1765.120117" y="847"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1623 868 L 1729 868 L 1729 923 L 1623 923 Z M 1623 868 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1630" y="885"/> + <use xlink:href="#glyph0-26" x="1636.030273" y="885"/> + <use xlink:href="#glyph0-42" x="1643.012695" y="885"/> + <use xlink:href="#glyph0-8" x="1645.961914" y="885"/> + <use xlink:href="#glyph0-48" x="1649.140625" y="885"/> + <use xlink:href="#glyph0-31" x="1655.488281" y="885"/> + <use xlink:href="#glyph0-43" x="1661.835938" y="885"/> + <use xlink:href="#glyph0-11" x="1665.205078" y="885"/> + <use xlink:href="#glyph0-11" x="1671.567383" y="885"/> + <use xlink:href="#glyph0-41" x="1677.929688" y="885"/> + <use xlink:href="#glyph0-12" x="1681.108398" y="885"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1630 892 L 1722 892 L 1722 916 L 1630 916 Z M 1630 892 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1637" y="909"/> + <use xlink:href="#glyph0-7" x="1644.480469" y="909"/> + <use xlink:href="#glyph0-15" x="1650.632812" y="909"/> + <use xlink:href="#glyph0-8" x="1654.553711" y="909"/> + <use xlink:href="#glyph0-7" x="1657.732422" y="909"/> + <use xlink:href="#glyph0-6" x="1663.884766" y="909"/> + <use xlink:href="#glyph0-44" x="1670.222656" y="909"/> + <use xlink:href="#glyph0-12" x="1676.570312" y="909"/> + <use xlink:href="#glyph0-36" x="1682.932617" y="909"/> + <use xlink:href="#glyph0-38" x="1689.294922" y="909"/> + <use xlink:href="#glyph0-28" x="1695.657227" y="909"/> + <use xlink:href="#glyph0-11" x="1700.867188" y="909"/> + <use xlink:href="#glyph0-45" x="1707.229492" y="909"/> + <use xlink:href="#glyph0-12" x="1710.75" y="909"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1623 930 L 1783 930 L 1783 1016 L 1623 1016 Z M 1623 930 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1630" y="947"/> + <use xlink:href="#glyph0-26" x="1636.030273" y="947"/> + <use xlink:href="#glyph0-42" x="1643.012695" y="947"/> + <use xlink:href="#glyph0-8" x="1645.961914" y="947"/> + <use xlink:href="#glyph0-48" x="1649.140625" y="947"/> + <use xlink:href="#glyph0-31" x="1655.488281" y="947"/> + <use xlink:href="#glyph0-43" x="1661.835938" y="947"/> + <use xlink:href="#glyph0-11" x="1665.205078" y="947"/> + <use xlink:href="#glyph0-11" x="1671.567383" y="947"/> + <use xlink:href="#glyph0-41" x="1677.929688" y="947"/> + <use xlink:href="#glyph0-25" x="1681.108398" y="947"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1630 954 L 1722 954 L 1722 978 L 1630 978 Z M 1630 954 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1637" y="971"/> + <use xlink:href="#glyph0-7" x="1644.480469" y="971"/> + <use xlink:href="#glyph0-15" x="1650.632812" y="971"/> + <use xlink:href="#glyph0-8" x="1654.553711" y="971"/> + <use xlink:href="#glyph0-7" x="1657.732422" y="971"/> + <use xlink:href="#glyph0-6" x="1663.884766" y="971"/> + <use xlink:href="#glyph0-44" x="1670.222656" y="971"/> + <use xlink:href="#glyph0-12" x="1676.570312" y="971"/> + <use xlink:href="#glyph0-36" x="1682.932617" y="971"/> + <use xlink:href="#glyph0-38" x="1689.294922" y="971"/> + <use xlink:href="#glyph0-28" x="1695.657227" y="971"/> + <use xlink:href="#glyph0-11" x="1700.867188" y="971"/> + <use xlink:href="#glyph0-45" x="1707.229492" y="971"/> + <use xlink:href="#glyph0-25" x="1710.75" y="971"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1630 985 L 1776 985 L 1776 1009 L 1630 1009 Z M 1630 985 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-46" x="1637" y="1002"/> + <use xlink:href="#glyph0-44" x="1644.871094" y="1002"/> + <use xlink:href="#glyph0-7" x="1651.21875" y="1002"/> + <use xlink:href="#glyph0-6" x="1657.371094" y="1002"/> + <use xlink:href="#glyph0-47" x="1663.708984" y="1002"/> + <use xlink:href="#glyph0-2" x="1669.460938" y="1002"/> + <use xlink:href="#glyph0-48" x="1675.588867" y="1002"/> + <use xlink:href="#glyph0-29" x="1681.936523" y="1002"/> + <use xlink:href="#glyph0-5" x="1686.047852" y="1002"/> + <use xlink:href="#glyph0-3" x="1688.826172" y="1002"/> + <use xlink:href="#glyph0-28" x="1694.324219" y="1002"/> + <use xlink:href="#glyph0-8" x="1699.53418" y="1002"/> + <use xlink:href="#glyph0-29" x="1702.712891" y="1002"/> + <use xlink:href="#glyph0-16" x="1706.824219" y="1002"/> + <use xlink:href="#glyph0-3" x="1712.942383" y="1002"/> + <use xlink:href="#glyph0-7" x="1718.44043" y="1002"/> + <use xlink:href="#glyph0-44" x="1724.592773" y="1002"/> + <use xlink:href="#glyph0-12" x="1730.94043" y="1002"/> + <use xlink:href="#glyph0-36" x="1737.302734" y="1002"/> + <use xlink:href="#glyph0-38" x="1743.665039" y="1002"/> + <use xlink:href="#glyph0-28" x="1750.027344" y="1002"/> + <use xlink:href="#glyph0-11" x="1755.237305" y="1002"/> + <use xlink:href="#glyph0-45" x="1761.599609" y="1002"/> + <use xlink:href="#glyph0-25" x="1765.120117" y="1002"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,82.352942%,58.431375%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1623 1023 L 1729 1023 L 1729 1078 L 1623 1078 Z M 1623 1023 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1630" y="1040"/> + <use xlink:href="#glyph0-26" x="1636.030273" y="1040"/> + <use xlink:href="#glyph0-42" x="1643.012695" y="1040"/> + <use xlink:href="#glyph0-8" x="1645.961914" y="1040"/> + <use xlink:href="#glyph0-48" x="1649.140625" y="1040"/> + <use xlink:href="#glyph0-31" x="1655.488281" y="1040"/> + <use xlink:href="#glyph0-43" x="1661.835938" y="1040"/> + <use xlink:href="#glyph0-11" x="1665.205078" y="1040"/> + <use xlink:href="#glyph0-11" x="1671.567383" y="1040"/> + <use xlink:href="#glyph0-41" x="1677.929688" y="1040"/> + <use xlink:href="#glyph0-24" x="1681.108398" y="1040"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(87.058824%,87.058824%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1630 1047 L 1722 1047 L 1722 1071 L 1630 1071 Z M 1630 1047 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="1637" y="1064"/> + <use xlink:href="#glyph0-7" x="1644.480469" y="1064"/> + <use xlink:href="#glyph0-15" x="1650.632812" y="1064"/> + <use xlink:href="#glyph0-8" x="1654.553711" y="1064"/> + <use xlink:href="#glyph0-7" x="1657.732422" y="1064"/> + <use xlink:href="#glyph0-6" x="1663.884766" y="1064"/> + <use xlink:href="#glyph0-44" x="1670.222656" y="1064"/> + <use xlink:href="#glyph0-12" x="1676.570312" y="1064"/> + <use xlink:href="#glyph0-36" x="1682.932617" y="1064"/> + <use xlink:href="#glyph0-38" x="1689.294922" y="1064"/> + <use xlink:href="#glyph0-28" x="1695.657227" y="1064"/> + <use xlink:href="#glyph0-11" x="1700.867188" y="1064"/> + <use xlink:href="#glyph0-45" x="1707.229492" y="1064"/> + <use xlink:href="#glyph0-24" x="1710.75" y="1064"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 1116 L 1088 1116 L 1088 1140 L 14 1140 Z M 14 1116 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="21" y="1133"/> + <use xlink:href="#glyph0-24" x="26.571289" y="1133"/> + <use xlink:href="#glyph0-8" x="32.933594" y="1133"/> + <use xlink:href="#glyph0-9" x="36.112305" y="1133"/> + <use xlink:href="#glyph0-24" x="40.013672" y="1133"/> + <use xlink:href="#glyph0-25" x="46.375977" y="1133"/> + <use xlink:href="#glyph0-1" x="52.738281" y="1133"/> + <use xlink:href="#glyph0-14" x="61.366211" y="1133"/> + <use xlink:href="#glyph0-18" x="68.226562" y="1133"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 1147 L 353 1147 L 353 1340 L 14 1340 Z M 14 1147 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="21" y="1164"/> + <use xlink:href="#glyph0-17" x="27.982422" y="1164"/> + <use xlink:href="#glyph0-27" x="30.760742" y="1164"/> + <use xlink:href="#glyph0-28" x="37.098633" y="1164"/> + <use xlink:href="#glyph0-15" x="42.308594" y="1164"/> + <use xlink:href="#glyph0-7" x="46.229492" y="1164"/> + <use xlink:href="#glyph0-29" x="52.381836" y="1164"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 1171 L 97 1171 L 97 1195 L 21 1195 Z M 21 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="1188"/> + <use xlink:href="#glyph0-25" x="33.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="39.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="43.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="47.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="53.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="59.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="66.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="72.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="79.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 1202 L 97 1202 L 97 1226 L 21 1226 Z M 21 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="1219"/> + <use xlink:href="#glyph0-12" x="33.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="39.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="46.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="49.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="53.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="59.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="66.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="72.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="79.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 1233 L 97 1233 L 97 1257 L 21 1257 Z M 21 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="28" y="1250"/> + <use xlink:href="#glyph0-12" x="33.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="39.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="42.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="45.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="49.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="56.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="62.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="69.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="75.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21 1264 L 97 1264 L 97 1333 L 21 1333 Z M 21 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="28" y="1281"/> + <use xlink:href="#glyph0-16" x="34.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="41.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="45.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="51.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="54.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="60.114258" y="1281"/> + <use xlink:href="#glyph0-38" x="68.493164" y="1281"/> + <use xlink:href="#glyph0-32" x="74.855469" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28 1288 L 90 1288 L 90 1326 L 28 1326 Z M 28 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="38" y="1305"/> + <use xlink:href="#glyph0-34" x="44.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="51.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="54.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="60.099609" y="1305"/> + <use xlink:href="#glyph0-38" x="68.478516" y="1305"/> + <use xlink:href="#glyph0-32" x="74.84082" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="46" y="1319"/> + <use xlink:href="#glyph0-23" x="52.030273" y="1319"/> + <use xlink:href="#glyph0-38" x="60.40918" y="1319"/> + <use xlink:href="#glyph0-32" x="66.771484" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 1171 L 180 1171 L 180 1195 L 104 1195 Z M 104 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="1188"/> + <use xlink:href="#glyph0-25" x="116.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="122.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="126.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="130.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="136.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="142.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="149.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="155.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="162.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 1202 L 180 1202 L 180 1226 L 104 1226 Z M 104 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="1219"/> + <use xlink:href="#glyph0-12" x="116.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="122.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="129.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="132.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="136.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="142.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="149.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="155.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="162.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 1233 L 180 1233 L 180 1257 L 104 1257 Z M 104 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="111" y="1250"/> + <use xlink:href="#glyph0-12" x="116.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="122.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="125.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="128.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="132.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="139.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="145.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="152.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="158.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104 1264 L 180 1264 L 180 1333 L 104 1333 Z M 104 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="111" y="1281"/> + <use xlink:href="#glyph0-16" x="117.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="124.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="128.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="134.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="137.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="143.114258" y="1281"/> + <use xlink:href="#glyph0-38" x="151.493164" y="1281"/> + <use xlink:href="#glyph0-35" x="157.855469" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111 1288 L 173 1288 L 173 1326 L 111 1326 Z M 111 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="121" y="1305"/> + <use xlink:href="#glyph0-34" x="127.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="134.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="137.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="143.099609" y="1305"/> + <use xlink:href="#glyph0-38" x="151.478516" y="1305"/> + <use xlink:href="#glyph0-35" x="157.84082" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="129" y="1319"/> + <use xlink:href="#glyph0-23" x="135.030273" y="1319"/> + <use xlink:href="#glyph0-38" x="143.40918" y="1319"/> + <use xlink:href="#glyph0-35" x="149.771484" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 1171 L 263 1171 L 263 1195 L 187 1195 Z M 187 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="1188"/> + <use xlink:href="#glyph0-25" x="199.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="205.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="209.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="213.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="219.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="225.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="232.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="238.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="245.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 1202 L 263 1202 L 263 1226 L 187 1226 Z M 187 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="1219"/> + <use xlink:href="#glyph0-12" x="199.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="205.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="212.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="215.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="219.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="225.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="232.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="238.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="245.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 1233 L 263 1233 L 263 1257 L 187 1257 Z M 187 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="194" y="1250"/> + <use xlink:href="#glyph0-12" x="199.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="205.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="208.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="211.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="215.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="222.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="228.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="235.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="241.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 1264 L 263 1264 L 263 1333 L 187 1333 Z M 187 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="194" y="1281"/> + <use xlink:href="#glyph0-16" x="200.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="207.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="211.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="217.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="220.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="226.114258" y="1281"/> + <use xlink:href="#glyph0-38" x="234.493164" y="1281"/> + <use xlink:href="#glyph0-36" x="240.855469" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194 1288 L 256 1288 L 256 1326 L 194 1326 Z M 194 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="204" y="1305"/> + <use xlink:href="#glyph0-34" x="210.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="217.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="220.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="226.099609" y="1305"/> + <use xlink:href="#glyph0-38" x="234.478516" y="1305"/> + <use xlink:href="#glyph0-36" x="240.84082" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="212" y="1319"/> + <use xlink:href="#glyph0-23" x="218.030273" y="1319"/> + <use xlink:href="#glyph0-38" x="226.40918" y="1319"/> + <use xlink:href="#glyph0-36" x="232.771484" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 1171 L 346 1171 L 346 1195 L 270 1195 Z M 270 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="1188"/> + <use xlink:href="#glyph0-25" x="282.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="288.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="292.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="296.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="302.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="308.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="315.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="321.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="328.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 1202 L 346 1202 L 346 1226 L 270 1226 Z M 270 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="1219"/> + <use xlink:href="#glyph0-12" x="282.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="288.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="295.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="298.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="302.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="308.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="315.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="321.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="328.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 1233 L 346 1233 L 346 1257 L 270 1257 Z M 270 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="277" y="1250"/> + <use xlink:href="#glyph0-12" x="282.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="288.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="291.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="294.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="298.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="305.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="311.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="318.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="324.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270 1264 L 346 1264 L 346 1333 L 270 1333 Z M 270 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="277" y="1281"/> + <use xlink:href="#glyph0-16" x="283.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="290.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="294.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="300.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="303.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="309.114258" y="1281"/> + <use xlink:href="#glyph0-38" x="317.493164" y="1281"/> + <use xlink:href="#glyph0-38" x="323.855469" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277 1288 L 339 1288 L 339 1326 L 277 1326 Z M 277 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="287" y="1305"/> + <use xlink:href="#glyph0-34" x="293.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="300.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="303.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="309.099609" y="1305"/> + <use xlink:href="#glyph0-38" x="317.478516" y="1305"/> + <use xlink:href="#glyph0-38" x="323.84082" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="295" y="1319"/> + <use xlink:href="#glyph0-23" x="301.030273" y="1319"/> + <use xlink:href="#glyph0-38" x="309.40918" y="1319"/> + <use xlink:href="#glyph0-38" x="315.771484" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360 1147 L 699 1147 L 699 1340 L 360 1340 Z M 360 1147 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="367" y="1164"/> + <use xlink:href="#glyph0-17" x="373.982422" y="1164"/> + <use xlink:href="#glyph0-27" x="376.760742" y="1164"/> + <use xlink:href="#glyph0-28" x="383.098633" y="1164"/> + <use xlink:href="#glyph0-15" x="388.308594" y="1164"/> + <use xlink:href="#glyph0-7" x="392.229492" y="1164"/> + <use xlink:href="#glyph0-29" x="398.381836" y="1164"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 1171 L 443 1171 L 443 1195 L 367 1195 Z M 367 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="1188"/> + <use xlink:href="#glyph0-25" x="379.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="385.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="389.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="393.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="399.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="405.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="412.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="418.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="425.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 1202 L 443 1202 L 443 1226 L 367 1226 Z M 367 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="1219"/> + <use xlink:href="#glyph0-12" x="379.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="385.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="392.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="395.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="399.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="405.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="412.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="418.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="425.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 1233 L 443 1233 L 443 1257 L 367 1257 Z M 367 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="374" y="1250"/> + <use xlink:href="#glyph0-12" x="379.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="385.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="388.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="391.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="395.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="402.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="408.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="415.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="421.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 1264 L 443 1264 L 443 1333 L 367 1333 Z M 367 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="374" y="1281"/> + <use xlink:href="#glyph0-16" x="380.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="387.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="391.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="397.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="400.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="406.114258" y="1281"/> + <use xlink:href="#glyph0-12" x="414.493164" y="1281"/> + <use xlink:href="#glyph0-11" x="420.855469" y="1281"/> + <use xlink:href="#glyph0-11" x="427.217773" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374 1288 L 436 1288 L 436 1326 L 374 1326 Z M 374 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="381" y="1305"/> + <use xlink:href="#glyph0-34" x="387.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="394.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="397.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="403.099609" y="1305"/> + <use xlink:href="#glyph0-12" x="411.478516" y="1305"/> + <use xlink:href="#glyph0-11" x="417.84082" y="1305"/> + <use xlink:href="#glyph0-11" x="424.203125" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="389" y="1319"/> + <use xlink:href="#glyph0-23" x="395.030273" y="1319"/> + <use xlink:href="#glyph0-12" x="403.40918" y="1319"/> + <use xlink:href="#glyph0-11" x="409.771484" y="1319"/> + <use xlink:href="#glyph0-11" x="416.133789" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 1171 L 526 1171 L 526 1195 L 450 1195 Z M 450 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="1188"/> + <use xlink:href="#glyph0-25" x="462.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="468.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="472.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="476.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="482.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="488.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="495.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="501.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="508.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 1202 L 526 1202 L 526 1226 L 450 1226 Z M 450 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="1219"/> + <use xlink:href="#glyph0-12" x="462.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="468.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="475.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="478.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="482.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="488.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="495.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="501.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="508.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 1233 L 526 1233 L 526 1257 L 450 1257 Z M 450 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="457" y="1250"/> + <use xlink:href="#glyph0-12" x="462.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="468.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="471.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="474.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="478.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="485.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="491.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="498.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="504.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450 1264 L 526 1264 L 526 1333 L 450 1333 Z M 450 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="457" y="1281"/> + <use xlink:href="#glyph0-16" x="463.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="470.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="474.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="480.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="483.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="489.114258" y="1281"/> + <use xlink:href="#glyph0-12" x="497.493164" y="1281"/> + <use xlink:href="#glyph0-11" x="503.855469" y="1281"/> + <use xlink:href="#glyph0-12" x="510.217773" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 457 1288 L 519 1288 L 519 1326 L 457 1326 Z M 457 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="464" y="1305"/> + <use xlink:href="#glyph0-34" x="470.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="477.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="480.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="486.099609" y="1305"/> + <use xlink:href="#glyph0-12" x="494.478516" y="1305"/> + <use xlink:href="#glyph0-11" x="500.84082" y="1305"/> + <use xlink:href="#glyph0-12" x="507.203125" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="472" y="1319"/> + <use xlink:href="#glyph0-23" x="478.030273" y="1319"/> + <use xlink:href="#glyph0-12" x="486.40918" y="1319"/> + <use xlink:href="#glyph0-11" x="492.771484" y="1319"/> + <use xlink:href="#glyph0-12" x="499.133789" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 1171 L 609 1171 L 609 1195 L 533 1195 Z M 533 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="1188"/> + <use xlink:href="#glyph0-25" x="545.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="551.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="555.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="559.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="565.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="571.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="578.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="584.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="591.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 1202 L 609 1202 L 609 1226 L 533 1226 Z M 533 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="1219"/> + <use xlink:href="#glyph0-12" x="545.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="551.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="558.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="561.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="565.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="571.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="578.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="584.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="591.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 1233 L 609 1233 L 609 1257 L 533 1257 Z M 533 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="540" y="1250"/> + <use xlink:href="#glyph0-12" x="545.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="551.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="554.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="557.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="561.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="568.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="574.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="581.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="587.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533 1264 L 609 1264 L 609 1333 L 533 1333 Z M 533 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="540" y="1281"/> + <use xlink:href="#glyph0-16" x="546.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="553.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="557.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="563.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="566.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="572.114258" y="1281"/> + <use xlink:href="#glyph0-12" x="580.493164" y="1281"/> + <use xlink:href="#glyph0-11" x="586.855469" y="1281"/> + <use xlink:href="#glyph0-25" x="593.217773" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 540 1288 L 602 1288 L 602 1326 L 540 1326 Z M 540 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="547" y="1305"/> + <use xlink:href="#glyph0-34" x="553.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="560.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="563.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="569.099609" y="1305"/> + <use xlink:href="#glyph0-12" x="577.478516" y="1305"/> + <use xlink:href="#glyph0-11" x="583.84082" y="1305"/> + <use xlink:href="#glyph0-25" x="590.203125" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="555" y="1319"/> + <use xlink:href="#glyph0-23" x="561.030273" y="1319"/> + <use xlink:href="#glyph0-12" x="569.40918" y="1319"/> + <use xlink:href="#glyph0-11" x="575.771484" y="1319"/> + <use xlink:href="#glyph0-25" x="582.133789" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 1171 L 692 1171 L 692 1195 L 616 1195 Z M 616 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="1188"/> + <use xlink:href="#glyph0-25" x="628.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="634.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="638.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="642.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="648.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="654.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="661.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="667.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="674.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 1202 L 692 1202 L 692 1226 L 616 1226 Z M 616 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="1219"/> + <use xlink:href="#glyph0-12" x="628.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="634.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="641.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="644.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="648.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="654.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="661.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="667.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="674.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 1233 L 692 1233 L 692 1257 L 616 1257 Z M 616 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="623" y="1250"/> + <use xlink:href="#glyph0-12" x="628.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="634.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="637.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="640.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="644.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="651.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="657.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="664.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="670.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 616 1264 L 692 1264 L 692 1333 L 616 1333 Z M 616 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="623" y="1281"/> + <use xlink:href="#glyph0-16" x="629.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="636.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="640.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="646.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="649.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="655.114258" y="1281"/> + <use xlink:href="#glyph0-12" x="663.493164" y="1281"/> + <use xlink:href="#glyph0-11" x="669.855469" y="1281"/> + <use xlink:href="#glyph0-24" x="676.217773" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 623 1288 L 685 1288 L 685 1326 L 623 1326 Z M 623 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="630" y="1305"/> + <use xlink:href="#glyph0-34" x="636.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="643.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="646.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="652.099609" y="1305"/> + <use xlink:href="#glyph0-12" x="660.478516" y="1305"/> + <use xlink:href="#glyph0-11" x="666.84082" y="1305"/> + <use xlink:href="#glyph0-24" x="673.203125" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="638" y="1319"/> + <use xlink:href="#glyph0-23" x="644.030273" y="1319"/> + <use xlink:href="#glyph0-12" x="652.40918" y="1319"/> + <use xlink:href="#glyph0-11" x="658.771484" y="1319"/> + <use xlink:href="#glyph0-24" x="665.133789" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 706 1154 L 713 1154 L 713 1161 L 706 1161 Z M 706 1154 "/> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 720 1154 L 727 1154 L 727 1161 L 720 1161 Z M 720 1154 "/> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 734 1154 L 741 1154 L 741 1161 L 734 1161 Z M 734 1154 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-36" x="706" y="1175"/> + <use xlink:href="#glyph0-37" x="712.362305" y="1175"/> + <use xlink:href="#glyph0-8" x="718.280273" y="1175"/> + <use xlink:href="#glyph0-15" x="721.458984" y="1175"/> + <use xlink:href="#glyph0-16" x="725.379883" y="1175"/> + <use xlink:href="#glyph0-15" x="731.498047" y="1175"/> + <use xlink:href="#glyph0-2" x="735.418945" y="1175"/> + <use xlink:href="#glyph0-17" x="741.546875" y="1175"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(90.588236%,100%,70.980394%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 749 1147 L 1088 1147 L 1088 1340 L 749 1340 Z M 749 1147 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="756" y="1164"/> + <use xlink:href="#glyph0-17" x="762.982422" y="1164"/> + <use xlink:href="#glyph0-27" x="765.760742" y="1164"/> + <use xlink:href="#glyph0-28" x="772.098633" y="1164"/> + <use xlink:href="#glyph0-15" x="777.308594" y="1164"/> + <use xlink:href="#glyph0-7" x="781.229492" y="1164"/> + <use xlink:href="#glyph0-29" x="787.381836" y="1164"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 1171 L 832 1171 L 832 1195 L 756 1195 Z M 756 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="1188"/> + <use xlink:href="#glyph0-25" x="768.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="774.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="778.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="782.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="788.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="794.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="801.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="807.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="814.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 1202 L 832 1202 L 832 1226 L 756 1226 Z M 756 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="1219"/> + <use xlink:href="#glyph0-12" x="768.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="774.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="781.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="784.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="788.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="794.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="801.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="807.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="814.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 1233 L 832 1233 L 832 1257 L 756 1257 Z M 756 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="763" y="1250"/> + <use xlink:href="#glyph0-12" x="768.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="774.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="777.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="780.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="784.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="791.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="797.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="804.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="810.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 756 1264 L 832 1264 L 832 1333 L 756 1333 Z M 756 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="763" y="1281"/> + <use xlink:href="#glyph0-16" x="769.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="776.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="780.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="786.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="789.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="795.114258" y="1281"/> + <use xlink:href="#glyph0-12" x="803.493164" y="1281"/> + <use xlink:href="#glyph0-25" x="809.855469" y="1281"/> + <use xlink:href="#glyph0-33" x="816.217773" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 763 1288 L 825 1288 L 825 1326 L 763 1326 Z M 763 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="770" y="1305"/> + <use xlink:href="#glyph0-34" x="776.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="783.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="786.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="792.099609" y="1305"/> + <use xlink:href="#glyph0-12" x="800.478516" y="1305"/> + <use xlink:href="#glyph0-25" x="806.84082" y="1305"/> + <use xlink:href="#glyph0-33" x="813.203125" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="778" y="1319"/> + <use xlink:href="#glyph0-23" x="784.030273" y="1319"/> + <use xlink:href="#glyph0-12" x="792.40918" y="1319"/> + <use xlink:href="#glyph0-25" x="798.771484" y="1319"/> + <use xlink:href="#glyph0-33" x="805.133789" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 1171 L 915 1171 L 915 1195 L 839 1195 Z M 839 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="1188"/> + <use xlink:href="#glyph0-25" x="851.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="857.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="861.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="865.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="871.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="877.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="884.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="890.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="897.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 1202 L 915 1202 L 915 1226 L 839 1226 Z M 839 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="1219"/> + <use xlink:href="#glyph0-12" x="851.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="857.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="864.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="867.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="871.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="877.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="884.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="890.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="897.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 1233 L 915 1233 L 915 1257 L 839 1257 Z M 839 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="846" y="1250"/> + <use xlink:href="#glyph0-12" x="851.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="857.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="860.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="863.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="867.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="874.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="880.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="887.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="893.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839 1264 L 915 1264 L 915 1333 L 839 1333 Z M 839 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="846" y="1281"/> + <use xlink:href="#glyph0-16" x="852.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="859.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="863.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="869.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="872.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="878.114258" y="1281"/> + <use xlink:href="#glyph0-12" x="886.493164" y="1281"/> + <use xlink:href="#glyph0-25" x="892.855469" y="1281"/> + <use xlink:href="#glyph0-10" x="899.217773" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 846 1288 L 908 1288 L 908 1326 L 846 1326 Z M 846 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="853" y="1305"/> + <use xlink:href="#glyph0-34" x="859.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="866.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="869.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="875.099609" y="1305"/> + <use xlink:href="#glyph0-12" x="883.478516" y="1305"/> + <use xlink:href="#glyph0-25" x="889.84082" y="1305"/> + <use xlink:href="#glyph0-10" x="896.203125" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="861" y="1319"/> + <use xlink:href="#glyph0-23" x="867.030273" y="1319"/> + <use xlink:href="#glyph0-12" x="875.40918" y="1319"/> + <use xlink:href="#glyph0-25" x="881.771484" y="1319"/> + <use xlink:href="#glyph0-10" x="888.133789" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 1171 L 998 1171 L 998 1195 L 922 1195 Z M 922 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="1188"/> + <use xlink:href="#glyph0-25" x="934.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="940.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="944.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="948.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="954.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="960.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="967.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="973.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="980.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 1202 L 998 1202 L 998 1226 L 922 1226 Z M 922 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="1219"/> + <use xlink:href="#glyph0-12" x="934.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="940.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="947.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="950.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="954.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="960.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="967.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="973.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="980.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 1233 L 998 1233 L 998 1257 L 922 1257 Z M 922 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="929" y="1250"/> + <use xlink:href="#glyph0-12" x="934.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="940.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="943.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="946.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="950.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="957.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="963.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="970.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="976.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 922 1264 L 998 1264 L 998 1333 L 922 1333 Z M 922 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="929" y="1281"/> + <use xlink:href="#glyph0-16" x="935.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="942.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="946.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="952.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="955.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="961.114258" y="1281"/> + <use xlink:href="#glyph0-12" x="969.493164" y="1281"/> + <use xlink:href="#glyph0-25" x="975.855469" y="1281"/> + <use xlink:href="#glyph0-32" x="982.217773" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 929 1288 L 991 1288 L 991 1326 L 929 1326 Z M 929 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="936" y="1305"/> + <use xlink:href="#glyph0-34" x="942.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="949.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="952.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="958.099609" y="1305"/> + <use xlink:href="#glyph0-12" x="966.478516" y="1305"/> + <use xlink:href="#glyph0-25" x="972.84082" y="1305"/> + <use xlink:href="#glyph0-32" x="979.203125" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="944" y="1319"/> + <use xlink:href="#glyph0-23" x="950.030273" y="1319"/> + <use xlink:href="#glyph0-12" x="958.40918" y="1319"/> + <use xlink:href="#glyph0-25" x="964.771484" y="1319"/> + <use xlink:href="#glyph0-32" x="971.133789" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 1171 L 1081 1171 L 1081 1195 L 1005 1195 Z M 1005 1171 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="1188"/> + <use xlink:href="#glyph0-25" x="1017.571289" y="1188"/> + <use xlink:href="#glyph0-8" x="1023.933594" y="1188"/> + <use xlink:href="#glyph0-9" x="1027.112305" y="1188"/> + <use xlink:href="#glyph0-10" x="1031.013672" y="1188"/> + <use xlink:href="#glyph0-12" x="1037.375977" y="1188"/> + <use xlink:href="#glyph0-25" x="1043.738281" y="1188"/> + <use xlink:href="#glyph0-30" x="1050.100586" y="1188"/> + <use xlink:href="#glyph0-14" x="1056.658203" y="1188"/> + <use xlink:href="#glyph0-18" x="1063.518555" y="1188"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 1202 L 1081 1202 L 1081 1226 L 1005 1226 Z M 1005 1202 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="1219"/> + <use xlink:href="#glyph0-12" x="1017.571289" y="1219"/> + <use xlink:href="#glyph0-31" x="1023.933594" y="1219"/> + <use xlink:href="#glyph0-8" x="1030.28125" y="1219"/> + <use xlink:href="#glyph0-9" x="1033.459961" y="1219"/> + <use xlink:href="#glyph0-32" x="1037.361328" y="1219"/> + <use xlink:href="#glyph0-33" x="1043.723633" y="1219"/> + <use xlink:href="#glyph0-30" x="1050.085938" y="1219"/> + <use xlink:href="#glyph0-14" x="1056.643555" y="1219"/> + <use xlink:href="#glyph0-18" x="1063.503906" y="1219"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 1233 L 1081 1233 L 1081 1257 L 1005 1257 Z M 1005 1233 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-22" x="1012" y="1250"/> + <use xlink:href="#glyph0-12" x="1017.571289" y="1250"/> + <use xlink:href="#glyph0-5" x="1023.933594" y="1250"/> + <use xlink:href="#glyph0-8" x="1026.711914" y="1250"/> + <use xlink:href="#glyph0-9" x="1029.890625" y="1250"/> + <use xlink:href="#glyph0-32" x="1033.791992" y="1250"/> + <use xlink:href="#glyph0-33" x="1040.154297" y="1250"/> + <use xlink:href="#glyph0-30" x="1046.516602" y="1250"/> + <use xlink:href="#glyph0-14" x="1053.074219" y="1250"/> + <use xlink:href="#glyph0-18" x="1059.93457" y="1250"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(74.509805%,74.509805%,74.509805%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1005 1264 L 1081 1264 L 1081 1333 L 1005 1333 Z M 1005 1264 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-26" x="1012" y="1281"/> + <use xlink:href="#glyph0-16" x="1018.982422" y="1281"/> + <use xlink:href="#glyph0-29" x="1025.100586" y="1281"/> + <use xlink:href="#glyph0-7" x="1029.211914" y="1281"/> + <use xlink:href="#glyph0-8" x="1035.364258" y="1281"/> + <use xlink:href="#glyph0-22" x="1038.542969" y="1281"/> + <use xlink:href="#glyph0-23" x="1044.114258" y="1281"/> + <use xlink:href="#glyph0-12" x="1052.493164" y="1281"/> + <use xlink:href="#glyph0-25" x="1058.855469" y="1281"/> + <use xlink:href="#glyph0-35" x="1065.217773" y="1281"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1012 1288 L 1074 1288 L 1074 1326 L 1012 1326 Z M 1012 1288 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1019" y="1305"/> + <use xlink:href="#glyph0-34" x="1025.030273" y="1305"/> + <use xlink:href="#glyph0-8" x="1032.349609" y="1305"/> + <use xlink:href="#glyph0-22" x="1035.52832" y="1305"/> + <use xlink:href="#glyph0-23" x="1041.099609" y="1305"/> + <use xlink:href="#glyph0-12" x="1049.478516" y="1305"/> + <use xlink:href="#glyph0-25" x="1055.84082" y="1305"/> + <use xlink:href="#glyph0-35" x="1062.203125" y="1305"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="1027" y="1319"/> + <use xlink:href="#glyph0-23" x="1033.030273" y="1319"/> + <use xlink:href="#glyph0-12" x="1041.40918" y="1319"/> + <use xlink:href="#glyph0-25" x="1047.771484" y="1319"/> + <use xlink:href="#glyph0-35" x="1054.133789" y="1319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(93.725491%,87.450981%,87.058824%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14 1085 L 1088 1085 L 1088 1109 L 14 1109 Z M 14 1085 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-39" x="21" y="1102"/> + <use xlink:href="#glyph0-34" x="28.480469" y="1102"/> + <use xlink:href="#glyph0-1" x="35.799805" y="1102"/> + <use xlink:href="#glyph0-40" x="44.427734" y="1102"/> + <use xlink:href="#glyph0-39" x="51.268555" y="1102"/> + <use xlink:href="#glyph0-16" x="58.749023" y="1102"/> + <use xlink:href="#glyph0-31" x="64.867188" y="1102"/> + <use xlink:href="#glyph0-7" x="71.214844" y="1102"/> + <use xlink:href="#glyph0-8" x="77.367188" y="1102"/> + <use xlink:href="#glyph0-22" x="80.545898" y="1102"/> + <use xlink:href="#glyph0-23" x="86.117188" y="1102"/> + <use xlink:href="#glyph0-24" x="94.496094" y="1102"/> + <use xlink:href="#glyph0-8" x="100.858398" y="1102"/> + <use xlink:href="#glyph0-19" x="104.037109" y="1102"/> + <use xlink:href="#glyph0-23" x="110.067383" y="1102"/> + <use xlink:href="#glyph0-24" x="118.446289" y="1102"/> + <use xlink:href="#glyph0-8" x="124.808594" y="1102"/> + <use xlink:href="#glyph0-9" x="127.987305" y="1102"/> + <use xlink:href="#glyph0-12" x="131.888672" y="1102"/> + <use xlink:href="#glyph0-25" x="138.250977" y="1102"/> + <use xlink:href="#glyph0-33" x="144.613281" y="1102"/> + <use xlink:href="#glyph0-13" x="150.975586" y="1102"/> + <use xlink:href="#glyph0-14" x="158.724609" y="1102"/> + <use xlink:href="#glyph0-18" x="165.584961" y="1102"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 1354 L 1798 1354 L 1798 1392 L 0 1392 Z M 0 1354 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-51" x="7" y="1371"/> + <use xlink:href="#glyph0-16" x="14.519531" y="1371"/> + <use xlink:href="#glyph0-28" x="20.637695" y="1371"/> + <use xlink:href="#glyph0-15" x="25.847656" y="1371"/> + <use xlink:href="#glyph0-43" x="29.768555" y="1371"/> + <use xlink:href="#glyph0-8" x="33.137695" y="1371"/> + <use xlink:href="#glyph0-17" x="36.316406" y="1371"/> + <use xlink:href="#glyph0-16" x="39.094727" y="1371"/> + <use xlink:href="#glyph0-3" x="45.212891" y="1371"/> + <use xlink:href="#glyph0-2" x="50.710938" y="1371"/> + <use xlink:href="#glyph0-17" x="56.838867" y="1371"/> + <use xlink:href="#glyph0-4" x="59.617188" y="1371"/> + <use xlink:href="#glyph0-16" x="65.955078" y="1371"/> + <use xlink:href="#glyph0-28" x="72.073242" y="1371"/> + <use xlink:href="#glyph0-15" x="77.283203" y="1371"/> + <use xlink:href="#glyph0-41" x="81.204102" y="1371"/> + <use xlink:href="#glyph0-17" x="84.382812" y="1371"/> + <use xlink:href="#glyph0-16" x="87.161133" y="1371"/> + <use xlink:href="#glyph0-3" x="93.279297" y="1371"/> + <use xlink:href="#glyph0-2" x="98.777344" y="1371"/> + <use xlink:href="#glyph0-17" x="104.905273" y="1371"/> + <use xlink:href="#glyph0-31" x="107.683594" y="1371"/> + <use xlink:href="#glyph0-16" x="114.03125" y="1371"/> + <use xlink:href="#glyph0-50" x="120.149414" y="1371"/> + <use xlink:href="#glyph0-2" x="129.890625" y="1371"/> + <use xlink:href="#glyph0-5" x="136.018555" y="1371"/> + <use xlink:href="#glyph0-6" x="138.796875" y="1371"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-52" x="7" y="1385"/> + <use xlink:href="#glyph0-2" x="14.700195" y="1385"/> + <use xlink:href="#glyph0-15" x="20.828125" y="1385"/> + <use xlink:href="#glyph0-7" x="24.749023" y="1385"/> + <use xlink:href="#glyph0-43" x="30.901367" y="1385"/> + <use xlink:href="#glyph0-8" x="34.270508" y="1385"/> + <use xlink:href="#glyph0-53" x="37.449219" y="1385"/> + <use xlink:href="#glyph0-4" x="43.557617" y="1385"/> + <use xlink:href="#glyph0-27" x="49.895508" y="1385"/> + <use xlink:href="#glyph0-8" x="56.233398" y="1385"/> + <use xlink:href="#glyph0-25" x="59.412109" y="1385"/> + <use xlink:href="#glyph0-10" x="65.774414" y="1385"/> + <use xlink:href="#glyph0-8" x="72.136719" y="1385"/> + <use xlink:href="#glyph0-40" x="75.31543" y="1385"/> + <use xlink:href="#glyph0-27" x="82.15625" y="1385"/> + <use xlink:href="#glyph0-21" x="88.494141" y="1385"/> + <use xlink:href="#glyph0-8" x="94.841797" y="1385"/> + <use xlink:href="#glyph0-25" x="98.020508" y="1385"/> + <use xlink:href="#glyph0-11" x="104.382812" y="1385"/> + <use xlink:href="#glyph0-25" x="110.745117" y="1385"/> + <use xlink:href="#glyph0-25" x="117.107422" y="1385"/> + <use xlink:href="#glyph0-8" x="123.469727" y="1385"/> + <use xlink:href="#glyph0-11" x="126.648438" y="1385"/> + <use xlink:href="#glyph0-38" x="133.010742" y="1385"/> + <use xlink:href="#glyph0-43" x="139.373047" y="1385"/> + <use xlink:href="#glyph0-10" x="142.742188" y="1385"/> + <use xlink:href="#glyph0-11" x="149.104492" y="1385"/> + <use xlink:href="#glyph0-43" x="155.466797" y="1385"/> + <use xlink:href="#glyph0-24" x="158.835938" y="1385"/> + <use xlink:href="#glyph0-35" x="165.198242" y="1385"/> + <use xlink:href="#glyph0-8" x="171.560547" y="1385"/> + <use xlink:href="#glyph0-40" x="174.739258" y="1385"/> + <use xlink:href="#glyph0-1" x="181.580078" y="1385"/> + <use xlink:href="#glyph0-8" x="190.208008" y="1385"/> + <use xlink:href="#glyph0-26" x="193.386719" y="1385"/> + <use xlink:href="#glyph0-54" x="200.369141" y="1385"/> + <use xlink:href="#glyph0-53" x="206.716797" y="1385"/> +</g> +</g> +</svg>