Merge branch 'feature/Exporter' into develop

This commit is contained in:
Olivier Keshavjee 2016-04-15 14:24:54 +02:00
commit c14f2493fb
529 changed files with 42650 additions and 939 deletions

View file

@ -20,8 +20,9 @@ Be sure to have all **dependencies** installed !
## Dependencies
- Python 3
- PyQt5
- libqt5svg5
- lxml
- Qt SVG (`libqt5svg5` on Ubuntu)
- Qt Webkit (`python3-pyqt5.qtwebkit` on Ubuntu)
- lxml (`python3-lxml` on Ubuntu)
Optional:
- pyenchant

View file

@ -1,6 +1,5 @@
FORMS += ../manuskript/ui/revisions_ui.ui
FORMS += ../manuskript/ui/mainWindow.ui
FORMS += ../manuskript/ui/compileDialog_ui.ui
FORMS += ../manuskript/ui/search_ui.ui
FORMS += ../manuskript/ui/tools/frequency_ui.ui
FORMS += ../manuskript/ui/welcome_ui.ui
@ -20,6 +19,10 @@ FORMS += ../manuskript/ui/views/basicItemView_ui.ui
FORMS += ../manuskript/ui/views/sldImportance_ui.ui
FORMS += ../manuskript/ui/views/storylineView_ui.ui
FORMS += ../manuskript/ui/exporters/exporter_ui.ui
FORMS += ../manuskript/ui/exporters/exportersManager_ui.ui
FORMS += ../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui
SOURCES += ../manuskript/exporter/__init__.py
SOURCES += ../manuskript/load_save/version_0.py
@ -35,7 +38,6 @@ SOURCES += ../manuskript/models/worldModel.py
SOURCES += ../manuskript/settingsWindow.py
SOURCES += ../manuskript/ui/cheatSheet.py
SOURCES += ../manuskript/ui/collapsibleDockWidgets.py
SOURCES += ../manuskript/ui/compileDialog.py
SOURCES += ../manuskript/ui/editors/fullScreenEditor.py
SOURCES += ../manuskript/ui/editors/locker.py
SOURCES += ../manuskript/ui/editors/mainEditor.py
@ -61,6 +63,20 @@ SOURCES += ../manuskript/ui/views/textEditCompleter.py
SOURCES += ../manuskript/ui/views/textEditView.py
SOURCES += ../manuskript/ui/views/treeView.py
SOURCES += ../manuskript/ui/welcome.py
SOURCES += ../manuskript/ui/exporters/exporter.py
SOURCES += ../manuskript/ui/exporters/exportersManager.py
SOURCES += ../manuskript/ui/exporters/manuskript/plainTextSettings.py
SOURCES += ../manuskript/exporter/basic.py
SOURCES += ../manuskript/exporter/mmd.py
SOURCES += ../manuskript/exporter/pandoc.py
SOURCES += ../manuskript/exporter/manuskript/__init__.py
SOURCES += ../manuskript/exporter/manuskript/HTML.py
SOURCES += ../manuskript/exporter/manuskript/markdown.py
SOURCES += ../manuskript/exporter/manuskript/plainText.py
TRANSLATIONS += manuskript_fr.ts
TRANSLATIONS += manuskript_es.ts

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

View file

@ -1,5 +1,128 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="fr" sourcelanguage="en">
<context>
<name>Export</name>
<message>
<location filename="../manuskript/exporter/manuskript/__init__.py" line="14"/>
<source>Default exporter, provides basic formats used by other exporters.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/manuskript/HTML.py" line="17"/>
<source>Basic HTML output using python module &apos;markdown&apos;.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/manuskript/HTML.py" line="18"/>
<source>python module &apos;markdown&apos;.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/mmd.py" line="11"/>
<source>&lt;p&gt;A superset of markdown.&lt;/p&gt;
&lt;p&gt;Website: &lt;a href=&quot;http://fletcherpenney.net/multimarkdown/&quot;&gt;http://fletcherpenney.net/multimarkdown/&lt;/a&gt;&lt;/p&gt;
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/pandoc.py" line="9"/>
<source>A little known format modestly used. You know, web sites for example.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/pandoc.py" line="20"/>
<source>&lt;p&gt;A universal document convertor. Can be used to convert markdown to a wide range of other
formats.&lt;/p&gt;
&lt;p&gt;Website: &lt;a href=&quot;http://www.pandoc.org&quot;&gt;http://pandoc.org/&lt;/a&gt;&lt;/p&gt;
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/manuskript/HTML.py" line="50"/>
<source>HTML</source>
<translation type="unfinished">HTML</translation>
</message>
<message>
<location filename="../manuskript/exporter/manuskript/HTML.py" line="51"/>
<source>Source</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/manuskript/markdown.py" line="14"/>
<source>Just like plain text, excepts adds markdown titles.
Presupposes that texts are formatted in markdown.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/manuskript/markdown.py" line="76"/>
<source>Preview with highlighter.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/manuskript/plainText.py" line="14"/>
<source>Plain text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/exporter/manuskript/plainText.py" line="15"/>
<source>Simplest export to plain text. Allows you to use your own markup not understood
by manuskript, for example &lt;a href=&apos;www.fountain.io&apos;&gt;Fountain&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ExportersManager</name>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="14"/>
<source>Manage Exporters</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="21"/>
<source>Manuskript</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="75"/>
<source>Description</source>
<translation type="unfinished">Description</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="109"/>
<source>Offers export to</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="186"/>
<source>Status</source>
<translation type="unfinished">Status</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="192"/>
<source>Status:</source>
<translation type="unfinished">Status:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="212"/>
<source>Version:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="235"/>
<source>Path:</source>
<translation type="unfinished">Chemin:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="260"/>
<source>...</source>
<translation type="unfinished">...</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager_ui.ui" line="275"/>
<source>{HelpText}</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>FrequencyAnalyzer</name>
<message>
@ -251,7 +374,11 @@
<translation>Étapes de résolution</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="970"/>
=======
<location filename="../manuskript/mainWindow.py" line="975"/>
>>>>>>> feature/Exporter
<source>Outline</source>
<translation>Plan</translation>
</message>
@ -331,7 +458,11 @@
<translation>Et si...?</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="969"/>
=======
<location filename="../manuskript/mainWindow.py" line="974"/>
>>>>>>> feature/Exporter
<source>Index cards</source>
<translation>Cartes</translation>
</message>
@ -341,12 +472,20 @@
<translation>F9</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="968"/>
=======
<location filename="../manuskript/mainWindow.py" line="973"/>
>>>>>>> feature/Exporter
<source>Tree</source>
<translation>Arbre</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="964"/>
=======
<location filename="../manuskript/mainWindow.py" line="969"/>
>>>>>>> feature/Exporter
<source>Compile</source>
<translation>Compilation</translation>
</message>
@ -391,152 +530,272 @@
<translation>Le fichier {} n&apos;existe pas. Essayez encore.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="480"/>
=======
<location filename="../manuskript/mainWindow.py" line="482"/>
>>>>>>> feature/Exporter
<source>Project {} saved.</source>
<translation>Le projet {} a é enregistré.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="501"/>
=======
<location filename="../manuskript/mainWindow.py" line="503"/>
>>>>>>> feature/Exporter
<source>Project {} loaded.</source>
<translation>Le projet {} a é chargé.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="504"/>
=======
<location filename="../manuskript/mainWindow.py" line="506"/>
>>>>>>> feature/Exporter
<source>Project {} loaded with some errors:</source>
<translation>Le projet {} a é chargé, avec des erreurs:</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="506"/>
=======
<location filename="../manuskript/mainWindow.py" line="508"/>
>>>>>>> feature/Exporter
<source> * {} wasn&apos;t found in project file.</source>
<translation>* {} n&apos;a pas é trouvé dans le fichier du projet.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="507"/>
=======
<location filename="../manuskript/mainWindow.py" line="509"/>
>>>>>>> feature/Exporter
<source>Project {} loaded with some errors.</source>
<translation>Le projet {} a é chargé avec des erreurs.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="746"/>
=======
<location filename="../manuskript/mainWindow.py" line="753"/>
>>>>>>> feature/Exporter
<source> (~{} pages)</source>
<translation> (~{} pages)</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="750"/>
=======
<location filename="../manuskript/mainWindow.py" line="757"/>
>>>>>>> feature/Exporter
<source>Words: {}{}</source>
<translation>Mots: {}{}</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="758"/>
=======
<location filename="../manuskript/mainWindow.py" line="763"/>
>>>>>>> feature/Exporter
<source>Book summary</source>
<translation>Résumé du livre</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="759"/>
=======
<location filename="../manuskript/mainWindow.py" line="764"/>
>>>>>>> feature/Exporter
<source>Project tree</source>
<translation>Arborescence</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="760"/>
=======
<location filename="../manuskript/mainWindow.py" line="765"/>
>>>>>>> feature/Exporter
<source>Metadata</source>
<translation>Métadonnées</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="819"/>
=======
<location filename="../manuskript/mainWindow.py" line="824"/>
>>>>>>> feature/Exporter
<source>Enter infos about your book, and yourself.</source>
<translation>Entrez toutes les informations relatives au livre, ainsi qu&apos;à vous.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="832"/>
=======
<location filename="../manuskript/mainWindow.py" line="837"/>
>>>>>>> feature/Exporter
<source>Create your characters.</source>
<translation>Créez ici vos personnage.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="835"/>
=======
<location filename="../manuskript/mainWindow.py" line="840"/>
>>>>>>> feature/Exporter
<source>Develop plots.</source>
<translation>Développez vos intrigues.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="838"/>
=======
<location filename="../manuskript/mainWindow.py" line="843"/>
>>>>>>> feature/Exporter
<source>Create the outline of your masterpiece.</source>
<translation>Créez le plan de votre chef-d&apos;œuvre.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="841"/>
=======
<location filename="../manuskript/mainWindow.py" line="846"/>
>>>>>>> feature/Exporter
<source>Write.</source>
<translation>Écrivez.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="844"/>
=======
<location filename="../manuskript/mainWindow.py" line="849"/>
>>>>>>> feature/Exporter
<source>Debug infos. Sometimes useful.</source>
<translation>Des infos pour débugger des fois pendant qu&apos;on code c&apos;est utile.</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="858"/>
=======
<location filename="../manuskript/mainWindow.py" line="863"/>
>>>>>>> feature/Exporter
<source>Dictionary</source>
<translation>Dictionnaire</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="871"/>
=======
<location filename="../manuskript/mainWindow.py" line="876"/>
>>>>>>> feature/Exporter
<source>Install PyEnchant to use spellcheck</source>
<translation>Installez PyEnchant pour profiter du correcteur orthographique</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="960"/>
=======
<location filename="../manuskript/mainWindow.py" line="965"/>
>>>>>>> feature/Exporter
<source>Nothing</source>
<translation>Rien</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="961"/>
=======
<location filename="../manuskript/mainWindow.py" line="966"/>
>>>>>>> feature/Exporter
<source>POV</source>
<translation>POV</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="962"/>
=======
<location filename="../manuskript/mainWindow.py" line="967"/>
>>>>>>> feature/Exporter
<source>Label</source>
<translation>Label</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="963"/>
=======
<location filename="../manuskript/mainWindow.py" line="968"/>
>>>>>>> feature/Exporter
<source>Progress</source>
<translation>Progrès</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="987"/>
=======
<location filename="../manuskript/mainWindow.py" line="992"/>
>>>>>>> feature/Exporter
<source>Icon color</source>
<translation>Couleur de l&apos;icone</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="988"/>
=======
<location filename="../manuskript/mainWindow.py" line="993"/>
>>>>>>> feature/Exporter
<source>Text color</source>
<translation>Couleur du texte</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="989"/>
=======
<location filename="../manuskript/mainWindow.py" line="994"/>
>>>>>>> feature/Exporter
<source>Background color</source>
<translation>Couleur de l&apos;arrière-plan</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="980"/>
=======
<location filename="../manuskript/mainWindow.py" line="985"/>
>>>>>>> feature/Exporter
<source>Icon</source>
<translation>Icone</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="981"/>
=======
<location filename="../manuskript/mainWindow.py" line="986"/>
>>>>>>> feature/Exporter
<source>Text</source>
<translation>Texte</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="982"/>
=======
<location filename="../manuskript/mainWindow.py" line="987"/>
>>>>>>> feature/Exporter
<source>Background</source>
<translation>Arrière-plan</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="983"/>
=======
<location filename="../manuskript/mainWindow.py" line="988"/>
>>>>>>> feature/Exporter
<source>Border</source>
<translation>Bordure</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="984"/>
=======
<location filename="../manuskript/mainWindow.py" line="989"/>
>>>>>>> feature/Exporter
<source>Corner</source>
<translation>Coin</translation>
</message>
@ -656,18 +915,30 @@
<translation>&amp;Analyseur de fréquence</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="761"/>
=======
<location filename="../manuskript/mainWindow.py" line="766"/>
>>>>>>> feature/Exporter
<source>Story line</source>
<translation></translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="822"/>
=======
<location filename="../manuskript/mainWindow.py" line="827"/>
>>>>>>> feature/Exporter
<source>The basic situation, in the form of a &apos;What if...?&apos; question. Ex: &apos;What if the most dangerous
evil wizard could wasn&apos;t abled to kill a baby?&apos; (Harry Potter)</source>
<translation>La situation de base, sous la forme d&apos;une question &quot;Et si?&quot;. Par exemple: &quot;Et si le plus dangereux des sorciers maléfiques n&apos;était pas capable de tuer un petit bébé?&quot; (Harry Potter)</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/mainWindow.py" line="827"/>
=======
<location filename="../manuskript/mainWindow.py" line="832"/>
>>>>>>> feature/Exporter
<source>Take time to think about a one sentence (~50 words) summary of your book. Then expand it to
a paragraph, then to a page, then to a full summary.</source>
<translation>Prenez le temps de penser à une phrase (~50 mots) qui résume votre livre. Ensuite, développez- en un paragraphe, puis une page, puis un résumé complet.</translation>
@ -1232,12 +1503,20 @@ des lignes:</translation>
<message>
<location filename="../manuskript/ui/views/textEditView.py" line="426"/>
<source>&amp;Add to dictionary</source>
<<<<<<< HEAD
<translation type="unfinished"></translation>
=======
<translation>&amp;Ajouter au dictionnaire</translation>
>>>>>>> feature/Exporter
</message>
<message>
<location filename="../manuskript/ui/views/textEditView.py" line="438"/>
<source>&amp;Remove from custom dictionary</source>
<<<<<<< HEAD
<translation type="unfinished"></translation>
=======
<translation>&amp;Supprimer du dictionnaire perso</translation>
>>>>>>> feature/Exporter
</message>
</context>
<context>
@ -1422,59 +1701,6 @@ des lignes:</translation>
<translation></translation>
</message>
</context>
<context>
<name>compileDialog</name>
<message>
<location filename="../manuskript/ui/compileDialog_ui.ui" line="14"/>
<source>Dialog</source>
<translation>Dialog</translation>
</message>
<message>
<location filename="../manuskript/ui/compileDialog_ui.ui" line="38"/>
<source>Compile as:</source>
<translation>Compiler comme:</translation>
</message>
<message>
<location filename="../manuskript/ui/compileDialog_ui.ui" line="66"/>
<source>Folder:</source>
<translation>Dossier:</translation>
</message>
<message>
<location filename="../manuskript/ui/compileDialog_ui.ui" line="99"/>
<source>...</source>
<translation>...</translation>
</message>
<message>
<location filename="../manuskript/ui/compileDialog_ui.ui" line="89"/>
<source>File name:</source>
<translation>Fichier:</translation>
</message>
<message>
<location filename="../manuskript/ui/compileDialog_ui.ui" line="137"/>
<source>Compile</source>
<translation>Compiler</translation>
</message>
<message>
<location filename="../manuskript/ui/compileDialog_ui.ui" line="144"/>
<source>Cancel</source>
<translation>Annuler</translation>
</message>
<message>
<location filename="../manuskript/ui/compileDialog.py" line="55"/>
<source>Working...</source>
<translation>En cours...</translation>
</message>
<message>
<location filename="../manuskript/ui/compileDialog.py" line="71"/>
<source>Chose export folder</source>
<translation>Choisir le dossier</translation>
</message>
<message>
<location filename="../manuskript/ui/compileDialog.py" line="79"/>
<source>Chose export target</source>
<translation>Choisir la cible</translation>
</message>
</context>
<context>
<name>completer</name>
<message>
@ -1507,29 +1733,268 @@ des lignes:</translation>
<context>
<name>exporter</name>
<message>
<location filename="../manuskript/exporter/__init__.py" line="11"/>
<source>HTML</source>
<translation>HTML</translation>
<location filename="../manuskript/ui/exporters/exporter_ui.ui" line="59"/>
<source>Export</source>
<translation>Exporter</translation>
</message>
<message>
<location filename="../manuskript/exporter/__init__.py" line="11"/>
<source>HTML Document (*.html)</source>
<translation>Document HTML (*.html)</translation>
<location filename="../manuskript/ui/exporters/exporter_ui.ui" line="22"/>
<source>Export to:</source>
<translation>Exporter vers:</translation>
</message>
<message>
<location filename="../manuskript/exporter/__init__.py" line="11"/>
<source>Arborescence</source>
<translation>Arborescence</translation>
<location filename="../manuskript/ui/exporters/exporter_ui.ui" line="32"/>
<source>Manage exporters</source>
<translation>Gérer les exporteurs</translation>
</message>
<message>
<location filename="../manuskript/exporter/__init__.py" line="11"/>
<source>OpenDocument (LibreOffice)</source>
<translation>OpenDocument (LibreOffice)</translation>
<location filename="../manuskript/ui/exporters/exporter_ui.ui" line="94"/>
<source>Preview</source>
<translation>Prévisualiser</translation>
</message>
<message>
<location filename="../manuskript/exporter/__init__.py" line="11"/>
<source>OpenDocument (*.odt)</source>
<translation>OpenDocument (*.odt)</translation>
<location filename="../manuskript/ui/exporters/exporter_ui.ui" line="72"/>
<source>Settings</source>
<translation>Réglages</translation>
</message>
</context>
<context>
<name>exporterDialog</name>
<message>
<location filename="../manuskript/ui/exporters/exporter.py" line="43"/>
<source>{} (not implemented yet)</source>
<translation>{} (pas encore implémenté)</translation>
</message>
</context>
<context>
<name>exporterSettings</name>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="14"/>
<source>Form</source>
<translation>Form</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="61"/>
<source>Content</source>
<translation>Contenu</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="67"/>
<source>Decide here what will be included in the final export.</source>
<translation>Choisissez ici ce qui sera inclu dans l&apos;export.</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="96"/>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="101"/>
<source>Title</source>
<translation>Titre</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings.py" line="317"/>
<source>Text</source>
<translation>Texte</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="129"/>
<source>I need more granularity</source>
<translation>J&apos;ai besoin de plus de finesse</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="138"/>
<source>Fi&amp;lters</source>
<translation>Fi&amp;ltres</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="153"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Filters what items will be included in the final export.&lt;br/&gt;&lt;span style=&quot; color:#773333;&quot;&gt;(Not fully implemented yet.)&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Filtrer les éléments qui seront inclus dans l&apos;export.&lt;br/&gt;&lt;span style=&quot; color:#773333;&quot;&gt;(Pas encore pleinement implémenté.)&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="160"/>
<source>Ignore compile status (include all items)</source>
<translation>Ignorer le statut de compilation (i.e. inclure tous les éléments)</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="167"/>
<source>Subitems of:</source>
<translation>Sous-éléments de:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="181"/>
<source>Labels</source>
<translation>Labels</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="188"/>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="240"/>
<source>Separations</source>
<translation>Séparations</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="252"/>
<source>Between folders:</source>
<translation>Entre les dossiers:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings.py" line="84"/>
<source>Empty line</source>
<translation>Ligne vide</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings.py" line="103"/>
<source>Custom</source>
<translation>Personnalisé</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="380"/>
<source>Between texts:</source>
<translation>Entre les textes:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="508"/>
<source>Between folder and text:</source>
<translation>Entre dossier et texte:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="636"/>
<source>Between text and folder:</source>
<translation>Entre texte et dossier:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="783"/>
<source>Transformations</source>
<translation>Transformations</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="792"/>
<source>Typographic replacements:</source>
<translation>Corrections typographiques:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="807"/>
<source>Replace ... with …</source>
<translation>Remplacer ... avec </translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="814"/>
<source>Replace --- with —</source>
<translation>Remplacer --- avec </translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="821"/>
<source>Replace double quotes (&quot;) with:</source>
<translation>Remplacer les guillements doubles (&quot;) avec:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="930"/>
<source>Replace single quotes (&apos;) with:</source>
<translation>Remplacer les guillements simples (&apos;) avec:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1039"/>
<source>Remove multiple spaces</source>
<translation>Supprimer les espaces doubles</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1049"/>
<source>Custom replacements:</source>
<translation>Remplacements personnalisés</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1068"/>
<source>Enabled</source>
<translation>Activé</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1073"/>
<source>Replace</source>
<translation>Remplacer</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1078"/>
<source>With</source>
<translation>Par</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1083"/>
<source>RegExp</source>
<translation>RegExp</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1086"/>
<source>If checked, uses regular expression for replacement. If unchecked, replaced as plain text.</source>
<translation>Si la case est cochée, une expression régulière est utilisée pour le remplacement. Sinon, le remplacement est effectué en texte simple.</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1172"/>
<source>Preview</source>
<translation>Prévisualiser</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1178"/>
<source>Font</source>
<translation>Police</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1184"/>
<source>Font:</source>
<translation>Police:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings_ui.ui" line="1194"/>
<source>Font size:</source>
<translation>Taille de la police:</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings.py" line="311"/>
<source>Folder</source>
<translation>Dosser</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings.py" line="334"/>
<source>{}Level {} folder</source>
<translation>{}Dossier de niveau {}</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/manuskript/plainTextSettings.py" line="337"/>
<source>{}Level {} text</source>
<translation>{}Texte de niveau {}</translation>
</message>
</context>
<context>
<name>exportersManager</name>
<message>
<location filename="../manuskript/ui/exporters/exportersManager.py" line="68"/>
<source>Installed</source>
<translation>Installé</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager.py" line="74"/>
<source>Not found</source>
<translation>Pas trouvé</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager.py" line="77"/>
<source>{} not found. Install it, or set path manually.</source>
<translation>{} n&apos;a pas é trouvé. Installé le, ou indiquez l&apos;emplacement manuellement.</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager.py" line="102"/>
<source>&lt;b&gt;Status:&lt;/b&gt; uninstalled.</source>
<translation>&lt;b&gt;Status:&lt;/b&gt; non-installé.</translation>
</message>
<message>
<location filename="../manuskript/ui/exporters/exportersManager.py" line="104"/>
<source>&lt;b&gt;Requires:&lt;/b&gt; </source>
<translation>&lt;b&gt;Nécessite:&lt;/b&gt; </translation>
</message>
</context>
<context>
@ -1695,6 +2160,14 @@ des lignes:</translation>
<translation>F11</translation>
</message>
</context>
<context>
<name>markdownSettings</name>
<message>
<location filename="../manuskript/exporter/manuskript/markdown.py" line="74"/>
<source>Markdown</source>
<translation>Markdown</translation>
</message>
</context>
<context>
<name>metadataView</name>
<message>
@ -1867,12 +2340,12 @@ des lignes:</translation>
<translation>Cible</translation>
</message>
<message>
<location filename="../manuskript/models/outlineModel.py" line="718"/>
<location filename="../manuskript/models/outlineModel.py" line="731"/>
<source>{} words / {} ({})</source>
<translation>{} mots / {} ({})</translation>
</message>
<message>
<location filename="../manuskript/models/outlineModel.py" line="723"/>
<location filename="../manuskript/models/outlineModel.py" line="736"/>
<source>{} words</source>
<translation>{} mots</translation>
</message>
@ -2816,12 +3289,20 @@ des lignes:</translation>
<translation>Créer un nouveau projet</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/ui/welcome.py" line="369"/>
=======
<location filename="../manuskript/ui/welcome.py" line="367"/>
>>>>>>> feature/Exporter
<source>Chapter</source>
<translation>Chapitre</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/ui/welcome.py" line="370"/>
=======
<location filename="../manuskript/ui/welcome.py" line="368"/>
>>>>>>> feature/Exporter
<source>Scene</source>
<translation>Scène</translation>
</message>
@ -2866,37 +3347,65 @@ des lignes:</translation>
<translation>&lt;b&gt;Total:&lt;/b&gt; {} mots (~ {} pages)</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/ui/welcome.py" line="367"/>
=======
<location filename="../manuskript/ui/welcome.py" line="365"/>
>>>>>>> feature/Exporter
<source>Idea</source>
<translation>Idée</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/ui/welcome.py" line="368"/>
=======
<location filename="../manuskript/ui/welcome.py" line="366"/>
>>>>>>> feature/Exporter
<source>Note</source>
<translation>Note</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/ui/welcome.py" line="371"/>
=======
<location filename="../manuskript/ui/welcome.py" line="369"/>
>>>>>>> feature/Exporter
<source>Research</source>
<translation>Recherche</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/ui/welcome.py" line="379"/>
=======
<location filename="../manuskript/ui/welcome.py" line="377"/>
>>>>>>> feature/Exporter
<source>TODO</source>
<translation>TODO</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/ui/welcome.py" line="380"/>
=======
<location filename="../manuskript/ui/welcome.py" line="378"/>
>>>>>>> feature/Exporter
<source>First draft</source>
<translation>Premier brouillon</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/ui/welcome.py" line="381"/>
=======
<location filename="../manuskript/ui/welcome.py" line="379"/>
>>>>>>> feature/Exporter
<source>Second draft</source>
<translation>Second brouillon</translation>
</message>
<message>
<<<<<<< HEAD
<location filename="../manuskript/ui/welcome.py" line="382"/>
=======
<location filename="../manuskript/ui/welcome.py" line="380"/>
>>>>>>> feature/Exporter
<source>Final</source>
<translation>Final</translation>
</message>

View file

@ -0,0 +1,6 @@
<svg width="128" xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 0 128 128" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="M 13.714844 0 L 82.285156 0 C 96 0 96 0 96 14.222656 L 96 113.777344 C 96 128 96 128 82.285156 128 L 13.714844 128 C 0 128 0 128 0 113.777344 L 0 14.222656 C 0 0 0 0 13.714844 0 Z "/>
<path style="fill:#268bd2" d="M 75.003906 107 C 76.128906 107 77.753906 106 79.753906 104 L 119.753906 72 C 127.78125 63.96875 127.753906 64 119.753906 56 L 79.753906 24 C 73.753906 18 72.128906 21 71.753906 33 C 71.628906 37 71.753906 42 71.753906 48 C 71.667969 48 71.585938 48 71.503906 48 C 31.753906 48 15.753906 72 16.003906 104.25 C 31.753906 88 47.753906 80 71.753906 80.5 C 71.746094 86.234375 71.632812 91.132812 71.753906 95 C 72.003906 103 72.753906 107 75.003906 107 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 870 B

View file

