Bonus Task I

Added Bonus Task I to repository
This commit is contained in:
JirR02 2025-03-20 11:01:37 +01:00
parent 03cc5aca86
commit d1c3fcd614
11 changed files with 2228 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Project overview
The goal of this project is to implement a game called _Dots And Boxes_: two players, **A** and **B**, take turns to draw lines connecting dots on a $m \times n$ (here $2 \times 2$) board.
If a player manages to close a box (a $1 \times 1$ square surrounded by lines), the player claims the box by placing its token (**A/B**) in the box, and the player gets another turn. The game is finished when all boxes have been claimed, and the player with the most claimed boxes wins. Note that, even if a player claims multiple boxes in a single move, they would only get one extra move.
For example, in the following game player **A** won:
![](./pictures/dots_and_boxes.svg)
## Your task
The file `game.cpp` contains a partial implementation of the game. The main game loop is implemented in the function `play_game(grid)`. This function is called from `main.cpp` and gets the game grid as an argument. The game grid is already fully implemented. We describe the functionality it provides in a following section below.
Your task is extending the game implementation in file `game.cpp` such that it works the way described above. We provide some functions in this file and thus suggest a certain structure -- but you are completely free to do it your way. Add, remove or change anything you want. The only constraint is that you must implement the function play_game which takes the game grid as argument. You are of course free to change the body of this function in whatever way you like.
If you do decide to change the body of the play_game function be careful to not accidentally change the format of the outputs it generates. For example: If you change the output `std::cout << "Game finished" << std::endl;` to `std::cout << "Game Finished" << std::endl;` you will not pass some test cases. The autograder is very picky when checking whether or not your outputs are correct. You can get all the points in this exercise without changing any of the output lines in the template.
_Note_: More Information on the the concept of the game on Code Expert.

View File

@ -0,0 +1,242 @@
#include "game.h"
#include <assert.h>
#include <iostream>
// Checks whether or not the game is finished.
// A game is considered finished when all lines have been drawn.
bool game_is_finished(const Grid &grid) {
for (unsigned int j = 0; j < grid.num_rows(); ++j) {
for (unsigned int i = 0; i < grid.num_cols(); ++i) {
if (grid.field(i, j) == ' ')
return false;
}
}
return true;
}
// Draw a line in the grid starting at point (row, col) going towards the given
// direction
void draw_line(Grid &grid, unsigned int row, unsigned int col, char direction) {
switch (direction) {
case 'r':
grid.horizontal(row, col) = true;
break;
case 'l':
grid.horizontal(row, col - 1) = true;
break;
case 'd':
grid.vertical(row, col) = true;
break;
case 'u':
grid.vertical(row - 1, col) = true;
break;
default:
// We should never reach this point.
std::cout << "Invalid line direction.";
assert(false);
}
}
// Checks whether or not a box (or field) is newly completed.
// A box is newly completed if all four sides are drawn but the box is not
// claimed yet.
bool is_newly_completed_box(const Grid &grid, unsigned int row,
unsigned int col) {
bool state;
if (grid.vertical(row, col) == true && grid.horizontal(row, col) == true &&
grid.vertical(row, col + 1) && grid.horizontal(row + 1, col) == true)
state = true;
else
state = false;
return state;
}
// Play the players move.
// This function returns true if the player completed a box with their move.
// Otherwise it returns false.
bool play_move(Grid &grid, char player, unsigned int row, unsigned int col,
char direction) {
// Note: we assume the move is valid
// draw the new line
draw_line(grid, row, col, direction);
// check if the current players move completed a new box
bool completed_new_box = false;
switch (direction) {
case 'r':
// we drew a horizontal line
// check if box above the horizontal line is newly completed
// Note: box above only exists if the line is not at the top edge of
// the grid!
if (row > 0 && is_newly_completed_box(grid, row - 1, col)) {
completed_new_box = true;
grid.field(row - 1, col) = player;
}
if (row >= 0 && row < grid.num_rows() &&
is_newly_completed_box(grid, row, col)) {
completed_new_box = true;
grid.field(row, col) = player;
}
break;
case 'l':
if (row > 0 && is_newly_completed_box(grid, row - 1, col - 1)) {
completed_new_box = true;
grid.field(row - 1, col - 1) = player;
}
if (row >= 0 && row < grid.num_rows() &&
is_newly_completed_box(grid, row, col - 1)) {
completed_new_box = true;
grid.field(row, col - 1) = player;
}
break;
case 'u':
if (col > 0 && is_newly_completed_box(grid, row - 1, col - 1)) {
completed_new_box = true;
grid.field(row - 1, col - 1) = player;
}
if (col >= 0 && col < grid.num_cols() &&
is_newly_completed_box(grid, row - 1, col)) {
completed_new_box = true;
grid.field(row - 1, col) = player;
}
break;
case 'd':
if (col > 0 && is_newly_completed_box(grid, row, col - 1)) {
completed_new_box = true;
grid.field(row, col - 1) = player;
}
if (col >= 0 && col < grid.num_cols() &&
is_newly_completed_box(grid, row, col)) {
completed_new_box = true;
grid.field(row, col) = player;
}
break;
}
return completed_new_box;
}
// Computes a players score.
// A Players score is the number of fields claimed by the player.
unsigned int compute_player_score(const Grid &grid, char player) {
int score = 0;
for (unsigned int j = 0; j < grid.num_rows(); j++) {
for (unsigned int i = 0; i < grid.num_rows(); i++) {
if (grid.field(i, j) == player)
++score;
}
}
return score;
}
// Checks if the move is within the bounds of the grid,
// and the line is not already drawn
bool is_valid_move(const Grid &grid, unsigned int row, unsigned int col,
char direction) {
bool state = false;
switch (direction) {
case 'l':
if (col > 0 && row <= grid.num_rows() &&
grid.horizontal(row, col - 1) == false)
state = true;
break;
case 'r':
if (col < grid.num_cols() && row <= grid.num_rows() &&
grid.horizontal(row, col) == false)
state = true;
break;
case 'u':
if (row > 0 && col <= grid.num_cols() &&
grid.vertical(row - 1, col) == false)
state = true;
break;
case 'd':
if (row < grid.num_rows() && col <= grid.num_cols() &&
grid.vertical(row, col) == false)
state = true;
break;
default:
state = false;
break;
}
return state;
}
// Main game loop
void play_game(Grid &grid) {
// initialize player and step
char current_player = 'A';
unsigned int current_move = 1;
// print initial grid
grid.print_grid();
// initialize user input
unsigned int row, col;
char direction;
// loop while game is not finished
while (!game_is_finished(grid)) {
std::cout << "Move # " << current_move << std::endl;
// get a valid move
std::cout << "Player " << current_player << "'s move: " << std::endl;
std::cin >> row >> col >> direction;
while (!is_valid_move(grid, row, col, direction)) {
std::cout << "Invalid move!" << std::endl;
std::cin >> row >> col >> direction;
}
// play the move
bool move_completed_box =
play_move(grid, current_player, row, col, direction);
current_move += 1;
// print grid
grid.print_grid();
// change current player
switch (current_player) {
case 'A':
if (move_completed_box == true)
current_player = 'A';
else
current_player = 'B';
break;
case 'B':
if (move_completed_box == true)
current_player = 'B';
else
current_player = 'A';
break;
default:
// We should never reach this point.
std::cout << "Unknown Player";
assert(false);
}
}
// Game loop exited. The game must be finished
std::cout << "Game finished" << std::endl;
// Compute and display player scores
unsigned int score_a = compute_player_score(grid, 'A');
unsigned int score_b = compute_player_score(grid, 'B');
std::cout << "Player A: " << score_a << std::endl;
std::cout << "Player B: " << score_b << std::endl;
if (score_a == score_b) {
std::cout << "It's a draw!" << std::endl;
} else {
char winner;
if (score_a > score_b)
winner = 'A';
else
winner = 'B';
std::cout << "Player " << winner << " wins!" << std::endl;
}
}

