Scale diagrams according to screen resolution.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2015-11-15 17:48:48 +02:00
parent 4ca6e23870
commit 089e667f48
211 changed files with 20144 additions and 218 deletions

View file

@ -32,6 +32,8 @@
#include <QKeyEvent>
#include <QMenu>
#include <QSvgRenderer>
#include <QtSvg>
//---------------------------------------------------------------------------------------------------------------------
DialogMDataBase::DialogMDataBase(const QStringList &list, QWidget *parent)
@ -162,6 +164,48 @@ void DialogMDataBase::RetranslateGroups()
ShowDescription(ui->treeWidget->currentItem(), 0);
}
//---------------------------------------------------------------------------------------------------------------------
QString DialogMDataBase::ImgTag(const QString &number)
{
QString imgUrl("<img src=\"wrong.png\" align=\"center\"/>"); // In case of error
const QString filePath = QString("://diagrams/%1.svg").arg(MapDiagrams(number));
if (QFileInfo(filePath).exists())
{
// Load your SVG
QSvgRenderer renderer;
const bool ok = renderer.load(filePath);
if (ok)
{
const QScreen *screen = QApplication::screens().at(0);
if (screen)
{
const QSize defSize = renderer.defaultSize();
// Prepare a QImage with desired characteritisc
QImage image(defSize, QImage::Format_RGB32);
image.fill(Qt::white);
const QRect geometry = screen->geometry();
const int baseHeight = 1440;
const int imgHeight = geometry.height() * defSize.height() / baseHeight;
QImage scaledImg = image.scaledToHeight(imgHeight);
// Get QPainter that paints to the image
QPainter painter(&scaledImg);
renderer.render(&painter);
QByteArray byteArray;
QBuffer buffer(&byteArray);
scaledImg.save(&buffer, "PNG");
imgUrl = QString("<img src=\"data:image/png;base64,") + byteArray.toBase64() + "\" align=\"center\"/>";
}
}
}
return imgUrl;
}
//---------------------------------------------------------------------------------------------------------------------
void DialogMDataBase::changeEvent(QEvent *event)
{
@ -286,14 +330,12 @@ void DialogMDataBase::ShowDescription(QTreeWidgetItem *item, int column)
const QString name = item->data(0, Qt::UserRole).toString();
const VTranslateVars *trv = qApp->TrVars();
const QString number = trv->MNumber(name);
const QString iconPath = QString("://diagrams/%1.png").arg(MapDiagrams(number));
QString text = QString("<p align=\"center\" style=\"font-variant: normal; font-style: normal; font-weight: "
"normal\"> <img src=\"%1\" align=\"center\">"
"<br clear=\"left\"><b>%2</b>. <i>%3</i></p>"
"<p align=\"left\" style=\"font-variant: normal; font-style: normal; font-weight: normal\">"
"%5</p>")
.arg(iconPath)
const QString text = QString("<p align=\"center\" style=\"font-variant: normal; font-style: normal; font-weight: "
"normal\"> %1 <br clear=\"left\"><b>%2</b>. <i>%3</i></p>"
"<p align=\"left\" style=\"font-variant: normal; font-style: normal; font-weight: "
"normal\">%4</p>")
.arg(ImgTag(number))
.arg(number)
.arg(trv->GuiText(name))
.arg(trv->Description(name));

View file

@ -51,6 +51,8 @@ public:
void RetranslateGroups();
static QString ImgTag(const QString &number);
protected:
virtual void changeEvent(QEvent* event) Q_DECL_OVERRIDE;
virtual bool eventFilter(QObject *target, QEvent *event) Q_DECL_OVERRIDE;

View file

@ -1,107 +1,107 @@
<RCC>
<qresource prefix="/">
<file>diagrams/Ap1.png</file>
<file>diagrams/Ap2.png</file>
<file>diagrams/Bp1.png</file>
<file>diagrams/Bp2.png</file>
<file>diagrams/Cp1.png</file>
<file>diagrams/Cp2.png</file>
<file>diagrams/Dp1.png</file>
<file>diagrams/Dp2.png</file>
<file>diagrams/Dp3.png</file>
<file>diagrams/Ep1.png</file>
<file>diagrams/Ep2.png</file>
<file>diagrams/Fp1.png</file>
<file>diagrams/Fp2.png</file>
<file>diagrams/Fp3.png</file>
<file>diagrams/Gp1.png</file>
<file>diagrams/Gp2.png</file>
<file>diagrams/Gp3.png</file>
<file>diagrams/Gp4.png</file>
<file>diagrams/Gp5.png</file>
<file>diagrams/Gp6.png</file>
<file>diagrams/Gp7.png</file>
<file>diagrams/Gp8.png</file>
<file>diagrams/Gp9.png</file>
<file>diagrams/Hp1.png</file>
<file>diagrams/Hp2.png</file>
<file>diagrams/Hp3.png</file>
<file>diagrams/Hp4.png</file>
<file>diagrams/Hp5.png</file>
<file>diagrams/Hp6.png</file>
<file>diagrams/Hp7.png</file>
<file>diagrams/Hp8.png</file>
<file>diagrams/Hp9.png</file>
<file>diagrams/Hp10.png</file>
<file>diagrams/Hp11.png</file>
<file>diagrams/Hp12.png</file>
<file>diagrams/Hp13.png</file>
<file>diagrams/Ip1.png</file>
<file>diagrams/Ip2.png</file>
<file>diagrams/Ip3.png</file>
<file>diagrams/Ip4.png</file>
<file>diagrams/Ip5.png</file>
<file>diagrams/Ip6.png</file>
<file>diagrams/Ip7.png</file>
<file>diagrams/Jp1.png</file>
<file>diagrams/Jp2.png</file>
<file>diagrams/Jp3.png</file>
<file>diagrams/Jp4.png</file>
<file>diagrams/Jp5.png</file>
<file>diagrams/Kp1.png</file>
<file>diagrams/Kp2.png</file>
<file>diagrams/Kp3.png</file>
<file>diagrams/Kp4.png</file>
<file>diagrams/Kp5.png</file>
<file>diagrams/Kp6.png</file>
<file>diagrams/Kp7.png</file>
<file>diagrams/Kp8.png</file>
<file>diagrams/Kp9.png</file>
<file>diagrams/Kp10.png</file>
<file>diagrams/Kp11.png</file>
<file>diagrams/Lp1.png</file>
<file>diagrams/Lp2.png</file>
<file>diagrams/Lp3.png</file>
<file>diagrams/Lp4.png</file>
<file>diagrams/Lp5.png</file>
<file>diagrams/Lp6.png</file>
<file>diagrams/Lp7.png</file>
<file>diagrams/Lp8.png</file>
<file>diagrams/Lp9.png</file>
<file>diagrams/Lp10.png</file>
<file>diagrams/Mp1.png</file>
<file>diagrams/Mp2.png</file>
<file>diagrams/Mp3.png</file>
<file>diagrams/Np1.png</file>
<file>diagrams/Np2.png</file>
<file>diagrams/Np3.png</file>
<file>diagrams/Np4.png</file>
<file>diagrams/Np5.png</file>
<file>diagrams/Op1.png</file>
<file>diagrams/Op2.png</file>
<file>diagrams/Op3.png</file>
<file>diagrams/Op4.png</file>
<file>diagrams/Op5.png</file>
<file>diagrams/Op6.png</file>
<file>diagrams/Op7.png</file>
<file>diagrams/Op8.png</file>
<file>diagrams/Op9.png</file>
<file>diagrams/Op10.png</file>
<file>diagrams/Op11.png</file>
<file>diagrams/Pp1.png</file>
<file>diagrams/Pp2.png</file>
<file>diagrams/Pp3.png</file>
<file>diagrams/Pp4.png</file>
<file>diagrams/Pp5.png</file>
<file>diagrams/Pp6.png</file>
<file>diagrams/Pp7.png</file>
<file>diagrams/Pp8.png</file>
<file>diagrams/Pp9.png</file>
<file>diagrams/Pp10.png</file>
<file>diagrams/Pp11.png</file>
<file>diagrams/Pp12.png</file>
<file>diagrams/Qp1.png</file>
<file>diagrams/Qp2.png</file>
<file>diagrams/Qp3.png</file>
<file>diagrams/Ap1.svg</file>
<file>diagrams/Ap2.svg</file>
<file>diagrams/Bp1.svg</file>
<file>diagrams/Bp2.svg</file>
<file>diagrams/Cp1.svg</file>
<file>diagrams/Cp2.svg</file>
<file>diagrams/Dp1.svg</file>
<file>diagrams/Dp2.svg</file>
<file>diagrams/Dp3.svg</file>
<file>diagrams/Ep1.svg</file>
<file>diagrams/Ep2.svg</file>
<file>diagrams/Fp1.svg</file>
<file>diagrams/Fp2.svg</file>
<file>diagrams/Fp3.svg</file>
<file>diagrams/Gp1.svg</file>
<file>diagrams/Gp2.svg</file>
<file>diagrams/Gp3.svg</file>
<file>diagrams/Gp4.svg</file>
<file>diagrams/Gp5.svg</file>
<file>diagrams/Gp6.svg</file>
<file>diagrams/Gp7.svg</file>
<file>diagrams/Gp8.svg</file>
<file>diagrams/Gp9.svg</file>
<file>diagrams/Hp1.svg</file>
<file>diagrams/Hp2.svg</file>
<file>diagrams/Hp3.svg</file>
<file>diagrams/Hp4.svg</file>
<file>diagrams/Hp5.svg</file>
<file>diagrams/Hp6.svg</file>
<file>diagrams/Hp7.svg</file>
<file>diagrams/Hp8.svg</file>
<file>diagrams/Hp9.svg</file>
<file>diagrams/Hp10.svg</file>
<file>diagrams/Hp11.svg</file>
<file>diagrams/Hp12.svg</file>
<file>diagrams/Hp13.svg</file>
<file>diagrams/Ip1.svg</file>
<file>diagrams/Ip2.svg</file>
<file>diagrams/Ip3.svg</file>
<file>diagrams/Ip4.svg</file>
<file>diagrams/Ip5.svg</file>
<file>diagrams/Ip6.svg</file>
<file>diagrams/Ip7.svg</file>
<file>diagrams/Jp1.svg</file>
<file>diagrams/Jp2.svg</file>
<file>diagrams/Jp3.svg</file>
<file>diagrams/Jp4.svg</file>
<file>diagrams/Jp5.svg</file>
<file>diagrams/Kp1.svg</file>
<file>diagrams/Kp2.svg</file>
<file>diagrams/Kp3.svg</file>
<file>diagrams/Kp4.svg</file>
<file>diagrams/Kp5.svg</file>
<file>diagrams/Kp6.svg</file>
<file>diagrams/Kp7.svg</file>
<file>diagrams/Kp8.svg</file>
<file>diagrams/Kp9.svg</file>
<file>diagrams/Kp10.svg</file>
<file>diagrams/Kp11.svg</file>
<file>diagrams/Lp1.svg</file>
<file>diagrams/Lp2.svg</file>
<file>diagrams/Lp3.svg</file>
<file>diagrams/Lp4.svg</file>
<file>diagrams/Lp5.svg</file>
<file>diagrams/Lp6.svg</file>
<file>diagrams/Lp7.svg</file>
<file>diagrams/Lp8.svg</file>
<file>diagrams/Lp9.svg</file>
<file>diagrams/Lp10.svg</file>
<file>diagrams/Mp1.svg</file>
<file>diagrams/Mp2.svg</file>
<file>diagrams/Mp3.svg</file>
<file>diagrams/Np1.svg</file>
<file>diagrams/Np2.svg</file>
<file>diagrams/Np3.svg</file>
<file>diagrams/Np4.svg</file>
<file>diagrams/Np5.svg</file>
<file>diagrams/Op1.svg</file>
<file>diagrams/Op2.svg</file>
<file>diagrams/Op3.svg</file>
<file>diagrams/Op4.svg</file>
<file>diagrams/Op5.svg</file>
<file>diagrams/Op6.svg</file>
<file>diagrams/Op7.svg</file>
<file>diagrams/Op8.svg</file>
<file>diagrams/Op9.svg</file>
<file>diagrams/Op10.svg</file>
<file>diagrams/Op11.svg</file>
<file>diagrams/Pp1.svg</file>
<file>diagrams/Pp2.svg</file>
<file>diagrams/Pp3.svg</file>
<file>diagrams/Pp4.svg</file>
<file>diagrams/Pp5.svg</file>
<file>diagrams/Pp6.svg</file>
<file>diagrams/Pp7.svg</file>
<file>diagrams/Pp8.svg</file>
<file>diagrams/Pp9.svg</file>
<file>diagrams/Pp10.svg</file>
<file>diagrams/Pp11.svg</file>
<file>diagrams/Pp12.svg</file>
<file>diagrams/Qp1.svg</file>
<file>diagrams/Qp2.svg</file>
<file>diagrams/Qp3.svg</file>
</qresource>
</RCC>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

View file

@ -0,0 +1,725 @@
<?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="634.20923"
height="711.34998"
id="svg5375"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Ap1.svg">
<defs
id="defs5377" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="545.53061"
inkscape:cy="335.93327"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5380">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-80.492045,-15.259318)">
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="-5.3794823"
y="73.339287"
id="text7318-6"
sodipodi:linespacing="125%"><tspan
id="tspan16551"
sodipodi:role="line"
x="-5.3794823"
y="73.339287"
style="font-size:19.34880066px" /></text>
<g
style="display:inline"
id="g7202"
transform="matrix(0.8062,0,0,0.8062,23.809433,-54.59851)">
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="M 839.2,226.3 516.7,226.2"
id="path3833-4-0-8-2-6-6-9-6-7-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="M 729.6,331.5 587.2,330.7"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 803,233.7 -262.7,0.4"
id="path3833-4-0-8-2-6-6-9-6-7-1-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 261.1,521.9 185.2,0.3"
id="path3833-4-0-8-2-6-6-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9"
d="m 226.6,432.8 289.9,-0.3"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0;display:inline"
d="m 157.9,310 300.9,-0.1"
id="path3833-4-0-8-2-6-35-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-35"
d="m 122.7,212.5 370.9,-0.1"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 465.5,586.5 -171.3,0.4"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-5-7-2-4"
d="M 839.7,966.5 839.5,225.9"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(0.8943,0,0,0.8943,786.1,614.4)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-60"
d="M 765.4,966.5 765.6,246"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(0.8943,0,0,0.8943,715,611.5)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-7"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 764,245.8 -248.7,0.3"
id="path3833-4-0-8-2-6-6-9-6-7-1-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-60-0"
d="m 729.2,966.5 0,-635.2"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-60-0-3-9"
d="m 295.9,966.6 -1,-379.1"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(0.8943,0,0,0.8943,243,659.5)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-7-7-3-9"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text16546"
y="665.45819"
x="828.27783"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="665.45819"
x="828.27783"
id="tspan16548"
sodipodi:role="line">17</tspan></text>
<text
sodipodi:linespacing="125%"
id="text16550"
y="662.61084"
x="756.81482"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="662.61084"
x="756.81482"
id="tspan16552"
sodipodi:role="line">15</tspan></text>
<text
sodipodi:linespacing="125%"
id="text16558"
y="710.22516"
x="289.93707"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="710.22516"
x="289.93707"
id="tspan16560"
sodipodi:role="line">7</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-3-7"
d="m 444.6,800.8 -80.8,0"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="M 364.6,966.6 365,799.9"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-60-0-3-9-4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-7-7-3-9-5-0"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,312.7,851.2)" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="359.92682"
y="902.25818"
id="text16558-5-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16560-9-5"
x="359.92682"
y="902.25818">9</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline"
d="m 655.2,966.5 0,-499.3"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-60-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-7-7-1"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,602.8,645.7)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-0"
d="m 656.1,467.1 -84.8,0"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0;display:inline" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="643.80786"
y="695.98419"
id="text16554-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16556-2"
x="643.80786"
y="695.98419">12</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-5-7-4-5-8"
d="m 157.2,966.6 0.5,-657.1"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline" />
<path
transform="matrix(0.8943,0,0,0.8943,103.9,659.5)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-2-3-2-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="149.73466"
y="710.28815"
id="text9049-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9051-2"
x="149.73466"
y="710.28815">3</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-6-7"
d="M 692.9,966.5 691.4,442.2"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline" />
<path
transform="matrix(0.8943,0,0,0.8943,641.4,614.7)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-0-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="683.98285"
y="665.75818"
id="text16542-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16544-2"
x="683.98285"
y="665.75818">13</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-2-6"
d="M 690.2,442.4 568.2,442"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0;display:inline" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 802.7,966.5 0.7,-732.9"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-0"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,749.2,642.7)" />
<text
sodipodi:linespacing="125%"
id="text16542"
y="693.87518"
x="791.01782"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="693.87518"
x="791.01782"
id="tspan16544"
sodipodi:role="line">16</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 329.9,966.6 -0.1,-236"
id="path7494-1-6-3-5-8-3-9-0-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-72-8"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,278.4,887)" />
<path
id="path8572-85"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 499.1,891.6 c 3,-22 5,-41 7,-77 1,-18 3.8,-44.4 6.8,-59.4 2,-11 9.2,-25.8 12.2,-35.8 6,-16 7,-11.8 11,-27.8 10,-35 16.2,-69 19.2,-104 2,-20 0.8,-39 1.8,-58 2,-21 14,-41 15,-62 0,-10 -5,-19 -4,-29 0,-11 4.8,-25.9 5,-39 0.2,-10.4 -5,-23 -3,-31 9,-8 17,-21 17,-34 0,-4.4 -15,-30 -19,-37 -2,-6 -29,-53 -27,-62 -1,1 0,-9 2,-14 2,-4 1.2,-13.8 6.2,-17.8 6,-6 25.8,-0.2 30.8,-3.2 2,-1 3,-3 4,-5 1,-2 1,-4 1,-7 0,-1 -1,-3 0,-4 0,-1 2,-2 2,-3 0,-1 -2,-2 -2,-4 0,-1 2,-1 2,-2 0,-2 -2,-5 -1,-7 1,-2 4,-2 6,-4 1,-2 3,-3 2,-6 -4,-4 -11,-8 -13,-14 -1,-3 0,-7 0,-10 -1,-6 -1.5,-13 -4,-19 -1.9,-4.4 -5,-8 -8,-12 -2,-1 -2.6,-2.2 -4,-3 -8.2,-4.66 -16.8,-9.16 -26,-10.96 -12.5,-2.3 -26.9,-1.3 -38,5 -29,16.36 -26.7,60.36 -8,90.96 3,4 2.7,9.2 2.7,13.2 0,7 -3.7,16.8 -5.7,19.8 -20.6,36.1 -26,54.8 -29,84.4 -1.2,12 2.1,24.2 4.7,36 3.1,14.4 10.4,31.8 12.9,42.3 3,11 7.4,39.3 6.4,50.3 -8.2,33.9 -33.8,68.2 -36.4,90.1 -2.1,19.9 18.4,63.9 18.4,63.9 0,0 -1,64 -2,94 -1,18 1.4,29.8 -0.6,46.8 -1,6 -4.4,16.2 -5.4,21.2 -3,16 -11,32 -12,48 -3,38 18.7,66.7 19.3,103.1 0.6,5.3 -6.1,20.6 -6.1,28.6 0,6 -3,13 0,17 3,4 8,5 12,6 5,2 10,2 15,4 12,3 24,9 37,11 6,1 12,1 17,0 9,-1 23,1 26,-8 1,-6 -8.1,-9.3 -13,-13 -17,-13.1 -45.7,-17.6 -55.6,-32.3 -2.6,-5.4 -0.6,-10.4 0.4,-20.4 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccccccccscccccsscssssccscccccscsccccccccccccsscccccacc" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 226.7,966.6 0,-534.4"
id="path7494-1-6-3-5-8-3-9-5-7-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 123.3,966.6 0.3,-753.5"
id="path7494-1-6-3-5-8-3-9-5-7-4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-7-4"
d="m 330.9,730.8 130.8,0.5"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-3-2"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,70.26,624.7)" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-36-7"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,172.1,659.5)" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="M 89.11,966.6 89.11,90"
id="path7494-1-6-3-5-8-3-9-5-7-4-2-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-1-7"
d="M 89.85,90.37 527.2,87.98"
style="opacity:0.5;fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-3-5-1"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,37.89,659.5)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-5-7-8-7"
d="m 260.7,966.6 0.2,-444.3"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(0.8943,0,0,0.8943,209.4,624.7)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-2-36-7-4"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text9037"
y="938.17517"
x="325.50931"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="938.17517"
x="325.50931"
id="tspan9039"
sodipodi:role="line">8</tspan></text>
<text
sodipodi:linespacing="125%"
id="text9041"
y="674.68219"
x="256.57709"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="674.68219"
x="256.57709"
id="tspan9043"
sodipodi:role="line">6</tspan></text>
<text
sodipodi:linespacing="125%"
id="text9045"
y="710.40515"
x="219.46114"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="710.40515"
x="219.46114"
id="tspan9047"
sodipodi:role="line">5</tspan></text>
<text
sodipodi:linespacing="125%"
id="text9049"
y="674.80823"
x="117.39497"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="674.80823"
x="117.39497"
id="tspan9051"
sodipodi:role="line">2</tspan></text>
<text
sodipodi:linespacing="125%"
id="text9053"
y="710.28815"
x="85.265709"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="710.28815"
x="85.265709"
id="tspan9055"
sodipodi:role="line">1</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 499.3,911.1 86.5,0.4"
id="path3833-4-0-8-2-6-7-4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-0-5-3"
d="m 586.9,967.5 -0.5,-56.1"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(0.8943,0,0,0.8943,533.6,891.4)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-72-8-0"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="576.1828"
y="942.42346"
id="text9037-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9039-7"
x="576.1828"
y="942.42346">11</tspan></text>
<path
sodipodi:nodetypes="cac"
inkscape:connector-curvature="0"
id="path3992-4-65-7-6"
d="m 538.9,234.1 c -13,3 -17,-5 -24,-9 -8,-4 -12.4,-12.8 -22,-13"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="ssscs"
inkscape:connector-curvature="0"
id="path3009-6-3-6-8"
d="m 494.5,262 c -1,42 6,57 21,58 17,1 22,-20 20,-49 0,-7 1,-27 -18,-25 -15,1 -23,6 -23,16 z"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-9-7-2-2"
d="m 514.9,225.5 c 1,5 1.3,6.4 -1.7,19.4"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-7-4-1-2"
d="m 399,899.4 66.7,0.6"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-0-5-3-7"
d="m 398.6,966.6 0.3,-67.1"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(0.8943,0,0,0.8943,346.6,887)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-72-8-0-2"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="388.45383"
y="938.05817"
id="text9037-0-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9039-7-5"
x="388.45383"
y="938.05817">10</tspan></text>
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path6129"
d="m 475.3,905.8 -2.4,9.6 c 0,6.4 -1.1,5.5 4,8.7"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-35-8"
d="m 517.6,321.2 -0.2,192.7"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-5-7-4-5-8-6"
d="M 192.8,966.6 191.5,319.3"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline" />
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0;display:inline"
d="m 192.9,319.8 323.7,1.7"
id="path3833-4-0-8-2-6-35-9-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="matrix(0.8943,0,0,0.8943,140.8,624.7)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-2-3-2-1-8"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text12228"
y="674.75421"
x="187.27794"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="674.75421"
x="187.27794"
id="tspan12230"
sodipodi:role="line">4</tspan></text>
<path
transform="matrix(0.8943,0,0,0.8943,677.9,646.6)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-7-7"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text16554"
y="697.27563"
x="719.83038"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="697.27563"
x="719.83038"
id="tspan16556"
sodipodi:role="line">14</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,287 @@
<?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="279.51462"
height="712.23822"
id="svg5309"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 2">
<defs
id="defs5311" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="174.75732"
inkscape:cy="307.54767"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata5314">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-200.24268,-127.67166)">
<g
style="display:inline"
id="g7295"
transform="matrix(0.8062,0,0,0.8062,-595.61132,68.609849)">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-3"
d="m 1128,737.4 187,-0.2"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cac"
inkscape:connector-curvature="0"
id="path3992-4-65-7"
d="m 1043,223.1 c 13,3 17,-5 24,-9 8,-4 15,-12.8 22,-13"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
id="path6025"
d="m 1122,894.1 c -1,7 0,14 0,22 0,6 3,13 0,17 -3,4 -8,5 -12,6 -5,2 -10,2 -15,4 -12,3 -23,9 -37,11 -6,1 -12,1 -17,0 -9,-1 -23,1 -26,-8 -1,-6 9,-9.2 13,-13 17,-13.4 48,-19.1 56,-34"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscccccac" />
<path
id="path8572"
d="m 1084,899.1 c 3,-7 1,-12 0,-22 -3,-22 -9,-93 -11,-129 -3,-32.2 0,-18 -10,-46 -6,-16 -10,-22 -14,-38 -10,-35 -23,-56 -26,-91 -2,-20 4,-39 3,-58 -2,-21 -14,-41 -15,-62 0,-10 5,-19 4,-29 0,-11 -1,-32 -2,-43 0,-12 2,-19 0,-27 -9,-8 -16.7,-21 -16.7,-34 0,-13 14.7,-30 18.7,-37 2,-6 29,-53 27,-62 1,1 0,-9 -2,-14 -2,-4 -3,-14 -8,-18 -6,-6 -24,0 -29,-3 -2,-1 -3,-3 -3.7,-5 -1,-2 -1,-4 -1,-7 0,-1 1,-3 0,-4 0,-1 -2,-2 -2,-3 0,-1 2,-2 2,-4 0,-1 -2,-1 -2,-2 0,-2 2,-5 1,-7 -1,-2 -4,-2 -6,-4 -1,-2 -3,-3 -2,-6 4,-4 10.7,-8 12.7,-14 1,-3 0,-7 0,-10 1,-6 1,-13 4,-19 2,-5.02 5,-8.02 8,-12.02 2,-1 3,-2 4,-2.96 8,-5 17,-10 26,-11 64,1.5 70,57.18 46,95.98 -3,4 -1,10 -1,14 0,7 2,16 4,19 8,15 24,46 29,70 7,20 2,34 -1,51 -3,18 -13,39 -16,52 -3,11 -8,29 -7,40 18,41.4 38,76.8 38,105 0,20 -18,44 -18,44 l 0,12 c 0,0 -1,57 0,87 1,18 1,37 3,54 1,6 3,14.6 4,19.6 3,16 10,26.4 11,42.4 3,38 -13,75 -14,113"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccsssssscsscsccsscccccccssscsccsccacccccccccc" />
<path
sodipodi:nodetypes="ssscs"
inkscape:connector-curvature="0"
id="path3009-6-3-6"
d="m 1050,253.1 c -1,42 6,57 22,58 16,1 21,-20 19,-49 0,-7 1,-27 -17,-25 -16,1 -24,6 -24,16 z"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-9-7-2"
d="m 1071,212.1 c 1,5 2,12.4 -1,25.4"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-0"
d="m 1092,199.9 221,0.5"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 1315,736.6 0,-538.1"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-60-0-3-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-7-7-3-9-3"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,1263,410.3)" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="1305.2004"
y="461.33591"
id="text16558-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16560-2"
x="1305.2004"
y="461.33591">18</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-1"
d="m 1065,415.6 163,-1"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 1228,737.1 0,-322.4"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-60-0-3-9-7-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-7-7-3-9-3-9"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,1177,411.9)" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="1218.7218"
y="463.12518"
id="text16558-2-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16560-2-6"
x="1218.7218"
y="463.12518">19</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-35-8-8"
d="m 1066,310.5 -1,188.9"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-0-5-6"
d="m 1185,515.2 -1,-98.9"
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline" />
<path
transform="matrix(0.8943,0,0,0.8943,1133,411.9)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-72-8-7"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="1174.6904"
y="463.07117"
id="text9037-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9039-4"
x="1174.6904"
y="463.07117">20</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-1-8"
d="m 1138,514.9 89,-0.5"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0;display:inline" />
</g>
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path6129-6"
d="m 300.62868,791.60985 1.6,8 c 0,5 0.8,4 -3.2,7"
style="fill:none;stroke:#dba981;stroke-width:2.41849995;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-0-5-6-1"
d="m 373.02868,802.60985 -0.3,-140"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline" />
<path
transform="matrix(0.721,0,0,0.721,330.72868,666.60985)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-72-8-7-8"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="365.72736"
y="707.8681"
id="text9037-9-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9039-4-0"
x="365.72736"
y="707.8681">21</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-1-8-9"
d="m 303.72868,802.60985 69,0"
style="fill:none;stroke:#dba981;stroke-width:1.61240005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.8372, 1.6124;stroke-dashoffset:0;display:inline" />
<path
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline"
d="m 377.22868,403.60985 0,-173"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-60-0-3-9-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-7-7-3-9-3-8"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.721,0,0,0.721,335.12868,284.60985)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="369.28137"
y="325.73486"
id="text16558-2-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16560-2-65"
x="369.28137"
y="325.73486">22</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

View file

@ -0,0 +1,271 @@
<?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="199.33513"
height="383.25491"
id="svg5453"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 5">
<defs
id="defs5455" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="172.24199"
inkscape:cy="263.29428"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata5458">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-143.18958,-146.44901)">
<g
id="g5582">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-9-3"
d="m 334.66208,434.44293 -19.3488,35.39218"
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0" />
<path
id="path22054-4-0"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 334.66208,426.62279 c 5.6434,33.0542 -4.031,86.34402 -5.6434,101.5812 l -66.9146,0 -6.4496,-50.7906 -5.6434,50.7906 -70.1394,0 c -0.8062,-1.69302 -12.093,-67.7208 -5.6434,-100.69438 2.4186,-22.00926 24.9922,-47.40456 29.0232,-65.22158 2.4186,-16.9302 -5.6434,-31.28056 -9.6744,-48.21076 -2.4186,-11.85114 -1.6124,-24.5891 -5.6434,-35.55342 -9.6744,-20.31624 -21.7674,-49.09758 -7.2558,-69.41382 7.2558,-9.35192 28.217,-8.4651 44.341,-17.81702 3.2248,-1.69302 4.8372,-6.77208 5.6434,-10.15812 0,-5.07906 -0.8062,-13.54416 -0.8062,-13.54416 0,0 17.7364,-5.90139 27.4108,-5.90139 8.8682,0 26.6046,5.90139 26.6046,5.90139 0,0 -1.6124,9.35192 -0.8062,13.54416 0.8062,3.38604 1.6124,8.4651 5.6434,11.04494 16.124,8.4651 37.0852,7.57828 44.341,16.9302 17.7364,23.70228 1.6124,49.09758 -7.2558,70.22002 -4.031,10.15812 -4.031,22.89608 -7.2558,34.74722 -2.4186,16.9302 -10.4806,31.28056 -8.8682,47.40456 4.8372,22.81546 21.7674,44.82472 24.9922,65.14096 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccccacccccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-5"
d="m 171.80968,435.00727 -19.3488,35.15032"
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 329.01868,271.02619 c -16.9302,-16.9302 -12.093,-34.6666 0,-63.6898"
id="path8584-0-8-6-3-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 184.70888,269.41379 c 18.5426,-16.124 8.062,-45.1472 -1.6124,-63.6898"
id="path8584-6-5-3-6-1-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="text6934-6-93"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path5574"
d="m 242.55796,152.42229 0,3.8759 2.29578,0 c 0.76998,0 1.3392,-0.15824 1.70767,-0.47474 0.37317,-0.32122 0.55976,-0.81014 0.55977,-1.46675 -1e-5,-0.66133 -0.1866,-1.14789 -0.55977,-1.45966 -0.36847,-0.31649 -0.93769,-0.47474 -1.70767,-0.47475 l -2.29578,0 m 0,-4.35064 0,3.18858 2.11864,0 c 0.69912,1e-5 1.21874,-0.1299 1.55886,-0.38972 0.34483,-0.26452 0.51725,-0.66605 0.51726,-1.20457 -1e-5,-0.53379 -0.17243,-0.93295 -0.51726,-1.19749 -0.34012,-0.26453 -0.85974,-0.39679 -1.55886,-0.3968 l -2.11864,0 m -1.43132,-1.17624 3.65624,0 c 1.0912,1e-5 1.93204,0.22676 2.52253,0.68023 0.59047,0.4535 0.88571,1.0983 0.88572,1.93441 -10e-6,0.64717 -0.15117,1.16207 -0.45349,1.54469 -0.30233,0.38264 -0.74637,0.62119 -1.33212,0.71566 0.70384,0.15117 1.24944,0.46767 1.63681,0.94949 0.39207,0.47711 0.5881,1.07468 0.58811,1.7927 -1e-5,0.94476 -0.32123,1.67459 -0.96366,2.18949 -0.64245,0.5149 -1.55651,0.77235 -2.74218,0.77235 l -3.79796,0 0,-10.57902"
inkscape:connector-curvature="0" />
<path
id="path5576"
d="m 254.62498,153.48515 c -1.05342,1e-5 -1.78325,0.12047 -2.18949,0.36138 -0.40626,0.24091 -0.60938,0.65189 -0.60938,1.23292 0,0.46293 0.15116,0.83139 0.45349,1.10537 0.30705,0.26926 0.72274,0.40389 1.24709,0.40389 0.72274,0 1.30141,-0.25509 1.73601,-0.76526 0.43931,-0.5149 0.65896,-1.19749 0.65897,-2.04778 l 0,-0.29052 -1.29669,0 m 2.60047,-0.53851 0,4.52779 -1.30378,0 0,-1.20458 c -0.29761,0.48183 -0.66843,0.83848 -1.11246,1.06995 -0.44405,0.22674 -0.98728,0.34011 -1.62972,0.34011 -0.8125,0 -1.45967,-0.22674 -1.94149,-0.68023 -0.47711,-0.45821 -0.71567,-1.06994 -0.71566,-1.83521 -1e-5,-0.8928 0.2976,-1.56594 0.8928,-2.01943 0.59992,-0.45348 1.49273,-0.68023 2.67841,-0.68023 l 1.82812,0 0,-0.12755 c -1e-5,-0.59992 -0.19841,-1.06285 -0.5952,-1.3888 -0.39208,-0.33066 -0.94477,-0.496 -1.65807,-0.496 -0.45349,0 -0.89516,0.0543 -1.32503,0.16297 -0.42987,0.10865 -0.8432,0.27162 -1.24,0.48891 l 0,-1.20457 c 0.4771,-0.18422 0.94004,-0.32121 1.3888,-0.41097 0.44876,-0.0945 0.88572,-0.14171 1.31086,-0.14172 1.14789,1e-5 2.00526,0.29761 2.57213,0.8928 0.56685,0.59521 0.85028,1.49746 0.85029,2.70676"
inkscape:connector-curvature="0" />
<path
id="path5578"
d="m 265.62914,149.84308 0,1.21875 c -0.36847,-0.20312 -0.73929,-0.35428 -1.11247,-0.45349 -0.36846,-0.10391 -0.74164,-0.15588 -1.11954,-0.15588 -0.84557,0 -1.50218,0.26926 -1.96984,0.80777 -0.46766,0.5338 -0.70149,1.28489 -0.70149,2.25327 0,0.96838 0.23383,1.72183 0.70149,2.26035 0.46766,0.53379 1.12427,0.80069 1.96984,0.80069 0.3779,0 0.75108,-0.0496 1.11954,-0.1488 0.37318,-0.10393 0.744,-0.25745 1.11247,-0.46058 l 0,1.20458 c -0.36375,0.17006 -0.74165,0.2976 -1.13372,0.38263 -0.38736,0.085 -0.8007,0.12754 -1.24001,0.12754 -1.19513,0 -2.14462,-0.37554 -2.84847,-1.12663 -0.70385,-0.75109 -1.05577,-1.76435 -1.05577,-3.03978 0,-1.29433 0.35428,-2.31231 1.06286,-3.05396 0.7133,-0.74163 1.68876,-1.11245 2.92641,-1.11246 0.40152,1e-5 0.7936,0.0425 1.17623,0.12754 0.38263,0.0803 0.75345,0.20314 1.11247,0.36846"
inkscape:connector-curvature="0" />
<path
id="path5580"
d="m 267.86115,146.44901 1.31086,0 0,6.5118 3.89007,-3.42241 1.66515,0 -4.20893,3.71292 4.38607,4.22311 -1.70057,0 -4.03179,-3.8759 0,3.8759 -1.31086,0 0,-11.02542"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.4008636, 1.2004318;stroke-dashoffset:0"
d="m 227.43748,188.79379 c 12.093,-5.6434 46.7596,-6.4496 58.8526,0.8062"
id="path3992-4-77-9-5-7-1-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
transform="matrix(0.8062,0,0,0.8062,-248.30114,-1498.6634)"
id="g16328">
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 668.2,2167 -180,0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6"
d="m 144.39888,249.33941 37.0852,-43.69604"
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-9"
d="m 292.73968,247.80763 34.6666,-42.00302"
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path6088-7"
d="m 241.94908,485.87849 c 4.031,-1.69302 8.062,-2.49922 13.7054,-8.4651 2.4186,2.57984 4.031,5.96588 9.6744,7.6589"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 316.92568,469.91573 -164.4648,0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-5-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0;display:inline"
d="m 151.65468,326.81523 37.0852,-43.69604"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0;display:inline"
d="m 290.32108,325.92841 34.6666,-42.00302"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-9-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-0-9-7"
d="m 189.54608,285.29593 133.023,-0.0806"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.4008636, 1.2004318;stroke-dashoffset:0;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-0-9-7-7"
d="m 204.05768,360.51439 103.1936,-0.0806"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.4008636, 1.2004318;stroke-dashoffset:0;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-0-9-7-7-6"
d="m 171.80968,434.60417 162.0462,0.4031"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.4008636, 1.2004318;stroke-dashoffset:0;display:inline" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0;display:inline"
d="m 165.36008,404.53291 37.0852,-43.69604"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-1-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0;display:inline"
d="m 272.58468,402.43679 34.6666,-42.00302"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-9-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline"
d="m 291.12728,326.17027 -137.8602,-0.32248"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-5-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline"
d="m 272.58468,403.56547 -105.6122,0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-5-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-1"
d="m 229.04988,248.37197 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8512-9-0"
y="253.03616"
x="214.05615"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="253.03616"
x="214.05615"
id="tspan8514-9-1"
sodipodi:role="line">1</tspan></text>
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 229.04988,469.91573 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-1-3"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="214.22385"
y="474.57269"
id="text8512-9-0-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-1-6"
x="214.22385"
y="474.57269">4</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-1-9"
d="m 229.04988,325.84779 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8512-9-0-7"
y="330.48813"
x="214.11501"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="330.48813"
x="214.11501"
id="tspan8514-9-1-7"
sodipodi:role="line">2</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-1-9-3"
d="m 229.04988,403.56547 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8512-9-0-7-5"
y="408.16898"
x="214.30367"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="408.16898"
x="214.30367"
id="tspan8514-9-1-7-7"
sodipodi:role="line">3</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,129 @@
<?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="130.08884"
height="374.20621"
id="svg5663"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 8">
<defs
id="defs5665" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="231.473"
inkscape:cy="107.1031"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata5668">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-143.527,-265.25908)">
<g
style="display:inline"
id="g16502"
transform="matrix(0.8062,0,0,0.8062,-1198.3929,139.2988)">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-5-6-7"
d="m 1691,452.6 -1,166.3"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-9-3-0"
d="m 1824,516.6 -21,35.8"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0"
d="m 1728,204.7 c 13,3.2 18,-5.2 25,-9.3 8,-4.2 15,-13.4 22,-13.6"
id="path3992-4-65-7-62"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
sodipodi:nodetypes="cccccccscccccccccscccc"
inkscape:connector-curvature="0"
id="path16196"
d="m 1718,616.9 c -5,-14.6 -9,-29.2 -11,-47.9 -2,-20.7 4,-40.5 3,-60.3 -2,-21.8 -18,-38.4 -19,-60.2 0,-10.4 9,-24.1 8,-34.5 0,-11.5 -1,-33.3 -2,-44.8 0,-12.5 2,-19.8 0,-28.1 -10,-8.3 -18,-21.8 -18,-35.4 0,-13.5 16,-31.2 20,-38.5 2,-6.2 30,-55.2 28,-64.5 1,1 -3,-17.4 -5,-22.6 17,0.2 30,-13.7 47,-22 0,7.3 8,23.7 11,26.9 8,15.6 25,47.8 30,72.8 7,20.9 2,35.4 -1,53.1 -3,18.8 -14,40.6 -17,54.2 -3,11.4 -8,30.1 -7,41.6 18,43.1 39,79.9 39,109.3 0,20.8 -18,45.7 -18,45.7 l 0,12.5 c 0,0 1,23.9 1,42.7 z"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1735,236 c -1,43.7 6,59.3 22,60.3 17,1.1 23,-20.8 20,-51 0,-7.2 1,-28.1 -18,-26 -15,1.1 -24,6.3 -24,16.7 z"
id="path3009-6-3-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssscs" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0"
d="m 1756,193.3 c 1,5.2 3,8.3 0,21.9"
id="path3992-4-9-7-2-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-9-9-4-7-9-6-5-6"
d="m 1690,508.1 -24,43.6"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-5-3-1"
d="m 1804,552.1 -138,0.7"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.39240003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 1744,552.1 c 0,8 -7,14 -14,14 -8,0 -14,-6 -14,-14 0,-8 6,-14 14,-14 7,0 13,6 14,14"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-1-3-9"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="1725.752"
y="558.26581"
id="text8512-9-0-6-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-1-6-1"
x="1725.752"
y="558.26581">5</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.8 KiB

View file

@ -0,0 +1,177 @@
<?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="114.23742"
height="212.85394"
id="svg5748"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 11">
<defs
id="defs5750" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="243.54728"
inkscape:cy="-36.43014"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata5753">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-131.45272,-283.0781)">
<g
style="stroke-linecap:round;display:inline"
transform="matrix(0.806,0,0,0.806,-156.72412,-3475.9477)"
id="g7835">
<g
style="stroke-linecap:round"
id="g9696"
transform="translate(-1405,3554)">
<g
style="stroke-linecap:round"
transform="translate(-59.6,-10.97)"
id="g8324">
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 1945,1275 -58,0 -44,-31"
id="path3817-0-0-8-8-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 1840,1314 c 10,3 75,3 96,0"
id="path3825-3-1-7-6-9-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 1843,1383 c 32,-1 65,0 83,-8"
id="path3829-9-1-8-0-2-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 1871,1182 c 12,0 21,-4 27,-8 7,-4 14,-10 22,-10"
id="path3992-4-65-7-57-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 1945,1283 c -5,-1 -118,-1 -122,0"
id="path3003-1-9-5-3-1-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 1901,1272 0,108"
id="path2993-6-5-5-4-9-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccscacccac"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1843,1383 c 0,-11 -4,-22 -5,-33 0,-12 5,-29 3,-37 -9,-8 -17,-21 -17,-34 0,-13 15,-30 19,-37 2,-6 24,-40 27,-62 1,-7 1,-17 -2,-22 23,0 31,-8 45,-19 3,9 6,21 8,24 14,7 26,45 29,70 5,48 -27,101 -24,143"
id="path15458"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1878,1212 c -1,42 6,57 21,58 17,1 22,-20 20,-49 0,-7 1,-27 -18,-25 -15,1 -23,6 -23,16 z"
id="path3009-6-3-6-9-0-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssscs" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 1899,1173 c 1,5 2,6 -1,19"
id="path3992-4-9-7-2-4-5-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0"
d="m 1953,1253 0,-90"
id="path15475-4-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.68300009;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1921,1164 32,0"
id="path15477-1-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-36-7-5-1-1-8"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,1893,1095)" />
<text
xml:space="preserve"
style="font-size:12.52019978px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Nimbus Sans L;-inkscape-font-specification:Nimbus Sans L"
x="1934.5088"
y="1142.0001"
id="text4052-9-9-4-5-1-5-54-9-0-8-78-7-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4054-2-4-9-3-7-5-3-9-3-0-6-4-3-7"
x="1934.5088"
y="1142.0001"
style="font-size:12.52019978px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Nimbus Sans L;-inkscape-font-specification:Nimbus Sans L" /></text>
</g>
</g>
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="475.48282"
y="4689.0884"
id="text16522"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16524"
x="475.48282"
y="4689.0884">1</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

View file

@ -0,0 +1,179 @@
<?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="152.17574"
height="698.19305"
id="svg5846"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 14">
<defs
id="defs5848" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="211.08778"
inkscape:cy="269.09652"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata5851">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-163.91222,-103.26566)">
<g
style="stroke-linecap:round;display:inline"
transform="matrix(0.806,0,0,0.806,-1429.6059,-4919.7272)"
id="g19358">
<path
style="fill:none;stroke:#dba981;stroke-width:3.10800004;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9.324, 3.108;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 2117,6730 9,-364"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-5-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-02-4"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,2095,6523)" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="2142.1458"
y="6574.1753"
id="text16546-6-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16548-6-9"
x="2142.1458"
y="6574.1753">2</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 2033,6375 c 13,3 18,-1 26,-5 10,-4 19,-16 26,-18"
id="path3992-4-65-7-0-2-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
sodipodi:nodetypes="ssaaaacacccccscccassccasscccccccsscscsccccacsssccacccas"
inkscape:connector-curvature="0"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 2097,7064 c 0,6 4,16 1,20 -3,4 -16,3 -24,5 -5,1 -10,3 -15,4 -13,2 -25,3 -38,3 -7,0 -13,0 -20,-1 -7,0 -19,5 -22,-4 -1,-6 9,-6 13,-8 12,-8 25,-15 38,-22 6,-4 15,-6 18,-12 6,-15 5,-33 4,-46 -3,-22 -9,-69 -11,-105 1,-10 -1,-7 -10,-35 -6,-16 -18,-62 -22,-78 -10,-35 -1,-84 -4,-119 -11,-27 -3,-29 -5,-72 0,-20 -7,-47 -7,-64 0,-8 2,-16 2,-24 0,-11 -2,-27 -5,-34 -3,-7 4,-24 7,-32 3,-5 22,-42 36,-64 -1,-6 -6,-20 -10,-24 -6,-6 -16,-1 -23,-3 -3,-1 -6,-2 -7,-4 -1,-2 -1,-7 -1,-10 0,-1 1,-3 0,-4 0,-1 -2,-2 -2,-3 0,-1 2,-2 2,-4 0,-1 -2,-1 -2,-2 0,-2 2,-5 1,-7 -1,-2 -5,-2 -7,-4 -5,-3 9,-18 10,-21 1,-3 2,-6 2,-9 1,-6 1,-13 4,-19 2,-5 5,-8 8,-12 2,-1 3,-2 4,-3 8,-5 17,-10 26,-11 12,-3 26,-3 38,1 10,4 19,10 25,18 15,31 -5,52 -19,73 -4,9 2,23 7,30 8,15 27,34 32,58 7,20 -3,46 -6,70 -3,21 -8,50 -11,63 -3,11 -6,13 -5,24 1,12 5,26 9,37 10,24 11,41 7,61 -4,20 -14,25 -14,25 l -3,39 c 0,0 -5,50 -8,75 -2,15 -8,27 -6,44 1,6 12,36 13,41 3,16 5,27 6,43 3,38 -13,77 -9,115 0,4 3,5 3,11 z"
id="path6025-2-9-9" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 2044,6414 c -1,42 6,57 21,58 17,1 22,-20 20,-49 0,-7 1,-27 -18,-25 -15,1 -23,6 -23,16 z"
id="path3009-6-3-6-2-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssscs" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 2062,6369 c 1,5 -1,10 2,25"
id="path3992-4-9-7-2-6-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-2-3-8-7"
d="m 1996,6571 103,0"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-2-3-8-7-3"
d="m 2000,6596 101,0"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-2-3-8-7-8"
d="m 1993,6474 123,0"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-5-7-2-4-5-7-5"
d="m 2103,7086 -1,-74"
style="fill:none;stroke:#dba981;stroke-width:3.10800004;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9.324, 3.108;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 2093,7048 10,0"
id="path3833-4-0-8-2-6-6-9-6-7-1-6-5-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="matrix(0.8943,0,0,0.8943,2078,7001)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-2-36-7-2-2-02-4-8"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text16546-6-0-0"
y="7052.0581"
x="2125.3799"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="7052.0581"
x="2125.3799"
id="tspan16548-6-9-2"
sodipodi:role="line">3</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-6-7-1-6-5"
d="m 2099,6571 24,0"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,216 @@
<?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="120.48024"
height="237.09465"
id="svg6100"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 17">
<defs
id="defs6102">
<marker
inkscape:stockid="Arrow2Mend"
orient="auto"
refY="0"
refX="0"
id="marker8958"
style="overflow:visible">
<path
id="path8960"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.719,4.034 -2.207,0.016 8.719,-4.002 c -1.746,2.372 -1.736,5.618 0,8.036 z"
transform="scale(-0.6,-0.6)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="209.52584"
inkscape:cy="-38.595565"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata6105">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-165.47416,-256.67196)">
<g
style="display:inline"
id="g17810"
transform="matrix(0.8062,0,0,0.8062,-14.645729,-3703.4949)">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9"
d="m 262,4971 c 15,5 27,15 60,2"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cccacccccccccaascccac"
inkscape:connector-curvature="0"
id="path10238-0-9-7"
d="m 294,5024 c 12,16 18,15 29,19 5,5 13,14 16,16 8,5 19,10 27,6 3,-1 5,-10 5,-10 -15,-11 -29,-23 -30,-36 -2,-9 -2,-9 -4,-20 l -15,-24 c -4,-20 4,-43 9,-61 -20,9 -40,7 -60,0 -2,19 -4,34 -4,34 -2,10 -2,20 -5,24 l -9,10 c -4,16 -7,34 -9,52 -1,12 -2,24 -1,36 1,20 8,51 8,56 0,11 9,10 15,21 5,11 7,14 17,14 11,0 17,-3 22,-11 0,0 9,-31 12,-46 3,-20 4,-58 6,-60"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-5"
d="m 244,5070 75,6"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-5-3"
d="m 294,4980 -15,180"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
transform="matrix(0.8943,0,0,0.8943,232,5062)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-8-7"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text17813"
y="5113.1753"
x="279.14587"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5113.1753"
x="279.14587"
id="tspan17815"
sodipodi:role="line">2</tspan></text>
<text
sodipodi:linespacing="125%"
id="text17817"
y="5047.9736"
x="239.82727"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5047.9736"
x="239.82727"
id="tspan17819"
sodipodi:role="line" /></text>
<path
inkscape:connector-curvature="0"
id="path5461"
d="m 277,4978 c -8,91 -8,91 -8,91"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-5-2-4-8-5"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8943,0,0,0.8943,191,4973)" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker8958)"
d="m 257,5029 12,15"
id="path17429-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
sodipodi:linespacing="125%"
id="text19761-8"
y="5024.0581"
x="238.08289"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5024.0581"
x="238.08289"
id="tspan19763-2"
sodipodi:role="line">1</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-5-6"
d="m 242.9,5071 -6.7,110"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 3;stroke-dashoffset:0;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-5-6-7"
d="M 319.2,5076 311,5187"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 3;stroke-dashoffset:0;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-5-1"
d="m 236,5181 75,6"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
<path
transform="matrix(0.8943,0,0,0.8943,225.1,5142)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-8-7-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text17813-4"
y="5192.6821"
x="272.29007"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5192.6821"
x="272.29007"
id="tspan17815-7"
sodipodi:role="line">3</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 KiB

View file

@ -0,0 +1,119 @@
<?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="108.32143"
height="202.13127"
id="svg6197"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 20">
<defs
id="defs6199" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="280.58929"
inkscape:cy="52.494252"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata6202">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-94.41071,-382.72516)">
<g
style="display:inline"
id="g9068"
transform="matrix(0.8062,0,0,0.8062,-340.53419,-3613.7207)">
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0"
d="m 542.6,5119 75,6"
id="path8471-6-6-72-2-3-9-5-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-18"
d="m 623,5125 c 0,-12 -84,-20 -82,-6"
style="opacity:0.3;fill:none;stroke:#000000;stroke-width:2.13249993;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6.3974, 2.1325;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-502"
d="m 563,5016 c 15,5 26,12 59,-1"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cccacccccccccaascccac"
inkscape:connector-curvature="0"
id="path10238-0-9-5"
d="m 595,5069 c 12,16 18,15 29,19 5,5 13,14 16,16 8,5 19,10 27,6 3,-1 5,-10 5,-10 -15,-11 -29,-23 -30,-36 -2,-9 -2,-9 -4,-20 l -15,-24 c -4,-20 4,-43 9,-61 -20,9 -40,7 -60,0 -2,19 -4,34 -4,34 -2,10 -2,20 -5,24 l -9,10 c -4,16 -7,34 -9,52 -1,12 -2,24 -1,36 1,20 8,51 8,56 0,11 9,10 15,21 5,11 7,14 17,14 11,0 17,-3 22,-11 0,0 9,-31 12,-46 3,-20 4,-58 6,-60"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-1-46"
d="m 623,5126 c 0,11 -78,16 -82,-7"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
transform="matrix(0.8943,0,0,0.8943,526,5092)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-8-7-6-9-9"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text17813-1-5-0"
y="5143.0581"
x="573.37988"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5143.0581"
x="573.37988"
id="tspan17815-9-9-1"
sodipodi:role="line">4</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 KiB

View file

@ -0,0 +1,125 @@
<?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="86.704895"
height="202.13127"
id="svg6267"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 23">
<defs
id="defs6269" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="175.49531"
inkscape:cy="-13.220078"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata6272">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-199.50469,-317.01083)">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-5-8-5"
d="m 213.04078,444.14053 60,5"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.4008, 1.2004;stroke-dashoffset:0;display:inline" />
<g
style="display:inline"
transform="matrix(0.8062,0,0,0.8062,-66.959219,161.14053)"
id="g13508">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-18-5"
d="m 437,302.2 c 0,-12 -91.2,-26.6 -89.2,-12.6"
style="opacity:0.3;fill:none;stroke:#000000;stroke-width:2.13199997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6.396, 2.132;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-502-7"
d="m 365,252.2 c 15,5 27,13 60,0"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.978, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="ccssccc"
inkscape:connector-curvature="0"
id="path12984"
d="m 397.1,274.2 c -12,15.9 -9.5,21.5 -10.2,33.1 -3.4,6.2 -12.1,28.5 -13.1,32 -2.7,9 -4.1,20.8 1.7,27.5 2.1,2.4 11,2.1 11,2.1 6.4,-17.4 16.3,-46.3 28.5,-50.9 8.1,-4.4 8.1,-4.4 18.1,-9.4"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="ccccccccccscsccc"
inkscape:connector-curvature="0"
id="path13506"
d="M 433.4,308.4 434.8,291 425,256.2 c -4,-20 4,-43 9,-61 -20,9 -40,7 -60,0 -2,19 -4,34 -4,34 -2,10 -2,20 -5,24 l -9,10 c -4,16 -7,34 -9,52 -1,12 -2,24 -1,36 1,20 8,51 8,56 0,11 9,10 15,21 5,11 7,14 17,14 11,0 17,-3 22,-11 0,0 9.8,-44.4 12.8,-59.4 3,-20 4,-58 6,-60"
style="fill:#ffffff;fill-opacity:0;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-1-46-0"
d="m 436.5,303.6 c 0,11 -91.6,9.3 -88.9,-12.6"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
transform="matrix(0.8943,0,0,0.8943,298.1,271.6)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-8-7-6-9-9-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text17813-1-5-0-6"
y="322.66931"
x="345.46713"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="322.66931"
x="345.46713"
id="tspan17815-9-9-1-5"
sodipodi:role="line">5</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7 KiB

View file

@ -0,0 +1,119 @@
<?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="87.360237"
height="272.40622"
id="svg6338"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 26">
<defs
id="defs6340" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="195.82298"
inkscape:cy="-26.654065"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata6343">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-179.17702,-233.3019)">
<g
style="display:inline"
id="g17157"
transform="matrix(0.8062,0,0,0.8062,-646.00052,-3721.3828)">
<g
id="g14944"
style="display:inline"
transform="translate(990.4,4328)">
<path
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0"
d="M 97.85,323.7 98.3,445.6"
id="path14922"
inkscape:connector-curvature="0"
transform="translate(-52.1,451.5)"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0;display:inline"
d="m 139.6,773.8 0,123.1"
id="path14922-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path12656"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 35,579.2 c 2,11 14,55 14,55 0,0 -3,18 3,42 1,45 -8,96 -1,127 -2,10 2,23 10,18 1,10 6,17 14,12 3,10 7,13 14,11 5,11 19,13 21,-2 7,7 15,13 23,2 7,-11 1,-34 1,-38 10,-49 -12,-85 -19,-121 7,-21 6,-21 -2,-42 -5,-28 -2,-45 -2,-45 0,-8 1,-13 1,-19 -26,11 -52,10 -77,0 z"
sodipodi:nodetypes="ccccccccccccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 140,897.2 -94,0"
id="path8471-6-6-72-2-3-9-5-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<path
transform="matrix(0.8943,0,0,0.8943,1029,5179)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-8-7-6"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text17813-1"
y="5230.0581"
x="1076.0829"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5230.0581"
x="1076.0829"
id="tspan17815-9"
sodipodi:role="line">1</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,279 @@
<?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="157.26172"
height="178.76717"
id="svg6437"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 29">
<defs
id="defs6439" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="230.77372"
inkscape:cy="40.812117"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata6442">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-144.22628,-394.40714)">
<g
style="display:inline"
id="g15062"
transform="matrix(0.8062,0,0,0.8062,-817.59062,-3565.4534)">
<g
transform="matrix(2.026,0,0,2.026,-1070,1197)"
id="g8933-8-4"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g6061-6-1"
transform="translate(391.1,6.69)"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
transform="translate(-39.8,3.732)"
id="g15057-3-8"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g14909-7-0"
transform="matrix(-1,0,0,1,1759,0)"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
transform="translate(46.59,-957.2)"
id="g14210-5-7"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g13309-0-8"
transform="translate(-389.2,-50.76)"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
transform="translate(418.7,2031)"
id="g11297-4-9-1"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
transform="translate(675.6,418.4)"
id="g3086-1-0-3"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
transform="translate(-262.9,-402.3)"
id="g5465-5-0-9-1"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="body_front_three_quarters_original-0-4-2-7"
transform="translate(-119.2,-3.744)"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g7397-2-5-9-4"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
<g
transform="translate(457.6,212.9)"
id="g4056-9-9-6-9-3-8"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
<g
transform="translate(456.7,253.4)"
id="g4056-3-5-1-4-3-0"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
<g
transform="translate(458.6,288.7)"
id="g4056-0-0-3-4-5-3"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
<g
transform="translate(458,326.1)"
id="g4056-6-1-39-0-3-1"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
<g
transform="translate(459.1,375)"
id="g4056-99-1-24-5-4-4"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
<g
transform="translate(463.8,444.3)"
id="g4056-2-0-4-0-5-4"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
</g>
</g>
</g>
</g>
<g
id="g13296-6-5"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#dba981;stroke-width:1.83659995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1254,2925 c 7,0 1,-3 17,-3 9,-1 24,-12 31,-14 5,-2 13,2 18,1 4,-1 8,-2 10,-5 3,-4 0,-9 0,-14 0,-6 -2,-9 -2,-15 1,-14 3,-29 7,-43 -11,3 -30,5 -39,1 1,9 2,17 3,26 0,5 1,7 0,10 -1,3 -6,7 -11,9 -3,2 -12,11 -25,22 -8,7 -8,10 -15,12 -5,1 -6,2 -7,5 -1,1 0,4 0,4 2,4 10,4 13,4 z"
id="path11890"
inkscape:connector-curvature="0"
sodipodi:nodetypes="scsccccsccccccacs" />
<g
id="g13266-3-4"
transform="translate(411.7,5.708)"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
</g>
<g
transform="translate(183.4,-89.18)"
id="g13289-4-4"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g13276-8-2"
transform="translate(-185.5,72.06)"
style="stroke-width:2.6487;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50"
d="m 1263,5069 c 15,-5 38,-58 28,-64"
style="opacity:0.3;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-1"
d="m 1262,5069 c -12,4 14,-70 29,-64"
style="fill:none;stroke:#000000;stroke-width:2.13249993;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-4"
d="m 1320,5096 c 20,-3 31,-46 21,-48"
style="opacity:0.3;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-1-4"
d="m 1318,5096 c -12,4 8,-54 23,-48"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-0"
d="m 1197,5086 5,-41"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-0-5"
d="m 1381,5132 5,-41"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-72-2-3-9-50-1-3"
d="m 1382,5131 -185,-45"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
transform="matrix(0.8943,0,0,0.8943,1209,4986)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-8-7-6-9"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3.35459995;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text17813-1-5"
y="5037.0596"
x="1255.885"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5037.0596"
x="1255.885"
id="tspan17815-9-9"
sodipodi:role="line">4</tspan></text>
<path
transform="matrix(0.8943,0,0,0.8943,1264,5020)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-8-7-6-95"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text17813-1-1"
y="5071.2227"
x="1311.1143"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5071.2227"
x="1311.1143"
id="tspan17815-9-6"
sodipodi:role="line">3</tspan></text>
<path
transform="matrix(0.8943,0,0,0.8943,1225,5065)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-8-7-6-3"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text17813-1-53"
y="5116.1753"
x="1272.1459"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5116.1753"
x="1272.1459"
id="tspan17815-9-2"
sodipodi:role="line">2</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

View file

@ -0,0 +1,209 @@
<?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="210.21486"
height="299.18558"
id="svg6579"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 32">
<defs
id="defs6581" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="280.10375"
inkscape:cy="-56.119238"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata6584">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-94.896255,-177.05737)">
<g
style="display:inline"
id="g12408"
transform="matrix(0.8062,0,0,0.8062,-1116.1164,-3758.6232)">
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1612,5251 c 11,-23 20,-44 22,-67 1,-8 -2,-16 -4,-24 -3,-9 -4,-20 -12,-26 -14,-11 -42,-4 -51,-9 -4,-1 -3,-4 -5,-7 -1,-4 -1,-10 -1,-14 0,-2 -1,-4 -2,-6 0,-2 -3,-3 -3,-5 0,-2 2,-4 2,-7 0,-1 -2,-2 -2,-4 -1,-4 3,-8 1,-12 -2,-3 -7,-3 -10,-7 -2,-2 -5,-5 -4,-10 7,-6 19,-13 23,-23 2,-5 -1,-11 0,-17 1,-11 -1,-24 6,-33 22,-29 65,-48 98,-47 39,0 78,33 82,62 1,14 1,29 -2,43 -2,11 -8,20 -14,30 -6,11 -15,24 -21,32 -5,7 -2,16 -2,24 1,11 4,26 7,32 15,25 33,65 41,95"
id="path9289"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caaaccscssccccscacccccccc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 1761,5251 -150,0"
id="path13119"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-1-5"
d="m 1522,4933 139,1"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-5-3"
d="m 1522,5128 49,0"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-5"
d="m 1566,4992 2,-90"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.51999998;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.56, 1.52;stroke-dashoffset:0"
d="m 1572,4987 c 47,21 147,12 179,0"
id="path3992-4-65-7-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-8-5-0-3-8-9-2"
d="m 1754,4901 -185,0"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(-0.8943,0,0,0.8943,1709,4856)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-7-8-8-0-93"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-8-5-0-3-8-9-0"
d="m 1521,5127 1,-195"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(-0.8943,0,0,0.8943,1573,4984)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-7-8-8-0-97"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-8-5-0-0-4-5-2-7"
d="m 1752,4988 c -26,14 -151,15 -181,0"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-end:none" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-7-8-8-0-93-2"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(-0.8943,0,0,0.8943,1715,4955)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-6-9-5-2-9"
d="m 1748,4988 c 0,-11 -172,-17 -178,-1"
style="opacity:0.3;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<text
sodipodi:linespacing="125%"
id="text5498"
y="5006.0581"
x="1658.3912"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5006.0581"
x="1658.3912"
id="tspan5500"
sodipodi:role="line">1</tspan></text>
<text
sodipodi:linespacing="125%"
id="text5502"
y="5035.1753"
x="1516.4542"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5035.1753"
x="1516.4542"
id="tspan5504"
sodipodi:role="line">2</tspan></text>
<text
sodipodi:linespacing="125%"
id="text5506"
y="4907.0581"
x="1652.6882"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="4907.0581"
x="1652.6882"
id="tspan5508"
sodipodi:role="line">3</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0;display:inline"
d="m 1754,4992 0,-89"
id="path3833-4-0-8-2-6-6-9-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-5-3-6-3-4"
d="m 1634,5190 c 39,-2 63,-27 87,-33"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0;display:inline" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,119 @@
<?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="264.32114"
height="296.75156"
id="svg6674"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 35">
<defs
id="defs6676" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="218.5891"
inkscape:cy="5.5186525"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata6679">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-156.4109,-241.12928)">
<g
style="display:inline"
id="g8658"
transform="matrix(0.8062,0,0,0.8062,-1392.2993,-3718.7427)">
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 2246,5277 -173,1 -151,-1"
id="path9285"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0"
d="m 1980,5058 1,-127"
id="path3833-4-0-8-2-6-6-9-5-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0"
d="m 2164,5038 0,-108"
id="path3833-4-0-8-2-6-6-9-5-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.68289995;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 2166,4932 -186,0"
id="path7494-1-6-3-5-7-8-5-0-3-8-9-2-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-7-8-8-0-93-21"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(-0.8943,0,0,0.8943,2124,4886)" />
<path
sodipodi:nodetypes="cccscsccc"
inkscape:connector-curvature="0"
id="path13119-0"
d="m 1923,5278 c 9,-21 73,-20 96,-53 11,-19 12,-47 12,-64 -1,-10 -47,-35 -49,-104 -1,-44 27,-93 91,-94 60,0 94,49 92,93 -3,66 -46,97 -46,106 0,19 4,47 16,62 30,33 103,33 112,54"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<text
transform="scale(1.093,0.915)"
sodipodi:linespacing="125%"
id="text5510"
y="5396.9712"
x="1891.1647"
style="font-size:19.67370033px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5396.9712"
x="1891.1647"
id="tspan5512"
sodipodi:role="line">4</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,182 @@
<?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="237.5229"
height="259.42322"
id="svg6752"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 38">
<defs
id="defs6754">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible">
<path
id="path8887"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="316.61039"
inkscape:cy="-24.574838"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata6757">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-58.389607,-248.36412)">
<g
style="display:inline"
id="g12446"
transform="matrix(0.8062,0,0,0.8062,-1635.4054,-3725.4664)">
<path
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0;display:inline"
d="m 2280,5156 97,0"
id="path3833-4-0-8-2-6-5-3-6-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 2172,5249 c 11,-23 20,-44 22,-67 1,-8 -2,-16 -4,-24 -3,-9 -4,-20 -12,-26 -14,-11 -42,-4 -51,-9 -4,-1 -3,-4 -5,-7 -1,-4 -1,-10 -1,-14 0,-2 -1,-4 -2,-6 0,-2 -3,-3 -3,-5 0,-2 2,-4 2,-7 0,-1 -2,-2 -2,-4 -1,-4 3,-8 1,-12 -2,-3 -7,-3 -10,-7 -2,-2 -5,-5 -4,-10 7,-6 19,-13 23,-23 2,-5 -1,-11 0,-17 1,-11 -1,-24 6,-33 22,-29 65,-48 98,-47 39,0 78,33 82,62 1,14 1,29 -2,43 -2,11 -8,20 -14,30 -6,11 -15,24 -21,32 -5,7 -2,16 -2,24 1,11 4,26 7,32 15,25 33,65 41,95"
id="path9289-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caaaccscssccccscacccccccc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 2321,5249 -150,0"
id="path13119-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-1-5-8"
d="m 2376,4933 -155,-1"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3833-4-0-8-2-6-5-3-6"
d="m 2130,5124 216,1"
style="fill:none;stroke:#dba981;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:9, 3;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-8-5-0-3-8-9-2-6"
d="m 2377,4933 0,223"
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(-0.8943,0,0,0.8943,2428,4967)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-7-8-8-0-93-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-8-5-0-3-8-9-0-9"
d="m 2344,5156 0,-32"
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(-0.8943,0,0,0.8943,2392,5034)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-7-8-8-0-97-3"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text5502-2"
y="5085.2148"
x="2336.199"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5085.2148"
x="2336.199"
id="tspan5504-6"
sodipodi:role="line">6</tspan></text>
<text
sodipodi:linespacing="125%"
id="text5506-5"
y="5018.0288"
x="2371.9783"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="5018.0288"
x="2371.9783"
id="tspan5508-3"
sodipodi:role="line">5</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0;display:inline"
d="m 2193,5188 c 39,-2 63,-27 87,-33"
id="path3833-4-0-8-2-6-5-3-6-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8943"
d="m 2353,5091 c 11,6 13,27 -4,47"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

View file

@ -0,0 +1,343 @@
<?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="145.92249"
height="310.00351"
id="svg6880"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 41">
<defs
id="defs6882" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="239.37384"
inkscape:cy="-22.043171"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata6885">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-135.62616,-200.3155)">
<g
style="display:inline"
id="g17349"
transform="translate(-78.186336,-2201.376)">
<path
style="fill:none;stroke:#aaaaaa;stroke-width:2.01550007;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:8.062, 2.0155;stroke-dashoffset:0"
d="m 219.9,2644 c 5.7,-12 115,-11 123.9,0"
id="path27588-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#aaaaaa;stroke-width:2.01550007;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:8.062, 2.0155;stroke-dashoffset:0"
d="m 216,2684 c 2.1,-9 126.9,-9 139,0"
id="path27588-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 217.2,2710 c -1,-15 -1.6,-30 -0.3,-45 1.1,-14 3.7,-26 7.2,-39 2.1,-8 7.1,-13 8.2,-20 1.5,-12 -2.2,-22 -2.7,-34 -0.3,-4 1.5,-8 -0.2,-14 -6.7,-6 -13.8,-23 -13.6,-32 0.2,-11 6.2,-17 9,-27 1.3,-5 -4.8,-12 -6.7,-20 -1.9,-9 0.6,-19 4,-19 8.6,-2 21,-8 28,-13 6.9,-6 10,-23 7.5,-38 10,-11 48,-3 48,-3 0,0 -2.6,21 2.2,28 8.1,11 28.7,16 36,19 12.8,6 12.1,10 13.7,17 3.5,17 -6.5,36 -12.9,49 -4.1,12 -4.1,24 -7.3,35 -2.4,7 -5.6,14 -6.9,21 -1.6,7 -4.1,14 -4.1,22 0.8,9 4.1,20 8.6,28 4.8,9 12.1,25 16.1,39 4,12 4.8,25 5.6,37"
id="path4164"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccaccccccc" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3825-9-6"
d="m 228.8,2559 c 2.8,-1 10.5,-3 27.6,-3 19.1,0 51.4,4 76.1,7"
style="fill:none;stroke:#dba981;stroke-width:0.72100002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.163, 0.721;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-2-2"
d="m 232.5,2606 c -2.6,8 97.1,5 94.6,-2"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="caac"
inkscape:connector-curvature="0"
id="path3009-9-1"
d="m 347,2455 c -9.6,2 -15.7,7 -19.9,14 -7.5,13 -15.3,33 -5.6,45 5.2,6 19.5,7 24.3,0"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3011-4-0"
d="m 258,2410 c 0,0 5.9,4 16.8,4 24.2,-1 29.4,-7 29.4,-7"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path27580-6"
d="m 219.7,2510 c 3.2,5 30,11 41.4,11 24.9,1 62,1 81.8,4"
style="fill:none;stroke:#aaaaaa;stroke-width:2.01550007;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:8.062, 2.0155;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path27582-4"
d="m 214.8,2527 c 11.2,6 79.3,10 124.1,11"
style="fill:none;stroke:#aaaaaa;stroke-width:2.01550007;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:8.062, 2.0155;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path27584-5"
d="m 230.8,2560 c 16.4,3 61.7,1 101.7,4"
style="fill:none;stroke:#aaaaaa;stroke-width:2.01550007;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:8.062, 2.0155;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path27588-14"
d="m 233.3,2607 c 14.8,-7 78.5,-5 93.8,-3"
style="fill:none;stroke:#aaaaaa;stroke-width:2.01550007;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:8.062, 2.0155;stroke-dashoffset:0" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-47-4-93"
d="m 267.8,2612 c 0,6 -4.8,10 -10.9,10 -5.9,0 -10.8,-4 -10.8,-10 0,-6 4.9,-11 10.8,-11 6,0 10.8,5 10.9,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 220.1,2643 c -2.6,8 125.3,7 122.8,0"
id="path3878-2-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 267.8,2649 c 0,7 -4.8,11 -10.9,11 -5.9,0 -10.8,-4 -10.8,-11 0,-6 4.9,-10 10.8,-10 6,0 10.8,4 10.9,10"
id="path4050-8-0-5-3-4-47-4-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 217,2685 c -2.6,7 140.5,5 138,-2"
id="path3878-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 267.8,2691 c 0,6 -4.8,10 -10.9,10 -5.9,0 -10.8,-4 -10.8,-10 0,-6 4.9,-10 10.8,-10 6,0 10.8,4 10.9,10"
id="path4050-8-0-5-3-4-47-4-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#aaaaaa;stroke-width:1.61240005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6.4496, 1.6124;stroke-dashoffset:0"
d="m 254.9,2441 c 4.4,-12 49.7,-13 54.5,-4"
id="path27588-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
sodipodi:linespacing="125%"
id="text6787"
y="2616.8066"
x="253.306"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2616.8066"
x="253.306"
id="tspan6789"
sodipodi:role="line">7</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6791"
y="2654.2739"
x="253.53815"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2654.2739"
x="253.53815"
id="tspan6793"
sodipodi:role="line">8</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6795"
y="2695.8306"
x="253.37852"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2695.8306"
x="253.37852"
id="tspan6797"
sodipodi:role="line">9</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 230.5,2581 2.1,0 21.7,0 c 0,0 22.2,0 33.3,0 13.1,2 39.1,6 39.1,6"
id="path3874-2-5-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccac" />
<path
style="fill:none;stroke:#aaaaaa;stroke-width:2.01550007;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:8.062, 2.0155;stroke-dashoffset:0"
d="m 229.5,2583 c 16.5,3 56.7,1 97,4"
id="path27584-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 267.8,2580 c 0,5 -4.8,10 -10.9,10 -5.9,0 -10.8,-5 -10.8,-10 0,-6 4.9,-11 10.8,-11 6,0 10.8,5 10.9,11"
id="path4050-8-0-5-3-4-82-5-8-0"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="253.53815"
y="2584.6667"
id="text6783-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6785-5"
x="253.53815"
y="2584.6667">6</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3872-9-1"
d="m 215.7,2527 c 12,-4 113.1,0 124,8"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cccac"
inkscape:connector-curvature="0"
id="path3874-2-5"
d="m 230.5,2559 4.6,-1 21.7,-1 c 0,0 22,0 33.3,1 14.5,1 43.2,6 43.2,6"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path19718-1"
d="m 219.6,2510 c 59.6,-21 114.5,12 124.2,15"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-8-9-5"
d="m 267.8,2502 c 0,5 -4.8,10 -10.9,10 -5.9,0 -10.8,-5 -10.8,-10 0,-7 4.9,-12 10.8,-12 6,0 10.8,5 10.9,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-86-1-9"
d="m 267.8,2527 c 0,5 -4.8,10 -10.9,10 -5.9,0 -10.8,-5 -10.8,-10 0,-7 4.9,-12 10.8,-12 6,0 10.8,5 10.9,12"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-82-5-8"
d="m 267.8,2556 c 0,6 -4.8,11 -10.9,11 -5.9,0 -10.8,-5 -10.8,-11 0,-5 4.9,-10 10.8,-10 6,0 10.8,5 10.9,10"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text6771"
y="2505.781"
x="253.33498"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2505.781"
x="253.33498"
id="tspan6773"
sodipodi:role="line">3</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6779"
y="2531.2124"
x="253.52364"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2531.2124"
x="253.52364"
id="tspan6781"
sodipodi:role="line">4</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6783"
y="2561.2161"
x="253.44382"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2561.2161"
x="253.44382"
id="tspan6785"
sodipodi:role="line">5</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 254.9,2441 c -1.4,19 49.7,11 54.5,-3"
id="path3878-2-36"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cscc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 286,2451 c 0,5 -4.8,10 -10.7,10 -6,0 -10.8,-5 -10.8,-10 2.5,-16 21.5,-12 21.5,0"
id="path4050-8-0-5-3-4-47-4-52"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text6775"
y="2454.9871"
x="271.92188"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2454.9871"
x="271.92188"
id="tspan6777"
sodipodi:role="line">2</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path27588-27-1"
d="m 258.1,2420 c 6.3,-4 43.5,-4 46.6,2"
style="fill:none;stroke:#aaaaaa;stroke-width:1.61240005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6.4496, 1.6124;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-2-36-4"
d="m 258.5,2421 c 0,18 46.6,7 46.8,0"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-47-4-52-5"
d="m 286.4,2430 c 0,5 -4.8,10 -10.7,10 -6,0 -10.8,-5 -10.8,-10 2.5,-16 21.5,-12 21.5,0"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:nodetypes="cscc" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="272.40958"
y="2434.7561"
id="text6775-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6777-6"
x="272.40958"
y="2434.7561">1</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

View file

@ -0,0 +1,283 @@
<?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="146.04926"
height="303.23999"
id="svg7062"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 44">
<defs
id="defs7064" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="296.59605"
inkscape:cy="-48.380008"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata7067">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-78.40395,-180.74219)">
<g
style="display:inline"
id="g15369"
transform="matrix(0.8062,0,0,0.8062,-392.73933,-698.92324)">
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 604.9,1275 6,-1 26,-1 43,2 46,5"
id="path3874-7-8-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="caasac"
inkscape:connector-curvature="0"
id="path3817-6-4"
d="m 744.9,1228 c -4,2 -16,0 -24,-2 -12,-4 -23,-13 -36,-17 -13,-3 -24,-1 -41,-3 -13,-1 -25,0 -38,3 -4,1 -11,4 -11,4"
style="fill:none;stroke:#dba981;stroke-width:0.89429998;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.6829, 0.8943;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 591.9,1217 c 0,0 9,-6 14,-8 13,-3 26,-3 39,-3 12,0 25,0 37,3 19,5 42,22 54,23"
id="path3868-7-7-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccaac" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 632.9,1132 c -7,17 51,21 63,-1"
id="path3876-91-29-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 607.9,1336 c 25,5 76,10 108,0"
id="path3878-7-1-40"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 588.9,1236 c 0,0 34,0 51,0 9,0 18,0 27,0 22,0 44,1 67,4"
id="path3872-1-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
<path
sodipodi:nodetypes="csasc"
inkscape:connector-curvature="0"
id="path2993-6-7"
d="m 734.9,1229 c 2,3 -6,45 -14,66 -4,11 -8,20 -7,31 1,13 7,25 13,37 11,22 22,71 19,71"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="caac"
inkscape:connector-curvature="0"
id="path3009-0-7"
d="m 749.9,1147 c -15,4 -19,9 -24,18 -9,16 -18,40 -7,55 6,8 24,13 30,5"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3011-2-2"
d="m 637.9,1101 c 0,0 11,5 17,5 33,2 41,-9 41,-9"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-4-4-8"
d="m 658.9,1211 c 0,8 -6,14 -14,14 -7,0 -13,-6 -13,-14 0,-7 6,-13 13,-13 8,0 14,6 14,13"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-0-9-2"
d="m 658.9,1241 c 0,8 -6,14 -14,14 -7,0 -13,-6 -13,-14 0,-7 6,-13 13,-13 8,0 14,6 14,13"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-3-6-4"
d="m 657.9,1273 c 0,7 -6,13 -13,13 -7,0 -13,-6 -13,-13 0,-8 6,-14 13,-14 7,0 13,6 13,14"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-69-4"
d="m 658.9,1343 c 0,8 -6,14 -13,14 -7,0 -14,-6 -14,-14 0,-7 7,-13 14,-13 7,0 13,6 13,13"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text6811"
y="1217.324"
x="635.41296"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1217.324"
x="635.41296"
id="tspan6813"
sodipodi:role="line">11</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6815"
y="1247.248"
x="636.14197"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1247.248"
x="636.14197"
id="tspan6817"
sodipodi:role="line">12</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6819"
y="1278.561"
x="635.37708"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1278.561"
x="635.37708"
id="tspan6821"
sodipodi:role="line">13</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6827"
y="1349.223"
x="635.43103"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1349.223"
x="635.43103"
id="tspan6829"
sodipodi:role="line">15</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-1-4"
d="m 594.9,1375 c 17,9 104,11 136,2"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 658.9,1381 c 0,8 -6,14 -13,14 -7,0 -14,-6 -14,-14 0,-7 7,-13 14,-13 7,0 13,6 13,13"
id="path4050-8-0-5-3-4-654-1-69-04"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text6827-5"
y="1386.4231"
x="635.66504"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1386.4231"
x="635.66504"
id="tspan6829-9"
sodipodi:role="line">16</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-1-7"
d="m 585.9,1430 c 25,5 82,15 159,-1"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 658.9,1438 c 0,7 -6,13 -13,13 -7,0 -14,-6 -14,-13 0,-8 7,-14 14,-14 7,0 13,6 13,13"
id="path4050-8-0-5-3-4-654-1-69-8"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text6827-2"
y="1443.557"
x="635.44006"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1443.557"
x="635.44006"
id="tspan6829-1"
sodipodi:role="line">17</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 688.9,1104 c 3,10 0,17 5,23 10,13 31,17 44,20"
id="path3992-4-9-6-1-0-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<g
transform="translate(-590.1,961.4)"
style="stroke-linecap:round"
id="g14224">
<path
sodipodi:nodetypes="ccccccscccccscccaccccccc"
inkscape:connector-curvature="0"
id="path4174"
d="m 1178,504 c -2,-28.4 -2,-38.6 0,-57.7 2,-16.4 5,-32.7 9,-48.5 3,-8.9 9,-16.7 10,-25.8 2,-13.3 -2,-26.8 -3,-40.2 0,-6.2 2,-10.8 0,-18.4 -9,-8.2 -17,-27.5 -17,-40.2 0,-12.5 8,-20.5 11,-33 2,-6 -6,-14.8 -8,-25.1 -3,-10.4 0,-22.4 5,-23.3 10,-2.1 26,-8.9 35,-16.2 8,-7.2 7,-37.3 7,-37.3 0,0 1,-5.3 17,-6.5 15,-1.1 43,2.4 43,2.4 0,0 -2,16.9 4,25.1 11,13.7 36,19.7 46,24.2 15,6.8 14,12.2 16,20.8 4,20.6 -8,44.3 -15,61.2 -6,13.6 -6,29.1 -10,43.4 -3,8.6 -6,16.9 -9,25.6 -2,8.9 -5,17.8 -4,27 0,12.1 4,24.5 10,35 6,11 16,31 20,47.5 5,15.6 6,31.7 7,47.8"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 1265,184.5 c 0,7.4 -6,13.4 -13,13.4 -8,0 -14,-6 -14,-13.4 0,-7.4 6,-13.4 14,-13.4 7,0 13,6 13,13.3"
id="path4050-8-0-5-3-4-654-38-5-1"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="1242.3113"
y="190.58702"
id="text6823"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6825"
x="1242.3113"
y="190.58702">10</tspan></text>
</g>
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path3874-7-8-0-4"
d="m 606.5,1299 6,-1 26,-2 43,3 36,4"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csssc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 658.5,1305 c 0,7 -6,13 -13,13 -7,0 -13,-6 -13,-13 0,-8 6,-14 13,-14 7,0 13,6 13,14"
id="path4050-8-0-5-3-4-654-3-6-4-9"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="635.72705"
y="1310.5076"
id="text6819-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6821-1"
x="635.72705"
y="1310.5076">14</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

View file

@ -0,0 +1,284 @@
<?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="145.92702"
height="303.42053"
id="svg7224"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 47">
<defs
id="defs7226" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="250.81485"
inkscape:cy="0.36112071"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata7229">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-124.18515,-229.30277)">
<g
style="display:inline"
transform="matrix(0.8062,0,0,0.8062,-19.038501,22.260847)"
id="g10427">
<path
sodipodi:nodetypes="csasc"
inkscape:connector-curvature="0"
id="path2993-6-7-7"
d="m 328,394.7 c 2,3 -6,45 -14,66 -4,11 -8,20 -7,31 1,13 7,25 13,37 11,22 22,71 19,71"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 250.2,274.1 c -0.3,7.5 0.4,26 -1.8,38.7 -3.6,20.4 -14.3,43.4 -18.4,59.4 -2.5,9.8 -7.8,18.5 -8.4,28.3 -0.8,12.3 2.4,29.5 6.1,36.5 1.1,14 0.9,52.8 1.2,67.9 0.3,14.2 -3.6,28.3 -3.6,42.5 0,18 2.9,48.5 4.5,53.7"
id="path3992-4-9-6-1-0-0-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casacsac" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 227.8,440.8 c 0,0 30.2,-0.9 45.2,-0.1 15.4,0.8 46,5 46,5"
id="path3874-7-8-0-31"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
sodipodi:nodetypes="caac"
inkscape:connector-curvature="0"
id="path3817-6-4-2"
d="m 338,393.7 c -4,2 -16,0 -24,-2 -12,-4 -23,-13 -36,-17 -13,-3 -24,-1 -41,-3"
style="fill:none;stroke:#dba981;stroke-width:0.89429998;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.6829, 0.8943;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 230.1,371.7 c 14.7,-0.2 30.3,-0.5 44.9,3 19,4.5 42,22 54,23"
id="path3868-7-7-4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 248.2,312.5 c 15.1,0.4 34.8,-4.8 40.8,-15.8"
id="path3876-91-29-8-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 229.2,506.6 c 26.6,1.5 63.8,0.1 79.8,-4.9"
id="path3878-7-1-40-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 222.2,401.7 c 12.6,0 28.8,0 37.8,0 22,0 44,1 67,4"
id="path3872-1-8-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
<path
sodipodi:nodetypes="caac"
inkscape:connector-curvature="0"
id="path3009-0-7-2"
d="m 343,312.7 c -15,4 -19,9 -24,18 -9,16 -18,40 -7,55 6,8 24,13 30,5"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3011-2-2-1"
d="m 231,266.7 c 0,0 11,5 17,5 33,2 41,-9 41,-9"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-4-4-8-1"
d="m 271.5,376.3 c 0,8 -6,14 -14,14 -7,0 -13,-6 -13,-14 0,-7 6,-13 13,-13 8,0 14,6 14,13"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-0-9-2-4"
d="m 271.5,406.3 c 0,8 -6,14 -14,14 -7,0 -13,-6 -13,-14 0,-7 6,-13 13,-13 8,0 14,6 14,13"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-3-6-4-8"
d="m 271,438.3 c 0,7 -6,13 -13,13 -7,0 -13,-6 -13,-13 0,-8 6,-14 13,-14 7,0 13,6 13,14"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-69-4-0"
d="m 271.5,508.3 c 0,8 -6,14 -13,14 -7,0 -14,-6 -14,-14 0,-7 7,-13 14,-13 7,0 13,6 13,13"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text6811-3"
y="382.91101"
x="249.243"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="382.91101"
x="249.243"
id="tspan6813-8"
sodipodi:role="line">19</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6815-0"
y="412.85699"
x="249.315"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="412.85699"
x="249.315"
id="tspan6817-5"
sodipodi:role="line">20</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6819-5"
y="443.85699"
x="249.13499"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="443.85699"
x="249.13499"
id="tspan6821-6"
sodipodi:role="line">21</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6827-28"
y="514.85699"
x="249.63901"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="514.85699"
x="249.63901"
id="tspan6829-5"
sodipodi:role="line">23</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-1-4-5"
d="m 225.8,548.5 c 32.7,2.4 82.2,-1.3 98.2,-5.8"
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 271.5,546.3 c 0,8 -6,14 -13,14 -7,0 -14,-6 -14,-14 0,-7 7,-13 14,-13 7,0 13,6 13,13"
id="path4050-8-0-5-3-4-654-1-69-04-8"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text6827-5-7"
y="552.85699"
x="248.87399"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="552.85699"
x="248.87399"
id="tspan6829-9-4"
sodipodi:role="line">24</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-1-7-5"
d="m 230.3,602.4 c 27,1.1 69.2,0.3 107.7,-7.7"
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 271.5,603.3 c 0,7 -6,13 -13,13 -7,0 -14,-6 -14,-13 0,-8 7,-14 14,-14 7,0 13,6 13,13"
id="path4050-8-0-5-3-4-654-1-69-8-2"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text6827-2-1"
y="608.85699"
x="249.23399"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="608.85699"
x="249.23399"
id="tspan6829-1-6"
sodipodi:role="line">25</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 282,269.7 c 3,10 0,17 5,23 10,13 31,17 44,20"
id="path3992-4-9-6-1-0-0-15"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 181,631.1 c -2,-28.4 -2,-38.6 0,-57.7 2,-16.4 4.5,-32.7 9,-48.5 2.5,-8.9 8.3,-16.7 10,-25.8 3.1,-17.2 1.9,-37.7 -0.5,-52.5 -2.1,-13.8 -18.5,-22.9 -19.5,-46.3 0,-12.5 8,-20.5 11,-33 2,-6 -6,-14.8 -8,-25.1 -3,-10.4 0,-22.4 5,-23.3 10,-2.1 26,-8.9 35,-16.2 8,-7.2 7,-37.3 7,-37.3 0,0 1,-5.3 17,-6.5 15,-1.1 43,2.4 43,2.4 0,0 -2,16.9 4,25.1 11,13.7 36,19.7 46,24.2 15,6.8 14,12.2 16,20.8 4,20.6 -8,44.3 -15,61.2 -6,13.6 -6,29.1 -10,43.4 -3,8.6 -6,16.9 -9,25.6 -2,8.9 -5,17.8 -4,27 0,12.1 4,24.5 10,35 6,11 16,31 20,47.5 5,15.6 6,31.7 7,47.8"
id="path4174-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccaacccccccscccaccccccc" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-38-5-1-3"
d="m 287.5,311.2 c 0,7.4 -6,13.4 -13,13.4 -8,0 -14,-6 -14,-13.4 0,-7.4 6,-13.4 14,-13.4 7,0 13,6 13,13.3"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text6823-2"
y="317.25699"
x="265.06299"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="317.25699"
x="265.06299"
id="tspan6825-4"
sodipodi:role="line">18</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3874-7-8-0-4-7"
d="m 229.1,464.9 c 26.4,-0.3 54.7,0.8 81.5,3.8"
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csssc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 271,470.3 c 0,7 -6,13 -13,13 -7,0 -13,-6 -13,-13 0,-8 6,-14 13,-14 7,0 13,6 13,14"
id="path4050-8-0-5-3-4-654-3-6-4-9-1"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="248.91"
y="475.85699"
id="text6819-7-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6821-1-0"
x="248.91"
y="475.85699">22</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

View file

@ -0,0 +1,271 @@
<?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="150.50011"
height="305.64102"
id="svg7384"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 50">
<defs
id="defs7386" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="233.10714"
inkscape:cy="15.679044"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata7389">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-141.89286,-242.4002)">
<g
style="display:inline"
id="g17261"
transform="translate(-258.10714,-2163.4617)">
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 403.9,2710 c -0.8,-14 0.8,-29 2.4,-44 1.7,-13 3.3,-26 7.3,-39 1.6,-7 7.3,-13 8.1,-21 0.8,-9 -1.7,-18 -3.3,-27 -0.8,-6 -3.2,-12 -4.8,-18 -4,-12 -12.1,-24 -12.1,-34 0.8,-10 0,-11 3.2,-21 0.8,-4 0,-20 -1.6,-28 -2.4,-8 4.9,-16 8.1,-17 8.8,-2 20.9,-7 28.2,-13 6.4,-6 8.1,-12 5.6,-27 -0.8,-8 12.9,-10 21,-12 8.1,-1 19.3,-4 25.8,2 6.4,5 0,17 4.8,24 8.9,11 29.1,16 37.1,19 12.1,6 12.1,10 13.7,17 3.3,17 -7.2,36 -12.9,49 -4.8,11 -8,23 -11.3,34 -1.6,7 -3.2,13 -4,20 -2.4,11 -8.1,22 -5.6,33 2.4,10 12.1,18 16.9,24 6.4,9 11.3,20 14.5,31 3.2,14 4,30 4,45"
id="path4178"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-3-2"
d="m 429.7,2564 c 29,5 86.3,5 92.7,-5"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-5-7"
d="m 500.7,2436 c -16.2,-11 -40.3,-3 -53.2,3"
style="fill:none;stroke:#dba981;stroke-width:0.72100002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.163, 0.721;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 420,2521 c 4.1,34 19.4,55 16.2,84 -1.6,15 -13.7,23 -15.3,90"
id="path2989-9-1-3-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
<path
sodipodi:nodetypes="caaaac"
inkscape:connector-curvature="0"
id="path6792-8"
d="m 403.9,2509 c 0,0 2.4,11 7.3,13 2.4,1 4.8,0 7.2,-2 5.7,-5 7.3,-14 8.1,-23 0,-5 -2.4,-12 -4.8,-18 -1.7,-6 -8.1,-17 -8.1,-17"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-3-7"
d="m 436.2,2607 c 32.2,4 66.9,0 77.4,-6"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-1-0"
d="m 517.6,2563 c 0,6 -4.8,11 -11.3,11 -5.6,0 -10.5,-5 -10.5,-11 0,-6 4.9,-10 10.5,-10 6.5,0 11.3,4 11.3,10"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-1-9"
d="m 489.4,2607 c 0,6 -4.9,11 -11.3,11 -5.7,0 -10.5,-5 -10.5,-11 0,-6 4.8,-11 10.5,-11 6.4,0 11.3,5 11.3,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 450.7,2416 c 1.6,9 4,16 0,23 -4.9,10 -18.6,17 -28.2,20"
id="path3992-4-9-6-4-9-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-3"
d="m 421.7,2526 c 32.2,5 109.6,4 112,-4"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-1-4"
d="m 457.9,2523 c 0,6 -4.8,11 -10.4,11 -6.5,0 -11.3,-5 -11.3,-11 0,-6 4.8,-11 11.3,-11 5.6,0 10.4,5 10.4,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-3-0"
d="m 452.3,2437 c 26.6,-8 34.7,-7 44.3,-4"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csssc"
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-1-4-2"
d="m 489.4,2433 c 0,6 -4.9,11 -10.5,11 -6.5,0 -11.3,-5 -11.3,-11 0,-6 4.8,-11 11.3,-11 5.6,0 10.5,5 10.5,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-3-6"
d="m 428.1,2639 c 32.3,5 87.9,-2 97.6,-10"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-1-4-3"
d="m 517.6,2639 c 0,6 -4.8,11 -10.5,11 -6.4,0 -11.3,-5 -11.3,-11 0,-6 4.9,-10 11.3,-10 5.7,0 10.5,4 10.5,10"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-3-9"
d="m 422.5,2692 c 32.2,5 113.6,0 123.3,-8"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-1-4-1"
d="m 489.4,2694 c 0,6 -4.9,11 -10.5,11 -6.5,0 -11.3,-5 -11.3,-11 0,-6 4.8,-11 11.3,-11 5.6,0 10.5,5 10.5,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text11310"
y="2611.874"
x="471.2395"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2611.874"
x="471.2395"
id="tspan11312"
sodipodi:role="line">31</tspan></text>
<text
sodipodi:linespacing="125%"
id="text11314"
y="2644.2468"
x="499.85596"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2644.2468"
x="499.85596"
id="tspan11316"
sodipodi:role="line">32</tspan></text>
<text
sodipodi:linespacing="125%"
id="text11318"
y="2698.7202"
x="471.28299"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2698.7202"
x="471.28299"
id="tspan11320"
sodipodi:role="line">33</tspan></text>
<text
sodipodi:linespacing="125%"
id="text11322"
y="2437.8733"
x="470.76791"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2437.8733"
x="470.76791"
id="tspan11324"
sodipodi:role="line">26</tspan></text>
<text
sodipodi:linespacing="125%"
id="text11326"
y="2527.8171"
x="439.2269"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2527.8171"
x="439.2269"
id="tspan11328"
sodipodi:role="line">27</tspan></text>
<text
sodipodi:linespacing="125%"
id="text11334"
y="2568.2625"
x="499.59476"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2568.2625"
x="499.59476"
id="tspan11336"
sodipodi:role="line">29</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-3-5"
d="m 424.1,2538 c 43.5,6 103.2,5 104.8,-3"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-1-5"
d="m 489.4,2543 c 0,6 -4.9,11 -11.3,11 -6.5,0 -10.5,-5 -10.5,-11 0,-6 4,-11 10.5,-11 6.4,0 11.3,5 11.3,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text11330"
y="2547.7676"
x="470.68082"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="2547.7676"
x="470.68082"
id="tspan11332"
sodipodi:role="line">28</tspan></text>
<path
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 436.7,2584 c 29,5 74.9,4 81.4,-6"
id="path3878-7-3-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.08140004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 457.6,2586 c 0,6 -4.8,11 -11.3,11 -5.6,0 -10.4,-5 -10.4,-11 0,-6 4.8,-11 10.4,-11 6.5,0 11.3,5 11.3,11"
id="path4050-8-0-5-3-4-654-1-1-0-8"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="440.26862"
y="2590.9192"
id="text11334-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11336-4"
x="440.26862"
y="2590.9192">30</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

View file

@ -0,0 +1,276 @@
<?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="150.55785"
height="306.2731"
id="svg7541"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 53">
<defs
id="defs7543" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="307.42178"
inkscape:cy="-38.197221"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata7546">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-67.578219,-187.89186)">
<g
style="display:inline"
transform="matrix(0.8062,0,0,0.8062,-227.20478,-13.800219)"
id="g10468">
<g
id="g17151"
transform="translate(-64.48,-6.613)">
<path
sodipodi:nodetypes="cccsc"
inkscape:connector-curvature="0"
id="path3992-4-9-6-4-9-2-9"
d="m 529.2,259.3 c 0.5,2.7 1.5,11.8 2.2,29.1 6.6,36.1 26.5,55.8 24,120.9 -0.5,32.3 -11.6,75.3 -8.3,95.7 5.8,35.3 27.2,52 26.5,105.4"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
inkscape:connector-curvature="0"
id="path4178-3"
d="m 435,634.6 c -1,-18.2 1,-36.5 3,-54.6 2,-16.4 4,-32.8 9,-48.7 2,-8.8 9,-16.6 10,-25.7 1,-11.3 -2,-22.8 -4,-33.9 -1,-7.6 -4,-15 -6,-22.3 -5,-14.3 -15,-29.9 -15,-42.6 1,-12.5 0,-12.6 4,-25.1 1,-6 0,-25 -2,-35.4 -3,-10.3 6,-20 10,-20.9 11,-2.1 26,-8.9 35,-16.1 8,-7.3 10,-15 7,-33.8 -1,-9.1 16,-11.9 26,-14.1 10,-2.4 24,-5.4 32,1.5 8,6.7 0,21.9 6,30 11,13.8 36,19.8 46,24.1 15,6.9 15,12.3 17,21 4,20.5 -10,40.9 -16,61.1 -4.2,14.1 -10.3,27.6 -14,41.8 -5.6,21.7 -14.9,50.7 -12,66 3,11.8 15,21.4 21,29.6 8,11.3 14,24.6 18,37.9 4,18 5,36.9 5,55.5"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="cccccccccccccccccaacccc" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 467.5,449.5 c 18,3.2 36.4,5.8 82.9,3.8"
id="path3878-7-3-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path2989-9-1-3-4-8"
d="m 455,399.9 c 5,42 24,68.1 20,103.7 -2,19.5 -17,28.8 -19,111.5"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 435,384.7 c 0,0 3,13.4 9,16.1 3,0.9 6.8,0.3 9,-1.8 6.8,-6.6 5.8,-18.2 6.4,-27.6 0.5,-7.8 -0.3,-15.8 -2.4,-23.4 -2.1,-7.6 -10,-21.5 -10,-21.5"
id="path6792-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caaaac" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 475,506.4 c 20,2.4 33,4.6 71.9,0.6"
id="path3878-7-3-7-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 503.8,453 c 0,7.4 -6,13.5 -14,13.5 -7,0 -13,-6.1 -13,-13.5 0,-7.4 6,-13.4 13,-13.4 8,0 14,6 14,13.4"
id="path4050-8-0-5-3-4-654-1-1-0-84"
inkscape:connector-curvature="0" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 503.8,507.6 c 0,7.4 -6,13.4 -14,13.4 -7,0 -13,-6 -13,-13.4 0,-7.4 6,-13.4 13,-13.4 8,0 14,5.9 14,13.3"
id="path4050-8-0-5-3-4-654-1-1-9-3"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cac"
inkscape:connector-curvature="0"
id="path3992-4-9-6-4-9-2-4"
d="m 493,270 c 2,10.8 5,19.9 0,28.3 -6,12.7 -23,21.1 -35,24.2"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 457,405.8 c 20,3.2 53.6,7.7 98.8,3.7"
id="path3878-7-3-25"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 503.8,404.9 c 0,7.4 -6,13.4 -13,13.4 -8,0 -14,-6 -14,-13.4 0,-7.4 6,-13.4 14,-13.4 7,0 13,6 13,13.3"
id="path4050-8-0-5-3-4-654-1-1-4-28"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 495,295.3 c 16.5,-4.7 27.2,-6.7 35.4,-7"
id="path3878-7-3-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 532.1,299.9 c 0,7.4 -6,13.4 -13,13.4 -8,0 -14,-6 -14,-13.4 0,-7.4 6,-13.4 14,-13.4 7,0 13,6 13,13.3"
id="path4050-8-0-5-3-4-654-1-1-4-2-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssc" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 462.9,546 c 20,3.2 41.9,7.8 97.2,-1.6"
id="path3878-7-3-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 532.1,544.7 c 0,7.4 -6,13.4 -13,13.4 -8,0 -14,-6 -14,-13.4 0,-7.4 6,-13.4 14,-13.4 7,0 13,6 13,13.3"
id="path4050-8-0-5-3-4-654-1-1-4-3-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 455.9,613.6 c 20,3.2 41.8,11.6 118.9,-0.5"
id="path3878-7-3-9-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 503.8,614.2 c 0,7.4 -6,13.4 -13,13.4 -8,0 -14,-6 -14,-13.4 0,-7.4 6,-13.4 14,-13.4 7,0 13,6 13,13.3"
id="path4050-8-0-5-3-4-654-1-1-4-1-9"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="481.66"
y="513.65851"
id="text11310-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11312-7"
x="481.66"
y="513.65851">39</tspan></text>
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="509.65399"
y="550.73724"
id="text11314-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11316-5"
x="509.65399"
y="550.73724">40</tspan></text>
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="481.58801"
y="620.35602"
id="text11318-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11320-6"
x="481.58801"
y="620.35602">41</tspan></text>
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="509.08701"
y="306.03296"
id="text11322-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11324-1"
x="509.08701"
y="306.03296">34</tspan></text>
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="480.60699"
y="410.93332"
id="text11326-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11328-1"
x="480.60699"
y="410.93332">35</tspan></text>
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="482.065"
y="459.0506"
id="text11334-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11336-5"
x="482.065"
y="459.0506">37</tspan></text>
<path
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 460,421.2 c 18.8,3.6 51.8,7.8 93.7,4.6"
id="path3878-7-3-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 532.1,430.7 c 0,7.4 -6,13.4 -14,13.4 -8,0 -13,-6 -13,-13.4 0,-7.4 5,-13.4 13,-13.4 8,0 14,6 14,13.3"
id="path4050-8-0-5-3-4-654-1-1-5-6"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="509.63599"
y="436.70483"
id="text11330-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11332-1"
x="509.63599"
y="436.70483">36</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-3-2-6-4"
d="m 474.5,476.6 c 18,3.1 27.8,5.7 73.5,2.7"
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-654-1-1-0-8-4"
d="m 532.1,476.4 c 0,7.4 -6,13.5 -14,13.5 -7,0 -13,-6.1 -13,-13.5 0,-7.4 6,-13.4 13,-13.4 8,0 14,6 14,13.4"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.34140003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text11334-5-7"
y="482.54831"
x="509.60001"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="482.54831"
x="509.60001"
id="tspan11336-4-8"
sodipodi:role="line">38</tspan></text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,165 @@
<?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="115.02623"
height="442.34692"
id="svg7705"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 57">
<defs
id="defs7707" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="323.94168"
inkscape:cy="-58.826541"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata7710">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-51.058316,-31.188729)">
<g
id="g6411"
transform="matrix(0.7332,0,0,0.7332,-942.57251,-732.62556)"
style="stroke-linecap:round;display:inline">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3829-9-1-88-5-4-9-3"
d="m 1420,1161 c 0,-23 8,-96 12,-111"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<g
transform="translate(-601,-126.1)"
id="g16199-5"
style="stroke-linecap:round">
<g
transform="translate(-64.42,-23.1)"
id="g11609-0"
style="stroke-linecap:round">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
style="fill:none;stroke:#aaaaaa;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 2105,1288 c 38,0 71,3 71,11"
id="path3833-4-2-49-8-2-4" />
<path
inkscape:transform-center-y="23.96"
inkscape:transform-center-x="-101.8"
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
style="opacity:0.2;fill:#4b7dc8;fill-opacity:1;stroke:none"
d="m 2176,1208 c 0,-11 -39,-12 -60,-12 l -1,139 c 23,0 61,-4 61,9"
id="path4790-7-3" />
<path
style="fill:none;stroke:#dba981;stroke-width:4.09130001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 2066,1193 c -2,13 -9,25 -14,37 -9,27 -30,52 -29,81 0,21 24,62 24,62 0,0 -3,64 -4,97 -1,20 -1,41 -3,61 -1,6 -2,10 -2,14 -5,18 -14,35 -15,54 -3,42 15,84 16,126 1,8 -1,16 -1,24 0,7 -3,15 1,19 3,5 9,6 14,8 5,2 10,2 16,4 11,3 22,10 35,11 17,3 46,0 52,-4 5,-3 0,-9 -2,-12 -4,-5 -13,-7 -17,-9 -12,-6 -24,-15 -35,-21 -8,-5 -16,-7 -21,-14 0,-4 -1,-14 1,-25 3,-25 5,-46 7,-86 1,-20 1,-40 6,-59 1,-9 6,-18 9,-26 7,-17 14,-34 18,-52 12,-38 28,-89 26,-129"
id="path2997-1-2-9-0-8-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cacccccccsscccscccccscccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3829-9-1-88-5-4-9"
d="m 2163,1201 c -35,-1 -77,-1 -97,-9"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="ccc"
style="fill:none;stroke:#dba981;stroke-width:4.09130001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 2147,1347 c -12,-79 23,-88 24,-113 2,-11 -6,-23 -6,-33"
id="path17963-8-6"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-0-3-0-8-3"
d="m 2175,1337 c 1,12 -78,9 -78,9 l 3,-136 c 0,0 75,1 75,-10"
style="opacity:0.2;fill:#4b7dc8;fill-opacity:1;stroke:none;stroke-width:1.5;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 2176,1298 c 0,10 -52,13 -91,13"
id="path5623-2-9"
inkscape:connector-curvature="0" />
<g
id="g16307-5"
style="stroke-linecap:round">
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.49950004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-5-2-4-1-7-6"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.7396,0,0,0.7396,2101,1274)" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="2135.3987"
y="1317.7465"
id="text14574-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan14576-1"
x="2135.3987"
y="1317.7465">42</tspan></text>
</g>
</g>
</g>
<path
sodipodi:nodetypes="cccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path19819-4-7"
d="m 1416,1175 0,1 1,0 -1,1 1,1 0,1 0,1 0,1 1,0 13,-2 13,-3 1,-1 -1,-1 0,-1 -1,0 1,-2 -1,0 0,-1 c 0,0 0,-1 0,-1 z"
style="fill:#ffc8c8;fill-opacity:1;stroke:#dba981;stroke-width:1.01890004;stroke-linecap:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path19819-8-4"
d="m 1427,1144 0,1 -1,1 0,1 1,1 -2,1 1,1 0,0 1,1 10,2 11,1 0,-1 0,-1 0,-1 0,-1 0,-1 0,0 0,-1 c 0,-1 0,-1 0,-1 z"
style="fill:#ffc8c8;fill-opacity:1;stroke:#dba981;stroke-width:0.91780001;stroke-linecap:round;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

View file

@ -0,0 +1,142 @@
<?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="155.39711"
height="131.33072"
id="svg7793"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 60">
<defs
id="defs7795" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="341.26897"
inkscape:cy="-97.130952"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata7798">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-33.731026,-303.90052)">
<g
style="display:inline"
id="g7174"
transform="matrix(0.8062,0,0,0.8062,-1066.8327,-547.54746)">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-8-5-0-3-8-3-8-9-0"
d="m 1552,1132 c -4,-12 -177,-19 -180,-9"
style="fill:none;stroke:#aaaaaa;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.5, 2.5;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="fill:none;stroke:#aaaaaa;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.5, 2.5;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 1554,1153 c -1,-9 -181,-14 -185,-9"
id="path7494-1-6-3-5-7-8-5-0-3-8-3-8-9-0-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
id="path21199"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1367,1182 c 1,-9 2,-22 4,-35 1,-7 1,-14 3,-20 m 31,11 c -2,17 -7,37 -13,57 m 26,22 c -3,-24 -10,-50 -14,-68 m 117,-6 c -3,24 -17,53 -15,74 m 26,-22 c -6,-21 -8,-24 -13,-40 m -145,-30 c 6,-14 13,-27 25,-35 11,-7 26,-5 36,-13 6,-5 5,-12 5,-19 0,0 13,1 21,1 8,0 23,-1 23,-1 0,9 0,17 6,21 14,8 27,8 36,14 4,3 10,9 13,14 8,13 11,28 13,42 2,11 3,23 4,33"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-8-5-0-3-8-3-8-06"
d="m 1552,1132 c -3,8 -174,0 -180,-9"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(0.7396,0,0,0.7396,1383,1088)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-1-7-6-4"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.49950004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text14574-7-8"
y="1131.3373"
x="1417.2163"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1131.3373"
x="1417.2163"
id="tspan14576-1-29"
sodipodi:role="line">43</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 1554,1153 c 2,12 -186,6 -185,-9"
id="path7494-1-6-3-5-7-8-5-0-3-8-3-8-06-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.49950004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-9-9-5-9-1-5-2-4-1-7-6-4-7"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="20"
sodipodi:ry="20"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.7396,0,0,0.7396,1449,1126)" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="1482.6298"
y="1169.2131"
id="text14574-7-8-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan14576-1-29-7"
x="1482.6298"
y="1169.2131">44</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

View file

@ -0,0 +1,111 @@
<?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="166.82072"
height="458.77643"
id="svg7867"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 63">
<defs
id="defs7869" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="295.5532"
inkscape:cy="57.959646"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata7872">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-79.446805,-131.54538)">
<g
style="display:inline"
id="g20829"
transform="matrix(0.8062,0,0,0.8062,-1168.501,-748.93748)">
<path
inkscape:connector-curvature="0"
id="path21201-7"
d="m 1600,1214 c -3,-13 -4,-22 -7,-35"
style="fill:none;stroke:#dba981;stroke-width:3.68630004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
id="path21199-8"
style="fill:#ffffff;fill-opacity:1;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1595,1175 c -2,17 -7,37 -13,57 0,0 0,7 0,18 1,12 -6,60 -6,60 -1,8 -1,10 2,17 l 4,5 4,8 c 1,4 7,7 12,10 0,0 1,2 0,2 -1,1 -11,-1 -11,-1 -4,-1 -3,-1 -5,-1 1,6 2,9 3,18 l -1,15 c -2,3 -2,5 -6,6 -2,1 -6,-4 -8,-7 -2,-3 -4,-4 -6,-7 -2,-5 -3,-17 -3,-17 l -3,-8 c 0,0 0,-8 0,-12 0,-5 1,-10 1,-14 0,-10 -2,-20 -4,-30 -1,-8 -2,-15 -2,-23 -1,-8 -4,-15 -3,-22 0,-6 7,-24 7,-30 1,-9 2,-22 4,-35 1,-7 1,-14 3,-20 m 147,16 c -3,24 -17,53 -15,74 0,6 4,11 7,16 4,12 8,21 11,33 4,13 5,30 5,43 -1,17 -3,31 -5,48 -3,18 -7,34 -10,51 -1,8 -4,17 -4,26 0,6 3,11 4,17 2,12 3,22 2,34 -1,10 -3,20 -3,30 -2,11 -3,18 -3,29 0,4 3,17 3,17 l 2,17 c 3,12 10,26 4,34 -7,7 -11,15 -22,7 -3,-4 -6,-12 -7,-18 -3,-11 -4,-22 -4,-33 0,-4 0,-11 0,-11 0,0 0,-15 -1,-23 -1,-14 -7,-29 -10,-44 -1,-12 2,-25 0,-38 0,-7 -1,-14 -2,-20 -2,-22 -1,-45 -4,-68 -1,-13 -6,-42 -6,-42 0,0 -5,28 -6,41 -3,23 -6,47 -8,69 0,6 -1,13 -2,20 0,13 2,25 0,38 -1,14 -7,29 -9,43 0,9 0,24 0,24 0,0 -1,6 -1,10 -1,11 -1,23 -4,34 -2,6 -3,13 -7,17 -15,9 -14,1 -21,-6 -8,-9 0,-22 3,-35 l 3,-16 c 0,0 1,-10 2,-15 0,-11 -1,-21 -2,-32 -1,-10 -4,-19 -4,-29 0,-12 1,-20 2,-31 1,-7 3,-14 4,-20 0,-9 -3,-18 -5,-26 -2,-17 -5,-40 -7,-57 -3,-17 -5,-29 -5,-46 -1,-13 0,-29 3,-42 3,-11 7,-19 12,-30 3,-5 6,-10 7,-16 1,-13 -6,-26 -8,-40 m -36,-52 c 3,-7 5,-12 9,-18 4,-6 9,-13 16,-17 11,-7 26,-5 36,-13 6,-5 5,-12 6,-20 0,0 12,2 20,2 8,0 23,-1 23,-1 0,9 0,17 6,21 14,8 25,7 36,14 5,4 10,8 13,14 7,13 11,28 13,42 2,11 3,23 4,33 1,6 7,24 7,30 0,7 -2,14 -3,22 -1,7 -2,15 -3,23 -1,10 -4,29 -4,29 1,3 0,1 1,8 l 0,7 -1,11 -2,8 c 0,0 -1,12 -3,17 -2,4 -3,5 -7,7 -2,4 -4,9 -8,8 -3,-1 -5,-4 -5,-7 l 0,-14 c 0,-9 0,-13 1,-18 -1,-1 -1,-2 -5,1 0,0 -9,2 -10,1 -1,-2 0,-2 0,-2 5,-4 10,-6 12,-10 l 3,-9 6,-4 c 0,0 1,-4 1,-12 0,0 -6,-53 -6,-66 1,-12 2,-17 2,-17 -6,-21 -9,-23 -14,-39"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-8-5-0-3-8-3-8-0-4-6"
d="m 1653,1363 c -19,1 -57,-238 -42,-241"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-8-5-0-3-8-3-8-9-5-3-6"
d="m 1652,1363 c 14,0 -24,-253 -40,-243"
style="fill:none;stroke:#aaaaaa;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.5, 2.5;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(0.7396,0,0,0.7396,1581,1262)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-1-7-6-6-2"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.49950004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text14574-7-2-4"
y="1305.6613"
x="1615.0177"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1305.6613"
x="1615.0177"
id="tspan14576-1-2-9"
sodipodi:role="line">45</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,164 @@
<?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="115.1124"
height="442.34692"
id="svg7942"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 66">
<defs
id="defs7944" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="292.5562"
inkscape:cy="46.887739"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata7947">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-82.443796,-136.90301)">
<g
id="g6411-5"
transform="matrix(0.7332,0,0,0.7332,-911.10086,-626.91128)"
style="stroke-linecap:round;display:inline">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3829-9-1-88-5-4-9-3-0"
d="m 1420,1161 c 0,-23 8,-96 12,-111"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<g
transform="translate(-601,-126.1)"
id="g16199-5-9"
style="stroke-linecap:round">
<g
transform="translate(-64.42,-23.1)"
id="g11609-0-7"
style="stroke-linecap:round">
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-8-3-9-0-3-0-8-3-2"
d="m 2175,1337 c 1,12 -78,9 -78,9 l 3,-136 c 0,0 75,1 75,-10"
style="opacity:0.2;fill:#4b7dc8;fill-opacity:1;stroke:none;stroke-width:1.5;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
style="fill:none;stroke:#7dc832;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0"
d="m 2176,1299 c 0,-8 -33,-11 -71,-11 -41,0 -81,2 -83,12"
id="path3833-4-2-49-8-2-4-3" />
<path
inkscape:transform-center-y="23.96"
inkscape:transform-center-x="-101.8"
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
style="opacity:0.2;fill:#4b7dc8;fill-opacity:1;stroke:none"
d="m 2176,1208 c 0,-11 -39,-12 -60,-12 l -1,139 c 23,0 61,-4 61,9"
id="path4790-7-3-1" />
<path
style="fill:none;stroke:#dba981;stroke-width:4.09130001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 2066,1193 c -2,13 -9,25 -14,37 -9,27 -30,52 -29,81 0,21 24,62 24,62 0,0 -3,64 -4,97 -1,20 -1,41 -3,61 -1,6 -2,10 -2,14 -5,18 -14,35 -15,54 -3,42 15,84 16,126 1,8 -1,16 -1,24 0,7 -3,15 1,19 3,5 9,6 14,8 5,2 10,2 16,4 11,3 22,10 35,11 17,3 46,0 52,-4 5,-3 0,-9 -2,-12 -4,-5 -13,-7 -17,-9 -12,-6 -24,-15 -35,-21 -8,-5 -16,-7 -21,-14 0,-4 -1,-14 1,-25 3,-25 5,-46 7,-86 1,-20 1,-40 6,-59 1,-9 6,-18 9,-26 7,-17 14,-34 18,-52 12,-38 28,-89 26,-129"
id="path2997-1-2-9-0-8-5-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cacccccccsscccscccccscccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3829-9-1-88-5-4-9-9"
d="m 2163,1201 c -35,-1 -77,-1 -97,-9"
style="fill:none;stroke:#dba981;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 2;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="ccc"
style="fill:none;stroke:#dba981;stroke-width:4.09170008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 2147,1347 c -12,-79 23,-88 24,-113 2,-11 -6,-23 -6,-33"
id="path17963-8-6-5"
inkscape:connector-curvature="0" />
<g
id="g16307-5-0"
style="stroke-linecap:round" />
<path
sodipodi:nodetypes="csc"
style="fill:none;stroke:#7dc832;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 2176,1298 c 0,10 -60,13 -91,13 -32,0 -63,-1 -63,-10"
id="path5623-2-9-6"
inkscape:connector-curvature="0" />
</g>
</g>
<path
sodipodi:nodetypes="cccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path19819-4-7-7"
d="m 1416,1175 0,1 1,0 -1,1 1,1 0,1 0,1 0,1 1,0 13,-2 13,-3 1,-1 -1,-1 0,-1 -1,0 1,-2 -1,0 0,-1 c 0,0 0,-1 0,-1 z"
style="fill:#ffc8c8;fill-opacity:1;stroke:#dba981;stroke-width:1.01890004;stroke-linecap:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path19819-8-4-7"
d="m 1427,1144 0,1 -1,1 0,1 1,1 -2,1 1,1 0,0 1,1 10,2 11,1 0,-1 0,-1 0,-1 0,-1 0,-1 0,0 0,-1 c 0,-1 0,-1 0,-1 z"
style="fill:#ffc8c8;fill-opacity:1;stroke:#dba981;stroke-width:0.91780001;stroke-linecap:round;stroke-opacity:1" />
</g>
<path
transform="matrix(0.5963,0,0,0.5963,73.699148,196.08872)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 77.75,50.32 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.005217,0 19.942666,8.891225 19.999731,19.896294"
sodipodi:ry="20"
sodipodi:rx="20"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-9-9-5-9-1-5-2-4-1-7-6-6-2-9"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.49950004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text14574-7-2-4-5"
y="231.07211"
x="101.17718"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="231.07211"
x="101.17718"
id="tspan14576-1-2-9-9"
sodipodi:role="line">46</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

View file

@ -0,0 +1,164 @@
<?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="164.47491"
height="216.64246"
id="svg8070"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 69">
<defs
id="defs8072" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="234.38032"
inkscape:cy="-105.9645"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata8075">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-140.61968,-209.75522)">
<g
style="display:inline"
id="g22101"
transform="matrix(0.8062,0,0,0.8062,-80.963983,-1228.5209)">
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 341.9,2048 c 0,0 4,-50 -0.9,-74 -4.6,-1 -18.5,-24 -18.7,-46 -0.1,-12 4.1,-21 11.1,-33 9.9,-29 18.7,-45 23.7,-63"
id="path3868-7-7-4-4-8-1-5-0-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccscc" />
<g
transform="translate(11.21,29.04)"
id="g9533">
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path3874-7-8-0-3-9"
d="m 285.9,1948 6.8,-1 29.4,-1 48.8,2 52.1,6"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="caaac"
inkscape:connector-curvature="0"
id="path3868-7-7-4-4-2"
d="m 271.2,1883 c 0,0 10.2,-7 15.8,-10 6.8,-2 14.8,-3 21.5,-3 22.7,-1 45.4,-2 66.9,3 20.4,5 45.3,25 58.9,26"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3876-91-29-8-7-18"
d="m 317.6,1786 c -7.9,19 57.8,24 71.4,-1"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3878-7-1-40-0-5"
d="m 289.3,2017 c 28.3,6 95.2,9 131.4,-2"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="caac"
inkscape:connector-curvature="0"
id="path3872-1-8-9-0-4"
d="m 267.8,1904 c 0,0 17,-2 24.9,-3 23.8,-2 46.4,-3 70.2,0 23.8,2 51,9 69.1,13"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 433.2,1896 c 2.2,3 -6.8,51 -15.9,75 -4.5,12 -6.8,35 -5.6,47"
id="path2993-6-7-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 450.2,1803 c -17,5 -21.6,10 -27.2,21 -10.2,18 -20.4,45 -7.9,62 6.7,9 27.1,15 33.9,6"
id="path3009-0-7-5-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caac" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 323.3,1765 c 0,0 12.4,5 19.2,5 37.4,3 46.5,-10 46.5,-10"
id="path3011-2-2-3-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
<path
sodipodi:nodetypes="cac"
inkscape:connector-curvature="0"
id="path3992-4-9-6-1-0-0-1-02"
d="m 382.2,1767 c 3.4,11 1.1,10 4.5,14 11.4,13 35.1,19 49.9,22"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 287,2016 c 2.3,-15 -1.1,-33 -2.2,-47 0,-7 2.2,-13 0,-22 -10.2,-9 -19.3,-31 -19.3,-45 0,-14 9.1,-23 12.5,-38 2.2,-6 -6.8,-17 -9.1,-28 -3.4,-11 0,-25 5.7,-26 11.3,-2 29.4,-10 39.6,-18 9.1,-9 7.9,-27 7.9,-27 0,0 1.2,-6 19.3,-8 17,-1 48.7,3 48.7,3 0,0 -1.1,13 2.3,17 12.5,16 43,18 54.4,24 17,7 15.8,14 18.1,23 4.5,23 -9.1,51 -17,70 -6.8,15 -6.8,33 -11.3,49 -3.4,10 -6.8,19 -10.2,29 -2.3,9 -5.7,32 -4.6,42"
id="path15557-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccscccccccacacccc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 288.2,1975 6.8,-1 c 26,-3 50.9,-1 78.1,1 l 40.8,5"
id="path3874-7-8-0-4-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-9-10-7"
d="m 326.7,2022 c -4.6,-44 -15.9,-104 -15.9,-119 -2.3,-18 21.5,-58 35.1,-100"
style="fill:none;stroke:#000000;stroke-width:3.39899993;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.5776;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 348.2,1841 c 0,9 -7.9,15 -15.8,15 -9.1,0 -15.9,-6 -15.9,-15 0,-10 6.8,-16 15.9,-16 7.9,0 14.7,6 15.8,16"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-5-9-3-0-9-0-4-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssc" />
<text
xml:space="preserve"
style="font-size:20.3939991px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="327.73007"
y="1847.348"
id="text8512-9-6-3-7-2-5-4-0-2-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-9-1-0-8-3-6-0-4-44"
x="327.73007"
y="1847.348">1</tspan></text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

View file

@ -0,0 +1,200 @@
<?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="160.51999"
height="195.50571"
id="svg9896"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 96">
<defs
id="defs9898" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="289.85687"
inkscape:cy="199.64471"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata9901">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-154.0293,-306.11425)">
<g
id="g10017">
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 285.37084,341.9522 c 5.6434,20.9612 21.7674,41.9224 24.9922,61.2712 4.8372,31.4418 -4.031,82.2324 -5.6434,96.744"
id="path16683"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 304.71964,499.9674 -63.6898,0"
id="path16681"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 241.02984,499.9674 -6.4496,-48.372 -4.8372,48.372"
id="path16679"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 229.74304,499.9674 -66.9146,0"
id="path16677"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 162.82844,499.9674 c -0.8062,-1.6124 -11.2868,-64.496 -5.6434,-95.9378 2.4186,-20.9612 24.186,-45.1472 26.6046,-62.0774"
id="path22054-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 157.18504,441.1148 155.5966,0"
id="path8471-0-07-6-8-0-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 167.66564,378.2312 133.023,0.8062"
id="path8471-6-8-4-5-5-6-3-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 183.78964,341.9522 101.5812,0"
id="path8471-6-6-6-8-7-8-3-1-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-1-8-9-2-1"
d="m 224.90584,378.2312 0,-36.279"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 236.19264,359.6886 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
id="path4050-8-0-5-3-4-0-7-3-9-0-5-6-3-1"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-1-8-7-5-0"
d="m 253.12284,441.1148 0,-98.3564"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:nodetypes="csssc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 264.40964,359.6886 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
id="path4050-8-0-5-3-4-0-7-3-9-0-5-68-5-4"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text8504-2-9"
y="364.28488"
x="216.9454"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="364.28488"
x="216.9454"
id="tspan8506-5-5"
sodipodi:role="line">33</tspan></text>
<text
sodipodi:linespacing="125%"
id="text8508-2-7"
y="364.32837"
x="245.35106"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="364.32837"
x="245.35106"
id="tspan8510-1-0"
sodipodi:role="line">34</tspan></text>
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path6088"
d="m 221.68104,459.6574 c 4.031,-1.6124 8.062,-2.4186 12.8992,-8.062 2.4186,2.4186 4.031,5.6434 9.6744,7.2558"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="text6934-3"
style="font-size:17.48647881px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path9981"
d="m 216.83157,313.31205 0,4.67046 2.76641,0 c 0.92783,0 1.61374,-0.19069 2.05774,-0.57207 0.44967,-0.38706 0.67452,-0.97621 0.67453,-1.76743 -1e-5,-0.7969 -0.22486,-1.3832 -0.67453,-1.75889 -0.444,-0.38138 -1.12991,-0.57206 -2.05774,-0.57207 l -2.76641,0 m 0,-5.24253 0,3.84225 2.55296,0 c 0.84244,0 1.46858,-0.15653 1.87843,-0.46961 0.41552,-0.31876 0.62328,-0.8026 0.62329,-1.45152 -1e-5,-0.64321 -0.20777,-1.1242 -0.62329,-1.44297 -0.40985,-0.31876 -1.03599,-0.47814 -1.87843,-0.47815 l -2.55296,0 m -1.72474,-1.41736 4.40577,0 c 1.31489,1e-5 2.32811,0.27324 3.03964,0.81968 0.71152,0.54646 1.06728,1.32345 1.06729,2.33096 -1e-5,0.77984 -0.18216,1.40029 -0.54645,1.86135 -0.36431,0.46108 -0.89938,0.74854 -1.6052,0.86237 0.84813,0.18216 1.50558,0.56354 1.97235,1.14414 0.47244,0.57492 0.70867,1.29498 0.70868,2.16019 -1e-5,1.13845 -0.38708,2.0179 -1.16121,2.63834 -0.77415,0.62046 -1.8756,0.93068 -3.30433,0.93068 l -4.57654,0 0,-12.74771"
inkscape:connector-curvature="0" />
<path
id="path9983"
d="m 231.37233,314.5928 c -1.26937,0 -2.14882,0.14515 -2.63834,0.43545 -0.48954,0.29031 -0.7343,0.78553 -0.7343,1.48567 0,0.55784 0.18215,1.00183 0.54645,1.33198 0.36999,0.32446 0.87091,0.48668 1.50275,0.48668 0.8709,0 1.56819,-0.30738 2.09188,-0.92214 0.52937,-0.62045 0.79406,-1.44297 0.79407,-2.46757 l 0,-0.35007 -1.56251,0 m 3.13356,-0.64891 0,5.45598 -1.57105,0 0,-1.45151 c -0.35862,0.5806 -0.80546,1.01037 -1.34052,1.28928 -0.53507,0.27323 -1.18968,0.40984 -1.96381,0.40984 -0.97907,0 -1.7589,-0.27322 -2.3395,-0.81968 -0.57492,-0.55214 -0.86237,-1.28928 -0.86237,-2.21142 0,-1.07582 0.35861,-1.88696 1.07583,-2.43342 0.72291,-0.54645 1.79873,-0.81967 3.22748,-0.81968 l 2.20289,0 0,-0.15369 c -1e-5,-0.7229 -0.23908,-1.28074 -0.71722,-1.67351 -0.47246,-0.39845 -1.13845,-0.59767 -1.99797,-0.59768 -0.54645,10e-6 -1.07868,0.0655 -1.59666,0.19638 -0.518,0.13093 -1.01607,0.32731 -1.49421,0.58914 l 0,-1.45151 c 0.57491,-0.22199 1.13275,-0.38706 1.67351,-0.49522 0.54076,-0.11384 1.06729,-0.17076 1.57959,-0.17077 1.3832,10e-6 2.41634,0.35862 3.09941,1.07583 0.68306,0.71722 1.02459,1.80444 1.0246,3.26164"
inkscape:connector-curvature="0" />
<path
id="path9985"
d="m 244.63234,310.2041 0,1.46859 c -0.444,-0.24475 -0.89084,-0.42691 -1.34052,-0.54645 -0.444,-0.12522 -0.89368,-0.18783 -1.34905,-0.18784 -1.01892,10e-6 -1.81013,0.32446 -2.37366,0.97337 -0.56353,0.64322 -0.84529,1.54828 -0.84529,2.71518 0,1.16691 0.28176,2.07482 0.84529,2.72373 0.56353,0.64322 1.35474,0.96483 2.37366,0.96483 0.45537,0 0.90505,-0.0598 1.34905,-0.17931 0.44968,-0.12523 0.89652,-0.31022 1.34052,-0.55499 l 0,1.45151 c -0.43831,0.20492 -0.89369,0.35861 -1.36614,0.46107 -0.46676,0.10246 -0.96483,0.15369 -1.4942,0.15369 -1.44014,0 -2.58427,-0.45253 -3.43241,-1.35759 -0.84814,-0.90506 -1.27221,-2.12604 -1.27221,-3.66294 0,-1.55966 0.42692,-2.78633 1.28075,-3.68001 0.85952,-0.89367 2.03496,-1.34051 3.52633,-1.34052 0.48383,10e-6 0.95628,0.0512 1.41736,0.15369 0.46106,0.0968 0.9079,0.24477 1.34052,0.44399"
inkscape:connector-curvature="0" />
<path
id="path9987"
d="m 247.32191,306.11425 1.57959,0 0,7.84671 4.68753,-4.12401 2.00651,0 -5.07176,4.47408 5.28522,5.08884 -2.0492,0 -4.8583,-4.67046 0,4.67046 -1.57959,0 0,-13.28562"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 312.78164,441.921 c 1.6124,-38.6976 1.6124,-38.6976 -27.4108,-98.3564"
id="path7494-1-6-3-5-81-64-9-1-8-4-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-9-0-5-7-3-7"
d="m 305.52584,360.4948 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-5.6434 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,5.6434 11.2868,11.2868"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:nodetypes="csssc" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="287.11383"
y="365.47223"
id="text8500-4-6-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8502-7-6-1"
x="287.11383"
y="365.47223">35</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

View file

@ -0,0 +1,396 @@
<?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="278.26678"
height="196.61496"
id="svg10179"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 99">
<defs
id="defs10181">
<marker
inkscape:stockid="Arrow2Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Mend"
style="overflow:visible">
<path
id="path8911"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.719,4.034 -2.207,0.016 8.719,-4.002 c -1.746,2.372 -1.736,5.618 0,8.036 z"
transform="scale(-0.6,-0.6)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Mend"
orient="auto"
refY="0"
refX="0"
id="marker10131"
style="overflow:visible">
<path
id="path10133"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.719,4.034 -2.207,0.016 8.719,-4.002 c -1.746,2.372 -1.736,5.618 0,8.036 z"
transform="scale(-0.6,-0.6)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Mend"
orient="auto"
refY="0"
refX="0"
id="marker10135"
style="overflow:visible">
<path
id="path10137"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.719,4.034 -2.207,0.016 8.719,-4.002 c -1.746,2.372 -1.736,5.618 0,8.036 z"
transform="scale(-0.6,-0.6)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Mend"
orient="auto"
refY="0"
refX="0"
id="marker10139"
style="overflow:visible">
<path
id="path10141"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.719,4.034 -2.207,0.016 8.719,-4.002 c -1.746,2.372 -1.736,5.618 0,8.036 z"
transform="scale(-0.6,-0.6)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="182.05829"
inkscape:cy="114.00483"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata10184">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-20.866574,-274.05468)">
<g
id="g10394">
<path
style="fill:none;stroke:#000000;stroke-width:0.72098464px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow2Mend)"
d="m 81.1501,303.8987 c 18.5426,12.8992 7.2558,34.6666 7.2558,34.6666"
id="path12824-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.80620003px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow2Mend)"
d="m 52.9331,345.8211 c -4.031,4.8372 16.9302,1.6124 16.9302,1.6124"
id="path18246"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-0-8-6-3-4-9-7"
d="m 253.6769,433.6969 c -14.5116,-24.9922 -8.062,-45.1472 0,-80.62"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-5-3-6-1-1-1-0"
d="M 73.8943,431.2783 C 87.5997,406.2861 86.7935,395.8055 72.2819,352.2707"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 82.7625,469.1697 c 0,-4.031 -3.2248,-19.3488 -4.8372,-26.6046 -12.093,-25.7984 -25.7984,-61.2712 -8.8682,-87.0696 8.8682,-11.2868 40.31,-8.8682 54.8216,-21.7674 4.031,-3.2248 6.4496,-8.8682 7.2558,-13.7054 0.8062,-5.6434 -0.8062,-16.124 -0.8062,-16.124 0,0 21.7674,-7.2558 33.8604,-7.2558 11.2868,0 33.8604,8.062 33.8604,8.062 0,0 -2.4186,10.4806 -1.6124,16.124 0.8062,4.8372 3.2248,10.4806 7.2558,13.7054 14.5116,12.8992 45.9534,10.4806 55.6278,21.7674 21.7674,29.8294 1.6124,61.2712 -9.6744,86.2634 -4.8372,13.7054 -3.2248,12.093 -6.4496,26.6046"
id="path9794"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccscccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-7-8-46-2-8-0-1-88-2-7-10-5-6"
d="m 167.4135,327.2785 86.2634,0"
style="fill:none;stroke:#aaaaaa;stroke-width:2.41900301;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.8380062, 2.4190031, 1.20946124, 2.4190031;stroke-dashoffset:0" />
<path
transform="matrix(0.8481224,0,0,0.8481224,184.3437,252.3019)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 72.75,50.32 c 0,8.284271 -6.715729,15 -15,15 -8.284271,0 -15,-6.715729 -15,-15 0,-8.284272 6.715729,-15 15,-15 8.253913,0 14.956999,6.668419 14.999798,14.92222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-5-3-4-0-4-2-0-9-5-0"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
transform="matrix(0.77201712,0,0,0.77201712,242.3901,295.8367)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 72.75,50.32 c 0,8.284271 -6.715729,15 -15,15 -8.284271,0 -15,-6.715729 -15,-15 0,-8.284272 6.715729,-15 15,-15 8.253913,0 14.956999,6.668419 14.999798,14.92222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-5-3-4-0-7-3-7-5-5-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path12824-0-8"
d="m 231.1033,307.1235 c -5.6434,16.9302 2.4186,25.7984 8.062,29.0232"
style="fill:none;stroke:#000000;stroke-width:0.72098464px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow2Mend)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path18246-8"
d="m 278.6691,343.4025 c -4.031,4.8372 -18.5426,0.8062 -18.5426,0.8062"
style="fill:none;stroke:#000000;stroke-width:0.80620003px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow2Mend)" />
<text
sodipodi:linespacing="125%"
id="text16526-4"
y="299.86258"
x="226.21936"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="299.86258"
x="226.21936"
id="tspan16528-8"
sodipodi:role="line">38</tspan></text>
<text
sodipodi:linespacing="125%"
id="text16530-6"
y="339.56775"
x="279.72556"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="339.56775"
x="279.72556"
id="tspan16532-4"
sodipodi:role="line">39</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-82-1-6-1-2-4"
d="m 253.6769,326.4723 0,24.9922"
style="fill:none;stroke:#000000;stroke-width:2.16255093;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path12822-7-7"
d="m 244.0025,326.4723 c 1.6124,4.031 2.4186,15.3178 -2.4186,20.9612"
style="fill:none;stroke:#000000;stroke-width:2.16295385;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="text11868-1"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Century Schoolbook L;-inkscape-font-specification:Century Schoolbook L Medium">
<path
id="path10336"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 256.08704,294.47288 -0.88572,4.52779 -1.30377,0 0.24091,-1.20457 c -0.38263,0.47238 -0.81959,0.82667 -1.31086,1.06286 -0.48656,0.23146 -1.0298,0.3472 -1.62972,0.3472 -0.67551,0 -1.23056,-0.20549 -1.66515,-0.61646 -0.42987,-0.4157 -0.6448,-0.94713 -0.6448,-1.59429 0,-0.92587 0.36845,-1.65806 1.10537,-2.19658 0.74164,-0.53852 1.76199,-0.80777 3.06104,-0.80778 l 1.81395,0 0.0709,-0.3472 c 0.009,-0.0378 0.0165,-0.0779 0.0213,-0.12046 0.005,-0.0472 0.007,-0.11809 0.007,-0.21257 0,-0.42041 -0.17242,-0.74636 -0.51726,-0.97783 -0.34012,-0.23619 -0.81959,-0.35428 -1.4384,-0.35429 -0.42515,10e-6 -0.8621,0.0543 -1.31086,0.16297 -0.44405,0.10866 -0.90226,0.27163 -1.37464,0.48892 l 0.22675,-1.20458 c 0.49127,-0.18422 0.97074,-0.32121 1.4384,-0.41097 0.47238,-0.0945 0.92823,-0.14171 1.36755,-0.14171 0.93531,0 1.64625,0.20313 2.13281,0.60937 0.49127,0.40626 0.73691,0.99673 0.73692,1.77143 -1e-5,0.1559 -0.0118,0.34013 -0.0354,0.55269 -0.0236,0.20786 -0.0591,0.42988 -0.10629,0.66606 m -1.41006,0.53852 -1.30378,0 c -1.06759,0 -1.85883,0.14408 -2.37372,0.43223 -0.51018,0.28343 -0.76526,0.72511 -0.76526,1.32503 0,0.4157 0.1299,0.74165 0.38971,0.97784 0.26454,0.23619 0.62827,0.35428 1.09121,0.35428 0.70857,0 1.32739,-0.25272 1.85646,-0.75817 0.52907,-0.51017 0.87863,-1.1904 1.04869,-2.0407 l 0.0567,-0.29051"
inkscape:connector-curvature="0" />
<path
id="path10338"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 265.27725,294.21071 -0.92823,4.78996 -1.31087,0 0.92824,-4.74036 c 0.0425,-0.22201 0.0756,-0.41805 0.0992,-0.58812 0.0236,-0.17005 0.0354,-0.30468 0.0354,-0.40388 0,-0.3968 -0.12518,-0.70621 -0.37554,-0.92824 -0.25037,-0.22201 -0.59993,-0.33302 -1.04869,-0.33303 -0.69913,10e-6 -1.30142,0.23384 -1.80686,0.70149 -0.50546,0.46294 -0.83612,1.09357 -0.99201,1.8919 l -0.87154,4.40024 -1.30378,0 1.53761,-7.93603 1.30377,0 -0.26217,1.24709 c 0.36373,-0.4582 0.80068,-0.81249 1.31086,-1.06286 0.51017,-0.25036 1.04632,-0.37554 1.60847,-0.37554 0.69912,0 1.23999,0.18896 1.62263,0.56685 0.38735,0.37792 0.58102,0.90935 0.58103,1.5943 -10e-6,0.17006 -0.0118,0.35193 -0.0354,0.5456 -0.0189,0.19368 -0.0496,0.40389 -0.0921,0.63063"
inkscape:connector-curvature="0" />
<path
id="path10340"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 275.05557,291.06464 -1.35337,6.95111 c -0.25982,1.34629 -0.75819,2.35011 -1.4951,3.01144 -0.73219,0.66134 -1.71947,0.992 -2.96184,0.99201 -0.45821,-1e-5 -0.88335,-0.0354 -1.27543,-0.10629 -0.39208,-0.0661 -0.75818,-0.17006 -1.09829,-0.31177 l 0.24092,-1.26835 c 0.32121,0.20785 0.66133,0.36137 1.02034,0.46057 0.35901,0.0992 0.74164,0.1488 1.14789,0.1488 0.82667,0 1.50454,-0.22674 2.03361,-0.68023 0.53379,-0.44876 0.88571,-1.09592 1.05578,-1.94149 l 0.11337,-0.5952 c -0.36374,0.4157 -0.78652,0.73219 -1.26835,0.94949 -0.48183,0.21729 -1.00146,0.32594 -1.55886,0.32594 -0.80306,0 -1.43605,-0.26453 -1.89898,-0.7936 -0.45821,-0.53379 -0.68732,-1.26599 -0.68732,-2.19658 0,-0.73219 0.13935,-1.44785 0.41806,-2.14698 0.2787,-0.70385 0.67078,-1.32739 1.17623,-1.87064 0.33539,-0.359 0.72511,-0.63534 1.16915,-0.82903 0.44876,-0.19367 0.91642,-0.29051 1.40298,-0.29051 0.53378,0 0.99908,0.12518 1.39589,0.37554 0.39679,0.24565 0.69203,0.59521 0.88572,1.04869 l 0.22674,-1.23292 1.31086,0 m -1.96275,2.91224 c -1e-5,-0.64243 -0.15117,-1.13844 -0.45349,-1.48801 -0.30233,-0.34955 -0.73219,-0.52433 -1.2896,-0.52434 -0.34485,10e-6 -0.67315,0.0685 -0.98492,0.20549 -0.31178,0.13699 -0.57867,0.32831 -0.80069,0.57394 -0.35901,0.40626 -0.64008,0.88572 -0.8432,1.43841 -0.1984,0.54797 -0.2976,1.11482 -0.2976,1.70057 0,0.6519 0.15116,1.15262 0.45349,1.50218 0.30704,0.34957 0.74636,0.52435 1.31794,0.52435 0.82667,0 1.51635,-0.37318 2.06904,-1.11955 0.55268,-0.75109 0.82902,-1.68876 0.82903,-2.81304"
inkscape:connector-curvature="0" />
<path
id="path10342"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 278.2725,287.97526 1.30377,0 -2.14698,11.02541 -1.30377,0 2.14698,-11.02541"
inkscape:connector-curvature="0" />
<path
id="path10344"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 286.6195,294.32408 c 0.0142,-0.0756 0.0236,-0.15352 0.0283,-0.23383 0.009,-0.0803 0.0142,-0.1606 0.0142,-0.24091 -10e-6,-0.5763 -0.17007,-1.03215 -0.51018,-1.36755 -0.33539,-0.33539 -0.7936,-0.50308 -1.37463,-0.50309 -0.64717,10e-6 -1.21875,0.20549 -1.71475,0.61646 -0.496,0.40626 -0.87155,0.98492 -1.12663,1.73601 l 4.68367,-0.007 m 1.13372,1.02035 -6.06539,0 c -0.0284,0.17951 -0.0472,0.32122 -0.0567,0.42514 -0.009,0.10393 -0.0142,0.19368 -0.0142,0.26926 0,0.65662 0.20076,1.16443 0.60229,1.52344 0.40624,0.35901 0.97783,0.53851 1.71475,0.53851 0.56685,0 1.10301,-0.0638 1.60846,-0.19131 0.50544,-0.12755 0.97546,-0.31414 1.41006,-0.55978 l -0.248,1.28961 c -0.46766,0.18895 -0.95186,0.33067 -1.45258,0.42514 -0.496,0.0945 -1.00145,0.14172 -1.51634,0.14172 -1.10066,0 -1.94859,-0.26217 -2.54379,-0.78652 -0.59047,-0.52907 -0.88571,-1.27779 -0.88571,-2.24618 0,-0.82667 0.14643,-1.59429 0.43931,-2.30287 0.2976,-0.71329 0.73219,-1.34864 1.30378,-1.90606 0.36846,-0.34956 0.80541,-0.61881 1.31086,-0.80777 0.51017,-0.18895 1.05105,-0.28343 1.62264,-0.28343 0.89752,0 1.61081,0.26926 2.13989,0.80777 0.53379,0.53852 0.80068,1.26127 0.80069,2.16824 -1e-5,0.2173 -0.0142,0.45113 -0.0425,0.70149 -0.0283,0.24564 -0.0709,0.51017 -0.12754,0.7936"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-3-0-9"
d="m 127.1035,332.9219 c 18.5426,-5.6434 52.403,-8.8682 72.558,-0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-3-2-3-0"
d="m 76.3129,432.8907 177.364,0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-3-2-1-2-8"
d="m 81.1501,448.2085 166.0772,-0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#aaaaaa;stroke-width:2.41900301;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.8380062, 2.4190031, 1.20946124, 2.4190031;stroke-dashoffset:0"
d="m 72.2819,332.1157 54.8216,0"
id="path8471-6-6-7-8-46-2-8-0-1-88-2-7-10-5-6-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.16255093;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 73.0881,332.1157 0,18.5426"
id="path7494-1-6-3-5-7-82-1-6-1-2-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-5-3-4-0-4-2-0-9-5"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 72.75,50.32 c 0,8.284271 -6.715729,15 -15,15 -8.284271,0 -15,-6.715729 -15,-15 0,-8.284272 6.715729,-15 15,-15 8.253913,0 14.956999,6.668419 14.999798,14.92222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8481224,0,0,0.8481224,25.5223,252.3019)" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4050-8-0-5-3-4-0-7-3-7-5-5"
sodipodi:cx="57.75"
sodipodi:cy="50.32"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 72.75,50.32 c 0,8.284271 -6.715729,15 -15,15 -8.284271,0 -15,-6.715729 -15,-15 0,-8.284272 6.715729,-15 15,-15 8.253913,0 14.956999,6.668419 14.999798,14.92222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.77201712,0,0,0.77201712,8.5921,295.8367)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="67.194733"
y="299.86258"
id="text16526"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16528"
x="67.194733"
y="299.86258">36</tspan></text>
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="46.264336"
y="339.08029"
id="text16530"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan16532"
x="46.264336"
y="339.08029">37</tspan></text>
<g
id="text11868"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Century Schoolbook L;-inkscape-font-specification:Century Schoolbook L Medium">
<path
id="path10316"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 28.065688,294.47288 -0.885718,4.52779 -1.303776,0 0.240915,-1.20457 c -0.382636,0.47238 -0.819589,0.82667 -1.310862,1.06286 -0.486559,0.23146 -1.029798,0.3472 -1.629721,0.3472 -0.67551,0 -1.230559,-0.20549 -1.665149,-0.61646 -0.429869,-0.4157 -0.644803,-0.94713 -0.644803,-1.59429 0,-0.92587 0.368458,-1.65806 1.105376,-2.19658 0.741638,-0.53852 1.761984,-0.80777 3.06104,-0.80778 l 1.81395,0 0.07086,-0.3472 c 0.0094,-0.0378 0.01653,-0.0779 0.02126,-0.12046 0.0047,-0.0472 0.0071,-0.11809 0.0071,-0.21257 -7e-6,-0.42041 -0.172426,-0.74636 -0.517259,-0.97783 -0.340122,-0.23619 -0.81959,-0.35428 -1.438406,-0.35429 -0.425149,10e-6 -0.862102,0.0543 -1.310862,0.16297 -0.444043,0.10866 -0.902254,0.27163 -1.374634,0.48892 l 0.226744,-1.20458 c 0.491275,-0.18422 0.970743,-0.32121 1.438405,-0.41097 0.472379,-0.0945 0.928228,-0.14171 1.367548,-0.14171 0.935312,0 1.646248,0.20313 2.132809,0.60937 0.49127,0.40626 0.736909,0.99673 0.736917,1.77143 -8e-6,0.1559 -0.01182,0.34013 -0.03543,0.55269 -0.02363,0.20786 -0.05906,0.42988 -0.106286,0.66606 m -1.410063,0.53852 -1.303776,0 c -1.067589,0 -1.85883,0.14408 -2.373724,0.43223 -0.510175,0.28343 -0.765262,0.72511 -0.76526,1.32503 -2e-6,0.4157 0.129903,0.74165 0.389716,0.97784 0.264532,0.23619 0.628266,0.35428 1.091204,0.35428 0.70857,0 1.327391,-0.25272 1.856465,-0.75817 0.529063,-0.51017 0.878625,-1.1904 1.048689,-2.0407 l 0.05669,-0.29051"
inkscape:connector-curvature="0" />
<path
id="path10318"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 37.255895,294.21071 -0.928232,4.78996 -1.310862,0 0.928232,-4.74036 c 0.04251,-0.22201 0.07557,-0.41805 0.0992,-0.58812 0.02361,-0.17005 0.03542,-0.30468 0.03543,-0.40388 -7e-6,-0.3968 -0.125188,-0.70621 -0.375544,-0.92824 -0.25037,-0.22201 -0.599933,-0.33302 -1.04869,-0.33303 -0.699132,10e-6 -1.301419,0.23384 -1.806864,0.70149 -0.505453,0.46294 -0.836121,1.09357 -0.992004,1.8919 l -0.871547,4.40024 -1.303776,0 1.537606,-7.93603 1.303776,0 -0.262172,1.24709 c 0.363731,-0.4582 0.800685,-0.81249 1.310862,-1.06286 0.510169,-0.25036 1.046323,-0.37554 1.608464,-0.37554 0.699119,0 1.239997,0.18896 1.622635,0.56685 0.387345,0.37792 0.581022,0.90935 0.58103,1.5943 -8e-6,0.17006 -0.01182,0.35193 -0.03543,0.5456 -0.0189,0.19368 -0.04961,0.40389 -0.09211,0.63063"
inkscape:connector-curvature="0" />
<path
id="path10320"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 47.034219,291.06464 -1.353376,6.95111 c -0.259818,1.34629 -0.758181,2.35011 -1.495092,3.01144 -0.732198,0.66134 -1.719477,0.992 -2.96184,0.99201 -0.458214,-1e-5 -0.883358,-0.0354 -1.275434,-0.10629 -0.392079,-0.0661 -0.758175,-0.17006 -1.09829,-0.31177 l 0.240916,-1.26835 c 0.321219,0.20785 0.661334,0.36137 1.020346,0.46057 0.359009,0.0992 0.741639,0.1488 1.147891,0.1488 0.826666,0 1.504534,-0.22674 2.033607,-0.68023 0.533788,-0.44876 0.885712,-1.09592 1.055776,-1.94149 l 0.113372,-0.5952 c -0.363741,0.4157 -0.786523,0.73219 -1.268348,0.94949 -0.481835,0.21729 -1.001455,0.32594 -1.558863,0.32594 -0.803053,0 -1.436046,-0.26453 -1.898979,-0.7936 -0.458212,-0.53379 -0.687318,-1.26599 -0.687317,-2.19658 -1e-6,-0.73219 0.139352,-1.44785 0.418059,-2.14698 0.278704,-0.70385 0.670782,-1.32739 1.176233,-1.87064 0.335389,-0.359 0.725105,-0.63534 1.169147,-0.82903 0.44876,-0.19367 0.916419,-0.29051 1.402977,-0.29051 0.533788,0 0.999084,0.12518 1.395891,0.37554 0.396795,0.24565 0.692034,0.59521 0.885718,1.04869 l 0.226744,-1.23292 1.310862,0 m -1.96275,2.91224 c -7e-6,-0.64243 -0.151169,-1.13844 -0.453488,-1.48801 -0.302331,-0.34955 -0.732199,-0.52433 -1.289605,-0.52434 -0.344844,10e-6 -0.67315,0.0685 -0.984918,0.20549 -0.311776,0.13699 -0.578672,0.32831 -0.800689,0.57394 -0.359014,0.40626 -0.640081,0.88572 -0.843203,1.43841 -0.198403,0.54797 -0.297603,1.11482 -0.297601,1.70057 -2e-6,0.6519 0.15116,1.15262 0.453487,1.50218 0.307046,0.34957 0.746362,0.52435 1.317948,0.52435 0.826666,0 1.516344,-0.37318 2.069037,-1.11955 0.552681,-0.75109 0.829025,-1.68876 0.829032,-2.81304"
inkscape:connector-curvature="0" />
<path
id="path10322"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 50.251145,287.97526 1.303777,0 -2.14698,11.02541 -1.303776,0 2.146979,-11.02541"
inkscape:connector-curvature="0" />
<path
id="path10324"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 58.59815,294.32408 c 0.01417,-0.0756 0.02361,-0.15352 0.02834,-0.23383 0.0094,-0.0803 0.01416,-0.1606 0.01417,-0.24091 -7e-6,-0.5763 -0.170065,-1.03215 -0.510174,-1.36755 -0.335398,-0.33539 -0.793609,-0.50308 -1.374634,-0.50309 -0.647169,10e-6 -1.218751,0.20549 -1.714749,0.61646 -0.496005,0.40626 -0.871549,0.98492 -1.126633,1.73601 l 4.683675,-0.007 m 1.133719,1.02035 -6.065395,0 c -0.02835,0.17951 -0.04724,0.32122 -0.05669,0.42514 -0.0095,0.10393 -0.01417,0.19368 -0.01417,0.26926 -2e-6,0.65662 0.200761,1.16443 0.602288,1.52344 0.406247,0.35901 0.977829,0.53851 1.71475,0.53851 0.566854,0 1.103008,-0.0638 1.608463,-0.19131 0.505444,-0.12755 0.975464,-0.31414 1.410063,-0.55978 l -0.248001,1.28961 c -0.467666,0.18895 -0.951857,0.33067 -1.452577,0.42514 -0.496007,0.0945 -1.001456,0.14172 -1.516349,0.14172 -1.100655,0 -1.948581,-0.26217 -2.543781,-0.78652 -0.59048,-0.52907 -0.885719,-1.27779 -0.885718,-2.24618 -1e-6,-0.82667 0.146438,-1.59429 0.439316,-2.30287 0.2976,-0.71329 0.732192,-1.34864 1.303777,-1.90606 0.368455,-0.34956 0.805409,-0.61881 1.310862,-0.80777 0.510169,-0.18895 1.051047,-0.28343 1.622635,-0.28343 0.897521,0 1.610818,0.26926 2.139894,0.80777 0.533784,0.53852 0.80068,1.26127 0.800689,2.16824 -9e-6,0.2173 -0.01418,0.45113 -0.04252,0.70149 -0.02835,0.24564 -0.07086,0.51017 -0.127543,0.7936"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:2.16295385;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 84.3749,332.1157 c -3.2248,4.8372 -2.4186,9.6744 0,15.3178"
id="path12822-7-7-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 81.9563,469.9759 160.4338,0"
id="path3992-4-77-9-5-7-1-2-3-2-1-2-8-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="text6934-3-2"
style="font-size:17.48647881px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path10327"
d="m 146.35667,281.25248 0,4.67046 2.76641,0 c 0.92783,0 1.61374,-0.19069 2.05774,-0.57207 0.44968,-0.38707 0.67452,-0.97621 0.67453,-1.76743 -10e-6,-0.7969 -0.22485,-1.3832 -0.67453,-1.75889 -0.444,-0.38138 -1.12991,-0.57206 -2.05774,-0.57207 l -2.76641,0 m 0,-5.24253 0,3.84225 2.55296,0 c 0.84244,0 1.46858,-0.15653 1.87843,-0.46961 0.41552,-0.31876 0.62329,-0.8026 0.62329,-1.45152 0,-0.64321 -0.20777,-1.1242 -0.62329,-1.44297 -0.40985,-0.31876 -1.03599,-0.47814 -1.87843,-0.47815 l -2.55296,0 m -1.72474,-1.41736 4.40577,0 c 1.31489,1e-5 2.32811,0.27324 3.03964,0.81968 0.71152,0.54646 1.06728,1.32345 1.06729,2.33096 -1e-5,0.77984 -0.18216,1.40029 -0.54645,1.86135 -0.36431,0.46108 -0.89938,0.74854 -1.6052,0.86237 0.84813,0.18216 1.50558,0.56354 1.97235,1.14414 0.47244,0.57492 0.70867,1.29498 0.70868,2.16019 -1e-5,1.13845 -0.38708,2.01789 -1.16121,2.63834 -0.77415,0.62046 -1.87559,0.93068 -3.30433,0.93068 l -4.57654,0 0,-12.74771"
inkscape:connector-curvature="0" />
<path
id="path10329"
d="m 160.89743,282.53323 c -1.26937,0 -2.14882,0.14515 -2.63834,0.43545 -0.48954,0.29031 -0.7343,0.78553 -0.7343,1.48567 0,0.55784 0.18215,1.00183 0.54645,1.33198 0.36999,0.32445 0.87091,0.48668 1.50275,0.48668 0.8709,0 1.5682,-0.30738 2.09189,-0.92214 0.52936,-0.62045 0.79405,-1.44297 0.79406,-2.46757 l 0,-0.35007 -1.56251,0 m 3.13356,-0.64891 0,5.45598 -1.57105,0 0,-1.45151 c -0.35862,0.5806 -0.80546,1.01037 -1.34052,1.28928 -0.53507,0.27323 -1.18967,0.40984 -1.96381,0.40984 -0.97906,0 -1.7589,-0.27322 -2.3395,-0.81968 -0.57491,-0.55214 -0.86237,-1.28928 -0.86237,-2.21142 0,-1.07583 0.35861,-1.88696 1.07583,-2.43342 0.72291,-0.54645 1.79873,-0.81967 3.22748,-0.81968 l 2.20289,0 0,-0.15369 c -10e-6,-0.7229 -0.23908,-1.28074 -0.71722,-1.67351 -0.47246,-0.39845 -1.13845,-0.59767 -1.99797,-0.59768 -0.54645,1e-5 -1.07867,0.0655 -1.59666,0.19638 -0.518,0.13093 -1.01606,0.32731 -1.49421,0.58914 l 0,-1.45151 c 0.57491,-0.22199 1.13275,-0.38706 1.67351,-0.49522 0.54076,-0.11384 1.06729,-0.17076 1.57959,-0.17077 1.3832,10e-6 2.41634,0.35862 3.09941,1.07583 0.68306,0.71722 1.02459,1.80444 1.0246,3.26164"
inkscape:connector-curvature="0" />
<path
id="path10331"
d="m 174.15744,278.14453 0,1.46859 c -0.444,-0.24476 -0.89084,-0.42691 -1.34052,-0.54645 -0.444,-0.12522 -0.89368,-0.18783 -1.34905,-0.18784 -1.01892,1e-5 -1.81013,0.32446 -2.37366,0.97337 -0.56353,0.64322 -0.84529,1.54828 -0.84529,2.71518 0,1.16691 0.28176,2.07482 0.84529,2.72372 0.56353,0.64323 1.35474,0.96484 2.37366,0.96483 0.45537,1e-5 0.90505,-0.0598 1.34905,-0.1793 0.44968,-0.12523 0.89652,-0.31022 1.34052,-0.55499 l 0,1.45151 c -0.43831,0.20492 -0.89369,0.35861 -1.36613,0.46107 -0.46677,0.10246 -0.96484,0.15369 -1.49421,0.15369 -1.44013,0 -2.58427,-0.45253 -3.43241,-1.35759 -0.84814,-0.90506 -1.27221,-2.12604 -1.2722,-3.66294 -1e-5,-1.55966 0.42691,-2.78633 1.28074,-3.68002 0.85952,-0.89366 2.03497,-1.3405 3.52633,-1.34051 0.48383,10e-6 0.95628,0.0512 1.41736,0.15369 0.46106,0.0968 0.9079,0.24477 1.34052,0.44399"
inkscape:connector-curvature="0" />
<path
id="path10333"
d="m 176.84701,274.05468 1.57959,0 0,7.84671 4.68753,-4.12401 2.00651,0 -5.07176,4.47408 5.28522,5.08884 -2.0492,0 -4.8583,-4.67046 0,4.67046 -1.57959,0 0,-13.28562"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,217 @@
<?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="228.20566"
height="196.70851"
id="svg10492"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 102">
<defs
id="defs10494">
<marker
inkscape:stockid="Arrow2Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Mend"
style="overflow:visible">
<path
id="path8911"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.719,4.034 -2.207,0.016 8.719,-4.002 c -1.746,2.372 -1.736,5.618 0,8.036 z"
transform="scale(-0.6,-0.6)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="94.919394"
inkscape:cy="61.082471"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata10497">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-105.89354,-262.66649)">
<g
id="g10585">
<path
style="fill:none;stroke:#aaaaaa;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.8372, 2.4186, 1.2093, 2.4186;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 247.53048,319.8406 52.403,18.5426"
id="path7494-1-6-3-5-7-82-1-6-1-2-4-5-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-0-8-6-3-4-9-7-3"
d="m 299.93348,422.228 c -14.5116,-24.9922 -8.062,-45.1472 0,-80.62"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-5-3-6-1-1-1-0-6"
d="m 120.15088,419.8094 c 13.7054,-24.9922 12.8992,-35.4728 -1.6124,-79.0076"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 129.01908,457.7008 c 0,-4.031 -3.2248,-19.3488 -4.8372,-26.6046 -12.093,-25.7984 -25.7984,-61.2712 -8.8682,-87.0696 8.8682,-11.2868 40.31,-8.8682 54.8216,-21.7674 4.031,-3.2248 6.4496,-8.8682 7.2558,-13.7054 0.8062,-5.6434 -0.8062,-16.124 -0.8062,-16.124 0,0 21.7674,-7.2558 33.8604,-7.2558 11.2868,0 33.8604,8.062 33.8604,8.062 0,0 -2.4186,10.4806 -1.6124,16.124 0.8062,4.8372 3.2248,10.4806 7.2558,13.7054 14.5116,12.8992 45.9534,10.4806 55.6278,21.7674 21.7674,29.8294 1.6124,61.2712 -9.6744,86.2634 -4.8372,13.7054 -3.2248,12.093 -6.4496,26.6046"
id="path9794-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccscccccc" />
<path
transform="matrix(0.8481224,0,0,0.8481224,230.60028,240.833)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 72.75,50.32 c 0,8.284271 -6.715729,15 -15,15 -8.284271,0 -15,-6.715729 -15,-15 0,-8.284272 6.715729,-15 15,-15 8.253913,0 14.956999,6.668419 14.999798,14.92222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="50.32"
sodipodi:cx="57.75"
id="path4050-8-0-5-3-4-0-4-2-0-9-5-0-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path12824-0-8-9"
d="m 277.35988,295.6546 c -5.6434,16.9302 2.4186,25.7984 8.062,29.0232"
style="fill:none;stroke:#000000;stroke-width:0.72098464px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow2Mend)" />
<text
sodipodi:linespacing="125%"
id="text16526-4-4"
y="288.39368"
x="272.41788"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="288.39368"
x="272.41788"
id="tspan16528-8-1"
sodipodi:role="line">40</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-82-1-6-1-2-4-5"
d="m 299.93348,315.0034 0,24.9922"
style="fill:none;stroke:#aaaaaa;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.8372, 2.4186, 1.2093, 2.4186;stroke-dashoffset:0;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path12822-7-7-5"
d="m 299.12728,324.6778 c -6.4496,0 -12.093,4.8372 -12.8992,8.062"
style="fill:none;stroke:#000000;stroke-width:2.16295385;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="text11868-1-7"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Century Schoolbook L;-inkscape-font-specification:Century Schoolbook L Medium">
<path
id="path10575"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 302.26301,283.0847 -0.88572,4.52779 -1.30378,0 0.24092,-1.20458 c -0.38264,0.47239 -0.81959,0.82667 -1.31087,1.06286 -0.48655,0.23147 -1.02979,0.3472 -1.62972,0.3472 -0.67551,0 -1.23056,-0.20548 -1.66515,-0.61646 -0.42987,-0.41569 -0.6448,-0.94712 -0.6448,-1.59429 0,-0.92586 0.36846,-1.65806 1.10538,-2.19658 0.74164,-0.53851 1.76198,-0.80777 3.06104,-0.80777 l 1.81395,0 0.0709,-0.3472 c 0.009,-0.0378 0.0165,-0.0779 0.0213,-0.12046 0.005,-0.0472 0.007,-0.11809 0.007,-0.21257 -1e-5,-0.42042 -0.17243,-0.74636 -0.51726,-0.97784 -0.34012,-0.23618 -0.81959,-0.35428 -1.43841,-0.35428 -0.42515,0 -0.8621,0.0543 -1.31086,0.16297 -0.44404,0.10865 -0.90225,0.27163 -1.37463,0.48892 l 0.22674,-1.20458 c 0.49128,-0.18422 0.97074,-0.32121 1.43841,-0.41097 0.47237,-0.0945 0.92822,-0.14171 1.36754,-0.14172 0.93532,10e-6 1.64625,0.20313 2.13281,0.60938 0.49127,0.40625 0.73691,0.99673 0.73692,1.77143 -10e-6,0.15589 -0.0118,0.34012 -0.0354,0.55269 -0.0236,0.20785 -0.059,0.42987 -0.10628,0.66606 m -1.41007,0.53852 -1.30377,0 c -1.06759,0 -1.85883,0.14408 -2.37373,0.43223 -0.51017,0.28343 -0.76526,0.72511 -0.76526,1.32503 0,0.4157 0.12991,0.74164 0.38972,0.97783 0.26453,0.23619 0.62826,0.35429 1.0912,0.35429 0.70857,0 1.32739,-0.25273 1.85647,-0.75818 0.52906,-0.51017 0.87862,-1.1904 1.04869,-2.04069 l 0.0567,-0.29051"
inkscape:connector-curvature="0" />
<path
id="path10577"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 311.45321,282.82253 -0.92823,4.78996 -1.31086,0 0.92823,-4.74036 c 0.0425,-0.22202 0.0756,-0.41806 0.0992,-0.58812 0.0236,-0.17005 0.0354,-0.30468 0.0354,-0.40389 -10e-6,-0.39679 -0.12519,-0.7062 -0.37555,-0.92823 -0.25036,-0.22201 -0.59993,-0.33302 -1.04869,-0.33303 -0.69913,1e-5 -1.30141,0.23384 -1.80686,0.70149 -0.50545,0.46294 -0.83612,1.09357 -0.992,1.89189 l -0.87155,4.40025 -1.30378,0 1.53761,-7.93603 1.30378,0 -0.26218,1.24709 c 0.36374,-0.45821 0.80069,-0.81249 1.31087,-1.06286 0.51016,-0.25036 1.04632,-0.37554 1.60846,-0.37555 0.69912,10e-6 1.24,0.18896 1.62263,0.56686 0.38735,0.37791 0.58103,0.90934 0.58104,1.59429 -1e-5,0.17007 -0.0118,0.35193 -0.0354,0.54561 -0.0189,0.19368 -0.0496,0.40389 -0.0921,0.63063"
inkscape:connector-curvature="0" />
<path
id="path10579"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 321.23154,279.67646 -1.35338,6.95111 c -0.25982,1.34629 -0.75818,2.3501 -1.49509,3.01144 -0.7322,0.66133 -1.71948,0.992 -2.96184,0.992 -0.45822,0 -0.88336,-0.0354 -1.27544,-0.10628 -0.39207,-0.0661 -0.75817,-0.17006 -1.09829,-0.31177 l 0.24092,-1.26835 c 0.32122,0.20784 0.66133,0.36137 1.02035,0.46057 0.35901,0.0992 0.74163,0.1488 1.14789,0.1488 0.82666,0 1.50453,-0.22674 2.0336,-0.68023 0.53379,-0.44876 0.88572,-1.09593 1.05578,-1.94149 l 0.11337,-0.59521 c -0.36374,0.4157 -0.78652,0.7322 -1.26835,0.94949 -0.48183,0.2173 -1.00145,0.32595 -1.55886,0.32595 -0.80305,0 -1.43604,-0.26454 -1.89898,-0.79361 -0.45821,-0.53379 -0.68732,-1.26598 -0.68731,-2.19658 -10e-6,-0.73218 0.13935,-1.44784 0.41805,-2.14698 0.27871,-0.70384 0.67079,-1.32738 1.17624,-1.87063 0.33539,-0.359 0.7251,-0.63535 1.16914,-0.82903 0.44876,-0.19367 0.91642,-0.29051 1.40298,-0.29052 0.53379,10e-6 0.99909,0.12519 1.39589,0.37555 0.3968,0.24564 0.69204,0.59521 0.88572,1.04869 l 0.22674,-1.23292 1.31087,0 m -1.96275,2.91224 c -1e-5,-0.64244 -0.15117,-1.13844 -0.45349,-1.48801 -0.30233,-0.34956 -0.7322,-0.52434 -1.28961,-0.52434 -0.34484,0 -0.67315,0.0685 -0.98491,0.20548 -0.31178,0.137 -0.57868,0.32832 -0.80069,0.57395 -0.35902,0.40625 -0.64008,0.88572 -0.84321,1.4384 -0.1984,0.54797 -0.2976,1.11483 -0.2976,1.70058 0,0.65189 0.15116,1.15262 0.45349,1.50218 0.30705,0.34956 0.74636,0.52434 1.31795,0.52434 0.82666,0 1.51634,-0.37318 2.06903,-1.11954 0.55269,-0.75109 0.82903,-1.68877 0.82904,-2.81304"
inkscape:connector-curvature="0" />
<path
id="path10581"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 324.44846,276.58707 1.30378,0 -2.14698,11.02542 -1.30378,0 2.14698,-11.02542"
inkscape:connector-curvature="0" />
<path
id="path10583"
style="font-style:italic;font-weight:normal;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
d="m 332.79547,282.9359 c 0.0142,-0.0756 0.0236,-0.15352 0.0283,-0.23383 0.009,-0.0803 0.0142,-0.16061 0.0142,-0.24092 -10e-6,-0.5763 -0.17006,-1.03215 -0.51017,-1.36754 -0.3354,-0.33539 -0.79361,-0.50309 -1.37464,-0.50309 -0.64716,0 -1.21875,0.20549 -1.71475,0.61646 -0.496,0.40625 -0.87154,0.98492 -1.12663,1.736 l 4.68368,-0.007 m 1.13372,1.02034 -6.0654,0 c -0.0283,0.17951 -0.0472,0.32123 -0.0567,0.42515 -0.009,0.10393 -0.0142,0.19368 -0.0142,0.26926 0,0.65661 0.20076,1.16442 0.60229,1.52343 0.40625,0.35901 0.97783,0.53852 1.71475,0.53852 0.56686,0 1.10301,-0.0638 1.60846,-0.19132 0.50545,-0.12754 0.97547,-0.31413 1.41007,-0.55977 l -0.248,1.2896 c -0.46767,0.18896 -0.95186,0.33067 -1.45258,0.42515 -0.49601,0.0945 -1.00146,0.14171 -1.51635,0.14171 -1.10065,0 -1.94858,-0.26217 -2.54378,-0.78651 -0.59048,-0.52907 -0.88572,-1.2778 -0.88572,-2.24618 0,-0.82667 0.14644,-1.59429 0.43932,-2.30287 0.2976,-0.71329 0.73219,-1.34865 1.30377,-1.90606 0.36846,-0.34956 0.80541,-0.61882 1.31087,-0.80778 0.51017,-0.18894 1.05104,-0.28342 1.62263,-0.28343 0.89752,10e-6 1.61082,0.26927 2.13989,0.80778 0.53379,0.53852 0.80069,1.26126 0.80069,2.16823 0,0.2173 -0.0142,0.45113 -0.0425,0.70149 -0.0283,0.24565 -0.0709,0.51018 -0.12754,0.7936"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-3-0-9-3"
d="m 173.36008,321.453 c 18.5426,-5.6434 52.403,-8.8682 72.558,-0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-3-2-3-0-0"
d="m 122.56948,421.4218 177.364,0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-3-2-1-2-8-3"
d="m 127.40668,436.7396 166.0772,-0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 128.21288,458.507 160.4338,0"
id="path3992-4-77-9-5-7-1-2-3-2-1-2-8-2-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="text6934-3-2-9"
style="font-size:17.48647881px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path10566"
d="m 192.53265,269.8643 0,4.67046 2.76641,0 c 0.92783,0 1.61374,-0.19069 2.05774,-0.57207 0.44967,-0.38707 0.67452,-0.97621 0.67453,-1.76743 -1e-5,-0.79691 -0.22486,-1.38321 -0.67453,-1.7589 -0.444,-0.38137 -1.12991,-0.57206 -2.05774,-0.57206 l -2.76641,0 m 0,-5.24253 0,3.84224 2.55296,0 c 0.84244,1e-5 1.46858,-0.15653 1.87843,-0.46961 0.41552,-0.31875 0.62328,-0.80259 0.62329,-1.45151 -1e-5,-0.64321 -0.20777,-1.1242 -0.62329,-1.44298 -0.40985,-0.31875 -1.03599,-0.47813 -1.87843,-0.47814 l -2.55296,0 m -1.72474,-1.41736 4.40577,0 c 1.31489,1e-5 2.32811,0.27324 3.03964,0.81968 0.71152,0.54646 1.06728,1.32345 1.06729,2.33096 -10e-6,0.77984 -0.18216,1.40029 -0.54645,1.86135 -0.36431,0.46108 -0.89938,0.74853 -1.6052,0.86237 0.84813,0.18216 1.50558,0.56354 1.97235,1.14414 0.47244,0.57491 0.70867,1.29498 0.70868,2.16019 -1e-5,1.13845 -0.38708,2.01789 -1.16121,2.63834 -0.77415,0.62045 -1.8756,0.93068 -3.30433,0.93068 l -4.57654,0 0,-12.74771"
inkscape:connector-curvature="0" />
<path
id="path10568"
d="m 207.07341,271.14504 c -1.26937,1e-5 -2.14882,0.14516 -2.63834,0.43546 -0.48954,0.29031 -0.7343,0.78553 -0.7343,1.48567 0,0.55784 0.18215,1.00183 0.54645,1.33197 0.36999,0.32446 0.87091,0.48669 1.50275,0.48669 0.8709,0 1.5682,-0.30738 2.09189,-0.92214 0.52936,-0.62045 0.79405,-1.44297 0.79406,-2.46757 l 0,-0.35008 -1.56251,0 m 3.13356,-0.64891 0,5.45599 -1.57105,0 0,-1.45152 c -0.35862,0.58061 -0.80546,1.01037 -1.34052,1.28929 -0.53507,0.27323 -1.18967,0.40984 -1.96381,0.40984 -0.97906,0 -1.7589,-0.27323 -2.3395,-0.81968 -0.57492,-0.55214 -0.86237,-1.28928 -0.86237,-2.21142 0,-1.07583 0.35861,-1.88697 1.07583,-2.43343 0.72291,-0.54644 1.79873,-0.81967 3.22748,-0.81967 l 2.20289,0 0,-0.15369 c -1e-5,-0.72291 -0.23908,-1.28074 -0.71722,-1.67351 -0.47246,-0.39845 -1.13845,-0.59768 -1.99797,-0.59769 -0.54645,1e-5 -1.07867,0.0655 -1.59666,0.19638 -0.518,0.13093 -1.01606,0.32731 -1.49421,0.58915 l 0,-1.45152 c 0.57491,-0.22198 1.13275,-0.38706 1.67351,-0.49522 0.54076,-0.11383 1.06729,-0.17076 1.57959,-0.17076 1.3832,0 2.41634,0.35861 3.09941,1.07582 0.68306,0.71723 1.02459,1.80444 1.0246,3.26164"
inkscape:connector-curvature="0" />
<path
id="path10570"
d="m 220.33342,266.75635 0,1.46859 c -0.444,-0.24476 -0.89084,-0.42691 -1.34052,-0.54645 -0.444,-0.12522 -0.89368,-0.18784 -1.34905,-0.18785 -1.01892,1e-5 -1.81013,0.32447 -2.37366,0.97337 -0.56353,0.64323 -0.84529,1.54829 -0.84529,2.71519 0,1.1669 0.28176,2.07481 0.84529,2.72372 0.56353,0.64322 1.35474,0.96483 2.37366,0.96483 0.45537,0 0.90505,-0.0598 1.34905,-0.1793 0.44968,-0.12523 0.89652,-0.31023 1.34052,-0.55499 l 0,1.45151 c -0.43831,0.20492 -0.89369,0.35861 -1.36614,0.46107 -0.46676,0.10246 -0.96483,0.15369 -1.4942,0.15369 -1.44014,0 -2.58427,-0.45253 -3.43241,-1.35759 -0.84814,-0.90506 -1.27221,-2.12604 -1.27221,-3.66294 0,-1.55966 0.42692,-2.78633 1.28075,-3.68002 0.85952,-0.89367 2.03496,-1.34051 3.52633,-1.34051 0.48383,0 0.95628,0.0512 1.41736,0.15368 0.46106,0.0968 0.9079,0.24478 1.34052,0.444"
inkscape:connector-curvature="0" />
<path
id="path10572"
d="m 223.02299,262.66649 1.57959,0 0,7.84672 4.68753,-4.12401 2.00651,0 -5.07176,4.47408 5.28522,5.08884 -2.0492,0 -4.8583,-4.67046 0,4.67046 -1.57959,0 0,-13.28563"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

View file

@ -0,0 +1,209 @@
<?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="169.81744"
height="218.20702"
id="svg10663"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 105">
<defs
id="defs10665" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="152.54124"
inkscape:cy="218.5906"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata10668">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-115.09124,-228.97294)">
<g
id="g10750">
<path
style="fill:none;stroke:#dba981;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.5, 7.5;stroke-dashoffset:0;display:inline"
d="m 180.2231,267.68 35,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-0-2-9-3-0-4-0-2-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0;display:inline"
d="m 139.2231,412.68 119,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-3-3-4-6-5-0-7-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-3-3-4-6-5-0-7-9"
d="m 132.2231,385.68 133,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-0-2-9-3-0-4-0-8"
d="m 128.2231,354.68 142,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 170.2231,272.68 c 12,-6 46,-7 58,1"
id="path3992-4-77-9-5-7-1-0-3-9-9-0-7-8-2-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 271.2231,354.68 c -16,-20 -8,-41 0,-64"
id="path8584-0-8-6-3-5-9-1-8-8-0-5-1-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 128.2231,354.68 c 13,-19 11,-37 -2,-64"
id="path8584-6-5-3-6-1-2-7-3-1-8-7-6-8-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 145.2231,445.68 c -3,-18 -5,-31 -9,-48 -3,-12 -2,-24 -6,-36 -10,-20 -21,-49 -7,-69 7,-9 28,-8 44,-18 7,-5 6,-15 5,-23 23,-7 31,-8 54,0 -1,8 -2,19 5,24 16,9 37,8 44,17 18,24 2,49 -7,70 -4,11 -4,23 -7,35 -3,17 -6,31 -9,47"
id="path11142-0-5-6-7-5-6-6-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-1-2-5-4-2-0-8-1-2"
d="m 147.2231,444.68 105,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<g
id="text6934-6-9-7-0-3-1-4-9-8-3"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path10742"
d="m 184.42765,234.94622 0,3.8759 2.29578,0 c 0.76998,0 1.3392,-0.15825 1.70767,-0.47475 0.37317,-0.32121 0.55976,-0.81013 0.55977,-1.46674 -1e-5,-0.66134 -0.1866,-1.14789 -0.55977,-1.45967 -0.36847,-0.31649 -0.93769,-0.47474 -1.70767,-0.47474 l -2.29578,0 m 0,-4.35065 0,3.18859 2.11864,0 c 0.69912,0 1.21874,-0.1299 1.55886,-0.38972 0.34483,-0.26453 0.51725,-0.66605 0.51726,-1.20458 -1e-5,-0.53378 -0.17243,-0.93294 -0.51726,-1.19749 -0.34012,-0.26452 -0.85974,-0.39679 -1.55886,-0.3968 l -2.11864,0 m -1.43132,-1.17623 3.65624,0 c 1.0912,1e-5 1.93204,0.22675 2.52253,0.68023 0.59047,0.4535 0.88571,1.0983 0.88572,1.93441 -1e-5,0.64717 -0.15117,1.16207 -0.45349,1.54469 -0.30233,0.38264 -0.74637,0.62119 -1.33212,0.71566 0.70384,0.15117 1.24944,0.46766 1.63681,0.94949 0.39207,0.47711 0.5881,1.07467 0.58811,1.79269 -1e-5,0.94477 -0.32123,1.6746 -0.96366,2.1895 -0.64245,0.51489 -1.55651,0.77234 -2.74218,0.77234 l -3.79796,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path10744"
d="m 196.49467,236.00908 c -1.05342,0 -1.78325,0.12046 -2.18949,0.36137 -0.40626,0.24092 -0.60938,0.65189 -0.60938,1.23292 0,0.46294 0.15116,0.8314 0.45349,1.10538 0.30705,0.26926 0.72274,0.40389 1.24709,0.40388 0.72274,1e-5 1.30141,-0.25508 1.73601,-0.76526 0.43931,-0.51489 0.65896,-1.19748 0.65897,-2.04778 l 0,-0.29051 -1.29669,0 m 2.60047,-0.53852 0,4.52779 -1.30378,0 0,-1.20457 c -0.29761,0.48183 -0.66843,0.83848 -1.11246,1.06994 -0.44405,0.22675 -0.98728,0.34012 -1.62972,0.34012 -0.8125,0 -1.45967,-0.22675 -1.94149,-0.68023 -0.47711,-0.45821 -0.71567,-1.06995 -0.71566,-1.83521 -1e-5,-0.8928 0.2976,-1.56594 0.8928,-2.01944 0.59992,-0.45348 1.49273,-0.68022 2.67841,-0.68023 l 1.82812,0 0,-0.12754 c -1e-5,-0.59992 -0.19841,-1.06286 -0.5952,-1.38881 -0.39208,-0.33066 -0.94477,-0.49599 -1.65807,-0.496 -0.45349,1e-5 -0.89516,0.0543 -1.32503,0.16297 -0.42987,0.10866 -0.8432,0.27163 -1.24,0.48892 l 0,-1.20458 c 0.4771,-0.18422 0.94004,-0.32121 1.3888,-0.41097 0.44876,-0.0945 0.88572,-0.14171 1.31086,-0.14171 1.14789,0 2.00526,0.29761 2.57213,0.8928 0.56685,0.59521 0.85028,1.49746 0.85029,2.70675"
inkscape:connector-curvature="0" />
<path
id="path10746"
d="m 207.49883,232.36701 0,1.21875 c -0.36847,-0.20312 -0.73929,-0.35428 -1.11247,-0.45349 -0.36846,-0.10392 -0.74164,-0.15588 -1.11954,-0.15589 -0.84557,1e-5 -1.50218,0.26927 -1.96984,0.80778 -0.46766,0.53379 -0.70149,1.28488 -0.70149,2.25326 0,0.96839 0.23383,1.72184 0.70149,2.26035 0.46766,0.5338 1.12427,0.80069 1.96984,0.80069 0.3779,0 0.75108,-0.0496 1.11954,-0.1488 0.37318,-0.10392 0.744,-0.25745 1.11247,-0.46057 l 0,1.20458 c -0.36375,0.17005 -0.74165,0.2976 -1.13372,0.38263 -0.38736,0.085 -0.8007,0.12754 -1.24001,0.12754 -1.19513,0 -2.14462,-0.37555 -2.84847,-1.12663 -0.70385,-0.75109 -1.05577,-1.76435 -1.05577,-3.03979 0,-1.29432 0.35428,-2.31231 1.06286,-3.05395 0.7133,-0.74164 1.68876,-1.11246 2.92641,-1.11246 0.40152,0 0.7936,0.0425 1.17623,0.12754 0.38263,0.0803 0.75345,0.20313 1.11247,0.36846"
inkscape:connector-curvature="0" />
<path
id="path10748"
d="m 209.73084,228.97294 1.31086,0 0,6.51179 3.89007,-3.42241 1.66515,0 -4.20893,3.71293 4.38607,4.2231 -1.70057,0 -4.03179,-3.8759 0,3.8759 -1.31086,0 0,-11.02541"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 132.2231,366.68 133,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-5-9-7-0-5-8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 200.2231,321.68 0,-54"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-74-7-8-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3.22480011;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline"
d="m 200.2231,443.68 0,-122"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-74-8-2-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-8-7-3-4"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-126.7769,-1870.32)" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-7-0-8-4"
y="372.40826"
x="193.34981"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="372.40826"
x="193.34981"
id="tspan8514-9-9-1-0-8-3-6-6-4-7-0"
sodipodi:role="line">42</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-0-2-9-3-0-4-0-8-7"
d="m 137.2231,321.68 123,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0;display:inline" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-8-7-3-4-3"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-126.7769,-1948.32)" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-7-0-8-4-8"
y="293.9295"
x="193.96651"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="293.9295"
x="193.96651"
id="tspan8514-9-9-1-0-8-3-6-6-4-7-0-0"
sodipodi:role="line">41</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,154 @@
<?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="164.48822"
height="216.55148"
id="svg8164"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 72">
<defs
id="defs8166" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="271.52479"
inkscape:cy="-34.577308"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata8169">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-103.47521,-281.23339)">
<g
style="display:inline"
id="g9565"
transform="matrix(0.8062,0,0,0.8062,-290.7062,-1145.7546)">
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 511.2,1964 6.8,-2 29.4,-1 48.8,3 52.1,5"
id="path3874-7-8-0-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 496.5,1898 c 0,0 10,-7 15.8,-9 6.1,-2 12.8,-2 19.2,-2 9.5,0 28.4,3 28.4,3 9.1,-3 34.9,-2 46.2,2 21.5,6 39.9,22 53.5,23"
id="path3868-7-7-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caacsc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 542.9,1802 c -7.9,19 57.8,23 71.4,-2"
id="path3876-91-29-8-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 514.6,2033 c 28.3,5 95.2,9 131.4,-3"
id="path3878-7-1-40-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 491.9,1916 c 0,0 10,-2 15.1,-2 15.2,0 33.7,3 45.1,7 14.7,-6 24.7,-8 38.3,-8 29.5,0 48.8,12 66.9,17"
id="path3872-1-8-9-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cacsc" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path2993-6-7-5"
d="m 658.5,1911 c 2.2,4 -6.8,51 -15.9,75 -4.5,13 -6.8,35 -5.6,48"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="caac"
inkscape:connector-curvature="0"
id="path3009-0-7-5"
d="m 675.5,1819 c -17,4 -21.6,10 -27.2,20 -10.2,18 -20.4,45 -7.9,62 6.7,9 27.1,15 33.9,6"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3011-2-2-3"
d="m 548.6,1780 c 0,0 12.4,6 19.2,6 37.4,2 46.5,-10 46.5,-10"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 607.5,1782 c 3.4,12 1.1,11 4.5,14 11.4,14 35.1,19 49.9,23"
id="path3992-4-9-6-1-0-0-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
sodipodi:nodetypes="cccscccccccacacccc"
inkscape:connector-curvature="0"
id="path15557"
d="m 512.3,2032 c 2.3,-15 -1.1,-33 -2.2,-48 0,-7 2.2,-12 0,-22 -10.2,-9 -19.3,-30 -19.3,-45 0,-13 9.1,-22 12.5,-37 2.2,-7 -6.8,-17 -9.1,-29 -3.4,-11 0,-24 5.7,-26 11.3,-2 29.4,-10 39.6,-18 9.1,-9 7.9,-27 7.9,-27 0,0 1.2,-6 19.3,-8 17,-1 48.7,4 48.7,4 0,0 -1.1,12 2.3,17 12.5,15 43,18 54.4,23 17,7 15.8,14 18.1,23 4.5,24 -9.1,51 -17,70 -6.8,15 -6.8,33 -11.3,49 -3.4,10 -6.8,19 -10.2,29 -2.3,9 -5.7,32 -4.6,42"
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path3874-7-8-0-4-6"
d="m 513.5,1991 6.8,-1 c 26,-4 50.9,-1 78.1,1 l 40.8,4"
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#000000;stroke-width:3.39899993;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 554.4,2034 c -6.2,-112 1,-145 16.8,-215"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-9-10"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="csssc"
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-5-9-3-0-9-0-4-8"
d="m 579.2,1856 c 0,9 -8,16 -15.9,16 -9.1,0 -15.9,-7 -15.9,-16 0,-9 6.8,-16 15.9,-16 7.9,0 14.7,7 15.9,16"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.5776;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-0-2"
y="1862.5096"
x="558.20148"
style="font-size:20.3939991px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1862.5096"
x="558.20148"
id="tspan8514-9-9-1-0-8-3-6-0-4"
sodipodi:role="line">2</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

View file

@ -0,0 +1,273 @@
<?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="169.58434"
height="216.56548"
id="svg8368"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 75">
<defs
id="defs8370" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="144.3871"
inkscape:cy="95.382533"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata8373">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-78.06497,-261.22227)">
<g
id="g8481">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279"
d="m 193.74542,389.2878 14.7,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279-3"
d="m 208.44542,389.2878 -14.7,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-8-3"
d="m 107.54542,440.2878 114.6,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0;display:inline" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 113.14542,476.2878 c 2.4,-16 -5.7,-32 -8.9,-49 -2.4,-10 -1.6,-24 -6.5,-34 -8,-21 -20.1,-50 -6.4,-71 6.4,-8 29.8,-9 46,-18 3.2,-2 4,-7 4.8,-11 0.8,-4 -0.8,-14 -0.8,-14 0,0 15.4,5 23.4,5 7.2,0 20.9,-6 20.9,-6 0,0 -1.6,8 -0.8,12 0.8,4 2.4,10 4.9,12 16.3,9 42.1,12 48.6,21 16.9,24 2.4,49 -6.5,70 -4.8,10 -4.8,24 -6.4,34 -3.3,17 -11.3,33 -8.9,49"
id="path11116-9-7-3-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccacacaccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4-4-7-8"
d="m 235.84542,383.2878 c -4.8,-2 -29,6 -3.2,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3-1-1-6"
d="m 95.34542,382.2878 c 4.1,-1 29.9,6 4.1,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-90-1-4"
d="m 138.94542,303.2878 c 11.2,9 50.8,6 51.6,-1"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-4-0-3"
d="m 94.84542,386.2878 c 15.3,0 16.7,-21 70.7,-21 54.6,0 50.2,22 69.5,22"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-7-2"
d="m 101.04542,397.2878 130,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-68-0"
d="m 113.94542,475.2878 101.8,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 102.64542,416.2878 124.4,1"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4864-7"
d="m 191.34542,303.2878 c 7.5,57 12.3,115 16.3,173"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
<g
id="text6934-2-9-4-0-5-3"
style="font-size:14.51119995px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path8471"
d="m 147.82243,261.22227 6.0794,0 0,1.20455 -4.64812,0 0,3.11764 4.19465,0 0,1.20454 -4.19465,0 0,5.05199 -1.43128,0 0,-10.57872"
inkscape:connector-curvature="0" />
<path
id="path8473"
d="m 159.67655,265.0839 c -0.14644,-0.085 -0.30704,-0.14643 -0.48181,-0.18423 -0.17006,-0.0425 -0.35901,-0.0638 -0.56685,-0.0638 -0.7369,10e-6 -1.30374,0.24092 -1.70053,0.72273 -0.39207,0.4771 -0.5881,1.16439 -0.5881,2.06189 l 0,4.18047 -1.31082,0 0,-7.93581 1.31082,0 0,1.23289 c 0.27397,-0.48181 0.63061,-0.83845 1.06992,-1.06992 0.4393,-0.23618 0.97308,-0.35427 1.60133,-0.35428 0.0897,1e-5 0.18895,0.007 0.2976,0.0213 0.10863,0.009 0.22909,0.026 0.36136,0.0496 l 0.007,1.33917"
inkscape:connector-curvature="0" />
<path
id="path8475"
d="m 163.8216,264.77922 c -0.69911,0 -1.25178,0.27398 -1.65802,0.82192 -0.40624,0.54323 -0.60936,1.28958 -0.60936,2.23903 0,0.94947 0.20076,1.69818 0.60228,2.24612 0.40623,0.54323 0.96126,0.81484 1.6651,0.81484 0.69438,0 1.24469,-0.27397 1.65093,-0.82192 0.40623,-0.54795 0.60935,-1.29429 0.60936,-2.23904 -10e-6,-0.94001 -0.20313,-1.68399 -0.60936,-2.23194 -0.40624,-0.55267 -0.95655,-0.82901 -1.65093,-0.82901 m 0,-1.10535 c 1.13368,10e-6 2.0241,0.36846 2.67125,1.10535 0.64714,0.7369 0.97071,1.75722 0.97072,3.06095 -1e-5,1.29902 -0.32358,2.31934 -0.97072,3.06096 -0.64715,0.7369 -1.53757,1.10535 -2.67125,1.10535 -1.13842,0 -2.03119,-0.36845 -2.67834,-1.10535 -0.64242,-0.74162 -0.96363,-1.76194 -0.96363,-3.06096 0,-1.30373 0.32121,-2.32405 0.96363,-3.06095 0.64715,-0.73689 1.53992,-1.10534 2.67834,-1.10535"
inkscape:connector-curvature="0" />
<path
id="path8477"
d="m 176.21422,267.01117 0,4.78982 -1.30374,0 0,-4.74731 c -1e-5,-0.75106 -0.14644,-1.31318 -0.43931,-1.68636 -0.29287,-0.37317 -0.73217,-0.55975 -1.31791,-0.55976 -0.70383,10e-6 -1.25887,0.22438 -1.6651,0.67313 -0.40624,0.44875 -0.60936,1.06047 -0.60936,1.83515 l 0,4.48515 -1.31082,0 0,-7.93581 1.31082,0 0,1.23289 c 0.31176,-0.47709 0.67785,-0.83373 1.09826,-1.06992 0.42513,-0.23618 0.91403,-0.35427 1.46671,-0.35428 0.91167,10e-6 1.60133,0.28343 2.06898,0.85027 0.46764,0.56213 0.70146,1.39113 0.70147,2.48703"
inkscape:connector-curvature="0" />
<path
id="path8479"
d="m 180.11836,261.61198 0,2.2532 2.68542,0 0,1.01324 -2.68542,0 0,4.30801 c -1e-5,0.64715 0.0874,1.06283 0.26216,1.24705 0.1795,0.18423 0.54086,0.27634 1.08409,0.27634 l 1.33917,0 0,1.09117 -1.33917,0 c -1.00615,0 -1.70053,-0.18658 -2.08315,-0.55975 -0.38262,-0.3779 -0.57393,-1.06283 -0.57393,-2.05481 l 0,-4.30801 -0.95655,0 0,-1.01324 0.95655,0 0,-2.2532 1.31083,0"
inkscape:connector-curvature="0" />
</g>
<path
transform="matrix(0.8062,0,0,0.8062,-123.95458,-1799.4122)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2-9"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-5-4"
y="443.59274"
x="200.00139"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="443.59274"
x="200.00139"
id="tspan8486-3-0-4-3-7-4-0"
sodipodi:role="line">6</tspan></text>
<path
sodipodi:nodetypes="cac"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 100.44542,316.2878 c 0,0 10,27 12.1,40 5.8,39 0.4,119 0.4,119"
id="path4864-7-2"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 138.34542,302.2878 0.3,173"
id="path4864-7-25"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-08"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-188.15458,-1799.4122)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="135.42186"
y="443.59274"
id="text8484-0-0-0-8-7-5-4-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-0-9"
x="135.42186"
y="443.59274">5</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4864-7-25-7-6"
d="m 92.74542,382.2878 19.7,93"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
<path
transform="matrix(0.8062,0,0,0.8062,-236.55458,-1830.4122)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2-9-4-4"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-5-4-0-9"
y="412.63229"
x="87.027573"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="412.63229"
x="87.027573"
id="tspan8486-3-0-4-3-7-4-0-4-6"
sodipodi:role="line">3</tspan></text>
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-0"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-214.25458,-1799.4122)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="109.26677"
y="443.59274"
id="text8484-0-0-0-8-7-5-4-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-0-1"
x="109.26677"
y="443.59274">4</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,331 @@
<?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="164.05463"
height="218.16486"
id="svg8583"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 78">
<defs
id="defs8585" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="10.84039"
inkscape:cy="189.00033"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata8588">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-72.258404,-246.13689)">
<g
id="g8720">
<path
style="fill:none;stroke:#dba981;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.5, 7.5;stroke-dashoffset:0;display:inline"
d="m 134.80867,294.8018 35,0"
id="path3992-4-77-9-5-7-1-2-9-8-5-7-2-7-5-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-8-7-8-4"
d="m 95.50867,427.8018 114.3,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-68-0-6-13"
d="m 102.50867,460.8018 102.3,1"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 101.50867,462.8018 c 3,-17 -5,-32 -9,-49 -2,-11 -1,-25 -6,-35 -8,-21 -20,-50 -7,-71 7,-8 30.3,-9 46.3,-18 7,-6 6,-16 4,-25 20,6 25,6 45,-1 -9,36 39,28 52,45 17,24 3,50 -6,70 -5,10 -5,24 -7,35 -3,17 -11,32 -9,49"
id="path11116-9-7-3-3-4-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc" />
<g
transform="translate(-1244.4913,-2713.5982)"
id="g9424">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-9-3-2"
d="m 1449,3176 6,-35"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-8-7"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,1133,922.1)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="1453.3538"
y="3164.4944"
id="text8512-9-6-3-7-2-5-4-0-1-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-9-1-0-8-3-6-0-9-2"
x="1453.3538"
y="3164.4944">12</tspan></text>
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4-4-7-8-0-8"
d="m 224.80867,368.8018 c -5,-1 -29,6 -3,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3-1-1-6-3-3"
d="m 84.50867,367.8018 c 4,-1 29.3,6 4,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-90-1-4-0-5"
d="m 127.80867,288.8018 c 11,9 51,6 52,-1"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-4-0-3-9-0"
d="m 85.50867,373.8018 c 15,0 15,-23 69.3,-23 54,0 50,22 69,22"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-7-2-7-5"
d="m 89.50867,382.8018 130.3,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 91.50867,401.8018 124.3,1"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-8-7-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4864-7-7-0"
d="m 160.80867,294.8018 0,87"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
<g
id="text6934-2-9-4-0-5-3-2-6"
style="font-size:14.51119995px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path8710"
d="m 136.0085,246.13689 6.0794,0 0,1.20454 -4.64812,0 0,3.11764 4.19464,0 0,1.20454 -4.19464,0 0,5.052 -1.43128,0 0,-10.57872"
inkscape:connector-curvature="0" />
<path
id="path8712"
d="m 147.86262,249.99851 c -0.14644,-0.085 -0.30705,-0.14643 -0.48182,-0.18423 -0.17006,-0.0425 -0.359,-0.0638 -0.56684,-0.0638 -0.7369,1e-5 -1.30375,0.24092 -1.70053,0.72273 -0.39207,0.4771 -0.58811,1.1644 -0.5881,2.06189 l 0,4.18048 -1.31083,0 0,-7.93582 1.31083,0 0,1.23289 c 0.27397,-0.48181 0.63061,-0.83845 1.06991,-1.06992 0.4393,-0.23618 0.97308,-0.35427 1.60134,-0.35428 0.0897,1e-5 0.18894,0.007 0.29759,0.0213 0.10864,0.009 0.22909,0.026 0.36136,0.0496 l 0.007,1.33917"
inkscape:connector-curvature="0" />
<path
id="path8714"
d="m 152.00767,249.69383 c -0.69912,1e-5 -1.25179,0.27398 -1.65802,0.82192 -0.40624,0.54323 -0.60936,1.28958 -0.60936,2.23904 0,0.94946 0.20075,1.69817 0.60227,2.24611 0.40624,0.54323 0.96127,0.81484 1.66511,0.81484 0.69437,0 1.24468,-0.27397 1.65093,-0.82192 0.40623,-0.54795 0.60935,-1.29429 0.60935,-2.23903 0,-0.94001 -0.20312,-1.684 -0.60935,-2.23195 -0.40625,-0.55267 -0.95656,-0.829 -1.65093,-0.82901 m 0,-1.10535 c 1.13368,1e-5 2.02409,0.36846 2.67125,1.10535 0.64714,0.7369 0.97071,1.75722 0.97072,3.06096 -1e-5,1.29902 -0.32358,2.31933 -0.97072,3.06095 -0.64716,0.7369 -1.53757,1.10535 -2.67125,1.10535 -1.13842,0 -2.0312,-0.36845 -2.67834,-1.10535 -0.64243,-0.74162 -0.96364,-1.76193 -0.96364,-3.06095 0,-1.30374 0.32121,-2.32406 0.96364,-3.06096 0.64714,-0.73689 1.53992,-1.10534 2.67834,-1.10535"
inkscape:connector-curvature="0" />
<path
id="path8716"
d="m 164.40029,251.92578 0,4.78983 -1.30375,0 0,-4.74732 c 0,-0.75106 -0.14644,-1.31318 -0.4393,-1.68636 -0.29287,-0.37317 -0.73218,-0.55975 -1.31791,-0.55976 -0.70384,1e-5 -1.25887,0.22438 -1.6651,0.67313 -0.40625,0.44876 -0.60936,1.06047 -0.60936,1.83516 l 0,4.48515 -1.31083,0 0,-7.93582 1.31083,0 0,1.23289 c 0.31176,-0.47709 0.67785,-0.83373 1.09826,-1.06992 0.42513,-0.23618 0.91403,-0.35427 1.46671,-0.35428 0.91166,1e-5 1.60132,0.28343 2.06898,0.85027 0.46763,0.56213 0.70146,1.39113 0.70147,2.48703"
inkscape:connector-curvature="0" />
<path
id="path8718"
d="m 168.30442,246.52659 0,2.2532 2.68543,0 0,1.01324 -2.68543,0 0,4.30801 c 0,0.64715 0.0874,1.06283 0.26217,1.24706 0.1795,0.18422 0.54086,0.27633 1.08409,0.27633 l 1.33917,0 0,1.09118 -1.33917,0 c -1.00615,0 -1.70054,-0.18659 -2.08315,-0.55976 -0.38263,-0.3779 -0.57393,-1.06283 -0.57393,-2.05481 l 0,-4.30801 -0.95655,0 0,-1.01324 0.95655,0 0,-2.2532 1.31082,0"
inkscape:connector-curvature="0" />
</g>
<path
transform="matrix(0.8062,0,0,0.8062,-166.49133,-1889.1982)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2-9-1-3"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-5-4-9-4"
y="353.98807"
x="157.26326"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="353.98807"
x="157.26326"
id="tspan8486-3-0-4-3-7-4-0-15-0"
sodipodi:role="line">9</tspan></text>
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 181.80867,402.8018 0,60"
id="path4864-7-25-8-43"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 143.80867,294.8018 -1,56"
id="path4864-7-25-7-7-0"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-4-7-2"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-184.49133,-1916.1982)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="139.40108"
y="326.6951"
id="text8484-0-0-0-8-7-5-4-0-2-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-0-4-1-0"
x="139.40108"
y="326.6951">7</tspan></text>
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-8"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-145.49133,-1797.1982)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="174.82039"
y="445.21829"
id="text8484-0-0-0-8-7-5-4-9-8-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-0-15-5-5"
x="174.82039"
y="445.21829">11</tspan></text>
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#7dc832;stroke-width:3.22480011;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 142.80867,353.8018 0,108"
id="path4864-7-25-7-6-3"
inkscape:connector-curvature="0" />
<path
transform="matrix(0.8062,0,0,0.8062,-184.49133,-1845.1982)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2-9-0-2"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-5-4-4-6"
y="398.38748"
x="139.24153"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="398.38748"
x="139.24153"
id="tspan8486-3-0-4-3-7-4-0-1-0"
sodipodi:role="line">8</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4864-7-25-7-6-3-8"
d="m 160.80867,383.8018 0,78"
style="fill:none;stroke:#7dc832;stroke-width:3.22480011;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-0-2-2"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-166.49133,-1815.1982)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="152.90608"
y="428.02151"
id="text8484-0-0-0-8-7-5-4-4-6-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-0-1-0-2"
x="152.90608"
y="428.02151">10</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,279 @@
<?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="164.18556"
height="216.87067"
id="svg8823"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 81">
<defs
id="defs8825" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="166.00107"
inkscape:cy="115.01885"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata8828">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-132.19291,-303.92689)">
<g
id="g8939">
<path
style="fill:none;stroke:#dba981;stroke-width:1.61240005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.8372, 1.6124;stroke-dashoffset:0"
d="m 248.1373,441.2976 4,-27"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-68-0-6-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 162.1373,519.2976 c 2,-17 -6,-32 -9,-49 -3,-10 -2,-24 -7,-35 -8,-20 -20,-49 -6,-70 6,-9 30,-9 46,-18 7,-7 6,-16 4,-25 20,5 25,5 45,-1 -9,35 38,27 52,44 17,25 2,50 -7,70 -4,11 -4,25 -6,35 -3,17 -11,32 -9,49"
id="path11116-9-7-3-3-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4-4-7-8-0"
d="m 284.1373,426.2976 c -4,-2 -29,5 -3,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3-1-1-6-3"
d="m 144.1373,425.2976 c 4,-2 30,6 4,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-90-1-4-0"
d="m 188.1373,346.2976 c 11,9 51,6 51,-2"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-4-0-3-9"
d="m 145.1373,430.2976 c 15,0 15,-20 69,-22 57,-1 49,21 69,21"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-7-2-7"
d="m 150.1373,440.2976 129,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-68-0-6"
d="m 162.1373,518.2976 103,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 151.1373,459.2976 125,1"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-8-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="text6934-2-9-4-0-5-3-2"
style="font-size:14.51119995px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path8929"
d="m 196.07712,303.92689 6.0794,0 0,1.20455 -4.64812,0 0,3.11764 4.19464,0 0,1.20454 -4.19464,0 0,5.052 -1.43128,0 0,-10.57873"
inkscape:connector-curvature="0" />
<path
id="path8931"
d="m 207.93124,307.78852 c -0.14644,-0.085 -0.30705,-0.14643 -0.48182,-0.18423 -0.17006,-0.0425 -0.359,-0.0638 -0.56684,-0.0638 -0.7369,1e-5 -1.30375,0.24092 -1.70053,0.72273 -0.39207,0.4771 -0.58811,1.1644 -0.5881,2.06189 l 0,4.18048 -1.31083,0 0,-7.93582 1.31083,0 0,1.23289 c 0.27397,-0.48181 0.63061,-0.83845 1.06991,-1.06992 0.4393,-0.23618 0.97308,-0.35427 1.60134,-0.35428 0.0897,10e-6 0.18894,0.007 0.29759,0.0213 0.10864,0.009 0.22909,0.026 0.36136,0.0496 l 0.007,1.33917"
inkscape:connector-curvature="0" />
<path
id="path8933"
d="m 212.07628,307.48384 c -0.69911,1e-5 -1.25178,0.27398 -1.65801,0.82192 -0.40624,0.54323 -0.60936,1.28958 -0.60936,2.23903 0,0.94947 0.20075,1.69818 0.60227,2.24612 0.40624,0.54323 0.96127,0.81484 1.6651,0.81484 0.69438,0 1.24469,-0.27397 1.65094,-0.82192 0.40623,-0.54795 0.60935,-1.29429 0.60935,-2.23904 0,-0.94001 -0.20312,-1.68399 -0.60935,-2.23194 -0.40625,-0.55267 -0.95656,-0.829 -1.65094,-0.82901 m 0,-1.10535 c 1.13369,10e-6 2.0241,0.36846 2.67126,1.10535 0.64713,0.7369 0.97071,1.75722 0.97071,3.06095 0,1.29902 -0.32358,2.31934 -0.97071,3.06096 -0.64716,0.7369 -1.53757,1.10535 -2.67126,1.10535 -1.13841,0 -2.03119,-0.36845 -2.67833,-1.10535 -0.64243,-0.74162 -0.96364,-1.76194 -0.96364,-3.06096 0,-1.30373 0.32121,-2.32405 0.96364,-3.06095 0.64714,-0.73689 1.53992,-1.10534 2.67833,-1.10535"
inkscape:connector-curvature="0" />
<path
id="path8935"
d="m 224.4689,309.71579 0,4.78983 -1.30374,0 0,-4.74732 c 0,-0.75106 -0.14644,-1.31318 -0.4393,-1.68636 -0.29288,-0.37317 -0.73218,-0.55975 -1.31791,-0.55976 -0.70384,10e-6 -1.25887,0.22438 -1.66511,0.67313 -0.40624,0.44875 -0.60936,1.06047 -0.60935,1.83515 l 0,4.48516 -1.31083,0 0,-7.93582 1.31083,0 0,1.23289 c 0.31176,-0.47709 0.67784,-0.83373 1.09826,-1.06992 0.42513,-0.23618 0.91403,-0.35427 1.46671,-0.35428 0.91166,10e-6 1.60132,0.28343 2.06897,0.85027 0.46764,0.56213 0.70147,1.39113 0.70147,2.48703"
inkscape:connector-curvature="0" />
<path
id="path8937"
d="m 228.37304,304.3166 0,2.2532 2.68542,0 0,1.01324 -2.68542,0 0,4.30801 c 0,0.64715 0.0874,1.06283 0.26217,1.24705 0.17949,0.18423 0.54086,0.27634 1.08409,0.27634 l 1.33916,0 0,1.09118 -1.33916,0 c -1.00616,0 -1.70054,-0.18659 -2.08316,-0.55976 -0.38262,-0.3779 -0.57393,-1.06283 -0.57392,-2.05481 l 0,-4.30801 -0.95655,0 0,-1.01324 0.95655,0 0,-2.2532 1.31082,0"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-7-82-1-6-1-2-5-2"
d="m 187.1373,346.2976 0,94"
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
transform="matrix(0.8062,0,0,0.8062,-139.8627,-1830.7024)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2-9-1-7-0"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-5-4-9-8-7"
y="412.16724"
x="180.26047"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="412.16724"
x="180.26047"
id="tspan8486-3-0-4-3-7-4-0-15-5-8"
sodipodi:role="line">14</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4864-7-25-8-4"
d="m 262.1373,352.2976 -9,62"
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
<path
transform="matrix(0.8062,0,0,0.8062,-71.8627,-1845.1024)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2-9-1-7-6"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-5-4-9-8-9"
y="397.73633"
x="247.33151"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="397.73633"
x="247.33151"
id="tspan8486-3-0-4-3-7-4-0-15-5-2"
sodipodi:role="line">16</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 150.1373,359.2976 c 10,22 12,45 10,63"
id="path7494-1-6-3-5-7-82-1-6-1-2-5-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-0-5"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-163.8627,-1857.6024)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="155.75656"
y="385.28589"
id="text8484-0-0-0-8-7-5-4-9-8-7-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-0-15-5-8-9"
x="155.75656"
y="385.28589">13</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 240.1373,344.2976 0,66"
id="path7494-1-6-3-5-7-82-1-6-1-2-5-2-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-0-58"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-87.8627,-1866.4024)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="231.85092"
y="376.57031"
id="text8484-0-0-0-8-7-5-4-9-8-7-10"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-0-15-5-8-35"
x="231.85092"
y="376.57031">15</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-8-7-1"
d="m 156.1373,482.2976 115,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0;display:inline" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 241.1373,433.2976 14,14"
id="path8279-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 255.1373,433.2976 -14,14"
id="path8279-3-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,237 @@
<?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="169.70647"
height="216.9465"
id="svg9034"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 84">
<defs
id="defs9036" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="130.4409"
inkscape:cy="55.013163"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata9039">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-75.146762,-286.74604)">
<g
id="g9145">
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 185.09857,388.1926 14.7,14"
id="path8279-35"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 199.79857,388.1926 -14.7,14"
id="path8279-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0;display:inline"
d="m 99.39857,466.1926 119.4,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-3-3-4-6-5-05"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-3-3-4-6-5"
d="m 94.29857,443.1926 128.2,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-0-2-9-3-0"
d="m 87.89857,411.1926 142.7,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 129.79857,329.1926 c 12.1,-6 46.7,-7 58.8,1"
id="path3992-4-77-9-5-7-1-0-3-9-9-0-7-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 231.39857,411.1926 c -16.2,-20 -8.1,-41 0,-64"
id="path8584-0-8-6-3-5-9-1-8-8-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 87.89857,411.1926 c 13.7,-18 11.3,-37 -1.6,-64"
id="path8584-6-5-3-6-1-2-7-3-1-8-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 105.59857,502.1926 c -3.2,-18 -5.6,-31 -9.7,-48 -2.4,-11 -1.6,-24 -5.6,-36 -9.7,-20 -21,-49 -7.3,-69 7.3,-9 28.2,-8 44.4,-18 3.2,-1 4.8,-6 5.6,-10 0,-5 -0.8,-13 -0.8,-13 0,0 18.5,-7 27.4,-7 9.7,0 26.6,7 26.6,7 0,0 -1.6,9 -0.8,13 0.8,4 2.4,9 5.7,11 16.1,9 37,8 44.3,17 17.7,24 1.6,49 -7.3,70 -4,11 -4,24 -6.4,35 -3.2,17 -6.5,31 -9.7,47"
id="path11142-0-5-6-7-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-1-2-5-4-2-0"
d="m 107.19857,501.1926 104.8,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<g
id="text6934-6-9-7-0-3-1-4"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path9137"
d="m 145.4127,292.71932 0,3.8759 2.29578,0 c 0.76998,0 1.3392,-0.15825 1.70766,-0.47474 0.37318,-0.32122 0.55977,-0.81014 0.55978,-1.46675 -1e-5,-0.66133 -0.1866,-1.14789 -0.55978,-1.45967 -0.36846,-0.31649 -0.93768,-0.47474 -1.70766,-0.47474 l -2.29578,0 m 0,-4.35065 0,3.18859 2.11864,0 c 0.69912,0 1.21874,-0.1299 1.55886,-0.38972 0.34483,-0.26453 0.51725,-0.66605 0.51726,-1.20457 -1e-5,-0.53379 -0.17243,-0.93295 -0.51726,-1.19749 -0.34012,-0.26453 -0.85974,-0.3968 -1.55886,-0.39681 l -2.11864,0 m -1.43132,-1.17623 3.65624,0 c 1.0912,1e-5 1.93204,0.22676 2.52253,0.68023 0.59047,0.4535 0.8857,1.0983 0.88571,1.93441 -1e-5,0.64717 -0.15117,1.16207 -0.45348,1.54469 -0.30234,0.38264 -0.74638,0.62119 -1.33212,0.71566 0.70384,0.15117 1.24944,0.46767 1.6368,0.94949 0.39207,0.47711 0.58811,1.07468 0.58812,1.79269 -1e-5,0.94477 -0.32123,1.6746 -0.96366,2.1895 -0.64245,0.5149 -1.55651,0.77234 -2.74218,0.77234 l -3.79796,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path9139"
d="m 157.47972,293.78218 c -1.05342,1e-5 -1.78325,0.12046 -2.1895,0.36137 -0.40625,0.24092 -0.60937,0.6519 -0.60937,1.23292 0,0.46294 0.15116,0.8314 0.45349,1.10538 0.30704,0.26926 0.72274,0.40389 1.24709,0.40389 0.72274,0 1.30141,-0.25509 1.736,-0.76526 0.43931,-0.5149 0.65897,-1.19749 0.65898,-2.04778 l 0,-0.29052 -1.29669,0 m 2.60046,-0.53852 0,4.52779 -1.30377,0 0,-1.20457 c -0.29761,0.48183 -0.66843,0.83848 -1.11246,1.06994 -0.44405,0.22675 -0.98729,0.34012 -1.62972,0.34012 -0.81251,0 -1.45967,-0.22674 -1.9415,-0.68023 -0.47711,-0.45821 -0.71566,-1.06995 -0.71566,-1.83521 0,-0.8928 0.2976,-1.56594 0.89281,-2.01943 0.59992,-0.45349 1.49272,-0.68023 2.67841,-0.68024 l 1.82812,0 0,-0.12754 c -1e-5,-0.59992 -0.19841,-1.06285 -0.59521,-1.3888 -0.39208,-0.33067 -0.94477,-0.496 -1.65806,-0.49601 -0.45349,10e-6 -0.89517,0.0543 -1.32503,0.16298 -0.42987,0.10865 -0.84321,0.27162 -1.24001,0.48891 l 0,-1.20457 c 0.47711,-0.18423 0.94004,-0.32122 1.38881,-0.41098 0.44876,-0.0945 0.88571,-0.1417 1.31086,-0.14171 1.14789,10e-6 2.00526,0.29761 2.57212,0.8928 0.56686,0.59521 0.85029,1.49746 0.85029,2.70675"
inkscape:connector-curvature="0" />
<path
id="path9141"
d="m 168.48387,290.14011 0,1.21875 c -0.36846,-0.20312 -0.73928,-0.35428 -1.11246,-0.45349 -0.36846,-0.10392 -0.74165,-0.15588 -1.11955,-0.15589 -0.84557,10e-6 -1.50218,0.26927 -1.96983,0.80778 -0.46766,0.5338 -0.70149,1.28488 -0.70149,2.25326 0,0.96839 0.23383,1.72184 0.70149,2.26036 0.46765,0.53379 1.12426,0.80069 1.96983,0.80068 0.3779,1e-5 0.75109,-0.0496 1.11955,-0.1488 0.37318,-0.10392 0.744,-0.25744 1.11246,-0.46057 l 0,1.20458 c -0.36374,0.17005 -0.74164,0.2976 -1.13372,0.38263 -0.38736,0.085 -0.80069,0.12754 -1.24,0.12754 -1.19513,0 -2.14462,-0.37554 -2.84847,-1.12663 -0.70385,-0.75109 -1.05578,-1.76435 -1.05577,-3.03979 -10e-6,-1.29432 0.35428,-2.3123 1.06286,-3.05395 0.71329,-0.74163 1.68876,-1.11245 2.92641,-1.11246 0.40152,10e-6 0.7936,0.0425 1.17623,0.12754 0.38262,0.0803 0.75344,0.20313 1.11246,0.36846"
inkscape:connector-curvature="0" />
<path
id="path9143"
d="m 170.71588,286.74604 1.31086,0 0,6.5118 3.89008,-3.42242 1.66515,0 -4.20893,3.71293 4.38607,4.2231 -1.70058,0 -4.03179,-3.8759 0,3.8759 -1.31086,0 0,-11.02541"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 92.69857,423.1926 132.2,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-5-9-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7"
d="m 200.69857,500.1926 -13.7,-171"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 106.39857,501.1926 c -4.8,-54 -0.8,-125 -17.7,-155"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 128.99857,501.1926 0,-174"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 159.59857,501.1926 0,-177"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-74"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 208.79857,465.1926 c 0,7 -5.7,11 -11.3,11 -6.4,0 -11.3,-4 -11.3,-11 0,-6 4.9,-11 11.3,-11 5.6,0 10.5,5 11.3,11"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-5-9-3-0-9-0"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="190.2718"
y="470.07565"
id="text8512-9-6-3-7-2-5-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-9-1-0-8-3-6"
x="190.2718"
y="470.07565">20</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-5-9-3-0-9-0-7"
d="m 116.09857,465.1926 c 0,7 -5.7,11 -11.3,11 -6.5,0 -11.3,-4 -11.3,-11 0,-6 4.8,-11 11.3,-11 5.6,0 10.5,5 11.3,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-4"
y="470.02487"
x="97.071114"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="470.02487"
x="97.071114"
id="tspan8514-9-9-1-0-8-3-6-3"
sodipodi:role="line">17</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-5-9-3-0-9-0-6"
d="m 142.69857,465.1926 c 0,7 -5.7,11 -11.3,11 -6.5,0 -11.3,-4 -11.3,-11 0,-6 4.8,-11 11.3,-11 5.6,0 10.5,5 11.3,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-7"
y="470.07565"
x="123.72919"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="470.07565"
x="123.72919"
id="tspan8514-9-9-1-0-8-3-6-6"
sodipodi:role="line">18</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-5-9-3-0-9-0-0"
d="m 170.89857,465.1926 c 0,7 -5.6,11 -11.3,11 -6.4,0 -11.3,-4 -11.3,-11 0,-6 4.9,-11 11.3,-11 5.7,0 10.5,5 11.3,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-8"
y="470.07565"
x="151.78407"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="470.07565"
x="151.78407"
id="tspan8514-9-9-1-0-8-3-6-2"
sodipodi:role="line">19</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,285 @@
<?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="169.81744"
height="218.30708"
id="svg9241"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 87">
<defs
id="defs9243" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="146.94203"
inkscape:cy="122.11153"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata9246">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-103.66274,-297.49436)">
<g
id="g9361">
<path
style="fill:none;stroke:#dba981;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.5, 7.5;stroke-dashoffset:0;display:inline"
d="m 168.7946,336.3015 35,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-0-2-9-3-0-4-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0;display:inline"
d="m 127.7946,481.3015 119,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-3-3-4-6-5-0-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-3-3-4-6-5-0-7"
d="m 120.7946,454.3015 133,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-0-2-9-3-0-4-0"
d="m 116.7946,423.3015 142,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 158.7946,341.3015 c 12,-6 46,-7 58,1"
id="path3992-4-77-9-5-7-1-0-3-9-9-0-7-8-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 259.7946,423.3015 c -16,-20 -8,-41 0,-64"
id="path8584-0-8-6-3-5-9-1-8-8-0-5-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 116.7946,423.3015 c 13,-19 11,-37 -2,-64"
id="path8584-6-5-3-6-1-2-7-3-1-8-7-6-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 133.7946,514.3015 c -3,-18 -5,-31 -9,-48 -3,-12 -2,-24 -6,-36 -10,-20 -21,-49 -7,-69 7,-9 28,-8 44,-18 7,-5 6,-15 5,-23 23,-7 31,-8 54,0 -1,8 -2,19 5,24 16,9 37,8 44,17 18,24 2,49 -7,70 -4,11 -4,23 -7,35 -3,17 -6,31 -9,47"
id="path11142-0-5-6-7-5-6-6-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-1-2-5-4-2-0-8-1"
d="m 135.7946,513.3015 105,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<g
id="text6934-6-9-7-0-3-1-4-9-8"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path9353"
d="m 173.09913,303.46764 0,3.8759 2.29578,0 c 0.76998,0 1.3392,-0.15824 1.70766,-0.47474 0.37318,-0.32122 0.55977,-0.81014 0.55978,-1.46675 -1e-5,-0.66133 -0.1866,-1.14789 -0.55978,-1.45966 -0.36846,-0.3165 -0.93768,-0.47474 -1.70766,-0.47475 l -2.29578,0 m 0,-4.35064 0,3.18858 2.11864,0 c 0.69912,10e-6 1.21874,-0.1299 1.55886,-0.38972 0.34483,-0.26452 0.51725,-0.66605 0.51726,-1.20457 -1e-5,-0.53379 -0.17243,-0.93295 -0.51726,-1.19749 -0.34012,-0.26453 -0.85974,-0.39679 -1.55886,-0.3968 l -2.11864,0 m -1.43132,-1.17624 3.65624,0 c 1.0912,10e-6 1.93204,0.22676 2.52253,0.68023 0.59047,0.4535 0.88571,1.0983 0.88571,1.93441 0,0.64717 -0.15117,1.16207 -0.45348,1.54469 -0.30234,0.38264 -0.74637,0.62119 -1.33212,0.71566 0.70384,0.15117 1.24944,0.46767 1.6368,0.94949 0.39207,0.47711 0.58811,1.07468 0.58812,1.7927 -10e-6,0.94476 -0.32123,1.67459 -0.96366,2.18949 -0.64245,0.5149 -1.55651,0.77235 -2.74218,0.77235 l -3.79796,0 0,-10.57902"
inkscape:connector-curvature="0" />
<path
id="path9355"
d="m 185.16615,304.5305 c -1.05342,10e-6 -1.78325,0.12046 -2.1895,0.36138 -0.40625,0.24091 -0.60937,0.65189 -0.60937,1.23291 0,0.46294 0.15116,0.8314 0.45349,1.10538 0.30704,0.26926 0.72274,0.40389 1.24709,0.40389 0.72274,0 1.30141,-0.25509 1.73601,-0.76526 0.43931,-0.5149 0.65896,-1.19749 0.65897,-2.04778 l 0,-0.29052 -1.29669,0 m 2.60047,-0.53851 0,4.52779 -1.30378,0 0,-1.20458 c -0.29761,0.48183 -0.66843,0.83848 -1.11246,1.06995 -0.44405,0.22674 -0.98729,0.34011 -1.62972,0.34011 -0.8125,0 -1.45967,-0.22674 -1.9415,-0.68023 -0.4771,-0.45821 -0.71566,-1.06994 -0.71566,-1.83521 0,-0.8928 0.2976,-1.56594 0.89281,-2.01943 0.59992,-0.45349 1.49272,-0.68023 2.67841,-0.68023 l 1.82812,0 0,-0.12755 c -1e-5,-0.59992 -0.19841,-1.06285 -0.5952,-1.3888 -0.39209,-0.33066 -0.94477,-0.496 -1.65807,-0.496 -0.45349,0 -0.89517,0.0543 -1.32503,0.16297 -0.42987,0.10865 -0.84321,0.27162 -1.24001,0.48891 l 0,-1.20457 c 0.47711,-0.18422 0.94004,-0.32122 1.38881,-0.41098 0.44876,-0.0945 0.88571,-0.1417 1.31086,-0.14171 1.14789,1e-5 2.00526,0.29761 2.57213,0.8928 0.56685,0.59521 0.85028,1.49746 0.85029,2.70676"
inkscape:connector-curvature="0" />
<path
id="path9357"
d="m 196.1703,300.88843 0,1.21875 c -0.36846,-0.20312 -0.73928,-0.35428 -1.11246,-0.45349 -0.36846,-0.10392 -0.74164,-0.15588 -1.11954,-0.15588 -0.84557,0 -1.50219,0.26926 -1.96984,0.80777 -0.46766,0.5338 -0.70149,1.28489 -0.70149,2.25327 0,0.96838 0.23383,1.72183 0.70149,2.26035 0.46765,0.53379 1.12427,0.80069 1.96984,0.80069 0.3779,0 0.75108,-0.0496 1.11954,-0.1488 0.37318,-0.10393 0.744,-0.25745 1.11246,-0.46058 l 0,1.20458 c -0.36374,0.17006 -0.74164,0.2976 -1.13371,0.38263 -0.38736,0.085 -0.8007,0.12754 -1.24001,0.12754 -1.19513,0 -2.14462,-0.37554 -2.84847,-1.12663 -0.70385,-0.75109 -1.05577,-1.76435 -1.05577,-3.03978 0,-1.29433 0.35428,-2.31231 1.06286,-3.05396 0.71329,-0.74163 1.68876,-1.11245 2.92641,-1.11246 0.40152,1e-5 0.7936,0.0425 1.17623,0.12754 0.38263,0.0803 0.75345,0.20314 1.11246,0.36846"
inkscape:connector-curvature="0" />
<path
id="path9359"
d="m 198.40231,297.49436 1.31087,0 0,6.5118 3.89007,-3.42242 1.66515,0 -4.20893,3.71293 4.38607,4.22311 -1.70058,0 -4.03178,-3.87591 0,3.87591 -1.31087,0 0,-11.02542"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 120.7946,435.3015 133,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-5-9-7-0-5-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-9-3"
d="m 219.7946,514.3015 0,-60"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 178.7946,422.3015 0,-86"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-7-7-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 195.7946,434.3015 0,-98"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-74-7-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-5-9-3-0-9-0-0-8-4"
d="m 206.7946,405.3015 c 0,7 -5,12 -11,12 -6,0 -11,-5 -11,-12 0,-6 5,-11 11,-11 6,0 11,5 11,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-8-9-0"
y="410.42651"
x="187.42192"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="410.42651"
x="187.42192"
id="tspan8514-9-9-1-0-8-3-6-2-8-4"
sodipodi:role="line">23</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-74-8"
d="m 178.7946,513.3015 0,-90"
style="fill:none;stroke:#7dc832;stroke-width:3.22480011;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline" />
<path
style="fill:none;stroke:#7dc832;stroke-width:3.22480011;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359);display:inline"
d="m 195.7946,513.3015 0,-77"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-74-8-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-8-7-0"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-132.2054,-1770.6985)" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-8-3-9"
y="472.53784"
x="187.86455"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="472.53784"
x="187.86455"
id="tspan8514-9-9-1-0-8-3-6-2-6-3"
sodipodi:role="line">24</tspan></text>
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-8-7-2"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-149.1054,-1794.6985)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="171.12187"
y="448.28052"
id="text8512-9-6-3-7-2-5-4-8-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-9-1-0-8-3-6-2-6"
x="171.12187"
y="448.28052">22</tspan></text>
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-8-7-7"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-108.1054,-1746.6985)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="211.66216"
y="496.37207"
id="text8512-9-6-3-7-2-5-4-0-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-9-1-0-8-3-6-0-9"
x="211.66216"
y="496.37207">25</tspan></text>
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-1-7-8-7-3"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-149.1054,-1859.6985)" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-7-0-8"
y="382.93213"
x="171.15813"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="382.93213"
x="171.15813"
id="tspan8514-9-9-1-0-8-3-6-6-4-7"
sodipodi:role="line">21</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,273 @@
<?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="169.59351"
height="216.92622"
id="svg9459"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 90">
<defs
id="defs9461" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="42.059612"
inkscape:cy="88.502731"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata9464">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-212.34608,-318.18482)">
<g
id="g9576">
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 331.254,419.6111 14,14"
id="path8279-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 345.254,419.6111 -14,14"
id="path8279-3-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-0-2-9-3-0-4"
d="m 225.254,442.6111 143,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 230.254,454.6111 132,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-5-9-7-0-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-3-3-4-6-5-0"
d="m 231.254,474.6111 129,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 267.254,360.6111 c 12,-6 47,-6 59,1"
id="path3992-4-77-9-5-7-1-0-3-9-9-0-7-8-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 368.254,442.6111 c -16,-20 -8,-41 0,-63"
id="path8584-0-8-6-3-5-9-1-8-8-0-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:4.49039984;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 225.254,442.6111 c 14,-18 11,-37 -2,-64"
id="path8584-6-5-3-6-1-2-7-3-1-8-7-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 243.254,533.6111 c -4,-17 -6,-31 -10,-48 -2,-11 -2,-24 -6,-36 -9,-20 -21,-49 -7,-69 7,-9 28,-8 44,-18 8,-5 6,-15 5,-23 23,-7 31,-8 54,0 0,8 -1,19 5,24 16,9 37,8 44,17 18,24 2,49 -7,70 -4,11 -4,24 -6,35 -3,17 -7,31 -10,48"
id="path11142-0-5-6-7-5-6-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-1-2-5-4-2-0-8"
d="m 244.254,533.6111 105,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<g
id="text6934-6-9-7-0-3-1-4-9"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path9568"
d="m 282.17803,324.1581 0,3.8759 2.29578,0 c 0.76998,0 1.3392,-0.15824 1.70767,-0.47474 0.37317,-0.32122 0.55976,-0.81014 0.55977,-1.46675 -10e-6,-0.66133 -0.1866,-1.14789 -0.55977,-1.45966 -0.36847,-0.3165 -0.93769,-0.47474 -1.70767,-0.47475 l -2.29578,0 m 0,-4.35064 0,3.18858 2.11864,0 c 0.69912,1e-5 1.21874,-0.1299 1.55886,-0.38972 0.34484,-0.26452 0.51726,-0.66605 0.51726,-1.20457 0,-0.53379 -0.17242,-0.93295 -0.51726,-1.19749 -0.34012,-0.26453 -0.85974,-0.39679 -1.55886,-0.3968 l -2.11864,0 m -1.43132,-1.17624 3.65625,0 c 1.09119,1e-5 1.93203,0.22676 2.52252,0.68023 0.59047,0.4535 0.88571,1.0983 0.88572,1.93441 -10e-6,0.64717 -0.15117,1.16207 -0.45349,1.54469 -0.30233,0.38264 -0.74637,0.62119 -1.33212,0.71566 0.70384,0.15117 1.24945,0.46767 1.63681,0.94949 0.39207,0.47711 0.58811,1.07468 0.58811,1.7927 0,0.94476 -0.32122,1.67459 -0.96366,2.18949 -0.64244,0.5149 -1.5565,0.77235 -2.74218,0.77235 l -3.79796,0 0,-10.57902"
inkscape:connector-curvature="0" />
<path
id="path9570"
d="m 294.24505,325.22096 c -1.05342,1e-5 -1.78325,0.12046 -2.18949,0.36138 -0.40625,0.24091 -0.60938,0.65189 -0.60938,1.23291 0,0.46294 0.15116,0.8314 0.45349,1.10538 0.30705,0.26926 0.72274,0.40389 1.24709,0.40389 0.72274,0 1.30141,-0.25509 1.73601,-0.76526 0.43931,-0.5149 0.65897,-1.19749 0.65897,-2.04778 l 0,-0.29052 -1.29669,0 m 2.60047,-0.53851 0,4.52779 -1.30378,0 0,-1.20458 c -0.2976,0.48183 -0.66842,0.83848 -1.11246,1.06995 -0.44404,0.22674 -0.98728,0.34011 -1.62972,0.34011 -0.8125,0 -1.45966,-0.22674 -1.94149,-0.68023 -0.47711,-0.45821 -0.71566,-1.06994 -0.71566,-1.83521 0,-0.8928 0.2976,-1.56594 0.8928,-2.01943 0.59992,-0.45349 1.49273,-0.68023 2.67841,-0.68023 l 1.82812,0 0,-0.12755 c 0,-0.59992 -0.1984,-1.06285 -0.5952,-1.3888 -0.39208,-0.33066 -0.94477,-0.496 -1.65806,-0.496 -0.45349,0 -0.89517,0.0543 -1.32504,0.16297 -0.42987,0.10865 -0.8432,0.27162 -1.24,0.48891 l 0,-1.20457 c 0.4771,-0.18422 0.94004,-0.32121 1.3888,-0.41098 0.44876,-0.0945 0.88572,-0.1417 1.31087,-0.14171 1.14788,10e-6 2.00525,0.29761 2.57212,0.8928 0.56685,0.59521 0.85028,1.49746 0.85029,2.70676"
inkscape:connector-curvature="0" />
<path
id="path9572"
d="m 305.24921,321.57889 0,1.21875 c -0.36847,-0.20312 -0.73929,-0.35428 -1.11246,-0.45349 -0.36847,-0.10392 -0.74165,-0.15588 -1.11955,-0.15588 -0.84557,0 -1.50218,0.26926 -1.96984,0.80777 -0.46766,0.5338 -0.70149,1.28489 -0.70149,2.25327 0,0.96838 0.23383,1.72183 0.70149,2.26035 0.46766,0.53379 1.12427,0.80069 1.96984,0.80069 0.3779,0 0.75108,-0.0496 1.11955,-0.1488 0.37317,-0.10393 0.74399,-0.25745 1.11246,-0.46058 l 0,1.20458 c -0.36374,0.17006 -0.74165,0.2976 -1.13372,0.38263 -0.38736,0.085 -0.8007,0.12754 -1.24001,0.12754 -1.19513,0 -2.14462,-0.37554 -2.84846,-1.12663 -0.70386,-0.75109 -1.05578,-1.76435 -1.05578,-3.03978 0,-1.29433 0.35429,-2.31231 1.06286,-3.05396 0.7133,-0.74163 1.68877,-1.11245 2.92641,-1.11246 0.40152,10e-6 0.7936,0.0425 1.17624,0.12754 0.38262,0.0803 0.75344,0.20314 1.11246,0.36846"
inkscape:connector-curvature="0" />
<path
id="path9574"
d="m 307.48122,318.18482 1.31086,0 0,6.5118 3.89007,-3.42242 1.66515,0 -4.20893,3.71293 4.38607,4.22311 -1.70057,0 -4.03179,-3.87591 0,3.87591 -1.31086,0 0,-11.02542"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 336.254,443.6111 11,-74"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-9-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-5-9-3-0-9-0-4-9"
d="m 353.254,404.6111 c 0,6 -5,11 -11,11 -6,0 -11,-5 -11,-11 0,-7 5,-12 11,-12 6,0 11,5 11,12"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-0-5"
y="409.35501"
x="334.707"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="409.35501"
x="334.707"
id="tspan8514-9-9-1-0-8-3-6-0-3"
sodipodi:role="line">29</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-74-7-7-1"
d="m 327.254,441.6111 0,-80"
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0;display:inline"
d="m 236.254,500.6111 119,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-9-1-3-3-4-6-5-0-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-4-7-2-1-2"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-0.746,-1855.2889)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="319.66928"
y="387.56619"
id="text8512-9-6-3-7-2-5-4-8-9-7-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-9-1-0-8-3-6-2-8-0-1"
x="319.66928"
y="387.56619">28</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 268.254,454.6111 0,-95"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-74-7-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="matrix(0.8062,0,0,0.8062,-59.746,-1812.0889)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2-9-4-7-2-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8512-9-6-3-7-2-5-4-8-9-7"
y="430.80984"
x="260.91122"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="430.80984"
x="260.91122"
id="tspan8514-9-9-1-0-8-3-6-2-8-0"
sodipodi:role="line">27</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 241.254,438.6111 -10,9"
id="path8279-7-5-4-4-4-76"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 231.254,438.6111 10,9"
id="path8279-7-5-4-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-3-2-4-0-9-7-74-7-7-3"
d="m 236.254,441.6111 c 0,-26 4,-42 -12,-66"
style="fill:none;stroke:#000000;stroke-width:2.41880012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-9-4-7-2-1-5"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-88.746,-1843.8889)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="230.7706"
y="398.98489"
id="text8512-9-6-3-7-2-5-4-8-9-7-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-9-1-0-8-3-6-2-8-0-4"
x="230.7706"
y="398.98489">26</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 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="159.37512"
height="194.50189"
id="svg9715"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 93">
<defs
id="defs9717" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="36.434059"
inkscape:cy="173.73436"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata9720">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-194.59815,-337.96835)">
<g
id="g9813">
<g
transform="matrix(0.8062,0,0,0.8062,-486.15533,-977.4299)"
id="g5169"
style="stroke-linecap:round">
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1007,1675 c 7,26 27,52 31,76 6,39 -5,102 -7,120"
id="path16673"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 1031,1871 -79.3,0"
id="path16671"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 951.7,1871 -6.8,-51 -7.2,51"
id="path16669"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 937.7,1871 -82.2,0"
id="path16667"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#dba981;stroke-width:3.72099996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 855.5,1871 c -1.2,-2 -13.9,-80 -7.4,-119 2.6,-26 29.8,-56 32.6,-77"
id="path22054"
inkscape:connector-curvature="0" />
<g
id="g22035"
transform="translate(0.3401,-246.8)"
style="stroke-linecap:round">
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 847.9,2045 193.1,0"
id="path8471-0-07-6-8-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 860.8,1967 165.2,1"
id="path8471-6-8-4-5-5-6-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.48899996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.467, 1.489;stroke-dashoffset:0"
d="m 880.8,1922 126.2,0"
id="path8471-6-6-6-8-7-8-3-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-1-8-9-2"
d="m 931.8,1967 0,-45"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.39240003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 945.8,1944 c 0,8 -7,14 -14,14 -8,0 -14,-6 -14,-14 0,-8 6,-14 14,-14 7,0 13,6 14,14"
id="path4050-8-0-5-3-4-0-7-3-9-0-5-6-3"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-1-8-7-5"
d="M 966.5,2045 967,1923"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:nodetypes="csssc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.39240003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 980.8,1944 c 0,8 -7,14 -14,14 -8,0 -14,-6 -14,-14 0,-8 6,-14 14,-14 7,0 13,6 14,14"
id="path4050-8-0-5-3-4-0-7-3-9-0-5-68-5"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text8504-2"
y="1949.9011"
x="922.026"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1949.9011"
x="922.026"
id="tspan8506-5"
sodipodi:role="line">30</tspan></text>
<text
sodipodi:linespacing="125%"
id="text8508-2"
y="1949.9551"
x="957.26001"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1949.9551"
x="957.26001"
id="tspan8510-1"
sodipodi:role="line">31</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-1-8-4-2"
d="m 1027,1968 c -4,-11 -14,-31 -21,-45"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:nodetypes="csssc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.39240003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 1031,1944 c 0,8 -7,14 -14,14 -8,0 -14,-6 -14,-14 0,-7 6,-14 14,-14 7,0 13,7 14,14"
id="path4050-8-0-5-3-4-0-7-3-9-0-5-7-3"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text8500-4-6"
y="1949.8291"
x="1007.208"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="1949.8291"
x="1007.208"
id="tspan8502-7-6"
sodipodi:role="line">32</tspan></text>
</g>
</g>
<g
id="text6934-2-7"
style="font-size:18.06694221px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path9803"
d="m 254.21267,337.96835 7.56906,0 0,1.4997 -5.78707,0 0,3.88157 5.22248,0 0,1.49969 -5.22248,0 0,6.28991 -1.78199,0 0,-13.17087"
inkscape:connector-curvature="0" />
<path
id="path9805"
d="m 268.97146,342.7762 c -0.18233,-0.10585 -0.38229,-0.1823 -0.59988,-0.22936 -0.21173,-0.0529 -0.44698,-0.0794 -0.70574,-0.0794 -0.91747,10e-6 -1.62321,0.29995 -2.11722,0.89982 -0.48814,0.59401 -0.73221,1.44971 -0.73221,2.56713 l 0,5.20483 -1.63202,0 0,-9.88036 1.63202,0 0,1.53499 c 0.34111,-0.59987 0.78513,-1.0439 1.33209,-1.33209 0.54694,-0.29405 1.21151,-0.44107 1.99371,-0.44109 0.11174,2e-5 0.23524,0.009 0.37052,0.0265 0.13526,0.0118 0.28522,0.0324 0.4499,0.0617 l 0.009,1.66731"
inkscape:connector-curvature="0" />
<path
id="path9807"
d="m 274.13218,342.39687 c -0.87042,1e-5 -1.55851,0.34111 -2.06429,1.02332 -0.50578,0.67634 -0.75867,1.60557 -0.75867,2.78767 0,1.18212 0.24995,2.11429 0.74985,2.7965 0.50577,0.67633 1.19681,1.0145 2.07311,1.0145 0.86452,0 1.54968,-0.34111 2.05547,-1.02332 0.50577,-0.68222 0.75866,-1.61144 0.75867,-2.78768 -1e-5,-1.17034 -0.2529,-2.09663 -0.75867,-2.77885 -0.50579,-0.68809 -1.19095,-1.03213 -2.05547,-1.03214 m 0,-1.3762 c 1.41147,2e-5 2.52007,0.45875 3.3258,1.3762 0.80571,0.91747 1.20857,2.1878 1.20858,3.81099 -1e-5,1.61733 -0.40287,2.88766 -1.20858,3.811 -0.80573,0.91746 -1.91433,1.37619 -3.3258,1.37619 -1.41737,0 -2.52891,-0.45873 -3.33462,-1.37619 -0.79984,-0.92334 -1.19976,-2.19367 -1.19976,-3.811 0,-1.62319 0.39992,-2.89352 1.19976,-3.81099 0.80571,-0.91745 1.91725,-1.37618 3.33462,-1.3762"
inkscape:connector-curvature="0" />
<path
id="path9809"
d="m 289.56142,345.17572 0,5.9635 -1.6232,0 0,-5.91057 c -10e-6,-0.9351 -0.18233,-1.63496 -0.54695,-2.09958 -0.36464,-0.4646 -0.91159,-0.69691 -1.64085,-0.69692 -0.8763,1e-5 -1.56733,0.27937 -2.07311,0.83807 -0.50578,0.55872 -0.75867,1.32033 -0.75867,2.28483 l 0,5.58417 -1.63202,0 0,-9.88036 1.63202,0 0,1.53499 c 0.38816,-0.59399 0.84395,-1.03802 1.36737,-1.33209 0.5293,-0.29405 1.138,-0.44107 1.82611,-0.44109 1.13505,2e-5 1.9937,0.35288 2.57595,1.05861 0.58222,0.69987 0.87334,1.73202 0.87335,3.09644"
inkscape:connector-curvature="0" />
<path
id="path9811"
d="m 294.4222,338.45355 0,2.80531 3.34345,0 0,1.26151 -3.34345,0 0,5.36363 c 0,0.80572 0.1088,1.32326 0.32641,1.55262 0.22348,0.22937 0.67339,0.34405 1.34973,0.34405 l 1.66731,0 0,1.35855 -1.66731,0 c -1.2527,0 -2.11723,-0.2323 -2.5936,-0.69692 -0.47637,-0.47049 -0.71456,-1.32326 -0.71456,-2.5583 l 0,-5.36363 -1.19094,0 0,-1.26151 1.19094,0 0,-2.80531 1.63202,0"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,269 @@
<?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="163.69057"
height="211.90462"
id="svg10837"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 108">
<defs
id="defs10839" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="90.898035"
inkscape:cy="107.73492"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata10842">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-129.58059,-329.27002)">
<g
id="g10956">
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 259.37916,440.6686 9.5,9"
id="path8279-7-5-4-4-48"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 268.87916,440.6686 -9.5,9"
id="path8279-7-5-4-4-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 149.77916,442.6686 9.5,9"
id="path8279-7-5-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 159.27916,442.6686 -9.5,9"
id="path8279-7-5-4-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 280.77916,447.6686 c -21.5,-4 -19.5,-16 -3.2,-66"
id="path8584-1-4-6-3-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 139.87916,446.6686 c 20.5,2 27.2,-19 4.6,-65"
id="path8584-6-7-8-0-3-1-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 180.77916,367.6686 c 9.7,10 55.6,10 58.9,3"
id="path3992-4-77-9-5-7-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 158.97916,539.6686 c 2.5,-16 -5.6,-32 -8.8,-48 -2.4,-11 -1.6,-24 -6.5,-35 -8,-21 -20.1,-50 -6.4,-71 6.4,-8 26.6,-8 42.7,-16 3.2,-3 4.1,-8 4.8,-12 0.8,-4 -0.8,-13 -0.8,-13 0,0 17.8,6 27.5,6 8.8,0 25.8,-5 25.8,-5 0,0 -1.5,8 -0.9,12 0.8,4 2.5,10 4.9,12 16.1,9 36.3,8 42.7,17 16.9,24 2.4,49 -6.4,70 -4.9,11 -4.9,24 -6.5,35 -3.2,16 -11.3,32 -8.9,48"
id="path11116"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccacacaccccc" />
<path
style="opacity:0.3;fill:none;stroke:#000000;stroke-width:1.61240005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0;stroke-dasharray:4.8372, 1.6124;stroke-dashoffset:0"
d="m 179.17916,444.6686 c 2.4,7 19.4,9 30.6,9 8.9,-1 22.6,-2 26.6,-9"
id="path3992-4-94-7-98-1-3-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3"
d="m 160.67916,539.6686 101.5,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-9-5-3-0"
d="m 181.57916,366.6686 -37.3,14"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.45430005;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"
id="path16274"
sodipodi:cx="283.39999"
sodipodi:cy="2217"
sodipodi:rx="13"
sodipodi:ry="13.1"
d="m 296.39999,2217 c 0,7.2349 -5.82029,13.1 -13,13.1 -7.1797,0 -13,-5.8651 -13,-13.1 0,-7.2349 5.8203,-13.1 13,-13.1 7.15339,0 12.96274,5.8238 12.99983,13.0321"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8409,0,0,0.8223,-76.290839,-1458.3314)" />
<text
sodipodi:linespacing="125%"
id="text8496-8"
y="369.0358"
x="158.71715"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="369.0358"
x="158.71715"
id="tspan8498-8"
sodipodi:role="line">1</tspan></text>
<g
id="text6934-2-9"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path10946"
d="m 192.34942,329.27002 6.07957,0 0,1.20457 -4.64825,0 0,3.11773 4.19476,0 0,1.20458 -4.19476,0 0,5.05213 -1.43132,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path10948"
d="m 204.20387,333.13175 c -0.14645,-0.085 -0.30706,-0.14644 -0.48183,-0.18423 -0.17007,-0.0425 -0.35902,-0.0638 -0.56686,-0.0638 -0.73692,0 -1.30378,0.24092 -1.70058,0.72274 -0.39208,0.47711 -0.58812,1.16443 -0.58812,2.06195 l 0,4.18059 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.27398,-0.48183 0.63063,-0.83847 1.06995,-1.06995 0.43931,-0.23618 0.9731,-0.35428 1.60138,-0.35429 0.0897,10e-6 0.18894,0.007 0.2976,0.0213 0.10864,0.009 0.2291,0.026 0.36137,0.0496 l 0.007,1.33921"
inkscape:connector-curvature="0" />
<path
id="path10950"
d="m 208.34903,332.82706 c -0.69913,10e-6 -1.25182,0.27399 -1.65807,0.82195 -0.40625,0.54324 -0.60937,1.28961 -0.60937,2.23909 0,0.94949 0.20076,1.69822 0.60229,2.24618 0.40624,0.54324 0.96129,0.81486 1.66515,0.81486 0.69439,0 1.24472,-0.27398 1.65097,-0.82195 0.40625,-0.54796 0.60937,-1.29432 0.60938,-2.23909 -10e-6,-0.94004 -0.20313,-1.68404 -0.60938,-2.23201 -0.40625,-0.55268 -0.95658,-0.82902 -1.65097,-0.82903 m 0,-1.10538 c 1.13371,1e-5 2.02415,0.36847 2.67132,1.10538 0.64716,0.73692 0.97074,1.75727 0.97075,3.06104 -10e-6,1.29906 -0.32359,2.3194 -0.97075,3.06104 -0.64717,0.73692 -1.53761,1.10538 -2.67132,1.10538 -1.13845,0 -2.03125,-0.36846 -2.67841,-1.10538 -0.64245,-0.74164 -0.96367,-1.76198 -0.96367,-3.06104 0,-1.30377 0.32122,-2.32412 0.96367,-3.06104 0.64716,-0.73691 1.53996,-1.10537 2.67841,-1.10538"
inkscape:connector-curvature="0" />
<path
id="path10952"
d="m 220.74199,335.05907 0,4.78996 -1.30378,0 0,-4.74745 c 0,-0.75108 -0.14644,-1.31322 -0.43931,-1.6864 -0.29289,-0.37318 -0.7322,-0.55977 -1.31795,-0.55978 -0.70386,1e-5 -1.25891,0.22439 -1.66515,0.67315 -0.40625,0.44877 -0.60938,1.0605 -0.60938,1.8352 l 0,4.48528 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.31177,-0.4771 0.67787,-0.83375 1.09829,-1.06995 0.42515,-0.23618 0.91406,-0.35428 1.46675,-0.35429 0.9117,1e-5 1.60137,0.28344 2.06904,0.85029 0.46765,0.56214 0.70148,1.39118 0.70149,2.4871"
inkscape:connector-curvature="0" />
<path
id="path10954"
d="m 224.64623,329.65973 0,2.25327 2.6855,0 0,1.01326 -2.6855,0 0,4.30813 c 0,0.64717 0.0874,1.06286 0.26217,1.24709 0.17951,0.18423 0.54088,0.27635 1.08412,0.27635 l 1.33921,0 0,1.0912 -1.33921,0 c -1.00618,0 -1.70058,-0.18659 -2.08321,-0.55977 -0.38263,-0.37791 -0.57394,-1.06286 -0.57394,-2.05487 l 0,-4.30813 -0.95658,0 0,-1.01326 0.95658,0 0,-2.25327 1.31086,0"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 266.27916,413.6686 -110.5,-3"
id="path7494-1-6-3-5-81-64-9-2-8-7-1-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-6-6-3-9"
d="m 223.87916,413.6686 c 0,6 -5.6,11 -11.2,11 -6.5,0 -11.3,-5 -11.3,-11 0,-7 4.8,-11 11.3,-11 5.6,0 10.4,4 11.2,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 276.57916,382.6686 -131.5,-1"
id="path7494-1-6-3-5-81-64-9-2-0-5-1-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-1-2"
d="m 223.87916,381.6686 c 0,7 -5.6,12 -11.2,12 -6.5,0 -11.3,-5 -11.3,-12 0,-6 4.8,-11 11.3,-11 5.6,0 10.4,5 11.2,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="208.93076"
y="387.2084"
id="text8484-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3"
x="208.93076"
y="387.2084">2</tspan></text>
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="209.1194"
y="418.31363"
id="text8492-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8494-0"
x="209.1194"
y="418.31363">3</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 146.07916,459.6686 129,0"
id="path3992-4-77-9-5-7-1-28"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-28-0"
d="m 146.47916,480.6686 129,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.61240005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.8372, 1.6124;stroke-dashoffset:0"
d="m 141.67916,451.6686 c 21,-1 9.7,-21 67.7,-21 54.9,0 48.4,22 69.4,22"
id="path3992-4-77-9-5-7-1-2-9-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 263.57916,445.6686 c -13.5,-12 -32.9,-15 -50.6,-16 -20.2,0 -45.8,3 -58.1,17"
id="path7494-1-6-3-5-81-64-9-2-0-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.45430005;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"
id="path16274-0"
sodipodi:cx="283.39999"
sodipodi:cy="2217"
sodipodi:rx="13"
sodipodi:ry="13.1"
d="m 296.39999,2217 c 0,7.2349 -5.82029,13.1 -13,13.1 -7.1797,0 -13,-5.8651 -13,-13.1 0,-7.2349 5.8203,-13.1 13,-13.1 7.15339,0 12.96274,5.8238 12.99983,13.0321"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8409,0,0,0.8223,-26.360839,-1387.3314)" />
<text
sodipodi:linespacing="125%"
id="text8488-4"
y="439.25113"
x="208.41656"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="439.25113"
x="208.41656"
id="tspan8490-3"
sodipodi:role="line">4</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,191 @@
<?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="163.76395"
height="212.37538"
id="svg11043"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 111">
<defs
id="defs11045" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="118.7282"
inkscape:cy="171.54233"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata11048">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-186.68946,-363.31735)">
<g
id="g11129">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-08"
d="m 268.49141,385.54199 0.16124,188.40894"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0;display:inline" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 337.90523,481.47979 c -4.8372,-1.6124 -29.0232,6.4496 -3.2248,-65.3022"
id="path8584-1-4-6-3-4-4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 196.98147,480.67359 c 15.3178,2.4186 27.24956,-19.3488 4.67596,-65.3022"
id="path8584-6-7-8-0-3-1-3-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 237.93643,401.66599 c 9.6744,9.6744 56.19214,8.062 59.41694,0.8062"
id="path3992-4-77-9-5-7-1-01"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 216.16903,574.19279 c 2.4186,-16.9302 -5.6434,-32.248 -8.8682,-48.372 -2.4186,-11.2868 -1.6124,-24.186 -6.4496,-35.4728 -8.062,-20.9612 -20.155,-49.1782 -6.4496,-70.1394 6.4496,-8.8682 26.6046,-8.062 42.7286,-16.9302 3.2248,-2.4186 4.11162,-7.2558 4.8372,-11.2868 0.72558,-4.031 -0.8062,-12.8992 -0.8062,-12.8992 0,0 17.7364,5.6434 27.4108,5.6434 8.8682,0 25.7984,-4.8372 25.7984,-4.8372 0,0 -1.45116,8.062 -0.8062,12.093 0.72558,4.031 2.4186,9.6744 4.8372,11.2868 16.124,9.6744 36.279,8.062 42.7286,17.7364 16.9302,24.186 2.4186,49.1782 -6.4496,69.3332 -4.8372,11.2868 -4.8372,24.186 -6.4496,35.4728 -3.2248,16.124 -11.2868,31.4418 -8.8682,48.372"
id="path11116-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccacacaccccc" />
<path
style="opacity:0.3;fill:none;stroke:#000000;stroke-width:1.61240005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0;stroke-dasharray:4.8372, 1.6124;stroke-dashoffset:0"
d="m 236.32403,478.25499 c 2.4186,7.2558 19.3488,9.6744 30.6356,9.6744 8.8682,-0.8062 22.5736,-2.4186 26.6046,-9.6744"
id="path3992-4-94-7-98-1-3-4-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cac" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-0"
d="m 217.78143,573.38659 101.5812,0"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<g
id="text6934-2-9-2"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path11119"
d="m 249.49026,363.31735 6.07957,0 0,1.20458 -4.64825,0 0,3.11772 4.19476,0 0,1.20458 -4.19476,0 0,5.05213 -1.43132,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path11121"
d="m 261.34471,367.17908 c -0.14645,-0.085 -0.30706,-0.14643 -0.48184,-0.18423 -0.17006,-0.0425 -0.35901,-0.0638 -0.56685,-0.0638 -0.73693,0 -1.30378,0.24092 -1.70058,0.72274 -0.39208,0.47712 -0.58812,1.16443 -0.58812,2.06195 l 0,4.18059 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.27398,-0.48182 0.63063,-0.83847 1.06995,-1.06995 0.43931,-0.23618 0.9731,-0.35428 1.60138,-0.35428 0.0897,0 0.18894,0.007 0.2976,0.0213 0.10864,0.009 0.2291,0.026 0.36137,0.0496 l 0.007,1.33921"
inkscape:connector-curvature="0" />
<path
id="path11123"
d="m 265.48986,366.87439 c -0.69913,10e-6 -1.25181,0.27399 -1.65806,0.82195 -0.40625,0.54324 -0.60938,1.28961 -0.60937,2.23909 -10e-6,0.94949 0.20076,1.69822 0.60228,2.24618 0.40625,0.54324 0.9613,0.81486 1.66515,0.81486 0.6944,0 1.24473,-0.27398 1.65098,-0.82194 0.40624,-0.54796 0.60937,-1.29433 0.60938,-2.2391 -1e-5,-0.94003 -0.20314,-1.68404 -0.60938,-2.23201 -0.40625,-0.55268 -0.95658,-0.82902 -1.65098,-0.82903 m 0,-1.10537 c 1.13372,0 2.02416,0.36846 2.67133,1.10537 0.64716,0.73693 0.97074,1.75727 0.97075,3.06104 -10e-6,1.29906 -0.32359,2.3194 -0.97075,3.06104 -0.64717,0.73692 -1.53761,1.10538 -2.67133,1.10538 -1.13844,0 -2.03124,-0.36846 -2.67841,-1.10538 -0.64244,-0.74164 -0.96366,-1.76198 -0.96366,-3.06104 0,-1.30377 0.32122,-2.32411 0.96366,-3.06104 0.64717,-0.73691 1.53997,-1.10537 2.67841,-1.10537"
inkscape:connector-curvature="0" />
<path
id="path11125"
d="m 277.88283,369.1064 0,4.78996 -1.30378,0 0,-4.74744 c -10e-6,-0.75109 -0.14644,-1.31322 -0.43932,-1.68641 -0.29288,-0.37318 -0.73219,-0.55977 -1.31794,-0.55978 -0.70386,10e-6 -1.25891,0.22439 -1.66515,0.67315 -0.40625,0.44877 -0.60938,1.06051 -0.60938,1.83521 l 0,4.48527 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.31177,-0.4771 0.67787,-0.83375 1.09829,-1.06995 0.42514,-0.23618 0.91406,-0.35428 1.46675,-0.35428 0.91169,0 1.60137,0.28343 2.06904,0.85029 0.46765,0.56214 0.70148,1.39117 0.70149,2.48709"
inkscape:connector-curvature="0" />
<path
id="path11127"
d="m 281.78707,363.70707 0,2.25326 2.6855,0 0,1.01326 -2.6855,0 0,4.30813 c 0,0.64717 0.0874,1.06287 0.26217,1.24709 0.17951,0.18423 0.54088,0.27635 1.08412,0.27635 l 1.33921,0 0,1.0912 -1.33921,0 c -1.00618,0 -1.70058,-0.18659 -2.08321,-0.55977 -0.38263,-0.37791 -0.57394,-1.06286 -0.57394,-2.05487 l 0,-4.30813 -0.95658,0 0,-1.01326 0.95658,0 0,-2.25326 1.31086,0"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 268.89451,445.20079 -55.95028,0"
id="path7494-1-6-3-5-81-64-9-2-8-7-1-3-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-6-6-3-9-1"
d="m 247.77207,444.39459 c 0,5.6434 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-5.6434 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 268.00769,415.37139 -65.78592,0"
id="path7494-1-6-3-5-81-64-9-2-0-5-1-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-1-2-7"
d="m 247.77207,416.98379 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="232.90089"
y="421.67789"
id="text8484-0-04"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-5"
x="232.90089"
y="421.67789">5</tspan></text>
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="232.92267"
y="448.67929"
id="text8492-2-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8494-0-7"
x="232.92267"
y="448.67929">6</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 203.26983,493.57279 128.992,0"
id="path3992-4-77-9-5-7-1-28-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-28-0-7"
d="m 205.36595,514.53399 124.5579,0"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.61240005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.8372, 1.6124;stroke-dashoffset:0"
d="m 198.83573,485.51079 c 20.9612,-0.8062 9.6744,-20.9612 67.7208,-20.9612 54.8216,0 48.372,21.7674 69.3332,21.7674"
id="path3992-4-77-9-5-7-1-2-9-3-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,221 @@
<?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="169.70868"
height="217.73358"
id="svg11265"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 114">
<defs
id="defs11267" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="84.231541"
inkscape:cy="80.097175"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata11270">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-235.13681,-332.10676)">
<g
id="g11367">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-3-5"
d="m 248.95982,455.2606 140.8,0"
style="fill:none;stroke:#dba981;stroke-width:0.9174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.7523, 0.9174;stroke-dashoffset:0;display:inline" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 391.35982,456.2606 c -13.9,0 -12.1,-34 0,-63"
id="path8584-0-8-6-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 247.05982,455.2606 c 19.5,1 8,-45 -1.6,-64"
id="path8584-6-5-3-6-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 265.55982,548.2606 c 2.4,-17 -5.6,-32 -9.6,-49 -2.5,-11 -1.7,-24 -5.7,-35 -9.7,-20 -21,-50 -7.2,-70 7.2,-9 28.2,-8 44.3,-17 3.2,-2 4.8,-7 5.6,-11 0,-5 -0.8,-13 -0.8,-13 0,0 17.8,-6 27.4,-6 8.9,0 26.6,6 26.6,6 0,0 -1.6,9 -0.8,13 0.8,4 2.5,9 5.7,11 16.1,9 37.1,8 44.3,17 17.8,25 1.6,50 -7.2,70 -4.1,11 -4.1,24 -6.5,35 -3.2,17 -11.3,32 -9.7,48"
id="path11142"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccaccccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9"
d="m 267.15982,547.2606 101.6,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<g
id="text6934-6"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path11359"
d="m 305.31948,338.08004 0,3.8759 2.29578,0 c 0.76998,0 1.3392,-0.15825 1.70767,-0.47475 0.37317,-0.32121 0.55976,-0.81013 0.55977,-1.46674 -10e-6,-0.66134 -0.1866,-1.14789 -0.55977,-1.45967 -0.36847,-0.31649 -0.93769,-0.47474 -1.70767,-0.47474 l -2.29578,0 m 0,-4.35065 0,3.18859 2.11864,0 c 0.69912,0 1.21874,-0.1299 1.55886,-0.38972 0.34483,-0.26453 0.51725,-0.66605 0.51726,-1.20458 -10e-6,-0.53378 -0.17243,-0.93294 -0.51726,-1.19749 -0.34012,-0.26452 -0.85974,-0.39679 -1.55886,-0.3968 l -2.11864,0 m -1.43132,-1.17623 3.65625,0 c 1.09119,1e-5 1.93203,0.22675 2.52252,0.68023 0.59047,0.4535 0.88571,1.0983 0.88572,1.93441 -1e-5,0.64717 -0.15117,1.16207 -0.45349,1.54469 -0.30233,0.38264 -0.74637,0.62119 -1.33212,0.71566 0.70384,0.15117 1.24944,0.46766 1.63681,0.94949 0.39207,0.47711 0.5881,1.07467 0.58811,1.79269 -10e-6,0.94477 -0.32123,1.6746 -0.96366,2.1895 -0.64245,0.51489 -1.55651,0.77234 -2.74218,0.77234 l -3.79796,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path11361"
d="m 317.3865,339.1429 c -1.05342,0 -1.78325,0.12046 -2.18949,0.36137 -0.40626,0.24092 -0.60938,0.65189 -0.60938,1.23292 0,0.46294 0.15116,0.8314 0.45349,1.10538 0.30705,0.26926 0.72274,0.40388 1.24709,0.40388 0.72274,0 1.30141,-0.25508 1.73601,-0.76526 0.43931,-0.51489 0.65897,-1.19748 0.65897,-2.04778 l 0,-0.29051 -1.29669,0 m 2.60047,-0.53852 0,4.52779 -1.30378,0 0,-1.20457 c -0.29761,0.48183 -0.66843,0.83848 -1.11246,1.06994 -0.44404,0.22675 -0.98728,0.34012 -1.62972,0.34012 -0.8125,0 -1.45967,-0.22675 -1.94149,-0.68023 -0.47711,-0.45821 -0.71566,-1.06995 -0.71566,-1.83521 0,-0.8928 0.2976,-1.56595 0.8928,-2.01944 0.59992,-0.45348 1.49273,-0.68022 2.67841,-0.68023 l 1.82812,0 0,-0.12754 c 0,-0.59992 -0.19841,-1.06286 -0.5952,-1.38881 -0.39208,-0.33066 -0.94477,-0.49599 -1.65806,-0.496 -0.4535,10e-6 -0.89517,0.0543 -1.32504,0.16297 -0.42987,0.10866 -0.8432,0.27163 -1.24,0.48892 l 0,-1.20458 c 0.4771,-0.18422 0.94004,-0.32121 1.3888,-0.41097 0.44876,-0.0945 0.88572,-0.14171 1.31086,-0.14171 1.14789,0 2.00526,0.2976 2.57213,0.8928 0.56685,0.59521 0.85028,1.49746 0.85029,2.70675"
inkscape:connector-curvature="0" />
<path
id="path11363"
d="m 328.39066,335.50083 0,1.21875 c -0.36847,-0.20312 -0.73929,-0.35429 -1.11246,-0.45349 -0.36847,-0.10392 -0.74165,-0.15588 -1.11955,-0.15589 -0.84557,10e-6 -1.50218,0.26927 -1.96984,0.80778 -0.46766,0.53379 -0.70149,1.28488 -0.70149,2.25326 0,0.96839 0.23383,1.72184 0.70149,2.26035 0.46766,0.5338 1.12427,0.80069 1.96984,0.80069 0.3779,0 0.75108,-0.0496 1.11955,-0.1488 0.37317,-0.10392 0.74399,-0.25745 1.11246,-0.46057 l 0,1.20457 c -0.36374,0.17006 -0.74165,0.29761 -1.13372,0.38263 -0.38736,0.085 -0.8007,0.12755 -1.24001,0.12755 -1.19513,0 -2.14462,-0.37555 -2.84847,-1.12663 -0.70385,-0.75109 -1.05577,-1.76435 -1.05577,-3.03979 0,-1.29432 0.35429,-2.31231 1.06286,-3.05395 0.7133,-0.74164 1.68877,-1.11246 2.92641,-1.11246 0.40152,0 0.7936,0.0425 1.17624,0.12754 0.38262,0.0803 0.75344,0.20313 1.11246,0.36846"
inkscape:connector-curvature="0" />
<path
id="path11365"
d="m 330.62267,332.10676 1.31086,0 0,6.51179 3.89007,-3.42241 1.66515,0 -4.20893,3.71293 4.38607,4.2231 -1.70057,0 -4.03179,-3.8759 0,3.8759 -1.31086,0 0,-11.02541"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 289.75982,374.2606 c 12.1,-5 46.8,-6 58.9,1"
id="path3992-4-77-9-5-7-1-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 249.45982,464.2606 138,0"
id="path8471-6-6-6-8-7-8-3-3-9-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7"
d="m 391.35982,391.2606 -145.1,0"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 330.05982,391.2606 c 0,7 -5.6,11 -11.3,11 -6.4,0 -11.3,-4 -11.3,-11 0,-6 4.9,-11 11.3,-11 5.7,0 10.5,5 11.3,11"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="315.37024"
y="396.31406"
id="text8512-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9"
x="315.37024"
y="396.31406">7</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-58"
d="m 379.25982,427.2606 -118.5,-1"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-41"
d="m 330.05982,426.2606 c 0,6 -5.6,11 -11.3,11 -6.4,0 -11.3,-5 -11.3,-11 0,-7 4.9,-12 11.3,-12 5.7,0 10.5,5 11.3,12"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8516-1"
y="430.77914"
x="315.13818"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="430.77914"
x="315.13818"
id="tspan8518-4"
sodipodi:role="line">8</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-9-5-33"
d="m 380.05982,456.2606 -123,-1"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-6-6-2"
d="m 330.05982,450.2606 c 0,6 -5.6,11 -11.3,11 -6.4,0 -11.3,-5 -11.3,-11 0,-6 4.9,-11 11.3,-11 5.7,0 10.5,5 11.3,11"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12259996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="315.37024"
y="454.92465"
id="text8520-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8522-6"
x="315.37024"
y="454.92465">9</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 251.75982,483.2606 132.3,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 250.65982,451.2606 9.5,9"
id="path8279-7-5-4-4-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 260.15982,451.2606 -9.5,9"
id="path8279-7-5-4-4-4-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 377.35982,451.2606 9.5,9"
id="path8279-7-5-4-4-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 386.85982,451.2606 -9.5,9"
id="path8279-7-5-4-4-4-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,175 @@
<?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="169.70679"
height="217.16159"
id="svg11446"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 117">
<defs
id="defs11448" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="189.70289"
inkscape:cy="51.490552"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata11451">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-100.86089,-246.63853)">
<g
id="g11524">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-08-6"
d="m 186.03543,263.33002 -0.16124,198.08334"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0;display:inline" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 257.06165,371.19958 c -17.17206,-16.9302 -12.093,-34.6666 0,-63.6898"
id="path8584-0-8-6-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 112.75185,369.58718 c 18.5426,-16.124 8.062,-45.1472 -1.6124,-63.6898"
id="path8584-6-5-3-6-1-44"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 131.29445,462.30018 c 2.4186,-16.9302 -5.6434,-31.4418 -9.6744,-48.372 -2.4186,-11.2868 -1.6124,-24.186 -5.6434,-35.4728 -9.6744,-20.155 -20.9612,-49.1782 -7.2558,-69.3332 7.2558,-8.8682 28.217,-8.062 44.341,-17.7364 3.2248,-1.6124 4.8372,-6.4496 5.6434,-10.4806 0,-4.8372 -0.8062,-12.8992 -0.8062,-12.8992 0,0 17.7364,-6.4496 27.4108,-6.4496 8.8682,0 26.6046,6.4496 26.6046,6.4496 0,0 -1.6124,8.8682 -0.8062,12.8992 0.8062,4.031 2.4186,8.8682 5.6434,11.2868 16.124,8.8682 37.0852,8.062 44.341,16.9302 17.7364,24.186 1.6124,49.1782 -7.2558,70.1394 -4.031,10.4806 -4.031,23.3798 -6.4496,34.6666 -3.2248,16.9302 -11.2868,31.4418 -9.6744,47.5658"
id="path11142-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccaccccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-81"
d="m 132.90685,461.49398 101.5812,0"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<g
id="text6934-6-7"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path11516"
d="m 171.02813,252.61181 0,3.8759 2.29578,0 c 0.76998,0 1.3392,-0.15825 1.70767,-0.47475 0.37317,-0.32122 0.55976,-0.81013 0.55977,-1.46675 -1e-5,-0.66133 -0.1866,-1.14788 -0.55977,-1.45966 -0.36847,-0.31649 -0.93769,-0.47474 -1.70767,-0.47474 l -2.29578,0 m 0,-4.35065 0,3.18858 2.11864,0 c 0.69912,1e-5 1.21874,-0.12989 1.55886,-0.38971 0.34483,-0.26453 0.51725,-0.66605 0.51726,-1.20458 -1e-5,-0.53378 -0.17243,-0.93294 -0.51726,-1.19749 -0.34012,-0.26452 -0.85974,-0.39679 -1.55886,-0.3968 l -2.11864,0 m -1.43132,-1.17623 3.65624,0 c 1.0912,10e-6 1.93204,0.22675 2.52253,0.68023 0.59047,0.4535 0.88571,1.0983 0.88572,1.93441 -1e-5,0.64717 -0.15118,1.16206 -0.45349,1.54469 -0.30233,0.38263 -0.74637,0.62119 -1.33212,0.71566 0.70384,0.15117 1.24944,0.46766 1.63681,0.94949 0.39206,0.47711 0.5881,1.07467 0.58811,1.79269 -1e-5,0.94477 -0.32123,1.6746 -0.96366,2.18949 -0.64245,0.5149 -1.55651,0.77235 -2.74218,0.77235 l -3.79796,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path11518"
d="m 183.09515,253.67467 c -1.05342,0 -1.78325,0.12046 -2.1895,0.36137 -0.40625,0.24092 -0.60937,0.65189 -0.60937,1.23292 0,0.46294 0.15116,0.83139 0.45349,1.10538 0.30704,0.26925 0.72274,0.40388 1.24709,0.40388 0.72274,0 1.30141,-0.25508 1.73601,-0.76526 0.43931,-0.51489 0.65896,-1.19748 0.65897,-2.04778 l 0,-0.29051 -1.29669,0 m 2.60047,-0.53852 0,4.52779 -1.30378,0 0,-1.20458 c -0.29761,0.48184 -0.66843,0.83848 -1.11246,1.06995 -0.44405,0.22674 -0.98729,0.34012 -1.62972,0.34012 -0.8125,0 -1.45967,-0.22675 -1.9415,-0.68023 -0.4771,-0.45821 -0.71566,-1.06995 -0.71566,-1.83521 0,-0.8928 0.2976,-1.56595 0.89281,-2.01944 0.59992,-0.45348 1.49272,-0.68022 2.67841,-0.68023 l 1.82812,0 0,-0.12754 c -1e-5,-0.59992 -0.19841,-1.06286 -0.5952,-1.38881 -0.39209,-0.33066 -0.94477,-0.49599 -1.65807,-0.496 -0.45349,1e-5 -0.89516,0.0543 -1.32503,0.16297 -0.42987,0.10866 -0.8432,0.27163 -1.24,0.48892 l 0,-1.20458 c 0.4771,-0.18422 0.94003,-0.32121 1.3888,-0.41097 0.44876,-0.0945 0.88571,-0.14171 1.31086,-0.14172 1.14789,1e-5 2.00526,0.29761 2.57213,0.89281 0.56685,0.59521 0.85028,1.49746 0.85029,2.70675"
inkscape:connector-curvature="0" />
<path
id="path11520"
d="m 194.09931,250.0326 0,1.21874 c -0.36847,-0.20311 -0.73929,-0.35428 -1.11247,-0.45348 -0.36846,-0.10392 -0.74164,-0.15588 -1.11954,-0.15589 -0.84557,1e-5 -1.50218,0.26927 -1.96984,0.80777 -0.46766,0.5338 -0.70149,1.28489 -0.70149,2.25327 0,0.96839 0.23383,1.72184 0.70149,2.26035 0.46766,0.5338 1.12427,0.80069 1.96984,0.80069 0.3779,0 0.75108,-0.0496 1.11954,-0.1488 0.37318,-0.10392 0.744,-0.25745 1.11247,-0.46057 l 0,1.20457 c -0.36375,0.17006 -0.74165,0.2976 -1.13372,0.38263 -0.38736,0.085 -0.8007,0.12755 -1.24001,0.12755 -1.19513,0 -2.14462,-0.37555 -2.84847,-1.12664 -0.70385,-0.75108 -1.05577,-1.76434 -1.05577,-3.03978 0,-1.29432 0.35428,-2.31231 1.06286,-3.05395 0.71329,-0.74164 1.68876,-1.11246 2.92641,-1.11247 0.40152,1e-5 0.7936,0.0425 1.17623,0.12755 0.38263,0.0803 0.75345,0.20313 1.11247,0.36846"
inkscape:connector-curvature="0" />
<path
id="path11522"
d="m 196.33131,246.63853 1.31087,0 0,6.51179 3.89007,-3.42241 1.66515,0 -4.20893,3.71293 4.38607,4.2231 -1.70058,0 -4.03178,-3.8759 0,3.8759 -1.31087,0 0,-11.02541"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 155.48045,288.96718 c 12.093,-5.6434 46.7596,-6.4496 58.8526,0.8062"
id="path3992-4-77-9-5-7-1-0-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 115.17045,379.26158 138.98888,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-0"
d="m 257.06165,305.89738 -72.558,0"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 228.03845,307.50978 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-4"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="209.44505"
y="312.43457"
id="text8512-9-02"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8514-9-2"
x="209.44505"
y="312.43457">10</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-58-2"
d="m 246.98415,341.37018 -61.91616,0"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
inkscape:connector-curvature="0"
id="path4050-8-0-5-3-4-0-7-3-0-68-41-8"
d="m 228.03845,342.17638 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
sodipodi:linespacing="125%"
id="text8516-1-8"
y="346.89963"
x="208.82831"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="346.89963"
x="208.82831"
id="tspan8518-4-7"
sodipodi:role="line">11</tspan></text>
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 120.16889,397.80418 129.55634,0"
id="path8471-6-6-6-8-7-8-3-3-9-3-3-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

View file

@ -0,0 +1,157 @@
<?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="163.76395"
height="213.25418"
id="svg11639"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 120">
<defs
id="defs11641" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="2.4596555"
inkscape:cy="70.133835"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata11644">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-100.97517,-322.87796)">
<g
id="g11707">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4"
d="m 252.19094,441.113 c -4.8372,-1.6124 -29.0232,6.4496 -3.2248,-65.3022"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3"
d="m 113.52454,440.3068 c 4.031,-1.6124 28.217,6.4496 2.4186,-65.3022"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 130.45474,534.6322 c 2.4186,-16.9302 -5.6434,-32.248 -8.8682,-48.372 -2.4186,-11.2868 -1.6124,-24.9922 -6.4496,-35.4728 -8.062,-20.9612 -20.155,-49.1782 -6.4496,-70.1394 6.4496,-8.8682 26.6046,-8.062 42.7286,-16.9302 3.2248,-2.4186 4.031,-8.062 4.8372,-11.2868 0.8062,-4.031 -0.8062,-12.8992 -0.8062,-12.8992 0,0 17.7364,5.6434 27.4108,5.6434 8.8682,0 25.7984,-4.8372 25.7984,-4.8372 0,0 -1.6124,8.062 -0.8062,12.093 0.8062,4.031 2.4186,9.6744 4.8372,11.2868 16.124,9.6744 36.279,8.062 42.7286,17.7364 16.9302,24.186 2.4186,49.1782 -6.4496,69.3332 -4.8372,10.4806 -4.8372,24.186 -6.4496,35.4728 -3.2248,16.124 -11.2868,31.4418 -8.8682,48.372"
id="path11116-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccacsccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2"
d="m 152.22214,361.2992 c 9.6744,9.6744 55.6278,10.4806 58.8526,3.2248"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<g
id="text6934-2-9-4"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path11697"
d="m 163.82997,322.87796 6.07956,0 0,1.20457 -4.64824,0 0,3.11773 4.19475,0 0,1.20458 -4.19475,0 0,5.05213 -1.43132,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path11699"
d="m 175.68441,326.73969 c -0.14644,-0.085 -0.30705,-0.14643 -0.48183,-0.18423 -0.17006,-0.0425 -0.35901,-0.0638 -0.56686,-0.0638 -0.73692,0 -1.30378,0.24092 -1.70058,0.72274 -0.39208,0.47711 -0.58812,1.16443 -0.58811,2.06195 l 0,4.18059 -1.31087,0 0,-7.93603 1.31087,0 0,1.23292 c 0.27398,-0.48182 0.63062,-0.83847 1.06994,-1.06995 0.43932,-0.23618 0.97311,-0.35428 1.60138,-0.35429 0.0898,1e-5 0.18895,0.007 0.2976,0.0213 0.10865,0.009 0.2291,0.026 0.36138,0.0496 l 0.007,1.33921"
inkscape:connector-curvature="0" />
<path
id="path11701"
d="m 179.82957,326.435 c -0.69913,10e-6 -1.25182,0.27399 -1.65806,0.82195 -0.40625,0.54324 -0.60938,1.28961 -0.60938,2.23909 0,0.94949 0.20076,1.69822 0.60229,2.24618 0.40625,0.54324 0.9613,0.81486 1.66515,0.81486 0.6944,0 1.24472,-0.27398 1.65098,-0.82195 0.40624,-0.54796 0.60937,-1.29432 0.60937,-2.23909 0,-0.94004 -0.20313,-1.68404 -0.60937,-2.23201 -0.40626,-0.55268 -0.95658,-0.82902 -1.65098,-0.82903 m 0,-1.10538 c 1.13371,1e-5 2.02415,0.36847 2.67133,1.10538 0.64715,0.73692 0.97073,1.75727 0.97074,3.06104 -1e-5,1.29906 -0.32359,2.3194 -0.97074,3.06104 -0.64718,0.73692 -1.53762,1.10538 -2.67133,1.10538 -1.13845,0 -2.03125,-0.36846 -2.67841,-1.10538 -0.64244,-0.74164 -0.96366,-1.76198 -0.96366,-3.06104 0,-1.30377 0.32122,-2.32412 0.96366,-3.06104 0.64716,-0.73691 1.53996,-1.10537 2.67841,-1.10538"
inkscape:connector-curvature="0" />
<path
id="path11703"
d="m 192.22253,328.66701 0,4.78996 -1.30377,0 0,-4.74745 c -1e-5,-0.75108 -0.14645,-1.31322 -0.43932,-1.6864 -0.29288,-0.37318 -0.7322,-0.55977 -1.31795,-0.55978 -0.70385,10e-6 -1.2589,0.22439 -1.66515,0.67315 -0.40625,0.44877 -0.60937,1.0605 -0.60937,1.83521 l 0,4.48527 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.31177,-0.4771 0.67787,-0.83375 1.09829,-1.06995 0.42514,-0.23618 0.91406,-0.35428 1.46675,-0.35429 0.91169,1e-5 1.60137,0.28344 2.06904,0.85029 0.46765,0.56215 0.70148,1.39118 0.70148,2.4871"
inkscape:connector-curvature="0" />
<path
id="path11705"
d="m 196.12678,323.26767 0,2.25327 2.68549,0 0,1.01326 -2.68549,0 0,4.30813 c -1e-5,0.64717 0.0874,1.06286 0.26217,1.24709 0.1795,0.18423 0.54087,0.27635 1.08412,0.27635 l 1.3392,0 0,1.0912 -1.3392,0 c -1.00618,0 -1.70058,-0.18659 -2.08321,-0.55977 -0.38263,-0.37791 -0.57395,-1.06286 -0.57395,-2.05487 l 0,-4.30813 -0.95657,0 0,-1.01326 0.95657,0 0,-2.25327 1.31087,0"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-1-2-6"
d="m 249.77234,376.617 -66.9146,-7.2558"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 228.00494,373.3922 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-6.4496 4.8372,-11.2868 11.2868,-11.2868 5.6434,0 10.4806,4.8372 11.2868,11.2868"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-1-2-8"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0"
y="378.32623"
x="208.83835"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="378.32623"
x="208.83835"
id="tspan8486-3-0"
sodipodi:role="line">12</tspan></text>
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9"
d="m 114.33074,444.3378 c 20.9612,0 9.6744,-20.155 67.7208,-20.9612 54.8216,0 48.372,22.5736 69.3332,21.7674"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8"
d="m 116.74934,454.8184 130.6044,0"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8"
d="m 130.45474,533.0198 103.9998,0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 119.57104,472.5548 124.5579,-0.8062"
id="path3992-4-77-9-5-7-1-2-9-8-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

View file

@ -0,0 +1,153 @@
<?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="169.70679"
height="217.08109"
id="svg11771"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 123">
<defs
id="defs11773" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="157.27511"
inkscape:cy="146.32638"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata11776">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-180.86089,-266.67875)">
<g
id="g11873">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-3"
d="m 235.48045,311.3455 c 14.5116,-4.8372 42.7286,-6.4496 58.8526,0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-0-8-6-3-4"
d="m 337.06165,391.1593 c -16.9302,-16.9302 -9.6744,-39.5038 0,-63.6898"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-5-3-6-1-1"
d="m 192.75185,389.5469 c 14.5116,-16.124 16.124,-31.4418 -1.6124,-63.6898"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 211.29445,482.2599 c 2.4186,-16.9302 -5.6434,-31.4418 -9.6744,-48.372 -2.4186,-11.2868 -1.6124,-24.186 -5.6434,-35.4728 -9.6744,-20.155 -20.9612,-49.1782 -7.2558,-69.3332 7.2558,-8.8682 28.217,-8.062 44.341,-17.7364 3.2248,-1.6124 4.8372,-6.4496 5.6434,-10.4806 0,-4.031 -0.8062,-12.8992 -0.8062,-12.8992 0,0 17.7364,-6.4496 27.4108,-6.4496 8.8682,0 26.6046,6.4496 26.6046,6.4496 0,0 -1.6124,8.8682 -0.8062,12.8992 0.8062,4.031 2.4186,8.8682 5.6434,11.2868 16.124,9.6744 37.0852,8.062 44.341,16.9302 17.7364,24.186 1.6124,49.9844 -7.2558,70.1394 -4.031,10.4806 -4.031,23.3798 -6.4496,34.6666 -3.2248,16.9302 -11.2868,31.4418 -9.6744,47.5658"
id="path11142-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccaccccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)"
d="m 337.06165,325.8571 -73.3642,-17.7364"
id="path7494-1-6-3-5-81-64-9-2-0-5-7-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 312.06945,317.7951 c 0,6.4496 -5.6434,11.2868 -11.2868,11.2868 -6.4496,0 -11.2868,-4.8372 -11.2868,-11.2868 0,-5.6434 4.8372,-10.4806 11.2868,-10.4806 5.6434,0 10.4806,4.8372 11.2868,10.4806"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-6-0"
inkscape:connector-curvature="0" />
<g
id="text6934-6-2"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path11829"
d="m 251.03779,272.65203 0,3.8759 2.29578,0 c 0.76998,0 1.3392,-0.15825 1.70766,-0.47475 0.37318,-0.32121 0.55977,-0.81013 0.55978,-1.46674 -1e-5,-0.66134 -0.1866,-1.14789 -0.55978,-1.45967 -0.36846,-0.31649 -0.93768,-0.47474 -1.70766,-0.47474 l -2.29578,0 m 0,-4.35065 0,3.18859 2.11864,0 c 0.69912,0 1.21874,-0.1299 1.55886,-0.38972 0.34483,-0.26453 0.51725,-0.66605 0.51726,-1.20458 -1e-5,-0.53378 -0.17243,-0.93294 -0.51726,-1.19749 -0.34012,-0.26452 -0.85974,-0.39679 -1.55886,-0.3968 l -2.11864,0 m -1.43132,-1.17623 3.65624,0 c 1.0912,10e-6 1.93204,0.22675 2.52253,0.68023 0.59047,0.4535 0.88571,1.0983 0.88571,1.93441 0,0.64717 -0.15117,1.16207 -0.45348,1.54469 -0.30234,0.38264 -0.74638,0.62119 -1.33212,0.71566 0.70384,0.15117 1.24944,0.46766 1.6368,0.94949 0.39207,0.47711 0.58811,1.07467 0.58812,1.79269 -1e-5,0.94477 -0.32123,1.6746 -0.96366,2.1895 -0.64245,0.51489 -1.55651,0.77234 -2.74218,0.77234 l -3.79796,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path11831"
d="m 263.10481,273.71489 c -1.05342,0 -1.78325,0.12046 -2.1895,0.36137 -0.40625,0.24092 -0.60937,0.65189 -0.60937,1.23292 0,0.46294 0.15116,0.8314 0.45349,1.10538 0.30704,0.26926 0.72274,0.40389 1.24709,0.40388 0.72274,10e-6 1.30141,-0.25508 1.736,-0.76526 0.43931,-0.51489 0.65897,-1.19748 0.65898,-2.04777 l 0,-0.29052 -1.29669,0 m 2.60047,-0.53852 0,4.52779 -1.30378,0 0,-1.20457 c -0.29761,0.48183 -0.66843,0.83848 -1.11246,1.06994 -0.44405,0.22675 -0.98729,0.34012 -1.62972,0.34012 -0.8125,0 -1.45967,-0.22674 -1.9415,-0.68023 -0.4771,-0.45821 -0.71566,-1.06995 -0.71566,-1.83521 0,-0.8928 0.2976,-1.56594 0.89281,-2.01944 0.59992,-0.45348 1.49272,-0.68022 2.67841,-0.68023 l 1.82812,0 0,-0.12754 c -10e-6,-0.59992 -0.19841,-1.06286 -0.5952,-1.38881 -0.39209,-0.33066 -0.94477,-0.49599 -1.65807,-0.496 -0.45349,1e-5 -0.89517,0.0543 -1.32503,0.16297 -0.42987,0.10866 -0.84321,0.27163 -1.24001,0.48892 l 0,-1.20458 c 0.47711,-0.18422 0.94004,-0.32121 1.38881,-0.41097 0.44876,-0.0945 0.88571,-0.14171 1.31086,-0.14171 1.14789,0 2.00526,0.29761 2.57213,0.8928 0.56685,0.59521 0.85028,1.49746 0.85029,2.70675"
inkscape:connector-curvature="0" />
<path
id="path11833"
d="m 274.10896,270.07282 0,1.21875 c -0.36846,-0.20312 -0.73928,-0.35428 -1.11246,-0.45349 -0.36846,-0.10392 -0.74164,-0.15588 -1.11954,-0.15589 -0.84557,1e-5 -1.50219,0.26927 -1.96984,0.80778 -0.46766,0.5338 -0.70149,1.28488 -0.70149,2.25326 0,0.96839 0.23383,1.72184 0.70149,2.26035 0.46765,0.5338 1.12427,0.80069 1.96984,0.80069 0.3779,0 0.75108,-0.0496 1.11954,-0.1488 0.37318,-0.10392 0.744,-0.25744 1.11246,-0.46057 l 0,1.20458 c -0.36374,0.17005 -0.74164,0.2976 -1.13371,0.38263 -0.38736,0.085 -0.8007,0.12754 -1.24001,0.12754 -1.19513,0 -2.14462,-0.37555 -2.84847,-1.12663 -0.70385,-0.75109 -1.05577,-1.76435 -1.05577,-3.03979 0,-1.29432 0.35428,-2.3123 1.06286,-3.05395 0.71329,-0.74164 1.68876,-1.11246 2.92641,-1.11246 0.40152,0 0.7936,0.0425 1.17623,0.12754 0.38263,0.0803 0.75345,0.20313 1.11246,0.36846"
inkscape:connector-curvature="0" />
<path
id="path11835"
d="m 276.34097,266.67875 1.31087,0 0,6.51179 3.89007,-3.42241 1.66515,0 -4.20893,3.71293 4.38607,4.2231 -1.70058,0 -4.03178,-3.8759 0,3.8759 -1.31087,0 0,-11.02541"
inkscape:connector-curvature="0" />
</g>
<text
sodipodi:linespacing="125%"
id="text8512-9-4"
y="323.17575"
x="293.09146"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="323.17575"
x="293.09146"
id="tspan8514-9-7"
sodipodi:role="line">13</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8471-6-6-6-8-7-8-3-3-9-8"
d="m 212.90685,481.4537 101.5812,0"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-3-2"
d="m 194.36425,391.9655 142.6974,0"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-3-2-1"
d="m 198.39525,403.2523 133.023,-0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 199.12083,417.7639 129.07262,0"
id="path3992-4-77-9-5-7-1-2-3-2-1-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,169 @@
<?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="163.76395"
height="213.49597"
id="svg11967"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 127">
<defs
id="defs11969" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="173.7874"
inkscape:cy="132.4757"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata11972">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-140.97513,-391.32846)">
<g
id="g12059">
<path
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0"
d="m 193.0283,430.31398 0,34.18288"
id="path3992-4-77-9-5-7-1-2-9-8-5-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.41860008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.2558, 2.4186;stroke-dashoffset:0"
d="m 251.0747,433.37754 0,30.15188"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4-4"
d="m 292.1909,509.88592 c -4.8372,-1.69302 -29.0232,5.88526 -3.2248,-65.38282"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3-1"
d="m 153.5245,509.07972 c 4.031,-1.69302 28.217,5.80464 2.4186,-65.46344"
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.99987006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 170.4547,603.3245 c 2.4186,-17.17206 -5.6434,-32.248 -8.8682,-49.01696 -2.4186,-10.8837 -1.6124,-24.26662 -6.4496,-35.23094 -8.062,-20.9612 -20.155,-49.42006 -6.4496,-70.38126 6.4496,-8.38448 26.6046,-7.57828 42.7286,-16.76896 3.2248,-2.49922 4.031,-7.57828 4.8372,-10.8837 0.8062,-4.19224 -0.8062,-13.46354 -0.8062,-13.46354 0,0 17.7364,6.0465 27.4108,6.12712 8.8682,0.0806 25.7984,-5.2403 25.7984,-5.2403 0,0 -1.6124,8.38448 -0.8062,12.57672 0.8062,4.19224 2.4186,9.19068 4.8372,10.8837 16.124,10.0775 36.279,8.38448 42.7286,17.57516 16.9302,24.34724 2.4186,49.50068 -6.4496,69.57506 -4.8372,10.96432 -4.8372,24.34724 -6.4496,35.23094 -3.2248,16.76896 -11.2868,31.8449 -8.8682,49.01696"
id="path11116-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccacsccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-90"
d="m 192.2221,430.07212 c 9.6744,9.11006 55.6278,9.91626 58.8526,2.57984"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<g
id="text6934-2-9-4-0"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path12049"
d="m 203.52366,391.32846 6.07957,0 0,1.20457 -4.64825,0 0,3.11773 4.19476,0 0,1.20458 -4.19476,0 0,5.05213 -1.43132,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path12051"
d="m 215.37811,395.19019 c -0.14645,-0.085 -0.30706,-0.14643 -0.48183,-0.18423 -0.17007,-0.0425 -0.35902,-0.0638 -0.56686,-0.0638 -0.73692,0 -1.30378,0.24092 -1.70058,0.72274 -0.39208,0.47711 -0.58812,1.16443 -0.58812,2.06195 l 0,4.18059 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.27398,-0.48182 0.63063,-0.83847 1.06995,-1.06995 0.43931,-0.23618 0.9731,-0.35428 1.60138,-0.35429 0.0897,1e-5 0.18894,0.007 0.2976,0.0213 0.10864,0.009 0.2291,0.026 0.36137,0.0496 l 0.007,1.33921"
inkscape:connector-curvature="0" />
<path
id="path12053"
d="m 219.52327,394.8855 c -0.69913,1e-5 -1.25182,0.27399 -1.65807,0.82195 -0.40625,0.54324 -0.60937,1.28961 -0.60937,2.23909 0,0.94949 0.20076,1.69822 0.60229,2.24618 0.40624,0.54324 0.96129,0.81486 1.66515,0.81486 0.69439,0 1.24472,-0.27398 1.65097,-0.82194 0.40625,-0.54797 0.60937,-1.29433 0.60938,-2.2391 -1e-5,-0.94004 -0.20313,-1.68404 -0.60938,-2.23201 -0.40625,-0.55268 -0.95658,-0.82902 -1.65097,-0.82903 m 0,-1.10538 c 1.13371,10e-6 2.02415,0.36847 2.67132,1.10538 0.64716,0.73692 0.97074,1.75727 0.97075,3.06104 -10e-6,1.29906 -0.32359,2.3194 -0.97075,3.06104 -0.64717,0.73692 -1.53761,1.10538 -2.67132,1.10538 -1.13845,0 -2.03125,-0.36846 -2.67841,-1.10538 -0.64245,-0.74164 -0.96367,-1.76198 -0.96367,-3.06104 0,-1.30377 0.32122,-2.32412 0.96367,-3.06104 0.64716,-0.73691 1.53996,-1.10537 2.67841,-1.10538"
inkscape:connector-curvature="0" />
<path
id="path12055"
d="m 231.91623,397.11751 0,4.78996 -1.30378,0 0,-4.74745 c 0,-0.75108 -0.14644,-1.31321 -0.43931,-1.6864 -0.29289,-0.37318 -0.7322,-0.55977 -1.31795,-0.55978 -0.70386,1e-5 -1.25891,0.22439 -1.66515,0.67315 -0.40625,0.44877 -0.60938,1.0605 -0.60938,1.83521 l 0,4.48527 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.31177,-0.4771 0.67787,-0.83375 1.09829,-1.06995 0.42515,-0.23618 0.91406,-0.35428 1.46675,-0.35429 0.9117,10e-6 1.60137,0.28344 2.06904,0.85029 0.46765,0.56215 0.70148,1.39118 0.70149,2.4871"
inkscape:connector-curvature="0" />
<path
id="path12057"
d="m 235.82047,391.71817 0,2.25327 2.6855,0 0,1.01326 -2.6855,0 0,4.30813 c 0,0.64717 0.0874,1.06286 0.26217,1.24709 0.17951,0.18423 0.54088,0.27635 1.08412,0.27635 l 1.33921,0 0,1.0912 -1.33921,0 c -1.00618,0 -1.70058,-0.18659 -2.08321,-0.55977 -0.38263,-0.37791 -0.57394,-1.06286 -0.57394,-2.05487 l 0,-4.30813 -0.95658,0 0,-1.01326 0.95658,0 0,-2.25327 1.31086,0"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path7494-1-6-3-5-81-64-9-2-0-5-1-2-6-8"
d="M 251.8809,449.98526 193.0283,449.7434"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#marker7359);marker-end:url(#marker7359)" />
<path
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#00000f;stroke-width:1.12255287;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94120029;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 232.5321,449.98526 c 0,6.20774 -5.6434,11.20618 -11.2868,11.20618 -6.4496,0 -11.2868,-4.99844 -11.2868,-11.20618 0,-6.20774 4.8372,-11.20618 11.2868,-11.20618 5.6434,0 10.4806,4.99844 11.2868,11.12556"
id="path4050-8-0-5-3-4-0-7-3-0-68-5-1-2-8-5"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0"
y="454.86841"
x="213.63246"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="454.86841"
x="213.63246"
id="tspan8486-3-0-4"
sodipodi:role="line">14</tspan></text>
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-4"
d="m 154.3307,512.86886 c 18.5426,-0.4031 14.5116,-19.67128 67.7208,-20.71934 54.0154,-0.96744 49.9844,21.3643 69.3332,21.7674"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5"
d="m 158.3617,523.99442 128.992,-0.48372"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6"
d="m 170.4547,601.7121 103.9998,0.8062"
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20043182;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6012954, 1.2004318;stroke-dashoffset:0"
d="m 162.31212,542.0533 124.1548,0"
id="path3992-4-77-9-5-7-1-2-9-8-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,273 @@
<?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="163.80922"
height="217.79382"
id="svg12140"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 130">
<defs
id="defs12142" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="27.687375"
inkscape:cy="129.43355"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata12145">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-300.95253,-329.17953)">
<g
id="g12253">
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 412.15786,458.4734 14,14"
id="path8279-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 426.15786,458.4734 -14,14"
id="path8279-7-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 341.05786,458.4734 14,14"
id="path8279-7-5-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 355.05786,458.4734 -14,14"
id="path8279-7-5-2-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4-4-7"
d="m 452.15786,451.4734 c -4.8,-2 -29,6 -3.2,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3-1-1"
d="m 311.95786,450.4734 c 4,-1 29.8,6 4,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 330.45786,545.4734 c 2.4,-17 -5.6,-33 -8.9,-50 -2.4,-10 -1.6,-24 -6.4,-34 -8.1,-21 -20.2,-50 -6.5,-71 6.5,-8 29.9,-9 46,-18 3.2,-2 4,-7 4.8,-11 0.8,-4 -0.8,-14 -0.8,-14 0,0 15.3,5 23.4,5 7.3,-1 21,-6 21,-6 0,0 -1.7,8 -0.9,12 0.9,4 2.5,10 4.9,12 16.1,9 41.9,12 48.4,21 16.9,24 2.4,50 -6.5,70 -4.8,10 -4.8,24 -6.4,34 -3.3,17 -11.3,33 -8.9,50"
id="path11116-9-7-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccacacaccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-90-1"
d="m 355.45786,371.4734 c 11.3,9 50.8,6 51.6,-1"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<g
id="text6934-2-9-4-0-5"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path12243"
d="m 364.95106,329.17953 6.07957,0 0,1.20458 -4.64825,0 0,3.11772 4.19476,0 0,1.20458 -4.19476,0 0,5.05213 -1.43132,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path12245"
d="m 376.80551,333.04126 c -0.14645,-0.085 -0.30706,-0.14643 -0.48184,-0.18423 -0.17006,-0.0425 -0.35901,-0.0638 -0.56685,-0.0638 -0.73693,1e-5 -1.30378,0.24092 -1.70058,0.72275 -0.39208,0.47711 -0.58812,1.16442 -0.58812,2.06195 l 0,4.18058 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.27398,-0.48182 0.63063,-0.83847 1.06995,-1.06994 0.43931,-0.23619 0.9731,-0.35428 1.60138,-0.35429 0.0897,10e-6 0.18894,0.007 0.2976,0.0213 0.10864,0.009 0.2291,0.026 0.36137,0.0496 l 0.007,1.3392"
inkscape:connector-curvature="0" />
<path
id="path12247"
d="m 380.95066,332.73657 c -0.69913,1e-5 -1.25181,0.27399 -1.65806,0.82195 -0.40625,0.54325 -0.60938,1.28961 -0.60937,2.2391 -10e-6,0.94949 0.20076,1.69821 0.60228,2.24618 0.40625,0.54324 0.9613,0.81486 1.66515,0.81486 0.6944,0 1.24473,-0.27399 1.65098,-0.82195 0.40624,-0.54796 0.60937,-1.29433 0.60938,-2.23909 -1e-5,-0.94004 -0.20314,-1.68404 -0.60938,-2.23201 -0.40625,-0.55268 -0.95658,-0.82903 -1.65098,-0.82904 m 0,-1.10537 c 1.13372,1e-5 2.02416,0.36847 2.67133,1.10537 0.64716,0.73693 0.97074,1.75727 0.97075,3.06105 -10e-6,1.29905 -0.32359,2.3194 -0.97075,3.06104 -0.64717,0.73691 -1.53761,1.10537 -2.67133,1.10537 -1.13844,0 -2.03124,-0.36846 -2.67841,-1.10537 -0.64244,-0.74164 -0.96366,-1.76199 -0.96366,-3.06104 0,-1.30378 0.32122,-2.32412 0.96366,-3.06105 0.64717,-0.7369 1.53997,-1.10536 2.67841,-1.10537"
inkscape:connector-curvature="0" />
<path
id="path12249"
d="m 393.34363,334.96858 0,4.78996 -1.30378,0 0,-4.74744 c -10e-6,-0.75109 -0.14644,-1.31322 -0.43932,-1.68641 -0.29288,-0.37317 -0.73219,-0.55977 -1.31794,-0.55977 -0.70386,0 -1.25891,0.22439 -1.66515,0.67314 -0.40625,0.44877 -0.60938,1.06051 -0.60938,1.83521 l 0,4.48527 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.31177,-0.4771 0.67787,-0.83375 1.09829,-1.06994 0.42514,-0.23619 0.91406,-0.35428 1.46675,-0.35429 0.91169,1e-5 1.60137,0.28344 2.06904,0.85029 0.46765,0.56214 0.70148,1.39117 0.70149,2.48709"
inkscape:connector-curvature="0" />
<path
id="path12251"
d="m 397.24787,329.56925 0,2.25326 2.6855,0 0,1.01327 -2.6855,0 0,4.30813 c 0,0.64716 0.0874,1.06286 0.26217,1.24709 0.17951,0.18423 0.54088,0.27634 1.08412,0.27634 l 1.33921,0 0,1.0912 -1.33921,0 c -1.00618,0 -1.70058,-0.18659 -2.08321,-0.55977 -0.38263,-0.3779 -0.57394,-1.06286 -0.57394,-2.05486 l 0,-4.30813 -0.95658,0 0,-1.01327 0.95658,0 0,-2.25326 1.31086,0"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-4-0"
d="m 315.15786,455.4734 c 15.3,0 12.9,-20 66.9,-22 56.4,0 50,22 69.3,22"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-7"
d="m 317.55786,465.4734 129.8,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-68"
d="m 330.45786,543.4734 104,1"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 319.15786,484.4734 124.2,1"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4864"
d="m 407.85786,371.4734 12.1,95 0,0"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="ccc" />
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path4866"
d="m 419.15786,465.4734 -71.8,1 m 0.8,-1 c -1.6,9 4.1,18 6.5,20"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
transform="matrix(0.8062,0,0,0.8062,10.36786,-1755.5266)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7"
y="486.36206"
x="334.13919"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="486.36206"
x="334.13919"
id="tspan8486-3-0-4-3-7"
sodipodi:role="line">3</tspan></text>
<path
transform="matrix(0.8062,0,0,0.8062,55.54786,-1772.5266)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-8"
y="470.66284"
x="379.4545"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="470.66284"
x="379.4545"
id="tspan8486-3-0-4-3-7-3"
sodipodi:role="line">1</tspan></text>
<path
transform="matrix(0.8062,0,0,0.8062,86.18786,-1818.5266)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-5"
y="424.63745"
x="409.95892"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="424.63745"
x="409.95892"
id="tspan8486-3-0-4-3-7-4"
sodipodi:role="line">2</tspan></text>
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 419.15786,466.4734 0.2,78"
id="path4864-8"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-7"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,91.87786,-1728.5266)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="415.57471"
y="514.50122"
id="text8484-0-0-0-8-7-5-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-8"
x="415.57471"
y="514.50122">4</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,183 @@
<?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="163.80922"
height="217.79381"
id="svg12335"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 133">
<defs
id="defs12337" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="263.66368"
inkscape:cy="113.87344"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata12340">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-246.66682,-332.03674)">
<g
id="g12412">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279-7-5-8"
d="m 358.37215,461.3306 14,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279-7-5-6-1"
d="m 372.37215,461.3306 -14,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6011, 1.2004;stroke-dashoffset:0;display:inline"
d="m 327.57215,379.3306 0,167"
id="path3992-4-77-9-5-7-1-2-90-1-8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4-4-7-05"
d="m 397.87215,454.3306 c -4.8,-2 -29,6 -3.2,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3-1-1-3"
d="m 257.67215,453.3306 c 4,-1 29.8,6 4,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 276.17215,548.3306 c 2.4,-17 -5.6,-33 -8.9,-50 -2.4,-10 -1.6,-24 -6.4,-34 -8.1,-21 -20.2,-50 -6.5,-71 6.5,-8 29.9,-9 46,-18 3.2,-2 4,-7 4.8,-11 0.8,-4 -0.8,-14 -0.8,-14 0,0 15.3,5 23.4,5 7.3,-1 21,-6 21,-6 0,0 -1.7,8 -0.9,12 0.9,4 2.5,10 4.9,12 16.1,9 41.9,12 48.4,21 16.9,24 2.4,50 -6.5,70 -4.8,10 -4.8,24 -6.4,34 -3.3,17 -11.3,33 -8.9,50"
id="path11116-9-7-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccacacaccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-90-1-8"
d="m 301.17215,374.3306 c 11.3,9 50.8,6 51.6,-1"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<g
id="text6934-2-9-4-0-5-4"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path12402"
d="m 310.65537,332.03674 6.07957,0 0,1.20458 -4.64825,0 0,3.11772 4.19476,0 0,1.20458 -4.19476,0 0,5.05213 -1.43132,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path12404"
d="m 322.50982,335.89847 c -0.14644,-0.085 -0.30705,-0.14643 -0.48183,-0.18423 -0.17006,-0.0425 -0.35902,-0.0638 -0.56686,-0.0638 -0.73692,10e-6 -1.30378,0.24092 -1.70058,0.72274 -0.39208,0.47712 -0.58812,1.16443 -0.58811,2.06196 l 0,4.18058 -1.31087,0 0,-7.93603 1.31087,0 0,1.23292 c 0.27398,-0.48182 0.63062,-0.83847 1.06994,-1.06995 0.43932,-0.23618 0.97311,-0.35427 1.60138,-0.35428 0.0898,10e-6 0.18895,0.007 0.2976,0.0213 0.10864,0.009 0.2291,0.026 0.36137,0.0496 l 0.007,1.33921"
inkscape:connector-curvature="0" />
<path
id="path12406"
d="m 326.65498,335.59378 c -0.69913,1e-5 -1.25182,0.27399 -1.65806,0.82195 -0.40626,0.54324 -0.60938,1.28961 -0.60938,2.23909 0,0.9495 0.20076,1.69822 0.60229,2.24618 0.40625,0.54325 0.9613,0.81486 1.66515,0.81486 0.6944,0 1.24472,-0.27398 1.65098,-0.82194 0.40624,-0.54796 0.60936,-1.29433 0.60937,-2.2391 -10e-6,-0.94003 -0.20313,-1.68404 -0.60937,-2.23201 -0.40626,-0.55268 -0.95658,-0.82902 -1.65098,-0.82903 m 0,-1.10537 c 1.13371,1e-5 2.02415,0.36846 2.67132,1.10537 0.64716,0.73693 0.97074,1.75727 0.97075,3.06104 -1e-5,1.29906 -0.32359,2.3194 -0.97075,3.06104 -0.64717,0.73692 -1.53761,1.10538 -2.67132,1.10538 -1.13845,0 -2.03125,-0.36846 -2.67841,-1.10538 -0.64244,-0.74164 -0.96366,-1.76198 -0.96366,-3.06104 0,-1.30377 0.32122,-2.32411 0.96366,-3.06104 0.64716,-0.73691 1.53996,-1.10536 2.67841,-1.10537"
inkscape:connector-curvature="0" />
<path
id="path12408"
d="m 339.04794,337.82579 0,4.78996 -1.30377,0 0,-4.74744 c -10e-6,-0.75109 -0.14645,-1.31322 -0.43932,-1.68641 -0.29288,-0.37318 -0.7322,-0.55977 -1.31795,-0.55977 -0.70385,0 -1.2589,0.22438 -1.66515,0.67314 -0.40625,0.44877 -0.60937,1.06051 -0.60937,1.83521 l 0,4.48527 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.31177,-0.4771 0.67786,-0.83375 1.09829,-1.06995 0.42514,-0.23618 0.91405,-0.35427 1.46675,-0.35428 0.91169,1e-5 1.60137,0.28343 2.06903,0.85029 0.46766,0.56214 0.70148,1.39117 0.70149,2.48709"
inkscape:connector-curvature="0" />
<path
id="path12410"
d="m 342.95219,332.42646 0,2.25326 2.68549,0 0,1.01326 -2.68549,0 0,4.30813 c -10e-6,0.64717 0.0874,1.06287 0.26217,1.24709 0.1795,0.18424 0.54087,0.27635 1.08412,0.27635 l 1.3392,0 0,1.0912 -1.3392,0 c -1.00618,0 -1.70058,-0.18659 -2.08321,-0.55977 -0.38263,-0.37791 -0.57395,-1.06286 -0.57395,-2.05487 l 0,-4.30813 -0.95657,0 0,-1.01326 0.95657,0 0,-2.25326 1.31087,0"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-4-0-4"
d="m 260.87215,458.3306 c 15.3,0 12.9,-20 66.9,-22 56.4,0 50,22 69.3,22"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-7-5"
d="m 263.27215,468.3306 129.8,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-68-7"
d="m 276.17215,546.3306 104,1"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 264.87215,487.3306 124.2,1"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4866-8"
d="m 364.87215,468.3306 -37.1,0"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
transform="matrix(0.8062,0,0,0.8062,19.77215,-1761.6694)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-5-8"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-8-9"
y="481.70901"
x="343.5965"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="481.70901"
x="343.5965"
id="tspan8486-3-0-4-3-7-3-4"
sodipodi:role="line">5</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,183 @@
<?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="163.80922"
height="217.79381"
id="svg12482"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 136">
<defs
id="defs12484" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="195.79123"
inkscape:cy="100.33018"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata12487">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-226.66682,-363.46524)">
<g
id="g12559">
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 337.87215,492.7591 14,14"
id="path8279-7-5-88"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 351.87215,492.7591 -14,14"
id="path8279-7-5-6-14"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4-4-7-2"
d="m 377.87215,485.7591 c -4.8,-2 -29,6 -3.2,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3-1-1-8"
d="m 237.67215,484.7591 c 4,-1 29.8,6 4,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 256.17215,579.7591 c 2.4,-17 -5.6,-33 -8.9,-50 -2.4,-10 -1.6,-24 -6.4,-34 -8.1,-21 -20.2,-50 -6.5,-71 6.5,-8 29.9,-9 46,-18 3.2,-2 4,-7 4.8,-11 0.8,-4 -0.8,-14 -0.8,-14 0,0 15.3,5 23.4,5 7.3,-1 21,-6 21,-6 0,0 -1.7,8 -0.9,12 0.9,4 2.5,10 4.9,12 16.1,9 41.9,12 48.4,21 16.9,24 2.4,50 -6.5,70 -4.8,10 -4.8,24 -6.4,34 -3.3,17 -11.3,33 -8.9,50"
id="path11116-9-7-3-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccacacaccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-90-1-42"
d="m 281.17215,405.7591 c 11.3,9 50.8,6 51.6,-1"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<g
id="text6934-2-9-4-0-5-33"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path12549"
d="m 290.66535,363.46524 6.07957,0 0,1.20457 -4.64825,0 0,3.11773 4.19476,0 0,1.20458 -4.19476,0 0,5.05213 -1.43132,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path12551"
d="m 302.5198,367.32697 c -0.14644,-0.085 -0.30705,-0.14643 -0.48183,-0.18423 -0.17006,-0.0425 -0.35902,-0.0638 -0.56686,-0.0638 -0.73692,0 -1.30378,0.24092 -1.70058,0.72274 -0.39208,0.47711 -0.58812,1.16443 -0.58811,2.06195 l 0,4.18059 -1.31087,0 0,-7.93603 1.31087,0 0,1.23292 c 0.27397,-0.48182 0.63062,-0.83847 1.06994,-1.06995 0.43931,-0.23618 0.97311,-0.35428 1.60138,-0.35429 0.0897,10e-6 0.18895,0.007 0.2976,0.0213 0.10864,0.009 0.2291,0.026 0.36137,0.0496 l 0.007,1.33921"
inkscape:connector-curvature="0" />
<path
id="path12553"
d="m 306.66496,367.02228 c -0.69913,10e-6 -1.25182,0.27399 -1.65806,0.82195 -0.40626,0.54324 -0.60938,1.28961 -0.60938,2.23909 0,0.94949 0.20076,1.69822 0.60229,2.24618 0.40625,0.54324 0.96129,0.81486 1.66515,0.81486 0.6944,0 1.24472,-0.27398 1.65098,-0.82194 0.40624,-0.54797 0.60936,-1.29433 0.60937,-2.2391 -1e-5,-0.94004 -0.20313,-1.68404 -0.60937,-2.23201 -0.40626,-0.55268 -0.95658,-0.82902 -1.65098,-0.82903 m 0,-1.10538 c 1.13371,10e-6 2.02415,0.36847 2.67132,1.10538 0.64716,0.73692 0.97074,1.75727 0.97075,3.06104 -10e-6,1.29906 -0.32359,2.3194 -0.97075,3.06104 -0.64717,0.73692 -1.53761,1.10538 -2.67132,1.10538 -1.13845,0 -2.03125,-0.36846 -2.67841,-1.10538 -0.64244,-0.74164 -0.96366,-1.76198 -0.96366,-3.06104 0,-1.30377 0.32122,-2.32412 0.96366,-3.06104 0.64716,-0.73691 1.53996,-1.10537 2.67841,-1.10538"
inkscape:connector-curvature="0" />
<path
id="path12555"
d="m 319.05792,369.25429 0,4.78996 -1.30377,0 0,-4.74745 c -10e-6,-0.75108 -0.14645,-1.31321 -0.43932,-1.6864 -0.29288,-0.37318 -0.7322,-0.55977 -1.31795,-0.55978 -0.70385,1e-5 -1.2589,0.22439 -1.66515,0.67315 -0.40625,0.44877 -0.60937,1.0605 -0.60937,1.83521 l 0,4.48527 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.31177,-0.4771 0.67786,-0.83375 1.09829,-1.06995 0.42514,-0.23618 0.91405,-0.35428 1.46675,-0.35429 0.91169,10e-6 1.60137,0.28344 2.06903,0.85029 0.46765,0.56215 0.70148,1.39118 0.70149,2.4871"
inkscape:connector-curvature="0" />
<path
id="path12557"
d="m 322.96216,363.85495 0,2.25327 2.6855,0 0,1.01326 -2.6855,0 0,4.30813 c 0,0.64717 0.0874,1.06286 0.26218,1.24709 0.1795,0.18423 0.54087,0.27635 1.08412,0.27635 l 1.3392,0 0,1.0912 -1.3392,0 c -1.00618,0 -1.70058,-0.18659 -2.08321,-0.55977 -0.38263,-0.37791 -0.57395,-1.06286 -0.57395,-2.05487 l 0,-4.30813 -0.95657,0 0,-1.01326 0.95657,0 0,-2.25327 1.31086,0"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-4-0-1"
d="m 240.87215,489.7591 c 15.3,0 12.9,-20 66.9,-22 56.4,0 50,22 69.3,22"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-7-60"
d="m 243.27215,499.7591 129.8,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-68-2"
d="m 256.17215,577.7591 104,1"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 244.87215,518.7591 124.2,1"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4864-52"
d="m 333.57215,405.7591 12.1,95 0,0"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="ccc" />
<path
transform="matrix(0.8062,0,0,0.8062,11.90215,-1784.2409)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-5-2"
y="458.6463"
x="335.56244"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="458.6463"
x="335.56244"
id="tspan8486-3-0-4-3-7-4-08"
sodipodi:role="line">6</tspan></text>
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#7dc832;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 344.87215,500.7591 0.2,78"
id="path4864-8-7"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,207 @@
<?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="163.7149"
height="216.90538"
id="svg12794"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 142">
<defs
id="defs12796" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="6.4917006"
inkscape:cy="126.02134"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata12799">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-166.70559,-341.09121)">
<g
id="g12880">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279-7-5-9"
d="m 269.92202,469.419 14,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279-7-5-6-3"
d="m 283.92202,469.419 -14,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<g
id="text6934-2-9-4-0-5-6-4"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path12870"
d="m 230.89628,341.09121 6.07957,0 0,1.20458 -4.64825,0 0,3.11773 4.19476,0 0,1.20457 -4.19476,0 0,5.05214 -1.43132,0 0,-10.57902"
inkscape:connector-curvature="0" />
<path
id="path12872"
d="m 242.75073,344.95294 c -0.14645,-0.085 -0.30706,-0.14643 -0.48183,-0.18423 -0.17007,-0.0425 -0.35902,-0.0638 -0.56686,-0.0638 -0.73692,1e-5 -1.30378,0.24092 -1.70058,0.72275 -0.39208,0.47711 -0.58812,1.16443 -0.58812,2.06195 l 0,4.18059 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.27398,-0.48183 0.63063,-0.83848 1.06995,-1.06995 0.43931,-0.23619 0.9731,-0.35428 1.60138,-0.35429 0.0897,1e-5 0.18894,0.007 0.2976,0.0213 0.10864,0.009 0.2291,0.026 0.36137,0.0496 l 0.007,1.3392"
inkscape:connector-curvature="0" />
<path
id="path12874"
d="m 246.89589,344.64826 c -0.69914,0 -1.25182,0.27399 -1.65807,0.82194 -0.40625,0.54325 -0.60937,1.28961 -0.60937,2.2391 0,0.94949 0.20076,1.69822 0.60229,2.24618 0.40624,0.54324 0.96129,0.81486 1.66515,0.81486 0.69439,0 1.24472,-0.27398 1.65097,-0.82195 0.40625,-0.54796 0.60937,-1.29432 0.60938,-2.23909 -1e-5,-0.94004 -0.20313,-1.68404 -0.60938,-2.23201 -0.40625,-0.55268 -0.95658,-0.82903 -1.65097,-0.82903 m 0,-1.10538 c 1.13371,10e-6 2.02415,0.36847 2.67132,1.10538 0.64716,0.73692 0.97074,1.75727 0.97075,3.06104 -1e-5,1.29905 -0.32359,2.3194 -0.97075,3.06104 -0.64717,0.73692 -1.53761,1.10537 -2.67132,1.10537 -1.13845,0 -2.03125,-0.36845 -2.67842,-1.10537 -0.64244,-0.74164 -0.96366,-1.76199 -0.96366,-3.06104 0,-1.30377 0.32122,-2.32412 0.96366,-3.06104 0.64717,-0.73691 1.53997,-1.10537 2.67842,-1.10538"
inkscape:connector-curvature="0" />
<path
id="path12876"
d="m 259.28885,346.88027 0,4.78996 -1.30378,0 0,-4.74745 c 0,-0.75108 -0.14644,-1.31322 -0.43931,-1.68641 -0.29289,-0.37317 -0.7322,-0.55976 -1.31795,-0.55977 -0.70386,10e-6 -1.25891,0.22439 -1.66515,0.67315 -0.40625,0.44876 -0.60938,1.0605 -0.60938,1.8352 l 0,4.48528 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.31177,-0.4771 0.67787,-0.83375 1.09829,-1.06995 0.42514,-0.23619 0.91406,-0.35428 1.46675,-0.35429 0.9117,10e-6 1.60137,0.28344 2.06904,0.85029 0.46765,0.56214 0.70148,1.39117 0.70149,2.4871"
inkscape:connector-curvature="0" />
<path
id="path12878"
d="m 263.19309,341.48093 0,2.25327 2.6855,0 0,1.01326 -2.6855,0 0,4.30813 c 0,0.64716 0.0874,1.06286 0.26217,1.24709 0.17951,0.18423 0.54088,0.27634 1.08412,0.27634 l 1.33921,0 0,1.09121 -1.33921,0 c -1.00618,0 -1.70058,-0.18659 -2.08321,-0.55978 -0.38263,-0.3779 -0.57394,-1.06286 -0.57394,-2.05486 l 0,-4.30813 -0.95658,0 0,-1.01326 0.95658,0 0,-2.25327 1.31086,0"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4-4-7-0-6"
d="m 317.92202,463.419 c -4.9,-2 -29,5 -3.2,-66"
style="fill:none;stroke:#dba981;stroke-width:4.41160011;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3-1-1-0-4"
d="m 177.62202,462.419 c 4,-2 29.8,6 4,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 196.12202,556.419 c 2.5,-17 -5.6,-32 -8.8,-49 -2.4,-10 -1.6,-24 -6.5,-35 -8,-21 -20.1,-50 -6.4,-71 6.4,-8 29.8,-8 45.9,-17 3.3,-3 4.1,-8 4.9,-12 0.8,-4 -0.8,-13 -0.8,-13 0,0 15.3,5 23.3,5 7.3,-1 21,-6 21,-6 0,0 -1.6,8 -0.8,12 0.8,4 2.4,10 4.8,11 16.2,10 42,12 48.4,21 16.9,24 2.4,50 -6.4,70 -4.9,11 -4.9,25 -6.5,35 -3.2,17 -11.3,32 -8.9,49"
id="path11116-9-7-3-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccacacaccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-90-1-9-2"
d="m 221.12202,383.419 c 11.3,9 50.8,6 51.6,-2"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-4-0-6-8"
d="m 180.82202,467.419 c 15.3,0 12.9,-20 66.9,-22 56.5,-1 50,22 69.4,22"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-7-6-5"
d="m 183.22202,476.419 129.8,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-68-4-2"
d="m 196.12202,555.419 104,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 184.92202,496.419 124.1,1"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-6-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4864-5-5"
d="m 313.92202,396.419 -37.1,80"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-8-6"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-36.77798,-1790.581)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="287.00568"
y="452.90387"
id="text8484-0-0-0-8-7-5-8-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-1-2"
x="287.00568"
y="452.90387">7</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8215"
d="m 276.62202,476.419 -21.7,79"
style="fill:none;stroke:#000000;stroke-width:2.41849995;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
transform="matrix(0.8062,0,0,0.8062,-58.97798,-1723.581)"
sodipodi:open="true"
sodipodi:end="6.278"
sodipodi:start="0"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="2776"
sodipodi:cx="406"
id="path19730-2-8-6-4"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text8484-0-0-0-8-7-5-8-5-5"
y="519.60553"
x="264.57611"
style="font-size:14.51089954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
xml:space="preserve"><tspan
y="519.60553"
x="264.57611"
id="tspan8486-3-0-4-3-7-4-1-2-2"
sodipodi:role="line">8</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,201 @@
<?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="163.71652"
height="216.82773"
id="svg12632"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новий документ 139">
<defs
id="defs12634" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="172.70516"
inkscape:cy="135.8852"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1855"
inkscape:window-height="1056"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata12637">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-220.99888,-286.80542)">
<g
id="g12718">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279-7-5-87"
d="m 332.70773,416.1332 14,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279-7-5-6-4"
d="m 346.70773,416.1332 -14,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279-7-5-4"
d="m 258.10773,416.1332 14,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8279-7-5-6-10"
d="m 272.10773,416.1332 -14,14"
style="fill:none;stroke:#dba981;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<g
id="text6934-2-9-4-0-5-6"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L">
<path
id="path12708"
d="m 285.18199,286.80542 6.07956,0 0,1.20457 -4.64824,0 0,3.11773 4.19475,0 0,1.20458 -4.19475,0 0,5.05213 -1.43132,0 0,-10.57901"
inkscape:connector-curvature="0" />
<path
id="path12710"
d="m 297.03643,290.66715 c -0.14644,-0.085 -0.30705,-0.14644 -0.48183,-0.18423 -0.17006,-0.0425 -0.35901,-0.0638 -0.56686,-0.0638 -0.73692,0 -1.30378,0.24092 -1.70058,0.72274 -0.39208,0.47711 -0.58812,1.16443 -0.58811,2.06195 l 0,4.18059 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.27398,-0.48183 0.63063,-0.83847 1.06994,-1.06995 0.43932,-0.23618 0.97311,-0.35428 1.60138,-0.35429 0.0898,1e-5 0.18895,0.007 0.2976,0.0213 0.10865,0.009 0.2291,0.026 0.36138,0.0496 l 0.007,1.33921"
inkscape:connector-curvature="0" />
<path
id="path12712"
d="m 301.18159,290.36246 c -0.69913,10e-6 -1.25182,0.27399 -1.65806,0.82195 -0.40625,0.54324 -0.60938,1.28961 -0.60938,2.23909 0,0.94949 0.20076,1.69822 0.60229,2.24618 0.40625,0.54324 0.9613,0.81486 1.66515,0.81486 0.6944,0 1.24472,-0.27398 1.65098,-0.82195 0.40624,-0.54796 0.60937,-1.29432 0.60937,-2.23909 0,-0.94004 -0.20313,-1.68404 -0.60937,-2.23201 -0.40626,-0.55268 -0.95658,-0.82902 -1.65098,-0.82903 m 0,-1.10538 c 1.13371,1e-5 2.02415,0.36847 2.67133,1.10538 0.64715,0.73692 0.97073,1.75727 0.97074,3.06104 -1e-5,1.29906 -0.32359,2.3194 -0.97074,3.06104 -0.64718,0.73692 -1.53762,1.10538 -2.67133,1.10538 -1.13845,0 -2.03125,-0.36846 -2.67841,-1.10538 -0.64244,-0.74164 -0.96366,-1.76198 -0.96366,-3.06104 0,-1.30377 0.32122,-2.32412 0.96366,-3.06104 0.64716,-0.73691 1.53996,-1.10537 2.67841,-1.10538"
inkscape:connector-curvature="0" />
<path
id="path12714"
d="m 313.57455,292.59447 0,4.78996 -1.30377,0 0,-4.74745 c -10e-6,-0.75108 -0.14645,-1.31322 -0.43932,-1.6864 -0.29288,-0.37318 -0.7322,-0.55977 -1.31795,-0.55978 -0.70385,10e-6 -1.2589,0.22439 -1.66515,0.67315 -0.40625,0.44877 -0.60937,1.0605 -0.60937,1.83521 l 0,4.48527 -1.31086,0 0,-7.93603 1.31086,0 0,1.23292 c 0.31177,-0.4771 0.67787,-0.83375 1.09829,-1.06995 0.42514,-0.23618 0.91406,-0.35428 1.46675,-0.35429 0.91169,1e-5 1.60137,0.28344 2.06904,0.85029 0.46765,0.56215 0.70148,1.39118 0.70148,2.4871"
inkscape:connector-curvature="0" />
<path
id="path12716"
d="m 317.4788,287.19513 0,2.25327 2.68549,0 0,1.01326 -2.68549,0 0,4.30813 c -10e-6,0.64717 0.0874,1.06286 0.26217,1.24709 0.1795,0.18423 0.54087,0.27635 1.08412,0.27635 l 1.3392,0 0,1.0912 -1.3392,0 c -1.00618,0 -1.70058,-0.18659 -2.08321,-0.55977 -0.38263,-0.37791 -0.57395,-1.06286 -0.57395,-2.05487 l 0,-4.30813 -0.95657,0 0,-1.01326 0.95657,0 0,-2.25327 1.31087,0"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-1-4-6-3-4-4-4-4-7-0"
d="m 372.20773,409.1332 c -4.9,-2 -29,5 -3.2,-66"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8584-6-7-8-0-3-1-3-3-1-1-0"
d="m 231.90773,408.1332 c 4,-2 29.8,6 4,-65"
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#dba981;stroke-width:2.9999001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250.40773,502.1332 c 2.5,-17 -5.6,-32 -8.8,-49 -2.4,-10 -1.6,-24 -6.5,-35 -8,-21 -20.1,-50 -6.4,-71 6.4,-8 29.8,-8 45.9,-17 3.3,-3 4.1,-8 4.9,-12 0.8,-4 -0.8,-13 -0.8,-13 0,0 15.3,5 23.3,5 7.3,-1 21,-6 21,-6 0,0 -1.6,8 -0.8,12 0.8,4 2.4,10 4.8,11 16.2,10 42,12 48.4,21 16.9,24 2.4,50 -6.4,70 -4.9,11 -4.9,25 -6.5,35 -3.2,17 -11.3,32 -8.9,49"
id="path11116-9-7-3-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccacacaccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-90-1-9"
d="m 275.40773,329.1332 c 11.3,9 50.8,6 51.6,-2"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-4-0-6"
d="m 235.10773,413.1332 c 15.3,0 12.9,-20 66.9,-22 56.5,-1 50,22 69.4,22"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-5-7-6"
d="m 237.50773,422.1332 129.8,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3992-4-77-9-5-7-1-2-9-8-8-6-68-4"
d="m 250.40773,501.1332 104,0"
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#dba981;stroke-width:1.20039999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.6013, 1.2004;stroke-dashoffset:0"
d="m 239.20773,442.1332 124.1,1"
id="path3992-4-77-9-5-7-1-2-9-8-5-4-1-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path4864-5"
d="m 327.80773,329.1332 12.1,94 0,0"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="ccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path19854"
d="m 265.80773,423.1332 c 8,-93 8.8,-95 8.8,-95"
style="fill:none;stroke:#000000;stroke-width:2.41860008;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path19876"
d="m 274.60773,327.1332 c 0,-4 53.2,-6 53.2,1 l 0,0"
style="fill:none;stroke:#aaaaaa;stroke-width:1.61240005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4.8372, 1.6124;stroke-dashoffset:0" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;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"
id="path19730-2-8"
sodipodi:cx="406"
sodipodi:cy="2776"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 421,2776 c 0,8.2843 -6.71573,15 -15,15 -8.28427,0 -15,-6.7157 -15,-15 0,-8.2843 6.71573,-15 15,-15 8.25391,0 14.957,6.6684 14.9998,14.9222"
sodipodi:start="0"
sodipodi:end="6.278"
sodipodi:open="true"
transform="matrix(0.8062,0,0,0.8062,-58.29227,-1861.8668)" />
<text
xml:space="preserve"
style="font-size:14.51159954px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Standard Symbols L;-inkscape-font-specification:Standard Symbols L"
x="265.98889"
y="380.99307"
id="text8484-0-0-0-8-7-5-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8486-3-0-4-3-7-4-1"
x="265.98889"
y="380.99307">9</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Some files were not shown because too many files have changed in this diff Show more