@ -0,0 +1,12 @@
<svg width="128" xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 0 128 128" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill-rule:evenodd">
<path style="fill:#aaa;fill-opacity:.941" d="M 37.332031 0.03125 L 90.667969 0.03125 C 104 0.03125 104 -1.300781 104 13.359375 L 104 66.671875 C 104 80 104 80 90.667969 80 L 37.332031 80 C 24 80 24 80 24 66.671875 L 24 13.359375 C 24 0.03125 24 0.03125 37.332031 0.03125 Z "/>
<path style="fill:#ccc" d="M 12.800781 32 L 115.199219 32 C 128 32 128 32 128 44.800781 L 128 83.199219 C 128 96 128 96 115.199219 96 L 12.800781 96 C 0 96 0 96 0 83.199219 L 0 44.800781 C 0 32 0 32 12.800781 32 Z "/>
</g>
<path style="fill:#dc322f" d="M 24 64 L 104 64 L 104 128 L 24 128 Z "/>
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="M 104 64 C 104 86.089844 86.089844 104 64 104 C 41.910156 104 24 86.089844 24 64 C 24 41.910156 41.910156 24 64 24 C 86.089844 24 104 41.910156 104 64 Z "/>
<path style="fill:#555" d="M 90.664062 64.003906 C 90.664062 78.730469 78.726562 90.671875 64 90.671875 C 49.273438 90.671875 37.335938 78.730469 37.335938 64.003906 C 37.335938 49.277344 49.273438 37.335938 64 37.335938 C 78.726562 37.335938 90.664062 49.277344 90.664062 64.003906 Z "/>
<path style="fill:#eee" d="M 83.996094 54 C 83.996094 59.523438 79.519531 64 74 64 C 68.476562 64 64 59.523438 64 54 C 64 48.476562 68.476562 44 74 44 C 79.519531 44 83.996094 48.476562 83.996094 54 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,12 @@
<svg width="128" xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 0 128 128" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill:#ec86ab">
<path d="M 19.347656 13.855469 L 19.347656 79.832031 L 24.84375 79.832031 L 24.84375 13.855469 Z "/>
<path d="M 30.351562 82.578125 C 30.351562 87.121094 26.652344 90.820312 22.097656 90.820312 C 17.550781 90.820312 13.855469 87.121094 13.855469 82.578125 C 13.855469 78.019531 17.550781 74.324219 22.097656 74.324219 C 26.652344 74.324219 30.351562 78.019531 30.351562 82.578125 Z "/>
<path d="M 52.34375 112.8125 L 52.34375 30.351562 L 46.835938 30.351562 L 46.835938 112.8125 Z "/>
<path d="M 41.339844 27.605469 C 41.339844 23.046875 45.039062 19.347656 49.582031 19.347656 C 54.140625 19.347656 57.839844 23.046875 57.839844 27.605469 C 57.839844 32.148438 54.140625 35.847656 49.582031 35.847656 C 45.039062 35.847656 41.339844 32.148438 41.339844 27.605469 Z "/>
<path d="M 74.324219 13.855469 L 74.324219 74.324219 L 79.832031 74.324219 L 79.832031 13.855469 Z "/>
<path d="M 85.324219 77.070312 C 85.324219 81.628906 81.628906 85.324219 77.082031 85.324219 C 72.527344 85.324219 68.828125 81.628906 68.828125 77.070312 C 68.828125 72.527344 72.527344 68.828125 77.082031 68.828125 C 81.628906 68.828125 85.324219 72.527344 85.324219 77.070312 Z "/>
<path d="M 107.316406 112.8125 L 107.316406 68.828125 L 101.824219 68.828125 L 101.824219 112.8125 Z "/>
<path d="M 96.316406 66.082031 C 96.316406 61.523438 100.011719 57.839844 104.570312 57.839844 C 109.113281 57.839844 112.8125 61.523438 112.8125 66.082031 C 112.8125 70.636719 109.113281 74.335938 104.570312 74.335938 C 100.011719 74.335938 96.316406 70.636719 96.316406 66.082031 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,4 @@
<svg width="128" xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 0 128 128" xmlns:xlink="http://www.w3.org/1999/xlink">
<path style="fill:none;stroke:#6aaf53;stroke-linejoin:round;stroke-linecap:round;stroke-width:2" d="M 10.539551 1021.361712 L 37.460449 1021.361712 C 38.310059 1021.361712 39 1022.051653 39 1022.902727 L 39 1033.821673 C 39 1034.672747 38.310059 1035.362688 37.460449 1035.362688 L 10.539551 1035.362688 C 9.689941 1035.362688 9 1034.672747 9 1033.821673 L 9 1022.902727 C 9 1022.051653 9.689941 1021.361712 10.539551 1021.361712 Z " transform="matrix(2.66667 0 0 2.66667 0 -2678.2992)"/>
<path style="fill:#6aaf53" d="M 30.667969 50.667969 C 29.929688 50.667969 29.332031 51.261719 29.332031 52 L 29.332031 76 C 29.332031 76.738281 29.929688 77.332031 30.667969 77.332031 L 62.808594 77.332031 C 63.546875 77.332031 64.144531 76.738281 64.144531 76 L 64.144531 52 C 64.144531 51.261719 63.546875 50.667969 62.808594 50.667969 Z M 40 69.332031 L 40 58.667969 L 42.667969 58.667969 L 42.667969 69.332031 Z M 45.332031 69.332031 L 45.332031 58.667969 L 48 58.667969 L 48 69.332031 Z M 50.667969 69.332031 L 50.667969 58.667969 L 53.332031 58.667969 L 53.332031 69.332031 Z "/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(48.627451%,61.176471%,20.784314%);fill-opacity:1;" d="M 21.34375 0 C 18.59375 0 16 2.710938 16 5.578125 L 16 122.421875 C 16 125.132812 18.75 128 21.34375 128 L 106.65625 128 C 109.25 128 112 125.132812 112 122.421875 L 112 36 L 76 0 Z M 21.34375 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 84 36 L 112 64 L 112 36 Z M 84 36 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 76 0 L 111.96875 36 L 81.515625 36 C 78.820312 36 76 33.148438 76 30.453125 Z M 76 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 64 87.546875 L 45.78125 69.328125 L 64 51.125 L 70.078125 57.1875 L 57.921875 69.328125 L 64 75.40625 L 82.21875 57.1875 L 66.34375 41.328125 C 65.054688 40.039062 62.945312 40.039062 61.65625 41.328125 L 36 66.984375 C 34.695312 68.273438 34.695312 70.382812 36 71.6875 L 61.65625 97.34375 C 62.945312 98.632812 65.054688 98.632812 66.34375 97.34375 L 92 71.6875 C 93.304688 70.382812 93.304688 68.273438 92 66.984375 L 88.28125 63.265625 Z M 64 87.546875 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(87.45098%,9.411765%,9.411765%);fill-opacity:1;" d="M 21.34375 0 C 18.59375 0 16 2.710938 16 5.578125 L 16 122.421875 C 16 125.132812 18.75 128 21.34375 128 L 106.65625 128 C 109.25 128 112 125.132812 112 122.421875 L 112 36 L 76 0 Z M 21.34375 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 84 36 L 112 64 L 112 36 Z M 84 36 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 76 0 L 111.96875 36 L 81.515625 36 C 78.820312 36 76 33.148438 76 30.453125 Z M 76 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 62.75 42.703125 C 62.75 42.703125 64.59375 59.6875 51.578125 82.125 C 38.5625 104.546875 34.734375 101.53125 33.375 100.765625 C 32 99.984375 30.234375 97.453125 36.015625 92.40625 C 41.78125 87.359375 44.03125 87.453125 44.03125 87.453125 C 44.03125 87.453125 38.75 90.65625 36.703125 93.765625 C 34.640625 96.875 32.984375 98.8125 33.46875 99.6875 C 33.953125 100.5625 39.859375 96.109375 42.296875 92.328125 C 46.1875 86.3125 53.53125 75.125 56.953125 64.453125 C 60.375 53.765625 62.75 42.703125 62.75 42.703125 Z M 62.75 42.703125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 94.828125 82.015625 C 94.828125 82.015625 94.53125 82.796875 91.109375 82.515625 C 87.6875 82.21875 74.375 78.046875 67.234375 69.5 C 60.09375 60.953125 59.5 49.203125 59.015625 43.09375 C 58.515625 36.984375 61.234375 38.6875 61.625 39.453125 C 62.234375 39.96875 62.53125 41.640625 62.53125 41.640625 C 62.53125 41.640625 62.3125 39.140625 61.234375 38.0625 C 60.15625 37 59.203125 36.984375 58.125 38.828125 C 57.046875 40.671875 56.5625 45.8125 57.4375 50.765625 C 58.328125 55.71875 61.953125 67.078125 66.453125 72.3125 C 70.953125 77.5625 79.953125 82.125 86.609375 83.484375 C 93.265625 84.84375 94.828125 82.03125 94.828125 82.03125 Z M 94.828125 82.015625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 51.46875 84.25 C 51.46875 84.25 64.390625 80.078125 76.625 78.921875 C 88.859375 77.75 93.078125 79.015625 94.140625 79.890625 C 95.21875 80.765625 95.21875 81.734375 95.21875 81.734375 C 95.21875 81.734375 96.59375 80.375 95.6875 79 C 94.921875 77.5625 93.75 76.390625 84.0625 76.6875 C 74.375 76.96875 73.6875 77.359375 64.78125 79.015625 C 55.875 80.671875 51.46875 84.25 51.46875 84.25 Z M 51.46875 84.25 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.392157%,40.784314%,80.784314%);fill-opacity:1;" d="M 21.34375 0 C 18.59375 0 16 2.710938 16 5.578125 L 16 122.421875 C 16 125.132812 18.75 128 21.34375 128 L 106.65625 128 C 109.25 128 112 125.132812 112 122.421875 L 112 36 L 76 0 Z M 21.34375 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 84 36 L 112 64 L 112 36 Z M 84 36 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 76 0 L 111.96875 36 L 81.515625 36 C 78.820312 36 76 33.148438 76 30.453125 Z M 76 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 40 44 L 64 44 L 64 64 L 40 64 Z M 40 44 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 68 44 L 88 44 L 88 48 L 68 48 Z M 68 44 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 16 96 L 16 122.671875 C 16 125.265625 18.75 128 21.328125 128 L 106.671875 128 C 109.25 128 112 125.265625 112 122.671875 L 112 96 Z M 16 96 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 68 52 L 88 52 L 88 56 L 68 56 Z M 68 52 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 40.773438 120.304688 C 40.90625 120.335938 41.054688 120.335938 41.21875 120.335938 C 41.367188 120.335938 41.515625 120.335938 41.648438 120.335938 C 42.765625 120.335938 43.6875 120.15625 44.429688 119.773438 C 45.203125 119.414062 45.8125 118.90625 46.25 118.25 C 46.734375 117.601562 47.0625 116.835938 47.242188 115.960938 C 47.453125 115.054688 47.570312 114.070312 47.570312 113 C 47.570312 112.078125 47.484375 111.171875 47.320312 110.28125 C 47.15625 109.414062 46.898438 108.640625 46.484375 107.96875 C 46.085938 107.289062 45.546875 106.765625 44.875 106.367188 C 44.179688 105.945312 43.289062 105.742188 42.210938 105.742188 C 41.992188 105.742188 41.765625 105.742188 41.484375 105.78125 C 41.21875 105.78125 40.992188 105.796875 40.773438 105.84375 L 40.773438 120.304688 M 52.523438 113 C 52.523438 114.992188 52.226562 116.703125 51.648438 118.117188 C 51.09375 119.515625 50.320312 120.648438 49.3125 121.523438 C 48.3125 122.40625 47.09375 123.046875 45.695312 123.460938 C 44.328125 123.859375 42.796875 124.054688 41.140625 124.054688 C 40.265625 124.054688 39.390625 124.023438 38.554688 123.921875 C 37.734375 123.859375 36.84375 123.726562 35.890625 123.546875 L 35.890625 102.539062 C 37.007812 102.320312 38.046875 102.195312 39.03125 102.125 C 40 102.0625 40.921875 102.007812 41.765625 102.007812 C 43.375 102.007812 44.859375 102.226562 46.171875 102.632812 C 47.523438 103.0625 48.65625 103.71875 49.59375 104.625 C 50.515625 105.5 51.21875 106.648438 51.734375 108.03125 C 52.257812 109.398438 52.523438 111.054688 52.523438 113 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 59.625 113 C 59.625 114.054688 59.65625 115.039062 59.742188 115.960938 C 59.859375 116.867188 60.039062 117.65625 60.304688 118.328125 C 60.601562 119 60.992188 119.53125 61.484375 119.921875 C 61.992188 120.320312 62.671875 120.515625 63.507812 120.515625 C 64.328125 120.515625 64.992188 120.320312 65.5 119.921875 C 66.023438 119.53125 66.421875 119 66.6875 118.328125 C 66.976562 117.625 67.164062 116.835938 67.242188 115.929688 C 67.34375 115.023438 67.40625 114.054688 67.40625 113 C 67.40625 111.960938 67.34375 110.992188 67.242188 110.085938 C 67.164062 109.148438 66.976562 108.359375 66.6875 107.6875 C 66.421875 107.007812 66.039062 106.484375 65.53125 106.09375 C 65.039062 105.695312 64.367188 105.5 63.507812 105.5 C 62.671875 105.5 61.992188 105.695312 61.484375 106.09375 C 60.992188 106.484375 60.601562 107.03125 60.304688 107.71875 C 60.039062 108.390625 59.859375 109.179688 59.742188 110.085938 C 59.664062 110.992188 59.625 111.960938 59.625 113 M 54.65625 113 C 54.65625 109.296875 55.445312 106.5 57.015625 104.625 C 58.578125 102.71875 60.726562 101.78125 63.507812 101.78125 C 66.40625 101.78125 68.59375 102.71875 70.109375 104.625 C 71.601562 106.5 72.359375 109.296875 72.359375 113 C 72.359375 116.71875 71.601562 119.515625 70.054688 121.421875 C 68.523438 123.296875 66.351562 124.234375 63.5625 124.234375 C 60.664062 124.234375 58.460938 123.296875 56.929688 121.421875 C 55.414062 119.515625 54.65625 116.71875 54.65625 113 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 85.171875 124.234375 C 81.71875 124.234375 79.070312 123.265625 77.242188 121.304688 C 75.421875 119.367188 74.5 116.601562 74.5 113 C 74.5 111.226562 74.78125 109.625 75.335938 108.242188 C 75.898438 106.84375 76.671875 105.679688 77.640625 104.726562 C 78.640625 103.757812 79.828125 103.03125 81.179688 102.539062 C 82.539062 102.03125 84.039062 101.78125 85.648438 101.78125 C 86.523438 101.78125 87.3125 101.84375 88 101.976562 C 88.710938 102.09375 89.335938 102.242188 89.859375 102.40625 C 90.390625 102.570312 90.835938 102.734375 91.179688 102.914062 C 91.539062 103.109375 91.820312 103.242188 92 103.34375 L 90.734375 106.75 C 90.125 106.40625 89.382812 106.109375 88.515625 105.875 C 87.671875 105.632812 86.6875 105.5 85.570312 105.5 C 84.8125 105.5 84.054688 105.632812 83.3125 105.875 C 82.609375 106.109375 81.953125 106.515625 81.375 107.09375 C 80.8125 107.65625 80.351562 108.40625 79.976562 109.34375 C 79.632812 110.304688 79.46875 111.484375 79.46875 112.898438 C 79.46875 115.351562 79.945312 117.242188 80.898438 118.5625 C 81.867188 119.859375 83.460938 120.515625 85.648438 120.515625 C 86.914062 120.515625 87.96875 120.382812 88.789062 120.140625 C 89.632812 119.875 90.304688 119.625 90.8125 119.367188 L 92.046875 122.734375 C 91.359375 123.117188 90.421875 123.460938 89.21875 123.773438 C 88.070312 124.085938 86.71875 124.234375 85.171875 124.234375 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 68 60 L 88 60 L 88 64 L 68 64 Z M 68 60 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 40 68 L 88 68 L 88 72 L 40 72 Z M 40 68 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 40 76 L 88 76 L 88 80 L 40 80 Z M 40 76 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 40 84 L 88 84 L 88 88 L 40 88 Z M 40 84 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

View file

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.392157%,40.784314%,80.784314%);fill-opacity:1;" d="M 21.34375 0 C 18.59375 0 16 2.710938 16 5.578125 L 16 122.421875 C 16 125.132812 18.75 128 21.34375 128 L 106.65625 128 C 109.25 128 112 125.132812 112 122.421875 L 112 36 L 76 0 Z M 21.34375 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 84 36 L 112 64 L 112 36 Z M 84 36 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 76 0 L 111.96875 36 L 81.515625 36 C 78.820312 36 76 33.148438 76 30.453125 Z M 76 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 40 44 L 64 44 L 64 64 L 40 64 Z M 40 44 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 68 44 L 88 44 L 88 48 L 68 48 Z M 68 44 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 16 96 L 16 122.671875 C 16 125.265625 18.75 128 21.328125 128 L 106.671875 128 C 109.25 128 112 125.265625 112 122.671875 L 112 96 Z M 16 96 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 68 52 L 88 52 L 88 56 L 68 56 Z M 68 52 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 68 60 L 88 60 L 88 64 L 68 64 Z M 68 60 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 40.640625 113.1875 C 40.640625 114.242188 40.671875 115.234375 40.757812 116.15625 C 40.851562 117.0625 41.03125 117.851562 41.296875 118.523438 C 41.578125 119.203125 41.976562 119.726562 42.46875 120.125 C 42.960938 120.515625 43.617188 120.71875 44.445312 120.71875 C 45.25 120.71875 45.890625 120.515625 46.382812 120.125 C 46.898438 119.726562 47.289062 119.203125 47.554688 118.523438 C 47.835938 117.820312 48.015625 117.023438 48.101562 116.125 C 48.195312 115.21875 48.25 114.242188 48.25 113.1875 C 48.25 112.15625 48.195312 111.179688 48.101562 110.273438 C 48.015625 109.335938 47.835938 108.546875 47.554688 107.875 C 47.289062 107.195312 46.914062 106.671875 46.421875 106.273438 C 45.921875 105.882812 45.265625 105.679688 44.445312 105.679688 C 43.617188 105.679688 42.960938 105.882812 42.46875 106.273438 C 41.976562 106.671875 41.578125 107.210938 41.296875 107.90625 C 41.03125 108.578125 40.851562 109.367188 40.757812 110.273438 C 40.671875 111.179688 40.640625 112.15625 40.640625 113.1875 M 35.78125 113.1875 C 35.78125 109.484375 36.554688 106.6875 38.070312 104.8125 C 39.601562 102.898438 41.726562 101.960938 44.445312 101.960938 C 47.257812 101.960938 49.414062 102.898438 50.882812 104.8125 C 52.367188 106.6875 53.101562 109.484375 53.101562 113.1875 C 53.101562 116.914062 52.34375 119.710938 50.851562 121.625 C 49.351562 123.5 47.226562 124.4375 44.476562 124.4375 C 41.65625 124.4375 39.5 123.5 38.007812 121.625 C 36.523438 119.710938 35.78125 116.914062 35.78125 113.1875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 61.023438 120.5 C 61.140625 120.53125 61.289062 120.53125 61.4375 120.53125 C 61.601562 120.53125 61.75 120.53125 61.867188 120.53125 C 62.953125 120.53125 63.859375 120.351562 64.585938 119.976562 C 65.335938 119.609375 65.929688 119.101562 66.375 118.445312 C 66.835938 117.804688 67.164062 117.023438 67.351562 116.15625 C 67.546875 115.25 67.664062 114.257812 67.664062 113.1875 C 67.664062 112.265625 67.578125 111.359375 67.414062 110.476562 C 67.265625 109.601562 67 108.828125 66.609375 108.148438 C 66.210938 107.476562 65.6875 106.953125 65.007812 106.554688 C 64.335938 106.125 63.476562 105.929688 62.40625 105.929688 C 62.210938 105.929688 61.984375 105.929688 61.71875 105.960938 C 61.453125 105.960938 61.226562 105.976562 61.023438 106.023438 L 61.023438 120.5 M 72.5 113.1875 C 72.5 115.179688 72.226562 116.898438 71.648438 118.3125 C 71.101562 119.710938 70.34375 120.84375 69.359375 121.71875 C 68.382812 122.609375 67.203125 123.25 65.835938 123.664062 C 64.484375 124.0625 63 124.257812 61.375 124.257812 C 60.515625 124.257812 59.671875 124.226562 58.851562 124.125 C 58.046875 124.0625 57.171875 123.929688 56.25 123.742188 L 56.25 102.71875 C 57.335938 102.5 58.359375 102.375 59.3125 102.304688 C 60.265625 102.242188 61.15625 102.1875 61.984375 102.1875 C 63.5625 102.1875 65.007812 102.40625 66.296875 102.8125 C 67.609375 103.242188 68.734375 103.90625 69.640625 104.804688 C 70.546875 105.679688 71.234375 106.835938 71.726562 108.21875 C 72.257812 109.585938 72.5 111.25 72.5 113.1875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 92 102.4375 L 92 105.992188 L 85.664062 105.992188 L 85.664062 123.976562 L 80.851562 123.976562 L 80.851562 105.992188 L 74.53125 105.992188 L 74.53125 102.4375 L 92 102.4375 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 40 68 L 88 68 L 88 72 L 40 72 Z M 40 68 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 40 76 L 88 76 L 88 80 L 40 80 Z M 40 76 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 40 84 L 88 84 L 88 88 L 40 88 Z M 40 84 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -0,0 +1,134 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="128"
height="128"
viewBox="0 0 128 128"
version="1.1"
id="svg2"
inkscape:version="0.91 r13725"
sodipodi:docname="application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg">
<metadata
id="metadata37">
<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>
<defs
id="defs35" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="998"
id="namedview33"
showgrid="true"
inkscape:zoom="5.2149125"
inkscape:cx="83.778085"
inkscape:cy="62.666805"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3404" />
</sodipodi:namedview>
<path
inkscape:connector-curvature="0"
id="path5"
d="M 21.34375,0 C 18.59375,0 16,2.710938 16,5.578124 L 16,122.42188 C 16,125.13281 18.75,128 21.34375,128 l 85.3125,0 C 109.25,128 112,125.13281 112,122.42188 L 112,36 76,0 Z m 0,0"
style="fill:#3366cc;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path7"
d="m 84,36 28,28 0,-28 z m 0,0"
style="fill:#000000;fill-opacity:0.19607801;fill-rule:nonzero;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path9"
d="m 76,0 35.96875,36 -30.453126,0 C 78.820312,36 76,33.148438 76,30.453124 Z m 0,0"
style="fill:#ffffff;fill-opacity:0.39215698;fill-rule:nonzero;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path11"
d="m 40,44 24,0 0,20 -24,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path13"
d="m 68,44 20,0 0,4 -20,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path15"
d="m 16,96 0,26.67188 C 16,125.26562 18.75,128 21.328124,128 l 85.343756,0 C 109.25,128 112,125.26562 112,122.67188 L 112,96 Z m 0,0"
style="fill:#000000;fill-opacity:0.19607801;fill-rule:nonzero;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path17"
d="m 68,52 20,0 0,4 -20,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path25"
d="m 68,60 20,0 0,4 -20,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path27"
d="m 40,68 48,0 0,4 -48,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path29"
d="m 40,76 48,0 0,4 -48,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path31"
d="m 40,84 48,0 0,4 -48,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<g
id="g3420"
transform="matrix(1.654857,0,0,1.6591486,2.3030744,19.148352)">
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 20.386719,60.152344 c 0.06641,0.01563 0.140625,0.01563 0.222656,0.01563 0.07422,0 0.148437,0 0.214844,0 0.558593,0 1.019531,-0.08984 1.390625,-0.28125 0.386718,-0.179688 0.691406,-0.433594 0.910156,-0.761719 0.242188,-0.324219 0.40625,-0.707031 0.496094,-1.144531 0.105468,-0.453125 0.164062,-0.945313 0.164062,-1.480469 0,-0.460938 -0.04297,-0.914062 -0.125,-1.359375 -0.08203,-0.433594 -0.210937,-0.820313 -0.417968,-1.15625 -0.199219,-0.339844 -0.46875,-0.601563 -0.804688,-0.800781 -0.347656,-0.210938 -0.792969,-0.3125 -1.332031,-0.3125 -0.109375,0 -0.222657,0 -0.363281,0.01953 -0.132813,0 -0.246094,0.0078 -0.355469,0.03125 l 0,7.230469 M 26.261719,56.5 c 0,0.996094 -0.148438,1.851562 -0.4375,2.558594 -0.277344,0.699218 -0.664063,1.265625 -1.167969,1.703125 -0.5,0.441406 -1.109375,0.761719 -1.808594,0.96875 -0.683594,0.199219 -1.449218,0.296875 -2.277344,0.296875 -0.4375,0 -0.875,-0.01563 -1.292968,-0.06641 -0.410156,-0.03125 -0.855469,-0.09766 -1.332032,-0.1875 l 0,-10.503907 c 0.558594,-0.109375 1.078126,-0.171875 1.570313,-0.207031 0.484375,-0.03125 0.945313,-0.05859 1.367187,-0.05859 0.804688,0 1.546876,0.109375 2.203126,0.3125 0.675781,0.214844 1.242187,0.542969 1.710937,0.996094 0.460937,0.4375 0.8125,1.011719 1.070313,1.703125 0.261718,0.683594 0.394531,1.511719 0.394531,2.484375"
id="path19"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 29.8125,56.5 c 0,0.527344 0.01563,1.019531 0.05859,1.480469 0.05859,0.453125 0.148437,0.847656 0.28125,1.183593 0.148437,0.335938 0.34375,0.601563 0.589844,0.796876 0.253906,0.199218 0.59375,0.296874 1.011718,0.296874 0.410156,0 0.742188,-0.09766 0.996094,-0.296874 0.261719,-0.195313 0.460938,-0.460938 0.59375,-0.796876 0.144531,-0.351562 0.238281,-0.746093 0.277344,-1.199218 0.05078,-0.453125 0.08203,-0.9375 0.08203,-1.464844 0,-0.519531 -0.03125,-1.003906 -0.08203,-1.457031 C 33.58203,54.574219 33.488281,54.179688 33.34375,53.84375 33.210938,53.503906 33.019531,53.242188 32.765625,53.046875 32.519531,52.847656 32.183594,52.75 31.753906,52.75 c -0.417968,0 -0.757812,0.09766 -1.011718,0.296875 -0.246094,0.195313 -0.441407,0.46875 -0.589844,0.8125 -0.132813,0.335937 -0.222656,0.730469 -0.28125,1.183594 -0.03906,0.453125 -0.05859,0.9375 -0.05859,1.457031 m -2.484375,0 c 0,-1.851562 0.394531,-3.25 1.179687,-4.1875 0.78125,-0.953125 1.855469,-1.421875 3.246094,-1.421875 1.449219,0 2.542969,0.46875 3.300782,1.421875 0.746093,0.9375 1.125,2.335938 1.125,4.1875 0,1.859375 -0.378907,3.257812 -1.152344,4.210938 -0.765625,0.9375 -1.851563,1.40625 -3.246094,1.40625 -1.449219,0 -2.550781,-0.46875 -3.316406,-1.40625 C 27.707031,59.757812 27.328125,58.359375 27.328125,56.5"
id="path21"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 42.585938,62.117188 c -1.726563,0 -3.050782,-0.484376 -3.964844,-1.464844 C 37.710938,59.683594 37.25,58.300781 37.25,56.5 c 0,-0.886719 0.140625,-1.6875 0.417969,-2.378906 0.28125,-0.699219 0.667969,-1.28125 1.152343,-1.757813 0.5,-0.484375 1.09375,-0.847656 1.769532,-1.09375 0.679687,-0.253906 1.429687,-0.378906 2.234375,-0.378906 0.4375,0 0.832031,0.03125 1.175781,0.09766 0.355469,0.05859 0.667969,0.132813 0.929688,0.214844 0.265624,0.08203 0.488281,0.164063 0.660156,0.253906 0.179687,0.09766 0.320312,0.164063 0.410156,0.214844 L 45.367188,53.375 C 45.0625,53.203125 44.691406,53.054688 44.257812,52.9375 43.835938,52.816406 43.34375,52.75 42.785156,52.75 c -0.378906,0 -0.757812,0.06641 -1.128906,0.1875 -0.351562,0.117188 -0.679688,0.320312 -0.96875,0.609375 -0.28125,0.28125 -0.511719,0.65625 -0.699219,1.125 -0.171875,0.480469 -0.253906,1.070313 -0.253906,1.777344 0,1.226562 0.238281,2.171875 0.714844,2.832031 0.484375,0.648438 1.28125,0.976562 2.375,0.976562 0.632812,0 1.160156,-0.06641 1.570312,-0.1875 0.421875,-0.132812 0.757813,-0.257812 1.011719,-0.386718 l 0.617188,1.683594 c -0.34375,0.191406 -0.8125,0.363281 -1.414063,0.519531 -0.574219,0.15625 -1.25,0.230469 -2.023437,0.230469"
id="path23"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 54.00216,62 C 53.748254,61.398437 53.43966,60.730469 53.072473,60 52.72091,59.265625 52.34591,58.539063 51.951379,57.8125 51.568567,58.503906 51.18966,59.222656 50.806848,59.984375 50.427941,60.722656 50.103723,61.398437 49.826379,62 l -2.625,0 c 0.132812,-0.324219 0.324219,-0.703125 0.578125,-1.152344 0.257813,-0.445312 0.542969,-0.929687 0.84375,-1.449219 0.316406,-0.515624 0.644531,-1.050781 0.988281,-1.585937 0.339844,-0.5625 0.667969,-1.089844 0.976563,-1.597656 l -3.1875,-5.160157 2.621093,0 1.929688,3.503907 2.03125,-3.503907 2.445312,0 -3.113281,5.109376 c 0.351563,0.507812 0.703125,1.035156 1.039063,1.589843 0.339844,0.558594 0.660156,1.09375 0.941406,1.628907 0.3125,0.519531 0.570312,1.003906 0.796875,1.464843 0.21875,0.449219 0.402344,0.828125 0.527344,1.152344 l -2.617188,0"
id="path15-6"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9 KiB

View file

@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 21.34375 0 C 18.59375 0 16 2.710938 16 5.578125 L 16 122.421875 C 16 125.132812 18.75 128 21.34375 128 L 106.65625 128 C 109.25 128 112 125.132812 112 122.421875 L 112 36 L 76 0 Z M 21.34375 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 84 36 L 112 64 L 112 36 Z M 84 36 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 76 0 L 111.96875 36 L 81.515625 36 C 78.820312 36 76 33.148438 76 30.453125 Z M 76 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 44 L 88 44 L 88 48 L 40 48 Z M 40 44 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 52 L 88 52 L 88 56 L 40 56 Z M 40 52 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 60 L 88 60 L 88 64 L 40 64 Z M 40 60 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 68 L 88 68 L 88 72 L 40 72 Z M 40 68 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 76 L 88 76 L 88 80 L 40 80 Z M 40 76 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 84 L 88 84 L 88 88 L 40 88 Z M 40 84 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 92 L 88 92 L 88 96 L 40 96 Z M 40 92 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 21.34375 0 C 18.59375 0 16 2.710938 16 5.578125 L 16 122.421875 C 16 125.132812 18.75 128 21.34375 128 L 106.65625 128 C 109.25 128 112 125.132812 112 122.421875 L 112 36 L 76 0 Z M 21.34375 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 84 36 L 112 64 L 112 36 Z M 84 36 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 76 0 L 111.96875 36 L 81.515625 36 C 78.820312 36 76 33.148438 76 30.453125 Z M 76 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 44 L 64 44 L 64 64 L 40 64 Z M 40 44 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 68 44 L 88 44 L 88 48 L 68 48 Z M 68 44 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 68 52 L 88 52 L 88 56 L 68 56 Z M 68 52 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 68 60 L 88 60 L 88 64 L 68 64 Z M 68 60 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 68 L 88 68 L 88 72 L 40 72 Z M 40 68 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 76 L 88 76 L 88 80 L 40 80 Z M 40 76 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 84 L 88 84 L 88 88 L 40 88 Z M 40 84 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 92 L 88 92 L 88 96 L 40 96 Z M 40 92 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 21.34375 0 C 18.59375 0 16 2.710938 16 5.578125 L 16 122.421875 C 16 125.132812 18.75 128 21.34375 128 L 106.65625 128 C 109.25 128 112 125.132812 112 122.421875 L 112 36 L 76 0 Z M 21.34375 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 84 36 L 112 64 L 112 36 Z M 84 36 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 76 0 L 111.96875 36 L 81.515625 36 C 78.820312 36 76 33.148438 76 30.453125 Z M 76 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 48 56 L 32 72 L 32 80 L 48 96 L 48 84 L 40 76.007812 L 48 68 Z M 48 56 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 56 L 96 72 L 96 80 L 80 96 L 80 84 L 88 76.007812 L 80 68 Z M 80 56 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 68 56 L 76 56 L 60 96 L 52 96 Z M 68 56 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 21.34375 0 C 18.59375 0 16 2.710938 16 5.578125 L 16 122.421875 C 16 125.132812 18.75 128 21.34375 128 L 106.65625 128 C 109.25 128 112 125.132812 112 122.421875 L 112 36 L 76 0 Z M 21.34375 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 84 36 L 112 64 L 112 36 Z M 84 36 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 76 0 L 111.96875 36 L 81.515625 36 C 78.820312 36 76 33.148438 76 30.453125 Z M 76 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 44 L 88 44 L 88 48 L 40 48 Z M 40 44 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 52 L 88 52 L 88 56 L 40 56 Z M 40 52 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 60 L 88 60 L 88 64 L 40 64 Z M 40 60 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 68 L 88 68 L 88 72 L 40 72 Z M 40 68 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 76 L 88 76 L 88 80 L 40 80 Z M 40 76 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 84 L 88 84 L 88 88 L 40 88 Z M 40 84 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 40 92 L 88 92 L 88 96 L 40 96 Z M 40 92 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="128px"
height="128px"
viewBox="0 0 128 128"
version="1.1"
id="svg2"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-x-tex.svg">
<metadata
id="metadata15">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs13">
<clipPath
id="clipPath-889157936">
<g
transform="translate(0,-1004.3622)"
id="g17">
<path
style="fill:#1890d0"
inkscape:connector-curvature="0"
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
id="path19" />
</g>
</clipPath>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview11"
showgrid="true"
inkscape:zoom="7.375"
inkscape:cx="78.785999"
inkscape:cy="64.288316"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3019" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 21.343551,0.00118802 C 18.593655,0.00124803 16,2.7071535 16,5.5761282 L 16,122.42509 C 16,125.13104 18.749896,128 21.343551,128 l 85.309329,0 c 2.59367,0 5.34355,-2.86896 5.34355,-5.57491 l 0.004,-86.425089 L 76.000431,0 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 83.999995,36.000001 28.000015,28.000002 0,-28.000002 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 76.001231,0.00118802 35.966379,35.99881298 -30.453046,0 c -2.691815,0 -5.513333,-2.853956 -5.513333,-5.545759 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
id="g53"
clip-path="url(#clipPath-889157936)"
transform="matrix(2.666667,0,0,2.666667,-1.7500358e-6,7.9946698)">
<!-- color: #aade54 -->
<g
id="g55">
<path
id="path57"
d="m 20.2,17.02 -8.938,0 -0.262,3.441 0.277,0 c 0.199,-2.578 0.422,-3.03 2.82,-3.03 0.277,0 0.73,0 0.855,0 0.297,0.047 0.297,0.238 0.297,0.594 l 0,8.473 c 0,0.566 -0.047,0.734 -1.352,0.734 l -0.441,0 0,0.375 c 0.746,-0.016 1.52,-0.031 2.277,-0.031 0.758,0 1.535,0.023 2.277,0.031 l 0,-0.375 -0.441,0 c -1.285,0 -1.332,-0.172 -1.332,-0.734 l 0,-8.473 c 0,-0.344 0,-0.527 0.281,-0.594 l 0.848,0 c 2.367,0 2.605,0.449 2.809,3.03 l 0.27,0"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
id="path59"
d="m 27.969,27.07 -0.277,0 c -0.34,2.309 -0.543,3.563 -3.266,3.563 l -2.148,0 c -0.617,0 -0.645,-0.078 -0.645,-0.613 l 0,-4.352 1.457,0 c 1.461,0 1.602,0.539 1.602,1.852 l 0.25,0 0,-4.047 -0.25,0 c 0,1.289 -0.141,1.82 -1.602,1.82 l -1.457,0 0,-3.859 c 0,-0.523 0.027,-0.602 0.645,-0.602 l 2.117,0 c 2.395,0 2.676,0.957 2.891,3.01 l 0.281,0 -0.371,-3.441 -7.84,0 0,0.43 c 1.098,0 1.273,0 1.273,0.699 l 0,8.398 c 0,0.699 -0.176,0.699 -1.273,0.699 l 0,0.375 8.05,0"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
id="path61"
d="m 32.14,21.719 2.289,-3.328 c 0.23,-0.324 0.699,-0.996 1.969,-1.016 l 0,-0.375 c -0.355,0.031 -0.945,0.031 -1.316,0.031 -0.508,0 -1.145,0 -1.531,-0.031 l 0,0.375 c 0.496,0.047 0.621,0.359 0.621,0.609 0,0.188 -0.078,0.313 -0.188,0.465 l -2.043,2.98 -2.289,-3.367 c -0.109,-0.172 -0.125,-0.219 -0.125,-0.266 0,-0.141 0.168,-0.406 0.684,-0.422 l 0,-0.375 c -0.496,0.031 -1.25,0.031 -1.766,0.031 -0.398,0 -1.172,0 -1.547,-0.031 l 0,0.375 c 0.852,0 1.129,0.031 1.469,0.516 l 2.988,4.41 -2.695,3.957 c -0.664,0.965 -1.668,0.984 -1.965,0.984 l 0,0.375 c 0.355,-0.031 0.941,-0.031 1.316,-0.031 0.414,0 1.145,0 1.527,0.031 l 0,-0.375 c -0.477,-0.047 -0.617,-0.359 -0.617,-0.609 0,-0.203 0.078,-0.313 0.156,-0.422 l 2.477,-3.633 2.691,3.977 c 0.121,0.172 0.121,0.219 0.121,0.266 0,0.125 -0.137,0.391 -0.68,0.422 l 0,0.379 c 0.496,-0.031 1.25,-0.031 1.762,-0.031 0.402,0 1.176,0 1.551,0.031 l 0,-0.379 c -0.992,0 -1.148,-0.074 -1.453,-0.516"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 21.34375 0 C 18.59375 0 16 2.710938 16 5.578125 L 16 122.421875 C 16 125.132812 18.75 128 21.34375 128 L 106.65625 128 C 109.25 128 112 125.132812 112 122.421875 L 112 36 L 76 0 Z M 21.34375 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 84 36 L 112 64 L 112 36 Z M 84 36 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 76 0 L 111.96875 36 L 81.515625 36 C 78.820312 36 76 33.148438 76 30.453125 Z M 76 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 48 56 L 32 72 L 32 80 L 48 96 L 48 84 L 40 76.007812 L 48 68 Z M 48 56 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 56 L 96 72 L 96 80 L 80 96 L 80 84 L 88 76.007812 L 80 68 Z M 80 56 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 68 56 L 76 56 L 60 96 L 52 96 Z M 68 56 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 16 16">
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="m 1.714286,4.9999996e-8 8.571429,0 C 12,4.9999996e-8 12,4.9999996e-8 12,1.7777778 L 12,14.222222 C 12,16 12,16 10.285715,16 L 1.714286,16 C 0,16 0,16 0,14.222222 L 0,1.7777778 C 0,4.9999998e-8 0,4.9999998e-8 1.714286,4.9999998e-8 z"/>
<path style="fill:#268bd2" d="m 9.3753602,13.375 c 0.140625,0 0.34375,-0.125 0.59375,-0.375 L 14.96911,9 c 1.003692,-1.0036924 1,-1 0,-2 L 9.9691102,3 c -0.75,-0.75 -0.953125,-0.375 -1,1.125 -0.01563,0.5 0,1.125 0,1.875 -0.01055,-4.4e-5 -0.02069,0 -0.03125,0 -4.96875,0 -6.96875,3 -6.9375,7.03125 C 3.9691102,11 5.9691102,10 8.9691102,10.0625 c -9.56e-4,0.716944 -0.0151,1.329167 0,1.8125 0.03125,1 0.125,1.5 0.40625,1.5 z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 814 B

View file

@ -0,0 +1,14 @@
<svg width="16" xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 16 16">
<g style="fill-rule:evenodd">
<path style="fill:#aaa;fill-opacity:.94" d="m 4.6666667,0.00394322 6.6666663,0 C 13,0.00394322 13,-0.16265773 13,1.6699527 l 0,6.6640378 C 13,10 13,10 11.333333,10 L 4.6666667,10 C 3,10 3,10 3,8.3339905 L 3,1.6699527 C 3,0.00394322 3,0.00394322 4.6666667,0.00394322 z"/>
<path style="fill:#ccc" d="M 1.6,4 14.4,4 C 16,4 16,4 16,5.6 l 0,4.8 C 16,12 16,12 14.4,12 L 1.6,12 C 0,12 0,12 0,10.4 L 0,5.6 C 0,4 0,4 1.6,4 z"/>
</g>
<g transform="matrix(.83333 0 0 .8 -2 -.8)">
<path style="fill:#dc322f" d="m 6,11 12,0 0,10 -12,0 z"/>
</g>
<g style="fill-rule:evenodd" transform="matrix(.83326 0 0 .83331 -1.99875 -1.99971)">
<path style="fill:#fff" d="m 19,12.5 a 5.5,6.5 0 1 1 -11,0 5.5,6.5 0 1 1 11,0 z" transform="matrix(1.091 0 0 .9231 -2.729 .4612)"/>
<path style="fill:#555" d="m 19,12.5 a 5.5,6.5 0 1 1 -11,0 5.5,6.5 0 1 1 11,0 z" transform="matrix(.7273 0 0 .6154 2.181 4.308)"/>
<path style="fill:#eee" d="m 19,12.5 a 5.5,6.5 0 1 1 -11,0 5.5,6.5 0 1 1 11,0 z" transform="matrix(.2727 0 0 .2308 9.818 7.615)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,12 @@
<svg width="16" xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 16 16" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill:#ec86ab">
<path d="M 2.417969 1.730469 L 2.417969 9.980469 L 3.105469 9.980469 L 3.105469 1.730469 Z "/>
<path d="M 3.792969 10.324219 C 3.792969 10.890625 3.332031 11.351562 2.761719 11.351562 C 2.195312 11.351562 1.730469 10.890625 1.730469 10.324219 C 1.730469 9.753906 2.195312 9.289062 2.761719 9.289062 C 3.332031 9.289062 3.792969 9.753906 3.792969 10.324219 Z "/>
<path d="M 6.542969 14.101562 L 6.542969 3.792969 L 5.855469 3.792969 L 5.855469 14.101562 Z "/>
<path d="M 5.167969 3.449219 C 5.167969 2.878906 5.628906 2.417969 6.199219 2.417969 C 6.769531 2.417969 7.230469 2.878906 7.230469 3.449219 C 7.230469 4.019531 6.769531 4.480469 6.199219 4.480469 C 5.628906 4.480469 5.167969 4.019531 5.167969 3.449219 Z "/>
<path d="M 9.289062 1.730469 L 9.289062 9.289062 L 9.980469 9.289062 L 9.980469 1.730469 Z "/>
<path d="M 10.664062 9.632812 C 10.664062 10.203125 10.203125 10.664062 9.636719 10.664062 C 9.066406 10.664062 8.605469 10.203125 8.605469 9.632812 C 8.605469 9.066406 9.066406 8.605469 9.636719 8.605469 C 10.203125 8.605469 10.664062 9.066406 10.664062 9.632812 Z "/>
<path d="M 13.414062 14.101562 L 13.414062 8.605469 L 12.726562 8.605469 L 12.726562 14.101562 Z "/>
<path d="M 12.039062 8.261719 C 12.039062 7.691406 12.5 7.230469 13.070312 7.230469 C 13.640625 7.230469 14.101562 7.691406 14.101562 8.261719 C 14.101562 8.828125 13.640625 9.292969 13.070312 9.292969 C 12.5 9.292969 12.039062 8.828125 12.039062 8.261719 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,4 @@
<svg width="16" xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 16 16" xmlns:xlink="http://www.w3.org/1999/xlink">
<path style="fill:none;stroke:#6aaf53;stroke-linejoin:round;stroke-linecap:round;stroke-width:2" d="M 10.535156 1021.366106 L 37.464844 1021.366106 C 38.308594 1021.366106 39 1022.045794 39 1022.901263 L 39 1033.823138 C 39 1034.666888 38.308594 1035.358294 37.464844 1035.358294 L 10.535156 1035.358294 C 9.691406 1035.358294 9 1034.666888 9 1033.823138 L 9 1022.901263 C 9 1022.045794 9.691406 1021.366106 10.535156 1021.366106 Z " transform="matrix(.33333 0 0 .33333 0 -334.7874)"/>
<path style="fill:#6aaf53" d="M 3.832031 6.332031 C 3.742188 6.332031 3.667969 6.40625 3.667969 6.5 L 3.667969 9.5 C 3.667969 9.59375 3.742188 9.667969 3.832031 9.667969 L 7.851562 9.667969 C 7.945312 9.667969 8.019531 9.59375 8.019531 9.5 L 8.019531 6.5 C 8.019531 6.40625 7.945312 6.332031 7.851562 6.332031 Z M 5 8.667969 L 5 7.332031 L 5.332031 7.332031 L 5.332031 8.667969 Z M 5.667969 8.667969 L 5.667969 7.332031 L 6 7.332031 L 6 8.667969 Z M 6.332031 8.667969 L 6.332031 7.332031 L 6.667969 7.332031 L 6.667969 8.667969 Z "/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-epub+zip.svg">
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview14"
showgrid="true"
inkscape:zoom="29.5"
inkscape:cx="8.5932887"
inkscape:cy="7.0495989"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3019" />
</sodipodi:namedview>
<path
style="fill:#7c9c35;fill-opacity:1"
d="M 2.667969,-4.457e-4 C 2.324219,-4.457e-4 2,0.3378123 2,0.696447 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664062,0 C 13.65625,16 14,15.641365 14,15.303108 L 14,3.9995541 10,-4.457e-4 z"
id="path4-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.3315851 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.387,3.664062 0,-3.664062 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10,-4.457e-4 3.996396,3.9999998 -3.383784,0 C 10.313513,3.9995541 10,3.6824371 10,3.3833381 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path12"
d="M 8,11.246461 5.4216211,8.6680821 8,6.0848919 8.8610634,6.9459553 7.1389366,8.6680821 8,9.5243342 10.578379,6.9459553 8.3319179,4.6994943 c -0.1827949,-0.1827949 -0.4810409,-0.1827949 -0.6638358,0 l -3.6366687,3.63667 C 3.8486172,8.5189592 3.8486172,8.8172039 4.0314134,9 l 3.6366687,3.631859 c 0.1827949,0.187605 0.4810409,0.187605 0.6638358,0 L 11.968587,9 c 0.182796,-0.1827961 0.182796,-0.4810408 0,-0.6638357 L 11.439442,7.8070187 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-pdf.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="29.5"
inkscape:cx="9.405838"
inkscape:cy="9.1811798"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3014" />
</sodipodi:namedview>
<path
style="fill:#df1818;fill-opacity:1"
d="M 2.667969,-4.46e-4 C 2.324219,-4.46e-4 2,0.337812 2,0.6964467 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664062,0 C 13.65625,16 14,15.641365 14,15.303108 L 14,3.9995538 10,-4.46e-4 z"
id="path4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.3315848 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.387,3.664062 0,-3.664062 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10,-4.46e-4 3.996396,3.9999998 -3.383784,0 C 10.313513,3.9995538 10,3.6824368 10,3.3833378 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path12"
d="m 7.84375,5.339844 c 0,0 0.230469,2.121094 -1.398438,4.925781 -1.625,2.800781 -2.101562,2.425781 -2.273437,2.328125 C 4,12.496094 3.78125,12.183594 4.5,11.550781 c 0.722656,-0.628906 1.003906,-0.617187 1.003906,-0.617187 0,0 -0.660156,0.398437 -0.917968,0.789062 -0.257813,0.386719 -0.464844,0.628906 -0.402344,0.738282 0.0625,0.109374 0.796875,-0.445313 1.105468,-0.921876 0.484376,-0.75 1.402344,-2.148437 1.832032,-3.484374 C 7.546875,6.722656 7.84375,5.339844 7.84375,5.339844 z" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path14"
d="m 11.855469,10.253906 c 0,0 -0.03906,0.09766 -0.464844,0.05859 C 10.960938,10.277344 9.296875,9.753906 8.402344,8.6875 7.511719,7.621094 7.4375,6.152344 7.375,5.386719 7.316406,4.621094 7.652344,4.835938 7.703125,4.933594 c 0.074219,0.0625 0.113281,0.269531 0.113281,0.269531 0,0 -0.027344,-0.3125 -0.160156,-0.445313 C 7.519531,4.625 7.402344,4.621094 7.265625,4.851562 7.132812,5.082031 7.070312,5.726562 7.179688,6.34375 c 0.109374,0.621094 0.5625,2.039062 1.125,2.695312 0.5625,0.65625 1.691406,1.226563 2.523437,1.394532 0.832031,0.171875 1.027344,-0.179688 1.027344,-0.179688 z" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path16"
d="m 6.433594,10.53125 c 0,0 1.617187,-0.519531 3.144531,-0.667969 1.53125,-0.144531 2.054687,0.011719 2.191406,0.121094 0.132813,0.109375 0.132813,0.230469 0.132813,0.230469 0,0 0.171875,-0.167969 0.05859,-0.339844 C 11.867188,9.695312 11.71875,9.550781 10.507812,9.585938 9.296875,9.621094 9.210938,9.671875 8.097656,9.875 6.984375,10.082031 6.433594,10.53125 6.433594,10.53125 z" />
</svg>

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-word.svg">
<metadata
id="metadata30">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview26"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="-15.977455"
inkscape:cy="15.976819"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#3468ce;fill-opacity:1"
d="M 2.667969,-4.4634e-4 C 2.324219,-4.4634e-4 2,0.33781166 2,0.6964464 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664062,0 C 13.65625,16 14,15.641365 14,15.303108 L 14,3.9995535 10,-4.4634e-4 z"
id="path4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.3315845 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.387,3.664062 0,-3.664062 z"
id="path6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10,-4.4634e-4 3.996396,3.99999984 -3.383784,0 C 10.313513,3.9995535 10,3.6824365 10,3.3833375 z"
id="path8-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path16-7"
d="m 8,8 0,1 4,0 0,-1 z" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path22-4"
d="m 4,10 0,1 8,0 0,-1 z" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path28"
d="m 4,12 0,1 8,0 0,-1 z" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path16-4"
d="m 8,6 0,1 4,0 0,-1 z" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3030"
width="3"
height="3"
x="4"
y="6" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-word.svg">
<metadata
id="metadata30">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview26"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="-15.977455"
inkscape:cy="15.976819"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#3468ce;fill-opacity:1"
d="M 2.667969,-4.4634e-4 C 2.324219,-4.4634e-4 2,0.33781166 2,0.6964464 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664062,0 C 13.65625,16 14,15.641365 14,15.303108 L 14,3.9995535 10,-4.4634e-4 z"
id="path4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.3315845 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.387,3.664062 0,-3.664062 z"
id="path6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10,-4.4634e-4 3.996396,3.99999984 -3.383784,0 C 10.313513,3.9995535 10,3.6824365 10,3.3833375 z"
id="path8-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path16-7"
d="m 8,8 0,1 4,0 0,-1 z" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path22-4"
d="m 4,10 0,1 8,0 0,-1 z" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path28"
d="m 4,12 0,1 8,0 0,-1 z" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path16-4"
d="m 8,6 0,1 4,0 0,-1 z" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3030"
width="3"
height="3"
x="4"
y="6" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-word.svg">
<metadata
id="metadata30">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview26"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="-15.977455"
inkscape:cy="15.976819"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#3468ce;fill-opacity:1"
d="M 2.667969,-4.4634e-4 C 2.324219,-4.4634e-4 2,0.33781166 2,0.6964464 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664062,0 C 13.65625,16 14,15.641365 14,15.303108 L 14,3.9995535 10,-4.4634e-4 z"
id="path4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.3315845 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.387,3.664062 0,-3.664062 z"
id="path6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10,-4.4634e-4 3.996396,3.99999984 -3.383784,0 C 10.313513,3.9995535 10,3.6824365 10,3.3833375 z"
id="path8-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path16-7"
d="m 8,8 0,1 4,0 0,-1 z" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path22-4"
d="m 4,10 0,1 8,0 0,-1 z" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path28"
d="m 4,12 0,1 8,0 0,-1 z" />
<path
style="fill:#f9f9f9;fill-opacity:1"
inkscape:connector-curvature="0"
id="path16-4"
d="m 8,6 0,1 4,0 0,-1 z" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3030"
width="3"
height="3"
x="4"
y="6" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,92 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-text.svg">
<metadata
id="metadata34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs32" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview30"
showgrid="true"
inkscape:zoom="10.429825"
inkscape:cx="-19.203457"
inkscape:cy="7.7834339"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3022" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 2.667969,-4.458e-4 C 2.324219,-4.458e-4 2,0.3378122 2,0.6964469 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664062,0 C 13.65625,16 14,15.641365 14,15.303108 L 14,3.999554 10,-4.458e-4 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16"
d="m 4,8 0,1 8,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22"
d="m 4,10 0,1 8,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path28"
d="m 4,12 0,1 8,0 0,-1 z" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.331585 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.387,3.664062 0,-3.664062 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10,-4.458e-4 3.996396,3.9999998 -3.383784,0 C 10.313513,3.999554 10,3.682437 10,3.383338 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16-4"
d="m 4.0000005,6 0,1 L 12,7 12,6 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-document.svg">
<metadata
id="metadata32">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs30" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview28"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="25.131741"
inkscape:cy="-1.1640255"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3028" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 2.667969,-4.458e-4 C 2.324219,-4.458e-4 2,0.3378122 2,0.6964469 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664062,0 C 13.65625,16 14,15.641365 14,15.303108 L 14,3.999554 10,-4.458e-4 z"
id="path4-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16-7"
d="m 8,8 0,1 4,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22-4"
d="m 4,10 0,1 8,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path28"
d="m 4,12 0,1 8,0 0,-1 z" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.331585 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.387,3.664062 0,-3.664062 z"
id="path6-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10,-4.458e-4 3.996396,3.9999998 -3.383784,0 C 10.313513,3.999554 10,3.682437 10,3.383338 z"
id="path8-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16-4"
d="m 8,6 0,1 4,0 0,-1 z" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3030"
width="3"
height="3"
x="4"
y="6" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-xml.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="-9.6787618"
inkscape:cy="11.091019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3010" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 2.667969,-4.46e-4 C 2.324219,-4.46e-4 2,0.337812 2,0.6964467 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664061,0 c 0.324219,0 0.667969,-0.358635 0.667969,-0.696892 l 0,-11.3035542 L 10,-4.46e-4 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.3315848 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.386999,3.664062 0,-3.664062 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10.000001,-4.46e-4 3.996395,3.9999998 -3.383784,0 c -0.299098,0 -0.612611,-0.317117 -0.612611,-0.616216 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
style="fill:#888"
id="g10">
<path
d="M 6 7 L 4 9 C 4 9.332031 4 9.332031 4 9.667969 L 6 11.667969 L 6 10.332031 L 5 9.332031 L 6 8.332031 Z "
id="path12" />
<path
d="M 10 7 L 12 9 C 12 9.332031 12 9.332031 12 9.667969 L 10 11.667969 L 10 10.332031 L 11 9.332031 L 10 8.332031 Z "
id="path14" />
<path
d="M 8.667969 7 L 9.332031 7 L 8 11.667969 L 7.332031 11.667969 Z "
id="path16" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,92 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-text.svg">
<metadata
id="metadata34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs32" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview30"
showgrid="true"
inkscape:zoom="10.429825"
inkscape:cx="-19.203457"
inkscape:cy="7.7834339"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3022" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 2.667969,-4.458e-4 C 2.324219,-4.458e-4 2,0.3378122 2,0.6964469 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664062,0 C 13.65625,16 14,15.641365 14,15.303108 L 14,3.999554 10,-4.458e-4 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16"
d="m 4,8 0,1 8,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22"
d="m 4,10 0,1 8,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path28"
d="m 4,12 0,1 8,0 0,-1 z" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.331585 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.387,3.664062 0,-3.664062 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10,-4.458e-4 3.996396,3.9999998 -3.383784,0 C 10.313513,3.999554 10,3.682437 10,3.383338 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16-4"
d="m 4.0000005,6 0,1 L 12,7 12,6 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-x-tex.svg">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12">
<clipPath
id="clipPath-889157936">
<g
transform="translate(0,-1004.3622)"
id="g17">
<path
style="fill:#1890d0"
inkscape:connector-curvature="0"
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
id="path19" />
</g>
</clipPath>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview10"
showgrid="true"
inkscape:zoom="41.7193"
inkscape:cx="11.473239"
inkscape:cy="8.8119501"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid2984" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 2.667969,-4.46e-4 C 2.324219,-4.46e-4 2,0.337812 2,0.6964467 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664062,0 C 13.65625,16 14,15.641365 14,15.303108 L 14,3.9995538 10,-4.46e-4 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.3315848 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.387,3.664062 0,-3.664062 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10,-4.46e-4 3.996396,3.9999998 -3.383784,0 C 10.313513,3.9995538 10,3.6824368 10,3.3833378 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
id="g53"
clip-path="url(#clipPath-889157936)"
transform="matrix(0.38463871,0,0,0.38463871,-1.2312476,-0.2320861)">
<!-- color: #aade54 -->
<g
id="g55">
<path
id="path57"
d="m 20.2,17.02 -8.938,0 -0.262,3.441 0.277,0 c 0.199,-2.578 0.422,-3.03 2.82,-3.03 0.277,0 0.73,0 0.855,0 0.297,0.047 0.297,0.238 0.297,0.594 l 0,8.473 c 0,0.566 -0.047,0.734 -1.352,0.734 l -0.441,0 0,0.375 c 0.746,-0.016 1.52,-0.031 2.277,-0.031 0.758,0 1.535,0.023 2.277,0.031 l 0,-0.375 -0.441,0 c -1.285,0 -1.332,-0.172 -1.332,-0.734 l 0,-8.473 c 0,-0.344 0,-0.527 0.281,-0.594 l 0.848,0 c 2.367,0 2.605,0.449 2.809,3.03 l 0.27,0"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
id="path59"
d="m 27.969,27.07 -0.277,0 c -0.34,2.309 -0.543,3.563 -3.266,3.563 l -2.148,0 c -0.617,0 -0.645,-0.078 -0.645,-0.613 l 0,-4.352 1.457,0 c 1.461,0 1.602,0.539 1.602,1.852 l 0.25,0 0,-4.047 -0.25,0 c 0,1.289 -0.141,1.82 -1.602,1.82 l -1.457,0 0,-3.859 c 0,-0.523 0.027,-0.602 0.645,-0.602 l 2.117,0 c 2.395,0 2.676,0.957 2.891,3.01 l 0.281,0 -0.371,-3.441 -7.84,0 0,0.43 c 1.098,0 1.273,0 1.273,0.699 l 0,8.398 c 0,0.699 -0.176,0.699 -1.273,0.699 l 0,0.375 8.05,0"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
id="path61"
d="m 32.14,21.719 2.289,-3.328 c 0.23,-0.324 0.699,-0.996 1.969,-1.016 l 0,-0.375 c -0.355,0.031 -0.945,0.031 -1.316,0.031 -0.508,0 -1.145,0 -1.531,-0.031 l 0,0.375 c 0.496,0.047 0.621,0.359 0.621,0.609 0,0.188 -0.078,0.313 -0.188,0.465 l -2.043,2.98 -2.289,-3.367 c -0.109,-0.172 -0.125,-0.219 -0.125,-0.266 0,-0.141 0.168,-0.406 0.684,-0.422 l 0,-0.375 c -0.496,0.031 -1.25,0.031 -1.766,0.031 -0.398,0 -1.172,0 -1.547,-0.031 l 0,0.375 c 0.852,0 1.129,0.031 1.469,0.516 l 2.988,4.41 -2.695,3.957 c -0.664,0.965 -1.668,0.984 -1.965,0.984 l 0,0.375 c 0.355,-0.031 0.941,-0.031 1.316,-0.031 0.414,0 1.145,0 1.527,0.031 l 0,-0.375 c -0.477,-0.047 -0.617,-0.359 -0.617,-0.609 0,-0.203 0.078,-0.313 0.156,-0.422 l 2.477,-3.633 2.691,3.977 c 0.121,0.172 0.121,0.219 0.121,0.266 0,0.125 -0.137,0.391 -0.68,0.422 l 0,0.379 c 0.496,-0.031 1.25,-0.031 1.762,-0.031 0.402,0 1.176,0 1.551,0.031 l 0,-0.379 c -0.992,0 -1.148,-0.074 -1.453,-0.516"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-xml.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="-9.6787618"
inkscape:cy="11.091019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3010" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 2.667969,-4.46e-4 C 2.324219,-4.46e-4 2,0.337812 2,0.6964467 L 2,15.303108 C 2,15.641365 2.34375,16 2.667969,16 l 10.664061,0 c 0.324219,0 0.667969,-0.358635 0.667969,-0.696892 l 0,-11.3035542 L 10,-4.46e-4 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 10.583223,3.3315848 0.0154,0.01953 0.04005,-0.01953 z m 0.02978,0.667969 3.386999,3.664062 0,-3.664062 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 10.000001,-4.46e-4 3.996395,3.9999998 -3.383784,0 c -0.299098,0 -0.612611,-0.317117 -0.612611,-0.616216 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
style="fill:#888"
id="g10">
<path
d="M 6 7 L 4 9 C 4 9.332031 4 9.332031 4 9.667969 L 6 11.667969 L 6 10.332031 L 5 9.332031 L 6 8.332031 Z "
id="path12" />
<path
d="M 10 7 L 12 9 C 12 9.332031 12 9.332031 12 9.667969 L 10 11.667969 L 10 10.332031 L 11 9.332031 L 10 8.332031 Z "
id="path14" />
<path
d="M 8.667969 7 L 9.332031 7 L 8 11.667969 L 7.332031 11.667969 Z "
id="path16" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,6 @@
<svg width="22" xmlns="http://www.w3.org/2000/svg" height="22" viewBox="0 0 22 22">
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="m 3,2 10,0 c 2,0 2,0 2,2 l 0,14 c 0,2 0,2 -2,2 L 3,20 C 1,20 1,20 1,18 L 1,4 C 1,2 1,2 3,2 z"/>
<path style="fill:#268bd2" d="m 13.957456,18.104503 6.875,-5.5 c 1.378907,-1.378906 1.375,-1.375 0,-2.7500003 l -6.875,-5.5 c -0.957031,-0.767583 -0.957031,-0.482666 -0.957031,1.415042 -0.01953,0.6875 -0.04297,1.459958 0,2.459958 -0.01563,0 0.01563,0 0,0 -6.8320305,0 -10.0429683,4.3750003 -9.9999995,9.9179693 2.707031,-2.792969 5.875,-4.003907 9.9999995,-3.917969 0,0.984374 -0.01953,1.335937 0,2 0,1 0,2.554347 0.957031,1.875 z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 683 B

View file

@ -0,0 +1,14 @@
<svg width="22" xmlns="http://www.w3.org/2000/svg" height="22" viewBox="0 0 22 22">
<g style="fill-rule:evenodd" transform="matrix(1 0 0 .99976 -1 .00497)">
<path style="fill:#aaa;fill-opacity:.94" d="m 8,1 8,0 c 2,0 2,-0.2 2,2 l 0,8 c 0,2 0,2 -2,2 L 8,13 C 6,13 6,13 6,11 L 6,3 C 6,1 6,1 8,1 z"/>
<path style="fill:#ccc" d="m 4,7 16,0 c 2,0 2,0 2,2 l 0,6 c 0,2 0,2 -2,2 L 4,17 C 2,17 2,17 2,15 L 2,9 C 2,7 2,7 4,7 z"/>
</g>
<g transform="matrix(1 0 0 .99976 -1 .00497)">
<path style="fill:#dc322f" d="m 6,11 12,0 0,10 -12,0 z"/>
</g>
<g style="fill-rule:evenodd" transform="matrix(1 0 0 .99976 -1 -.99479)">
<path style="fill:#fff" d="m 19,12.5 a 5.5,6.5 0 1 1 -11,0 5.5,6.5 0 1 1 11,0 z" transform="matrix(1.091 0 0 .9231 -2.729 .4612)"/>
<path style="fill:#555" d="m 19,12.5 a 5.5,6.5 0 1 1 -11,0 5.5,6.5 0 1 1 11,0 z" transform="matrix(.7273 0 0 .6154 2.181 4.308)"/>
<path style="fill:#eee" d="m 19,12.5 a 5.5,6.5 0 1 1 -11,0 5.5,6.5 0 1 1 11,0 z" transform="matrix(.2727 0 0 .2308 9.818 7.615)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1,015 B

View file

@ -0,0 +1,12 @@
<svg width="22" xmlns="http://www.w3.org/2000/svg" height="22" viewBox="0 0 22 22" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill:#ec86ab">
<path d="M 3.324219 2.382812 L 3.324219 13.722656 L 4.269531 13.722656 L 4.269531 2.382812 Z "/>
<path d="M 5.214844 14.191406 C 5.214844 14.972656 4.582031 15.609375 3.796875 15.609375 C 3.015625 15.609375 2.382812 14.972656 2.382812 14.191406 C 2.382812 13.410156 3.015625 12.773438 3.796875 12.773438 C 4.582031 12.773438 5.214844 13.410156 5.214844 14.191406 Z "/>
<path d="M 8.996094 19.390625 L 8.996094 5.214844 L 8.050781 5.214844 L 8.050781 19.390625 Z "/>
<path d="M 7.105469 4.746094 C 7.105469 3.960938 7.742188 3.324219 8.523438 3.324219 C 9.304688 3.324219 9.941406 3.960938 9.941406 4.746094 C 9.941406 5.527344 9.304688 6.160156 8.523438 6.160156 C 7.742188 6.160156 7.105469 5.527344 7.105469 4.746094 Z "/>
<path d="M 12.773438 2.382812 L 12.773438 12.773438 L 13.722656 12.773438 L 13.722656 2.382812 Z "/>
<path d="M 14.664062 13.246094 C 14.664062 14.03125 14.03125 14.664062 13.25 14.664062 C 12.464844 14.664062 11.828125 14.03125 11.828125 13.246094 C 11.828125 12.464844 12.464844 11.828125 13.25 11.828125 C 14.03125 11.828125 14.664062 12.464844 14.664062 13.246094 Z "/>
<path d="M 18.445312 19.390625 L 18.445312 11.828125 L 17.5 11.828125 L 17.5 19.390625 Z "/>
<path d="M 16.554688 11.359375 C 16.554688 10.574219 17.191406 9.941406 17.972656 9.941406 C 18.753906 9.941406 19.390625 10.574219 19.390625 11.359375 C 19.390625 12.140625 18.753906 12.777344 17.972656 12.777344 C 17.191406 12.777344 16.554688 12.140625 16.554688 11.359375 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,4 @@
<svg width="22" xmlns="http://www.w3.org/2000/svg" height="22" viewBox="0 0 22 22" xmlns:xlink="http://www.w3.org/1999/xlink">
<path style="fill:none;stroke:#6aaf53;stroke-linejoin:round;stroke-linecap:round;stroke-width:2" d="M 10.542614 1021.365041 L 37.457386 1021.365041 C 38.309659 1021.365041 39 1022.055382 39 1022.899132 L 39 1033.825268 C 39 1034.669018 38.309659 1035.359359 37.457386 1035.359359 L 10.542614 1035.359359 C 9.690341 1035.359359 9 1034.669018 9 1033.825268 L 9 1022.899132 C 9 1022.055382 9.690341 1021.365041 10.542614 1021.365041 Z " transform="matrix(.45833 0 0 .45833 0 -460.33267)"/>
<path style="fill:#6aaf53" d="M 5.269531 8.707031 C 5.144531 8.707031 5.042969 8.808594 5.042969 8.9375 L 5.042969 13.0625 C 5.042969 13.191406 5.144531 13.292969 5.269531 13.292969 L 10.796875 13.292969 C 10.921875 13.292969 11.023438 13.191406 11.023438 13.0625 L 11.023438 8.9375 C 11.023438 8.808594 10.921875 8.707031 10.796875 8.707031 Z M 6.875 11.917969 L 6.875 10.082031 L 7.332031 10.082031 L 7.332031 11.917969 Z M 7.792969 11.917969 L 7.792969 10.082031 L 8.25 10.082031 L 8.25 11.917969 Z M 8.707031 11.917969 L 8.707031 10.082031 L 9.167969 10.082031 L 9.167969 11.917969 Z "/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-epub+zip.svg">
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview14"
showgrid="true"
inkscape:zoom="15.170655"
inkscape:cx="5.1708035"
inkscape:cy="20.400508"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3008" />
</sodipodi:namedview>
<path
style="fill:#7c9c35;fill-opacity:1"
d="m 4,-2e-7 c -0.472657,0 -1,0.527344 -1,1 L 3,21 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 19,6 13,-2e-7 z"
id="path4-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 14,6 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="M 13,-2e-7 19,6 14,6 C 13.554688,6 13,5.445312 13,5 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path12"
d="M 11,15.172512 7.7456483,11.91816 11,8.6593919 12.086256,9.7456483 9.9137436,11.91816 11,13 14.254352,9.7456483 11.419489,6.9107849 c -0.229615,-0.2340305 -0.609363,-0.2340305 -0.838978,0 L 5.9926248,11.498671 c -0.2296139,0.229615 -0.2296139,0.604947 0,0.838977 l 4.5878862,4.587886 c 0.229615,0.229615 0.609363,0.229615 0.838978,0 l 4.587886,-4.587886 c 0.229614,-0.23403 0.229614,-0.609362 0,-0.838977 l -0.666767,-0.666767 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-pdf.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="1.2086339"
inkscape:cy="12.704187"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3014"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#df1818;fill-opacity:1"
d="M 4,0 C 3.527343,0 3,0.527344 3,1 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 19,6 13,0 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path12"
d="m 11.020826,6.966798 c 0,0 0.32556,3.15112 -1.9754365,7.317794 -2.2954771,4.160871 -2.9686693,3.603765 -3.21146,3.458688 -0.2427909,-0.14508 -0.5517975,-0.609333 0.4635097,-1.549447 1.0208249,-0.934309 1.418119,-0.9169 1.418119,-0.9169 0,0 -0.9325372,0.591924 -1.2967229,1.172238 -0.364187,0.574516 -0.6566392,0.934311 -0.5683516,1.0968 0.088288,0.162487 1.1256666,-0.661561 1.5615856,-1.369548 C 8.0962994,15.062215 9.3930222,12.984682 10,11 10.60146,9.0211185 11.020826,6.966798 11.020826,6.966798 z" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 14,6 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path14"
d="m 16.687784,14.267181 c 0,0 -0.05518,0.145086 -0.65664,0.08705 -0.606975,-0.05222 -2.957634,-0.829847 -4.221248,-2.414111 -1.258099,-1.584265 -1.36294,-3.766256 -1.451227,-4.9036767 -0.08277,-1.1374208 0.391776,-0.8182462 0.463509,-0.6731673 0.104843,0.092849 0.160021,0.400418 0.160021,0.400418 0,0 -0.03863,-0.4642534 -0.226237,-0.6615617 -0.193129,-0.1973144 -0.358667,-0.2031171 -0.551797,0.1392686 -0.187612,0.3423873 -0.2758996,1.2999095 -0.121395,2.2168106 0.154501,0.9227041 0.794587,3.0292505 1.589176,4.0041855 0.794588,0.974932 2.389284,1.822195 3.564612,2.07173 1.175326,0.255341 1.451226,-0.266946 1.451226,-0.266946 z" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,0 6,6 -5,0 C 13.554688,6 13,5.445312 13,5 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path16"
d="m 9.0288367,14.679206 c 0,0 2.2844413,-0.77182 4.4419683,-0.992341 2.163045,-0.214717 2.902453,0.01741 3.095583,0.179898 0.187611,0.162489 0.187611,0.342387 0.187611,0.342387 0,0 0.242792,-0.249536 0.08277,-0.504875 -0.132431,-0.266946 -0.342109,-0.481664 -2.052683,-0.429434 -1.710571,0.05223 -1.831966,0.127675 -3.404588,0.429434 -1.5726223,0.307568 -2.3506563,0.974931 -2.3506563,0.974931 z" />
</svg>

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-word.svg">
<metadata
id="metadata30">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview26"
showgrid="false"
inkscape:zoom="20.85965"
inkscape:cx="9.2506055"
inkscape:cy="9.6297283"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#3468ce;fill-opacity:1"
d="m 4,-4e-7 c -0.472657,0 -1,0.527344 -1,1 L 3,21 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 l 0,-15.0000004 -6,-6 z"
id="path4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 14,5.9999996 19,11 19,5.9999996 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,-4e-7 6,6 -5,0 c -0.445312,0 -1,-0.554688 -1,-1 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="8"
height="1"
x="7"
y="15.999999" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="8"
height="1"
x="7"
y="14" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="8"
height="1"
x="7"
y="12" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="4"
height="3"
x="7"
y="7.9999995" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="3"
height="1"
x="12"
y="10" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="3"
height="1"
x="12"
y="7.9999995" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-word.svg">
<metadata
id="metadata30">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview26"
showgrid="false"
inkscape:zoom="20.85965"
inkscape:cx="9.2506055"
inkscape:cy="9.6297283"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#3468ce;fill-opacity:1"
d="m 4,-4e-7 c -0.472657,0 -1,0.527344 -1,1 L 3,21 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 l 0,-15.0000004 -6,-6 z"
id="path4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 14,5.9999996 19,11 19,5.9999996 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,-4e-7 6,6 -5,0 c -0.445312,0 -1,-0.554688 -1,-1 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="8"
height="1"
x="7"
y="15.999999" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="8"
height="1"
x="7"
y="14" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="8"
height="1"
x="7"
y="12" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="4"
height="3"
x="7"
y="7.9999995" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="3"
height="1"
x="12"
y="10" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="3"
height="1"
x="12"
y="7.9999995" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-word.svg">
<metadata
id="metadata30">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview26"
showgrid="false"
inkscape:zoom="20.85965"
inkscape:cx="9.2506055"
inkscape:cy="9.6297283"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#3468ce;fill-opacity:1"
d="m 4,-4e-7 c -0.472657,0 -1,0.527344 -1,1 L 3,21 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 l 0,-15.0000004 -6,-6 z"
id="path4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 14,5.9999996 19,11 19,5.9999996 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,-4e-7 6,6 -5,0 c -0.445312,0 -1,-0.554688 -1,-1 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="8"
height="1"
x="7"
y="15.999999" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="8"
height="1"
x="7"
y="14" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="8"
height="1"
x="7"
y="12" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="4"
height="3"
x="7"
y="7.9999995" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="3"
height="1"
x="12"
y="10" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="3"
height="1"
x="12"
y="7.9999995" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-text.svg">
<metadata
id="metadata34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs32" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview30"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="5.2500387"
inkscape:cy="11.983037"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3022"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 4,0 C 3.527343,0 3,0.527344 3,1 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 19,6 13,0 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 14,6 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,0 6,6 -5,0 C 13.554688,6 13,5.445312 13,5 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16"
d="m 6,11 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22"
d="m 6,13 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path28"
d="m 6,17 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22-9"
d="m 6,15 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16-6"
d="m 6,9 0,1 10,0 0,-1 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,114 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-document.svg">
<metadata
id="metadata32">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs30" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview28"
showgrid="true"
inkscape:zoom="7.5853273"
inkscape:cx="5.1063102"
inkscape:cy="-3.1698204"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3020" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 4,0 C 3.527343,0 3,0.527344 3,1 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 19,6 13,0 z"
id="path4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 14,6 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,0 6,6 -5,0 C 13.554688,6 13,5.445312 13,5 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="8"
height="1"
x="7"
y="16" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="8"
height="1"
x="7"
y="14" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="8"
height="1"
x="7"
y="12" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="4"
height="3"
x="7"
y="8" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="3"
height="1"
x="12"
y="10" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="3"
height="1"
x="12"
y="8" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-xml.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="4.3276946"
inkscape:cy="2.5815193"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3010"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 4,0 C 3.527343,0 3,0.527344 3,1 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 19,6 13,0 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 14,6 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,0 6,6 -5,0 C 13.554688,6 13,5.445312 13,5 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
style="fill:#888888"
id="g10"
transform="matrix(1.5,0,0,1.4995815,-0.99999868,-1.4970705)">
<path
d="M 6,7 4,9 c 0,0.332031 0,0.332031 0,0.667969 l 2,2 0,-1.335938 -1,-1 1,-1 z"
id="path12"
inkscape:connector-curvature="0" />
<path
d="m 10,7 2,2 c 0,0.332031 0,0.332031 0,0.667969 l -2,2 0,-1.335938 1,-1 -1,-1 z"
id="path14"
inkscape:connector-curvature="0" />
<path
d="M 8.667969,7 9.332031,7 8,11.667969 l -0.667969,0 z"
id="path16"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-text.svg">
<metadata
id="metadata34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs32" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview30"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="5.2500387"
inkscape:cy="11.983037"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3022"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 4,0 C 3.527343,0 3,0.527344 3,1 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 19,6 13,0 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 14,6 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,0 6,6 -5,0 C 13.554688,6 13,5.445312 13,5 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16"
d="m 6,11 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22"
d="m 6,13 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path28"
d="m 6,17 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22-9"
d="m 6,15 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16-6"
d="m 6,9 0,1 10,0 0,-1 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-x-tex.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20">
<clipPath
id="clipPath-889157936">
<g
transform="translate(0,-1004.3622)"
id="g17">
<path
style="fill:#1890d0"
inkscape:connector-curvature="0"
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
id="path19" />
</g>
</clipPath>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="12.48451"
inkscape:cy="8.5897428"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3010"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="m 4,3e-7 c -0.472657,0 -1,0.527344 -1,1 L 3,21 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 l 0,-14.9999997 -6,-6 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 14,6.0000003 19,11 19,6.0000003 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,3e-7 6,6 -5,0 c -0.445312,0 -1,-0.554688 -1,-1 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
transform="matrix(0.5219046,0,0,0.5219046,-1.5256719,0.58447332)"
id="g51">
<g
clip-path="url(#clipPath-889157936)"
id="g53">
<!-- color: #aade54 -->
<g
id="g55">
<path
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0"
d="m 20.2,17.02 -8.938,0 -0.262,3.441 0.277,0 c 0.199,-2.578 0.422,-3.03 2.82,-3.03 0.277,0 0.73,0 0.855,0 0.297,0.047 0.297,0.238 0.297,0.594 l 0,8.473 c 0,0.566 -0.047,0.734 -1.352,0.734 l -0.441,0 0,0.375 c 0.746,-0.016 1.52,-0.031 2.277,-0.031 0.758,0 1.535,0.023 2.277,0.031 l 0,-0.375 -0.441,0 c -1.285,0 -1.332,-0.172 -1.332,-0.734 l 0,-8.473 c 0,-0.344 0,-0.527 0.281,-0.594 l 0.848,0 c 2.367,0 2.605,0.449 2.809,3.03 l 0.27,0"
id="path57" />
<path
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0"
d="m 27.969,27.07 -0.277,0 c -0.34,2.309 -0.543,3.563 -3.266,3.563 l -2.148,0 c -0.617,0 -0.645,-0.078 -0.645,-0.613 l 0,-4.352 1.457,0 c 1.461,0 1.602,0.539 1.602,1.852 l 0.25,0 0,-4.047 -0.25,0 c 0,1.289 -0.141,1.82 -1.602,1.82 l -1.457,0 0,-3.859 c 0,-0.523 0.027,-0.602 0.645,-0.602 l 2.117,0 c 2.395,0 2.676,0.957 2.891,3.01 l 0.281,0 -0.371,-3.441 -7.84,0 0,0.43 c 1.098,0 1.273,0 1.273,0.699 l 0,8.398 c 0,0.699 -0.176,0.699 -1.273,0.699 l 0,0.375 8.05,0"
id="path59" />
<path
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0"
d="m 32.14,21.719 2.289,-3.328 c 0.23,-0.324 0.699,-0.996 1.969,-1.016 l 0,-0.375 c -0.355,0.031 -0.945,0.031 -1.316,0.031 -0.508,0 -1.145,0 -1.531,-0.031 l 0,0.375 c 0.496,0.047 0.621,0.359 0.621,0.609 0,0.188 -0.078,0.313 -0.188,0.465 l -2.043,2.98 -2.289,-3.367 c -0.109,-0.172 -0.125,-0.219 -0.125,-0.266 0,-0.141 0.168,-0.406 0.684,-0.422 l 0,-0.375 c -0.496,0.031 -1.25,0.031 -1.766,0.031 -0.398,0 -1.172,0 -1.547,-0.031 l 0,0.375 c 0.852,0 1.129,0.031 1.469,0.516 l 2.988,4.41 -2.695,3.957 c -0.664,0.965 -1.668,0.984 -1.965,0.984 l 0,0.375 c 0.355,-0.031 0.941,-0.031 1.316,-0.031 0.414,0 1.145,0 1.527,0.031 l 0,-0.375 c -0.477,-0.047 -0.617,-0.359 -0.617,-0.609 0,-0.203 0.078,-0.313 0.156,-0.422 l 2.477,-3.633 2.691,3.977 c 0.121,0.172 0.121,0.219 0.121,0.266 0,0.125 -0.137,0.391 -0.68,0.422 l 0,0.379 c 0.496,-0.031 1.25,-0.031 1.762,-0.031 0.402,0 1.176,0 1.551,0.031 l 0,-0.379 c -0.992,0 -1.148,-0.074 -1.453,-0.516"
id="path61" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-xml.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="4.3276946"
inkscape:cy="2.5815193"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3010"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 4,0 C 3.527343,0 3,0.527344 3,1 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 19,6 13,0 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 14,6 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 13,0 6,6 -5,0 C 13.554688,6 13,5.445312 13,5 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
style="fill:#888888"
id="g10"
transform="matrix(1.5,0,0,1.4995815,-0.99999868,-1.4970705)">
<path
d="M 6,7 4,9 c 0,0.332031 0,0.332031 0,0.667969 l 2,2 0,-1.335938 -1,-1 1,-1 z"
id="path12"
inkscape:connector-curvature="0" />
<path
d="m 10,7 2,2 c 0,0.332031 0,0.332031 0,0.667969 l -2,2 0,-1.335938 1,-1 -1,-1 z"
id="path14"
inkscape:connector-curvature="0" />
<path
d="M 8.667969,7 9.332031,7 8,11.667969 l -0.667969,0 z"
id="path16"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,6 @@
<svg width="24" xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24">
<g style="fill-rule:evenodd" transform="translate(1 1)">
<path style="fill:#fff" d="m 3,2 10,0 c 2,0 2,0 2,2 l 0,14 c 0,2 0,2 -2,2 L 3,20 C 1,20 1,20 1,18 L 1,4 C 1,2 1,2 3,2 z"/>
<path style="fill:#268bd2" d="m 13.957456,18.104503 6.875,-5.5 c 1.378907,-1.378906 1.375,-1.375 0,-2.7500003 l -6.875,-5.5 c -0.957031,-0.767583 -0.957031,-0.482666 -0.957031,1.415042 -0.01953,0.6875 -0.04297,1.459958 0,2.459958 -0.01563,0 0.01563,0 0,0 -6.8320305,0 -10.0429683,4.3750003 -9.9999995,9.9179693 2.707031,-2.792969 5.875,-4.003907 9.9999995,-3.917969 0,0.984374 -0.01953,1.335937 0,2 0,1 0,2.554347 0.957031,1.875 z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 710 B

View file

@ -0,0 +1,14 @@
<svg width="24" xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24">
<g style="fill-rule:evenodd" transform="translate(0 1)">
<path style="fill:#aaa;fill-opacity:.94" d="m 8,1 8,0 c 2,0 2,-0.2 2,2 l 0,8 c 0,2 0,2 -2,2 L 8,13 C 6,13 6,13 6,11 L 6,3 C 6,1 6,1 8,1 z"/>
<path style="fill:#ccc" d="m 4,7 16,0 c 2,0 2,0 2,2 l 0,6 c 0,2 0,2 -2,2 L 4,17 C 2,17 2,17 2,15 L 2,9 C 2,7 2,7 4,7 z"/>
</g>
<g transform="translate(0 1)">
<path style="fill:#dc322f" d="m 6,11 12,0 0,10 -12,0 z"/>
</g>
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="m 19,12.5 a 5.5,6.5 0 1 1 -11,0 5.5,6.5 0 1 1 11,0 z" transform="matrix(1.091 0 0 .9231 -2.729 .4612)"/>
<path style="fill:#555" d="m 19,12.5 a 5.5,6.5 0 1 1 -11,0 5.5,6.5 0 1 1 11,0 z" transform="matrix(.7273 0 0 .6154 2.181 4.308)"/>
<path style="fill:#eee" d="m 19,12.5 a 5.5,6.5 0 1 1 -11,0 5.5,6.5 0 1 1 11,0 z" transform="matrix(.2727 0 0 .2308 9.818 7.615)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 939 B

View file

@ -0,0 +1,12 @@
<svg width="24" xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill:#ec86ab">
<path d="M 3.628906 2.597656 L 3.628906 14.96875 L 4.65625 14.96875 L 4.65625 2.597656 Z "/>
<path d="M 5.691406 15.484375 C 5.691406 16.335938 4.996094 17.027344 4.144531 17.027344 C 3.289062 17.027344 2.597656 16.335938 2.597656 15.484375 C 2.597656 14.628906 3.289062 13.9375 4.144531 13.9375 C 4.996094 13.9375 5.691406 14.628906 5.691406 15.484375 Z "/>
<path d="M 9.8125 21.152344 L 9.8125 5.691406 L 8.78125 5.691406 L 8.78125 21.152344 Z "/>
<path d="M 7.75 5.175781 C 7.75 4.320312 8.445312 3.628906 9.296875 3.628906 C 10.152344 3.628906 10.84375 4.320312 10.84375 5.175781 C 10.84375 6.027344 10.152344 6.722656 9.296875 6.722656 C 8.445312 6.722656 7.75 6.027344 7.75 5.175781 Z "/>
<path d="M 13.9375 2.597656 L 13.9375 13.9375 L 14.96875 13.9375 L 14.96875 2.597656 Z "/>
<path d="M 16 14.449219 C 16 15.304688 15.304688 16 14.453125 16 C 13.597656 16 12.90625 15.304688 12.90625 14.449219 C 12.90625 13.597656 13.597656 12.90625 14.453125 12.90625 C 15.304688 12.90625 16 13.597656 16 14.449219 Z "/>
<path d="M 20.121094 21.152344 L 20.121094 12.90625 L 19.09375 12.90625 L 19.09375 21.152344 Z "/>
<path d="M 18.058594 12.390625 C 18.058594 11.535156 18.753906 10.84375 19.605469 10.84375 C 20.460938 10.84375 21.152344 11.535156 21.152344 12.390625 C 21.152344 13.246094 20.460938 13.9375 19.605469 13.9375 C 18.753906 13.9375 18.058594 13.246094 18.058594 12.390625 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,4 @@
<svg width="24" xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" xmlns:xlink="http://www.w3.org/1999/xlink">
<path style="fill:none;stroke:#6aaf53;stroke-linejoin:round;stroke-linecap:round;stroke-width:2" d="M 10.539062 1021.3622 L 37.460938 1021.3622 C 38.3125 1021.3622 39 1022.0497 39 1022.901263 L 39 1033.823138 C 39 1034.6747 38.3125 1035.3622 37.460938 1035.3622 L 10.539062 1035.3622 C 9.6875 1035.3622 9 1034.6747 9 1033.823138 L 9 1022.901263 C 9 1022.0497 9.6875 1021.3622 10.539062 1021.3622 Z " transform="matrix(.5 0 0 .5 0 -502.1811)"/>
<path style="fill:#6aaf53" d="M 5.75 9.5 C 5.613281 9.5 5.5 9.613281 5.5 9.75 L 5.5 14.25 C 5.5 14.386719 5.613281 14.5 5.75 14.5 L 11.777344 14.5 C 11.914062 14.5 12.027344 14.386719 12.027344 14.25 L 12.027344 9.75 C 12.027344 9.613281 11.914062 9.5 11.777344 9.5 Z M 7.5 13 L 7.5 11 L 8 11 L 8 13 Z M 8.5 13 L 8.5 11 L 9 11 L 9 13 Z M 9.5 13 L 9.5 11 L 10 11 L 10 13 Z "/>
</svg>

After

Width:  |  Height:  |  Size: 954 B

View file

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-epub+zip.svg">
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview14"
showgrid="true"
inkscape:zoom="17.117877"
inkscape:cx="6.0170002"
inkscape:cy="12.110846"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3008"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#7c9c35;fill-opacity:1"
d="m 5,0.9999998 c -0.472657,0 -1,0.527344 -1,1 L 4,22 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 20,7 14,0.9999998 z"
id="path4-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 15,7 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="M 14,0.9999998 20,7 15,7 C 14.554688,7 14,6.445312 14,6 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path12"
d="M 12,16.172512 8.7456483,12.91816 12,9.659392 13.086256,10.745648 10.913744,12.91816 12,14 15.254352,10.745648 12.419489,7.9107849 c -0.229615,-0.2340305 -0.609363,-0.2340305 -0.838978,0 L 6.9926248,12.498671 c -0.2296139,0.229615 -0.2296139,0.604947 0,0.838977 l 4.5878862,4.587886 c 0.229615,0.229615 0.609363,0.229615 0.838978,0 l 4.587886,-4.587886 c 0.229614,-0.23403 0.229614,-0.609362 0,-0.838977 l -0.666767,-0.666767 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-pdf.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="20.096774"
inkscape:cy="11.505701"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3014"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#df1818;fill-opacity:1"
d="M 5,1 C 4.527343,1 4,1.527344 4,2 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 20,7 14,1 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path12"
d="m 12.020826,7.966798 c 0,0 0.32556,3.15112 -1.975437,7.317794 C 7.7499124,19.445463 7.0767202,18.888357 6.8339295,18.74328 6.5911386,18.5982 6.282132,18.133947 7.2974392,17.193833 c 1.0208249,-0.934309 1.418119,-0.9169 1.418119,-0.9169 0,0 -0.9325372,0.591924 -1.2967229,1.172238 -0.364187,0.574516 -0.6566392,0.934311 -0.5683516,1.0968 0.088288,0.162487 1.1256666,-0.661561 1.5615856,-1.369548 C 9.0962994,16.062215 10.393022,13.984682 11,12 11.60146,10.021119 12.020826,7.966798 12.020826,7.966798 z" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 15,7 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path14"
d="m 17.687784,15.267181 c 0,0 -0.05518,0.145086 -0.65664,0.08705 -0.606975,-0.05222 -2.957634,-0.829847 -4.221248,-2.414111 -1.258099,-1.584265 -1.36294,-3.766256 -1.451227,-4.9036767 -0.08277,-1.1374208 0.391776,-0.8182462 0.463509,-0.6731673 0.104843,0.092849 0.160021,0.400418 0.160021,0.400418 0,0 -0.03863,-0.4642534 -0.226237,-0.6615617 -0.193129,-0.1973144 -0.358667,-0.2031171 -0.551797,0.1392686 -0.187612,0.3423873 -0.2759,1.2999095 -0.121395,2.2168111 0.154501,0.922704 0.794587,3.02925 1.589176,4.004185 0.794588,0.974932 2.389284,1.822195 3.564612,2.07173 1.175326,0.255341 1.451226,-0.266946 1.451226,-0.266946 z" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,1 6,6 -5,0 C 14.554688,7 14,6.445312 14,6 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path16"
d="m 10.028837,15.679206 c 0,0 2.284441,-0.77182 4.441968,-0.992341 2.163045,-0.214717 2.902453,0.01741 3.095583,0.179898 0.187611,0.162489 0.187611,0.342387 0.187611,0.342387 0,0 0.242792,-0.249536 0.08277,-0.504875 -0.132431,-0.266946 -0.342109,-0.481664 -2.052683,-0.429434 -1.710571,0.05223 -1.831966,0.127675 -3.404588,0.429434 -1.572622,0.307568 -2.350656,0.974931 -2.350656,0.974931 z" />
</svg>

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-word.svg">
<metadata
id="metadata30">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview26"
showgrid="false"
inkscape:zoom="20.85965"
inkscape:cx="16.681219"
inkscape:cy="11.403488"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#3468ce;fill-opacity:1"
d="m 5,0.9999996 c -0.472657,0 -1,0.527344 -1,1 L 4,22 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 l 0,-15.0000004 -6,-6 z"
id="path4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 15,6.9999996 20,12 20,6.9999996 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,0.9999996 6,6 -5,0 c -0.445312,0 -1,-0.554688 -1,-1 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="8"
height="1"
x="8"
y="17" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="8"
height="1"
x="8"
y="15" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="8"
height="1"
x="8"
y="13" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="4"
height="3"
x="8"
y="9" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="3"
height="1"
x="13"
y="11" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="3"
height="1"
x="13"
y="9" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-word.svg">
<metadata
id="metadata30">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview26"
showgrid="false"
inkscape:zoom="20.85965"
inkscape:cx="16.681219"
inkscape:cy="11.403488"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#3468ce;fill-opacity:1"
d="m 5,0.9999996 c -0.472657,0 -1,0.527344 -1,1 L 4,22 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 l 0,-15.0000004 -6,-6 z"
id="path4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 15,6.9999996 20,12 20,6.9999996 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,0.9999996 6,6 -5,0 c -0.445312,0 -1,-0.554688 -1,-1 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="8"
height="1"
x="8"
y="17" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="8"
height="1"
x="8"
y="15" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="8"
height="1"
x="8"
y="13" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="4"
height="3"
x="8"
y="9" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="3"
height="1"
x="13"
y="11" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="3"
height="1"
x="13"
y="9" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-word.svg">
<metadata
id="metadata30">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview26"
showgrid="false"
inkscape:zoom="20.85965"
inkscape:cx="16.681219"
inkscape:cy="11.403488"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#3468ce;fill-opacity:1"
d="m 5,0.9999996 c -0.472657,0 -1,0.527344 -1,1 L 4,22 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 l 0,-15.0000004 -6,-6 z"
id="path4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 15,6.9999996 20,12 20,6.9999996 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,0.9999996 6,6 -5,0 c -0.445312,0 -1,-0.554688 -1,-1 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="8"
height="1"
x="8"
y="17" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="8"
height="1"
x="8"
y="15" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="8"
height="1"
x="8"
y="13" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="4"
height="3"
x="8"
y="9" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="3"
height="1"
x="13"
y="11" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="3"
height="1"
x="13"
y="9" />
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-text.svg">
<metadata
id="metadata34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs32" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview30"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="5.2500387"
inkscape:cy="11.983037"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3022"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 5,1 C 4.527343,1 4,1.527344 4,2 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 20,7 14,1 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 15,7 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,1 6,6 -5,0 C 14.554688,7 14,6.445312 14,6 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16"
d="m 7,12 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22"
d="m 7,14 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path28"
d="m 7,18 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22-9"
d="m 7,16 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16-6"
d="m 7,10 0,1 10,0 0,-1 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-document.svg">
<metadata
id="metadata32">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs30" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview28"
showgrid="true"
inkscape:zoom="15.170655"
inkscape:cx="21.725831"
inkscape:cy="12.922868"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3020"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 5,1 C 4.527343,1 4,1.527344 4,2 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 20,7 14,1 z"
id="path4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 15,7 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,1 6,6 -5,0 C 14.554688,7 14,6.445312 14,6 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="8"
height="1"
x="8"
y="17" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="8"
height="1"
x="8"
y="15" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="8"
height="1"
x="8"
y="13" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="4"
height="3"
x="8"
y="9" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="3"
height="1"
x="13"
y="11" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="3"
height="1"
x="13"
y="9" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-xml.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="15.042039"
inkscape:cy="10.33464"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3010"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 5,1 C 4.527343,1 4,1.527344 4,2 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 20,7 14,1 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 15,7 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,1 6,6 -5,0 C 14.554688,7 14,6.445312 14,6 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
style="fill:#888888"
id="g10"
transform="matrix(1.5,0,0,1.4995815,1.32e-6,-0.4970705)">
<path
d="M 6,7 4,9 c 0,0.332031 0,0.332031 0,0.667969 l 2,2 0,-1.335938 -1,-1 1,-1 z"
id="path12"
inkscape:connector-curvature="0" />
<path
d="m 10,7 2,2 c 0,0.332031 0,0.332031 0,0.667969 l -2,2 0,-1.335938 1,-1 -1,-1 z"
id="path14"
inkscape:connector-curvature="0" />
<path
d="M 8.667969,7 9.332031,7 8,11.667969 l -0.667969,0 z"
id="path16"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-text.svg">
<metadata
id="metadata34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs32" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview30"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="5.2500387"
inkscape:cy="11.983037"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3022"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 5,1 C 4.527343,1 4,1.527344 4,2 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 20,7 14,1 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 15,7 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,1 6,6 -5,0 C 14.554688,7 14,6.445312 14,6 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16"
d="m 7,12 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22"
d="m 7,14 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path28"
d="m 7,18 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path22-9"
d="m 7,16 0,1 10,0 0,-1 z" />
<path
style="fill:#888888"
inkscape:connector-curvature="0"
id="path16-6"
d="m 7,10 0,1 10,0 0,-1 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-x-tex.svg">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12">
<clipPath
id="clipPath-889157936">
<g
transform="translate(0,-1004.3622)"
id="g17">
<path
style="fill:#1890d0"
inkscape:connector-curvature="0"
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
id="path19" />
</g>
</clipPath>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview10"
showgrid="true"
inkscape:zoom="12.374369"
inkscape:cx="-8.6506404"
inkscape:cy="18.465562"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid2991"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 5,1 C 4.527343,1 4,1.527344 4,2 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 20,7 14,1 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 15,7 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,1 6,6 -5,0 C 14.554688,7 14,6.445312 14,6 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
transform="matrix(0.5219046,0,0,0.5219046,-0.5256719,1.5844729)"
id="g51">
<g
clip-path="url(#clipPath-889157936)"
id="g53">
<!-- color: #aade54 -->
<g
id="g55">
<path
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0"
d="m 20.2,17.02 -8.938,0 -0.262,3.441 0.277,0 c 0.199,-2.578 0.422,-3.03 2.82,-3.03 0.277,0 0.73,0 0.855,0 0.297,0.047 0.297,0.238 0.297,0.594 l 0,8.473 c 0,0.566 -0.047,0.734 -1.352,0.734 l -0.441,0 0,0.375 c 0.746,-0.016 1.52,-0.031 2.277,-0.031 0.758,0 1.535,0.023 2.277,0.031 l 0,-0.375 -0.441,0 c -1.285,0 -1.332,-0.172 -1.332,-0.734 l 0,-8.473 c 0,-0.344 0,-0.527 0.281,-0.594 l 0.848,0 c 2.367,0 2.605,0.449 2.809,3.03 l 0.27,0"
id="path57" />
<path
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0"
d="m 27.969,27.07 -0.277,0 c -0.34,2.309 -0.543,3.563 -3.266,3.563 l -2.148,0 c -0.617,0 -0.645,-0.078 -0.645,-0.613 l 0,-4.352 1.457,0 c 1.461,0 1.602,0.539 1.602,1.852 l 0.25,0 0,-4.047 -0.25,0 c 0,1.289 -0.141,1.82 -1.602,1.82 l -1.457,0 0,-3.859 c 0,-0.523 0.027,-0.602 0.645,-0.602 l 2.117,0 c 2.395,0 2.676,0.957 2.891,3.01 l 0.281,0 -0.371,-3.441 -7.84,0 0,0.43 c 1.098,0 1.273,0 1.273,0.699 l 0,8.398 c 0,0.699 -0.176,0.699 -1.273,0.699 l 0,0.375 8.05,0"
id="path59" />
<path
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0"
d="m 32.14,21.719 2.289,-3.328 c 0.23,-0.324 0.699,-0.996 1.969,-1.016 l 0,-0.375 c -0.355,0.031 -0.945,0.031 -1.316,0.031 -0.508,0 -1.145,0 -1.531,-0.031 l 0,0.375 c 0.496,0.047 0.621,0.359 0.621,0.609 0,0.188 -0.078,0.313 -0.188,0.465 l -2.043,2.98 -2.289,-3.367 c -0.109,-0.172 -0.125,-0.219 -0.125,-0.266 0,-0.141 0.168,-0.406 0.684,-0.422 l 0,-0.375 c -0.496,0.031 -1.25,0.031 -1.766,0.031 -0.398,0 -1.172,0 -1.547,-0.031 l 0,0.375 c 0.852,0 1.129,0.031 1.469,0.516 l 2.988,4.41 -2.695,3.957 c -0.664,0.965 -1.668,0.984 -1.965,0.984 l 0,0.375 c 0.355,-0.031 0.941,-0.031 1.316,-0.031 0.414,0 1.145,0 1.527,0.031 l 0,-0.375 c -0.477,-0.047 -0.617,-0.359 -0.617,-0.609 0,-0.203 0.078,-0.313 0.156,-0.422 l 2.477,-3.633 2.691,3.977 c 0.121,0.172 0.121,0.219 0.121,0.266 0,0.125 -0.137,0.391 -0.68,0.422 l 0,0.379 c 0.496,-0.031 1.25,-0.031 1.762,-0.031 0.402,0 1.176,0 1.551,0.031 l 0,-0.379 c -0.992,0 -1.148,-0.074 -1.453,-0.516"
id="path61" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-xml.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="15.042039"
inkscape:cy="10.33464"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3010"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc"
d="M 5,1 C 4.527343,1 4,1.527344 4,2 l 0,20 c 0,0.445312 0.554687,1 1,1 l 14,0 c 0.445313,0 0.992367,-0.554753 1,-1 L 20,7 14,1 z"
id="path4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 15,7 5,5 0,-5 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 14,1 6,6 -5,0 C 14.554688,7 14,6.445312 14,6 z"
id="path8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
style="fill:#888888"
id="g10"
transform="matrix(1.5,0,0,1.4995815,1.32e-6,-0.4970705)">
<path
d="M 6,7 4,9 c 0,0.332031 0,0.332031 0,0.667969 l 2,2 0,-1.335938 -1,-1 1,-1 z"
id="path12"
inkscape:connector-curvature="0" />
<path
d="m 10,7 2,2 c 0,0.332031 0,0.332031 0,0.667969 l -2,2 0,-1.335938 1,-1 -1,-1 z"
id="path14"
inkscape:connector-curvature="0" />
<path
d="M 8.667969,7 9.332031,7 8,11.667969 l -0.667969,0 z"
id="path16"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,6 @@
<svg width="256" xmlns="http://www.w3.org/2000/svg" height="256" viewBox="0 0 256 256" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="M 27.429688 0 L 164.570312 0 C 192 0 192 0 192 28.445312 L 192 227.554688 C 192 256 192 256 164.570312 256 L 27.429688 256 C 0 256 0 256 0 227.554688 L 0 28.445312 C 0 0 0 0 27.429688 0 Z "/>
<path style="fill:#268bd2" d="M 150.003906 214 C 152.253906 214 155.503906 212 159.503906 208 L 239.503906 144 C 255.566406 127.941406 255.503906 128 239.503906 112 L 159.503906 48 C 147.503906 36 144.253906 42 143.503906 66 C 143.253906 74 143.503906 84 143.503906 96 C 143.335938 96 143.175781 96 143.003906 96 C 63.503906 96 31.503906 144 32.003906 208.5 C 63.503906 176 95.503906 160 143.503906 161 C 143.492188 172.472656 143.265625 182.265625 143.503906 190 C 144.003906 206 145.503906 214 150.003906 214 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 909 B

View file