View File

@ -0,0 +1,816 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape by Victor GASIA -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="392"
height="412"
id="Dots-and-boxes">
<title id = "titre">Dot and boxes</title>
<desc id = "description">Réalisé par Victor GASIA 2011</desc>
<defs id = "defs" />
<metadata id="metadata">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="391.9996"
height="412.00159"
x="0"
y="-0.0015748031"
id="fond"
style="color:#808080;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.48031497;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
id="cadres">
<rect
width="99.212601"
height="99.212601"
x="10.418883"
y="33.218758"
id="rect2987"
style="color:#808080;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="99.212601"
height="99.212601"
x="145.53299"
y="33.218758"
id="rect2987-0"
style="color:#808080;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="99.212601"
height="99.212601"
x="280.64706"
y="33.218758"
id="rect2987-1"
style="color:#808080;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="99.212601"
height="99.212601"
x="10.418883"
y="168.63084"
id="rect2987-3"
style="color:#808080;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="99.212601"
height="99.212601"
x="145.53299"
y="168.63086"
id="rect2987-7"
style="color:#808080;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="99.212601"
height="99.212601"
x="280.64706"
y="168.63086"
id="rect2987-2"
style="color:#808080;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="99.212601"
height="99.212601"
x="10.418883"
y="304.04294"
id="rect2987-34"
style="color:#808080;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="99.212601"
height="99.212601"
x="145.53299"
y="304.04294"
id="rect2987-18"
style="color:#808080;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="99.212601"
height="99.212601"
x="280.64706"
y="304.04294"
id="rect2987-33"
style="color:#808080;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
<g
id="numeros">
<text
x="96.16217"
y="28.126829"
id="text3492"
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans"><tspan
x="96.16217"
y="28.126829"
id="tspan3494">1</tspan></text>
<text
x="231.22012"
y="28.126829"
id="text3492-0"
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans"><tspan
x="231.22012"
y="28.126829"
id="tspan3494-0">2</tspan></text>
<text
x="366.55933"
y="28.012571"
id="text3492-4"
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans"><tspan
x="366.55933"
y="28.012571"
id="tspan3494-5">3</tspan></text>
<text
x="95.810608"
y="163.32193"
id="text3492-42"
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans"><tspan
x="95.810608"
y="163.32193"
id="tspan3494-4">4</tspan></text>
<text
x="230.996"
y="163.12418"
id="text3492-9"
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans"><tspan
x="230.996"
y="163.12418"
id="tspan3494-9">5</tspan></text>
<text
x="366.60327"
y="163.23843"
id="text3492-94"
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans"><tspan
x="366.60327"
y="163.23843"
id="tspan3494-98">6</tspan></text>
<text
x="95.472229"
y="298.4599"
id="text3492-1"
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans"><tspan
x="95.472229"
y="298.4599"
id="tspan3494-6">7</tspan></text>
<text
x="230.9982"
y="298.4599"
id="text3492-3"
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans"><tspan
x="230.9982"
y="298.4599"
id="tspan3494-93">8</tspan></text>
<text
x="366.55054"
y="298.4599"
id="text3492-34"
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans"><tspan
x="366.55054"
y="298.4599"
id="tspan3494-61">9</tspan></text>
</g>
<g
id="traitsprincipaux">
<path
d="m 23.564045,47.010146 36.448564,0"
id="path3724"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 195.15186,118.63997 36.44856,0"
id="path3724-0"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 330.26595,47.010146 36.44856,0"
id="path3724-2"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 23.564045,353.64926 36.448564,0"
id="path3724-5"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 23.564045,254.05206 36.448564,0"
id="path3724-7"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 195.15185,353.64926 36.44857,0"
id="path3724-6"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 158.66558,182.10544 0,36.44856"
id="path3724-8"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 366.72707,217.92034 0,36.44856"
id="path3724-8-5"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 366.72707,317.51751 0,36.44856"
id="path3724-8-1"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 330.25335,353.33241 0,36.44856"
id="path3724-8-8"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 293.77965,353.33241 0,36.44856"
id="path3724-8-52"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 195.13928,317.51751 0,36.44856"
id="path3724-8-9"
style="fill:none;stroke:#a00a0a;stroke-width:4.25196838;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
<g
id="traitssecondaires"
style="fill:none;stroke:#808080;stroke-opacity:1">
<path
d="m 60.037756,254.05206 36.448569,0"
id="path3724-9-8"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 158.67815,47.010146 36.44857,0"
id="path3724-9"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 293.79222,47.010146 36.44857,0"
id="path3724-9-6"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 330.26594,115.88437 36.44857,0"
id="path3724-9-64"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 23.564042,182.42224 36.44857,0"
id="path3724-9-1"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 60.037756,182.42224 36.44857,0"
id="path3724-9-9"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 158.67815,254.05206 36.44857,0"
id="path3724-9-0"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 195.15185,254.05206 36.44857,0"
id="path3724-9-4"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 158.67815,182.42224 36.44857,0"
id="path3724-9-90"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 195.15185,182.42224 36.44857,0"
id="path3724-9-5"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 293.79222,182.42224 36.44857,0"
id="path3724-9-50"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 330.26594,182.42224 36.44857,0"
id="path3724-9-16"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 293.79222,254.05206 36.44857,0"
id="path3724-9-02"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 330.26594,254.05206 36.44857,0"
id="path3724-9-88"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 296.53566,317.83433 36.44857,0"
id="path3724-9-49"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 330.26594,317.83433 36.44857,0"
id="path3724-9-83"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 293.79222,353.64926 36.44857,0"
id="path3724-9-44"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 330.26594,353.64926 36.44857,0"
id="path3724-9-91"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 293.79222,389.46415 36.44857,0"
id="path3724-9-7"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 330.26594,389.46415 36.44857,0"
id="path3724-9-57"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 195.15185,389.46415 36.44857,0"
id="path3724-9-62"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 158.67815,389.46415 36.44857,0"
id="path3724-9-42"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 158.67815,353.64926 36.44857,0"
id="path3724-9-55"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 158.67815,317.83433 36.44857,0"
id="path3724-9-05"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 195.15186,317.83433 36.44856,0"
id="path3724-9-2"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 60.037758,317.83433 36.448565,0"
id="path3724-9-97"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 23.564042,317.83433 36.44857,0"
id="path3724-9-76"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 60.037756,389.46415 36.448569,0"
id="path3724-9-81"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 23.564042,389.46415 36.44857,0"
id="path3724-9-20"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 293.77965,182.10544 0,36.44856"
id="path3724-8-0"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 21.714038,317.51751 0,36.44856"
id="path3724-8-0-2"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 96.498895,353.33241 0,36.44856"
id="path3724-8-0-0"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 158.66558,317.51751 0,36.44856"
id="path3724-8-0-9"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 231.613,353.33241 0,36.44856"
id="path3724-8-0-7"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 293.77965,317.51751 0,36.44856"
id="path3724-8-0-75"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 366.72707,353.33241 0,36.44856"
id="path3724-8-0-4"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 330.25335,317.51751 0,36.44856"
id="path3724-8-0-46"
style="fill:none;stroke:#808080;stroke-width:2.48031497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
<g
id="points">
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,0.97633275,1.6212796)"
id="path2989"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,37.45004,1.6212796)"
id="path2989-8"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,73.923755,1.6212796)"
id="path2989-5"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,0.97633275,37.436206)"
id="path2989-0"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,37.45004,37.436206)"
id="path2989-6"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,73.923755,37.436206)"
id="path2989-4"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,0.97633275,73.251103)"
id="path2989-62"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,37.45004,73.251103)"
id="path2989-58"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,73.923755,73.251102)"
id="path2989-628"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,136.09044,1.6212796)"
id="path2989-47"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,172.56414,1.6212796)"
id="path2989-8-6"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,209.03786,1.6212796)"
id="path2989-5-5"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,136.09044,37.436206)"
id="path2989-0-7"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,172.56414,37.436206)"
id="path2989-6-1"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,209.03786,37.436206)"
id="path2989-4-3"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,136.09044,73.251103)"
id="path2989-62-3"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,172.56414,73.251103)"
id="path2989-58-3"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,209.03786,73.251103)"
id="path2989-628-8"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,271.20451,1.6212796)"
id="path2989-87"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,307.67821,1.6212796)"
id="path2989-8-63"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,344.15193,1.6212796)"
id="path2989-5-50"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,271.20451,37.436206)"
id="path2989-0-8"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,307.67821,37.436206)"
id="path2989-6-0"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,344.15193,37.436206)"
id="path2989-4-4"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,271.20451,73.251103)"
id="path2989-62-1"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,307.67821,73.251103)"
id="path2989-58-1"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,344.15193,73.251102)"
id="path2989-628-3"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,0.97633275,137.03337)"
id="path2989-1"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,37.45004,137.03337)"
id="path2989-8-5"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,73.923755,137.03337)"
id="path2989-5-0"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,0.97633275,172.8483)"
id="path2989-0-83"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,37.45004,172.8483)"
id="path2989-6-5"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,73.923755,172.8483)"
id="path2989-4-6"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,0.97633275,208.66319)"
id="path2989-62-5"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,37.45004,208.66319)"
id="path2989-58-9"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,73.923755,208.66319)"
id="path2989-628-9"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,136.09044,137.03338)"
id="path2989-3"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,172.56414,137.03338)"
id="path2989-8-7"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,209.03786,137.03338)"
id="path2989-5-6"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,136.09044,172.84831)"
id="path2989-0-1"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,172.56414,172.84831)"
id="path2989-6-50"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,209.03786,172.84831)"
id="path2989-4-65"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,136.09044,208.6632)"
id="path2989-62-0"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,172.56414,208.6632)"
id="path2989-58-8"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,209.03786,208.6632)"
id="path2989-628-1"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,271.20451,137.03338)"
id="path2989-10"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,307.67821,137.03338)"
id="path2989-8-4"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,344.15193,137.03338)"
id="path2989-5-2"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,271.20451,172.84831)"
id="path2989-0-74"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,307.67821,172.84831)"
id="path2989-6-03"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,344.15193,172.84831)"
id="path2989-4-2"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,271.20451,208.6632)"
id="path2989-62-8"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,307.67821,208.6632)"
id="path2989-58-0"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,344.15193,208.6632)"
id="path2989-628-37"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,0.97633275,272.44546)"
id="path2989-2"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,37.45004,272.44546)"
id="path2989-8-74"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,73.923755,272.44546)"
id="path2989-5-25"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,0.97633275,308.26039)"
id="path2989-0-2"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,37.45004,308.26039)"
id="path2989-6-4"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,73.923755,308.26039)"
id="path2989-4-43"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,0.97633275,344.07528)"
id="path2989-62-86"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,37.45004,344.07528)"
id="path2989-58-08"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,73.923755,344.07528)"
id="path2989-628-92"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,136.09044,272.44546)"
id="path2989-42"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,172.56414,272.44546)"
id="path2989-8-2"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,209.03786,272.44546)"
id="path2989-5-4"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,136.09044,308.26039)"
id="path2989-0-5"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,172.56414,308.26039)"
id="path2989-6-17"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,209.03786,308.26039)"
id="path2989-4-5"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,136.09044,344.07528)"
id="path2989-62-7"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,172.56414,344.07528)"
id="path2989-58-16"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,209.03786,344.07528)"
id="path2989-628-98"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,271.20451,272.44546)"
id="path2989-9"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,307.67821,272.44546)"
id="path2989-8-8"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,344.15193,272.44546)"
id="path2989-5-67"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,271.20451,308.26039)"
id="path2989-0-0"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,307.67821,308.26039)"
id="path2989-6-48"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,344.15193,308.26037)"
id="path2989-4-48"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,271.20451,344.07528)"
id="path2989-62-16"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,307.67821,344.07528)"
id="path2989-58-85"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 28.514838,47.270542 a 5.0038056,5.0038056 0 1 1 -10.007612,0 5.0038056,5.0038056 0 1 1 10.007612,0 z"
transform="matrix(0.96019348,0,0,0.96019349,344.15193,344.07528)"
id="path2989-628-2"
style="color:#808080;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
<path
d="m 179.98874,346.58082 c -2.49025,0.97396 -5.67221,1.46094 -9.5459,1.46094 -0.47592,0 -0.92969,-0.22689 -1.36133,-0.68067 -0.42058,-0.4427 -0.63086,-0.90201 -0.63086,-1.37792 l 0,-4.83106 c 0,-1.58267 0.0996,-3.84048 0.29883,-6.77344 0.22135,-3.16535 0.34309,-5.45636 0.36523,-6.87304 -0.0111,-1.01821 0.0498,-2.53449 0.18262,-4.54883 0.0775,-0.55336 0.26009,-0.9186 0.54785,-1.09571 1.5052,-0.46481 3.21516,-0.69723 5.12988,-0.69726 1.94791,3e-5 3.81835,0.66409 5.61133,1.99219 2.06965,1.52736 3.10448,3.41441 3.1045,5.66113 -2e-5,2.84442 -1.10679,5.08562 -3.32032,6.72363 1.66014,0.70835 2.89972,1.49415 3.71875,2.35742 0.83006,0.86329 1.2451,1.80405 1.24512,2.82227 -2e-5,1.3392 -0.72495,2.63412 -2.1748,3.88477 -1.00718,0.88541 -2.06415,1.54394 -3.1709,1.97558 m -5.01368,-22.03027 c -1.20638,2e-5 -2.05306,0.0388 -2.54003,0.11621 l -0.0332,2.90527 -0.33203,6.42481 c 1.57161,0.13282 2.41275,0.19369 2.52344,0.18261 1.67121,-0.1328 3.03807,-0.65298 4.10058,-1.56054 1.13996,-0.98501 1.70995,-2.25226 1.70997,-3.80176 -2e-5,-1.05141 -0.58107,-2.02537 -1.74317,-2.92188 -1.16212,-0.89646 -2.39063,-1.3447 -3.68555,-1.34472 m 1.85938,13.29785 -1.75977,-0.28223 c -0.14389,10e-6 -0.36524,0.0111 -0.66406,0.0332 -0.28777,0.0111 -0.50912,0.0166 -0.66406,0.0166 -0.59767,10e-6 -1.23406,-0.0498 -1.90918,-0.14942 -0.0664,1.39454 -0.0996,2.63966 -0.0996,3.73536 l 0,3.43652 c 2.89973,-0.0996 5.26268,-0.50911 7.08887,-1.22852 0.77472,-0.29882 1.51626,-0.76366 2.22461,-1.39453 0.67511,-0.57551 1.01268,-1.00715 1.01269,-1.29492 -1e-5,-0.52018 -0.70835,-1.10676 -2.125,-1.75977 -1.06251,-0.49803 -2.09734,-0.8688 -3.10449,-1.1123"
id="B1"
style="font-size:34px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Comic Sans MS;-inkscape-font-specification:Comic Sans MS" />
<path
d="m 315.0763,346.58082 c -2.49025,0.97396 -5.67221,1.46094 -9.5459,1.46094 -0.47592,0 -0.92969,-0.22689 -1.36133,-0.68067 -0.42058,-0.4427 -0.63086,-0.90201 -0.63086,-1.37792 l 0,-4.83106 c 0,-1.58267 0.0996,-3.84048 0.29883,-6.77344 0.22135,-3.16535 0.34309,-5.45636 0.36523,-6.87304 -0.0111,-1.01821 0.0498,-2.53449 0.18262,-4.54883 0.0775,-0.55336 0.26009,-0.9186 0.54785,-1.09571 1.5052,-0.46481 3.21516,-0.69723 5.12988,-0.69726 1.94791,3e-5 3.81835,0.66409 5.61133,1.99219 2.06965,1.52736 3.10448,3.41441 3.1045,5.66113 -2e-5,2.84442 -1.10679,5.08562 -3.32032,6.72363 1.66014,0.70835 2.89972,1.49415 3.71875,2.35742 0.83006,0.86329 1.2451,1.80405 1.24512,2.82227 -2e-5,1.3392 -0.72495,2.63412 -2.1748,3.88477 -1.00718,0.88541 -2.06415,1.54394 -3.1709,1.97558 m -5.01368,-22.03027 c -1.20638,2e-5 -2.05306,0.0388 -2.54003,0.11621 l -0.0332,2.90527 -0.33203,6.42481 c 1.57161,0.13282 2.41275,0.19369 2.52344,0.18261 1.67121,-0.1328 3.03807,-0.65298 4.10058,-1.56054 1.13996,-0.98501 1.70995,-2.25226 1.70997,-3.80176 -2e-5,-1.05141 -0.58107,-2.02537 -1.74317,-2.92188 -1.16212,-0.89646 -2.39063,-1.3447 -3.68555,-1.34472 m 1.85938,13.29785 -1.75977,-0.28223 c -0.14389,10e-6 -0.36524,0.0111 -0.66406,0.0332 -0.28777,0.0111 -0.50912,0.0166 -0.66406,0.0166 -0.59767,10e-6 -1.23406,-0.0498 -1.90918,-0.14942 -0.0664,1.39454 -0.0996,2.63966 -0.0996,3.73536 l 0,3.43652 c 2.89973,-0.0996 5.26268,-0.50911 7.08887,-1.22852 0.77472,-0.29882 1.51626,-0.76366 2.22461,-1.39453 0.67511,-0.57551 1.01268,-1.00715 1.01269,-1.29492 -10e-6,-0.52018 -0.70835,-1.10676 -2.125,-1.75977 -1.06251,-0.49803 -2.09734,-0.8688 -3.10449,-1.1123"
id="B1b"
style="font-size:34px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;font-family:Comic Sans MS;-inkscape-font-specification:Comic Sans MS" />
<path
d="m 357.74401,347.12038 c -1.01825,0 -1.90367,-1.30599 -2.65625,-3.91798 -0.28778,-0.99608 -0.64748,-2.73925 -1.07911,-5.22949 -1.12892,0.15495 -2.60646,0.43165 -4.43261,0.83007 l -4.41601,0.91309 c -0.5534,1.44988 -1.49968,3.56934 -2.83887,6.3584 -0.35417,0.6198 -0.83562,0.92969 -1.44434,0.92969 -0.44271,0 -0.84115,-0.16048 -1.19531,-0.48145 -0.3431,-0.32096 -0.51465,-0.7194 -0.51465,-1.19531 0,-0.53125 0.83561,-2.5511 2.50684,-6.05957 -0.18816,-0.28775 -0.28223,-0.61979 -0.28223,-0.9961 0,-0.89647 0.54231,-1.47199 1.62695,-1.72656 1.26172,-2.36848 2.85546,-5.09113 4.78125,-8.16797 2.62303,-4.19464 4.25552,-6.29196 4.89746,-6.29199 0.87433,3e-5 1.47199,0.60875 1.79297,1.82617 l 1.0459,5.57813 2.47363,11.53808 0.94629,2.62305 c 0.32094,0.89649 0.48142,1.49414 0.48145,1.79297 -3e-5,0.47591 -0.17158,0.87435 -0.51465,1.19531 -0.34312,0.32097 -0.73603,0.48145 -1.17871,0.48145 m -5.86036,-18.97559 -4.74804,7.65332 c 1.33918,-0.34309 3.3701,-0.75812 6.09277,-1.24512 l -1.34473,-6.4082"
id="A1"
style="font-size:34px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Comic Sans MS;-inkscape-font-specification:Comic Sans MS" />
<path
d="m 357.74401,383.8045 c -1.01825,0 -1.90367,-1.30599 -2.65625,-3.91797 -0.28778,-0.99609 -0.64748,-2.73925 -1.07911,-5.22949 -1.12892,0.15495 -2.60646,0.43165 -4.43261,0.83007 l -4.41602,0.91309 c -0.55339,1.44988 -1.49968,3.56934 -2.83887,6.3584 -0.35417,0.61979 -0.83561,0.92969 -1.44433,0.92969 -0.44271,0 -0.84115,-0.16049 -1.19532,-0.48145 -0.3431,-0.32096 -0.51465,-0.7194 -0.51464,-1.19531 -10e-6,-0.53125 0.83561,-2.5511 2.50683,-6.05957 -0.18815,-0.28775 -0.28223,-0.61979 -0.28222,-0.9961 -1e-5,-0.89647 0.54231,-1.47199 1.62695,-1.72656 1.26171,-2.36848 2.85546,-5.09113 4.78125,-8.16797 2.62303,-4.19464 4.25552,-6.29196 4.89746,-6.29199 0.87433,3e-5 1.47199,0.60875 1.79297,1.82617 l 1.0459,5.57813 2.47363,11.53808 0.94629,2.62305 c 0.32094,0.89649 0.48142,1.49414 0.48145,1.79297 -3e-5,0.47591 -0.17158,0.87435 -0.51465,1.19531 -0.34312,0.32097 -0.73603,0.48145 -1.17871,0.48145 m -5.86036,-18.97559 -4.74804,7.65332 c 1.33918,-0.34309 3.3701,-0.75812 6.09277,-1.24512 l -1.34473,-6.4082"
id="A2"
style="font-size:34px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Comic Sans MS;-inkscape-font-specification:Comic Sans MS" />
<path
d="m 320.422,383.8045 c -1.01825,0 -1.90367,-1.30599 -2.65625,-3.91797 -0.28778,-0.99609 -0.64748,-2.73925 -1.07911,-5.22949 -1.12892,0.15495 -2.60646,0.43165 -4.43261,0.83007 l -4.41602,0.91309 c -0.55339,1.44988 -1.49968,3.56934 -2.83887,6.3584 -0.35417,0.61979 -0.83561,0.92969 -1.44433,0.92969 -0.44271,0 -0.84115,-0.16049 -1.19532,-0.48145 -0.3431,-0.32096 -0.51465,-0.7194 -0.51464,-1.19531 -1e-5,-0.53125 0.83561,-2.5511 2.50683,-6.05957 -0.18815,-0.28775 -0.28223,-0.61979 -0.28222,-0.9961 -10e-6,-0.89647 0.54231,-1.47199 1.62695,-1.72656 1.26171,-2.36848 2.85546,-5.09113 4.78125,-8.16797 2.62303,-4.19464 4.25552,-6.29196 4.89746,-6.29199 0.87433,3e-5 1.47199,0.60875 1.79297,1.82617 l 1.0459,5.57813 2.47363,11.53808 0.94629,2.62305 c 0.32094,0.89649 0.48142,1.49414 0.48145,1.79297 -3e-5,0.47591 -0.17158,0.87435 -0.51465,1.19531 -0.34312,0.32097 -0.73603,0.48145 -1.17871,0.48145 m -5.86036,-18.97559 -4.74804,7.65332 c 1.33918,-0.34309 3.3701,-0.75812 6.09277,-1.24512 l -1.34473,-6.4082"
id="A3"
style="font-size:34px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Comic Sans MS;-inkscape-font-specification:Comic Sans MS" />
</svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26.53125mm"
height="26.53125mm"
viewBox="0 0 26.53125 26.53125"
version="1.1"
id="svg4102"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="horizontal_00.svg">
<defs
id="defs4097" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.959798"
inkscape:cx="94.057447"
inkscape:cy="95.056102"
inkscape:document-units="mm"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1003"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg4102" />
<metadata
id="metadata4100">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="26.25"
height="26.25"
x="0.140625"
y="0.140625"
id="rect2987"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="M 3.6235642,3.7463729 H 13.267247"
id="path3724-7"
style="fill:none;stroke:#a00a0a;stroke-width:1.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,3.7895896 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,3.7895896 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-8"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,3.7895896 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-5"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,13.26562 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-0"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,13.26562 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-6"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,13.26562 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-4"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,22.74165 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-62"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,22.74165 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-58"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,22.74165 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-628"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26.53125mm"
height="26.53125mm"
viewBox="0 0 26.53125 26.53125"
version="1.1"
id="svg4102"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="horizontal_21.svg">
<defs
id="defs4097" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="86.150889"
inkscape:cy="52.339868"
inkscape:document-units="mm"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1003"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg4102" />
<metadata
id="metadata4100">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="26.25"
height="26.25"
x="0.140625"
y="0.140625"
id="rect2987"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 13.011406,22.689101 h 9.643683"
id="path3724-7"
style="fill:none;stroke:#a00a0a;stroke-width:1.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,3.7895896 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,3.7895896 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-8"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,3.7895896 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-5"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,13.26562 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-0"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,13.26562 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-6"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,13.26562 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-4"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,22.74165 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-62"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,22.74165 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-58"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,22.74165 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-628"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,208 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26.53125mm"
height="26.53125mm"
viewBox="0 0 26.53125 26.53125"
version="1.1"
id="svg4102"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="horizontal_idx.svg">
<defs
id="defs4097" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="157.29139"
inkscape:cy="50.915658"
inkscape:document-units="mm"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1003"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg4102"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-to-guides="true">
<sodipodi:guide
position="10.15811,23.930618"
orientation="0,1"
id="guide4182"
inkscape:locked="false" />
<sodipodi:guide
position="5.9531251,20.930432"
orientation="1,0"
id="guide4184"
inkscape:locked="false" />
<sodipodi:guide
position="15.686012,20.788691"
orientation="1,0"
id="guide4186"
inkscape:locked="false" />
<sodipodi:guide
position="13.313364,14.440907"
orientation="0,1"
id="guide4188"
inkscape:locked="false" />
<sodipodi:guide
position="13.41359,4.9862472"
orientation="0,1"
id="guide4190"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata4100">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="26.25"
height="26.25"
x="0.140625"
y="0.140625"
id="rect2987"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,3.7895896 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,3.7895896 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-8"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,3.7895896 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-5"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,13.26562 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-0"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,13.26562 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-6"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,13.26562 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-4"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,22.74165 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-62"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,22.74165 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-58"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,22.74165 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-628"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="6.2189474"
y="4.508667"
id="text4162"
transform="scale(0.95386243,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160"
x="6.2189474"
y="4.508667"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 0,0 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="16.454226"
y="4.4836931"
id="text4162-1"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-2"
x="16.454226"
y="4.4836931"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 0,1 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="6.2257996"
y="13.564726"
id="text4162-5"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-1"
x="6.2257996"
y="13.564726"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 1,0 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="16.454226"
y="13.463326"
id="text4162-0"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-5"
x="16.454226"
y="13.463326"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 1,1 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="6.238183"
y="22.533091"
id="text4162-4"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-9"
x="6.238183"
y="22.533091"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 2,0 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="16.454226"
y="22.578157"
id="text4162-54"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-8"
x="16.454226"
y="22.578157"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 2,1 </tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26.53125mm"
height="26.53125mm"
viewBox="0 0 26.53125 26.53125"
version="1.1"
id="svg4102"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="isboxdrawn0.svg">
<defs
id="defs4097" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="78.567572"
inkscape:cy="50.641397"
inkscape:document-units="mm"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="3840"
inkscape:window-height="2004"
inkscape:window-x="-16"
inkscape:window-y="-16"
inkscape:window-maximized="1"
inkscape:current-layer="svg4102" />
<metadata
id="metadata4100">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="26.25"
height="26.25"
x="0.140625"
y="0.140625"
id="rect2987"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="M 22.901762,22.588768 H 13.25808"
id="path3724-8-7-9-8-1"
style="fill:none;stroke:#808080;stroke-width:0.65600002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="M 22.917891,22.848191 V 13.204509"
id="path3724-8-7-9-8-5"
style="fill:none;stroke:#808080;stroke-width:0.65600002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="M 22.917891,13.204509 H 13.274209"
id="path3724-8-7-9-8"
style="fill:none;stroke:#808080;stroke-width:0.656;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,3.7895896 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,3.7895896 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-8"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,3.7895896 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-5"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,13.26562 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-0"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,13.26562 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-6"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,13.26562 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-4"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,22.74165 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-62"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,22.74165 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-58"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,22.74165 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-628"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
</svg>

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -0,0 +1,151 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26.53125mm"
height="26.53125mm"
viewBox="0 0 26.53125 26.53125"
version="1.1"
id="svg4102"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="isboxdrawn1.svg">
<defs
id="defs4097" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="78.567572"
inkscape:cy="50.641397"
inkscape:document-units="mm"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="3840"
inkscape:window-height="2004"
inkscape:window-x="-16"
inkscape:window-y="-16"
inkscape:window-maximized="1"
inkscape:current-layer="svg4102" />
<metadata
id="metadata4100">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="26.25"
height="26.25"
x="0.140625"
y="0.140625"
id="rect2987"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="M 22.901762,22.588768 H 13.25808"
id="path3724-8-7-9-8-1"
style="fill:none;stroke:#808080;stroke-width:0.65600002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="M 22.917891,22.848191 V 13.204509"
id="path3724-8-7-9-8-5"
style="fill:none;stroke:#808080;stroke-width:0.65600002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="M 22.917891,13.204509 H 13.274209"
id="path3724-8-7-9-8"
style="fill:none;stroke:#808080;stroke-width:0.656;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="m 13.274209,13.204509 v 9.643682"
id="path3724-8"
style="fill:none;stroke:#a00a0a;stroke-width:1.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,3.7895896 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,3.7895896 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-8"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,3.7895896 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-5"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,13.26562 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-0"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,13.26562 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-6"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,13.26562 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-4"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,22.74165 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-62"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,22.74165 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-58"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,22.74165 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-628"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
aria-label="?"
transform="matrix(0.26458333,0,0,0.26458333,0.04724703,1.839808)"
inkscape:transform-center-x="-0.25985863"
inkscape:transform-center-y="-0.8031994"
style="font-style:normal;font-weight:normal;font-size:32px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#a00a0a;fill-opacity:1;stroke:none"
id="flowRoot5525">
<path
d="m 28.279298,67.208984 h 3.171875 v 3.96875 h -3.171875 z m 3.078125,-2.296875 h -2.984375 v -2.40625 q 0,-1.578125 0.4375,-2.59375 0.4375,-1.015625 1.84375,-2.359375 l 1.40625,-1.390625 q 0.890625,-0.828125 1.28125,-1.5625 0.40625,-0.734375 0.40625,-1.5 0,-1.390625 -1.03125,-2.25 -1.015625,-0.859375 -2.703125,-0.859375 -1.234375,0 -2.640625,0.546875 -1.390625,0.546875 -2.90625,1.59375 v -2.9375 q 1.46875,-0.890625 2.96875,-1.328125 1.515625,-0.4375 3.125,-0.4375 2.875,0 4.609375,1.515625 1.75,1.515625 1.75,4 0,1.1875 -0.5625,2.265625 -0.5625,1.0625 -1.96875,2.40625 l -1.375,1.34375 q -0.734375,0.734375 -1.046875,1.15625 -0.296875,0.40625 -0.421875,0.796875 -0.09375,0.328125 -0.140625,0.796875 -0.04687,0.46875 -0.04687,1.28125 z"
style=""
id="path5665" />
</g>
<g
aria-label="?"
transform="matrix(0.26458333,0,0,0.26458333,10.163647,1.8401771)"
inkscape:transform-center-x="-0.25985863"
inkscape:transform-center-y="-0.8031994"
style="font-style:normal;font-weight:normal;font-size:32px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#a00a0a;fill-opacity:1;stroke:none"
id="flowRoot5525-2">
<path
d="m 28.279298,67.208984 h 3.171875 v 3.96875 h -3.171875 z m 3.078125,-2.296875 h -2.984375 v -2.40625 q 0,-1.578125 0.4375,-2.59375 0.4375,-1.015625 1.84375,-2.359375 l 1.40625,-1.390625 q 0.890625,-0.828125 1.28125,-1.5625 0.40625,-0.734375 0.40625,-1.5 0,-1.390625 -1.03125,-2.25 -1.015625,-0.859375 -2.703125,-0.859375 -1.234375,0 -2.640625,0.546875 -1.390625,0.546875 -2.90625,1.59375 v -2.9375 q 1.46875,-0.890625 2.96875,-1.328125 1.515625,-0.4375 3.125,-0.4375 2.875,0 4.609375,1.515625 1.75,1.515625 1.75,4 0,1.1875 -0.5625,2.265625 -0.5625,1.0625 -1.96875,2.40625 l -1.375,1.34375 q -0.734375,0.734375 -1.046875,1.15625 -0.296875,0.40625 -0.421875,0.796875 -0.09375,0.328125 -0.140625,0.796875 -0.04687,0.46875 -0.04687,1.28125 z"
style=""
id="path5668" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26.53125mm"
height="26.53125mm"
viewBox="0 0 26.53125 26.53125"
version="1.1"
id="svg4102"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="vertical_00.svg">
<defs
id="defs4097" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.959798"
inkscape:cx="66.875008"
inkscape:cy="72.027342"
inkscape:document-units="mm"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1003"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg4102" />
<metadata
id="metadata4100">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="26.25"
height="26.25"
x="0.140625"
y="0.140625"
id="rect2987"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 3.6121917,3.944092 v 9.643682"
id="path3724-8"
style="fill:none;stroke:#a00a0a;stroke-width:1.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,3.7895896 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,3.7895896 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-8"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,3.7895896 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-5"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,13.26562 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-0"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,13.26562 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-6"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,13.26562 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-4"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,22.74165 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-62"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,22.74165 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-58"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,22.74165 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-628"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26.53125mm"
height="26.53125mm"
viewBox="0 0 26.53125 26.53125"
version="1.1"
id="svg4102"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="vertical_12.svg">
<defs
id="defs4097" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="114.38062"
inkscape:cy="68.130493"
inkscape:document-units="mm"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1003"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg4102" />
<metadata
id="metadata4100">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="26.25"
height="26.25"
x="0.140625"
y="0.140625"
id="rect2987"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 22.935124,13.076632 v 9.643682"
id="path3724-8"
style="fill:none;stroke:#a00a0a;stroke-width:1.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,3.7895896 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,3.7895896 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-8"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,3.7895896 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-5"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,13.26562 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-0"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,13.26562 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-6"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,13.26562 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-4"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,22.74165 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-62"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,22.74165 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-58"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,22.74165 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-628"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,222 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26.53125mm"
height="26.53125mm"
viewBox="0 0 26.53125 26.53125"
version="1.1"
id="svg4102"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="vertical_idx.svg">
<defs
id="defs4097" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="160.48283"
inkscape:cy="65.287899"
inkscape:document-units="mm"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1003"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg4102"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-to-guides="true">
<sodipodi:guide
position="0.88588171,16.335659"
orientation="1,0"
id="guide4184"
inkscape:locked="false" />
<sodipodi:guide
position="10.547898,15.981306"
orientation="1,0"
id="guide4186"
inkscape:locked="false" />
<inkscape:grid
type="xygrid"
id="grid4254" />
<sodipodi:guide
position="20.198103,15.733259"
orientation="1,0"
id="guide4256"
inkscape:locked="false" />
<sodipodi:guide
position="15.969494,19.158669"
orientation="0,1"
id="guide4336"
inkscape:locked="false" />
<sodipodi:guide
position="8.669829,9.543899"
orientation="0,1"
id="guide4338"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata4100">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="26.25"
height="26.25"
x="0.140625"
y="0.140625"
id="rect2987"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,3.7895896 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,3.7895896 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-8"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,3.7895896 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-5"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,13.26562 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-0"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,13.26562 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-6"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,13.26562 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-4"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 4.8865036,22.74165 a 1.2712229,1.2712229 0 1 1 -2.54244,0 1.2712229,1.2712229 0 1 1 2.54244,0 z"
id="path2989-62"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 14.536844,22.74165 a 1.271225,1.271225 0 1 1 -2.54245,0 1.271225,1.271225 0 1 1 2.54245,0 z"
id="path2989-58"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 24.18717,22.74165 a 1.271223,1.271223 0 1 1 -2.54244,0 1.271223,1.271223 0 1 1 2.54244,0 z"
id="path2989-628"
style="color:#808080;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2700544;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="0.90272093"
y="9.031786"
id="text4162"
transform="scale(0.95386243,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160"
x="0.90272093"
y="9.031786"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 0,0 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="11.097216"
y="9.0313826"
id="text4162-1"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-2"
x="11.097216"
y="9.0313826"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 0,1 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="0.93034029"
y="18.217352"
id="text4162-5"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-1"
x="0.93034029"
y="18.217352"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 1,0 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="21.200579"
y="9.0508375"
id="text4162-0"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-5"
x="21.200579"
y="9.0508375"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 0,2 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="11.048577"
y="18.167271"
id="text4162-4"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-9"
x="11.048577"
y="18.167271"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 1,1 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.02851319px;line-height:1;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25237608"
x="21.25436"
y="18.302471"
id="text4162-54"
transform="scale(0.95386244,1.0483692)"><tspan
sodipodi:role="line"
id="tspan4160-8"
x="21.25436"
y="18.302471"
style="font-size:2.69201183px;line-height:1;stroke-width:0.25237608"> 1,2 </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:3.17499995px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="1.6370258"
y="8.5239649"
id="text4244"><tspan
sodipodi:role="line"
id="tspan4242"
x="1.6370258"
y="11.333096"
style="stroke-width:0.26458332"></tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB