Options dialog

This commit is contained in:
Jakub Melka
2019-09-06 19:07:52 +02:00
parent 135fa6fc86
commit 4058a25bab
14 changed files with 1646 additions and 75 deletions

View File

@ -142,6 +142,12 @@ private:
bool m_oldValue;
};
enum class RendererEngine
{
Software,
OpenGL
};
} // namespace pdf
#endif // PDFGLOBAL_H

View File

@ -34,13 +34,18 @@ LIBS += -lPDFForQtLib
SOURCES += \
main.cpp \
pdfviewermainwindow.cpp
pdfviewermainwindow.cpp \
pdfviewersettings.cpp \
pdfviewersettingsdialog.cpp
HEADERS += \
pdfviewermainwindow.h
pdfviewermainwindow.h \
pdfviewersettings.h \
pdfviewersettingsdialog.h
FORMS += \
pdfviewermainwindow.ui
pdfviewermainwindow.ui \
pdfviewersettingsdialog.ui
CONFIG += force_debug_info
@ -48,3 +53,6 @@ application.files = $$DESTDIR/PdfForQtViewer.exe
application.path = $$DESTDIR/install
INSTALLS += application
RESOURCES += \
pdfforqtviewer.qrc

View File

@ -0,0 +1,7 @@
<RCC>
<qresource prefix="/">
<file>resources/engine.svg</file>
<file>resources/rendering.svg</file>
<file>resources/shading.svg</file>
</qresource>
</RCC>

View File

@ -18,6 +18,8 @@
#include "pdfviewermainwindow.h"
#include "ui_pdfviewermainwindow.h"
#include "pdfviewersettingsdialog.h"
#include "pdfdocumentreader.h"
#include "pdfvisitor.h"
#include "pdfstreamfilters.h"
@ -452,50 +454,10 @@ void PDFViewerMainWindow::on_actionGenerateCMAPrepository_triggered()
}
}
void PDFViewerSettings::readSettings(QSettings& settings)
void PDFViewerMainWindow::on_actionOptions_triggered()
{
settings.beginGroup("ViewerSettings");
m_directory = settings.value("defaultDirectory", QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation)).toString();
m_features = static_cast<pdf::PDFRenderer::Features>(settings.value("rendererFeatures", static_cast<int>(pdf::PDFRenderer::getDefaultFeatures())).toInt());
settings.endGroup();
emit settingsChanged();
}
void PDFViewerSettings::writeSettings(QSettings& settings)
{
settings.beginGroup("ViewerSettings");
settings.setValue("defaultDirectory", m_directory);
settings.setValue("rendererFeatures", static_cast<int>(m_features));
settings.endGroup();
}
QString PDFViewerSettings::getDirectory() const
{
return m_directory;
}
void PDFViewerSettings::setDirectory(const QString& directory)
{
if (m_directory != directory)
{
m_directory = directory;
emit settingsChanged();
}
}
pdf::PDFRenderer::Features PDFViewerSettings::getFeatures() const
{
return m_features;
}
void PDFViewerSettings::setFeatures(const pdf::PDFRenderer::Features& features)
{
if (m_features != features)
{
m_features = features;
emit settingsChanged();
}
PDFViewerSettingsDialog dialog(this);
dialog.exec();
}
} // namespace pdfviewer

View File

@ -21,6 +21,8 @@
#include "pdfcatalog.h"
#include "pdfrenderer.h"
#include "pdfviewersettings.h"
#include <QTreeView>
#include <QMainWindow>
#include <QSharedPointer>
@ -42,35 +44,6 @@ class PDFOptionalContentTreeItemModel;
namespace pdfviewer
{
class PDFViewerSettings : public QObject
{
Q_OBJECT
public:
inline explicit PDFViewerSettings(QObject* parent) :
QObject(parent),
m_features(pdf::PDFRenderer::getDefaultFeatures())
{
}
void readSettings(QSettings& settings);
void writeSettings(QSettings& settings);
QString getDirectory() const;
void setDirectory(const QString& directory);
pdf::PDFRenderer::Features getFeatures() const;
void setFeatures(const pdf::PDFRenderer::Features& features);
signals:
void settingsChanged();
private:
pdf::PDFRenderer::Features m_features;
QString m_directory;
};
class PDFViewerMainWindow : public QMainWindow
{
Q_OBJECT
@ -91,6 +64,8 @@ private slots:
void on_actionRendering_Errors_triggered();
void on_actionGenerateCMAPrepository_triggered();
void on_actionOptions_triggered();
private:
void onActionOpenTriggered();
void onActionCloseTriggered();

View File

@ -68,6 +68,8 @@
<string>Tools</string>
</property>
<addaction name="actionRendering_Errors"/>
<addaction name="separator"/>
<addaction name="actionOptions"/>
</widget>
<widget class="QMenu" name="menuDeveloper">
<property name="title">
@ -208,6 +210,11 @@
<string>Ignore Optional Content Settings</string>
</property>
</action>
<action name="actionOptions">
<property name="text">
<string>Options...</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>

View File

@ -0,0 +1,84 @@
#include "pdfviewersettings.h"
namespace pdfviewer
{
void PDFViewerSettings::readSettings(QSettings& settings)
{
settings.beginGroup("ViewerSettings");
m_settings.m_directory = settings.value("defaultDirectory", QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation)).toString();
m_settings.m_features = static_cast<pdf::PDFRenderer::Features>(settings.value("rendererFeatures", static_cast<int>(pdf::PDFRenderer::getDefaultFeatures())).toInt());
m_settings.m_rendererEngine = static_cast<pdf::RendererEngine>(settings.value("renderingEngine", static_cast<int>(pdf::RendererEngine::OpenGL)).toInt());
m_settings.m_rendererSamples = settings.value("rendererSamples", 16).toInt();
settings.endGroup();
emit settingsChanged();
}
void PDFViewerSettings::writeSettings(QSettings& settings)
{
settings.beginGroup("ViewerSettings");
settings.setValue("defaultDirectory", m_settings.m_directory);
settings.setValue("rendererFeatures", static_cast<int>(m_settings.m_features));
settings.setValue("renderingEngine", static_cast<int>(m_settings.m_rendererEngine));
settings.setValue("rendererSamples", m_settings.m_rendererSamples);
settings.endGroup();
}
QString PDFViewerSettings::getDirectory() const
{
return m_settings.m_directory;
}
void PDFViewerSettings::setDirectory(const QString& directory)
{
if (m_settings.m_directory != directory)
{
m_settings.m_directory = directory;
emit settingsChanged();
}
}
pdf::PDFRenderer::Features PDFViewerSettings::getFeatures() const
{
return m_settings.m_features;
}
void PDFViewerSettings::setFeatures(const pdf::PDFRenderer::Features& features)
{
if (m_settings.m_features != features)
{
m_settings.m_features = features;
emit settingsChanged();
}
}
pdf::RendererEngine PDFViewerSettings::getRendererEngine() const
{
return m_settings.m_rendererEngine;
}
void PDFViewerSettings::setRendererEngine(pdf::RendererEngine rendererEngine)
{
if (m_settings.m_rendererEngine != rendererEngine)
{
m_settings.m_rendererEngine = rendererEngine;
emit settingsChanged();
}
}
int PDFViewerSettings::getRendererSamples() const
{
return m_settings.m_rendererSamples;
}
void PDFViewerSettings::setRendererSamples(int rendererSamples)
{
if (m_settings.m_rendererSamples != rendererSamples)
{
m_settings.m_rendererSamples = rendererSamples;
emit settingsChanged();
}
}
} // namespace pdfviewer

View File

@ -0,0 +1,63 @@
#ifndef PDFVIEWERSETTINGS_H
#define PDFVIEWERSETTINGS_H
#include "pdfrenderer.h"
#include <QObject>
namespace pdfviewer
{
class PDFViewerSettings : public QObject
{
Q_OBJECT
public:
inline explicit PDFViewerSettings(QObject* parent) :
QObject(parent)
{
}
void readSettings(QSettings& settings);
void writeSettings(QSettings& settings);
QString getDirectory() const;
void setDirectory(const QString& directory);
pdf::PDFRenderer::Features getFeatures() const;
void setFeatures(const pdf::PDFRenderer::Features& features);
pdf::RendererEngine getRendererEngine() const;
void setRendererEngine(pdf::RendererEngine rendererEngine);
int getRendererSamples() const;
void setRendererSamples(int rendererSamples);
signals:
void settingsChanged();
private:
struct Settings
{
Settings() :
m_features(pdf::PDFRenderer::getDefaultFeatures()),
m_rendererEngine(pdf::RendererEngine::OpenGL),
m_rendererSamples(16)
{
}
pdf::PDFRenderer::Features m_features;
QString m_directory;
pdf::RendererEngine m_rendererEngine;
int m_rendererSamples;
};
Settings m_settings;
};
} // namespace pdfviewer
#endif // PDFVIEWERSETTINGS_H

View File

@ -0,0 +1,57 @@
#include "pdfviewersettingsdialog.h"
#include "ui_pdfviewersettingsdialog.h"
#include <QListWidgetItem>
namespace pdfviewer
{
PDFViewerSettingsDialog::PDFViewerSettingsDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::PDFViewerSettingsDialog)
{
ui->setupUi(this);
new QListWidgetItem(QIcon(":/resources/engine.svg"), tr("Engine"), ui->optionsPagesWidget, EngineSettings);
new QListWidgetItem(QIcon(":/resources/rendering.svg"), tr("Rendering"), ui->optionsPagesWidget, RenderingSettings);
new QListWidgetItem(QIcon(":/resources/shading.svg"), tr("Shading"), ui->optionsPagesWidget, ShadingSettings);
ui->renderingEngineComboBox->addItem(tr("Software"), static_cast<int>(pdf::RendererEngine::Software));
ui->renderingEngineComboBox->addItem(tr("Hardware accelerated (OpenGL)"), static_cast<int>(pdf::RendererEngine::OpenGL));
for (int i : { 1, 2, 4, 8, 16 })
{
ui->multisampleAntialiasingSamplesCountComboBox->addItem(QString::number(i));
}
}
PDFViewerSettingsDialog::~PDFViewerSettingsDialog()
{
delete ui;
}
void PDFViewerSettingsDialog::on_optionsPagesWidget_currentItemChanged(QListWidgetItem* current, QListWidgetItem* previous)
{
Q_UNUSED(previous);
switch (current->type())
{
case EngineSettings:
ui->stackedWidget->setCurrentWidget(ui->enginePage);
break;
case RenderingSettings:
ui->stackedWidget->setCurrentWidget(ui->renderingPage);
break;
case ShadingSettings:
ui->stackedWidget->setCurrentWidget(ui->shadingPage);
break;
default:
Q_ASSERT(false);
break;
}
}
} // namespace pdfviewer