@ -0,0 +1,12 @@
<svg width="256" xmlns="http://www.w3.org/2000/svg" height="256" viewBox="0 0 256 256" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill-rule:evenodd">
<path style="fill:#aaa;fill-opacity:.941" d="M 74.667969 0.0625 L 181.332031 0.0625 C 208 0.0625 208 -2.601562 208 26.71875 L 208 133.34375 C 208 160 208 160 181.332031 160 L 74.667969 160 C 48 160 48 160 48 133.34375 L 48 26.71875 C 48 0.0625 48 0.0625 74.667969 0.0625 Z "/>
<path style="fill:#ccc" d="M 25.601562 64 L 230.398438 64 C 256 64 256 64 256 89.601562 L 256 166.398438 C 256 192 256 192 230.398438 192 L 25.601562 192 C 0 192 0 192 0 166.398438 L 0 89.601562 C 0 64 0 64 25.601562 64 Z "/>
</g>
<path style="fill:#dc322f" d="M 48 128 L 208 128 L 208 256 L 48 256 Z "/>
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="M 208 128 C 208 172.183594 172.183594 208 128 208 C 83.816406 208 48 172.183594 48 128 C 48 83.816406 83.816406 48 128 48 C 172.183594 48 208 83.816406 208 128 Z "/>
<path style="fill:#555" d="M 181.332031 128.007812 C 181.332031 157.460938 157.453125 181.339844 128 181.339844 C 98.546875 181.339844 74.667969 157.460938 74.667969 128.007812 C 74.667969 98.550781 98.546875 74.671875 128 74.671875 C 157.453125 74.671875 181.332031 98.550781 181.332031 128.007812 Z "/>
<path style="fill:#eee" d="M 167.992188 108 C 167.992188 119.046875 159.039062 128.003906 147.996094 128.003906 C 136.953125 128.003906 128 119.046875 128 108 C 128 96.953125 136.953125 88 147.996094 88 C 159.039062 88 167.992188 96.953125 167.992188 108 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,12 @@
<svg width="256" xmlns="http://www.w3.org/2000/svg" height="256" viewBox="0 0 256 256" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill:#ec86ab">
<path d="M 38.699219 27.707031 L 38.699219 159.660156 L 49.6875 159.660156 L 49.6875 27.707031 Z "/>
<path d="M 60.703125 165.15625 C 60.703125 174.246094 53.308594 181.640625 44.191406 181.640625 C 35.105469 181.640625 27.707031 174.246094 27.707031 165.15625 C 27.707031 156.042969 35.105469 148.644531 44.191406 148.644531 C 53.308594 148.644531 60.703125 156.042969 60.703125 165.15625 Z "/>
<path d="M 104.6875 225.625 L 104.6875 60.703125 L 93.671875 60.703125 L 93.671875 225.625 Z "/>
<path d="M 82.683594 55.207031 C 82.683594 46.09375 90.078125 38.699219 99.167969 38.699219 C 108.28125 38.699219 115.675781 46.09375 115.675781 55.207031 C 115.675781 64.296875 108.28125 71.691406 99.167969 71.691406 C 90.078125 71.691406 82.683594 64.296875 82.683594 55.207031 Z "/>
<path d="M 148.644531 27.707031 L 148.644531 148.644531 L 159.660156 148.644531 L 159.660156 27.707031 Z "/>
<path d="M 170.652344 154.140625 C 170.652344 163.253906 163.253906 170.652344 154.167969 170.652344 C 145.050781 170.652344 137.65625 163.253906 137.65625 154.140625 C 137.65625 145.050781 145.050781 137.65625 154.167969 137.65625 C 163.253906 137.65625 170.652344 145.050781 170.652344 154.140625 Z "/>
<path d="M 214.636719 225.625 L 214.636719 137.65625 L 203.644531 137.65625 L 203.644531 225.625 Z "/>
<path d="M 192.628906 132.160156 C 192.628906 123.046875 200.027344 115.675781 209.140625 115.675781 C 218.230469 115.675781 225.625 123.046875 225.625 132.160156 C 225.625 141.277344 218.230469 148.671875 209.140625 148.671875 C 200.027344 148.671875 192.628906 141.277344 192.628906 132.160156 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,4 @@
<svg width="256" xmlns="http://www.w3.org/2000/svg" height="256" viewBox="0 0 256 256" xmlns:xlink="http://www.w3.org/1999/xlink">
<path style="fill:none;stroke:#6aaf53;stroke-linejoin:round;stroke-linecap:round;stroke-width:2" d="M 10.540283 1021.361712 L 37.459717 1021.361712 C 38.310791 1021.361712 39 1022.051653 39 1022.901995 L 39 1033.821673 C 39 1034.672747 38.310791 1035.361956 37.459717 1035.361956 L 10.540283 1035.361956 C 9.689209 1035.361956 9 1034.672747 9 1033.821673 L 9 1022.901995 C 9 1022.051653 9.689209 1021.361712 10.540283 1021.361712 Z " transform="matrix(5.33333 0 0 5.33333 0 -5356.5984)"/>
<path style="fill:#6aaf53" d="M 61.332031 101.332031 C 59.855469 101.332031 58.667969 102.523438 58.667969 104 L 58.667969 152 C 58.667969 153.476562 59.855469 154.667969 61.332031 154.667969 L 125.617188 154.667969 C 127.097656 154.667969 128.285156 153.476562 128.285156 152 L 128.285156 104 C 128.285156 102.523438 127.097656 101.332031 125.617188 101.332031 Z M 80 138.667969 L 80 117.332031 L 85.332031 117.332031 L 85.332031 138.667969 Z M 90.667969 138.667969 L 90.667969 117.332031 L 96 117.332031 L 96 138.667969 Z M 101.332031 138.667969 L 101.332031 117.332031 L 106.667969 117.332031 L 106.667969 138.667969 Z "/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256px" height="256px" viewBox="0 0 256 256" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(48.627451%,61.176471%,20.784314%);fill-opacity:1;" d="M 42.6875 0 C 37.1875 0 32 5.421875 32 11.15625 L 32 244.84375 C 32 250.265625 37.5 256 42.6875 256 L 213.3125 256 C 218.5 256 224 250.265625 224 244.84375 L 224 72 L 152 0 Z M 42.6875 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 168 72 L 224 128 L 224 72 Z M 168 72 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 152 0 L 223.9375 72 L 163.03125 72 C 157.640625 72 152 66.296875 152 60.90625 Z M 152 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 128 175.09375 L 91.5625 138.65625 L 128 102.25 L 140.15625 114.375 L 115.84375 138.65625 L 128 150.8125 L 164.4375 114.375 L 132.6875 82.65625 C 130.109375 80.078125 125.890625 80.078125 123.3125 82.65625 L 72 133.96875 C 69.390625 136.546875 69.390625 140.765625 72 143.375 L 123.3125 194.6875 C 125.890625 197.265625 130.109375 197.265625 132.6875 194.6875 L 184 143.375 C 186.609375 140.765625 186.609375 136.546875 184 133.96875 L 176.5625 126.53125 Z M 128 175.09375 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256px" height="256px" viewBox="0 0 256 256" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(87.45098%,9.411765%,9.411765%);fill-opacity:1;" d="M 42.6875 0 C 37.1875 0 32 5.421875 32 11.15625 L 32 244.84375 C 32 250.265625 37.5 256 42.6875 256 L 213.3125 256 C 218.5 256 224 250.265625 224 244.84375 L 224 72 L 152 0 Z M 42.6875 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 168 72 L 224 128 L 224 72 Z M 168 72 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 152 0 L 223.9375 72 L 163.03125 72 C 157.640625 72 152 66.296875 152 60.90625 Z M 152 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 125.5 85.40625 C 125.5 85.40625 129.1875 119.375 103.15625 164.25 C 77.125 209.09375 69.46875 203.0625 66.75 201.53125 C 64 199.96875 60.46875 194.90625 72.03125 184.8125 C 83.5625 174.71875 88.0625 174.90625 88.0625 174.90625 C 88.0625 174.90625 77.5 181.3125 73.40625 187.53125 C 69.28125 193.75 65.96875 197.625 66.9375 199.375 C 67.90625 201.125 79.71875 192.21875 84.59375 184.65625 C 92.375 172.625 107.0625 150.25 113.90625 128.90625 C 120.75 107.53125 125.5 85.40625 125.5 85.40625 Z M 125.5 85.40625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 189.65625 164.03125 C 189.65625 164.03125 189.0625 165.59375 182.21875 165.03125 C 175.375 164.4375 148.75 156.09375 134.46875 139 C 120.1875 121.90625 119 98.40625 118.03125 86.1875 C 117.03125 73.96875 122.46875 77.375 123.25 78.90625 C 124.46875 79.9375 125.0625 83.28125 125.0625 83.28125 C 125.0625 83.28125 124.625 78.28125 122.46875 76.125 C 120.3125 74 118.40625 73.96875 116.25 77.65625 C 114.09375 81.34375 113.125 91.625 114.875 101.53125 C 116.65625 111.4375 123.90625 134.15625 132.90625 144.625 C 141.90625 155.125 159.90625 164.25 173.21875 166.96875 C 186.53125 169.6875 189.65625 164.0625 189.65625 164.0625 Z M 189.65625 164.03125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 102.9375 168.5 C 102.9375 168.5 128.78125 160.15625 153.25 157.84375 C 177.71875 155.5 186.15625 158.03125 188.28125 159.78125 C 190.4375 161.53125 190.4375 163.46875 190.4375 163.46875 C 190.4375 163.46875 193.1875 160.75 191.375 158 C 189.84375 155.125 187.5 152.78125 168.125 153.375 C 148.75 153.9375 147.375 154.71875 129.5625 158.03125 C 111.75 161.34375 102.9375 168.5 102.9375 168.5 Z M 102.9375 168.5 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256px" height="256px" viewBox="0 0 256 256" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.392157%,40.784314%,80.784314%);fill-opacity:1;" d="M 42.6875 0 C 37.1875 0 32 5.421875 32 11.15625 L 32 244.84375 C 32 250.265625 37.5 256 42.6875 256 L 213.3125 256 C 218.5 256 224 250.265625 224 244.84375 L 224 72 L 152 0 Z M 42.6875 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 168 72 L 224 128 L 224 72 Z M 168 72 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 152 0 L 223.9375 72 L 163.03125 72 C 157.640625 72 152 66.296875 152 60.90625 Z M 152 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 80 88 L 128 88 L 128 128 L 80 128 Z M 80 88 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 136 88 L 176 88 L 176 96 L 136 96 Z M 136 88 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 32 192 L 32 245.34375 C 32 250.53125 37.5 256 42.65625 256 L 213.34375 256 C 218.5 256 224 250.53125 224 245.34375 L 224 192 Z M 32 192 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 136 104 L 176 104 L 176 112 L 136 112 Z M 136 104 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 81.546875 240.609375 C 81.8125 240.671875 82.109375 240.671875 82.4375 240.671875 C 82.734375 240.671875 83.03125 240.671875 83.296875 240.671875 C 85.53125 240.671875 87.375 240.3125 88.859375 239.546875 C 90.40625 238.828125 91.625 237.8125 92.5 236.5 C 93.46875 235.203125 94.125 233.671875 94.484375 231.921875 C 94.90625 230.109375 95.140625 228.140625 95.140625 226 C 95.140625 224.15625 94.96875 222.34375 94.640625 220.5625 C 94.3125 218.828125 93.796875 217.28125 92.96875 215.9375 C 92.171875 214.578125 91.09375 213.53125 89.75 212.734375 C 88.359375 211.890625 86.578125 211.484375 84.421875 211.484375 C 83.984375 211.484375 83.53125 211.484375 82.96875 211.5625 C 82.4375 211.5625 81.984375 211.59375 81.546875 211.6875 L 81.546875 240.609375 M 105.046875 226 C 105.046875 229.984375 104.453125 233.40625 103.296875 236.234375 C 102.1875 239.03125 100.640625 241.296875 98.625 243.046875 C 96.625 244.8125 94.1875 246.09375 91.390625 246.921875 C 88.65625 247.71875 85.59375 248.109375 82.28125 248.109375 C 80.53125 248.109375 78.78125 248.046875 77.109375 247.84375 C 75.46875 247.71875 73.6875 247.453125 71.78125 247.09375 L 71.78125 205.078125 C 74.015625 204.640625 76.09375 204.390625 78.0625 204.25 C 80 204.125 81.84375 204.015625 83.53125 204.015625 C 86.75 204.015625 89.71875 204.453125 92.34375 205.265625 C 95.046875 206.125 97.3125 207.4375 99.1875 209.25 C 101.03125 211 102.4375 213.296875 103.46875 216.0625 C 104.515625 218.796875 105.046875 222.109375 105.046875 226 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 119.25 226 C 119.25 228.109375 119.3125 230.078125 119.484375 231.921875 C 119.71875 233.734375 120.078125 235.3125 120.609375 236.65625 C 121.203125 238 121.984375 239.0625 122.96875 239.84375 C 123.984375 240.640625 125.34375 241.03125 127.015625 241.03125 C 128.65625 241.03125 129.984375 240.640625 131 239.84375 C 132.046875 239.0625 132.84375 238 133.375 236.65625 C 133.953125 235.25 134.328125 233.671875 134.484375 231.859375 C 134.6875 230.046875 134.8125 228.109375 134.8125 226 C 134.8125 223.921875 134.6875 221.984375 134.484375 220.171875 C 134.328125 218.296875 133.953125 216.71875 133.375 215.375 C 132.84375 214.015625 132.078125 212.96875 131.0625 212.1875 C 130.078125 211.390625 128.734375 211 127.015625 211 C 125.34375 211 123.984375 211.390625 122.96875 212.1875 C 121.984375 212.96875 121.203125 214.0625 120.609375 215.4375 C 120.078125 216.78125 119.71875 218.359375 119.484375 220.171875 C 119.328125 221.984375 119.25 223.921875 119.25 226 M 109.3125 226 C 109.3125 218.59375 110.890625 213 114.03125 209.25 C 117.15625 205.4375 121.453125 203.5625 127.015625 203.5625 C 132.8125 203.5625 137.1875 205.4375 140.21875 209.25 C 143.203125 213 144.71875 218.59375 144.71875 226 C 144.71875 233.4375 143.203125 239.03125 140.109375 242.84375 C 137.046875 246.59375 132.703125 248.46875 127.125 248.46875 C 121.328125 248.46875 116.921875 246.59375 113.859375 242.84375 C 110.828125 239.03125 109.3125 233.4375 109.3125 226 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 170.34375 248.46875 C 163.4375 248.46875 158.140625 246.53125 154.484375 242.609375 C 150.84375 238.734375 149 233.203125 149 226 C 149 222.453125 149.5625 219.25 150.671875 216.484375 C 151.796875 213.6875 153.34375 211.359375 155.28125 209.453125 C 157.28125 207.515625 159.65625 206.0625 162.359375 205.078125 C 165.078125 204.0625 168.078125 203.5625 171.296875 203.5625 C 173.046875 203.5625 174.625 203.6875 176 203.953125 C 177.421875 204.1875 178.671875 204.484375 179.71875 204.8125 C 180.78125 205.140625 181.671875 205.46875 182.359375 205.828125 C 183.078125 206.21875 183.640625 206.484375 184 206.6875 L 181.46875 213.5 C 180.25 212.8125 178.765625 212.21875 177.03125 211.75 C 175.34375 211.265625 173.375 211 171.140625 211 C 169.625 211 168.109375 211.265625 166.625 211.75 C 165.21875 212.21875 163.90625 213.03125 162.75 214.1875 C 161.625 215.3125 160.703125 216.8125 159.953125 218.6875 C 159.265625 220.609375 158.9375 222.96875 158.9375 225.796875 C 158.9375 230.703125 159.890625 234.484375 161.796875 237.125 C 163.734375 239.71875 166.921875 241.03125 171.296875 241.03125 C 173.828125 241.03125 175.9375 240.765625 177.578125 240.28125 C 179.265625 239.75 180.609375 239.25 181.625 238.734375 L 184.09375 245.46875 C 182.71875 246.234375 180.84375 246.921875 178.4375 247.546875 C 176.140625 248.171875 173.4375 248.46875 170.34375 248.46875 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 136 120 L 176 120 L 176 128 L 136 128 Z M 136 120 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 80 136 L 176 136 L 176 144 L 80 144 Z M 80 136 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 80 152 L 176 152 L 176 160 L 80 160 Z M 80 152 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 80 168 L 176 168 L 176 176 L 80 176 Z M 80 168 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

View file

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256px" height="256px" viewBox="0 0 256 256" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.392157%,40.784314%,80.784314%);fill-opacity:1;" d="M 42.6875 0 C 37.1875 0 32 5.421875 32 11.15625 L 32 244.84375 C 32 250.265625 37.5 256 42.6875 256 L 213.3125 256 C 218.5 256 224 250.265625 224 244.84375 L 224 72 L 152 0 Z M 42.6875 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 168 72 L 224 128 L 224 72 Z M 168 72 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 152 0 L 223.9375 72 L 163.03125 72 C 157.640625 72 152 66.296875 152 60.90625 Z M 152 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 80 88 L 128 88 L 128 128 L 80 128 Z M 80 88 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 136 88 L 176 88 L 176 96 L 136 96 Z M 136 88 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 32 192 L 32 245.34375 C 32 250.53125 37.5 256 42.65625 256 L 213.34375 256 C 218.5 256 224 250.53125 224 245.34375 L 224 192 Z M 32 192 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 136 104 L 176 104 L 176 112 L 136 112 Z M 136 104 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 136 120 L 176 120 L 176 128 L 136 128 Z M 136 120 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 81.28125 226.375 C 81.28125 228.484375 81.34375 230.46875 81.515625 232.3125 C 81.703125 234.125 82.0625 235.703125 82.59375 237.046875 C 83.15625 238.40625 83.953125 239.453125 84.9375 240.25 C 85.921875 241.03125 87.234375 241.4375 88.890625 241.4375 C 90.5 241.4375 91.78125 241.03125 92.765625 240.25 C 93.796875 239.453125 94.578125 238.40625 95.109375 237.046875 C 95.671875 235.640625 96.03125 234.046875 96.203125 232.25 C 96.390625 230.4375 96.5 228.484375 96.5 226.375 C 96.5 224.3125 96.390625 222.359375 96.203125 220.546875 C 96.03125 218.671875 95.671875 217.09375 95.109375 215.75 C 94.578125 214.390625 93.828125 213.34375 92.84375 212.546875 C 91.84375 211.765625 90.53125 211.359375 88.890625 211.359375 C 87.234375 211.359375 85.921875 211.765625 84.9375 212.546875 C 83.953125 213.34375 83.15625 214.421875 82.59375 215.8125 C 82.0625 217.15625 81.703125 218.734375 81.515625 220.546875 C 81.34375 222.359375 81.28125 224.3125 81.28125 226.375 M 71.5625 226.375 C 71.5625 218.96875 73.109375 213.375 76.140625 209.625 C 79.203125 205.796875 83.453125 203.921875 88.890625 203.921875 C 94.515625 203.921875 98.828125 205.796875 101.765625 209.625 C 104.734375 213.375 106.203125 218.96875 106.203125 226.375 C 106.203125 233.828125 104.6875 239.421875 101.703125 243.25 C 98.703125 247 94.453125 248.875 88.953125 248.875 C 83.3125 248.875 79 247 76.015625 243.25 C 73.046875 239.421875 71.5625 233.828125 71.5625 226.375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 122.046875 241 C 122.28125 241.0625 122.578125 241.0625 122.875 241.0625 C 123.203125 241.0625 123.5 241.0625 123.734375 241.0625 C 125.90625 241.0625 127.71875 240.703125 129.171875 239.953125 C 130.671875 239.21875 131.859375 238.203125 132.75 236.890625 C 133.671875 235.609375 134.328125 234.046875 134.703125 232.3125 C 135.09375 230.5 135.328125 228.515625 135.328125 226.375 C 135.328125 224.53125 135.15625 222.71875 134.828125 220.953125 C 134.53125 219.203125 134 217.65625 133.21875 216.296875 C 132.421875 214.953125 131.375 213.90625 130.015625 213.109375 C 128.671875 212.25 126.953125 211.859375 124.8125 211.859375 C 124.421875 211.859375 123.96875 211.859375 123.4375 211.921875 C 122.90625 211.921875 122.453125 211.953125 122.046875 212.046875 L 122.046875 241 M 145 226.375 C 145 230.359375 144.453125 233.796875 143.296875 236.625 C 142.203125 239.421875 140.6875 241.6875 138.71875 243.4375 C 136.765625 245.21875 134.40625 246.5 131.671875 247.328125 C 128.96875 248.125 126 248.515625 122.75 248.515625 C 121.03125 248.515625 119.34375 248.453125 117.703125 248.25 C 116.09375 248.125 114.34375 247.859375 112.5 247.484375 L 112.5 205.4375 C 114.671875 205 116.71875 204.75 118.625 204.609375 C 120.53125 204.484375 122.3125 204.375 123.96875 204.375 C 127.125 204.375 130.015625 204.8125 132.59375 205.625 C 135.21875 206.484375 137.46875 207.8125 139.28125 209.609375 C 141.09375 211.359375 142.46875 213.671875 143.453125 216.4375 C 144.515625 219.171875 145 222.5 145 226.375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 184 204.875 L 184 211.984375 L 171.328125 211.984375 L 171.328125 247.953125 L 161.703125 247.953125 L 161.703125 211.984375 L 149.0625 211.984375 L 149.0625 204.875 L 184 204.875 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 80 136 L 176 136 L 176 144 L 80 144 Z M 80 136 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 80 152 L 176 152 L 176 160 L 80 160 Z M 80 152 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;" d="M 80 168 L 176 168 L 176 176 L 80 176 Z M 80 168 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

View file

@ -0,0 +1,134 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="256"
height="256"
viewBox="0 0 256 256"
version="1.1"
id="svg2"
inkscape:version="0.91 r13725"
sodipodi:docname="application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg">
<metadata
id="metadata37">
<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>
<defs
id="defs35" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="998"
id="namedview33"
showgrid="true"
inkscape:zoom="1.84375"
inkscape:cx="207.62725"
inkscape:cy="158.98136"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3404" />
</sodipodi:namedview>
<path
inkscape:connector-curvature="0"
id="path5"
d="M 42.6875,0 C 37.1875,0 32,5.42188 32,11.15625 l 0,233.68751 C 32,250.26562 37.5,256 42.6875,256 l 170.625,0 C 218.5,256 224,250.26562 224,244.84376 L 224,72 152,0 Z m 0,0"
style="fill:#3366cc;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path7"
d="m 168,72 56,56 0,-56 z m 0,0"
style="fill:#000000;fill-opacity:0.19607801;fill-rule:nonzero;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path9"
d="m 152,0 71.9375,72 -60.90625,0 C 157.64062,72 152,66.296876 152,60.906248 Z m 0,0"
style="fill:#ffffff;fill-opacity:0.39215698;fill-rule:nonzero;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path11"
d="m 80,88 48,0 0,40 -48,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path13"
d="m 136,88 40,0 0,8 -40,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path15"
d="m 32,192 0,53.34376 C 32,250.53124 37.5,256 42.656248,256 l 170.687512,0 C 218.5,256 224,250.53124 224,245.34376 L 224,192 Z m 0,0"
style="fill:#000000;fill-opacity:0.19607801;fill-rule:nonzero;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path17"
d="m 136,104 40,0 0,8 -40,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path25"
d="m 136,120 40,0 0,8 -40,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path27"
d="m 80,136 96,0 0,8 -96,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path29"
d="m 80,152 96,0 0,8 -96,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path31"
d="m 80,168 96,0 0,8 -96,0 z m 0,0"
style="fill:#f8f8f8;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<g
id="g3420"
transform="matrix(3.309714,0,0,3.3182972,4.606149,38.296704)">
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 20.386719,60.152344 c 0.06641,0.01563 0.140625,0.01563 0.222656,0.01563 0.07422,0 0.148437,0 0.214844,0 0.558593,0 1.019531,-0.08984 1.390625,-0.28125 0.386718,-0.179688 0.691406,-0.433594 0.910156,-0.761719 0.242188,-0.324219 0.40625,-0.707031 0.496094,-1.144531 0.105468,-0.453125 0.164062,-0.945313 0.164062,-1.480469 0,-0.460938 -0.04297,-0.914062 -0.125,-1.359375 -0.08203,-0.433594 -0.210937,-0.820313 -0.417968,-1.15625 -0.199219,-0.339844 -0.46875,-0.601563 -0.804688,-0.800781 -0.347656,-0.210938 -0.792969,-0.3125 -1.332031,-0.3125 -0.109375,0 -0.222657,0 -0.363281,0.01953 -0.132813,0 -0.246094,0.0078 -0.355469,0.03125 l 0,7.230469 M 26.261719,56.5 c 0,0.996094 -0.148438,1.851562 -0.4375,2.558594 -0.277344,0.699218 -0.664063,1.265625 -1.167969,1.703125 -0.5,0.441406 -1.109375,0.761719 -1.808594,0.96875 -0.683594,0.199219 -1.449218,0.296875 -2.277344,0.296875 -0.4375,0 -0.875,-0.01563 -1.292968,-0.06641 -0.410156,-0.03125 -0.855469,-0.09766 -1.332032,-0.1875 l 0,-10.503907 c 0.558594,-0.109375 1.078126,-0.171875 1.570313,-0.207031 0.484375,-0.03125 0.945313,-0.05859 1.367187,-0.05859 0.804688,0 1.546876,0.109375 2.203126,0.3125 0.675781,0.214844 1.242187,0.542969 1.710937,0.996094 0.460937,0.4375 0.8125,1.011719 1.070313,1.703125 0.261718,0.683594 0.394531,1.511719 0.394531,2.484375"
id="path19"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 29.8125,56.5 c 0,0.527344 0.01563,1.019531 0.05859,1.480469 0.05859,0.453125 0.148437,0.847656 0.28125,1.183593 0.148437,0.335938 0.34375,0.601563 0.589844,0.796876 0.253906,0.199218 0.59375,0.296874 1.011718,0.296874 0.410156,0 0.742188,-0.09766 0.996094,-0.296874 0.261719,-0.195313 0.460938,-0.460938 0.59375,-0.796876 0.144531,-0.351562 0.238281,-0.746093 0.277344,-1.199218 0.05078,-0.453125 0.08203,-0.9375 0.08203,-1.464844 0,-0.519531 -0.03125,-1.003906 -0.08203,-1.457031 C 33.58203,54.574219 33.488281,54.179688 33.34375,53.84375 33.210938,53.503906 33.019531,53.242188 32.765625,53.046875 32.519531,52.847656 32.183594,52.75 31.753906,52.75 c -0.417968,0 -0.757812,0.09766 -1.011718,0.296875 -0.246094,0.195313 -0.441407,0.46875 -0.589844,0.8125 -0.132813,0.335937 -0.222656,0.730469 -0.28125,1.183594 -0.03906,0.453125 -0.05859,0.9375 -0.05859,1.457031 m -2.484375,0 c 0,-1.851562 0.394531,-3.25 1.179687,-4.1875 0.78125,-0.953125 1.855469,-1.421875 3.246094,-1.421875 1.449219,0 2.542969,0.46875 3.300782,1.421875 0.746093,0.9375 1.125,2.335938 1.125,4.1875 0,1.859375 -0.378907,3.257812 -1.152344,4.210938 -0.765625,0.9375 -1.851563,1.40625 -3.246094,1.40625 -1.449219,0 -2.550781,-0.46875 -3.316406,-1.40625 C 27.707031,59.757812 27.328125,58.359375 27.328125,56.5"
id="path21"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 42.585938,62.117188 c -1.726563,0 -3.050782,-0.484376 -3.964844,-1.464844 C 37.710938,59.683594 37.25,58.300781 37.25,56.5 c 0,-0.886719 0.140625,-1.6875 0.417969,-2.378906 0.28125,-0.699219 0.667969,-1.28125 1.152343,-1.757813 0.5,-0.484375 1.09375,-0.847656 1.769532,-1.09375 0.679687,-0.253906 1.429687,-0.378906 2.234375,-0.378906 0.4375,0 0.832031,0.03125 1.175781,0.09766 0.355469,0.05859 0.667969,0.132813 0.929688,0.214844 0.265624,0.08203 0.488281,0.164063 0.660156,0.253906 0.179687,0.09766 0.320312,0.164063 0.410156,0.214844 L 45.367188,53.375 C 45.0625,53.203125 44.691406,53.054688 44.257812,52.9375 43.835938,52.816406 43.34375,52.75 42.785156,52.75 c -0.378906,0 -0.757812,0.06641 -1.128906,0.1875 -0.351562,0.117188 -0.679688,0.320312 -0.96875,0.609375 -0.28125,0.28125 -0.511719,0.65625 -0.699219,1.125 -0.171875,0.480469 -0.253906,1.070313 -0.253906,1.777344 0,1.226562 0.238281,2.171875 0.714844,2.832031 0.484375,0.648438 1.28125,0.976562 2.375,0.976562 0.632812,0 1.160156,-0.06641 1.570312,-0.1875 0.421875,-0.132812 0.757813,-0.257812 1.011719,-0.386718 l 0.617188,1.683594 c -0.34375,0.191406 -0.8125,0.363281 -1.414063,0.519531 -0.574219,0.15625 -1.25,0.230469 -2.023437,0.230469"
id="path23"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 54.00216,62 C 53.748254,61.398437 53.43966,60.730469 53.072473,60 52.72091,59.265625 52.34591,58.539063 51.951379,57.8125 51.568567,58.503906 51.18966,59.222656 50.806848,59.984375 50.427941,60.722656 50.103723,61.398437 49.826379,62 l -2.625,0 c 0.132812,-0.324219 0.324219,-0.703125 0.578125,-1.152344 0.257813,-0.445312 0.542969,-0.929687 0.84375,-1.449219 0.316406,-0.515624 0.644531,-1.050781 0.988281,-1.585937 0.339844,-0.5625 0.667969,-1.089844 0.976563,-1.597656 l -3.1875,-5.160157 2.621093,0 1.929688,3.503907 2.03125,-3.503907 2.445312,0 -3.113281,5.109376 c 0.351563,0.507812 0.703125,1.035156 1.039063,1.589843 0.339844,0.558594 0.660156,1.09375 0.941406,1.628907 0.3125,0.519531 0.570312,1.003906 0.796875,1.464843 0.21875,0.449219 0.402344,0.828125 0.527344,1.152344 l -2.617188,0"
id="path15-6"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9 KiB

View file

@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256px" height="256px" viewBox="0 0 256 256" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 42.6875 0 C 37.1875 0 32 5.421875 32 11.15625 L 32 244.84375 C 32 250.265625 37.5 256 42.6875 256 L 213.3125 256 C 218.5 256 224 250.265625 224 244.84375 L 224 72 L 152 0 Z M 42.6875 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 168 72 L 224 128 L 224 72 Z M 168 72 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 152 0 L 223.9375 72 L 163.03125 72 C 157.640625 72 152 66.296875 152 60.90625 Z M 152 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 88 L 176 88 L 176 96 L 80 96 Z M 80 88 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 104 L 176 104 L 176 112 L 80 112 Z M 80 104 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 120 L 176 120 L 176 128 L 80 128 Z M 80 120 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 136 L 176 136 L 176 144 L 80 144 Z M 80 136 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 152 L 176 152 L 176 160 L 80 160 Z M 80 152 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 168 L 176 168 L 176 176 L 80 176 Z M 80 168 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 184 L 176 184 L 176 192 L 80 192 Z M 80 184 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256px" height="256px" viewBox="0 0 256 256" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 42.6875 0 C 37.1875 0 32 5.421875 32 11.15625 L 32 244.84375 C 32 250.265625 37.5 256 42.6875 256 L 213.3125 256 C 218.5 256 224 250.265625 224 244.84375 L 224 72 L 152 0 Z M 42.6875 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 168 72 L 224 128 L 224 72 Z M 168 72 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 152 0 L 223.9375 72 L 163.03125 72 C 157.640625 72 152 66.296875 152 60.90625 Z M 152 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 88 L 128 88 L 128 128 L 80 128 Z M 80 88 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 136 88 L 176 88 L 176 96 L 136 96 Z M 136 88 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 136 104 L 176 104 L 176 112 L 136 112 Z M 136 104 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 136 120 L 176 120 L 176 128 L 136 128 Z M 136 120 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 136 L 176 136 L 176 144 L 80 144 Z M 80 136 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 152 L 176 152 L 176 160 L 80 160 Z M 80 152 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 168 L 176 168 L 176 176 L 80 176 Z M 80 168 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 184 L 176 184 L 176 192 L 80 192 Z M 80 184 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256px" height="256px" viewBox="0 0 256 256" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 42.6875 0 C 37.1875 0 32 5.421875 32 11.15625 L 32 244.84375 C 32 250.265625 37.5 256 42.6875 256 L 213.3125 256 C 218.5 256 224 250.265625 224 244.84375 L 224 72 L 152 0 Z M 42.6875 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 168 72 L 224 128 L 224 72 Z M 168 72 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 152 0 L 223.9375 72 L 163.03125 72 C 157.640625 72 152 66.296875 152 60.90625 Z M 152 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 96 112 L 64 144 L 64 160 L 96 192 L 96 168 L 80 152.015625 L 96 136 Z M 96 112 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 160 112 L 192 144 L 192 160 L 160 192 L 160 168 L 176 152.015625 L 160 136 Z M 160 112 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 136 112 L 152 112 L 120 192 L 104 192 Z M 136 112 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256px" height="256px" viewBox="0 0 256 256" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 42.6875 0 C 37.1875 0 32 5.421875 32 11.15625 L 32 244.84375 C 32 250.265625 37.5 256 42.6875 256 L 213.3125 256 C 218.5 256 224 250.265625 224 244.84375 L 224 72 L 152 0 Z M 42.6875 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 168 72 L 224 128 L 224 72 Z M 168 72 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 152 0 L 223.9375 72 L 163.03125 72 C 157.640625 72 152 66.296875 152 60.90625 Z M 152 0 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 88 L 176 88 L 176 96 L 80 96 Z M 80 88 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 104 L 176 104 L 176 112 L 80 112 Z M 80 104 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 120 L 176 120 L 176 128 L 80 128 Z M 80 120 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 136 L 176 136 L 176 144 L 80 144 Z M 80 136 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 152 L 176 152 L 176 160 L 80 160 Z M 80 152 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 168 L 176 168 L 176 176 L 80 176 Z M 80 168 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 80 184 L 176 184 L 176 192 L 80 192 Z M 80 184 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="256px"
height="256px"
viewBox="0 0 256 256"
version="1.1"
id="svg2"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-x-tex.svg">
<metadata
id="metadata15">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs13">
<clipPath
id="clipPath-889157936">
<g
transform="translate(0,-1004.3622)"
id="g17">
<path
style="fill:#1890d0"
inkscape:connector-curvature="0"
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
id="path19" />
</g>
</clipPath>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview11"
showgrid="true"
inkscape:zoom="5.6568543"
inkscape:cx="183.17735"
inkscape:cy="59.39077"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3019" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 42.687052,0.00238 C 37.187296,0.0025 32,5.4143 32,11.15226 l 0,233.69792 C 32,250.26208 37.499776,256 42.687052,256 l 170.617888,0 c 5.18732,0 10.68706,-5.73792 10.68706,-11.14982 L 224,72 152.00032,0 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 167.99939,72 55.99977,56.00002 0,-56.00002 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="M 152.00192,0.00238 223.93436,72 163.02855,72 c -5.38361,0 -11.02663,-5.7079 -11.02663,-11.09152 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
id="g53"
clip-path="url(#clipPath-889157936)"
transform="matrix(5.3333102,0,0,5.3333342,1.44e-4,15.98934)">
<!-- color: #aade54 -->
<g
id="g55">
<path
id="path57"
d="m 20.2,17.02 -8.938,0 -0.262,3.441 0.277,0 c 0.199,-2.578 0.422,-3.03 2.82,-3.03 0.277,0 0.73,0 0.855,0 0.297,0.047 0.297,0.238 0.297,0.594 l 0,8.473 c 0,0.566 -0.047,0.734 -1.352,0.734 l -0.441,0 0,0.375 c 0.746,-0.016 1.52,-0.031 2.277,-0.031 0.758,0 1.535,0.023 2.277,0.031 l 0,-0.375 -0.441,0 c -1.285,0 -1.332,-0.172 -1.332,-0.734 l 0,-8.473 c 0,-0.344 0,-0.527 0.281,-0.594 l 0.848,0 c 2.367,0 2.605,0.449 2.809,3.03 l 0.27,0"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
id="path59"
d="m 27.969,27.07 -0.277,0 c -0.34,2.309 -0.543,3.563 -3.266,3.563 l -2.148,0 c -0.617,0 -0.645,-0.078 -0.645,-0.613 l 0,-4.352 1.457,0 c 1.461,0 1.602,0.539 1.602,1.852 l 0.25,0 0,-4.047 -0.25,0 c 0,1.289 -0.141,1.82 -1.602,1.82 l -1.457,0 0,-3.859 c 0,-0.523 0.027,-0.602 0.645,-0.602 l 2.117,0 c 2.395,0 2.676,0.957 2.891,3.01 l 0.281,0 -0.371,-3.441 -7.84,0 0,0.43 c 1.098,0 1.273,0 1.273,0.699 l 0,8.398 c 0,0.699 -0.176,0.699 -1.273,0.699 l 0,0.375 8.05,0"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
id="path61"
d="m 32.14,21.719 2.289,-3.328 c 0.23,-0.324 0.699,-0.996 1.969,-1.016 l 0,-0.375 c -0.355,0.031 -0.945,0.031 -1.316,0.031 -0.508,0 -1.145,0 -1.531,-0.031 l 0,0.375 c 0.496,0.047 0.621,0.359 0.621,0.609 0,0.188 -0.078,0.313 -0.188,0.465 l -2.043,2.98 -2.289,-3.367 c -0.109,-0.172 -0.125,-0.219 -0.125,-0.266 0,-0.141 0.168,-0.406 0.684,-0.422 l 0,-0.375 c -0.496,0.031 -1.25,0.031 -1.766,0.031 -0.398,0 -1.172,0 -1.547,-0.031 l 0,0.375 c 0.852,0 1.129,0.031 1.469,0.516 l 2.988,4.41 -2.695,3.957 c -0.664,0.965 -1.668,0.984 -1.965,0.984 l 0,0.375 c 0.355,-0.031 0.941,-0.031 1.316,-0.031 0.414,0 1.145,0 1.527,0.031 l 0,-0.375 c -0.477,-0.047 -0.617,-0.359 -0.617,-0.609 0,-0.203 0.078,-0.313 0.156,-0.422 l 2.477,-3.633 2.691,3.977 c 0.121,0.172 0.121,0.219 0.121,0.266 0,0.125 -0.137,0.391 -0.68,0.422 l 0,0.379 c 0.496,-0.031 1.25,-0.031 1.762,-0.031 0.402,0 1.176,0 1.551,0.031 l 0,-0.379 c -0.992,0 -1.148,-0.074 -1.453,-0.516"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256px" height="256px" viewBox="0 0 256 256" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.27451%,86.27451%,86.27451%);fill-opacity:1;" d="M 42.6875 0 C 37.1875 0 32 5.421875 32 11.15625 L 32 244.84375 C 32 250.265625 37.5 256 42.6875 256 L 213.3125 256 C 218.5 256 224 250.265625 224 244.84375 L 224 72 L 152 0 Z M 42.6875 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.196078;" d="M 168 72 L 224 128 L 224 72 Z M 168 72 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.392157;" d="M 152 0 L 223.9375 72 L 163.03125 72 C 157.640625 72 152 66.296875 152 60.90625 Z M 152 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 96 112 L 64 144 L 64 160 L 96 192 L 96 168 L 80 152.015625 L 96 136 Z M 96 112 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 160 112 L 192 144 L 192 160 L 160 192 L 160 168 L 176 152.015625 L 160 136 Z M 160 112 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333333%,53.333333%,53.333333%);fill-opacity:1;" d="M 136 112 L 152 112 L 120 192 L 104 192 Z M 136 112 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,6 @@
<svg width="32" xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="M 3.429688 0 L 20.570312 0 C 24 0 24 0 24 3.554688 L 24 28.445312 C 24 32 24 32 20.570312 32 L 3.429688 32 C 0 32 0 32 0 28.445312 L 0 3.554688 C 0 0 0 0 3.429688 0 Z "/>
<path style="fill:#268bd2" d="M 18.75 26.75 C 19.03125 26.75 19.4375 26.5 19.9375 26 L 29.9375 18 C 31.945312 15.992188 31.9375 16 29.9375 14 L 19.9375 6 C 18.4375 4.5 18.03125 5.25 17.9375 8.25 C 17.90625 9.25 17.9375 10.5 17.9375 12 C 17.917969 12 17.898438 12 17.875 12 C 7.9375 12 3.9375 18 4 26.0625 C 7.9375 22 11.9375 20 17.9375 20.125 C 17.9375 21.558594 17.90625 22.785156 17.9375 23.75 C 18 25.75 18.1875 26.75 18.75 26.75 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 806 B

View file

@ -0,0 +1,12 @@
<svg width="32" xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill-rule:evenodd">
<path style="fill:#aaa;fill-opacity:.941" d="M 9.332031 0.0078125 L 22.667969 0.0078125 C 26 0.0078125 26 -0.324219 26 3.339844 L 26 16.667969 C 26 20 26 20 22.667969 20 L 9.332031 20 C 6 20 6 20 6 16.667969 L 6 3.339844 C 6 0.0078125 6 0.0078125 9.332031 0.0078125 Z "/>
<path style="fill:#ccc" d="M 3.199219 8 L 28.800781 8 C 32 8 32 8 32 11.199219 L 32 20.800781 C 32 24 32 24 28.800781 24 L 3.199219 24 C 0 24 0 24 0 20.800781 L 0 11.199219 C 0 8 0 8 3.199219 8 Z "/>
</g>
<path style="fill:#dc322f" d="M 6 16 L 26 16 L 26 32 L 6 32 Z "/>
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="M 26 16 C 26 21.523438 21.523438 26 16 26 C 10.476562 26 6 21.523438 6 16 C 6 10.476562 10.476562 6 16 6 C 21.523438 6 26 10.476562 26 16 Z "/>
<path style="fill:#555" d="M 22.667969 16 C 22.667969 19.683594 19.683594 22.667969 16 22.667969 C 12.316406 22.667969 9.332031 19.683594 9.332031 16 C 9.332031 12.320312 12.316406 9.335938 16 9.335938 C 19.683594 9.335938 22.667969 12.320312 22.667969 16 Z "/>
<path style="fill:#eee" d="M 21 13.5 C 21 14.882812 19.878906 16 18.5 16 C 17.121094 16 16 14.882812 16 13.5 C 16 12.121094 17.121094 11 18.5 11 C 19.878906 11 21 12.121094 21 13.5 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,12 @@
<svg width="32" xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill:#ec86ab">
<path d="M 4.835938 3.464844 L 4.835938 19.957031 L 6.210938 19.957031 L 6.210938 3.464844 Z "/>
<path d="M 7.589844 20.644531 C 7.589844 21.78125 6.664062 22.707031 5.523438 22.707031 C 4.386719 22.707031 3.464844 21.78125 3.464844 20.644531 C 3.464844 19.503906 4.386719 18.582031 5.523438 18.582031 C 6.664062 18.582031 7.589844 19.503906 7.589844 20.644531 Z "/>
<path d="M 13.085938 28.203125 L 13.085938 7.589844 L 11.707031 7.589844 L 11.707031 28.203125 Z "/>
<path d="M 10.335938 6.902344 C 10.335938 5.761719 11.261719 4.835938 12.394531 4.835938 C 13.535156 4.835938 14.460938 5.761719 14.460938 6.902344 C 14.460938 8.035156 13.535156 8.960938 12.394531 8.960938 C 11.261719 8.960938 10.335938 8.035156 10.335938 6.902344 Z "/>
<path d="M 18.582031 3.464844 L 18.582031 18.582031 L 19.957031 18.582031 L 19.957031 3.464844 Z "/>
<path d="M 21.332031 19.269531 C 21.332031 20.40625 20.40625 21.332031 19.269531 21.332031 C 18.132812 21.332031 17.207031 20.40625 17.207031 19.269531 C 17.207031 18.132812 18.132812 17.207031 19.269531 17.207031 C 20.40625 17.207031 21.332031 18.132812 21.332031 19.269531 Z "/>
<path d="M 26.828125 28.203125 L 26.828125 17.207031 L 25.457031 17.207031 L 25.457031 28.203125 Z "/>
<path d="M 24.078125 16.519531 C 24.078125 15.378906 25.003906 14.460938 26.144531 14.460938 C 27.277344 14.460938 28.203125 15.378906 28.203125 16.519531 C 28.203125 17.660156 27.277344 18.582031 26.144531 18.582031 C 25.003906 18.582031 24.078125 17.660156 24.078125 16.519531 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,4 @@
<svg width="32" xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink">
<path style="fill:none;stroke:#6aaf53;stroke-linejoin:round;stroke-linecap:round;stroke-width:2" d="M 10.541016 1021.360247 L 37.458984 1021.360247 C 38.308594 1021.360247 39 1022.051653 39 1022.901263 L 39 1033.823138 C 39 1034.672747 38.308594 1035.364153 37.458984 1035.364153 L 10.541016 1035.364153 C 9.691406 1035.364153 9 1034.672747 9 1033.823138 L 9 1022.901263 C 9 1022.051653 9.691406 1021.360247 10.541016 1021.360247 Z " transform="matrix(.66667 0 0 .66667 0 -669.5748)"/>
<path style="fill:#6aaf53" d="M 7.667969 12.667969 C 7.480469 12.667969 7.332031 12.816406 7.332031 13 L 7.332031 19 C 7.332031 19.183594 7.480469 19.332031 7.667969 19.332031 L 15.703125 19.332031 C 15.886719 19.332031 16.035156 19.183594 16.035156 19 L 16.035156 13 C 16.035156 12.816406 15.886719 12.667969 15.703125 12.667969 Z M 10 17.332031 L 10 14.667969 L 10.667969 14.667969 L 10.667969 17.332031 Z M 11.332031 17.332031 L 11.332031 14.667969 L 12 14.667969 L 12 17.332031 Z M 12.667969 17.332031 L 12.667969 14.667969 L 13.332031 14.667969 L 13.332031 17.332031 Z "/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-epub+zip.svg">
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview14"
showgrid="true"
inkscape:zoom="7.375"
inkscape:cx="24.93143"
inkscape:cy="24.262768"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3008" />
</sodipodi:namedview>
<path
style="fill:#7c9c35;fill-opacity:1"
d="M 5.335888,2.969e-4 C 4.648414,3.118e-4 4,0.6767877 4,1.394031 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327332,0 c 0.648414,0 1.335888,-0.717243 1.335888,-1.393732 L 28,8.9999995 l -9,-9 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 21,8.9999995 28,16 28,8.9999995 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 19.000306,2.969e-4 8.991594,8.9997026 -7.613262,0 c -0.672951,0 -1.378332,-0.7134896 -1.378332,-1.3864402 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path12"
d="M 16,21.886744 11.445118,17.331862 16,12.781225 17.51971,14.296688 14.48029,17.331862 16,18.851571 20.554882,14.296688 16.585809,10.331862 c -0.322619,-0.32262 -0.848999,-0.32262 -1.171618,0 L 9,16.746053 c -0.3268656,0.322619 -0.3268656,0.848999 0,1.175863 l 6.414191,6.414191 c 0.322619,0.32262 0.848999,0.32262 1.171618,0 L 23,17.921916 c 0.326866,-0.326864 0.326866,-0.853244 0,-1.175863 l -0.929654,-0.929655 z" />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-pdf.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="16"
inkscape:cy="16"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#df1818;fill-opacity:1"
d="M 5.335888,2.97e-4 C 4.648414,3.12e-4 4,0.676788 4,1.394032 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327332,0 c 0.648414,0 1.335888,-0.717243 1.335888,-1.393732 L 28,9.0000001 19,0 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 21,9.0000001 28,16 28,9.0000001 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 19.000306,2.97e-4 8.991594,8.9997031 -7.613262,0 c -0.672951,0 -1.378332,-0.7134896 -1.378332,-1.3864402 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path12"
d="m 15.6875,10.675781 c 0,0 0.460938,4.246094 -2.792969,9.855469 C 9.640625,26.136719 8.683594,25.382812 8.34375,25.191406 8,24.996094 7.558594,24.363281 9.003906,23.101562 c 1.441406,-1.261718 2.003906,-1.238281 2.003906,-1.238281 0,0 -1.320312,0.800781 -1.832031,1.578125 -0.515625,0.777344 -0.929687,1.261719 -0.808593,1.480469 0.121093,0.21875 1.597656,-0.894531 2.207031,-1.839844 0.972656,-1.503906 2.808593,-4.300781 3.664062,-6.96875 0.855469,-2.671875 1.449219,-5.4375 1.449219,-5.4375 z" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path14"
d="m 23.707031,20.503906 c 0,0 -0.07422,0.195313 -0.929687,0.125 C 21.921875,20.554688 18.59375,19.511719 16.808594,17.375 15.023438,15.238281 14.875,12.300781 14.753906,10.773438 c -0.125,-1.527344 0.554688,-1.101563 0.652344,-0.910157 0.152344,0.128907 0.226562,0.546875 0.226562,0.546875 0,0 -0.05469,-0.625 -0.324218,-0.894531 C 15.039062,9.25 14.800781,9.246094 14.53125,9.707031 c -0.269531,0.460938 -0.390625,1.746094 -0.171875,2.984375 0.222656,1.238282 1.128906,4.078125 2.253906,5.386719 1.125,1.3125 3.375,2.453125 5.039063,2.792969 1.664062,0.339844 2.054687,-0.363282 2.054687,-0.363282 z" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path16"
d="m 12.867188,21.0625 c 0,0 3.230468,-1.042969 6.289062,-1.332031 3.058594,-0.292969 4.113281,0.02344 4.378906,0.242187 0.269532,0.21875 0.269532,0.460938 0.269532,0.460938 0,0 0.34375,-0.339844 0.117187,-0.683594 -0.191406,-0.359375 -0.484375,-0.652344 -2.90625,-0.578125 -2.421875,0.07031 -2.59375,0.167969 -4.820313,0.582031 -2.226562,0.414063 -3.328124,1.308594 -3.328124,1.308594 z" />
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -0,0 +1,143 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="wps-office-doc.svg">
<metadata
id="metadata42">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs40" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview38"
showgrid="true"
inkscape:zoom="20.85965"
inkscape:cx="17.002104"
inkscape:cy="6.9711351"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3046" />
</sodipodi:namedview>
<path
style="fill:#3468ce;fill-opacity:1"
d="M 5.335888,2.97e-4 C 4.648414,3.12e-4 4,0.676788 4,1.394031 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327333,0 c 0.648413,0 1.335888,-0.717243 1.335888,-1.393732 L 28.000001,9 l -9,-9 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 21,9 7,7 0,-7 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="M 19.000306,2.97e-4 27.9919,9 20.378638,9 C 19.705688,9 19.000306,8.2865104 19.000306,7.61356 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="6"
height="5"
x="10"
y="11" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="5"
height="1"
x="17"
y="11" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 4,24 0,6.667969 C 4,31.316407 4.6874999,32 5.3320309,32 L 26.667969,32 C 27.3125,32 28,31.316407 28,30.667969 L 28,24 z"
id="path26"
inkscape:connector-curvature="0" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="5"
height="1"
x="17"
y="12.999999" />
<g
style="fill:#ffffff"
id="g30"
transform="matrix(1.0527705,0,0,1.0527705,-0.85183126,-0.5245205)">
<path
d="m 10.492188,29.066406 c 0.03125,0.0078 0.06641,0.0078 0.105468,0.0078 0.03516,0 0.07031,0 0.101563,0 0.265625,0 0.484375,-0.04297 0.660156,-0.132813 0.183594,-0.08594 0.328125,-0.207031 0.433594,-0.363281 0.113281,-0.152344 0.191406,-0.335937 0.234375,-0.542969 0.05078,-0.214844 0.07813,-0.449218 0.07813,-0.703125 0,-0.21875 -0.01953,-0.433593 -0.05859,-0.644531 -0.03906,-0.207031 -0.101563,-0.390625 -0.199219,-0.550781 -0.09375,-0.160157 -0.222656,-0.285157 -0.382812,-0.378907 -0.164063,-0.101562 -0.375,-0.148437 -0.632813,-0.148437 -0.05078,0 -0.105469,0 -0.171875,0.0078 -0.0625,0 -0.117187,0.0039 -0.167968,0.01562 l 0,3.433594 m 2.789062,-1.734375 c 0,0.472657 -0.07031,0.878907 -0.207031,1.214844 -0.132813,0.332031 -0.316407,0.601563 -0.554688,0.808594 -0.238281,0.210937 -0.527343,0.363281 -0.859375,0.460937 -0.324218,0.09375 -0.6875,0.140625 -1.082031,0.140625 -0.207031,0 -0.414063,-0.0078 -0.613281,-0.03125 -0.195313,-0.01563 -0.40625,-0.04687 -0.632813,-0.08984 l 0,-4.988282 c 0.265625,-0.05078 0.511719,-0.08203 0.746094,-0.09766 0.230469,-0.01563 0.449219,-0.02734 0.648437,-0.02734 0.382813,0 0.734376,0.05078 1.046876,0.148438 0.320312,0.101562 0.589843,0.257812 0.8125,0.472656 0.21875,0.207031 0.386718,0.480469 0.507812,0.808594 0.125,0.324218 0.1875,0.71875 0.1875,1.179687"
id="path32"
inkscape:connector-curvature="0" />
<path
d="m 14.96875,27.332031 c 0,0.25 0.0078,0.484375 0.02734,0.703125 0.02734,0.214844 0.07031,0.402344 0.132812,0.5625 0.07031,0.160156 0.164063,0.285156 0.28125,0.378906 0.121094,0.09375 0.28125,0.140626 0.480469,0.140626 0.195313,0 0.351563,-0.04688 0.472656,-0.140626 0.125,-0.09375 0.21875,-0.21875 0.28125,-0.378906 0.07031,-0.167968 0.113281,-0.355468 0.132813,-0.570312 0.02344,-0.214844 0.03906,-0.445313 0.03906,-0.695313 0,-0.246093 -0.01563,-0.476562 -0.03906,-0.691406 -0.01953,-0.222656 -0.0625,-0.410156 -0.132813,-0.570313 -0.0625,-0.160156 -0.152343,-0.285156 -0.273437,-0.378906 -0.117188,-0.09375 -0.277344,-0.140625 -0.480469,-0.140625 -0.199219,0 -0.359375,0.04687 -0.480469,0.140625 -0.117187,0.09375 -0.210937,0.222656 -0.28125,0.386719 -0.0625,0.160156 -0.105468,0.347656 -0.132812,0.5625 -0.01953,0.214844 -0.02734,0.445313 -0.02734,0.691406 m -1.179688,0 c 0,-0.878906 0.1875,-1.542969 0.558594,-1.988281 0.371094,-0.453125 0.882813,-0.675781 1.542969,-0.675781 0.6875,0 1.207031,0.222656 1.566406,0.675781 0.355469,0.445312 0.535157,1.109375 0.535157,1.988281 0,0.882813 -0.179688,1.546875 -0.546876,2 C 17.082031,29.777344 16.566406,30 15.902344,30 c -0.6875,0 -1.210938,-0.222656 -1.574219,-0.667969 -0.359375,-0.453125 -0.539063,-1.117187 -0.539063,-2"
id="path34"
inkscape:connector-curvature="0" />
<path
d="M 21.035156,30 C 20.214844,30 19.585938,29.769531 19.152344,29.304688 18.71875,28.84375 18.5,28.1875 18.5,27.332031 c 0,-0.421875 0.06641,-0.800781 0.199219,-1.128906 0.132812,-0.332031 0.316406,-0.609375 0.546875,-0.835937 0.238281,-0.230469 0.519531,-0.402344 0.839844,-0.519532 0.324218,-0.121094 0.679687,-0.179687 1.0625,-0.179687 0.207031,0 0.394531,0.01563 0.558593,0.04687 0.167969,0.02734 0.316407,0.0625 0.441407,0.101562 0.125,0.03906 0.230468,0.07813 0.3125,0.121094 0.08594,0.04687 0.152343,0.07813 0.195312,0.101562 l -0.300781,0.808594 c -0.144531,-0.08203 -0.320313,-0.152344 -0.527344,-0.207031 -0.199219,-0.05859 -0.433594,-0.08984 -0.699219,-0.08984 -0.179687,0 -0.359375,0.03125 -0.535156,0.08984 -0.167969,0.05469 -0.324219,0.152344 -0.460938,0.289063 -0.132812,0.132812 -0.242187,0.3125 -0.332031,0.535156 -0.08203,0.226562 -0.121093,0.507812 -0.121093,0.84375 0,0.582031 0.113281,1.03125 0.339843,1.34375 0.230469,0.308594 0.609375,0.464844 1.128907,0.464844 0.300781,0 0.550781,-0.03125 0.746093,-0.08984 0.199219,-0.0625 0.359375,-0.121094 0.480469,-0.183594 l 0.292969,0.800781 C 22.503906,29.73437 22.28125,29.816405 21.996094,29.890624 21.722656,29.964844 21.402344,30 21.035156,30"
id="path36"
inkscape:connector-curvature="0" />
</g>
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="5"
height="1"
x="17"
y="14.999999" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="12"
height="1"
x="10"
y="17" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="12"
height="1"
x="10"
y="19" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3041"
width="12"
height="1"
x="10"
y="21" />
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

View file

