docs: Add axi_ad9783 IP core
Signed-off-by: Jorge Marques <jorge.marques@analog.com> Signed-off-by: Iulia Moldovan <Iulia.Moldovan@analog.com>main
parent
99b76959fd
commit
fbe084a7b7
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 60 KiB |
|
@ -0,0 +1,313 @@
|
|||
.. _axi_ad9783:
|
||||
|
||||
AXI AD9783
|
||||
================================================================================
|
||||
|
||||
.. hdl-component-diagram::
|
||||
|
||||
The :git-hdl:`AXI AD9783 <library/axi_ad9783>` IP core
|
||||
can be used to interface the :adi:`AD9783` device.
|
||||
It is a dual DAC with 16 bits resolution, interfaced through LVDS, and with sample
|
||||
rates up to 500 MSPS. This documentation only covers the IP core and requires
|
||||
that one must be familiar with the device for a complete and better understanding.
|
||||
|
||||
More about the generic framework interfacing DACs can be read in :ref:`axi_dac`.
|
||||
|
||||
Features
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
* AXI Memory-Mapped to Streaming control/status interface
|
||||
* PRBS monitoring
|
||||
* Internal DDS
|
||||
* BIST testing
|
||||
* Supports only Xilinx devices
|
||||
|
||||
Files
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
.. list-table::
|
||||
:header-rows: 1
|
||||
|
||||
* - Name
|
||||
- Description
|
||||
* - :git-hdl:`library/axi_ad9783/axi_ad9783.v`
|
||||
- Verilog source for the AXI AD9783.
|
||||
* - :git-hdl:`library/common/up_dac_common.v`
|
||||
- Verilog source for the DAC Common regmap.
|
||||
* - :git-hdl:`library/common/up_dac_channel.v`
|
||||
- Verilog source for the DAC Channel regmap.
|
||||
|
||||
Functional Description
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
The axi_ad9783 cores architecture contains:
|
||||
|
||||
* :git-hdl:`Interface <library/axi_ad9783/axi_ad9783.v#L135>`
|
||||
module in LVDS mode for Xilinx devices
|
||||
* :git-hdl:`Transmit <library/axi_ad9783/axi_ad9783_core.v>`
|
||||
module, which contains:
|
||||
|
||||
* :git-hdl:`DAC channel processing <axi_ad9783/axi_ad9783_channel.v>` modules, one for each channel
|
||||
|
||||
* Different data generators (:git-hdl:`DDS <library/common/ad_dds.v>`, pattern, PRBS)
|
||||
* :git-hdl:`DAC Channel register map <library/common/up_dac_channel.v>`
|
||||
|
||||
* :git-hdl:`DAC Common register map <library/common/up_dac_common.v>`
|
||||
|
||||
* :git-hdl:`AXI control and status <library/common/up_axi.v>` modules.
|
||||
|
||||
Device Interface Description
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
The interface also provides a single clock tree for the entire core. This clock
|
||||
uses a global buffer that has the minimum skew all across the die. On Xilinx
|
||||
devices, this is done via the IBUFGDS, BUFGCE_DIV and BUFG primitives. The clock
|
||||
``dac_clk_in_p`` is passed through these primitives in order to obtain the
|
||||
divided clock: through IBUFGDS, then BUFGCE_DIV to BUFG. The core and the
|
||||
interface run at the same clock frequency.
|
||||
|
||||
Internal Interface Description
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
The main purpose of all (including this) ADI IP cores is to provide a common,
|
||||
well-defined internal interface within the FPGA. This interface consists of the
|
||||
following signals per channel, except for VALID which is common to all channels.
|
||||
|
||||
VALID
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
It is always set to logic 1 and indicates a valid sample on each DATA port.
|
||||
Because it is in the transmit (DAC) direction, this indicates the current sample
|
||||
is being read by the core.
|
||||
|
||||
ENABLE
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
The enable signal is only for software use and it is controlled by the
|
||||
corresponding register bit. The core simply reflects the programmed bit as an
|
||||
output port. In ADI reference projects, this bit is used to activate the channel
|
||||
that one is interested in. It is then used by the UPACK core to route the data
|
||||
based on total number of channels and the selected number of channels. As an
|
||||
example, AXI_AD9783 supports a total of 2 channels, 64 bits each. Because the
|
||||
SERDES factor was chosen to be 8, we have 4 samples of 16 bits each, on I
|
||||
channel and Q channel also, resulting in DMA with 128 bits as data width.
|
||||
|
||||
DATA
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
The DATA is the raw analog samples, and 4096 samples generated by PRBS are sent.
|
||||
It follows two simple rules.
|
||||
|
||||
#. The samples are always 16 bits. In the transmit direction, if the DAC data
|
||||
width is less than 16 bits, the most significant bits are used. This allows
|
||||
the same destination portable across different DAC data widths. In other
|
||||
words, if the source is generating a 16 bits tone, the signal appears the
|
||||
same across a 12 bit, 14 bit or 16 bit DAC with only the corresponding
|
||||
amplitude change. The source can thus be independent of the number of bits
|
||||
supported by DAC.
|
||||
#. The DATA is received and transmitted with most significant sample "newest"
|
||||
regardless of the channel width. In other words, the most significant sample
|
||||
is the "newest" sample. If the total channel width is 64 bits, it carries 4
|
||||
samples (16 bits) per clock. If we were to name these samples as S3 (bits 63
|
||||
down to 48), S2 (bits 47 down to 32), S1 (bits 31 down to 16) and S0 (bits 15
|
||||
down to 0), the following is true. In the transmit direction, S0 is sent
|
||||
first and S3 is sent last to the DAC. The analog samples are S0, S1, S2 and
|
||||
S3 across time with S0 being the oldest and S3 being the newest sample.
|
||||
|
||||
Parallel data port interface
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
The parallel port data interface consists of up to 18 differential signals,
|
||||
``dac_clk_out_*``, ``dac_clk_in_*``, and up to 16 data lines
|
||||
(``dac_data_out_*``\ [15:0]).
|
||||
DCO is the output clock generated by the AD9783 that is used to clock out the
|
||||
data from the digital data engine.
|
||||
|
||||
The data lines transmit the multiplexed I and Q data words for the I and Q
|
||||
DACs, respectively.
|
||||
DCI provides timing information about the parallel data and signals the I/Q
|
||||
status of the data.
|
||||
|
||||
The incoming LVDS data is latched by an internally generated clock referred to
|
||||
as the data sampling signal (DSS). DSS is a delayed version of the main DAC
|
||||
clock signal.
|
||||
|
||||
The clock input signal provides timing information about the parallel data, as
|
||||
well as indicating the destination (that is, I DAC or Q DAC) of the data. The
|
||||
data that is processed on rising edge will be outputted on the I DAC, and the
|
||||
data that is on falling edge will be outputted on Q DAC (see figure below).
|
||||
|
||||
.. image:: parallel_interface.svg
|
||||
:alt: AXI AD9783 parallel interface
|
||||
|
||||
Calibration of the device
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Calibrating the device means finding the proper value for the SMP_DLY register
|
||||
(see datasheet) in order for the PRBS function (PN23 in this case) to work
|
||||
properly when generating the 4096 samples of data.
|
||||
|
||||
The BIST feature in the AD9783 is a simple type adder and is a user
|
||||
synchronizable BIST feature. When a reading is performed, it adds up all the
|
||||
data that was generated on the rising edges of the ``dac_div_clk`` and it
|
||||
writes it in the registers accessible by the user: the low part of the result
|
||||
is written in register 0x1B, and the high part in 0x1C. For the sum of data
|
||||
from falling edges, read 0x1D and 0x1E respectively.
|
||||
|
||||
.. code::
|
||||
|
||||
register 0x1A <- 0x20
|
||||
register 0x1A <- 0x00 # to clear the BIST registers
|
||||
register 0x1A <- 0x80 # enable BIST
|
||||
# 4096 samples generated by PN23 are sent
|
||||
# send zeroes
|
||||
register 0x1A <- 0xC0 # perform BIST read
|
||||
# read registers 0x1B, 0x1C for the sum of data from rising edges
|
||||
# read registers 0x1D, 0x1E for the sum of data from falling edges
|
||||
|
||||
In register 0x1A, write 0x20 then 0x00 to clear the BIST registers while the
|
||||
IP is writing zeros to the data bits. To enable BIST, write 0x80 to register
|
||||
0x1A. Afterwards, 4096 samples of data are generated by PN23 PRBS and are sent
|
||||
to the data inputs.
|
||||
When all samples are sent, the IP is continuously sending zeros after the
|
||||
samples, while the BIST read is being performed. Sending zeroes after the
|
||||
samples is required in order to maintain the sums unchanged in the registers.
|
||||
Perform a BIST read by writing 0xC0 to register 0x1A to receive the unique sum
|
||||
of rising edge data in register 0x1B and register 0x1C and a unique sum of
|
||||
falling edge data in register 0x1D and register 0x1E. These register contents
|
||||
must always give the same values for the same samples each time they are sent.
|
||||
In order to change what data is sent, the DAC_DDS_SEL register value should be
|
||||
changed. To send PN23, 0x9 should be written in the register. The address for
|
||||
the DAC_DDS_SEL register is calculated by adding 0x418 (for the first channel)
|
||||
to the offset found in the devicetree, for the device.
|
||||
|
||||
Block Diagram
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
.. image:: block_diagram.svg
|
||||
:width: 600
|
||||
:alt: AXI AD9783 block diagram
|
||||
|
||||
Configuration Parameters
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
.. hdl-parameters::
|
||||
|
||||
* - ID
|
||||
- Core ID should be unique for each IP in the system
|
||||
* - FPGA_TECHNOLOGY
|
||||
- Encoded value describing the technology/generation of the FPGA device
|
||||
* - FPGA_FAMILY
|
||||
- Encoded value describing the family variant of the FPGA device
|
||||
* - SPEED_GRADE
|
||||
- Encoded value describing the FPGA's speed-grade
|
||||
* - DEV_PACKAGE
|
||||
- Encoded value describing the device package. The package might affect
|
||||
high-speed interfaces
|
||||
* - DAC_DDS_TYPE
|
||||
- 1 for CORDIC or 2 for Polynomial
|
||||
* - DAC_DDS_CORDIC_DW
|
||||
- CORDIC DDS data width
|
||||
* - DAC_DDS_CORDIC_PHASE_DW
|
||||
- CORDIC DDS phase width
|
||||
* - DAC_DATAPATH_DISABLE
|
||||
- Disable DAC processing blocks. Disables DDS
|
||||
|
||||
.. note::
|
||||
|
||||
Make sure these parameters have the appropriate values set.
|
||||
|
||||
Interface
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
.. hdl-interfaces::
|
||||
|
||||
* - dac_clk_in_p
|
||||
- LVDS input clock; comes from DCOP/N of the AD9783 chip
|
||||
* - dac_clk_in_n
|
||||
- LVDS input clock; comes from DCOP/N of the AD9783 chip
|
||||
* - dac_clk_out_p
|
||||
- LVDS output clock; goes to DCIP/N of the AD9783 chip
|
||||
* - dac_clk_out_n
|
||||
- LVDS output clock; goes to DCIP/N of the AD9783 chip
|
||||
* - dac_data_out_p
|
||||
- LVDS output data lines
|
||||
* - dac_data_out_n
|
||||
- LVDS output data lines
|
||||
* - dac_div_clk
|
||||
- Frequency divided clock used for clocking the DMA and the UPACK; it is
|
||||
1/4 compared to the reference input clock
|
||||
* - dac_rst
|
||||
- Core reset signal
|
||||
* - dac_enable_*
|
||||
- If set, the channel is enabled (one for each channel)
|
||||
* - dac_valid
|
||||
- Indicates valid data request for all channels
|
||||
* - dac_ddata_*
|
||||
- Transmitted data output (one for each channel)
|
||||
* - dac_dunf
|
||||
- Data underflow, must be connected to the DMA
|
||||
* - s_axi
|
||||
- Standard AXI Slave Memory Map interface
|
||||
|
||||
Register Map
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
The register map of the core contains instances of several generic register maps
|
||||
like ADC common, ADC channel, DAC common, DAC channel etc. The following table
|
||||
presents the base addresses of each instance, after that can be found the
|
||||
detailed description of each generic register map. The absolute address of a
|
||||
register should be calculated by adding the instance base address to the
|
||||
registers relative address.
|
||||
|
||||
.. list-table:: Register Map base addresses for axi_ad9783
|
||||
:header-rows: 1
|
||||
|
||||
* - DWORD
|
||||
- BYTE
|
||||
- Name
|
||||
- Description
|
||||
* - 0x0000
|
||||
- 0x0000
|
||||
- BASE
|
||||
- See the `Base <#hdl-regmap-COMMON>`__ table for more details.
|
||||
* - 0x1000
|
||||
- 0x4000
|
||||
- TX COMMON
|
||||
- See the `DAC Common <#hdl-regmap-DAC_COMMON>`__ table for more details.
|
||||
* - 0x1000
|
||||
- 0x4000
|
||||
- TX CHANNELS
|
||||
- See the `DAC Channel <#hdl-regmap-DAC_CHANNEL>`__ table for more details.
|
||||
|
||||
.. hdl-regmap::
|
||||
:name: COMMON
|
||||
:no-type-info:
|
||||
|
||||
.. hdl-regmap::
|
||||
:name: DAC_COMMON
|
||||
:no-type-info:
|
||||
|
||||
.. hdl-regmap::
|
||||
:name: DAC_CHANNEL
|
||||
:no-type-info:
|
||||
|
||||
Software Guidelines
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
The software for this IP can be found as part of the ZCU102 Reference Design
|
||||
at :git-linux:`/`.
|
||||
The IP expects the software run a calibration at least once. It has to find
|
||||
out what value for the SMP_DLY (see in datasheet) is good for the PRBS to
|
||||
work.
|
||||
|
||||
References
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
* :git-hdl:`library/axi_ad9783`
|
||||
* :adi:`AD9783`
|
||||
* :git-linux:`/`
|
||||
* :adi:`EVAL-AD9783 <en/design-center/evaluation-hardware-and-software/evaluation-boards-kits/EVAL-AD9783.html>`
|
||||
* :dokuwiki:`EVAL-AD9783 with ZCU102 reference design description <resources/fpga/xilinx/interposer/ad9783>`
|
||||
* :xilinx:`Ultrascale SelectIO <support/documentation/user_guides/ug571-ultrascale-selectio.pdf>`
|
||||
* :xilinx:`UltraScale Architecture Clocking Resources User Guide <support/documentation/user_guides/ug572-ultrascale-clocking.pdf>`
|
|
@ -0,0 +1,381 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="800"
|
||||
height="300"
|
||||
viewBox="0 0 800 300"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xml:space="preserve"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs1" /><g
|
||||
id="layer1"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect15"
|
||||
width="800"
|
||||
height="300"
|
||||
x="0"
|
||||
y="0" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 120,20 h 100 l 10,30"
|
||||
id="path1" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 120,50 H 220 L 230,20"
|
||||
id="path2" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 230,20 h 100 l 10,30"
|
||||
id="path1-8" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 230,50 H 330 L 340,20"
|
||||
id="path2-2" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 340,20 h 100 l 10,30"
|
||||
id="path1-4" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 340,50 H 440 L 450,20"
|
||||
id="path2-28" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 450,20 h 100 l 10,30"
|
||||
id="path1-8-3" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 450,50 H 550 L 560,20"
|
||||
id="path2-2-1" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 560,20 h 100 l 10,30"
|
||||
id="path1-9" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 560,50 H 660 L 670,20"
|
||||
id="path2-6" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 670,20 h 100 l 5,15"
|
||||
id="path1-8-0" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 670,50 h 100 l 5,-15"
|
||||
id="path2-2-4" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 120,90 h 100 l 10,30 h 100 l 10,-30"
|
||||
id="path3" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 340,90 h 100 l 10,30 h 100 l 10,-30"
|
||||
id="path3-6" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 560,90 h 100 l 10,30 h 100 l 5,-15"
|
||||
id="path3-4" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 780,240 H 750 L 740,210 H 640 l -10,30"
|
||||
id="path3-3" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 630,240 H 530 L 520,210 H 420 l -10,30"
|
||||
id="path3-6-6" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 410,240 H 310 L 300,210 H 200 l -10,30"
|
||||
id="path3-4-8" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 120,240 h 70"
|
||||
id="path4" /><path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 120,90 -5,15"
|
||||
id="path5" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:8, 8;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 195,275 V 35"
|
||||
id="path6" /><path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 190,30 h 10 l -5,10 z"
|
||||
id="path7" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:8, 8;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 305,275 V 34.999996"
|
||||
id="path6-5" /><path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 300,29.999996 h 10 l -5,10 z"
|
||||
id="path7-8" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 415,275 V 35"
|
||||
id="path6-8" /><path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 410,30 h 10 l -5,10 z"
|
||||
id="path7-1" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:8, 8;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 525,175 V 34.999996"
|
||||
id="path6-5-0" /><path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 520,30 h 10 l -5,9.999996 z"
|
||||
id="path7-8-1" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:8, 8;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 635,275 V 35.000004"
|
||||
id="path6-2" /><path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 630,30.000004 h 10 l -5,10 z"
|
||||
id="path7-0" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:8, 8;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 745,275 V 35.000004"
|
||||
id="path6-5-2" /><path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 740,30.000004 h 10 l -5,10 z"
|
||||
id="path7-8-16" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 445,90 V 200"
|
||||
id="path8" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 455,180 -10,5 10,5"
|
||||
id="path9" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 445,185 h 30"
|
||||
id="path10" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 405,180 10,5 -10,5"
|
||||
id="path11" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 415,185 H 395"
|
||||
id="path12" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 350,145 -10,5 10,5"
|
||||
id="path13" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 405,145 c 0,0 10,5 10,5 l -10,5"
|
||||
id="path14" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 340,150 h 75"
|
||||
id="path15" /><path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-dasharray:8, 8;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 525,275 V 200"
|
||||
id="path6-5-0-4" /></g><g
|
||||
id="layer2"
|
||||
style="display:none"><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="480"
|
||||
y="190"
|
||||
id="text5-4"><tspan
|
||||
id="tspan5-1"
|
||||
x="480"
|
||||
y="190"
|
||||
style="font-size:16px;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">t<tspan
|
||||
style="font-size:16px;text-align:start;baseline-shift:sub;text-anchor:start;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none"
|
||||
id="tspan6-5">HLD0</tspan></tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="350"
|
||||
y="140"
|
||||
id="text5"><tspan
|
||||
id="tspan5"
|
||||
x="350"
|
||||
y="140"
|
||||
style="font-size:16px;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">t<tspan
|
||||
style="font-size:16px;text-align:start;baseline-shift:sub;text-anchor:start;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none"
|
||||
id="tspan6">HLD0</tspan></tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="105.71875"
|
||||
y="230.81641"
|
||||
id="text5-6"><tspan
|
||||
id="tspan5-2"
|
||||
x="105.71875"
|
||||
y="230.81641"
|
||||
style="font-size:16px;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">DSS</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="106.32812"
|
||||
y="109.89062"
|
||||
id="text5-6-8"><tspan
|
||||
id="tspan5-2-1"
|
||||
x="106.32812"
|
||||
y="109.89062"
|
||||
style="font-size:16px;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">DCIP/DCIN</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="105"
|
||||
y="40.645462"
|
||||
id="text5-6-4"><tspan
|
||||
id="tspan5-2-7"
|
||||
x="105"
|
||||
y="40.645462"
|
||||
style="font-size:16px;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">DATA</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="195.32812"
|
||||
y="295"
|
||||
id="text5-6-8-7"><tspan
|
||||
id="tspan5-2-1-5"
|
||||
x="195.32812"
|
||||
y="295"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">SAMPLE 1</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="304.99609"
|
||||
y="295.01562"
|
||||
id="text5-6-8-7-1"><tspan
|
||||
id="tspan5-2-1-5-6"
|
||||
x="304.99609"
|
||||
y="295.01562"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">SAMPLE 2</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="415.07812"
|
||||
y="295"
|
||||
id="text5-6-8-7-8"><tspan
|
||||
id="tspan5-2-1-5-5"
|
||||
x="415.07812"
|
||||
y="295"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">SAMPLE 3</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="524.86328"
|
||||
y="295"
|
||||
id="text5-6-8-7-10"><tspan
|
||||
id="tspan5-2-1-5-0"
|
||||
x="524.86328"
|
||||
y="295"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">SAMPLE 4</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="635.04297"
|
||||
y="294.98438"
|
||||
id="text5-6-8-7-9"><tspan
|
||||
id="tspan5-2-1-5-05"
|
||||
x="635.04297"
|
||||
y="294.98438"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">SAMPLE 5</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="744.91016"
|
||||
y="294.98828"
|
||||
id="text5-6-8-7-3"><tspan
|
||||
id="tspan5-2-1-5-3"
|
||||
x="744.91016"
|
||||
y="294.98828"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">SAMPLE 6</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="171.74654"
|
||||
y="40.641556"
|
||||
id="text5-6-8-7-30"><tspan
|
||||
id="tspan5-2-1-5-03"
|
||||
x="171.74654"
|
||||
y="40.641556"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">I0</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="281.83246"
|
||||
y="39.2314"
|
||||
id="text5-6-8-7-30-7"><tspan
|
||||
id="tspan5-2-1-5-03-1"
|
||||
x="281.83246"
|
||||
y="39.2314"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">Q0</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="392.07074"
|
||||
y="40.664993"
|
||||
id="text5-6-8-7-30-1"><tspan
|
||||
id="tspan5-2-1-5-03-8"
|
||||
x="392.07074"
|
||||
y="40.664993"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">I1</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="502.15668"
|
||||
y="39.2314"
|
||||
id="text5-6-8-7-30-7-9"><tspan
|
||||
id="tspan5-2-1-5-03-1-0"
|
||||
x="502.15668"
|
||||
y="39.2314"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">Q1</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="611.73871"
|
||||
y="40.766556"
|
||||
id="text5-6-8-7-30-5"><tspan
|
||||
id="tspan5-2-1-5-03-84"
|
||||
x="611.73871"
|
||||
y="40.766556"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">I2</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-size:16px;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="722.92609"
|
||||
y="39.2314"
|
||||
id="text5-6-8-7-30-7-5"><tspan
|
||||
id="tspan5-2-1-5-03-1-8"
|
||||
x="722.92609"
|
||||
y="39.2314"
|
||||
style="font-size:16px;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-dasharray:none">Q2</tspan></text></g><g
|
||||
id="layer3"><g
|
||||
id="text5-4-4"
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000"
|
||||
aria-label="tHLD0"><path
|
||||
style="text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#1a1a1a;stroke:none"
|
||||
d="m 485.97656,189.92187 q -0.41406,0.10938 -0.90625,0.17969 -0.48437,0.0703 -0.86719,0.0703 -1.33593,0 -2.03125,-0.71875 -0.69531,-0.71875 -0.69531,-2.30468 v -4.64063 h -0.99219 v -1.23437 h 0.99219 v -2.50782 h 1.46875 v 2.50782 h 3.03125 v 1.23437 h -3.03125 v 3.97656 q 0,0.6875 0.0312,1.07813 0.0312,0.38281 0.21875,0.71875 0.17188,0.3125 0.46875,0.46094 0.30469,0.14062 0.92188,0.14062 0.35937,0 0.75,-0.10156 0.39062,-0.10938 0.5625,-0.17969 h 0.0781 z"
|
||||
id="path21" /><path
|
||||
style="text-align:start;baseline-shift:sub;text-anchor:start;fill:#1a1a1a;stroke:none"
|
||||
d="m 496.76562,193.2 h -1.54687 v -5.69531 h -5.80469 V 193.2 h -1.54687 v -11.63281 h 1.54687 v 4.5625 h 5.80469 v -4.5625 h 1.54687 z m 10.48438,0 h -7.35938 v -11.63281 h 1.54688 V 191.825 h 5.8125 z m 11.375,-5.80469 q 0,1.58594 -0.69531,2.875 -0.6875,1.28907 -1.83594,2 -0.79688,0.49219 -1.78125,0.71094 -0.97656,0.21875 -2.57813,0.21875 h -2.9375 v -11.63281 h 2.90625 q 1.70313,0 2.70313,0.25 1.00781,0.24219 1.70312,0.67187 1.1875,0.74219 1.85157,1.97657 0.66406,1.23437 0.66406,2.92968 z m -1.61719,-0.0234 q 0,-1.36719 -0.47656,-2.30469 -0.47656,-0.9375 -1.42188,-1.47656 -0.6875,-0.39063 -1.46093,-0.53907 -0.77344,-0.15625 -1.85157,-0.15625 h -1.45312 v 8.97657 h 1.45312 q 1.11719,0 1.94532,-0.16407 0.83593,-0.16406 1.53125,-0.60937 0.86718,-0.55469 1.29687,-1.46094 0.4375,-0.90625 0.4375,-2.26562 z m 11.67188,0.008 q 0,3.13281 -0.98438,4.60156 -0.97656,1.46094 -3.03906,1.46094 -2.09375,0 -3.0625,-1.48438 -0.96094,-1.48437 -0.96094,-4.5625 0,-3.10156 0.97656,-4.57812 0.97657,-1.48438 3.04688,-1.48438 2.09375,0 3.05469,1.50782 0.96875,1.5 0.96875,4.53906 z m -2.05469,3.54687 q 0.27344,-0.63281 0.36719,-1.48437 0.10156,-0.85938 0.10156,-2.0625 0,-1.1875 -0.10156,-2.0625 -0.0937,-0.875 -0.375,-1.48438 -0.27344,-0.60156 -0.75,-0.90625 -0.46875,-0.30468 -1.21094,-0.30468 -0.73438,0 -1.21875,0.30468 -0.47656,0.30469 -0.75781,0.92188 -0.26563,0.57812 -0.36719,1.50781 -0.0937,0.92969 -0.0937,2.03906 0,1.21875 0.0859,2.03907 0.0859,0.82031 0.36718,1.46875 0.25782,0.60937 0.72657,0.92968 0.47656,0.32032 1.25781,0.32032 0.73437,0 1.21875,-0.30469 0.48437,-0.30469 0.75,-0.92188 z"
|
||||
id="path22" /></g><g
|
||||
id="text5-8"
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:end;writing-mode:tb-rl;text-anchor:end;fill:none;stroke:#000000"
|
||||
aria-label="tHLD0"><path
|
||||
style="text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#1a1a1a;stroke:none"
|
||||
d="m 355.97656,139.92187 q -0.41406,0.10938 -0.90625,0.17969 -0.48437,0.0703 -0.86719,0.0703 -1.33593,0 -2.03125,-0.71875 -0.69531,-0.71875 -0.69531,-2.30468 v -4.64063 h -0.99219 v -1.23437 h 0.99219 v -2.50782 h 1.46875 v 2.50782 h 3.03125 v 1.23437 h -3.03125 v 3.97656 q 0,0.6875 0.0312,1.07813 0.0312,0.38281 0.21875,0.71875 0.17188,0.3125 0.46875,0.46094 0.30469,0.14062 0.92188,0.14062 0.35937,0 0.75,-0.10156 0.39062,-0.10938 0.5625,-0.17969 h 0.0781 z"
|
||||
id="path19" /><path
|
||||
style="text-align:start;baseline-shift:sub;text-anchor:start;fill:#1a1a1a;stroke:none"
|
||||
d="m 366.76562,143.2 h -1.54687 v -5.69531 h -5.80469 V 143.2 h -1.54687 v -11.63281 h 1.54687 v 4.5625 h 5.80469 v -4.5625 h 1.54687 z m 10.48438,0 h -7.35938 v -11.63281 h 1.54688 V 141.825 h 5.8125 z m 11.375,-5.80469 q 0,1.58594 -0.69531,2.875 -0.6875,1.28907 -1.83594,2 -0.79688,0.49219 -1.78125,0.71094 -0.97656,0.21875 -2.57813,0.21875 h -2.9375 v -11.63281 h 2.90625 q 1.70313,0 2.70313,0.25 1.00781,0.24219 1.70312,0.67187 1.1875,0.74219 1.85157,1.97657 0.66406,1.23437 0.66406,2.92968 z m -1.61719,-0.0234 q 0,-1.36719 -0.47656,-2.30469 -0.47656,-0.9375 -1.42188,-1.47656 -0.6875,-0.39063 -1.46093,-0.53907 -0.77344,-0.15625 -1.85157,-0.15625 h -1.45312 v 8.97657 h 1.45312 q 1.11719,0 1.94532,-0.16407 0.83593,-0.16406 1.53125,-0.60937 0.86718,-0.55469 1.29687,-1.46094 0.4375,-0.90625 0.4375,-2.26562 z m 11.67188,0.008 q 0,3.13281 -0.98438,4.60156 -0.97656,1.46094 -3.03906,1.46094 -2.09375,0 -3.0625,-1.48438 -0.96094,-1.48437 -0.96094,-4.5625 0,-3.10156 0.97656,-4.57812 0.97657,-1.48438 3.04688,-1.48438 2.09375,0 3.05469,1.50782 0.96875,1.5 0.96875,4.53906 z m -2.05469,3.54687 q 0.27344,-0.63281 0.36719,-1.48437 0.10156,-0.85938 0.10156,-2.0625 0,-1.1875 -0.10156,-2.0625 -0.0937,-0.875 -0.375,-1.48438 -0.27344,-0.60156 -0.75,-0.90625 -0.46875,-0.30468 -1.21094,-0.30468 -0.73438,0 -1.21875,0.30468 -0.47656,0.30469 -0.75781,0.92188 -0.26563,0.57812 -0.36719,1.50781 -0.0937,0.92969 -0.0937,2.03906 0,1.21875 0.0859,2.03907 0.0859,0.82031 0.36718,1.46875 0.25782,0.60937 0.72657,0.92968 0.47656,0.32032 1.25781,0.32032 0.73437,0 1.21875,-0.30469 0.48437,-0.30469 0.75,-0.92188 z"
|
||||
id="path20" /></g><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:end;text-anchor:end;fill:#1a1a1a"
|
||||
d="m 83.078125,225.01172 q 0,1.58594 -0.695313,2.875 -0.6875,1.28906 -1.835937,2 -0.796875,0.49219 -1.78125,0.71094 -0.976563,0.21875 -2.578125,0.21875 H 73.25 v -11.63282 h 2.90625 q 1.703125,0 2.703125,0.25 1.007812,0.24219 1.703125,0.67188 1.1875,0.74219 1.851562,1.97656 0.664063,1.23438 0.664063,2.92969 z m -1.617188,-0.0234 q 0,-1.36719 -0.476562,-2.30469 -0.476563,-0.9375 -1.421875,-1.47656 -0.6875,-0.39062 -1.460938,-0.53906 -0.773437,-0.15625 -1.851562,-0.15625 h -1.453125 v 8.97656 H 76.25 q 1.117187,0 1.945312,-0.16406 0.835938,-0.16406 1.53125,-0.60938 0.867188,-0.55468 1.296875,-1.46093 0.4375,-0.90625 0.4375,-2.26563 z m 12.570313,2.50781 q 0,0.67969 -0.320313,1.34375 -0.3125,0.66407 -0.882812,1.125 -0.625,0.5 -1.460938,0.78125 -0.828125,0.28125 -2,0.28125 -1.257812,0 -2.265625,-0.23437 -1,-0.23438 -2.039062,-0.69531 v -1.9375 h 0.109375 q 0.882812,0.73437 2.039062,1.13281 1.15625,0.39844 2.171875,0.39844 1.4375,0 2.234375,-0.53907 0.804688,-0.53906 0.804688,-1.4375 0,-0.77343 -0.382813,-1.14062 -0.375,-0.36719 -1.148437,-0.57031 -0.585938,-0.15625 -1.273438,-0.25782 -0.679687,-0.10156 -1.445312,-0.25781 -1.546875,-0.32812 -2.296875,-1.11719 -0.742188,-0.79687 -0.742188,-2.07031 0,-1.46094 1.234375,-2.39062 1.234375,-0.9375 3.132813,-0.9375 1.226562,0 2.25,0.23437 1.023437,0.23438 1.8125,0.57813 v 1.82812 h -0.109375 q -0.664063,-0.5625 -1.75,-0.92969 -1.078125,-0.375 -2.210938,-0.375 -1.242187,0 -2,0.51563 -0.75,0.51562 -0.75,1.32812 0,0.72657 0.375,1.14063 0.375,0.41406 1.320313,0.63281 0.5,0.10938 1.421875,0.26563 0.921875,0.15625 1.5625,0.32031 1.296875,0.34375 1.953125,1.03906 0.65625,0.69531 0.65625,1.94531 z m 10.76563,0 q 0,0.67969 -0.32032,1.34375 -0.3125,0.66407 -0.88281,1.125 -0.625,0.5 -1.46094,0.78125 -0.82812,0.28125 -2,0.28125 -1.25781,0 -2.265623,-0.23437 -1,-0.23438 -2.039062,-0.69531 v -1.9375 H 95.9375 q 0.882812,0.73437 2.039062,1.13281 1.15625,0.39844 2.171878,0.39844 1.4375,0 2.23437,-0.53907 0.80469,-0.53906 0.80469,-1.4375 0,-0.77343 -0.38281,-1.14062 -0.375,-0.36719 -1.14844,-0.57031 -0.58594,-0.15625 -1.27344,-0.25782 -0.679685,-0.10156 -1.44531,-0.25781 -1.546875,-0.32812 -2.296875,-1.11719 -0.742188,-0.79687 -0.742188,-2.07031 0,-1.46094 1.234375,-2.39062 1.234375,-0.9375 3.132818,-0.9375 1.22656,0 2.25,0.23437 1.02343,0.23438 1.8125,0.57813 v 1.82812 h -0.10938 q -0.66406,-0.5625 -1.75,-0.92969 -1.07812,-0.375 -2.21094,-0.375 -1.242185,0 -1.999998,0.51563 -0.75,0.51562 -0.75,1.32812 0,0.72657 0.375,1.14063 0.375,0.41406 1.320313,0.63281 0.5,0.10938 1.421875,0.26563 0.92188,0.15625 1.5625,0.32031 1.29688,0.34375 1.95313,1.03906 0.65625,0.69531 0.65625,1.94531 z"
|
||||
id="text5-6-3"
|
||||
aria-label="DSS" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:end;text-anchor:end;fill:#1a1a1a"
|
||||
d="m 28.36718,104.08593 q 0,1.58594 -0.695313,2.875 -0.6875,1.28906 -1.835937,2 -0.796875,0.49219 -1.78125,0.71094 -0.976563,0.21875 -2.578125,0.21875 h -2.9375 V 98.257805 h 2.90625 q 1.703125,0 2.703125,0.25 1.007812,0.242187 1.703125,0.671875 1.1875,0.742187 1.851562,1.97656 0.664063,1.23438 0.664063,2.92969 z m -1.617188,-0.0234 q 0,-1.36719 -0.476562,-2.30469 -0.476563,-0.9375 -1.421875,-1.47656 -0.6875,-0.390623 -1.460938,-0.53906 -0.773437,-0.15625 -1.851562,-0.15625 H 20.08593 v 8.97656 h 1.453125 q 1.117187,0 1.945312,-0.16406 0.835938,-0.16406 1.53125,-0.60938 0.867188,-0.55468 1.296875,-1.46093 0.4375,-0.90625 0.4375,-2.26563 z m 13.101563,4.98438 q -0.429688,0.1875 -0.78125,0.35156 -0.34375,0.16406 -0.90625,0.34375 -0.476563,0.14844 -1.039063,0.25 -0.554687,0.10937 -1.226562,0.10937 -1.265625,0 -2.304688,-0.35156 -1.03125,-0.35937 -1.796875,-1.11719 -0.75,-0.74218 -1.171875,-1.88281 -0.421875,-1.14844 -0.421875,-2.66406 0,-1.4375 0.40625,-2.57031 0.40625,-1.13282 1.171875,-1.914065 0.742188,-0.757813 1.789063,-1.15625 1.054687,-0.398438 2.335937,-0.398438 0.9375,0 1.867188,0.226563 0.9375,0.226562 2.078125,0.796875 v 1.835935 h -0.117188 q -0.960937,-0.80469 -1.90625,-1.171873 -0.945312,-0.367187 -2.023437,-0.367187 -0.882813,0 -1.59375,0.289062 -0.703125,0.28125 -1.257813,0.882808 -0.539062,0.58594 -0.84375,1.48438 -0.296875,0.89062 -0.296875,2.0625 0,1.22656 0.328125,2.10937 0.335938,0.88282 0.859375,1.4375 0.546875,0.57813 1.273438,0.85938 0.734375,0.27344 1.546875,0.27344 1.117187,0 2.09375,-0.38282 0.976562,-0.38281 1.828125,-1.14843 h 0.109375 z m 6.289062,0.84375 h -4.59375 v -1.1875 h 1.523438 v -9.257815 h -1.523438 v -1.1875 h 4.59375 v 1.1875 H 44.61718 v 9.257815 h 1.523437 z m 10.242188,-8.11719 q 0,0.77344 -0.273438,1.4375 -0.265625,0.65625 -0.75,1.14062 -0.601562,0.60157 -1.421875,0.90625 -0.820312,0.29688 -2.070312,0.29688 h -1.546875 v 4.33594 H 48.77343 V 98.257805 h 3.15625 q 1.046875,0 1.773437,0.179687 0.726563,0.171875 1.289063,0.546875 0.664062,0.445313 1.023437,1.109373 0.367188,0.66406 0.367188,1.67969 z m -1.609375,0.0391 q 0,-0.60156 -0.210938,-1.04687 -0.210937,-0.44532 -0.640625,-0.72657 -0.375,-0.242183 -0.859375,-0.343745 Q 52.58593,99.58593 51.851555,99.58593 h -1.53125 v 4.64844 h 1.304687 q 0.9375,0 1.523438,-0.16407 0.585937,-0.17187 0.953125,-0.53906 0.367187,-0.375 0.515625,-0.78906 0.15625,-0.41406 0.15625,-0.92969 z m 8.804687,-4.078123 -5.601562,14.531253 h -1.351563 l 5.578125,-14.531253 z m 11.9375,6.351563 q 0,1.58594 -0.695312,2.875 -0.6875,1.28906 -1.835938,2 -0.796875,0.49219 -1.78125,0.71094 -0.976562,0.21875 -2.578125,0.21875 h -2.9375 V 98.257805 h 2.90625 q 1.703125,0 2.703125,0.25 1.007813,0.242187 1.703125,0.671875 1.1875,0.742187 1.851563,1.97656 0.664062,1.23438 0.664062,2.92969 z m -1.617187,-0.0234 q 0,-1.36719 -0.476563,-2.30469 -0.476562,-0.9375 -1.421875,-1.47656 -0.6875,-0.390623 -1.460937,-0.53906 -0.773438,-0.15625 -1.851563,-0.15625 h -1.453125 v 8.97656 h 1.453125 q 1.117188,0 1.945313,-0.16406 0.835937,-0.16406 1.53125,-0.60938 0.867187,-0.55468 1.296875,-1.46093 0.4375,-0.90625 0.4375,-2.26563 z m 13.101562,4.98438 q -0.429687,0.1875 -0.78125,0.35156 -0.34375,0.16406 -0.90625,0.34375 -0.476562,0.14844 -1.039062,0.25 -0.554688,0.10937 -1.226563,0.10937 -1.265625,0 -2.304687,-0.35156 -1.03125,-0.35937 -1.796875,-1.11719 -0.75,-0.74218 -1.171875,-1.88281 -0.421875,-1.14844 -0.421875,-2.66406 0,-1.4375 0.40625,-2.57031 0.40625,-1.13282 1.171875,-1.914065 0.742187,-0.757813 1.789062,-1.15625 1.054688,-0.398438 2.335938,-0.398438 0.9375,0 1.867187,0.226563 0.9375,0.226562 2.078125,0.796875 v 1.835935 h -0.117187 q -0.960938,-0.80469 -1.90625,-1.171873 -0.945313,-0.367187 -2.023438,-0.367187 -0.882812,0 -1.59375,0.289062 -0.703125,0.28125 -1.257812,0.882808 -0.539063,0.58594 -0.84375,1.48438 -0.296875,0.89062 -0.296875,2.0625 0,1.22656 0.328125,2.10937 0.335937,0.88282 0.859375,1.4375 0.546875,0.57813 1.273437,0.85938 0.734375,0.27344 1.546875,0.27344 1.117188,0 2.09375,-0.38282 0.976563,-0.38281 1.828125,-1.14843 h 0.109375 z m 6.289063,0.84375 h -4.59375 v -1.1875 h 1.523437 v -9.257815 h -1.523437 v -1.1875 h 4.59375 v 1.1875 h -1.523438 v 9.257815 h 1.523438 z m 11.507815,0 H 102.8828 L 97.36718,99.484367 V 109.89062 H 95.921867 V 98.257805 h 2.398438 l 5.031245,9.499995 v -9.499995 h 1.44532 z"
|
||||
id="text5-6-8-8"
|
||||
aria-label="DCIP/DCIN" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:end;text-anchor:end;fill:#1a1a1a"
|
||||
d="m 74.203125,34.840775 q 0,1.585937 -0.695313,2.875 -0.6875,1.289062 -1.835937,2 -0.796875,0.492187 -1.78125,0.710937 -0.976563,0.21875 -2.578125,0.21875 H 64.375 V 29.01265 h 2.90625 q 1.703125,0 2.703125,0.25 1.007812,0.242187 1.703125,0.671875 1.1875,0.742187 1.851562,1.976562 0.664063,1.234375 0.664063,2.929688 z m -1.617188,-0.02344 q 0,-1.367187 -0.476562,-2.304687 Q 71.632812,31.57515 70.6875,31.036087 70,30.645462 69.226562,30.497025 68.453125,30.340775 67.375,30.340775 h -1.453125 v 8.976562 H 67.375 q 1.117187,0 1.945312,-0.164062 0.835938,-0.164063 1.53125,-0.609375 0.867188,-0.554688 1.296875,-1.460938 0.4375,-0.90625 0.4375,-2.265625 z M 85.875,40.645462 h -1.648438 l -1.140625,-3.242187 h -5.03125 l -1.140625,3.242187 H 75.34375 L 79.578125,29.01265 h 2.0625 z M 82.609375,36.07515 80.570312,30.364212 78.523437,36.07515 Z M 95,30.38765 H 90.84375 V 40.645462 H 89.296875 V 30.38765 h -4.15625 v -1.375 H 95 Z m 9.79688,10.257812 h -1.64844 l -1.14063,-3.242187 h -5.031248 l -1.140625,3.242187 H 94.265625 L 98.5,29.01265 h 2.0625 z m -3.26563,-4.570312 -2.039063,-5.710938 -2.046875,5.710938 z"
|
||||
id="text5-6-4-4"
|
||||
aria-label="DATA" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 165.50781,291.67969 q 0,0.67968 -0.32031,1.34375 -0.3125,0.66406 -0.88281,1.125 -0.625,0.5 -1.46094,0.78125 -0.82813,0.28125 -2,0.28125 -1.25781,0 -2.26563,-0.23438 -1,-0.23437 -2.03906,-0.69531 v -1.9375 h 0.10938 q 0.88281,0.73437 2.03906,1.13281 1.15625,0.39844 2.17187,0.39844 1.4375,0 2.23438,-0.53906 0.80469,-0.53907 0.80469,-1.4375 0,-0.77344 -0.38282,-1.14063 -0.375,-0.36719 -1.14843,-0.57031 -0.58594,-0.15625 -1.27344,-0.25781 -0.67969,-0.10157 -1.44531,-0.25782 -1.54688,-0.32812 -2.29688,-1.11718 -0.74219,-0.79688 -0.74219,-2.07032 0,-1.46093 1.23438,-2.39062 1.23437,-0.9375 3.13281,-0.9375 1.22656,0 2.25,0.23437 1.02344,0.23438 1.8125,0.57813 v 1.82812 h -0.10937 q -0.66407,-0.5625 -1.75,-0.92968 -1.07813,-0.375 -2.21094,-0.375 -1.24219,0 -2,0.51562 -0.75,0.51563 -0.75,1.32813 0,0.72656 0.375,1.14062 0.375,0.41406 1.32031,0.63281 0.5,0.10938 1.42188,0.26563 0.92187,0.15625 1.5625,0.32031 1.29687,0.34375 1.95312,1.03906 0.65625,0.69532 0.65625,1.94532 z m 11.5,3.32031 h -1.64844 l -1.14062,-3.24219 H 169.1875 L 168.04687,295 h -1.57031 l 4.23438,-11.63281 h 2.0625 z m -3.26562,-4.57031 -2.03907,-5.71094 -2.04687,5.71094 z M 189.13281,295 h -1.54687 v -10.02344 l -3.23438,6.82031 h -0.92187 l -3.21094,-6.82031 V 295 h -1.44531 v -11.63281 h 2.10937 l 3.10156,6.47656 3,-6.47656 h 2.14844 z m 10.73438,-8.11719 q 0,0.77344 -0.27344,1.4375 -0.26563,0.65625 -0.75,1.14063 -0.60156,0.60156 -1.42188,0.90625 -0.82031,0.29687 -2.07031,0.29687 h -1.54687 V 295 h -1.54688 v -11.63281 h 3.15625 q 1.04688,0 1.77344,0.17968 0.72656,0.17188 1.28906,0.54688 0.66406,0.44531 1.02344,1.10937 0.36719,0.66407 0.36719,1.67969 z m -1.60938,0.0391 q 0,-0.60156 -0.21094,-1.04687 -0.21093,-0.44531 -0.64062,-0.72656 -0.375,-0.24219 -0.85938,-0.34375 -0.47656,-0.10938 -1.21093,-0.10938 h -1.53125 v 4.64844 h 1.30468 q 0.9375,0 1.52344,-0.16406 0.58594,-0.17188 0.95313,-0.53907 0.36718,-0.375 0.51562,-0.78906 0.15625,-0.41406 0.15625,-0.92969 z M 209.26562,295 h -7.35937 v -11.63281 h 1.54687 V 293.625 h 5.8125 z m 9.21094,0 h -7.66406 v -11.63281 h 7.66406 v 1.375 h -6.11719 v 3.1875 h 6.11719 v 1.375 h -6.11719 v 4.32031 h 6.11719 z m 14.98438,0 h -6.29688 v -1.1875 h 2.42188 v -7.79688 h -2.42188 v -1.0625 q 0.49219,0 1.05469,-0.0781 0.5625,-0.0859 0.85156,-0.24219 0.35938,-0.19531 0.5625,-0.49219 0.21094,-0.30468 0.24219,-0.8125 h 1.21094 v 10.48438 h 2.375 z"
|
||||
id="text5-6-8-7-5"
|
||||
aria-label="SAMPLE 1" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 275.17578,291.69531 q 0,0.67969 -0.32031,1.34375 -0.3125,0.66406 -0.88281,1.125 -0.625,0.5 -1.46094,0.78125 -0.82813,0.28125 -2,0.28125 -1.25781,0 -2.26563,-0.23437 -1,-0.23438 -2.03906,-0.69532 v -1.9375 h 0.10938 q 0.88281,0.73438 2.03906,1.13282 1.15625,0.39843 2.17187,0.39843 1.4375,0 2.23438,-0.53906 0.80469,-0.53906 0.80469,-1.4375 0,-0.77344 -0.38282,-1.14062 -0.375,-0.36719 -1.14843,-0.57032 -0.58594,-0.15625 -1.27344,-0.25781 -0.67969,-0.10156 -1.44531,-0.25781 -1.54688,-0.32813 -2.29688,-1.11719 -0.74219,-0.79687 -0.74219,-2.07031 0,-1.46094 1.23438,-2.39063 1.23437,-0.9375 3.13281,-0.9375 1.22656,0 2.25,0.23438 1.02344,0.23437 1.8125,0.57812 v 1.82813 h -0.10937 q -0.66407,-0.5625 -1.75,-0.92969 -1.07813,-0.375 -2.21094,-0.375 -1.24219,0 -2,0.51563 -0.75,0.51562 -0.75,1.32812 0,0.72656 0.375,1.14063 0.375,0.41406 1.32031,0.63281 0.5,0.10937 1.42188,0.26562 0.92187,0.15625 1.5625,0.32032 1.29687,0.34375 1.95312,1.03906 0.65625,0.69531 0.65625,1.94531 z m 11.5,3.32031 h -1.64844 l -1.14062,-3.24218 h -5.03125 l -1.14063,3.24218 h -1.57031 l 4.23438,-11.63281 h 2.0625 z m -3.26562,-4.57031 -2.03907,-5.71094 -2.04687,5.71094 z m 15.39062,4.57031 h -1.54687 v -10.02343 l -3.23438,6.82031 h -0.92187 l -3.21094,-6.82031 v 10.02343 h -1.44531 v -11.63281 h 2.10937 l 3.10156,6.47656 3,-6.47656 h 2.14844 z m 10.73438,-8.11718 q 0,0.77343 -0.27344,1.4375 -0.26563,0.65625 -0.75,1.14062 -0.60156,0.60156 -1.42188,0.90625 -0.82031,0.29688 -2.07031,0.29688 h -1.54687 v 4.33593 h -1.54688 v -11.63281 h 3.15625 q 1.04688,0 1.77344,0.17969 0.72656,0.17187 1.28906,0.54687 0.66406,0.44532 1.02344,1.10938 0.36719,0.66406 0.36719,1.67969 z m -1.60938,0.0391 q 0,-0.60156 -0.21094,-1.04688 -0.21093,-0.44531 -0.64062,-0.72656 -0.375,-0.24219 -0.85938,-0.34375 -0.47656,-0.10937 -1.21093,-0.10937 h -1.53125 v 4.64843 h 1.30468 q 0.9375,0 1.52344,-0.16406 0.58594,-0.17187 0.95313,-0.53906 0.36718,-0.375 0.51562,-0.78906 0.15625,-0.41407 0.15625,-0.92969 z m 11.00781,8.07812 h -7.35937 v -11.63281 h 1.54687 v 10.25781 h 5.8125 z m 9.21094,0 h -7.66406 v -11.63281 h 7.66406 v 1.375 h -6.11719 v 3.1875 h 6.11719 v 1.375 h -6.11719 v 4.32031 h 6.11719 z m 15.64844,0 h -7.875 v -1.63281 q 0.82031,-0.70312 1.64062,-1.40625 0.82813,-0.70312 1.53907,-1.39844 1.5,-1.45312 2.05468,-2.30468 0.55469,-0.85938 0.55469,-1.85157 0,-0.90625 -0.60156,-1.41406 -0.59375,-0.51562 -1.66406,-0.51562 -0.71094,0 -1.53907,0.25 -0.82812,0.25 -1.61718,0.76562 h -0.0781 v -1.64062 q 0.55469,-0.27344 1.47656,-0.5 0.92969,-0.22657 1.79688,-0.22657 1.78906,0 2.80469,0.86719 1.01562,0.85938 1.01562,2.33594 0,0.66406 -0.17187,1.24219 -0.16407,0.57031 -0.49219,1.08593 -0.30469,0.48438 -0.71875,0.95313 -0.40625,0.46875 -0.99219,1.03906 -0.83594,0.82031 -1.72656,1.59375 -0.89063,0.76563 -1.66406,1.42188 h 6.25781 z"
|
||||
id="text5-6-8-7-1-4"
|
||||
aria-label="SAMPLE 2" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 385.25781,291.67969 q 0,0.67968 -0.32031,1.34375 -0.3125,0.66406 -0.88281,1.125 -0.625,0.5 -1.46094,0.78125 -0.82813,0.28125 -2,0.28125 -1.25781,0 -2.26563,-0.23438 -1,-0.23437 -2.03906,-0.69531 v -1.9375 h 0.10938 q 0.88281,0.73437 2.03906,1.13281 1.15625,0.39844 2.17187,0.39844 1.4375,0 2.23438,-0.53906 0.80469,-0.53907 0.80469,-1.4375 0,-0.77344 -0.38282,-1.14063 -0.375,-0.36719 -1.14843,-0.57031 -0.58594,-0.15625 -1.27344,-0.25781 -0.67969,-0.10157 -1.44531,-0.25782 -1.54688,-0.32812 -2.29688,-1.11718 -0.74219,-0.79688 -0.74219,-2.07032 0,-1.46093 1.23438,-2.39062 1.23437,-0.9375 3.13281,-0.9375 1.22656,0 2.25,0.23437 1.02344,0.23438 1.8125,0.57813 v 1.82812 h -0.10937 q -0.66407,-0.5625 -1.75,-0.92968 -1.07813,-0.375 -2.21094,-0.375 -1.24219,0 -2,0.51562 -0.75,0.51563 -0.75,1.32813 0,0.72656 0.375,1.14062 0.375,0.41406 1.32031,0.63281 0.5,0.10938 1.42188,0.26563 0.92187,0.15625 1.5625,0.32031 1.29687,0.34375 1.95312,1.03906 0.65625,0.69532 0.65625,1.94532 z m 11.5,3.32031 h -1.64844 l -1.14062,-3.24219 H 388.9375 L 387.79687,295 h -1.57031 l 4.23438,-11.63281 h 2.0625 z m -3.26562,-4.57031 -2.03907,-5.71094 -2.04687,5.71094 z M 408.88281,295 h -1.54687 v -10.02344 l -3.23438,6.82031 h -0.92187 l -3.21094,-6.82031 V 295 h -1.44531 v -11.63281 h 2.10937 l 3.10156,6.47656 3,-6.47656 h 2.14844 z m 10.73438,-8.11719 q 0,0.77344 -0.27344,1.4375 -0.26563,0.65625 -0.75,1.14063 -0.60156,0.60156 -1.42188,0.90625 -0.82031,0.29687 -2.07031,0.29687 h -1.54687 V 295 h -1.54688 v -11.63281 h 3.15625 q 1.04688,0 1.77344,0.17968 0.72656,0.17188 1.28906,0.54688 0.66406,0.44531 1.02344,1.10937 0.36719,0.66407 0.36719,1.67969 z m -1.60938,0.0391 q 0,-0.60156 -0.21094,-1.04687 -0.21093,-0.44531 -0.64062,-0.72656 -0.375,-0.24219 -0.85938,-0.34375 -0.47656,-0.10938 -1.21093,-0.10938 h -1.53125 v 4.64844 h 1.30468 q 0.9375,0 1.52344,-0.16406 0.58594,-0.17188 0.95313,-0.53907 0.36718,-0.375 0.51562,-0.78906 0.15625,-0.41406 0.15625,-0.92969 z M 429.01562,295 h -7.35937 v -11.63281 h 1.54687 V 293.625 h 5.8125 z m 9.21094,0 h -7.66406 v -11.63281 h 7.66406 v 1.375 h -6.11719 v 3.1875 h 6.11719 v 1.375 h -6.11719 v 4.32031 h 6.11719 z m 14.625,-5.60156 q 0.375,0.33593 0.61719,0.84375 0.24219,0.50781 0.24219,1.3125 0,0.79687 -0.28907,1.46093 -0.28906,0.66407 -0.8125,1.15625 -0.58593,0.54688 -1.38281,0.8125 -0.78906,0.25782 -1.73437,0.25782 -0.96875,0 -1.90625,-0.23438 -0.9375,-0.22656 -1.53907,-0.5 V 292.875 h 0.11719 q 0.66406,0.4375 1.5625,0.72656 0.89844,0.28906 1.73438,0.28906 0.49218,0 1.04687,-0.16406 0.55469,-0.16406 0.89844,-0.48437 0.35937,-0.34375 0.53125,-0.75782 0.17969,-0.41406 0.17969,-1.04687 0,-0.625 -0.20313,-1.03125 -0.19531,-0.41406 -0.54687,-0.64844 -0.35157,-0.24219 -0.85157,-0.32812 -0.5,-0.0937 -1.07812,-0.0937 h -0.70313 v -1.29688 h 0.54688 q 1.1875,0 1.89062,-0.49219 0.71094,-0.5 0.71094,-1.45312 0,-0.42188 -0.17969,-0.73438 -0.17968,-0.32031 -0.5,-0.52343 -0.33593,-0.20313 -0.71875,-0.28125 -0.38281,-0.0781 -0.86718,-0.0781 -0.74219,0 -1.57813,0.26563 -0.83594,0.26562 -1.57812,0.75 h -0.0781 v -1.63282 q 0.55469,-0.27343 1.47656,-0.5 0.92969,-0.23437 1.79688,-0.23437 0.85156,0 1.5,0.15625 0.64844,0.15625 1.17187,0.5 0.5625,0.375 0.85157,0.90625 0.28906,0.53125 0.28906,1.24219 0,0.96875 -0.6875,1.69531 -0.67969,0.71875 -1.60938,0.90625 v 0.10937 q 0.375,0.0625 0.85938,0.26563 0.48437,0.19531 0.82031,0.49219 z"
|
||||
id="text5-6-8-7-8-0"
|
||||
aria-label="SAMPLE 3" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 495.04297,291.67969 q 0,0.67968 -0.32031,1.34375 -0.3125,0.66406 -0.88282,1.125 -0.625,0.5 -1.46093,0.78125 -0.82813,0.28125 -2,0.28125 -1.25782,0 -2.26563,-0.23438 -1,-0.23437 -2.03906,-0.69531 v -1.9375 h 0.10937 q 0.88282,0.73437 2.03907,1.13281 1.15625,0.39844 2.17187,0.39844 1.4375,0 2.23438,-0.53906 0.80468,-0.53907 0.80468,-1.4375 0,-0.77344 -0.38281,-1.14063 -0.375,-0.36719 -1.14844,-0.57031 -0.58593,-0.15625 -1.27343,-0.25781 -0.67969,-0.10157 -1.44532,-0.25782 -1.54687,-0.32812 -2.29687,-1.11718 -0.74219,-0.79688 -0.74219,-2.07032 0,-1.46093 1.23438,-2.39062 1.23437,-0.9375 3.13281,-0.9375 1.22656,0 2.25,0.23437 1.02344,0.23438 1.8125,0.57813 v 1.82812 h -0.10938 q -0.66406,-0.5625 -1.75,-0.92968 -1.07812,-0.375 -2.21093,-0.375 -1.24219,0 -2,0.51562 -0.75,0.51563 -0.75,1.32813 0,0.72656 0.375,1.14062 0.375,0.41406 1.32031,0.63281 0.5,0.10938 1.42187,0.26563 0.92188,0.15625 1.5625,0.32031 1.29688,0.34375 1.95313,1.03906 0.65625,0.69532 0.65625,1.94532 z m 11.5,3.32031 h -1.64844 l -1.14062,-3.24219 h -5.03125 L 497.58203,295 h -1.57031 l 4.23437,-11.63281 h 2.0625 z m -3.26563,-4.57031 -2.03906,-5.71094 -2.04687,5.71094 z M 518.66797,295 h -1.54688 v -10.02344 l -3.23437,6.82031 h -0.92188 l -3.21093,-6.82031 V 295 h -1.44532 v -11.63281 h 2.10938 l 3.10156,6.47656 3,-6.47656 h 2.14844 z m 10.73437,-8.11719 q 0,0.77344 -0.27343,1.4375 -0.26563,0.65625 -0.75,1.14063 -0.60157,0.60156 -1.42188,0.90625 -0.82031,0.29687 -2.07031,0.29687 h -1.54688 V 295 h -1.54687 v -11.63281 h 3.15625 q 1.04687,0 1.77344,0.17968 0.72656,0.17188 1.28906,0.54688 0.66406,0.44531 1.02344,1.10937 0.36718,0.66407 0.36718,1.67969 z m -1.60937,0.0391 q 0,-0.60156 -0.21094,-1.04687 -0.21094,-0.44531 -0.64062,-0.72656 -0.375,-0.24219 -0.85938,-0.34375 -0.47656,-0.10938 -1.21094,-0.10938 h -1.53125 v 4.64844 h 1.30469 q 0.9375,0 1.52344,-0.16406 0.58594,-0.17188 0.95312,-0.53907 0.36719,-0.375 0.51563,-0.78906 0.15625,-0.41406 0.15625,-0.92969 z M 538.80078,295 h -7.35937 v -11.63281 h 1.54687 V 293.625 h 5.8125 z m 9.21094,0 h -7.66406 v -11.63281 h 7.66406 v 1.375 h -6.11719 v 3.1875 h 6.11719 v 1.375 h -6.11719 v 4.32031 h 6.11719 z m 15.91406,-3.27344 h -1.72656 V 295 h -1.5 v -3.27344 h -5.57031 v -1.79687 l 5.63281,-6.5625 h 1.4375 v 7.10937 h 1.72656 z m -3.22656,-1.25 v -5.25 l -4.50781,5.25 z"
|
||||
id="text5-6-8-7-10-0"
|
||||
aria-label="SAMPLE 4" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 605.22266,291.66406 q 0,0.67969 -0.32032,1.34375 -0.3125,0.66406 -0.88281,1.125 -0.625,0.5 -1.46094,0.78125 -0.82812,0.28125 -2,0.28125 -1.25781,0 -2.26562,-0.23437 -1,-0.23438 -2.03906,-0.69532 v -1.9375 h 0.10937 q 0.88281,0.73438 2.03906,1.13282 1.15625,0.39843 2.17188,0.39843 1.4375,0 2.23437,-0.53906 0.80469,-0.53906 0.80469,-1.4375 0,-0.77344 -0.38281,-1.14062 -0.375,-0.36719 -1.14844,-0.57032 -0.58594,-0.15625 -1.27344,-0.25781 -0.67968,-0.10156 -1.44531,-0.25781 -1.54687,-0.32813 -2.29687,-1.11719 -0.74219,-0.79687 -0.74219,-2.07031 0,-1.46094 1.23437,-2.39063 1.23438,-0.9375 3.13282,-0.9375 1.22656,0 2.25,0.23438 1.02343,0.23437 1.8125,0.57812 v 1.82813 h -0.10938 q -0.66406,-0.5625 -1.75,-0.92969 -1.07812,-0.375 -2.21094,-0.375 -1.24218,0 -2,0.51563 -0.75,0.51562 -0.75,1.32812 0,0.72656 0.375,1.14063 0.375,0.41406 1.32032,0.63281 0.5,0.10937 1.42187,0.26562 0.92188,0.15625 1.5625,0.32032 1.29688,0.34375 1.95313,1.03906 0.65625,0.69531 0.65625,1.94531 z m 11.5,3.32031 h -1.64844 l -1.14063,-3.24218 h -5.03125 l -1.14062,3.24218 h -1.57031 l 4.23437,-11.63281 h 2.0625 z m -3.26563,-4.57031 -2.03906,-5.71094 -2.04688,5.71094 z m 15.39063,4.57031 h -1.54688 v -10.02343 l -3.23437,6.82031 h -0.92188 l -3.21094,-6.82031 v 10.02343 h -1.44531 v -11.63281 h 2.10938 l 3.10156,6.47656 3,-6.47656 h 2.14844 z m 10.73437,-8.11718 q 0,0.77343 -0.27344,1.4375 -0.26562,0.65625 -0.75,1.14062 -0.60156,0.60156 -1.42187,0.90625 -0.82031,0.29688 -2.07031,0.29688 h -1.54688 v 4.33593 h -1.54687 v -11.63281 h 3.15625 q 1.04687,0 1.77343,0.17969 0.72657,0.17187 1.28907,0.54687 0.66406,0.44532 1.02343,1.10938 0.36719,0.66406 0.36719,1.67969 z m -1.60937,0.0391 q 0,-0.60156 -0.21094,-1.04688 -0.21094,-0.44531 -0.64063,-0.72656 -0.375,-0.24219 -0.85937,-0.34375 -0.47656,-0.10937 -1.21094,-0.10937 h -1.53125 v 4.64843 h 1.30469 q 0.9375,0 1.52344,-0.16406 0.58593,-0.17187 0.95312,-0.53906 0.36719,-0.375 0.51563,-0.78906 0.15625,-0.41407 0.15625,-0.92969 z m 11.00781,8.07812 h -7.35938 v -11.63281 h 1.54688 v 10.25781 h 5.8125 z m 9.21094,0 h -7.66407 v -11.63281 h 7.66407 v 1.375 h -6.11719 v 3.1875 h 6.11719 v 1.375 h -6.11719 v 4.32031 h 6.11719 z m 15.55468,-3.69531 q 0,0.8125 -0.29687,1.55469 -0.29688,0.74219 -0.8125,1.25 -0.5625,0.54687 -1.34375,0.84375 -0.77344,0.28906 -1.79688,0.28906 -0.95312,0 -1.83593,-0.20312 -0.88282,-0.19532 -1.49219,-0.47657 v -1.64843 h 0.10937 q 0.64063,0.40625 1.5,0.69531 0.85938,0.28125 1.6875,0.28125 0.55469,0 1.07032,-0.15625 0.52343,-0.15625 0.92968,-0.54688 0.34375,-0.33593 0.51563,-0.80468 0.17969,-0.46875 0.17969,-1.08594 0,-0.60156 -0.21094,-1.01563 -0.20313,-0.41406 -0.57031,-0.66406 -0.40625,-0.29687 -0.99219,-0.41406 -0.57813,-0.125 -1.29688,-0.125 -0.6875,0 -1.32812,0.0937 -0.63281,0.0937 -1.09375,0.1875 v -5.99219 h 7 v 1.36719 h -5.49219 v 3.09375 q 0.33594,-0.0312 0.6875,-0.0469 0.35156,-0.0156 0.60938,-0.0156 0.94531,0 1.65625,0.16406 0.71093,0.15625 1.30468,0.5625 0.625,0.42969 0.96875,1.10938 0.34375,0.67968 0.34375,1.70312 z"
|
||||
id="text5-6-8-7-9-5"
|
||||
aria-label="SAMPLE 5" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 715.08984,291.66797 q 0,0.67969 -0.32031,1.34375 -0.3125,0.66406 -0.88281,1.125 -0.625,0.5 -1.46094,0.78125 -0.82812,0.28125 -2,0.28125 -1.25781,0 -2.26562,-0.23438 -1,-0.23437 -2.03907,-0.69531 v -1.9375 h 0.10938 q 0.88281,0.73438 2.03906,1.13281 1.15625,0.39844 2.17188,0.39844 1.4375,0 2.23437,-0.53906 0.80469,-0.53906 0.80469,-1.4375 0,-0.77344 -0.38281,-1.14063 -0.375,-0.36718 -1.14844,-0.57031 -0.58594,-0.15625 -1.27344,-0.25781 -0.67969,-0.10156 -1.44531,-0.25781 -1.54688,-0.32813 -2.29688,-1.11719 -0.74218,-0.79688 -0.74218,-2.07031 0,-1.46094 1.23437,-2.39063 1.23438,-0.9375 3.13281,-0.9375 1.22657,0 2.25,0.23438 1.02344,0.23437 1.8125,0.57812 v 1.82813 h -0.10937 q -0.66406,-0.5625 -1.75,-0.92969 -1.07813,-0.375 -2.21094,-0.375 -1.24219,0 -2,0.51562 -0.75,0.51563 -0.75,1.32813 0,0.72656 0.375,1.14062 0.375,0.41407 1.32031,0.63282 0.5,0.10937 1.42188,0.26562 0.92187,0.15625 1.5625,0.32031 1.29687,0.34375 1.95312,1.03907 0.65625,0.69531 0.65625,1.94531 z m 11.5,3.32031 h -1.64843 l -1.14063,-3.24219 h -5.03125 l -1.14062,3.24219 h -1.57032 l 4.23438,-11.63281 h 2.0625 z m -3.26562,-4.57031 -2.03906,-5.71094 -2.04688,5.71094 z m 15.39062,4.57031 h -1.54687 v -10.02344 l -3.23438,6.82032 h -0.92187 l -3.21094,-6.82032 v 10.02344 h -1.44531 v -11.63281 h 2.10937 l 3.10157,6.47656 3,-6.47656 h 2.14843 z m 10.73438,-8.11719 q 0,0.77344 -0.27344,1.4375 -0.26562,0.65625 -0.75,1.14063 -0.60156,0.60156 -1.42187,0.90625 -0.82032,0.29687 -2.07032,0.29687 h -1.54687 v 4.33594 h -1.54688 v -11.63281 h 3.15625 q 1.04688,0 1.77344,0.17969 0.72656,0.17187 1.28906,0.54687 0.66407,0.44531 1.02344,1.10938 0.36719,0.66406 0.36719,1.67968 z m -1.60938,0.0391 q 0,-0.60157 -0.21093,-1.04688 -0.21094,-0.44531 -0.64063,-0.72656 -0.375,-0.24219 -0.85937,-0.34375 -0.47657,-0.10938 -1.21094,-0.10938 h -1.53125 v 4.64844 h 1.30469 q 0.9375,0 1.52343,-0.16406 0.58594,-0.17188 0.95313,-0.53906 0.36719,-0.375 0.51562,-0.78907 0.15625,-0.41406 0.15625,-0.92968 z m 11.00782,8.07812 h -7.35938 v -11.63281 h 1.54688 v 10.25781 h 5.8125 z m 9.21093,0 h -7.66406 v -11.63281 h 7.66406 v 1.375 h -6.11718 v 3.1875 h 6.11718 v 1.375 h -6.11718 v 4.32031 h 6.11718 z m 15.82032,-3.77344 q 0,1.77344 -1.17188,2.89844 -1.16406,1.11719 -2.85937,1.11719 -0.85938,0 -1.5625,-0.26563 -0.70313,-0.26562 -1.24219,-0.78906 -0.67188,-0.64844 -1.03906,-1.71875 -0.35938,-1.07031 -0.35938,-2.57812 0,-1.54688 0.32813,-2.74219 0.33593,-1.19531 1.0625,-2.125 0.6875,-0.88281 1.77343,-1.375 1.08594,-0.5 2.53125,-0.5 0.46094,0 0.77344,0.0391 0.3125,0.0391 0.63281,0.14063 v 1.49218 h -0.0781 q -0.21875,-0.11718 -0.66406,-0.21875 -0.4375,-0.10937 -0.89844,-0.10937 -1.67969,0 -2.67969,1.05469 -1,1.04687 -1.16406,2.83593 0.65625,-0.39843 1.28906,-0.60156 0.64063,-0.21094 1.47656,-0.21094 0.74219,0 1.30469,0.14063 0.57031,0.13281 1.16406,0.54687 0.6875,0.47657 1.03125,1.20313 0.35157,0.72656 0.35157,1.76562 z m -1.58594,0.0625 q 0,-0.72656 -0.21875,-1.20312 -0.21094,-0.47656 -0.70313,-0.82813 -0.35937,-0.25 -0.79687,-0.32812 -0.4375,-0.0781 -0.91406,-0.0781 -0.66407,0 -1.23438,0.15625 -0.57031,0.15625 -1.17187,0.48438 -0.0156,0.17187 -0.0234,0.33594 -0.008,0.15625 -0.008,0.39843 0,1.23438 0.25,1.95313 0.25781,0.71094 0.70312,1.125 0.35938,0.34375 0.77344,0.50781 0.42187,0.15625 0.91406,0.15625 1.13281,0 1.78125,-0.6875 0.64844,-0.69531 0.64844,-1.99219 z"
|
||||
id="text5-6-8-7-3-3"
|
||||
aria-label="SAMPLE 6" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 168.95747,40.641556 h -4.59375 v -1.1875 h 1.52344 v -9.257813 h -1.52344 v -1.1875 h 4.59375 v 1.1875 h -1.52343 v 9.257813 h 1.52343 z m 10.1875,-5.820313 q 0,3.132813 -0.98437,4.601563 -0.97656,1.460937 -3.03906,1.460937 -2.09375,0 -3.0625,-1.484375 -0.96094,-1.484375 -0.96094,-4.5625 0,-3.101562 0.97656,-4.578125 0.97656,-1.484375 3.04688,-1.484375 2.09375,0 3.05468,1.507813 0.96875,1.5 0.96875,4.539062 z m -2.05468,3.546875 q 0.27343,-0.632812 0.36718,-1.484375 0.10157,-0.859375 0.10157,-2.0625 0,-1.1875 -0.10157,-2.0625 -0.0937,-0.875 -0.375,-1.484375 -0.27343,-0.601562 -0.75,-0.90625 -0.46875,-0.304687 -1.21093,-0.304687 -0.73438,0 -1.21875,0.304687 -0.47657,0.304688 -0.75782,0.921875 -0.26562,0.578125 -0.36718,1.507813 -0.0937,0.929687 -0.0937,2.039062 0,1.21875 0.0859,2.039063 0.0859,0.820312 0.36719,1.46875 0.25781,0.609375 0.72656,0.929687 0.47657,0.320313 1.25782,0.320313 0.73437,0 1.21875,-0.304688 0.48437,-0.304687 0.75,-0.921875 z"
|
||||
id="text5-6-8-7-30-70"
|
||||
aria-label="I0" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 282.38715,42.082962 q -0.46875,0.117188 -0.92969,0.164063 -0.45313,0.05469 -0.92969,0.05469 -1.35937,0 -2.1875,-0.75 -0.82031,-0.742187 -0.89062,-2.132812 -0.1875,0.03125 -0.36719,0.03906 -0.17188,0.01563 -0.33594,0.01563 -1.22656,0 -2.23437,-0.40625 -1,-0.40625 -1.70313,-1.179687 -0.70312,-0.773438 -1.08594,-1.898438 -0.375,-1.125 -0.375,-2.570312 0,-1.421875 0.375,-2.546875 0.375,-1.132813 1.09375,-1.9375 0.6875,-0.765625 1.70313,-1.171875 1.02344,-0.40625 2.22656,-0.40625 1.25,0 2.24219,0.414062 1,0.40625 1.69531,1.164063 0.71094,0.78125 1.08594,1.914062 0.38281,1.132813 0.38281,2.570313 0,2.132812 -0.875,3.59375 -0.86719,1.460937 -2.33594,2.046875 0.0312,0.890625 0.42188,1.382812 0.39062,0.492188 1.42187,0.492188 0.32032,0 0.75782,-0.101563 0.44531,-0.09375 0.63281,-0.171875 h 0.21094 z M 280.5434,33.4189 q 0,-2.265625 -1.01563,-3.492188 -1.01562,-1.234375 -2.77344,-1.234375 -1.77343,0 -2.78906,1.234375 -1.00781,1.226563 -1.00781,3.492188 0,2.289062 1.03125,3.507812 1.03125,1.210938 2.76562,1.210938 1.73438,0 2.75782,-1.210938 1.03125,-1.21875 1.03125,-3.507812 z m 11.61718,-0.0078 q 0,3.132813 -0.98437,4.601563 -0.97656,1.460937 -3.03906,1.460937 -2.09375,0 -3.0625,-1.484375 -0.96094,-1.484375 -0.96094,-4.5625 0,-3.101562 0.97656,-4.578125 0.97656,-1.484375 3.04688,-1.484375 2.09375,0 3.05468,1.507813 0.96875,1.5 0.96875,4.539062 z m -2.05468,3.546875 q 0.27343,-0.632812 0.36718,-1.484375 0.10157,-0.859375 0.10157,-2.0625 0,-1.1875 -0.10157,-2.0625 -0.0937,-0.875 -0.375,-1.484375 -0.27343,-0.601562 -0.75,-0.90625 -0.46875,-0.304687 -1.21093,-0.304687 -0.73438,0 -1.21875,0.304687 -0.47657,0.304688 -0.75782,0.921875 -0.26562,0.578125 -0.36718,1.507813 -0.0937,0.929687 -0.0937,2.039062 0,1.21875 0.0859,2.039063 0.0859,0.820312 0.36719,1.46875 0.25781,0.609375 0.72656,0.929687 0.47657,0.320313 1.25782,0.320313 0.73437,0 1.21875,-0.304688 0.48437,-0.304687 0.75,-0.921875 z"
|
||||
id="text5-6-8-7-30-7-3"
|
||||
aria-label="Q0" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 389.28168,40.664993 h -4.59375 v -1.1875 h 1.52343 v -9.257812 h -1.52343 v -1.1875 h 4.59375 v 1.1875 h -1.52344 v 9.257812 h 1.52344 z m 9.53906,0 h -6.29688 v -1.1875 h 2.42188 v -7.796875 h -2.42188 v -1.0625 q 0.49219,0 1.05469,-0.07813 0.5625,-0.08594 0.85156,-0.242187 0.35938,-0.195313 0.5625,-0.492188 0.21094,-0.304687 0.24219,-0.8125 h 1.21094 v 10.484375 h 2.375 z"
|
||||
id="text5-6-8-7-30-1-1"
|
||||
aria-label="I1" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 502.71136,42.082962 q -0.46875,0.117188 -0.92968,0.164063 -0.45313,0.05469 -0.92969,0.05469 -1.35938,0 -2.1875,-0.75 -0.82031,-0.742187 -0.89063,-2.132812 -0.1875,0.03125 -0.36718,0.03906 -0.17188,0.01563 -0.33594,0.01563 -1.22656,0 -2.23438,-0.40625 -1,-0.40625 -1.70312,-1.179687 -0.70313,-0.773438 -1.08594,-1.898438 -0.375,-1.125 -0.375,-2.570312 0,-1.421875 0.375,-2.546875 0.375,-1.132813 1.09375,-1.9375 0.6875,-0.765625 1.70313,-1.171875 1.02343,-0.40625 2.22656,-0.40625 1.25,0 2.24219,0.414062 1,0.40625 1.69531,1.164063 0.71094,0.78125 1.08594,1.914062 0.38281,1.132813 0.38281,2.570313 0,2.132812 -0.875,3.59375 -0.86719,1.460937 -2.33594,2.046875 0.0312,0.890625 0.42188,1.382812 0.39062,0.492188 1.42187,0.492188 0.32031,0 0.75781,-0.101563 0.44532,-0.09375 0.63282,-0.171875 h 0.21093 z M 500.86761,33.4189 q 0,-2.265625 -1.01562,-3.492188 -1.01563,-1.234375 -2.77344,-1.234375 -1.77344,0 -2.78906,1.234375 -1.00781,1.226563 -1.00781,3.492188 0,2.289062 1.03125,3.507812 1.03125,1.210938 2.76562,1.210938 1.73438,0 2.75781,-1.210938 1.03125,-1.21875 1.03125,-3.507812 z m 10.96875,5.8125 h -6.29687 v -1.1875 h 2.42187 v -7.796875 h -2.42187 v -1.0625 q 0.49219,0 1.05469,-0.07813 0.5625,-0.08594 0.85156,-0.242188 0.35937,-0.195312 0.5625,-0.492187 0.21094,-0.304688 0.24219,-0.8125 h 1.21093 V 38.0439 h 2.375 z"
|
||||
id="text5-6-8-7-30-7-9-2"
|
||||
aria-label="Q1" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 608.94965,40.766556 h -4.59375 v -1.1875 h 1.52343 v -9.257813 h -1.52343 v -1.1875 h 4.59375 v 1.1875 h -1.52344 v 9.257813 h 1.52344 z m 10.20312,0 h -7.875 v -1.632813 q 0.82031,-0.703125 1.64063,-1.40625 0.82812,-0.703125 1.53906,-1.398437 1.5,-1.453125 2.05469,-2.304688 0.55468,-0.859375 0.55468,-1.851562 0,-0.90625 -0.60156,-1.414063 -0.59375,-0.515625 -1.66406,-0.515625 -0.71094,0 -1.53906,0.25 -0.82813,0.25 -1.61719,0.765625 h -0.0781 v -1.640625 q 0.55469,-0.273437 1.47657,-0.5 0.92968,-0.226562 1.79687,-0.226562 1.78906,0 2.80469,0.867187 1.01562,0.859375 1.01562,2.335938 0,0.664062 -0.17187,1.242187 -0.16406,0.570313 -0.49219,1.085938 -0.30469,0.484375 -0.71875,0.953125 -0.40625,0.46875 -0.99219,1.039062 -0.83593,0.820313 -1.72656,1.59375 -0.89062,0.765625 -1.66406,1.421875 h 6.25781 z"
|
||||
id="text5-6-8-7-30-5-0"
|
||||
aria-label="I2" /><path
|
||||
style="font-size:16px;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;fill:#1a1a1a"
|
||||
d="m 723.48077,42.082962 q -0.46875,0.117188 -0.92968,0.164063 -0.45313,0.05469 -0.92969,0.05469 -1.35938,0 -2.1875,-0.75 -0.82031,-0.742187 -0.89063,-2.132812 -0.1875,0.03125 -0.36718,0.03906 -0.17188,0.01563 -0.33594,0.01563 -1.22656,0 -2.23438,-0.40625 -1,-0.40625 -1.70312,-1.179687 -0.70313,-0.773438 -1.08594,-1.898438 -0.375,-1.125 -0.375,-2.570312 0,-1.421875 0.375,-2.546875 0.375,-1.132813 1.09375,-1.9375 0.6875,-0.765625 1.70313,-1.171875 1.02343,-0.40625 2.22656,-0.40625 1.25,0 2.24219,0.414062 1,0.40625 1.69531,1.164063 0.71094,0.78125 1.08594,1.914062 0.38281,1.132813 0.38281,2.570313 0,2.132812 -0.875,3.59375 -0.86719,1.460937 -2.33594,2.046875 0.0312,0.890625 0.42188,1.382812 0.39062,0.492188 1.42187,0.492188 0.32031,0 0.75781,-0.101563 0.44532,-0.09375 0.63282,-0.171875 h 0.21093 z M 721.63702,33.4189 q 0,-2.265625 -1.01562,-3.492188 -1.01563,-1.234375 -2.77344,-1.234375 -1.77344,0 -2.78906,1.234375 -1.00781,1.226563 -1.00781,3.492188 0,2.289062 1.03125,3.507812 1.03125,1.210938 2.76562,1.210938 1.73438,0 2.75781,-1.210938 1.03125,-1.21875 1.03125,-3.507812 z m 11.63282,5.8125 h -7.875 v -1.632813 q 0.82031,-0.703125 1.64062,-1.40625 0.82813,-0.703125 1.53906,-1.398437 1.5,-1.453125 2.05469,-2.304688 0.55469,-0.859375 0.55469,-1.851562 0,-0.90625 -0.60156,-1.414063 -0.59375,-0.515625 -1.66407,-0.515625 -0.71093,0 -1.53906,0.25 -0.82812,0.25 -1.61719,0.765625 h -0.0781 v -1.640625 q 0.55469,-0.273437 1.47656,-0.5 0.92969,-0.226562 1.79688,-0.226562 1.78906,0 2.80468,0.867187 1.01563,0.859375 1.01563,2.335938 0,0.664062 -0.17188,1.242187 -0.16406,0.570313 -0.49218,1.085938 -0.30469,0.484375 -0.71875,0.953125 -0.40625,0.46875 -0.99219,1.039062 -0.83594,0.820313 -1.72656,1.59375 -0.89063,0.765625 -1.66407,1.421875 h 6.25782 z"
|
||||
id="text5-6-8-7-30-7-5-9"
|
||||
aria-label="Q2" /></g></svg>
|
After Width: | Height: | Size: 56 KiB |
Loading…
Reference in New Issue