View File

@ -0,0 +1,42 @@
#ifndef PDFVIEWERSETTINGSDIALOG_H
#define PDFVIEWERSETTINGSDIALOG_H
#include "pdfviewersettings.h"
#include <QDialog>
class QListWidgetItem;
namespace Ui
{
class PDFViewerSettingsDialog;
}
namespace pdfviewer
{
class PDFViewerSettingsDialog : public QDialog
{
Q_OBJECT
public:
explicit PDFViewerSettingsDialog(QWidget* parent);
virtual ~PDFViewerSettingsDialog() override;
enum Page : int
{
EngineSettings,
RenderingSettings,
ShadingSettings
};
private slots:
void on_optionsPagesWidget_currentItemChanged(QListWidgetItem* current, QListWidgetItem* previous);
private:
Ui::PDFViewerSettingsDialog* ui;
};
} // namespace pdfviewer
#endif // PDFVIEWERSETTINGSDIALOG_H

View File

@ -0,0 +1,313 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PDFViewerSettingsDialog</class>
<widget class="QDialog" name="PDFViewerSettingsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>720</width>
<height>538</height>
</rect>
</property>
<property name="windowTitle">
<string>Options</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout" stretch="1,3">
<item>
<widget class="QListWidget" name="optionsPagesWidget">
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
</widget>
</item>
<item>
<widget class="QStackedWidget" name="stackedWidget">
<property name="currentIndex">
<number>1</number>
</property>
<widget class="QWidget" name="enginePage">
<layout class="QVBoxLayout" name="enginePageLayout">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QGroupBox" name="engineSettingsGroupBox">
<property name="title">
<string>Engine Settings</string>
</property>
<layout class="QVBoxLayout" name="engineSettingsGroupBoxLayout">
<item>
<layout class="QGridLayout" name="engineSettingsGridLayout">
<item row="0" column="0">
<widget class="QLabel" name="renderingEngineLabel">
<property name="text">
<string>Rendering engine</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QComboBox" name="renderingEngineComboBox"/>
</item>
<item row="1" column="1">
<widget class="QCheckBox" name="multisampleAntialiasingCheckBox">
<property name="text">
<string>Enable</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="multisampleAntialiasingLabel">
<property name="text">
<string>Multisample antialiasing (MSAA)</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="multisampleAntiailasingSamplesLabel">
<property name="text">
<string>MSAA Samples count</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QComboBox" name="multisampleAntialiasingSamplesCountComboBox"/>
</item>
</layout>
</item>
<item>
<widget class="QLabel" name="engineInfoLabel">
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Select rendering method according to your needs. &lt;span style=&quot; font-weight:600;&quot;&gt;Software rendering&lt;/span&gt; is much slower than hardware accelerated rendering using &lt;span style=&quot; font-weight:600;&quot;&gt;OpenGL rendering&lt;/span&gt;, but it works when OpenGL is not available at your platform. OpenGL rendering is selected as default and is recommended.&lt;/p&gt;&lt;p&gt;OpenGL rendering uses&lt;span style=&quot; font-weight:600;&quot;&gt; multisample antialiasing (MSAA)&lt;/span&gt;, which provides good quality antialiasing. You can turn this feature on or off, but without antialiasing, bad quality image can occur. Samples count affect how much samples per pixel are considered to determine pixel color. It can be a value 1, 2, 4, 8, and 16. Most modern GPUs support at least value 8. Lower this value, if your GPU doesn't support the desired sample count.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<spacer name="engineVerticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="renderingPage">
<layout class="QVBoxLayout" name="renderingPageLayout">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QGroupBox" name="renderingSettingsGroupBox">
<property name="title">
<string>Rendering Settings</string>
</property>
<layout class="QVBoxLayout" name="renderingSettingsGroupBoxLayout">
<item>
<layout class="QGridLayout" name="renderingSettingsGridLayout">
<item row="2" column="0">
<widget class="QLabel" name="smoothPicturesLabel">
<property name="text">
<string>Smooth pictures</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="ignoreOptionalContentLabel">
<property name="text">
<string>Ignore optional content</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="textAntialiasingLabel">
<property name="text">
<string>Text antialiasing</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QCheckBox" name="antialiasingCheckBox">
<property name="text">
<string>Enable</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="antialiasingLabel">
<property name="text">
<string>Antialiasing</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="clipToCropBoxLabel">
<property name="text">
<string>Clip to crop box</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QCheckBox" name="textAntialiasingCheckBox">
<property name="text">
<string>Enable</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QCheckBox" name="smoothPicturesCheckBox">
<property name="text">
<string>Enable</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QCheckBox" name="ignoreOptionalContentCheckBox">
<property name="text">
<string>Enable</string>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QCheckBox" name="clipToCropBoxCheckBox">
<property name="text">
<string>Enable</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QLabel" name="renderingInfoLabel">
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rendering settings defines, how rendering engine should handle the page content, and appearance of displayed graphics. &lt;span style=&quot; font-weight:600;&quot;&gt;Antialiasing&lt;/span&gt; turns on antialiasing of painted shapes, such as rectangles, vector graphics, lines, but it did not affects text (characters printed on the screen). &lt;span style=&quot; font-weight:600;&quot;&gt;Text antialiasing &lt;/span&gt;turns on antialiasing of painted characters on the screen, but not any other items. Both &lt;span style=&quot; font-weight:600;&quot;&gt;Antialiasing &lt;/span&gt;and &lt;span style=&quot; font-weight:600;&quot;&gt;Text antialiasing &lt;/span&gt;affects only software renderer. If you are using hardware rendering engine, such as OpenGL rendering engine, this doesn't do anything, because OpenGL engine renders the pictures using MSAA antialiasing (if turned on).&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Smooth pictures&lt;/span&gt; transforms pictures to device space coordinates using smooth image transformation, which usually leads to better image quality. When this is turned off, then default fast transformation is used, and quality of the image is lower, if the source DPI and device DPI is different.&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Ignore optional content &lt;/span&gt;ignores all optional content settings and paints everything in the content stream. &lt;span style=&quot; font-weight:600;&quot;&gt;Clip to crop box&lt;/span&gt; clips the drawing rectangle to the crop box of the page, which is usually smaller, than whole page. The graphics outside of the crop box is not drawn (for example, it can contain marks for printer etc.).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>74</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="shadingPage">
<layout class="QVBoxLayout" name="shadingPageLayout">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QGroupBox" name="shadingSettingsGroupBox">
<property name="title">
<string>Shading Settings</string>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>PDFViewerSettingsDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>248</x>
<y>254</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>PDFViewerSettingsDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>316</x>
<y>260</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
</connections>
</ui>

View File