@ -0,0 +1,143 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-vnd.oasis.opendocument.text.svg">
<metadata
id="metadata40">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs38" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview36"
showgrid="true"
inkscape:zoom="11.313709"
inkscape:cx="21.473339"
inkscape:cy="14.720313"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3044" />
</sodipodi:namedview>
<path
style="fill:#3468ce;fill-opacity:1"
d="M 5.335888,2.969e-4 C 4.648414,3.119e-4 4,0.6767879 4,1.3940308 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327333,0 c 0.648413,0 1.335888,-0.717243 1.335888,-1.393732 l 8.92e-4,-21.6062685 -9,-8.999999599999998 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 21,8.9999995 28,16 28,8.9999995 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 19.000306,2.969e-4 8.991594,8.9997026 -7.613262,0 c -0.67295,0 -1.378332,-0.7134896 -1.378332,-1.3864402 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="6"
height="5"
x="10"
y="11" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="5"
height="1"
x="17"
y="11" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 4,24 0,6.667969 C 4,31.316407 4.6874999,32 5.3320309,32 L 26.667969,32 C 27.3125,32 28,31.316407 28,30.667969 L 28,24 z"
id="path26"
inkscape:connector-curvature="0" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="5"
height="1"
x="17"
y="12.999999" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="5"
height="1"
x="17"
y="14.999999" />
<g
style="fill:#ffffff"
id="g28"
transform="matrix(1.0538957,0,0,1.0538957,-0.88967469,-0.50749552)">
<path
d="m 10.484375,27.332031 c 0,0.25 0.0078,0.484375 0.02734,0.703125 0.02344,0.214844 0.06641,0.402344 0.128906,0.5625 0.06641,0.160156 0.160156,0.285156 0.277344,0.378906 0.117187,0.09375 0.273437,0.140626 0.46875,0.140626 0.191406,0 0.34375,-0.04688 0.460937,-0.140626 0.121094,-0.09375 0.214844,-0.21875 0.277344,-0.378906 0.06641,-0.167968 0.109375,-0.355468 0.128906,-0.570312 0.02344,-0.214844 0.03516,-0.445313 0.03516,-0.695313 0,-0.246093 -0.01172,-0.476562 -0.03516,-0.691406 -0.01953,-0.222656 -0.0625,-0.410156 -0.128906,-0.570313 -0.0625,-0.160156 -0.152344,-0.285156 -0.269531,-0.378906 -0.117188,-0.09375 -0.273438,-0.140625 -0.46875,-0.140625 -0.195313,0 -0.351563,0.04687 -0.46875,0.140625 -0.117188,0.09375 -0.210938,0.222656 -0.277344,0.386719 -0.0625,0.160156 -0.105469,0.347656 -0.128906,0.5625 -0.01953,0.214844 -0.02734,0.445313 -0.02734,0.691406 m -1.152344,0 c 0,-0.878906 0.183594,-1.542969 0.542969,-1.988281 0.363281,-0.453125 0.867188,-0.675781 1.511719,-0.675781 0.667969,0 1.179687,0.222656 1.527343,0.675781 0.351563,0.445312 0.527344,1.109375 0.527344,1.988281 0,0.882813 -0.179687,1.546875 -0.535156,2 C 12.550781,29.777344 12.046875,30 11.394531,30 c -0.667969,0 -1.179687,-0.222656 -1.535156,-0.667969 -0.351563,-0.453125 -0.527344,-1.117187 -0.527344,-2"
id="path30"
inkscape:connector-curvature="0" />
<path
d="m 15.320312,29.066406 c 0.02734,0.0078 0.0625,0.0078 0.09766,0.0078 0.03906,0 0.07422,0 0.101562,0 0.257813,0 0.472657,-0.04297 0.644531,-0.132813 0.179688,-0.08594 0.320313,-0.207031 0.425782,-0.363281 0.109375,-0.152344 0.1875,-0.335937 0.230468,-0.542969 0.04688,-0.214844 0.07422,-0.449218 0.07422,-0.703125 0,-0.21875 -0.01953,-0.433593 -0.05859,-0.644531 -0.03516,-0.207031 -0.09766,-0.390625 -0.191407,-0.550781 -0.09375,-0.160157 -0.21875,-0.285157 -0.378906,-0.378907 -0.160156,-0.101562 -0.363281,-0.148437 -0.617187,-0.148437 -0.04688,0 -0.101563,0 -0.164063,0.0078 -0.0625,0 -0.117187,0.0039 -0.164063,0.01562 l 0,3.433594 m 2.722657,-1.734375 c 0,0.472657 -0.06641,0.878907 -0.203125,1.214844 -0.128906,0.332031 -0.308594,0.601563 -0.542969,0.808594 -0.230469,0.210937 -0.511719,0.363281 -0.835937,0.460937 -0.320313,0.09375 -0.671876,0.140625 -1.058594,0.140625 -0.203125,0 -0.402344,-0.0078 -0.597656,-0.03125 -0.191407,-0.01563 -0.398438,-0.04687 -0.617188,-0.08984 l 0,-4.988282 c 0.257812,-0.05078 0.5,-0.08203 0.726562,-0.09766 0.226563,-0.01563 0.4375,-0.02734 0.632813,-0.02734 0.375,0 0.71875,0.05078 1.023437,0.148438 0.3125,0.101562 0.578126,0.257812 0.792969,0.472656 0.214844,0.207031 0.378907,0.480469 0.496094,0.808594 0.125,0.324218 0.183594,0.71875 0.183594,1.179687"
id="path32"
inkscape:connector-curvature="0" />
<path
d="m 22.667969,24.78125 0,0.84375 -1.503907,0 0,4.265625 -1.140624,0 0,-4.265625 -1.5,0 0,-0.84375 4.144531,0"
id="path34"
inkscape:connector-curvature="0" />
</g>
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="12"
height="1"
x="10"
y="17" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="12"
height="1"
x="10"
y="19" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3041"
width="12"
height="1"
x="10"
y="21" />
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View file

@ -0,0 +1,131 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg">
<metadata
id="metadata42">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs40" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="998"
id="namedview38"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="21.959255"
inkscape:cy="-7.1212001"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3046" />
</sodipodi:namedview>
<path
style="fill:#3468ce;fill-opacity:1"
d="M 5.335888,2.97e-4 C 4.648414,3.12e-4 4,0.676788 4,1.394031 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327333,0 c 0.648413,0 1.335888,-0.717243 1.335888,-1.393732 L 28.000001,9 l -9,-9 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 21,9 7,7 0,-7 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="M 19.000306,2.97e-4 27.9919,9 20.378638,9 C 19.705688,9 19.000306,8.2865104 19.000306,7.61356 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="6"
height="5"
x="10"
y="11" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="5"
height="1"
x="17"
y="11" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 4,24 0,6.667969 C 4,31.316407 4.6874999,32 5.3320309,32 L 26.667969,32 C 27.3125,32 28,31.316407 28,30.667969 L 28,24 z"
id="path26"
inkscape:connector-curvature="0" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="5"
height="1"
x="17"
y="12.999999" />
<path
style="fill:#ffffff"
d="m 20.248593,26.265691 1.295792,2.214806 c -0.127262,0.216687 -0.260496,0.444153 -0.398075,0.681478 -0.141019,0.233884 -0.272289,0.461189 -0.40299,0.684755 -0.123822,0.220127 -0.237391,0.429892 -0.344015,0.622504 -0.103185,0.19261 -0.179229,0.353872 -0.234258,0.491451 l 1.066447,0 c 0.113502,-0.257961 0.248214,-0.546883 0.40299,-0.863315 0.154777,-0.326751 0.308825,-0.63616 0.463602,-0.935395 0.161656,0.312993 0.314229,0.628953 0.458687,0.941947 0.151338,0.312992 0.275233,0.598802 0.378418,0.856763 l 1.064809,0 c -0.05503,-0.137579 -0.126811,-0.298841 -0.216237,-0.491451 -0.09287,-0.19949 -0.199062,-0.410568 -0.319443,-0.630695 -0.120382,-0.230445 -0.247391,-0.460536 -0.38497,-0.69786 -0.141019,-0.237325 -0.283105,-0.468067 -0.427562,-0.684755 l 1.266304,-2.190233 -0.994369,0 -0.825637,1.498925 -0.783044,-1.498925 -1.066449,0 z m -6.457664,0.02621 c -0.58292,0 -1.03528,0.196182 -1.362957,0.596294 -0.327677,0.393211 -0.493088,0.98004 -0.493088,1.756117 0,0.779528 0.159377,1.365837 0.476707,1.765947 C 12.732369,30.803473 13.193694,31 13.800758,31 c 0.586369,0 1.042179,-0.196527 1.362957,-0.589741 0.324229,-0.40011 0.48326,-0.986419 0.48326,-1.765947 0,-0.776077 -0.159551,-1.362906 -0.473431,-1.756117 -0.31733,-0.400112 -0.77555,-0.596294 -1.382615,-0.596294 z m 4.642573,0 c -0.338026,0 -0.652386,0.05198 -0.938672,0.158903 -0.282838,0.103477 -0.530049,0.255182 -0.740452,0.458687 -0.203507,0.200055 -0.365988,0.443991 -0.48326,0.737176 -0.117275,0.289735 -0.176924,0.625129 -0.176924,0.997645 0,0.755383 0.193772,1.334364 0.576636,1.741374 C 17.053696,30.796144 17.609235,31 18.333573,31 c 0.324229,0 0.607126,-0.03111 0.848572,-0.09665 0.251794,-0.06554 0.448149,-0.138547 0.593017,-0.217876 l -0.258831,-0.706051 c -0.106927,0.05519 -0.248374,0.10699 -0.424286,0.162179 -0.172461,0.05173 -0.392952,0.07863 -0.658543,0.07863 -0.45875,0 -0.792502,-0.137053 -0.996007,-0.409542 -0.200056,-0.275939 -0.301424,-0.673738 -0.301424,-1.187673 0,-0.296634 0.03569,-0.545312 0.108118,-0.745367 0.07933,-0.196606 0.175959,-0.354519 0.293232,-0.471792 0.120724,-0.120725 0.257949,-0.20726 0.406266,-0.255555 0.155216,-0.05173 0.314766,-0.07863 0.473431,-0.07863 0.234548,0 0.440042,0.0269 0.615952,0.07863 0.182809,0.04829 0.339257,0.111041 0.466879,0.183475 l 0.265383,-0.714242 c -0.03794,-0.02069 -0.09776,-0.04872 -0.173646,-0.0901 -0.07244,-0.03794 -0.164837,-0.07199 -0.275212,-0.106482 -0.110376,-0.03449 -0.241568,-0.06596 -0.389885,-0.0901 -0.144867,-0.02759 -0.310279,-0.04096 -0.493088,-0.04096 z m -9.2032368,0.04751 c -0.1759102,0 -0.3682163,0.01077 -0.5717211,0.02457 C 8.4515902,26.377781 8.2345479,26.405971 8,26.450801 l 0,4.405037 c 0.200056,0.03794 0.3861536,0.06485 0.5586157,0.07863 0.1759102,0.02072 0.3577869,0.02785 0.540596,0.02785 0.3483723,0 0.6704053,-0.04172 0.9566913,-0.124501 0.293185,-0.08623 0.548069,-0.220008 0.758472,-0.406266 0.210403,-0.182809 0.372539,-0.421058 0.489812,-0.714242 0.120726,-0.296634 0.181837,-0.655643 0.181837,-1.073001 0,-0.407009 -0.05508,-0.75559 -0.165454,-1.041876 -0.106927,-0.289729 -0.254063,-0.531427 -0.447221,-0.714236 -0.196606,-0.189708 -0.434681,-0.328054 -0.717518,-0.417734 -0.2759387,-0.08623 -0.5875405,-0.131053 -0.9255658,-0.131053 z m 4.5606638,0.732262 c 0.17936,0 0.320809,0.04172 0.424286,0.124501 0.106927,0.08278 0.185622,0.192767 0.240811,0.334186 0.06208,0.141419 0.100704,0.306311 0.117948,0.502918 0.02069,0.189707 0.0344,0.393737 0.0344,0.611037 0,0.220751 -0.0137,0.424606 -0.0344,0.614314 -0.01725,0.189708 -0.05586,0.354601 -0.117948,0.502918 -0.05519,0.141418 -0.136989,0.251403 -0.247364,0.334187 -0.106925,0.08278 -0.245272,0.1245 -0.417733,0.1245 -0.175911,0 -0.317359,-0.04172 -0.424286,-0.1245 -0.103476,-0.08278 -0.186918,-0.192769 -0.249001,-0.334187 -0.05519,-0.141418 -0.09217,-0.306658 -0.11631,-0.496366 -0.01726,-0.193157 -0.02457,-0.400115 -0.02457,-0.620866 0,-0.2173 0.0073,-0.42133 0.02457,-0.611037 0.02414,-0.189709 0.06112,-0.354947 0.11631,-0.496365 0.06209,-0.144868 0.145525,-0.257955 0.249001,-0.340739 0.106927,-0.08279 0.248375,-0.124501 0.424286,-0.124501 z m -4.4672881,0.05078 c 0.2276497,0 0.4137475,0.04137 0.5586157,0.131054 0.1414184,0.08278 0.2563194,0.194404 0.3391014,0.335825 0.08623,0.141417 0.140794,0.302097 0.175284,0.484897 0.03449,0.186259 0.05242,0.376926 0.05242,0.570083 0,0.224201 -0.02396,0.431158 -0.0688,0.620866 -0.03794,0.18281 -0.10802,0.345463 -0.208048,0.479984 -0.09313,0.137969 -0.2195791,0.243562 -0.3816932,0.319443 -0.1552153,0.07933 -0.3486404,0.117948 -0.5831883,0.117948 l -0.090099,0 c -0.034488,0 -0.065782,3.25e-4 -0.093376,-0.0066 l 0,-3.032252 c 0.04484,-0.01035 0.093886,-0.01311 0.1490735,-0.01311 0.058637,-0.0069 0.1058724,-0.0082 0.1507116,-0.0082 z"
id="path32"
inkscape:connector-curvature="0" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="5"
height="1"
x="17"
y="14.999999" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="12"
height="1"
x="10"
y="17" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="12"
height="1"
x="10"
y="19" />
<rect
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3041"
width="12"
height="1"
x="10"
y="21" />
</svg>

After

Width:  |  Height:  |  Size: 8.3 KiB

View file

@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-text.svg">
<metadata
id="metadata34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs32" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview30"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="12.752684"
inkscape:cy="15.629393"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3068" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 5.335888,2.97e-4 C 4.648414,3.119e-4 4,0.6767878 4,1.3940311 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327332,0 c 0.648414,0 1.335888,-0.717243 1.335888,-1.393732 L 28,8.9999996 l -9,-9 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 21,8.9999996 28,16 28,8.9999996 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 19.000306,2.97e-4 8.991594,8.9997026 -7.613262,0 c -0.672951,0 -1.378332,-0.7134896 -1.378332,-1.3864402 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="12"
height="1"
x="10"
y="11" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="12"
height="1"
x="10"
y="13" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="12"
height="1"
x="10"
y="15" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="12"
height="1"
x="10"
y="17" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="12"
height="1"
x="10"
y="19" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3041"
width="12"
height="1"
x="10"
y="21" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3043"
width="12"
height="1"
x="10"
y="23" />
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,128 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-document.svg">
<metadata
id="metadata32">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs30" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview28"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="29.780311"
inkscape:cy="22.399608"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3020" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 5.335888,2.972e-4 C 4.648414,3.121e-4 4,0.676788 4,1.3940313 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327332,0 c 0.648414,0 1.335888,-0.717243 1.335888,-1.393732 L 28,8.9999998 l -9,-9 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 21,8.9999998 28,16 28,8.9999998 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 19.000306,2.972e-4 8.991594,8.9997026 -7.613262,0 c -0.672951,0 -1.378332,-0.7134896 -1.378332,-1.3864402 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3029"
width="6"
height="5"
x="10"
y="11" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="5"
height="1"
x="17"
y="11" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="5"
height="1"
x="17"
y="13" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="5"
height="1"
x="17"
y="15" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="12"
height="1"
x="10"
y="17" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="12"
height="1"
x="10"
y="19" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3041"
width="12"
height="1"
x="10"
y="21" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3043"
width="12"
height="1"
x="10"
y="23" />
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -0,0 +1,92 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-xml.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="18.105116"
inkscape:cy="12.010844"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3010" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 5.335888,2.97e-4 C 4.648414,3.119e-4 4,0.6767878 4,1.3940311 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327332,0 c 0.648414,0 1.335888,-0.717243 1.335888,-1.393732 L 28,8.9999996 l -9,-9 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 21,8.9999996 28,16 28,8.9999996 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 19.000306,2.97e-4 8.991594,8.9997026 -7.613262,0 c -0.672951,0 -1.378332,-0.7134896 -1.378332,-1.3864402 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
style="fill:#888888"
id="g10"
transform="matrix(1,0,0,1.0715781,0,-1.0020933)">
<path
d="m 12,14 -4,3.732812 0,1.866406 4,3.732813 0,-2.799609 -2,-1.864453 2,-1.86836 z"
id="path12"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
d="m 20,14 4,3.732812 0,1.866406 -4,3.732813 0,-2.799609 2,-1.864453 -2,-1.86836 z"
id="path14"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
d="m 17,14 2,0 -4,9.332031 -2,0 z"
id="path16"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="application-text.svg">
<metadata
id="metadata34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs32" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview30"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="12.752684"
inkscape:cy="15.629393"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3068" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 5.335888,2.97e-4 C 4.648414,3.119e-4 4,0.6767878 4,1.3940311 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327332,0 c 0.648414,0 1.335888,-0.717243 1.335888,-1.393732 L 28,8.9999996 l -9,-9 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 21,8.9999996 28,16 28,8.9999996 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 19.000306,2.97e-4 8.991594,8.9997026 -7.613262,0 c -0.672951,0 -1.378332,-0.7134896 -1.378332,-1.3864402 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3031"
width="12"
height="1"
x="10"
y="11" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3033"
width="12"
height="1"
x="10"
y="13" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3035"
width="12"
height="1"
x="10"
y="15" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3037"
width="12"
height="1"
x="10"
y="17" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3039"
width="12"
height="1"
x="10"
y="19" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3041"
width="12"
height="1"
x="10"
y="21" />
<rect
style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect3043"
width="12"
height="1"
x="10"
y="23" />
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-x-tex.svg">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12">
<clipPath
id="clipPath-889157936">
<g
transform="translate(0,-1004.3622)"
id="g17">
<path
style="fill:#1890d0"
inkscape:connector-curvature="0"
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
id="path19" />
</g>
</clipPath>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview10"
showgrid="true"
inkscape:zoom="10.429825"
inkscape:cx="29.303965"
inkscape:cy="29.270038"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid2991" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 5.335888,2.9732228e-4 C 4.648414,3.1228127e-4 4,0.67678818 4,1.3940315 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327332,0 c 0.648414,0 1.335888,-0.717243 1.335888,-1.393732 L 28,9 19,0 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="m 21,9 7,7 0,-7 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="M 19.000306,2.9732228e-4 27.9919,9 20.378638,9 C 19.705687,9 19.000306,8.2865104 19.000306,7.6135598 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
id="g53"
clip-path="url(#clipPath-889157936)"
transform="matrix(0.66666667,0,0,0.66666667,0,1.998667)">
<!-- color: #aade54 -->
<g
id="g55">
<path
id="path57"
d="m 20.2,17.02 -8.938,0 -0.262,3.441 0.277,0 c 0.199,-2.578 0.422,-3.03 2.82,-3.03 0.277,0 0.73,0 0.855,0 0.297,0.047 0.297,0.238 0.297,0.594 l 0,8.473 c 0,0.566 -0.047,0.734 -1.352,0.734 l -0.441,0 0,0.375 c 0.746,-0.016 1.52,-0.031 2.277,-0.031 0.758,0 1.535,0.023 2.277,0.031 l 0,-0.375 -0.441,0 c -1.285,0 -1.332,-0.172 -1.332,-0.734 l 0,-8.473 c 0,-0.344 0,-0.527 0.281,-0.594 l 0.848,0 c 2.367,0 2.605,0.449 2.809,3.03 l 0.27,0"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
id="path59"
d="m 27.969,27.07 -0.277,0 c -0.34,2.309 -0.543,3.563 -3.266,3.563 l -2.148,0 c -0.617,0 -0.645,-0.078 -0.645,-0.613 l 0,-4.352 1.457,0 c 1.461,0 1.602,0.539 1.602,1.852 l 0.25,0 0,-4.047 -0.25,0 c 0,1.289 -0.141,1.82 -1.602,1.82 l -1.457,0 0,-3.859 c 0,-0.523 0.027,-0.602 0.645,-0.602 l 2.117,0 c 2.395,0 2.676,0.957 2.891,3.01 l 0.281,0 -0.371,-3.441 -7.84,0 0,0.43 c 1.098,0 1.273,0 1.273,0.699 l 0,8.398 c 0,0.699 -0.176,0.699 -1.273,0.699 l 0,0.375 8.05,0"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
id="path61"
d="m 32.14,21.719 2.289,-3.328 c 0.23,-0.324 0.699,-0.996 1.969,-1.016 l 0,-0.375 c -0.355,0.031 -0.945,0.031 -1.316,0.031 -0.508,0 -1.145,0 -1.531,-0.031 l 0,0.375 c 0.496,0.047 0.621,0.359 0.621,0.609 0,0.188 -0.078,0.313 -0.188,0.465 l -2.043,2.98 -2.289,-3.367 c -0.109,-0.172 -0.125,-0.219 -0.125,-0.266 0,-0.141 0.168,-0.406 0.684,-0.422 l 0,-0.375 c -0.496,0.031 -1.25,0.031 -1.766,0.031 -0.398,0 -1.172,0 -1.547,-0.031 l 0,0.375 c 0.852,0 1.129,0.031 1.469,0.516 l 2.988,4.41 -2.695,3.957 c -0.664,0.965 -1.668,0.984 -1.965,0.984 l 0,0.375 c 0.355,-0.031 0.941,-0.031 1.316,-0.031 0.414,0 1.145,0 1.527,0.031 l 0,-0.375 c -0.477,-0.047 -0.617,-0.359 -0.617,-0.609 0,-0.203 0.078,-0.313 0.156,-0.422 l 2.477,-3.633 2.691,3.977 c 0.121,0.172 0.121,0.219 0.121,0.266 0,0.125 -0.137,0.391 -0.68,0.422 l 0,0.379 c 0.496,-0.031 1.25,-0.031 1.762,-0.031 0.402,0 1.176,0 1.551,0.031 l 0,-0.379 c -0.992,0 -1.148,-0.074 -1.453,-0.516"
inkscape:connector-curvature="0"
style="fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,92 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="text-xml.svg">
<metadata
id="metadata22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs20" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="970"
id="namedview18"
showgrid="true"
inkscape:zoom="14.75"
inkscape:cx="18.105116"
inkscape:cy="12.010844"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid3010" />
</sodipodi:namedview>
<path
style="fill:#dcdcdc;fill-opacity:1"
d="M 5.335888,2.97e-4 C 4.648414,3.119e-4 4,0.6767878 4,1.3940311 L 4,30.606268 C 4,31.282757 4.687474,32 5.335888,32 l 21.327332,0 c 0.648414,0 1.335888,-0.717243 1.335888,-1.393732 L 28,8.9999996 l -9,-9 z"
id="path4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssccs" />
<path
style="fill:#000000;fill-opacity:0.19599998"
d="M 21,8.9999996 28,16 28,8.9999996 z"
id="path6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:0.39200003"
d="m 19.000306,2.97e-4 8.991594,8.9997026 -7.613262,0 c -0.672951,0 -1.378332,-0.7134896 -1.378332,-1.3864402 z"
id="path8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccssc" />
<g
style="fill:#888888"
id="g10"
transform="matrix(1,0,0,1.0715781,0,-1.0020933)">
<path
d="m 12,14 -4,3.732812 0,1.866406 4,3.732813 0,-2.799609 -2,-1.864453 2,-1.86836 z"
id="path12"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
d="m 20,14 4,3.732812 0,1.866406 -4,3.732813 0,-2.799609 2,-1.864453 -2,-1.86836 z"
id="path14"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
d="m 17,14 2,0 -4,9.332031 -2,0 z"
id="path16"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,6 @@
<svg width="48" xmlns="http://www.w3.org/2000/svg" height="48" viewBox="0 0 48 48" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="M 8 6 L 28 6 C 32 6 32 6 32 10 L 32 38 C 32 42 32 42 28 42 L 8 42 C 4 42 4 42 4 38 L 4 10 C 4 6 4 6 8 6 Z "/>
<path style="fill:#268bd2" d="M 29.914062 38.210938 L 43.664062 27.210938 C 46.421875 24.453125 46.414062 24.460938 43.664062 21.710938 L 29.914062 10.710938 C 28 9.175781 28 9.742188 28 13.539062 C 27.960938 14.914062 27.914062 16.460938 28 18.460938 C 27.96875 18.460938 28.03125 18.460938 28 18.460938 C 14.335938 18.460938 7.914062 27.210938 8 38.296875 C 13.414062 32.710938 19.75 30.289062 28 30.460938 C 28 32.429688 27.960938 33.132812 28 34.460938 C 28 36.460938 28 39.566406 29.914062 38.210938 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 817 B

View file

@ -0,0 +1,12 @@
<svg width="48" xmlns="http://www.w3.org/2000/svg" height="48" viewBox="0 0 48 48" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill-rule:evenodd">
<path style="fill:#aaa;fill-opacity:.941" d="M 16 4 L 32 4 C 36 4 36 3.601562 36 8 L 36 24 C 36 28 36 28 32 28 L 16 28 C 12 28 12 28 12 24 L 12 8 C 12 4 12 4 16 4 Z "/>
<path style="fill:#ccc" d="M 8 16 L 40 16 C 44 16 44 16 44 20 L 44 32 C 44 36 44 36 40 36 L 8 36 C 4 36 4 36 4 32 L 4 20 C 4 16 4 16 8 16 Z "/>
</g>
<path style="fill:#dc322f" d="M 12 24 L 36 24 L 36 44 L 12 44 Z "/>
<g style="fill-rule:evenodd">
<path style="fill:#fff" d="M 36 24 C 36 30.628906 30.628906 36 24 36 C 17.371094 36 11.996094 30.628906 11.996094 24 C 11.996094 17.371094 17.371094 12 24 12 C 30.628906 12 36 17.371094 36 24 Z "/>
<path style="fill:#555" d="M 32 24 C 32 28.417969 28.417969 32 24 32 C 19.582031 32 16 28.417969 16 24 C 16 19.582031 19.582031 16 24 16 C 28.417969 16 32 19.582031 32 24 Z "/>
<path style="fill:#eee" d="M 30 21 C 30 22.65625 28.65625 24 27 24 C 25.34375 24 24 22.65625 24 21 C 24 19.34375 25.34375 18 27 18 C 28.65625 18 30 19.34375 30 21 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,12 @@
<svg width="47.5" xmlns="http://www.w3.org/2000/svg" height="47.5" viewBox="0 0 38 38" xmlns:xlink="http://www.w3.org/1999/xlink">
<g style="fill:#ec86ab">
<path d="M 5.804688 4.15625 L 5.804688 23.949219 L 7.453125 23.949219 L 7.453125 4.15625 Z "/>
<path d="M 9.105469 24.773438 C 9.105469 26.136719 7.996094 27.246094 6.628906 27.246094 C 5.265625 27.246094 4.15625 26.136719 4.15625 24.773438 C 4.15625 23.40625 5.265625 22.296875 6.628906 22.296875 C 7.996094 22.296875 9.105469 23.40625 9.105469 24.773438 Z "/>
<path d="M 15.703125 33.84375 L 15.703125 9.105469 L 14.050781 9.105469 L 14.050781 33.84375 Z "/>
<path d="M 12.402344 8.28125 C 12.402344 6.914062 13.511719 5.804688 14.875 5.804688 C 16.242188 5.804688 17.351562 6.914062 17.351562 8.28125 C 17.351562 9.644531 16.242188 10.753906 14.875 10.753906 C 13.511719 10.753906 12.402344 9.644531 12.402344 8.28125 Z "/>
<path d="M 22.296875 4.15625 L 22.296875 22.296875 L 23.949219 22.296875 L 23.949219 4.15625 Z "/>
<path d="M 25.597656 23.121094 C 25.597656 24.488281 24.488281 25.597656 23.125 25.597656 C 21.757812 25.597656 20.648438 24.488281 20.648438 23.121094 C 20.648438 21.757812 21.757812 20.648438 23.125 20.648438 C 24.488281 20.648438 25.597656 21.757812 25.597656 23.121094 Z "/>
<path d="M 32.195312 33.84375 L 32.195312 20.648438 L 30.546875 20.648438 L 30.546875 33.84375 Z "/>
<path d="M 28.894531 19.824219 C 28.894531 18.457031 30.003906 17.351562 31.371094 17.351562 C 32.734375 17.351562 33.84375 18.457031 33.84375 19.824219 C 33.84375 21.191406 32.734375 22.300781 31.371094 22.300781 C 30.003906 22.300781 28.894531 21.191406 28.894531 19.824219 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" xmlns:xlink="http://www.w3.org/1999/xlink">
<g transform="translate(0 -1004.3622)">
<rect width="30" x="9" y="1021.362" rx="1.54" height="14" style="fill:none;stroke:#6baf53;stroke-linejoin:round;stroke-linecap:round;stroke-width:2"/>
<path style="fill:#6baf53" d="M 11.5,19 C 11.223,19 11,19.223 11,19.5 l 0,9 c 0,0.277 0.223,0.5 0.5,0.5 l 12.053571,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-9 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 3.5,7 0,-4 1,0 0,4 z m 2,0 0,-4 1,0 0,4 z m 2,0 0,-4 1,0 0,4 z" transform="translate(0 1004.3622)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 600 B

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