@ -0,0 +1,756 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="30mm"
height="30mm"
viewBox="0 0 30 30"
version="1.1"
id="svg8"
sodipodi:docname="engine.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<defs
id="defs2">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 15 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="22.487723 : 17.055246 : 1"
inkscape:persp3d-origin="15 : 10 : 1"
id="perspective3725" />
</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="-227.17771"
inkscape:cy="-47.961126"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:pagecheckerboard="false"
inkscape:window-width="3840"
inkscape:window-height="2035"
inkscape:window-x="-13"
inkscape:window-y="-13"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<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>
<dc:creator>
<cc:Agent>
<dc:title>Jakub Melka</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Vrstva 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-267)">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-linejoin:round"
id="rect3741"
width="20.302736"
height="18.993414"
x="4.8495622"
y="272.35382" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4.9845609,274.4868 -2.2442336,0.0236"
id="path5389"
inkscape:connector-curvature="0"
inkscape:tile-cx="3.8624441"
inkscape:tile-cy="7.4986"
inkscape:tile-w="2.2473882"
inkscape:tile-h="0.32358343"
inkscape:tile-x0="2.73875"
inkscape:tile-y0="7.3368083" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
id="use5557" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,0.80895857)"
id="use5559" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,1.6179171)"
id="use5561" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,2.4268757)"
id="use5563" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,3.2358343)"
id="use5565" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,4.0447928)"
id="use5567" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,4.8537514)"
id="use5569" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,5.66271)"
id="use5571" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,6.4716686)"
id="use5573" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,7.2806271)"
id="use5575" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,8.0895857)"
id="use5577" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,8.8985443)"
id="use5579" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,9.7075028)"
id="use5581" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,10.516461)"
id="use5583" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,11.32542)"
id="use5585" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,12.134379)"
id="use5587" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,12.943337)"
id="use5589" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,13.752296)"
id="use5591" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,14.561254)"
id="use5593" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
transform="translate(0,15.370213)"
id="use5595" />
<use
transform="translate(22.626608,0.0236)"
x="0"
y="0"
inkscape:tiled-clone-of="#path5389"
xlink:href="#path5389"
id="use5557-4"
width="100%"
height="100%"
inkscape:tile-cx="26.489052"
inkscape:tile-cy="7.5222"
inkscape:tile-w="2.2473882"
inkscape:tile-h="0.32358343"
inkscape:tile-x0="25.365358"
inkscape:tile-y0="7.3604083" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
id="use5612" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,0.80895857)"
id="use5614" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,1.6179171)"
id="use5616" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,2.4268757)"
id="use5618" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,3.2358343)"
id="use5620" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,4.0447928)"
id="use5622" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,4.8537514)"
id="use5624" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,5.66271)"
id="use5626" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,6.4716686)"
id="use5628" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,7.2806271)"
id="use5630" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,8.0895857)"
id="use5632" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,8.8985443)"
id="use5634" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,9.7075028)"
id="use5636" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,10.516461)"
id="use5638" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,11.32542)"
id="use5640" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,12.134379)"
id="use5642" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,12.943337)"
id="use5644" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,13.752296)"
id="use5646" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,14.561254)"
id="use5648" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#use5557-4"
xlink:href="#use5557-4"
transform="translate(0,15.370213)"
id="use5650" />
<path
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 6.6149209,272.24416 v -1.58691"
id="path5669"
inkscape:connector-curvature="0"
inkscape:tile-cx="6.6149209"
inkscape:tile-cy="4.450705"
inkscape:tile-w="0.30000001"
inkscape:tile-h="1.58691"
inkscape:tile-x0="6.4649209"
inkscape:tile-y0="3.65725" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
id="use5831" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(0.90000004)"
id="use5833" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(1.8000001)"
id="use5835" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(2.7000001)"
id="use5837" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(3.6000002)"
id="use5839" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(4.5000002)"
id="use5841" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(5.4000002)"
id="use5843" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(6.3000003)"
id="use5845" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(7.2000003)"
id="use5847" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(8.1000004)"
id="use5849" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(9.0000004)"
id="use5851" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(9.9000005)"
id="use5853" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(10.8)"
id="use5855" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(11.700001)"
id="use5857" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(12.600001)"
id="use5859" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(13.500001)"
id="use5861" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(14.400001)"
id="use5863" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(15.300001)"
id="use5865" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(16.200001)"
id="use5867" />
<use
x="0"
y="0"
inkscape:tiled-clone-of="#path5669"
xlink:href="#path5669"
transform="translate(17.100001)"
id="use5869" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 6.6149209,292.88239 v -1.58691"
id="path5669-7"
inkscape:connector-curvature="0"
inkscape:tile-cx="6.6149209"
inkscape:tile-cy="4.450705"
inkscape:tile-w="0.30000001"
inkscape:tile-h="1.58691"
inkscape:tile-x0="6.4649209"
inkscape:tile-y0="3.65725" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
id="use5831-1" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(0.8999999)"
id="use5833-1" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(1.7999999)"
id="use5835-9" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(2.6999999)"
id="use5837-9" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(3.5999999)"
id="use5839-6" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(4.4999999)"
id="use5841-0" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(5.3999999)"
id="use5843-4" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(6.3000009)"
id="use5845-3" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(7.2000009)"
id="use5847-2" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(8.1000009)"
id="use5849-4" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(9.0000009)"
id="use5851-6" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(9.9000009)"
id="use5853-1" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(10.8)"
id="use5855-9" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(11.700001)"
id="use5857-3" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(12.600001)"
id="use5859-9" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(13.500001)"
id="use5861-8" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(14.400001)"
id="use5863-8" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(15.300001)"
id="use5865-7" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(16.200001)"
id="use5867-5" />
<use
height="100%"
width="100%"
x="0"
y="0"
inkscape:tiled-clone-of="#path5669-7"
xlink:href="#path5669-7"
transform="translate(17.100001)"
id="use5869-0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.17222214px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="5.6460195"
y="284.85751"
id="text5948"><tspan
sodipodi:role="line"
id="tspan5946"
x="5.6460195"
y="284.85751"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.17222214px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">CPU</tspan><tspan
sodipodi:role="line"
x="5.6460195"
y="296.32278"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.17222214px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
id="tspan5950" /></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,180 @@
<?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="30mm"
height="30mm"
viewBox="0 0 30 30"
version="1.1"
id="svg8"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="rendering.svg">
<defs
id="defs2">
<inkscape:path-effect
effect="spiro"
id="path-effect831"
is_visible="true" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="694.55995"
inkscape:cy="-932.70025"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="3840"
inkscape:window-height="2035"
inkscape:window-x="-13"
inkscape:window-y="-13"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<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:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:creator>
<cc:Agent>
<dc:title>Jakub Melka</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Vrstva 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-267)">
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 10.455023,281.11018 -2.4568452,2.59858 5.7168902,5.43341 2.362351,-2.69308 z"
id="path833"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 11.646391,283.58184 v 0 0"
id="path837"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 12.746504,283.28353 8.398159,-9.68564 1.700893,1.6064 -8.480841,9.47303"
id="path841"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path865"
d="m 8.3713382,284.05314 c -0.018034,0.0193 -0.036502,0.0382 -0.054101,0.0579 -0.049186,0.055 -0.096139,0.11201 -0.1452859,0.16707 -0.1103434,0.12361 -0.2237144,0.2445 -0.3368714,0.36552 -0.2850933,0.31034 -0.6018538,0.58865 -0.9201179,0.86397 -0.2626638,0.22143 -0.5302364,0.43692 -0.7867095,0.66559 -0.1238009,0.11023 -0.2323883,0.23579 -0.3370228,0.36392 -0.067753,0.0837 -0.125794,0.17481 -0.1849006,0.26472 -0.08191,0.1179 -0.1738633,0.22877 -0.2630763,0.34126 -0.085684,0.10448 -0.1734288,0.20793 -0.2704441,0.30213 -0.050004,0.047 -0.024738,0.0243 -0.075737,0.0681 0,0 -0.2283777,0.0922 -0.2283777,0.0922 v 0 c 0.052077,-0.0423 0.02644,-0.02 0.076795,-0.0669 0.099577,-0.0916 0.186691,-0.19605 0.2734503,-0.29963 0.048223,-0.0604 0.095661,-0.12145 0.1436299,-0.18207 0.028413,-0.0359 0.058147,-0.0708 0.085416,-0.10759 0.01174,-0.0158 0.022265,-0.0325 0.033396,-0.0488 0.058628,-0.0908 0.1171953,-0.18222 0.1840407,-0.26724 0.1062736,-0.12969 0.2156241,-0.25765 0.340863,-0.36966 0.2583407,-0.22973 0.5282123,-0.44572 0.7925908,-0.66837 0.3181959,-0.2742 0.63567,-0.5507 0.9196864,-0.86106 0.1116182,-0.12 0.2233358,-0.23998 0.3320497,-0.36263 0.1567236,-0.17683 0.00534,-0.008 0.1417119,-0.16622 0.016632,-0.0193 0.034068,-0.0379 0.051102,-0.0568 0,0 0.2279134,-0.0953 0.2279134,-0.0953 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path877"
d="m 8.6488388,284.44136 c -0.1229037,0.25431 -0.2648902,0.49839 -0.4153024,0.73723 -0.1559656,0.23826 -0.3171897,0.47306 -0.4809215,0.70604 -0.077636,0.11473 -0.1604039,0.22551 -0.2529216,0.32864 -0.062753,0.0649 -0.1278966,0.12748 -0.2007438,0.181 -0.1292241,0.0886 -0.5009716,0.28443 -0.1096346,0.0661 0.015552,-0.009 -0.030457,0.0185 -0.04542,0.0281 -0.2211146,0.14269 0.1208122,-0.075 -0.1079396,0.0703 -0.2088521,0.13083 -0.4204237,0.2576 -0.641843,0.36614 -0.073968,0.0426 -0.1528402,0.0756 -0.2289524,0.11385 -0.016518,0.008 -0.064778,0.0357 -0.048841,0.0263 0.055113,-0.0324 0.1109284,-0.0636 0.1663925,-0.0955 -0.073165,0.0375 -0.1323573,0.0933 -0.1830978,0.157 -0.04722,0.0652 -0.084482,0.13728 -0.1240165,0.20737 -0.044747,0.082 -0.1009383,0.15511 -0.1637332,0.22375 -0.052159,0.0628 -0.1154287,0.11327 -0.1797222,0.16277 -0.070298,0.0531 -0.1442701,0.1014 -0.2170983,0.15104 -0.064265,0.0435 -0.1237223,0.0936 -0.1863526,0.13939 0,0 -0.2303243,0.091 -0.2303243,0.091 v 0 c 0.063862,-0.0449 0.1234895,-0.0953 0.1871041,-0.14041 0.038204,-0.0257 0.075759,-0.0523 0.1138166,-0.0782 0.023791,-0.0162 0.04882,-0.0306 0.072385,-0.0471 0.010753,-0.008 0.020696,-0.0162 0.031044,-0.0242 0.064088,-0.0491 0.1296784,-0.0966 0.1817659,-0.15903 0.021198,-0.0229 0.043366,-0.0449 0.063647,-0.0685 0.039338,-0.0459 0.069411,-0.0991 0.1020683,-0.14969 0.019558,-0.0358 0.040502,-0.0706 0.060299,-0.10623 0.00309,-0.006 0.03704,-0.0682 0.040254,-0.0734 0.00659,-0.0107 0.014301,-0.0206 0.02145,-0.031 0.04967,-0.066 0.106304,-0.12778 0.1806996,-0.16636 0.085015,-0.0489 0.1696664,-0.0985 0.2550451,-0.14673 0.089713,-0.0507 0.1874784,-0.0866 0.276674,-0.13843 0.060792,-0.0302 0.3060401,-0.16253 0.014192,0.003 -0.025336,0.0144 0.049956,-0.03 0.074746,-0.0453 0.02409,-0.0149 0.04783,-0.0303 0.07189,-0.0452 0.020616,-0.0128 0.041422,-0.0253 0.062133,-0.0379 0.051293,-0.0316 0.09972,-0.0679 0.1516126,-0.0984 0.2795812,-0.16448 0.3557183,-0.20447 0.076566,-0.0434 -0.011203,0.006 0.022042,-0.0135 0.033063,-0.0203 0.015047,-0.0105 0.048722,-0.0336 0.06241,-0.0447 0.050276,-0.0408 0.094536,-0.0885 0.1420416,-0.13227 0.094877,-0.10189 0.1783606,-0.21281 0.257447,-0.32731 0.1670785,-0.23269 0.3300087,-0.46843 0.4877035,-0.70758 0.1486866,-0.23528 0.2887737,-0.47597 0.4060174,-0.72871 0,0 0.2243982,-0.10329 0.2243982,-0.10329 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path879"
d="m 9.2123547,285.11917 c -0.1370039,0.16252 -0.2840207,0.31628 -0.4313671,0.46937 -0.1344798,0.13935 -0.2725185,0.27526 -0.4025032,0.41887 -0.085394,0.0892 -0.1536076,0.19226 -0.2283148,0.2902 -0.080316,0.10295 -0.1588651,0.20726 -0.23851,0.31074 -0.093866,0.12655 -0.1768244,0.26064 -0.2693823,0.38817 -0.1116552,0.16075 -0.227402,0.31838 -0.346192,0.47391 -0.091072,0.12702 -0.1990201,0.23836 -0.3232258,0.33272 -0.1133718,0.0769 -0.2348103,0.14151 -0.353382,0.20962 -0.014452,0.008 -0.057941,0.033 -0.04351,0.0246 0.2042827,-0.11801 0.224903,-0.13091 0.1349658,-0.0764 -0.1357363,0.0881 -0.2699035,0.18575 -0.4242461,0.23762 -0.069129,0.0195 -0.1343433,0.0499 -0.2040877,0.0678 -0.060068,0.0138 -0.11552,0.0403 -0.174838,0.0564 -0.052873,0.0251 -0.1096483,0.0391 -0.1646393,0.0581 -0.044526,0.0197 -0.091395,0.0344 -0.1346444,0.0571 -0.010933,0.006 -0.042555,0.025 -0.031799,0.019 0.060863,-0.0342 0.1214192,-0.069 0.1821286,-0.10349 -0.031646,0.0199 -0.062017,0.0417 -0.091582,0.0646 0,0 -0.2305182,0.0925 -0.2305182,0.0925 v 0 c 0.029211,-0.0241 0.059245,-0.0471 0.091476,-0.0671 0.1352341,-0.0796 0.2617348,-0.16535 0.410614,-0.21445 0.055802,-0.0177 0.1107331,-0.0373 0.1655836,-0.0577 0.058269,-0.0182 0.1146191,-0.0422 0.1743806,-0.0557 0.068543,-0.0206 0.1343646,-0.0488 0.2029457,-0.0693 0.083145,-0.0326 0.2107364,-0.11349 -0.1079008,0.0735 -0.011721,0.007 0.023699,-0.0133 0.035176,-0.0206 0.00257,-0.002 0.069721,-0.0477 0.07178,-0.0491 0.1171011,-0.0726 0.037045,-0.0235 0.2867469,-0.16748 0.01434,-0.008 0.057511,-0.0328 0.043239,-0.0244 -0.054369,0.0319 -0.1088967,0.0636 -0.1635382,0.0951 -0.033092,0.0191 0.1386134,-0.0814 0.097811,-0.0597 0.1286864,-0.093 0.2350026,-0.19854 0.3285649,-0.32752 0.1186362,-0.15532 0.2356212,-0.31174 0.3458786,-0.47319 0.092882,-0.1267 0.1753156,-0.26042 0.2670741,-0.38785 0.079583,-0.10355 0.1583349,-0.20769 0.2386418,-0.31065 0.025567,-0.0337 0.052075,-0.0668 0.0772,-0.10086 0.024445,-0.0331 0.045189,-0.069 0.070601,-0.10142 0.024733,-0.0316 0.055507,-0.0581 0.079912,-0.0899 0.1307187,-0.14515 0.2712749,-0.28088 0.4067918,-0.42149 0.1454161,-0.15119 0.2912073,-0.3025 0.4251471,-0.4641 0,0 0.2275231,-0.0974 0.2275231,-0.0974 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path881"
d="m 9.6548862,285.44678 c -0.026806,0.0342 -0.1111887,0.1425 -0.1336386,0.16858 -0.044007,0.0511 -0.1841387,0.20036 -0.2272975,0.24636 -0.2804795,0.29895 0.011766,-0.0141 -0.2663873,0.28432 -0.2080177,0.22957 -0.3964656,0.4754 -0.588764,0.71794 -0.08516,0.11386 -0.1853166,0.21662 -0.2586355,0.33885 -0.052961,0.096 -0.090706,0.19922 -0.1350058,0.29933 -0.028955,0.061 -0.049157,0.12612 -0.087432,0.18216 -0.019825,0.0219 -0.028649,0.0331 -0.051823,0.0522 -0.1003702,0.0827 -0.2876767,0.17879 -0.3754456,0.22945 -0.086459,0.0482 -0.1799468,0.0823 -0.2723282,0.11727 -0.084004,0.0372 -0.1677104,0.0751 -0.2555433,0.1025 -0.031759,0.0142 -0.023868,0.01 -0.052739,0.0264 -0.00802,0.005 -0.031912,0.0189 -0.02385,0.0143 0.339916,-0.19329 0.2162116,-0.1272 0.1425924,-0.0775 -0.044408,0.0368 -0.091767,0.0692 -0.1410899,0.099 -0.078988,0.0452 -0.1579758,0.0904 -0.2369637,0.13554 -0.00825,0.005 -0.032911,0.0182 -0.024752,0.0135 0.062601,-0.0358 0.1248019,-0.0723 0.1880748,-0.10697 0.00833,-0.005 -0.015467,0.011 -0.023082,0.0167 -0.08483,0.0633 0.035723,-0.0254 -0.046184,0.0347 -0.078654,0.0456 -0.1570757,0.0916 -0.2359605,0.13678 -0.015161,0.009 -0.031021,0.0161 -0.046307,0.0246 -0.00777,0.004 -0.031006,0.0173 -0.023323,0.0128 0.2087177,-0.12069 0.2494495,-0.1473 0.1651114,-0.0933 -0.059889,0.0478 -0.1208942,0.0941 -0.1826749,0.13944 -0.069593,0.0501 -0.1323885,0.10861 -0.199558,0.16171 -0.076797,0.0524 -0.1545601,0.10334 -0.2345788,0.15073 0,0 -0.2303307,0.0886 -0.2303307,0.0886 v 0 c 0.08036,-0.0464 0.1575846,-0.0974 0.2353863,-0.14784 0.069183,-0.0506 0.1299308,-0.11173 0.1995414,-0.16196 0.060924,-0.0461 0.1245886,-0.0886 0.181271,-0.14007 0.00788,-0.006 0.01529,-0.0121 0.023646,-0.017 0.07805,-0.0461 0.1568836,-0.0909 0.2354656,-0.13609 0.011105,-0.006 0.034696,-0.0188 0.046141,-0.0249 0.00779,-0.004 0.030958,-0.017 0.023357,-0.0125 -0.062491,0.037 -0.1253623,0.0734 -0.1880431,0.11014 0.026803,-0.0182 0.020608,-0.0133 0.04659,-0.0338 0.00757,-0.006 0.014269,-0.0132 0.022513,-0.0182 0.078071,-0.0475 0.1572988,-0.093 0.2361912,-0.13911 0.054513,-0.0319 0.2965039,-0.14158 -0.1632683,0.096 0.049203,-0.0295 0.1000691,-0.0576 0.1418658,-0.0976 0.1129787,-0.0798 0.2321672,-0.15419 0.3605906,-0.20578 0.08659,-0.0291 0.1693463,-0.0675 0.253583,-0.10261 0.091889,-0.0355 0.1845829,-0.0704 0.2699994,-0.12008 -0.3393956,0.19846 -0.1153803,0.0706 -0.044979,0.0184 0.020823,-0.0154 0.034526,-0.0299 0.052892,-0.0478 0.00628,-0.007 0.013396,-0.0133 0.018836,-0.0209 0.033301,-0.0468 0.043824,-0.10702 0.072396,-0.15634 0.045471,-0.1005 0.084226,-0.20389 0.1346697,-0.30198 0.00917,-0.0164 0.017547,-0.0333 0.027519,-0.0493 0.025551,-0.0409 0.042284,-0.0592 0.073245,-0.0969 0.054011,-0.0657 0.1081889,-0.1313 0.1609699,-0.19802 0.1956546,-0.24281 0.3857413,-0.49026 0.5944319,-0.72228 0.4075142,-0.43749 -0.1426048,0.15288 0.264844,-0.28369 0.031047,-0.0333 0.1898938,-0.20325 0.2238028,-0.24284 0.039025,-0.0456 0.090581,-0.11601 0.1279173,-0.16605 0,0 0.2265365,-0.097 0.2265365,-0.097 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path883"
d="m 9.1311433,284.66441 c -0.1152766,0.13154 -0.2182424,0.27303 -0.329429,0.40792 -0.1944662,0.22715 -0.4002517,0.44421 -0.5922566,0.67347 -0.1330299,0.16788 -0.2590906,0.34112 -0.3882459,0.51197 -0.094027,0.1197 -0.1845638,0.24143 -0.2668323,0.36955 -0.05529,0.0894 -0.094994,0.18802 -0.1538086,0.27533 -0.011941,0.0177 -0.025096,0.0346 -0.037643,0.0519 -0.046917,0.0587 -0.093467,0.11901 -0.1493105,0.16976 -0.030456,0.0277 -0.050975,0.0409 -0.084092,0.0646 -0.1302245,0.0869 -0.5128144,0.29644 -0.1150281,0.0701 0.012467,-0.007 -0.02471,0.0146 -0.037005,0.022 -0.012782,0.008 -0.025321,0.0158 -0.038223,0.0232 -0.0829,0.048 -0.1661176,0.0955 -0.2491764,0.14323 -0.092667,0.0492 -0.1904926,0.0865 -0.2873264,0.12632 -0.08306,0.039 -0.1645433,0.0816 -0.250268,0.11453 -0.043658,0.0182 -0.090577,0.0242 -0.1361573,0.0347 -0.029068,0.007 -0.039459,0.0123 -0.067304,0.0237 0.3371392,-0.18948 0.1861621,-0.11609 0.1224171,-0.0579 -0.025773,0.0235 -0.048051,0.0501 -0.070052,0.077 -0.039862,0.0597 -0.092008,0.10785 -0.1498331,0.14952 -0.034483,0.0207 -0.067448,0.0437 -0.1011766,0.0655 0,0 -0.2311265,0.0894 -0.2311265,0.0894 v 0 c 0.034962,-0.02 0.065656,-0.046 0.1016926,-0.0643 0.058769,-0.0386 0.114295,-0.0832 0.1531961,-0.14266 0.1029274,-0.13927 0.196982,-0.18049 0.369665,-0.26909 0.066863,-0.0228 0.137523,-0.0317 0.2031375,-0.0588 0.08445,-0.0347 0.1655287,-0.0768 0.2489658,-0.1138 0.097092,-0.0394 0.1941968,-0.0787 0.2862294,-0.12923 -0.057664,0.0336 -0.1150802,0.0676 -0.1729912,0.10082 -0.012914,0.007 0.02527,-0.0157 0.037985,-0.0235 0.012282,-0.007 0.024564,-0.015 0.037001,-0.0222 0.082961,-0.0481 0.1653034,-0.0974 0.249188,-0.14391 0.044529,-0.0247 -0.2819897,0.16923 -0.1328552,0.0754 0.02227,-0.0151 0.065475,-0.0434 0.085775,-0.0607 0.057264,-0.0487 0.1035815,-0.10949 0.1516229,-0.1667 0.034383,-0.0454 0.039784,-0.05 0.06846,-0.0974 0.044963,-0.0742 0.080849,-0.1536 0.1243454,-0.22863 0.039887,-0.0626 0.079908,-0.12505 0.1238038,-0.185 0.048545,-0.0663 0.044434,-0.0571 0.095417,-0.12312 0.016282,-0.0211 0.032073,-0.0425 0.048109,-0.0638 0.1309171,-0.1715 0.2584931,-0.34557 0.392267,-0.51489 0.1908302,-0.22938 0.3969634,-0.44531 0.5903439,-0.67253 0.025416,-0.0306 0.051495,-0.0607 0.076252,-0.0919 0.082528,-0.10392 0.1581095,-0.21355 0.2461197,-0.31312 0,0 0.2281476,-0.0969 0.2281476,-0.0969 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path889"
d="m 8.6926787,284.21764 c -0.1191242,0.14151 -0.2281304,0.29123 -0.3379904,0.43996 -0.075188,0.0927 -0.1444506,0.18961 -0.2135772,0.28682 -0.042247,0.0519 -0.084273,0.10395 -0.1255885,0.15661 -0.048178,0.0601 -0.097094,0.11962 -0.1521335,0.17356 -0.093132,0.0753 -0.2053675,0.12835 -0.30812,0.18575 -0.010546,0.006 -0.022148,0.01 -0.03287,0.0153 -0.010284,0.005 -0.040154,0.0232 -0.030082,0.0174 0.061382,-0.035 0.1226762,-0.0701 0.1840142,-0.1051 -0.043805,0.0244 -0.082942,0.0543 -0.1192749,0.0885 -0.039683,0.0432 -0.085394,0.0796 -0.1302462,0.11716 -0.051579,0.0379 -0.1005747,0.0786 -0.1489604,0.12045 -0.042327,0.0353 -0.083634,0.0719 -0.1254871,0.10779 -0.1316249,0.0888 -0.4832564,0.27808 -0.083933,0.0528 0.011525,-0.007 -0.022677,0.0136 -0.034005,0.0205 -0.041202,0.0249 -0.024955,0.0149 -0.06453,0.0399 -0.065727,0.0353 -0.1056391,0.0954 -0.1474147,0.15467 -0.032442,0.0519 -0.067228,0.10201 -0.1043004,0.15075 -0.035305,0.0513 -0.074673,0.0996 -0.1115732,0.14971 -0.037365,0.0506 -0.086169,0.0914 -0.1383771,0.12588 -0.1002408,0.0213 -0.1716024,0.1105 -0.2650669,0.15024 -0.01724,0.01 -0.037438,0.0112 -0.055521,0.0186 -0.0181,0.007 -0.034724,0.0179 -0.052142,0.0267 -0.032965,0.014 -0.066125,0.0277 -0.098499,0.043 0,0 0.1945812,-0.15451 0.1945812,-0.15451 v 0 c 0.032646,-0.0143 0.06546,-0.0282 0.097716,-0.0434 0.026525,-0.0127 0.053348,-0.0225 0.080558,-0.0334 0.080018,-0.0322 0.2082649,-0.12402 -0.1325867,0.0825 0.00615,-0.004 0.048967,-0.0297 0.054685,-0.0341 0.031676,-0.0241 0.060872,-0.0539 0.087308,-0.0833 0.036641,-0.0505 0.076545,-0.0982 0.1110364,-0.15016 0.037677,-0.0483 0.074184,-0.0971 0.1052174,-0.15003 0.026151,-0.037 0.059574,-0.0934 0.090259,-0.12446 0.00618,-0.006 0.047381,-0.0347 0.053585,-0.039 0.1105401,-0.0722 0.2276203,-0.13588 0.3410408,-0.20243 0.060702,-0.0356 -0.1218388,0.0705 -0.1824466,0.10627 -0.00792,0.005 0.016248,-0.009 0.024371,-0.013 0.040278,-0.0379 0.084355,-0.072 0.1258398,-0.10868 0.049083,-0.041 0.095031,-0.0857 0.1489704,-0.12059 0.044342,-0.0375 0.091995,-0.0715 0.1298464,-0.11583 0.037616,-0.0337 0.072,-0.0705 0.1183826,-0.0931 0.079881,-0.0467 0.1595347,-0.0937 0.2396429,-0.13998 0.010075,-0.006 0.020524,-0.011 0.03088,-0.0163 0.1121664,-0.0574 -0.062189,0.0394 -0.1466419,0.0887 -0.011314,0.007 0.022773,-0.013 0.033846,-0.02 0.01071,-0.007 0.020981,-0.0142 0.031473,-0.0213 0.056143,-0.0521 0.1053176,-0.11027 0.153235,-0.16997 0.040615,-0.0533 0.082332,-0.10579 0.1265632,-0.15612 0.071174,-0.0974 0.1395624,-0.19678 0.2176996,-0.28895 0.1095484,-0.14756 0.2183376,-0.2958 0.3327792,-0.43962 0,0 0.2278367,-0.0964 0.2278367,-0.0964 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path891"
d="m 9.9320267,285.70663 c -0.1449242,0.25246 -0.3140581,0.48963 -0.4788167,0.72923 -0.2604895,0.37423 -0.5265047,0.74469 -0.7949875,1.11322 -0.1323909,0.17925 -0.2683764,0.35585 -0.4069432,0.53035 -0.061749,0.0798 -0.127178,0.15672 -0.1880714,0.23717 -0.055362,0.0853 -0.1066024,0.17289 -0.1516623,0.26405 -0.028986,0.076 -0.073194,0.14205 -0.1272342,0.20214 -0.047696,0.0467 -0.1038016,0.083 -0.1612799,0.11636 -0.239531,0.1389 -0.1710298,0.10092 -0.2940587,0.16843 -0.016169,0.007 -0.032126,0.0152 -0.048508,0.022 -0.054721,0.0229 -0.1108464,0.042 -0.1647984,0.0668 -0.040571,0.0187 -0.080107,0.0395 -0.1202902,0.0591 -0.0875,0.0465 -0.1748565,0.0924 -0.2700882,0.12066 -0.054193,0.0229 -0.1109829,0.0373 -0.1622925,0.0665 -0.034649,0.0197 -0.075748,0.0251 -0.1096386,0.0458 0,0 0.1948133,-0.15564 0.1948133,-0.15564 v 0 c 0.0367,-0.014 0.073993,-0.0268 0.1085913,-0.0457 0.052935,-0.0251 0.1093494,-0.0415 0.163985,-0.0624 0.09289,-0.0313 0.1788406,-0.0776 0.2659775,-0.12197 0.024037,-0.0117 0.096692,-0.0472 0.1210685,-0.0581 0.070572,-0.0316 0.1444652,-0.0556 0.212946,-0.0918 0.1055819,-0.059 0.031802,-0.0181 -0.1275247,0.0746 -0.014594,0.008 0.0295,-0.0164 0.044011,-0.0251 0.042001,-0.025 0.082311,-0.0525 0.1193379,-0.0845 0.056012,-0.0562 0.1023406,-0.12027 0.129983,-0.19536 0.045972,-0.0921 0.096727,-0.18084 0.1507958,-0.26844 0.059677,-0.082 0.1261181,-0.15874 0.1888397,-0.23841 0.1410327,-0.17663 0.2829878,-0.35261 0.4179157,-0.53403 0.2707392,-0.36695 0.5364226,-0.73779 0.7959003,-1.11278 0.1610294,-0.23684 0.3291096,-0.47018 0.465732,-0.72241 0,0 0.2262971,-0.0998 0.2262971,-0.0998 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path893"
d="m 10.321589,286.12254 c -0.100161,0.19926 -0.208419,0.39429 -0.320277,0.5872 -0.100929,0.18438 -0.2080447,0.36556 -0.3221577,0.54211 -0.051968,0.0804 -0.1062249,0.15931 -0.1588793,0.23927 -0.1163736,0.16699 -0.2300526,0.33587 -0.3417891,0.506 -0.065507,0.10884 -0.1301334,0.21789 -0.2051121,0.32052 -0.070592,0.0904 -0.1371478,0.18378 -0.2022613,0.27818 -0.049337,0.0722 -0.086646,0.15162 -0.1326694,0.22581 -0.029059,0.0468 -0.042225,0.0634 -0.074975,0.10877 -0.01452,0.0176 -0.027936,0.0361 -0.043558,0.0527 -0.04077,0.0433 -0.082511,0.0764 -0.1293289,0.11328 -0.070125,0.0552 -0.1428072,0.1043 -0.2184164,0.15154 -0.1613212,0.13074 -0.3625715,0.18358 -0.5381826,0.28633 0.4159866,-0.23981 0.010345,-0.006 -0.06823,0.0383 -0.041797,0.0234 -0.089821,0.0365 -0.1356312,0.0493 -0.057757,0.0237 -0.1113621,0.0564 -0.169322,0.0797 -0.069429,0.0358 -0.1828511,0.0946 0.1636234,-0.0941 0.00794,-0.004 -0.014952,0.0102 -0.021786,0.0162 -0.00647,0.006 -0.011999,0.0122 -0.018,0.0183 0,0 -0.2285622,0.097 -0.2285622,0.097 v 0 c 0.070764,-0.0972 0.1925865,-0.14026 0.2995285,-0.19127 0.056627,-0.0261 0.1114224,-0.0568 0.1705893,-0.0769 0.034718,-0.0108 0.068638,-0.0224 0.1016465,-0.0378 0.010366,-0.005 0.04045,-0.0214 0.030617,-0.0156 -0.059027,0.0352 -0.5194869,0.30039 0.067154,-0.0379 0.062619,-0.0345 0.1278369,-0.0611 0.1921399,-0.092 0.021415,-0.0103 0.083392,-0.0454 0.063636,-0.0322 -0.043756,0.0292 -0.090585,0.0536 -0.1358773,0.0804 0.076337,-0.0461 0.1489747,-0.0945 0.2197589,-0.14883 0.04051,-0.0311 0.092758,-0.0714 0.1293292,-0.10818 0.015886,-0.016 0.029519,-0.0341 0.044278,-0.0511 0.029102,-0.0396 0.049178,-0.0655 0.075508,-0.10652 0.047337,-0.0738 0.083907,-0.15389 0.1320628,-0.22722 0.064281,-0.095 0.1302089,-0.18891 0.2014149,-0.27885 0.076643,-0.1018 0.1425763,-0.21038 0.20741,-0.32001 0.1126533,-0.17121 0.228136,-0.34061 0.3463044,-0.50805 0.053118,-0.0801 0.108218,-0.15896 0.1607749,-0.23947 0.1146812,-0.17568 0.2215494,-0.35674 0.3217494,-0.541 0.109809,-0.1905 0.2162174,-0.38295 0.3124544,-0.58069 0,0 0.225033,-0.10321 0.225033,-0.10321 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path895"
d="m 10.677728,286.38604 c -0.0059,0.0181 -0.01082,0.0366 -0.01774,0.0544 -0.02637,0.0677 -0.05386,0.12143 -0.08741,0.18677 -0.07336,0.14287 -0.154884,0.27984 -0.238133,0.41712 -0.186122,0.31575 -0.3891005,0.62103 -0.5941729,0.92465 -0.1193962,0.16807 -0.237375,0.33725 -0.3612142,0.5021 -0.081595,0.10497 -0.1640642,0.20922 -0.2430862,0.31616 -0.058768,0.09 -0.1160145,0.18086 -0.1778897,0.26888 -0.054318,0.0689 -0.1079569,0.13852 -0.1642698,0.20588 -0.055203,0.0642 -0.1218041,0.11708 -0.1885312,0.16864 -0.070217,0.0533 -0.1473324,0.0963 -0.21883,0.14766 -0.053239,0.035 -0.083783,0.0901 -0.1172874,0.1423 -0.020365,0.0274 -0.040879,0.0547 -0.061063,0.0823 0,0 -0.2273641,0.0983 -0.2273641,0.0983 v 0 c 0.02001,-0.0273 0.038896,-0.0556 0.061486,-0.0809 0.034531,-0.0527 0.062414,-0.11231 0.1141182,-0.15064 0.07046,-0.0533 0.1480849,-0.0955 0.2194703,-0.14753 0.06715,-0.0501 0.133509,-0.10235 0.1908503,-0.16372 0.056867,-0.0667 0.1092589,-0.13693 0.1655617,-0.20412 0.062545,-0.0882 0.1217367,-0.17758 0.1783961,-0.26963 0.079003,-0.10764 0.1617914,-0.21233 0.2444629,-0.31714 0.1264025,-0.165 0.2453772,-0.33557 0.3677329,-0.50357 0.2073305,-0.30254 0.411335,-0.60764 0.5966381,-0.92434 0.08193,-0.13597 0.16184,-0.27144 0.233713,-0.41302 0.03139,-0.0618 0.0599,-0.11697 0.08451,-0.18132 0.0065,-0.0171 0.01087,-0.0349 0.01631,-0.0524 0,0 0.22374,-0.10675 0.22374,-0.10675 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path897"
d="m 11.215728,286.75016 c -0.03577,0.18265 -0.114717,0.35322 -0.195267,0.51973 -0.127275,0.27038 -0.290002,0.52098 -0.455457,0.76898 -0.133831,0.20959 -0.281564,0.40955 -0.417092,0.61799 -0.101467,0.17732 -0.203983,0.35349 -0.3160256,0.52439 -0.097823,0.15068 -0.2061636,0.29442 -0.2973086,0.44933 -0.069988,0.11631 -0.1290852,0.23875 -0.1973225,0.35599 -0.042988,0.0728 -0.091469,0.14211 -0.1457521,0.20691 -0.02817,0.027 -0.052567,0.0587 -0.082625,0.0837 -0.021802,0.0181 -0.038882,0.0274 -0.063186,0.0424 -0.1233435,0.0728 -0.2461329,0.15197 -0.3810455,0.20284 0,0 0.1949656,-0.15319 0.1949656,-0.15319 v 0 c 0.087683,-0.0364 0.3135294,-0.15909 -0.044471,0.0394 0.02132,-0.0126 0.044,-0.0231 0.06423,-0.0374 0.031785,-0.0225 0.053079,-0.0574 0.083781,-0.0811 0.055961,-0.0634 0.1061447,-0.13147 0.1497528,-0.20399 0.070759,-0.11619 0.1280779,-0.24019 0.1989786,-0.3564 0.089329,-0.15692 0.2003906,-0.29984 0.2983423,-0.45135 0.1133636,-0.17032 0.2163352,-0.3465 0.3169618,-0.52459 0.038747,-0.0598 0.082426,-0.1283 0.1229542,-0.18691 0.09949,-0.14388 0.204811,-0.28372 0.296914,-0.43268 0.165702,-0.24637 0.329131,-0.49514 0.454785,-0.76505 0.07922,-0.16293 0.157968,-0.33013 0.191218,-0.50945 0,0 0.22267,-0.10951 0.22267,-0.10951 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path899"
d="m 11.738978,287.51678 c -0.116043,0.2908 -0.262243,0.5676 -0.411125,0.84253 -0.236074,0.41266 -0.506681,0.80362 -0.767927,1.20033 -0.153522,0.21942 -0.291627,0.44881 -0.434471,0.67513 -0.06127,0.10513 -0.1371488,0.20066 -0.2083458,0.29906 -0.043584,0.0575 -0.080872,0.11957 -0.125117,0.17658 -0.033027,0.0428 -0.073229,0.0785 -0.116863,0.10998 -0.1110355,0.0705 -0.2189424,0.1556 -0.3476466,0.18803 -0.065441,0.0265 -0.1225595,0.053 -0.1920068,0.0688 -0.060733,0.0155 -0.1186754,0.0269 -0.1735272,0.0584 -0.00574,0.004 -0.011475,0.007 -0.017214,0.0106 0,0 0.1934382,-0.15656 0.1934382,-0.15656 v 0 c 0.00579,-0.003 0.011591,-0.006 0.017386,-0.009 0.056364,-0.0255 0.1167321,-0.0385 0.1765202,-0.0536 0.066012,-0.0182 0.1269799,-0.0485 0.1918497,-0.07 0.088537,-0.0304 0.1845715,-0.0984 -0.1427948,0.0934 -0.00668,0.004 0.013552,-0.007 0.020116,-0.0116 0.014409,-0.009 0.027777,-0.0196 0.042735,-0.0277 0.04503,-0.0281 0.085672,-0.0623 0.1197954,-0.10314 0.04667,-0.0556 0.083387,-0.11836 0.1273712,-0.17608 0.071243,-0.0991 0.149189,-0.19385 0.2115796,-0.29896 0.1467849,-0.22761 0.2881759,-0.45874 0.4446259,-0.68 0.262401,-0.39556 0.533727,-0.78569 0.768918,-1.1985 0.145853,-0.27148 0.290932,-0.54441 0.398633,-0.83384 0,0 0.224068,-0.10363 0.224068,-0.10363 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path901"
d="m 12.237683,287.82377 c -0.01799,0.23063 -0.07854,0.45587 -0.171189,0.66759 -0.02963,0.0677 -0.06413,0.13318 -0.0962,0.19978 -0.107908,0.20766 -0.22965,0.40796 -0.355227,0.60532 -0.03911,0.0615 -0.08042,0.1215 -0.119489,0.18299 -0.06951,0.10939 -0.136304,0.22048 -0.204856,0.33047 -0.13059,0.21687 -0.256682,0.43636 -0.389176,0.65208 -0.06024,0.0874 -0.110481,0.18457 -0.182876,0.26319 -0.0395,0.0429 -0.06453,0.0593 -0.110063,0.0944 -0.117124,0.0814 -0.244297,0.14805 -0.367732,0.21873 -0.01479,0.008 -0.05935,0.0335 -0.04453,0.0251 0.18604,-0.10556 0.227179,-0.13313 0.13963,-0.0764 -0.0938,0.0596 -0.190384,0.11419 -0.28821,0.16714 -0.02383,0.0129 -0.059428,0.014 -0.085685,0.0177 -0.00973,8.2e-4 -0.019606,6.1e-4 -0.029188,0.002 -0.090054,0.0177 -0.3226017,0.15935 0.049092,-0.0501 -0.063693,0.0412 -0.1205384,0.0895 -0.1709645,0.14602 -0.030567,0.0351 -0.015433,0.0184 -0.045284,0.0502 0,0 -0.2288881,0.0951 -0.2288881,0.0951 v 0 c 0.031124,-0.0304 0.015547,-0.0142 0.04649,-0.049 0.02454,-0.0295 0.04954,-0.0598 0.078691,-0.085 0.028325,-0.0245 0.061704,-0.0427 0.089377,-0.0681 0.12831,-0.0741 0.2566126,-0.17295 0.4089796,-0.19074 0.02192,-0.004 0.0344,-0.006 0.05565,-0.0132 0.0087,-0.003 0.03325,-0.0155 0.0254,-0.0107 -0.3456701,0.21048 -0.211765,0.12252 -0.135773,0.078 0.111595,-0.0727 0.03794,-0.0254 0.282199,-0.16809 0.01457,-0.009 0.05867,-0.0333 0.04415,-0.0247 -0.0533,0.0315 -0.107045,0.0622 -0.160484,0.0935 -0.03711,0.0217 0.158341,-0.0906 0.109878,-0.0675 0.0403,-0.0291 0.07722,-0.0533 0.112432,-0.089 0.07513,-0.0761 0.124512,-0.17465 0.185868,-0.26102 0.135384,-0.21649 0.263771,-0.43715 0.396309,-0.65537 0.06965,-0.11033 0.137058,-0.22208 0.207285,-0.33205 0.03926,-0.0615 0.08093,-0.12139 0.120334,-0.18278 0.126018,-0.19634 0.248296,-0.3956 0.355754,-0.60282 0.03171,-0.0658 0.0659,-0.13038 0.09513,-0.19728 0.09033,-0.20679 0.150554,-0.42761 0.162515,-0.65345 0,0 0.220657,-0.11243 0.220657,-0.11243 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path905"
d="m 12.661771,288.32871 c -0.02702,0.084 -0.02383,0.0757 -0.05776,0.17207 -0.01518,0.0431 -0.02933,0.0866 -0.04618,0.12909 -0.06712,0.16915 -0.150523,0.3319 -0.228991,0.49591 -0.156102,0.3233 -0.313898,0.6461 -0.488705,0.95978 -0.100972,0.17355 -0.19289,0.35366 -0.309243,0.51783 -0.02039,0.0288 -0.04262,0.0562 -0.06392,0.0843 -0.122285,0.15061 -0.271956,0.27525 -0.418628,0.40101 -0.08653,0.0775 -0.174575,0.15411 -0.244072,0.2477 -0.03363,0.0504 -0.05641,0.10703 -0.08242,0.16153 -0.03167,0.0581 -0.06568,0.11519 -0.101187,0.1711 -0.08127,0.12492 -0.171403,0.1457 -0.318169,0.22988 -0.03017,0.009 -0.0761,0.0135 -0.09436,-0.0197 -0.0033,-0.006 -0.0043,-0.0129 -0.0065,-0.0193 0,0 0.219445,-0.11843 0.219445,-0.11843 v 0 c 3.17e-4,0.0319 0.06092,0.01 0.07547,0.002 -0.06457,0.0378 -0.129129,0.0756 -0.193721,0.11341 -0.0066,0.004 0.01352,-0.007 0.01986,-0.0117 0.02915,-0.02 0.05087,-0.0476 0.0708,-0.0763 0.03663,-0.0546 0.06895,-0.11202 0.102875,-0.16828 0.02661,-0.0555 0.04982,-0.11281 0.08102,-0.16582 0.01565,-0.022 0.03361,-0.0483 0.05119,-0.0685 0.05883,-0.0678 0.130091,-0.12404 0.194544,-0.18609 0.146588,-0.1256 0.29742,-0.24847 0.421923,-0.39697 0.0215,-0.0276 0.04401,-0.0544 0.06451,-0.0827 0.11845,-0.16371 0.211538,-0.3442 0.313834,-0.5179 0.177134,-0.313 0.336903,-0.63551 0.492381,-0.95973 0.122273,-0.25657 0.252385,-0.51182 0.321813,-0.78912 0,0 0.224185,-0.1048 0.224185,-0.1048 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path907"
d="m 13.242889,288.74748 c -0.08448,0.19705 -0.175763,0.39095 -0.274289,0.58135 -0.111781,0.22576 -0.219413,0.45349 -0.332495,0.67862 -0.09247,0.17751 -0.193469,0.35017 -0.300876,0.51898 -0.08449,0.13007 -0.170122,0.25943 -0.261873,0.38452 -0.09523,0.12022 -0.194766,0.23689 -0.288721,0.35815 -0.04998,0.0677 -0.103,0.13292 -0.15657,0.19774 -0.04375,0.0488 -0.08847,0.097 -0.136235,0.14189 -0.125218,0.0974 -0.260216,0.19113 -0.407992,0.24949 -0.05822,0.0151 -0.112008,0.0425 -0.165919,0.0686 0,0 0.193356,-0.154 0.193356,-0.154 v 0 c 0.05463,-0.0254 0.10953,-0.0498 0.166896,-0.0684 0.08987,-0.0428 0.05013,-0.0249 -0.152077,0.0918 -0.01149,0.007 0.02281,-0.0135 0.03395,-0.0208 0.03524,-0.0228 0.06851,-0.0484 0.102419,-0.0731 0.04925,-0.0426 0.09191,-0.0919 0.137548,-0.13831 0.05312,-0.0661 0.109922,-0.12932 0.159502,-0.1983 0.09386,-0.12184 0.193754,-0.2387 0.290379,-0.3583 0.0925,-0.12432 0.176934,-0.25414 0.262703,-0.38314 0.108907,-0.1682 0.210457,-0.34072 0.304398,-0.51777 0.03549,-0.0705 0.07162,-0.1407 0.106608,-0.21147 0.05749,-0.11629 0.111345,-0.23431 0.168095,-0.35093 0.01914,-0.0393 0.03941,-0.0781 0.05911,-0.11715 0.09772,-0.1881 0.189116,-0.37979 0.266973,-0.57701 0,0 0.225108,-0.10249 0.225108,-0.10249 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path909"
d="m 21.134779,275.66652 c -0.05752,-0.0144 -0.116902,-0.0192 -0.175037,-0.03 -0.01381,-0.003 -0.06311,-0.0149 -0.07776,-0.0185 -0.04882,-0.0156 -0.102734,-0.0173 -0.149971,-0.038 -0.01127,-0.005 -0.02169,-0.0116 -0.03253,-0.0175 -0.06454,-0.0354 -0.118413,-0.0842 -0.159065,-0.14522 -0.0402,-0.0513 -0.07056,-0.10718 -0.09046,-0.16914 -0.01413,-0.0576 -0.01751,-0.097 0.0027,-0.15311 0.0199,-0.0523 0.05904,-0.0889 0.103346,-0.12086 0.04646,-0.03 0.0905,-0.0634 0.13516,-0.0959 0.113195,-0.0717 0.221947,-0.16144 0.350122,-0.2023 0.05385,-0.0145 0.11022,-0.0149 0.165629,-0.0162 0.03496,-0.004 0.07114,0.004 0.105999,-1.5e-4 0.0164,-0.002 0.03212,-0.008 0.04819,-0.0114 0.05577,-0.0118 0.112784,-0.0167 0.169617,-0.02 0.04851,-0.005 0.0863,0.0238 0.114658,0.06 0.02536,0.042 0.04661,0.0864 0.06887,0.13012 0.02902,0.0518 0.05853,0.1037 0.07781,0.16003 0.01413,0.0492 0.01667,0.10031 0.01789,0.15113 -4.5e-4,0.0345 0.0038,0.0693 -0.0047,0.10316 -0.0047,0.0186 -0.01339,0.0379 -0.02069,0.0555 -0.02365,0.057 -0.06481,0.10307 -0.105613,0.14831 -0.0386,0.0466 -0.0829,0.0857 -0.132976,0.11932 -0.120124,0.0919 -0.242225,0.1405 -0.376462,0.19161 -0.0344,0.007 -0.06627,0.0207 -0.0981,0.0349 0,0 0.194112,-0.15316 0.194112,-0.15316 v 0 c 0.03269,-0.0128 0.06563,-0.0244 0.09916,-0.0349 0.02664,-0.0106 0.05391,-0.0198 0.08043,-0.0306 0.08022,-0.0327 0.210067,-0.12069 -0.13019,0.082 0.05157,-0.0304 0.09741,-0.0666 0.135403,-0.11322 0.0405,-0.0433 0.08261,-0.0867 0.108742,-0.14061 0.01076,-0.0239 0.02588,-0.0496 0.02978,-0.0759 0.0035,-0.0238 -0.0025,-0.0491 -3.9e-5,-0.073 -8.47e-4,-0.0485 -0.002,-0.0974 -0.01428,-0.1446 -0.01785,-0.0555 -0.04688,-0.10636 -0.07593,-0.15668 -0.02191,-0.042 -0.042,-0.085 -0.06648,-0.12556 -0.02724,-0.0319 -0.05894,-0.0464 -0.101463,-0.0404 -0.05621,0.004 -0.112381,0.01 -0.167353,0.0228 -0.05195,0.01 -0.10418,0.007 -0.156866,0.008 -0.0541,0.002 -0.109343,0.003 -0.160528,0.0231 -0.0885,0.0415 -0.03873,0.019 0.169225,-0.10074 0.0074,-0.004 -0.01456,0.009 -0.02192,0.0135 -0.04837,0.0291 0.002,-0.003 -0.0472,0.0296 -0.0079,0.005 -0.01597,0.0102 -0.02396,0.0153 -0.04542,0.0317 -0.08806,0.067 -0.135123,0.0963 -0.04365,0.0289 -0.08593,0.0579 -0.108618,0.10716 -0.0027,0.006 -0.01459,0.0331 -0.01645,0.0397 -0.0092,0.0323 0.001,0.0664 0.0059,0.0986 0.01781,0.0603 0.04747,0.11361 0.08634,0.16313 0.03891,0.0573 0.09024,0.10277 0.152189,0.13444 0.05699,0.0261 0.118823,0.0353 0.179221,0.051 0.08357,0.0201 0.168801,0.0307 0.253063,0.0475 0,0 -0.203758,0.14156 -0.203758,0.14156 z"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;stroke:#000000;stroke-width:0.10123735;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:0.42897728"
d="m 51.236435,82.363248 c -0.303735,-0.306459 -0.552244,-0.601654 -0.552244,-0.655989 0,-0.05434 -0.0783,-0.119267 -0.173992,-0.144291 -0.09569,-0.02502 -1.819841,-1.60672 -3.831437,-3.514879 -3.284227,-3.115349 -3.658247,-3.498438 -3.665295,-3.754166 -0.0071,-0.257575 -0.03709,-0.287437 -0.313843,-0.3125 -0.266439,-0.02413 -0.774314,-0.472013 -3.928572,-3.464523 -3.091671,-2.93313 -3.622576,-3.473491 -3.622576,-3.687094 0,-0.351224 -0.384589,-0.721233 -0.68914,-0.663014 -0.183232,0.03503 -0.319318,-0.03727 -0.646863,-0.34365 -0.363794,-0.340286 -0.410452,-0.425352 -0.379365,-0.691639 0.02913,-0.24951 -0.0095,-0.339017 -0.216933,-0.502154 -0.171947,-0.135253 -0.326932,-0.183612 -0.486305,-0.151737 -0.289362,0.05787 -0.438537,-0.08086 -0.438537,-0.407829 0,-0.223259 -0.03149,-0.25 -0.294379,-0.25 -0.22538,0 -0.375434,-0.08301 -0.640188,-0.35414 l -0.345809,-0.35414 0.707153,-0.740337 c 0.388933,-0.407185 2.292288,-2.418846 4.229677,-4.470357 1.937389,-2.051511 3.567088,-3.718595 3.621554,-3.70463 0.108608,0.02785 20.401188,19.28124 20.399556,19.354892 -5.55e-4,0.02502 -1.71254,1.994159 -3.804413,4.375855 -2.091872,2.381697 -3.932194,4.479569 -4.089604,4.661938 l -0.2862,0.331581 z"
id="path911"
inkscape:connector-curvature="0"
transform="matrix(0.26458333,0,0,0.26458333,0,267)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 36 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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="30mm"
height="30mm"
viewBox="0 0 30 30"
version="1.1"
id="svg871"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="shading.svg">
<defs
id="defs865">
<linearGradient
inkscape:collect="always"
id="linearGradient1422">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop1418" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop1420" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1422"
id="radialGradient1424"
cx="14.950389"
cy="281.9661"
fx="14.950389"
fy="281.9661"
r="13.931085"
gradientTransform="matrix(1,0,0,1.0083935,0,-2.3666712)"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="47.362246"
inkscape:cy="32.247958"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="3840"
inkscape:window-height="2035"
inkscape:window-x="-13"
inkscape:window-y="-13"
inkscape:window-maximized="1" />
<metadata
id="metadata868">
<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:creator>
<cc:Agent>
<dc:title>Jakub Melka</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Vrstva 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-267)">
<rect
style="fill:url(#radialGradient1424);stroke:none;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1"
id="rect1416"
width="27.56217"
height="27.79603"
x="1.1693041"
y="268.06808" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB