diff options
author | Pootle daemon <pootle@sugarlabs.org> | 2009-09-03 14:29:21 (GMT) |
---|---|---|
committer | Pootle daemon <pootle@sugarlabs.org> | 2009-09-03 14:29:21 (GMT) |
commit | 84e5f8f26c844dedaa9ab4c99715b733572b9b8c (patch) | |
tree | 26df4622427fdd0a58e4400b2f282281af1b3d91 | |
parent | bef382cbcaa6bb891e86a4a1bc1c5e316a1f9b73 (diff) | |
parent | a528071865a5d720777572ab2c5ae42a64a562ff (diff) |
Merge branch 'master' of gitorious@git.sugarlabs.org:turtleart/mainline
1028 files changed, 61875 insertions, 210635 deletions
@@ -1,3 +1,96 @@ +63 + +* more sample programs +* consolidated samples into one directory +* fixed mask bug that prevented palette hiding + +62 + +* first pass at hover help support (thanks Raul) +* put samples button, keep button on project toolbar +* fixed journal icons associated with html, python, logo +* improved compatibility with old Sugar builds +* images centered under turtle +* text vertically centered under turtle +* pop blocks snap into boxes +* improved masks for fewer block-selection errors + + +61 + +* fixed es translation +* fixed problem with save/load on old systems + +60 + +* fixed sharing bug +* began work on 701 backward compatibility +* added more debugging code + +59 + +* fixed leading bug for OLPC XO portfolio +* enabled box to hold strings and journal objects + +58 + +* fixed unicode string compare in equal block +* fixed journal description bug introduced in v55 +* fixed misaligned myfunc block problem + + +57 + +* lots of artwork clean up +* elimination of lock block +* more dead key clean ups +* truncated strings + +56 + +* more dead key cleanup +* empty (undefined) box error message + +55 + +* dead key workaround + +54 + +* debug button +* no more decimals by default for print + +53 + +* es updates + +52 + +* first attempt at fixing the mimetypes +* default behavior of tamyblock.py is to draw a dotted line + +51 + +* caught ISO_Level3_Shift problem on OLPC XO keyboard + +50 + +* fixed some problems with taexportlogo +* cleaned up save/load icons +* print uses title for Journal objects +* cleaned up movie window destroy code +* more consistent template management internally +* support of a sort for show in taexporthtml + +49 + +* fixed character input bug + +48 + +* reworking of media blocks +* json cleanup + 47 * image export diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py index 9d295b3..ba03470 100644 --- a/TurtleArtActivity.py +++ b/TurtleArtActivity.py @@ -84,7 +84,7 @@ class TurtleArtActivity(activity.Activity): self.editToolbar = EditToolbar(self) self.toolbox.add_toolbar(_('Edit'), self.editToolbar) self.saveasToolbar = SaveAsToolbar(self) - self.toolbox.add_toolbar( _('Save as'), self.saveasToolbar ) + self.toolbox.add_toolbar( _('Import/Export'), self.saveasToolbar ) self.toolbox.show() # Set the project toolbar as the initial one selected @@ -147,6 +147,7 @@ class TurtleArtActivity(activity.Activity): dsobject.metadata['icon-color'] = \ profile.get_color().to_string() dsobject.metadata['mime_type'] = 'text/x-python' + dsobject.metadata['activity'] = 'org.laptop.Pippy' dsobject.set_file_path(os.path.join( \ activity.get_bundle_path(), 'tamyblock.py')) datastore.write(dsobject) @@ -359,28 +360,12 @@ class TurtleArtActivity(activity.Activity): self.jobject_new_patch() """ - Write the project and a screen snapshot to the Journal + Write the project to the Journal """ def write_file(self, file_path): - _logger.debug("Writing file %s" % file_path) - self.metadata['mime_type'] = 'application/x-tar' - import tempfile - tar_fd = tarfile.open(file_path, 'w') - pngfd, pngfile = tempfile.mkstemp(".png") - tafd, tafile = tempfile.mkstemp(".ta") - del pngfd - del tafd - - try: - tawindow.save_data(self.tw,tafile) - tawindow.save_pict(self.tw,pngfile) - tar_fd.add(tafile, "ta_code.ta") - tar_fd.add(pngfile, "ta_image.png") - - finally: - tar_fd.close() - os.remove(pngfile) - os.remove(tafile) + _logger.debug("Write file: %s" % file_path) + self.metadata['mime_type'] = 'application/x-turtle-art' + tawindow.save_data(self.tw,file_path) """ Read a project in and then run it @@ -389,9 +374,9 @@ class TurtleArtActivity(activity.Activity): import tarfile,os,tempfile,shutil if hasattr(self, 'tw'): - _logger.debug("Reading file %s" % file_path) - # should be a tar file - if file_path[-5:] == ".gtar": + _logger.debug("Read file: %s" % file_path) + # Could be a gtar (newer builds) or tar (767) file + if file_path[-5:] == ".gtar" or file_path[-4:] == ".tar": tar_fd = tarfile.open(file_path, 'r') tmpdir = tempfile.mkdtemp() try: @@ -402,8 +387,9 @@ class TurtleArtActivity(activity.Activity): finally: shutil.rmtree(tmpdir) tar_fd.close() - # try to open a .ta file - elif file_path[-3:] == ".ta": + # Otherwise, assume it is a .ta file + else: + print "trying to open a .ta file:" + file_path tawindow.load_files(self.tw, file_path, "") # run the activity tawindow.runbutton(self.tw, 0) @@ -419,11 +405,11 @@ class TurtleArtActivity(activity.Activity): self._jobject.metadata['title'] = oldj.metadata['title'] self._jobject.metadata['title_set_by_user'] = \ oldj.metadata['title_set_by_user'] - self._jobject.metadata['activity'] = self.get_service_name() + # self._jobject.metadata['activity'] = self.get_service_name() self._jobject.metadata['activity_id'] = self.get_id() self._jobject.metadata['keep'] = '0' # Is this the correct syntax for saving the buddies list? - self._jobject.metadata['buddies'] = self.tw.buddies + # self._jobject.metadata['buddies'] = self.tw.buddies self._jobject.metadata['preview'] = '' self._jobject.metadata['icon-color'] = profile.get_color().to_string() self._jobject.file_path = '' @@ -470,7 +456,10 @@ class EditToolbar(gtk.Toolbar): self.copy.set_tooltip(_('copy')) self.copy.props.sensitive = True self.copy.connect('clicked', self._copy_cb) - self.copy.props.accelerator = '<Ctrl>C' + try: + self.copy.props.accelerator = '<Ctrl>C' + except: + pass self.insert(self.copy, -1) self.copy.show() @@ -479,7 +468,10 @@ class EditToolbar(gtk.Toolbar): self.paste.set_tooltip(_('paste')) self.paste.props.sensitive = True self.paste.connect('clicked', self._paste_cb) - self.paste.props.accelerator = '<Ctrl>V' + try: + self.paste.props.accelerator = '<Ctrl>V' + except: + pass self.insert(self.paste, -1) self.paste.show() @@ -505,20 +497,6 @@ class SaveAsToolbar(gtk.Toolbar): gtk.Toolbar.__init__(self) self.activity = pc - # project open - self.sampb = ToolButton( "stock-open" ) - self.sampb.set_tooltip(_('samples')) - self.sampb.props.sensitive = True - self.sampb.connect('clicked', self.do_samples) - self.sampb.props.accelerator = _('<Alt>o') - self.insert(self.sampb, -1) - self.sampb.show() - - separator = gtk.SeparatorToolItem() - separator.set_draw(True) - self.insert(separator, -1) - separator.show() - # HTML save source button self.savehtml = ToolButton( "htmloff" ) self.savehtml.set_tooltip(_('save as HTML')) @@ -556,33 +534,6 @@ class SaveAsToolbar(gtk.Toolbar): self.insert(self.loadmyblock, -1) self.loadmyblock.show() - def do_samples(self, button): - tawindow.load_file(self.activity.tw) - # run the activity - tawindow.runbutton(self.activity.tw, 0) - - def do_saveimage(self, button): - self.saveimage.set_icon("image-saveon") - _logger.debug("saving image to journal") - import tempfile - pngfd, pngfile = tempfile.mkstemp(".png") - del pngfd - tawindow.save_pict(self.activity.tw,pngfile) - - # Create a datastore object - file_dsobject = datastore.create() - - # Write metadata - file_dsobject.metadata['title'] = "Turtle Art image" - file_dsobject.metadata['icon-color'] = profile.get_color().to_string() - file_dsobject.metadata['mime_type'] = 'image/png' - file_dsobject.set_file_path(pngfile) - - datastore.write(file_dsobject) - file_dsobject.destroy() - gobject.timeout_add(250,self.saveimage.set_icon, "image-saveoff") - return - def do_savehtml(self, button): # write html out to datastore self.savehtml.set_icon("htmlon") @@ -623,21 +574,22 @@ class SaveAsToolbar(gtk.Toolbar): tar_fd.close() # Create a datastore object - file_dsobject = datastore.create() + dsobject = datastore.create() # Write any metadata (here we specifically set the title of the file # and specify that this is a plain text file). - file_dsobject.metadata['title'] = "Turtle Art portfolio" - file_dsobject.metadata['icon-color'] = profile.get_color().to_string() + dsobject.metadata['title'] = self.activity.get_title() + " portfolio" + dsobject.metadata['icon-color'] = profile.get_color().to_string() if embed_flag == True: - file_dsobject.metadata['mime_type'] = 'text/html' - file_dsobject.set_file_path(html_file) + dsobject.metadata['mime_type'] = 'text/html' + dsobject.set_file_path(html_file) else: - file_dsobject.metadata['mime_type'] = 'application/x-tar' - file_dsobject.set_file_path(tar_path) + dsobject.metadata['mime_type'] = 'application/x-tar' + dsobject.set_file_path(tar_path) - datastore.write(file_dsobject) - file_dsobject.destroy() + dsobject.metadata['activity'] = 'org.laptop.WebActivity' + datastore.write(dsobject) + dsobject.destroy() gobject.timeout_add(250,self.savehtml.set_icon, "htmloff") return @@ -651,13 +603,13 @@ class SaveAsToolbar(gtk.Toolbar): filename = "logosession.lg" # Create a datastore object - file_dsobject = datastore.create() + dsobject = datastore.create() # Write any metadata (here we specifically set the title of the file # and specify that this is a plain text file). - file_dsobject.metadata['title'] = filename - file_dsobject.metadata['mime_type'] = 'text/plain' - file_dsobject.metadata['icon-color'] = profile.get_color().to_string() + dsobject.metadata['title'] = self.activity.get_title() + ".lg" + dsobject.metadata['mime_type'] = 'text/plain' + dsobject.metadata['icon-color'] = profile.get_color().to_string() # save the html code to the instance directory try: @@ -677,9 +629,9 @@ class SaveAsToolbar(gtk.Toolbar): f.close() # Set the file_path in the datastore. - file_dsobject.set_file_path(file_path) + dsobject.set_file_path(file_path) - datastore.write(file_dsobject) + datastore.write(dsobject) gobject.timeout_add(250,self.savelogo.set_icon, "logo-saveoff") return @@ -711,6 +663,28 @@ class SaveAsToolbar(gtk.Toolbar): chooser.destroy() del chooser + def do_saveimage(self, button): + self.saveimage.set_icon("image-saveon") + _logger.debug("saving image to journal") + import tempfile + pngfd, pngfile = tempfile.mkstemp(".png") + del pngfd + tawindow.save_pict(self.activity.tw,pngfile) + + # Create a datastore object + dsobject = datastore.create() + + # Write metadata + dsobject.metadata['title'] = self.activity.get_title() + " image" + dsobject.metadata['icon-color'] = profile.get_color().to_string() + dsobject.metadata['mime_type'] = 'image/png' + dsobject.set_file_path(pngfile) + + datastore.write(dsobject) + dsobject.destroy() + gobject.timeout_add(250,self.saveimage.set_icon, "image-saveoff") + return + """ Project toolbar: show/hide palettes; show/hide blocks; run; walk; stop; erase; load sample project; fullscreen @@ -726,7 +700,10 @@ class ProjectToolbar(gtk.Toolbar): self.palette.set_tooltip(_('hide palette')) self.palette.props.sensitive = True self.palette.connect('clicked', self.do_palette) - self.palette.props.accelerator = _('<Alt>p') + try: + self.palette.props.accelerator = _('<Alt>p') + except: + pass self.insert(self.palette, -1) self.palette.show() @@ -735,7 +712,10 @@ class ProjectToolbar(gtk.Toolbar): self.blocks.set_tooltip(_('hide blocks')) self.blocks.props.sensitive = True self.blocks.connect('clicked', self.do_hideshow) - self.blocks.props.accelerator = _('<Alt>b') + try: + self.blocks.props.accelerator = _('<Alt>b') + except: + pass self.insert(self.blocks, -1) self.blocks.show() @@ -749,7 +729,10 @@ class ProjectToolbar(gtk.Toolbar): self.runproject.set_tooltip(_('run')) self.runproject.props.sensitive = True self.runproject.connect('clicked', self.do_run) - self.runproject.props.accelerator = _('<Alt>r') + try: + self.runproject.props.accelerator = _('<Alt>r') + except: + pass self.insert(self.runproject, -1) self.runproject.show() @@ -758,16 +741,34 @@ class ProjectToolbar(gtk.Toolbar): self.stepproject.set_tooltip(_('step')) self.stepproject.props.sensitive = True self.stepproject.connect('clicked', self.do_step) - self.stepproject.props.accelerator = _('<Alt>w') + try: + self.stepproject.props.accelerator = _('<Alt>w') + except: + pass self.insert(self.stepproject, -1) self.stepproject.show() + # debug button + self.debugproject = ToolButton( "debugoff" ) + self.debugproject.set_tooltip(_('debug')) + self.debugproject.props.sensitive = True + self.debugproject.connect('clicked', self.do_debug) + try: + self.debugproject.props.accelerator = _('<Alt>d') + except: + pass + self.insert(self.debugproject, -1) + self.debugproject.show() + # stop button self.stop = ToolButton( "stopitoff" ) self.stop.set_tooltip(_('stop turtle')) self.stop.props.sensitive = True self.stop.connect('clicked', self.do_stop) - self.stop.props.accelerator = _('<Alt>s') + try: + self.stop.props.accelerator = _('<Alt>s') + except: + pass self.insert(self.stop, -1) self.stop.show() @@ -781,7 +782,10 @@ class ProjectToolbar(gtk.Toolbar): self.eraser.set_tooltip(_('clean')) self.eraser.props.sensitive = True self.eraser.connect('clicked', self.do_eraser) - self.eraser.props.accelerator = _('<Alt>e') + try: + self.eraser.props.accelerator = _('<Alt>e') + except: + pass self.insert(self.eraser, -1) self.eraser.show() @@ -794,11 +798,48 @@ class ProjectToolbar(gtk.Toolbar): self.fullscreenb = ToolButton( "view-fullscreen" ) self.fullscreenb.set_tooltip(_('fullscreen')) self.fullscreenb.props.sensitive = True - self.fullscreenb.props.accelerator = '<Alt>Enter' + try: + self.fullscreenb.props.accelerator = '<Alt>Enter' + except: + pass self.fullscreenb.connect('clicked', self.do_fullscreen) self.insert(self.fullscreenb, -1) self.fullscreenb.show() + separator = gtk.SeparatorToolItem() + separator.set_draw(True) + self.insert(separator, -1) + separator.show() + + # Save snapshot ("keep") + self.keepb = ToolButton( "filesave" ) + self.keepb.set_tooltip(_('save snapshot')) + self.keepb.props.sensitive = True + try: + self.fullscreenb.props.accelerator = '<Ctrl>S' + except: + pass + self.keepb.connect('clicked', self.do_savesnapshot) + self.insert(self.keepb, -1) + self.keepb.show() + + separator = gtk.SeparatorToolItem() + separator.set_draw(True) + self.insert(separator, -1) + separator.show() + + # project open + self.sampb = ToolButton( "stock-open" ) + self.sampb.set_tooltip(_('samples')) + self.sampb.props.sensitive = True + self.sampb.connect('clicked', self.do_samples) + try: + self.sampb.props.accelerator = _('<Alt>o') + except: + pass + self.insert(self.sampb, -1) + self.sampb.show() + def do_palette(self, button): if self.activity.tw.palette == True: tawindow.hideshow_palette(self.activity.tw,False) @@ -822,16 +863,23 @@ class ProjectToolbar(gtk.Toolbar): def do_run(self, button): self.runproject.set_icon("run-faston") self.stop.set_icon("stopiton") + self.activity.tw.lc.trace = 0 tawindow.runbutton(self.activity.tw, 0) gobject.timeout_add(1000,self.runproject.set_icon,"run-fastoff") - gobject.timeout_add(1000,self.stepproject.set_icon,"run-slowoff") def do_step(self, button): self.stepproject.set_icon("run-slowon") self.stop.set_icon("stopiton") + self.activity.tw.lc.trace = 0 tawindow.runbutton(self.activity.tw, 3) gobject.timeout_add(1000,self.stepproject.set_icon,"run-slowoff") - gobject.timeout_add(1000,self.runproject.set_icon,"run-fastoff") + + def do_debug(self, button): + self.debugproject.set_icon("debugon") + self.stop.set_icon("stopiton") + self.activity.tw.lc.trace = 1 + tawindow.runbutton(self.activity.tw, 30) + gobject.timeout_add(1000,self.debugproject.set_icon,"debugoff") def do_stop(self, button): self.stop.set_icon("stopitoff") @@ -877,3 +925,37 @@ class ProjectToolbar(gtk.Toolbar): self.activity.fullscreen() self.activity.recenter() + def do_samples(self, button): + tawindow.load_file(self.activity.tw) + # run the activity + tawindow.runbutton(self.activity.tw, 0) + + def do_savesnapshot(self, button): + # Create a datastore object + # save the current state of the project to the instance directory + print "### in savesnapshot ###" + + import tempfile + tafd, tafile = tempfile.mkstemp(".ta") + print tafile + try: + tawindow.save_data(self.activity.tw,tafile) + except: + _logger.debug("couldn't save snapshot to journal") + + # Create a datastore object + dsobject = datastore.create() + + # Write any metadata + dsobject.metadata['title'] = self.activity.get_title() + " snapshot" + dsobject.metadata['icon-color'] = profile.get_color().to_string() + dsobject.metadata['mime_type'] = 'application/x-turtle-art' + dsobject.metadata['activity'] = 'org.laptop.TurtleArtActivity' + dsobject.set_file_path(tafile) + datastore.write(dsobject) + + # Clean up + dsobject.destroy() + os.remove(tafile) + del tafd + return diff --git a/activity/activity.info b/activity/activity.info index ba0ee20..c7e98a3 100644 --- a/activity/activity.info +++ b/activity/activity.info @@ -1,9 +1,10 @@ [Activity] name = Turtle Art -activity_version = 47 +activity_version = 63 license = MIT bundle_id = org.laptop.TurtleArtActivity exec = sugar-activity TurtleArtActivity.TurtleArtActivity icon = activity-turtleart show_launcher = yes update_url = http://wiki.laptop.org/go/Activities/G1G1 +mime_types = application/x-turtle-art diff --git a/activity/mimetypes.xml b/activity/mimetypes.xml new file mode 100644 index 0000000..aa24955 --- /dev/null +++ b/activity/mimetypes.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> +<mime-type type="application/x-turtle-art"> +<comment xml:lang="en">Turtle Art</comment> +<glob pattern="*.ta"/> +</mime-type> +</mime-info> diff --git a/icons/debugoff.svg b/icons/debugoff.svg new file mode 100644 index 0000000..6ba2790 --- /dev/null +++ b/icons/debugoff.svg @@ -0,0 +1,141 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + version="1.0" + width="55" + height="55" + id="svg2"> + <defs + id="defs4" /> + <path + d="M 12.3583,20.48583 C 12.3583,27.434109 10.713354,33.066802 8.6842109,33.066802 C 6.6550675,33.066802 5.0101218,27.434109 5.0101218,20.48583 C 5.0101218,13.537551 6.6550675,7.9048577 8.6842109,7.9048577 C 10.713354,7.9048577 12.3583,13.537551 12.3583,20.48583 L 12.3583,20.48583 z" + transform="matrix(7.4848487,0,0,2.1858407,-37.500004,-17.278762)" + id="path3188" + style="opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(1.5,0,0,1.5,-13.078338,-13.158384)" + id="g2418"> + <path + d="M 27.377856,20.343519 C 28.321,19.020469 30.286922,18.112089 30.821749,18.291101 C 31.638084,18.564336 33.456136,19.576235 33.650054,20.161715 C 34.013498,21.259028 33.209093,22.374586 32.988611,23.481022" + id="path3252" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 31.312226,33.70644 C 28.236767,39.033292 23.160414,41.860147 19.973874,40.020398 C 16.787334,38.180648 16.697287,32.37097 19.772746,27.044118 C 22.848206,21.717266 27.924558,18.890411 31.111098,20.73016 C 34.297638,22.56991 34.387686,28.379588 31.312226,33.70644 L 31.312226,33.70644 z" + id="path3197" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.51091182;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.640788,20.96543 C 27.28475,27.009989 27.339614,26.914963 27.339614,26.914963" + id="path3199" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 23.640267,22.485322 C 24.595846,24.37818 25.974761,25.728012 27.471512,26.982445 C 27.498847,27.005355 31.460104,28.392057 33.385523,28.013934" + id="path3201" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 22.8141,25.484531 C 25.194146,27.945239 25.221038,27.960765 25.221038,27.960765" + id="path3203" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 21.785315,26.831706 C 24.165361,29.292415 24.336387,29.493024 24.336387,29.493024" + id="path3207" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 20.834693,28.29192 C 23.214739,30.752628 23.451737,31.025283 23.451737,31.025283" + id="path3209" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 20.016015,29.896225 C 22.39606,32.356934 22.567086,32.557543 22.567086,32.557543" + id="path3211" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.370877,31.63468 C 21.750923,34.095389 21.682436,34.089803 21.682436,34.089803" + id="path3213" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.111902,33.697954 C 21.364647,36.254945 20.797785,35.622064 20.797785,35.622064" + id="path3215" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.133652,36.330772 C 19.703029,36.897193 19.913135,37.154321 19.913135,37.154321" + id="path3217" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.786085,30.087159 C 27.465026,29.256333 27.438134,29.240807 27.438134,29.240807" + id="path3230" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.133789,31.6517 C 26.81273,30.820874 26.553484,30.773066 26.553484,30.773066" + id="path3232" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 29.344518,33.20507 C 26.023459,32.374244 25.668834,32.305325 25.668834,32.305325" + id="path3234" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 28.364488,34.716219 C 25.043429,33.885393 24.784183,33.837585 24.784183,33.837585" + id="path3236" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 27.18151,36.144152 C 23.860451,35.313326 23.899532,35.369845 23.899532,35.369845" + id="path3238" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 25.524151,37.400068 C 22.183359,36.727629 23.014881,36.902105 23.014881,36.902105" + id="path3240" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 23.233189,38.697641 C 22.457965,38.487756 22.130232,38.434363 22.130232,38.434363" + id="path3242" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 38.499043,20.363658 C 37.800794,21.573059 36.199476,21.955755 34.922399,21.218434 C 33.645322,20.481114 33.176087,18.902983 33.874335,17.693582 C 34.572584,16.48418 36.173902,16.101484 37.450979,16.838805 C 38.728056,17.576125 39.197291,19.154256 38.499043,20.363658 z" + id="path3244" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.84691685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 36.397626,17.843099 C 36.200351,18.18479 35.747932,18.292914 35.38712,18.084599 C 35.026308,17.876284 34.893736,17.430416 35.091011,17.088724 C 35.288287,16.747033 35.740706,16.63891 36.101518,16.847225 C 36.46233,17.05554 36.594902,17.501408 36.397626,17.843099 z" + id="path3246" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.79813904;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 32.748117,16.754734 C 32.049869,17.964135 30.44855,18.346831 29.171473,17.60951 C 27.894396,16.87219 27.425162,15.294059 28.12341,14.084658 C 28.821659,12.875256 30.422977,12.49256 31.700054,13.229881 C 32.977131,13.967201 33.446366,15.545332 32.748117,16.754734 z" + id="path3248" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.84691685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.781161,14.311805 C 30.583886,14.653496 30.131467,14.76162 29.770655,14.553305 C 29.409842,14.34499 29.27727,13.899122 29.474546,13.55743 C 29.671821,13.215739 30.124241,13.107616 30.485053,13.315931 C 30.845865,13.524246 30.978437,13.970114 30.781161,14.311805 z" + id="path3250" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.79813904;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 32.6771,18.762402 C 34.592724,15.340936 37.749452,14.220631 37.749452,14.220631 L 37.749452,14.220631" + id="path3254" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 32.234792,18.337256 C 34.240057,14.967544 33.631905,11.673585 33.631905,11.673585 L 33.631905,11.673585" + id="path3258" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 26.988213,20.231746 L 25.8722,15.229742 L 22.062204,17.274526" + id="path3260" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 33.361036,23.684723 L 36.94565,22.754865 L 39.828331,26.456535" + id="path3262" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 23.851158,22.042526 L 22.753536,18.975309 L 14.588602,21.731577" + id="path3264" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 33.777334,27.207476 L 37.251354,26.779696 L 37.749256,34.197896" + id="path3266" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 20.388485,25.668558 L 19.349188,23.00868 L 12.485021,29.515384" + id="path3268" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 32.410841,31.851473 L 35.330898,30.934083 L 33.3031,40.346252" + id="path3270" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> +</svg> diff --git a/icons/debugon.svg b/icons/debugon.svg new file mode 100644 index 0000000..491ae78 --- /dev/null +++ b/icons/debugon.svg @@ -0,0 +1,141 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + version="1.0" + width="55" + height="55" + id="svg2"> + <defs + id="defs4" /> + <path + d="M 12.3583,20.48583 C 12.3583,27.434109 10.713354,33.066802 8.6842109,33.066802 C 6.6550675,33.066802 5.0101218,27.434109 5.0101218,20.48583 C 5.0101218,13.537551 6.6550675,7.9048577 8.6842109,7.9048577 C 10.713354,7.9048577 12.3583,13.537551 12.3583,20.48583 L 12.3583,20.48583 z" + transform="matrix(7.4848487,0,0,2.1858407,-37.500004,-17.278762)" + id="path3188" + style="opacity:1;fill:#00ff00;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(1.5,0,0,1.5,-13.078338,-13.158384)" + id="g3188"> + <path + d="M 27.377856,20.343519 C 28.321,19.020469 30.286922,18.112089 30.821749,18.291101 C 31.638084,18.564336 33.456136,19.576235 33.650054,20.161715 C 34.013498,21.259028 33.209093,22.374586 32.988611,23.481022" + id="path3252" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 31.312226,33.70644 C 28.236767,39.033292 23.160414,41.860147 19.973874,40.020398 C 16.787334,38.180648 16.697287,32.37097 19.772746,27.044118 C 22.848206,21.717266 27.924558,18.890411 31.111098,20.73016 C 34.297638,22.56991 34.387686,28.379588 31.312226,33.70644 L 31.312226,33.70644 z" + id="path3197" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.51091182;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.640788,20.96543 C 27.28475,27.009989 27.339614,26.914963 27.339614,26.914963" + id="path3199" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 23.640267,22.485322 C 24.595846,24.37818 25.974761,25.728012 27.471512,26.982445 C 27.498847,27.005355 31.460104,28.392057 33.385523,28.013934" + id="path3201" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 22.8141,25.484531 C 25.194146,27.945239 25.221038,27.960765 25.221038,27.960765" + id="path3203" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 21.785315,26.831706 C 24.165361,29.292415 24.336387,29.493024 24.336387,29.493024" + id="path3207" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 20.834693,28.29192 C 23.214739,30.752628 23.451737,31.025283 23.451737,31.025283" + id="path3209" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 20.016015,29.896225 C 22.39606,32.356934 22.567086,32.557543 22.567086,32.557543" + id="path3211" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.370877,31.63468 C 21.750923,34.095389 21.682436,34.089803 21.682436,34.089803" + id="path3213" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.111902,33.697954 C 21.364647,36.254945 20.797785,35.622064 20.797785,35.622064" + id="path3215" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.133652,36.330772 C 19.703029,36.897193 19.913135,37.154321 19.913135,37.154321" + id="path3217" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.786085,30.087159 C 27.465026,29.256333 27.438134,29.240807 27.438134,29.240807" + id="path3230" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.133789,31.6517 C 26.81273,30.820874 26.553484,30.773066 26.553484,30.773066" + id="path3232" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 29.344518,33.20507 C 26.023459,32.374244 25.668834,32.305325 25.668834,32.305325" + id="path3234" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 28.364488,34.716219 C 25.043429,33.885393 24.784183,33.837585 24.784183,33.837585" + id="path3236" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 27.18151,36.144152 C 23.860451,35.313326 23.899532,35.369845 23.899532,35.369845" + id="path3238" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 25.524151,37.400068 C 22.183359,36.727629 23.014881,36.902105 23.014881,36.902105" + id="path3240" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 23.233189,38.697641 C 22.457965,38.487756 22.130232,38.434363 22.130232,38.434363" + id="path3242" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 38.499043,20.363658 C 37.800794,21.573059 36.199476,21.955755 34.922399,21.218434 C 33.645322,20.481114 33.176087,18.902983 33.874335,17.693582 C 34.572584,16.48418 36.173902,16.101484 37.450979,16.838805 C 38.728056,17.576125 39.197291,19.154256 38.499043,20.363658 z" + id="path3244" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.84691685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 36.397626,17.843099 C 36.200351,18.18479 35.747932,18.292914 35.38712,18.084599 C 35.026308,17.876284 34.893736,17.430416 35.091011,17.088724 C 35.288287,16.747033 35.740706,16.63891 36.101518,16.847225 C 36.46233,17.05554 36.594902,17.501408 36.397626,17.843099 z" + id="path3246" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.79813904;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 32.748117,16.754734 C 32.049869,17.964135 30.44855,18.346831 29.171473,17.60951 C 27.894396,16.87219 27.425162,15.294059 28.12341,14.084658 C 28.821659,12.875256 30.422977,12.49256 31.700054,13.229881 C 32.977131,13.967201 33.446366,15.545332 32.748117,16.754734 z" + id="path3248" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.84691685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.781161,14.311805 C 30.583886,14.653496 30.131467,14.76162 29.770655,14.553305 C 29.409842,14.34499 29.27727,13.899122 29.474546,13.55743 C 29.671821,13.215739 30.124241,13.107616 30.485053,13.315931 C 30.845865,13.524246 30.978437,13.970114 30.781161,14.311805 z" + id="path3250" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.79813904;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 32.6771,18.762402 C 34.592724,15.340936 37.749452,14.220631 37.749452,14.220631 L 37.749452,14.220631" + id="path3254" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 32.234792,18.337256 C 34.240057,14.967544 33.631905,11.673585 33.631905,11.673585 L 33.631905,11.673585" + id="path3258" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75545591;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 26.988213,20.231746 L 25.8722,15.229742 L 22.062204,17.274526" + id="path3260" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 33.361036,23.684723 L 36.94565,22.754865 L 39.828331,26.456535" + id="path3262" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 23.851158,22.042526 L 22.753536,18.975309 L 14.588602,21.731577" + id="path3264" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 33.777334,27.207476 L 37.251354,26.779696 L 37.749256,34.197896" + id="path3266" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 20.388485,25.668558 L 19.349188,23.00868 L 12.485021,29.515384" + id="path3268" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M 32.410841,31.851473 L 35.330898,30.934083 L 33.3031,40.346252" + id="path3270" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.51091182px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> +</svg> diff --git a/icons/eraseroff.svg b/icons/eraseroff.svg index 9ffbb5e..dcb3ae3 100644 --- a/icons/eraseroff.svg +++ b/icons/eraseroff.svg @@ -14,7 +14,7 @@ width="50" height="43" version="1.0" - sodipodi:docname="eraseroff.svg" + sodipodi:docname="eraseron.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape"> <metadata id="metadata7"> @@ -64,27 +64,27 @@ inkscape:window-y="0" inkscape:current-layer="svg2" /> <path - style="fill:#808080;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#c44000;stroke:#a00000;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 37.612208,24.238779 L 36,17.5 L 48.5,4 L 47,14.5 L 37.612208,24.238779 z" id="path2394" sodipodi:nodetypes="ccccc" /> <path - style="fill:#808080;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#c44000;stroke:#a00000;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 15,17.5 L 28.5,4 L 48.5,4 L 36,17.5 L 15,17.5 z" id="path2390" sodipodi:nodetypes="ccccc" /> <path - style="fill:#a0a0a0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#a09400;stroke:#a00000;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 22.800718,38.5 L 25.493716,28.5 L 36,17.5 L 37.432675,24.418312 L 22.800718,38.5 z" id="path2392" sodipodi:nodetypes="ccccc" /> <path - style="fill:#c4c4c4;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#c4a000;stroke:#a00000;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 3.9497307,28.5 L 15,17.5 L 36,17.5 L 25.13465,28.5 L 3.9497307,28.5 z" id="path2388" sodipodi:nodetypes="ccccc" /> <path - style="fill:#e0e0e0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#e0d000;stroke:#a00000;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 0.26929982,38.5 L 3.8599641,28.5 L 25.044883,28.5 L 22.441652,38.5 L 0.26929982,38.5 z" id="path2384" sodipodi:nodetypes="ccccc" /> diff --git a/icons/eraseron.svg b/icons/eraseron.svg index dcb3ae3..9ffbb5e 100644 --- a/icons/eraseron.svg +++ b/icons/eraseron.svg @@ -14,7 +14,7 @@ width="50" height="43" version="1.0" - sodipodi:docname="eraseron.svg" + sodipodi:docname="eraseroff.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape"> <metadata id="metadata7"> @@ -64,27 +64,27 @@ inkscape:window-y="0" inkscape:current-layer="svg2" /> <path - style="fill:#c44000;stroke:#a00000;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#808080;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 37.612208,24.238779 L 36,17.5 L 48.5,4 L 47,14.5 L 37.612208,24.238779 z" id="path2394" sodipodi:nodetypes="ccccc" /> <path - style="fill:#c44000;stroke:#a00000;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#808080;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 15,17.5 L 28.5,4 L 48.5,4 L 36,17.5 L 15,17.5 z" id="path2390" sodipodi:nodetypes="ccccc" /> <path - style="fill:#a09400;stroke:#a00000;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#a0a0a0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 22.800718,38.5 L 25.493716,28.5 L 36,17.5 L 37.432675,24.418312 L 22.800718,38.5 z" id="path2392" sodipodi:nodetypes="ccccc" /> <path - style="fill:#c4a000;stroke:#a00000;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#c4c4c4;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 3.9497307,28.5 L 15,17.5 L 36,17.5 L 25.13465,28.5 L 3.9497307,28.5 z" id="path2388" sodipodi:nodetypes="ccccc" /> <path - style="fill:#e0d000;stroke:#a00000;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" + style="fill:#e0e0e0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" d="M 0.26929982,38.5 L 3.8599641,28.5 L 25.044883,28.5 L 22.441652,38.5 L 0.26929982,38.5 z" id="path2384" sodipodi:nodetypes="ccccc" /> diff --git a/icons/htmloff.svg b/icons/htmloff.svg index 50f4d27..fe0c01a 100644 --- a/icons/htmloff.svg +++ b/icons/htmloff.svg @@ -47,7 +47,7 @@ r="9.9510002" transform="translate(-5.1815003,1.7989998)" id="circle14" - style="fill:#ff0000;fill-opacity:1" /><path + style="fill:#ffffff;fill-opacity:1" /><path d="M 22.1945,25.348 C 22.1945,25.348 16.5915,29.545 16.5915,35.336 C 16.5915,41.127 22.1945,45.25 22.1945,45.25" id="path16" style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5" /><path diff --git a/icons/htmlon.svg b/icons/htmlon.svg index 9fd905c..af7331e 100644 --- a/icons/htmlon.svg +++ b/icons/htmlon.svg @@ -15,11 +15,11 @@ points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " transform="translate(-5.182,3.336)" id="polygon10" - style="fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <polyline points="43.818,18.027 31.874,18.027 31.874,6.088 " id="polyline12" - style="fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.182,3.336)" /> <circle cx="27.375" @@ -30,11 +30,11 @@ <path d="M 22.194,26.098 C 22.194,26.098 16.591,30.295 16.591,36.086 C 16.591,41.877 22.194,46 22.194,46" id="path16" - style="stroke:#ff0000;stroke-opacity:1" /> + style="stroke:#ffffff;stroke-opacity:1" /> <path d="M 22.194,26.098 C 22.194,26.098 27.726,30.668 27.726,36.086 C 27.726,41.505 22.194,46 22.194,46" id="path18" - style="stroke:#ff0000;stroke-opacity:1" /> + style="stroke:#ffffff;stroke-opacity:1" /> <line x1="22.194" x2="22.194" @@ -55,12 +55,12 @@ y1="26.098" y2="46" id="line24" - style="stroke:#ff0000;stroke-opacity:1" /> + style="stroke:#ffffff;stroke-opacity:1" /> <line x1="12.241" x2="32.144001" y1="36.049" y2="36.049" id="line26" - style="stroke:#ff0000;stroke-opacity:1" /> + style="stroke:#ffffff;stroke-opacity:1" /> </svg>
\ No newline at end of file diff --git a/icons/image-saveoff.svg b/icons/image-saveoff.svg index 9f4dc3c..2a8b197 100644 --- a/icons/image-saveoff.svg +++ b/icons/image-saveoff.svg @@ -53,13 +53,14 @@ transform="translate(45.97349,37.199819)" /><g transform="matrix(0.6016528,0,0,0.5962542,20.149385,7.0668138)" id="g2488" - style="fill:#ff00ff;fill-opacity:1"><path + style="fill:#ffffff;fill-opacity:1"><path d="M 3.196409,27.818399 C -6.063591,27.818399 -13.778591,37.053399 -13.778591,37.053399 C -13.778591,37.053399 -6.064591,46.330398 3.196409,46.325398 C 12.456409,46.318399 20.174409,37.040399 20.174409,37.040399 C 20.174409,37.040399 12.457409,27.811399 3.196409,27.818399 z M 3.196409,43.566399 C -0.388591,43.566399 -3.295591,40.656399 -3.295591,37.072398 C -3.295591,33.493399 -0.389591,30.578398 3.196409,30.578398 C 6.777409,30.578398 9.686409,33.493399 9.686409,37.072398 C 9.686409,40.656399 6.777409,43.566399 3.196409,43.566399 z" id="path2465" - style="fill:#ff00ff;fill-opacity:1;display:inline" /><circle + style="fill:#ffffff;fill-opacity:1;display:inline" /><circle cx="27.504" cy="27.598" r="2.9460001" transform="translate(-24.306591,9.4763985)" id="circle2467" - style="fill:#ff00ff;fill-opacity:1;display:inline" /></g></svg> + style="fill:#ffffff;fill-opacity:1;display:inline" /></g> +</svg> diff --git a/icons/image-saveoff.svg~ b/icons/image-saveoff.svg~ deleted file mode 100644 index 44fa01d..0000000 --- a/icons/image-saveoff.svg~ +++ /dev/null @@ -1,104 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="55" - height="55" - viewBox="0 0 55 55" - id="svg2" - xml:space="preserve"><defs - id="defs41"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -</defs> -<g - transform="translate(-0.5507515,-1.7569535)" - id="g3" - style="fill:none"> - <line - style="fill:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" - id="line3290" - y2="4.9169998" - y1="16.188" - x2="52.441002" - x1="41.169998" /> - <polyline - style="fill:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" - id="polyline3292" - points="51.562,15.306 41.17,16.188 42.053,5.794" /> -</g> -<polygon - points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " - transform="translate(-6,2)" - id="polygon9" - style="fill:none;stroke:#ffffff;stroke-width:3.5" /><polyline - points="43.818,18.027 31.874,18.027 31.874,6.088" - id="polyline11" - style="fill:none;stroke:#ffffff;stroke-width:3.5" - transform="translate(-6,2)" /> -<line - x1="40.75" - x2="52.021004" - y1="15.249998" - y2="3.9789984" - id="line2513" - style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /><polyline - points="51.562,15.306 41.17,16.188 42.053,5.794" - id="polyline2515" - style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" - transform="translate(-0.4199989,-0.938)" /><polyline - points="43.818,18.027 31.874,18.027 31.874,6.088" - id="polyline2519" - style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" - transform="translate(45.97349,37.199819)" /><g - transform="matrix(0.6016528,0,0,0.5962542,20.149385,7.0668138)" - id="g2488" - style="fill:#ff00ff;fill-opacity:1"><path - d="M 3.196409,27.818399 C -6.063591,27.818399 -13.778591,37.053399 -13.778591,37.053399 C -13.778591,37.053399 -6.064591,46.330398 3.196409,46.325398 C 12.456409,46.318399 20.174409,37.040399 20.174409,37.040399 C 20.174409,37.040399 12.457409,27.811399 3.196409,27.818399 z M 3.196409,43.566399 C -0.388591,43.566399 -3.295591,40.656399 -3.295591,37.072398 C -3.295591,33.493399 -0.389591,30.578398 3.196409,30.578398 C 6.777409,30.578398 9.686409,33.493399 9.686409,37.072398 C 9.686409,40.656399 6.777409,43.566399 3.196409,43.566399 z" - id="path2465" - style="fill:#ff00ff;fill-opacity:1;display:inline" /><circle - cx="27.504" - cy="27.598" - r="2.9460001" - transform="translate(-24.306591,9.4763985)" - id="circle2467" - style="fill:#ff00ff;fill-opacity:1;display:inline" /></g></svg>
\ No newline at end of file diff --git a/icons/image-saveon.svg b/icons/image-saveon.svg index 369ad11..933aa9e 100644 --- a/icons/image-saveon.svg +++ b/icons/image-saveon.svg @@ -32,7 +32,7 @@ points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " transform="translate(-6,2)" id="polygon9" - style="fill:#800080;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" /><polyline + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" /><polyline points="43.818,18.027 31.874,18.027 31.874,6.088" id="polyline11" style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" @@ -40,14 +40,14 @@ <g transform="matrix(0.6016528,0,0,0.5962542,20.149385,7.0668138)" id="g2488" - style="fill:#ff00ff;fill-opacity:1"><path + style="fill:#000000;fill-opacity:1"><path d="M 3.196409,27.818399 C -6.063591,27.818399 -13.778591,37.053399 -13.778591,37.053399 C -13.778591,37.053399 -6.064591,46.330398 3.196409,46.325398 C 12.456409,46.318399 20.174409,37.040399 20.174409,37.040399 C 20.174409,37.040399 12.457409,27.811399 3.196409,27.818399 z M 3.196409,43.566399 C -0.388591,43.566399 -3.295591,40.656399 -3.295591,37.072398 C -3.295591,33.493399 -0.389591,30.578398 3.196409,30.578398 C 6.777409,30.578398 9.686409,33.493399 9.686409,37.072398 C 9.686409,40.656399 6.777409,43.566399 3.196409,43.566399 z" id="path2465" - style="fill:#ff00ff;fill-opacity:1;display:inline" /><circle + style="fill:#000000;fill-opacity:1;display:inline" /><circle cx="27.504" cy="27.598" r="2.9460001" transform="translate(-24.306591,9.4763985)" id="circle2467" - style="fill:#ff00ff;fill-opacity:1;display:inline" /></g> -</svg> + style="fill:#000000;fill-opacity:1;display:inline" /></g> +</svg>
\ No newline at end of file diff --git a/icons/image-saveon.svg~ b/icons/image-saveon.svg~ deleted file mode 100644 index e705778..0000000 --- a/icons/image-saveon.svg~ +++ /dev/null @@ -1,109 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="55" - height="55" - viewBox="0 0 55 55" - id="svg2" - xml:space="preserve"><defs - id="defs41"> - - - - - - - - -</defs> -<g - transform="translate(-0.5507515,-1.7569535)" - id="g3" - style="fill:none;stroke:#ffffff;stroke-opacity:1"> - <line - style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" - id="line3290" - y2="4.9169998" - y1="16.188" - x2="52.441002" - x1="41.169998" /> - <polyline - style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" - id="polyline3292" - points="51.562,15.306 41.17,16.188 42.053,5.794" /> -</g> -<polygon - points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " - transform="translate(-6,2)" - id="polygon9" - style="fill:#008000;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" /><polyline - points="43.818,18.027 31.874,18.027 31.874,6.088" - id="polyline11" - style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" - transform="translate(-6,2)" /><path - d="M 21.379465,44.19975 C 21.102965,44.19975 20.829965,44.18225 20.560965,44.14975 L 21.254965,45.32425 L 21.938965,44.16775 C 21.753465,44.18275 21.568465,44.19975 21.379465,44.19975 z" - id="path11" - style="fill:none;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g - transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" - id="g13" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> - <path - d="M 40.16,11.726 C 37.996,11.726 36.202,13.281 35.817,15.333 C 37.676,16.678 39.274,18.448 40.492,20.541 C 42.777,20.369 44.586,18.48 44.586,16.151 C 44.586,13.707 42.604,11.726 40.16,11.726 z" - id="path15" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 40.713,39.887 C 39.489,42.119 37.853,44.018 35.916,45.443 C 36.437,47.307 38.129,48.682 40.16,48.682 C 42.603,48.682 44.586,46.702 44.586,44.258 C 44.586,42.003 42.893,40.162 40.713,39.887 z" - id="path17" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 14.273,39.871 C 12.02,40.077 10.249,41.95 10.249,44.258 C 10.249,46.701 12.229,48.682 14.673,48.682 C 16.737,48.682 18.457,47.262 18.945,45.35 C 17.062,43.934 15.47,42.061 14.273,39.871 z" - id="path19" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 19.026,15.437 C 18.683,13.334 16.872,11.726 14.673,11.726 C 12.229,11.726 10.249,13.707 10.249,16.15 C 10.249,18.532 12.135,20.46 14.494,20.556 C 15.68,18.513 17.226,16.772 19.026,15.437 z" - id="path21" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g><path - d="M 21.379465,26.34175 C 22.333465,26.34175 23.243465,26.54725 24.088465,26.90575 C 24.458965,26.36775 24.677465,25.71725 24.677465,25.01425 C 24.677465,23.17075 23.182965,21.67575 21.338965,21.67575 C 19.495465,21.67575 18.000965,23.17075 18.000965,25.01425 C 18.000965,25.72825 18.226965,26.38875 18.608965,26.93125 C 19.470965,26.55675 20.402465,26.34175 21.379465,26.34175 z" - id="path23" - style="fill:none;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g - transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" - id="g25" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> - <path - d="M 43.102,30.421 C 43.102,35.1554 41.4568,39.7008 38.5314,43.0485 C 35.606,46.3963 31.6341,48.279 27.497,48.279 C 23.3599,48.279 19.388,46.3963 16.4626,43.0485 C 13.5372,39.7008 11.892,35.1554 11.892,30.421 C 11.892,20.6244 18.9364,12.563 27.497,12.563 C 36.0576,12.563 43.102,20.6244 43.102,30.421 z" - id="path2988" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g><g - transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" - id="g28" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> - <path - d="M 25.875,33.75 L 24.333,29.125 L 27.497,26.538 L 31.112,29.164 L 29.625,33.833 L 25.875,33.75 z" - id="path30" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 27.501,41.551 C 23.533,41.391 21.958,39.542 21.958,39.542 L 25.528,35.379 L 29.993,35.547 L 33.125,39.667 C 33.125,39.667 30.235,41.661 27.501,41.551 z" - id="path32" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 18.453,33.843 C 17.604,30.875 18.625,26.959 18.625,26.959 L 22.625,29.126 L 24.118,33.755 L 20.536,37.988 C 20.536,37.987 19.071,35.998 18.453,33.843 z" - id="path34" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 19.458,25.125 C 19.458,25.125 19.958,23.167 22.497,21.303 C 24.734,19.66 26.962,19.583 26.962,19.583 L 26.925,24.564 L 23.404,27.314 L 19.458,25.125 z" - id="path2998" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 32.084,27.834 L 28.625,24.959 L 29,19.75 C 29,19.75 30.834,19.708 32.959,21.417 C 35.187,23.208 36.321,26.4 36.321,26.4 L 32.084,27.834 z" - id="path37" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 31.292,34.042 L 32.605,29.578 L 36.792,28.042 C 36.792,28.042 37.469,30.705 36.75,33.709 C 36.21,35.965 34.666,38.07 34.666,38.07 L 31.292,34.042 z" - id="path3002" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> -</svg>
\ No newline at end of file diff --git a/icons/logo-saveoff.svg b/icons/logo-saveoff.svg index f1ca4a7..602af75 100644 --- a/icons/logo-saveoff.svg +++ b/icons/logo-saveoff.svg @@ -72,65 +72,65 @@ transform="translate(-6,2)" /><path d="M 21.379465,44.19975 C 21.102965,44.19975 20.829965,44.18225 20.560965,44.14975 L 21.254965,45.32425 L 21.938965,44.16775 C 21.753465,44.18275 21.568465,44.19975 21.379465,44.19975 z" id="path11" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" id="g13" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> <path d="M 40.16,11.726 C 37.996,11.726 36.202,13.281 35.817,15.333 C 37.676,16.678 39.274,18.448 40.492,20.541 C 42.777,20.369 44.586,18.48 44.586,16.151 C 44.586,13.707 42.604,11.726 40.16,11.726 z" id="path15" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 40.713,39.887 C 39.489,42.119 37.853,44.018 35.916,45.443 C 36.437,47.307 38.129,48.682 40.16,48.682 C 42.603,48.682 44.586,46.702 44.586,44.258 C 44.586,42.003 42.893,40.162 40.713,39.887 z" id="path17" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 14.273,39.871 C 12.02,40.077 10.249,41.95 10.249,44.258 C 10.249,46.701 12.229,48.682 14.673,48.682 C 16.737,48.682 18.457,47.262 18.945,45.35 C 17.062,43.934 15.47,42.061 14.273,39.871 z" id="path19" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 19.026,15.437 C 18.683,13.334 16.872,11.726 14.673,11.726 C 12.229,11.726 10.249,13.707 10.249,16.15 C 10.249,18.532 12.135,20.46 14.494,20.556 C 15.68,18.513 17.226,16.772 19.026,15.437 z" id="path21" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g><path d="M 21.379465,26.34175 C 22.333465,26.34175 23.243465,26.54725 24.088465,26.90575 C 24.458965,26.36775 24.677465,25.71725 24.677465,25.01425 C 24.677465,23.17075 23.182965,21.67575 21.338965,21.67575 C 19.495465,21.67575 18.000965,23.17075 18.000965,25.01425 C 18.000965,25.72825 18.226965,26.38875 18.608965,26.93125 C 19.470965,26.55675 20.402465,26.34175 21.379465,26.34175 z" id="path23" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" id="g25" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> <path d="M 43.102,30.421 C 43.102,35.1554 41.4568,39.7008 38.5314,43.0485 C 35.606,46.3963 31.6341,48.279 27.497,48.279 C 23.3599,48.279 19.388,46.3963 16.4626,43.0485 C 13.5372,39.7008 11.892,35.1554 11.892,30.421 C 11.892,20.6244 18.9364,12.563 27.497,12.563 C 36.0576,12.563 43.102,20.6244 43.102,30.421 z" id="path2988" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g><g transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" id="g28" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> <path d="M 25.875,33.75 L 24.333,29.125 L 27.497,26.538 L 31.112,29.164 L 29.625,33.833 L 25.875,33.75 z" id="path30" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 27.501,41.551 C 23.533,41.391 21.958,39.542 21.958,39.542 L 25.528,35.379 L 29.993,35.547 L 33.125,39.667 C 33.125,39.667 30.235,41.661 27.501,41.551 z" id="path32" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 18.453,33.843 C 17.604,30.875 18.625,26.959 18.625,26.959 L 22.625,29.126 L 24.118,33.755 L 20.536,37.988 C 20.536,37.987 19.071,35.998 18.453,33.843 z" id="path34" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 19.458,25.125 C 19.458,25.125 19.958,23.167 22.497,21.303 C 24.734,19.66 26.962,19.583 26.962,19.583 L 26.925,24.564 L 23.404,27.314 L 19.458,25.125 z" id="path2998" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 32.084,27.834 L 28.625,24.959 L 29,19.75 C 29,19.75 30.834,19.708 32.959,21.417 C 35.187,23.208 36.321,26.4 36.321,26.4 L 32.084,27.834 z" id="path37" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 31.292,34.042 L 32.605,29.578 L 36.792,28.042 C 36.792,28.042 37.469,30.705 36.75,33.709 C 36.21,35.965 34.666,38.07 34.666,38.07 L 31.292,34.042 z" id="path3002" - style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> <line x1="40.75" diff --git a/icons/logo-saveon.svg b/icons/logo-saveon.svg index e705778..7a3f231 100644 --- a/icons/logo-saveon.svg +++ b/icons/logo-saveon.svg @@ -39,71 +39,71 @@ points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " transform="translate(-6,2)" id="polygon9" - style="fill:#008000;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" /><polyline + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" /><polyline points="43.818,18.027 31.874,18.027 31.874,6.088" id="polyline11" style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" transform="translate(-6,2)" /><path d="M 21.379465,44.19975 C 21.102965,44.19975 20.829965,44.18225 20.560965,44.14975 L 21.254965,45.32425 L 21.938965,44.16775 C 21.753465,44.18275 21.568465,44.19975 21.379465,44.19975 z" id="path11" - style="fill:none;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" id="g13" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> <path d="M 40.16,11.726 C 37.996,11.726 36.202,13.281 35.817,15.333 C 37.676,16.678 39.274,18.448 40.492,20.541 C 42.777,20.369 44.586,18.48 44.586,16.151 C 44.586,13.707 42.604,11.726 40.16,11.726 z" id="path15" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 40.713,39.887 C 39.489,42.119 37.853,44.018 35.916,45.443 C 36.437,47.307 38.129,48.682 40.16,48.682 C 42.603,48.682 44.586,46.702 44.586,44.258 C 44.586,42.003 42.893,40.162 40.713,39.887 z" id="path17" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 14.273,39.871 C 12.02,40.077 10.249,41.95 10.249,44.258 C 10.249,46.701 12.229,48.682 14.673,48.682 C 16.737,48.682 18.457,47.262 18.945,45.35 C 17.062,43.934 15.47,42.061 14.273,39.871 z" id="path19" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 19.026,15.437 C 18.683,13.334 16.872,11.726 14.673,11.726 C 12.229,11.726 10.249,13.707 10.249,16.15 C 10.249,18.532 12.135,20.46 14.494,20.556 C 15.68,18.513 17.226,16.772 19.026,15.437 z" id="path21" - style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g><path d="M 21.379465,26.34175 C 22.333465,26.34175 23.243465,26.54725 24.088465,26.90575 C 24.458965,26.36775 24.677465,25.71725 24.677465,25.01425 C 24.677465,23.17075 23.182965,21.67575 21.338965,21.67575 C 19.495465,21.67575 18.000965,23.17075 18.000965,25.01425 C 18.000965,25.72825 18.226965,26.38875 18.608965,26.93125 C 19.470965,26.55675 20.402465,26.34175 21.379465,26.34175 z" id="path23" - style="fill:none;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" id="g25" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> <path d="M 43.102,30.421 C 43.102,35.1554 41.4568,39.7008 38.5314,43.0485 C 35.606,46.3963 31.6341,48.279 27.497,48.279 C 23.3599,48.279 19.388,46.3963 16.4626,43.0485 C 13.5372,39.7008 11.892,35.1554 11.892,30.421 C 11.892,20.6244 18.9364,12.563 27.497,12.563 C 36.0576,12.563 43.102,20.6244 43.102,30.421 z" id="path2988" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g><g transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" id="g28" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> <path d="M 25.875,33.75 L 24.333,29.125 L 27.497,26.538 L 31.112,29.164 L 29.625,33.833 L 25.875,33.75 z" id="path30" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 27.501,41.551 C 23.533,41.391 21.958,39.542 21.958,39.542 L 25.528,35.379 L 29.993,35.547 L 33.125,39.667 C 33.125,39.667 30.235,41.661 27.501,41.551 z" id="path32" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 18.453,33.843 C 17.604,30.875 18.625,26.959 18.625,26.959 L 22.625,29.126 L 24.118,33.755 L 20.536,37.988 C 20.536,37.987 19.071,35.998 18.453,33.843 z" id="path34" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 19.458,25.125 C 19.458,25.125 19.958,23.167 22.497,21.303 C 24.734,19.66 26.962,19.583 26.962,19.583 L 26.925,24.564 L 23.404,27.314 L 19.458,25.125 z" id="path2998" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 32.084,27.834 L 28.625,24.959 L 29,19.75 C 29,19.75 30.834,19.708 32.959,21.417 C 35.187,23.208 36.321,26.4 36.321,26.4 L 32.084,27.834 z" id="path37" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path d="M 31.292,34.042 L 32.605,29.578 L 36.792,28.042 C 36.792,28.042 37.469,30.705 36.75,33.709 C 36.21,35.965 34.666,38.07 34.666,38.07 L 31.292,34.042 z" id="path3002" - style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> </svg>
\ No newline at end of file diff --git a/icons/pippy-openoff.svg b/icons/pippy-openoff.svg index 16d5b78..628c207 100644 --- a/icons/pippy-openoff.svg +++ b/icons/pippy-openoff.svg @@ -8,7 +8,8 @@ height="55" viewBox="0 0 55 55" id="svg2" - xml:space="preserve"> + xml:space="preserve"><defs + id="defs12" /> <g transform="matrix(-1,0,0,-1,93.060248,19.348046)" id="g3" @@ -37,13 +38,13 @@ <path d="M 21.811546,47.176099 C 25.489595,47.176099 30.951388,45.596321 30.951388,40.94995 C 30.951388,35.781439 26.195353,35.303832 24.223039,34.780579 C 22.043113,34.335814 20.591057,33.715148 20.503836,32.857347 C 20.354576,31.386674 21.215122,30.813879 22.927614,30.813879 C 22.927614,30.813879 27.001232,32.853451 30.461841,31.225801 C 31.437249,30.767677 33.184138,28.627351 33.184138,27.151111 C 33.184138,25.674314 27.544831,23.96762 25.833568,23.96762 C 24.121076,23.96762 22.66472,26.109059 22.66472,26.109059 C 19.240965,26.109059 15.816595,29.062653 15.816595,32.016247 C 15.816595,34.969284 19.09232,37.279388 23.007464,37.923434 C 24.827448,38.184504 26.349526,39.159201 26.003711,40.950506 C 25.723005,42.405037 24.164072,43.9041 20.868078,43.9041 C 18.256344,43.9041 12.69873,43.782194 11.811158,41.633518 C 11.240532,40.249682 11.91435,38.736146 12.770596,38.736146 L 12.754011,38.647082 C 11.881795,38.559131 9.3462261,38.736146 9.3462261,41.689183 C 9.3456118,45.475528 14.962806,47.176099 21.811546,47.176099 z" id="path2474" - style="fill:#ffffff;stroke:#0101ff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path d="M 30.461227,31.226358 C 28.850084,31.066599 26.400508,30.113054 25.874721,28.430853" id="path2476" - style="fill:none;stroke:#0101ff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><circle + style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><circle cx="35.805" cy="10.96" r="1.676" transform="matrix(0.6142367,0,0,0.5566517,4.3076424,20.174595)" id="circle2478" - style="fill:#0101ff;fill-opacity:1;stroke-width:3.42034841;stroke-miterlimit:4;stroke-dasharray:none" /></svg> + style="fill:#ffffff;fill-opacity:1;stroke-width:3.42034841;stroke-miterlimit:4;stroke-dasharray:none" /></svg>
\ No newline at end of file diff --git a/icons/pippy-openon.svg b/icons/pippy-openon.svg index 44871ee..0209ba6 100644 --- a/icons/pippy-openon.svg +++ b/icons/pippy-openon.svg @@ -43,7 +43,7 @@ points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " transform="translate(-6,2)" id="polygon9" - style="fill:#8080ff;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" /><polyline + style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" /><polyline points="43.818,18.027 31.874,18.027 31.874,6.088" id="polyline11" style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" @@ -51,13 +51,13 @@ <path d="M 21.811546,47.176099 C 25.489595,47.176099 30.951388,45.596321 30.951388,40.94995 C 30.951388,35.781439 26.195353,35.303832 24.223039,34.780579 C 22.043113,34.335814 20.591057,33.715148 20.503836,32.857347 C 20.354576,31.386674 21.215122,30.813879 22.927614,30.813879 C 22.927614,30.813879 27.001232,32.853451 30.461841,31.225801 C 31.437249,30.767677 33.184138,28.627351 33.184138,27.151111 C 33.184138,25.674314 27.544831,23.96762 25.833568,23.96762 C 24.121076,23.96762 22.66472,26.109059 22.66472,26.109059 C 19.240965,26.109059 15.816595,29.062653 15.816595,32.016247 C 15.816595,34.969284 19.09232,37.279388 23.007464,37.923434 C 24.827448,38.184504 26.349526,39.159201 26.003711,40.950506 C 25.723005,42.405037 24.164072,43.9041 20.868078,43.9041 C 18.256344,43.9041 12.69873,43.782194 11.811158,41.633518 C 11.240532,40.249682 11.91435,38.736146 12.770596,38.736146 L 12.754011,38.647082 C 11.881795,38.559131 9.3462261,38.736146 9.3462261,41.689183 C 9.3456118,45.475528 14.962806,47.176099 21.811546,47.176099 z" id="path2474" - style="fill:#ffffff;stroke:#0101ff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path d="M 30.461227,31.226358 C 28.850084,31.066599 26.400508,30.113054 25.874721,28.430853" id="path2476" - style="fill:none;stroke:#0101ff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><circle + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><circle cx="35.805" cy="10.96" r="1.676" transform="matrix(0.6142367,0,0,0.5566517,4.3076424,20.174595)" id="circle2478" - style="fill:#0101ff;fill-opacity:1;stroke-width:3.42034841;stroke-miterlimit:4;stroke-dasharray:none" /></svg>
\ No newline at end of file + style="fill:#000000;fill-opacity:1;stroke-width:3.42034841;stroke-miterlimit:4;stroke-dasharray:none" /></svg>
\ No newline at end of file diff --git a/icons/run-fastoff.svg b/icons/run-fastoff.svg index 52c01b1..f76570f 100644 --- a/icons/run-fastoff.svg +++ b/icons/run-fastoff.svg @@ -10,25 +10,25 @@ <defs id="defs5" /> <path - d="M 27.849263,20.597427 A 12.959558,15.579044 0 1 1 1.9301481,20.597427 A 12.959558,15.579044 0 1 1 27.849263,20.597427 z" + d="M 27.849263,20.597427 C 27.851349,29.203268 22.048546,36.18101 14.889706,36.18101 C 7.7308648,36.18101 1.9280624,29.203268 1.9301481,20.597427 C 1.9280624,11.991586 7.7308648,5.0138442 14.889706,5.0138442 C 22.048546,5.0138442 27.851349,11.991586 27.849263,20.597427 L 27.849263,20.597427 z" transform="matrix(1.6011349,0,0,1.3319174,-1.3404274,-4.9340719)" id="path2401" - style="opacity:1;fill:#00d000;fill-opacity:1;stroke:#00d000;stroke-width:2.39670968;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:2.39670968;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <g transform="translate(6.0193572e-8,-1.9999998)" id="g3287"> <path - d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + d="M 37.158177,18.217157 C 37.158177,25.346516 32.418457,31.126004 26.571716,31.126004 C 20.724975,31.126004 15.985255,25.346516 15.985255,18.217157 C 15.985255,11.087798 20.724975,5.30831 26.571716,5.30831 C 32.418457,5.30831 37.158177,11.087798 37.158177,18.217157 L 37.158177,18.217157 z" transform="matrix(0.9002849,0,0,0.6378505,-7.1526774,12.961276)" id="path3173" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path - d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + d="M 37.158177,18.217157 C 37.158177,25.346516 32.418457,31.126004 26.571716,31.126004 C 20.724975,31.126004 15.985255,25.346516 15.985255,18.217157 C 15.985255,11.087798 20.724975,5.30831 26.571716,5.30831 C 32.418457,5.30831 37.158177,11.087798 37.158177,18.217157 L 37.158177,18.217157 z" transform="matrix(0.34904,-0.8298699,0.4328947,0.1820738,8.5363479,48.352162)" id="path3177" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path - d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + d="M 37.158177,18.217157 C 37.158177,25.346516 32.418457,31.126004 26.571716,31.126004 C 20.724975,31.126004 15.985255,25.346516 15.985255,18.217157 C 15.985255,11.087798 20.724975,5.30831 26.571716,5.30831 C 32.418457,5.30831 37.158177,11.087798 37.158177,18.217157 L 37.158177,18.217157 z" transform="matrix(0.5612942,0.3544048,-0.1085241,0.1718767,9.8942224,-2.0522731)" id="path3179" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> @@ -37,8 +37,4 @@ id="path2384" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> </g> - <path - d="M 27.779352,22.5 L 17.220648,28.603239 C 17.220648,16.396761 17.220648,16.396761 17.220648,16.396761 L 27.779352,22.5 z" - id="path2496" - style="fill:#00d000;fill-opacity:1;fill-rule:evenodd;stroke:#00d000;stroke-width:0.81818181px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> </svg> diff --git a/icons/run-faston.svg b/icons/run-faston.svg index 7f435c6..33e8bbd 100644 --- a/icons/run-faston.svg +++ b/icons/run-faston.svg @@ -10,25 +10,25 @@ <defs id="defs5" /> <path - d="M 27.849263,20.597427 A 12.959558,15.579044 0 1 1 1.9301481,20.597427 A 12.959558,15.579044 0 1 1 27.849263,20.597427 z" + d="M 27.849263,20.597427 C 27.851349,29.203268 22.048546,36.18101 14.889706,36.18101 C 7.7308648,36.18101 1.9280624,29.203268 1.9301481,20.597427 C 1.9280624,11.991586 7.7308648,5.0138442 14.889706,5.0138442 C 22.048546,5.0138442 27.851349,11.991586 27.849263,20.597427 L 27.849263,20.597427 z" transform="matrix(1.6011349,0,0,1.3319174,-1.3404274,-4.9340719)" id="path2401" - style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:2.39670968;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + style="opacity:1;fill:#00d000;fill-opacity:1;stroke:#00d000;stroke-width:2.39670968;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <g transform="translate(6.0193572e-8,-1.9999998)" id="g3287"> <path - d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + d="M 37.158177,18.217157 C 37.158177,25.346516 32.418457,31.126004 26.571716,31.126004 C 20.724975,31.126004 15.985255,25.346516 15.985255,18.217157 C 15.985255,11.087798 20.724975,5.30831 26.571716,5.30831 C 32.418457,5.30831 37.158177,11.087798 37.158177,18.217157 L 37.158177,18.217157 z" transform="matrix(0.9002849,0,0,0.6378505,-7.1526774,12.961276)" id="path3173" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path - d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + d="M 37.158177,18.217157 C 37.158177,25.346516 32.418457,31.126004 26.571716,31.126004 C 20.724975,31.126004 15.985255,25.346516 15.985255,18.217157 C 15.985255,11.087798 20.724975,5.30831 26.571716,5.30831 C 32.418457,5.30831 37.158177,11.087798 37.158177,18.217157 L 37.158177,18.217157 z" transform="matrix(0.34904,-0.8298699,0.4328947,0.1820738,8.5363479,48.352162)" id="path3177" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path - d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + d="M 37.158177,18.217157 C 37.158177,25.346516 32.418457,31.126004 26.571716,31.126004 C 20.724975,31.126004 15.985255,25.346516 15.985255,18.217157 C 15.985255,11.087798 20.724975,5.30831 26.571716,5.30831 C 32.418457,5.30831 37.158177,11.087798 37.158177,18.217157 L 37.158177,18.217157 z" transform="matrix(0.5612942,0.3544048,-0.1085241,0.1718767,9.8942224,-2.0522731)" id="path3179" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> @@ -37,8 +37,4 @@ id="path2384" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> </g> - <path - d="M 27.779352,22.5 L 17.220648,28.603239 C 17.220648,16.396761 17.220648,16.396761 17.220648,16.396761 L 27.779352,22.5 z" - id="path2496" - style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:0.81818181px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> </svg> diff --git a/icons/run-slowoff.svg b/icons/run-slowoff.svg index 72d4267..f120056 100644 --- a/icons/run-slowoff.svg +++ b/icons/run-slowoff.svg @@ -8,20 +8,30 @@ height="45" viewBox="0 0 55 55" id="svg2" - xml:space="preserve"><defs - id="defs12"> + xml:space="preserve"> +<defs + id="defs12"> </defs><path - d="M 36.852226,15.69838 A 11.523279,10.799595 0 1 1 13.805668,15.69838 A 11.523279,10.799595 0 1 1 36.852226,15.69838 z" - transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" - id="path2387" - style="opacity:1;fill:#00d000;fill-opacity:1;stroke:#00d000;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" /><path - d="M 11.990413,18.017646 C 12.802994,19.393237 13.858719,20.841774 13.990413,21.517646 C 14.122107,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.802994,35.642056 11.990413,37.017646 C 11.046828,38.615007 10.990413,43.023282 10.990413,44.017646 C 10.990413,45.380621 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 45.067291,33.528342 46.931589,31.841175 C 49.474312,29.540042 49.591959,25.848191 47.049236,23.547058 C 45.184938,21.859891 43.513391,21.261139 41.808731,22.803834 C 38.764446,25.558875 37.80724,24.595804 36.490413,20.200626 C 35.35435,16.408784 36.215144,17.428871 38.740413,14.793058 C 39.477179,14.024039 40.18719,13.844329 40.490413,13.017646 C 40.793637,12.190963 40.690074,10.717307 40.490413,10.517646 C 40.091093,10.118326 37.237542,9.4366173 35.490413,11.517646 L 31.490413,17.017646 L 28.990413,15.017646 C 25.70771,13.452234 23.5949,13.963884 19.990413,16.017646 L 17.990413,18.017646 L 14.990413,14.017646 C 12.807811,11.407523 10.990413,9.6546713 10.990413,11.017646 C 10.990413,12.01201 11.046828,16.420285 11.990413,18.017646 z" - id="path2582" - style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 33.952541,27.5 L 21.047459,34.959514 C 21.047459,20.040486 21.047459,20.040486 21.047459,20.040486 L 33.952541,27.5 z" - id="path2496" - style="fill:#00d000;fill-opacity:1;fill-rule:evenodd;stroke:#00d000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path - d="M 41.082996,20.207489 A 17.424089,16.199392 0 1 1 41.082996,20.207489 A 17.424089,16.199392 0 1 1 41.082996,20.207489 z" - id="path2385" - style="opacity:1;fill:#00d000;fill-opacity:1;stroke:#00d000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg> + d="M 36.852226,15.69838 C 36.852226,21.662832 31.693078,26.497975 25.328947,26.497975 C 18.964816,26.497975 13.805668,21.662832 13.805668,15.69838 C 13.805668,9.7339283 18.964816,4.8987848 25.328947,4.8987848 C 31.693078,4.8987848 36.852226,9.7339283 36.852226,15.69838 L 36.852226,15.69838 z" + transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" + id="path2387" + style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + d="M 11.990413,18.017646 C 12.802994,19.393237 13.858719,20.841774 13.990413,21.517646 C 14.122107,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.802994,35.642056 11.990413,37.017646 C 11.046828,38.615007 10.990413,43.023282 10.990413,44.017646 C 10.990413,45.380621 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 45.067291,33.528342 46.931589,31.841175 C 49.474312,29.540042 49.591959,25.848191 47.049236,23.547058 C 45.184938,21.859891 43.513391,21.261139 41.808731,22.803834 C 38.764446,25.558875 37.80724,24.595804 36.490413,20.200626 C 35.35435,16.408784 36.215144,17.428871 38.740413,14.793058 C 39.477179,14.024039 40.18719,13.844329 40.490413,13.017646 C 40.793637,12.190963 40.690074,10.717307 40.490413,10.517646 C 40.091093,10.118326 37.237542,9.4366173 35.490413,11.517646 L 31.490413,17.017646 L 28.990413,15.017646 C 25.70771,13.452234 23.5949,13.963884 19.990413,16.017646 L 17.990413,18.017646 L 14.990413,14.017646 C 12.807811,11.407523 10.990413,9.6546713 10.990413,11.017646 C 10.990413,12.01201 11.046828,16.420285 11.990413,18.017646 z" + id="path2582" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + d="M 33.066802,26.052631 C 33.066802,29.803472 29.079055,32.844129 24.15992,32.844129 C 19.240784,32.844129 15.253037,29.803472 15.253037,26.052631 C 15.253037,22.30179 19.240784,19.261133 24.15992,19.261133 C 29.079055,19.261133 33.066802,22.30179 33.066802,26.052631 L 33.066802,26.052631 z" + transform="matrix(1.1875,0,0,1.4262294,-2.8599446,-9.6570288)" + id="path2384" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.40873694;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + d="" + id="path2385" + style="opacity:1;fill:#a0ffa0;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + d="M 47.763159,26.163967 A 2.2823887,1.6700405 0 1 1 43.198381,26.163967 A 2.2823887,1.6700405 0 1 1 47.763159,26.163967 z" + transform="translate(-0.2226721,-1.3360324)" + id="path2388" + style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + d="M 47.763159,26.163967 A 2.2823887,1.6700405 0 1 1 43.198381,26.163967 A 2.2823887,1.6700405 0 1 1 47.763159,26.163967 z" + transform="translate(-0.2226721,3.8967616)" + id="path3162" + style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg>
\ No newline at end of file diff --git a/icons/run-slowon.svg b/icons/run-slowon.svg index a99c82e..d8f9162 100644 --- a/icons/run-slowon.svg +++ b/icons/run-slowon.svg @@ -8,24 +8,16 @@ height="45" viewBox="0 0 55 55" id="svg2" - xml:space="preserve"> -<defs - id="defs12"> + xml:space="preserve"><defs + id="defs12"> </defs><path - d="M 36.852226,15.69838 C 36.852226,21.662832 31.693078,26.497975 25.328947,26.497975 C 18.964816,26.497975 13.805668,21.662832 13.805668,15.69838 C 13.805668,9.7339283 18.964816,4.8987848 25.328947,4.8987848 C 31.693078,4.8987848 36.852226,9.7339283 36.852226,15.69838 L 36.852226,15.69838 z" - transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" - id="path2387" - style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 11.990413,18.017646 C 12.802994,19.393237 13.858719,20.841774 13.990413,21.517646 C 14.122107,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.802994,35.642056 11.990413,37.017646 C 11.046828,38.615007 10.990413,43.023282 10.990413,44.017646 C 10.990413,45.380621 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 45.067291,33.528342 46.931589,31.841175 C 49.474312,29.540042 49.591959,25.848191 47.049236,23.547058 C 45.184938,21.859891 43.513391,21.261139 41.808731,22.803834 C 38.764446,25.558875 37.80724,24.595804 36.490413,20.200626 C 35.35435,16.408784 36.215144,17.428871 38.740413,14.793058 C 39.477179,14.024039 40.18719,13.844329 40.490413,13.017646 C 40.793637,12.190963 40.690074,10.717307 40.490413,10.517646 C 40.091093,10.118326 37.237542,9.4366173 35.490413,11.517646 L 31.490413,17.017646 L 28.990413,15.017646 C 25.70771,13.452234 23.5949,13.963884 19.990413,16.017646 L 17.990413,18.017646 L 14.990413,14.017646 C 12.807811,11.407523 10.990413,9.6546713 10.990413,11.017646 C 10.990413,12.01201 11.046828,16.420285 11.990413,18.017646 z" - id="path2582" - style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 33.066802,26.052631 A 8.9068823,6.7914982 0 1 1 15.253037,26.052631 A 8.9068823,6.7914982 0 1 1 33.066802,26.052631 z" - transform="matrix(1.1875,0,0,1.4262294,-2.8599446,-9.6570288)" - id="path2384" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.40873694;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 33.952541,27.5 L 21.047459,34.959514 C 21.047459,20.040486 21.047459,20.040486 21.047459,20.040486 L 33.952541,27.5 z" - id="path2496" - style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path - id="path2385" - style="opacity:1;fill:#a0ffa0;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg>
\ No newline at end of file + d="M 36.852226,15.69838 C 36.852226,21.662832 31.693078,26.497975 25.328947,26.497975 C 18.964816,26.497975 13.805668,21.662832 13.805668,15.69838 C 13.805668,9.7339283 18.964816,4.8987848 25.328947,4.8987848 C 31.693078,4.8987848 36.852226,9.7339283 36.852226,15.69838 L 36.852226,15.69838 z" + transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" + id="path2387" + style="opacity:1;fill:#00d000;fill-opacity:1;stroke:#00d000;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" /><path + d="M 11.990413,18.017646 C 12.802994,19.393237 13.858719,20.841774 13.990413,21.517646 C 14.122107,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.802994,35.642056 11.990413,37.017646 C 11.046828,38.615007 10.990413,43.023282 10.990413,44.017646 C 10.990413,45.380621 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 45.067291,33.528342 46.931589,31.841175 C 49.474312,29.540042 49.591959,25.848191 47.049236,23.547058 C 45.184938,21.859891 43.513391,21.261139 41.808731,22.803834 C 38.764446,25.558875 37.80724,24.595804 36.490413,20.200626 C 35.35435,16.408784 36.215144,17.428871 38.740413,14.793058 C 39.477179,14.024039 40.18719,13.844329 40.490413,13.017646 C 40.793637,12.190963 40.690074,10.717307 40.490413,10.517646 C 40.091093,10.118326 37.237542,9.4366173 35.490413,11.517646 L 31.490413,17.017646 L 28.990413,15.017646 C 25.70771,13.452234 23.5949,13.963884 19.990413,16.017646 L 17.990413,18.017646 L 14.990413,14.017646 C 12.807811,11.407523 10.990413,9.6546713 10.990413,11.017646 C 10.990413,12.01201 11.046828,16.420285 11.990413,18.017646 z" + id="path2582" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + id="path2385" + style="opacity:1;fill:#00d000;fill-opacity:1;stroke:#00d000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg>
\ No newline at end of file diff --git a/images/audioon.svg b/images/audioon.svg index bdd209c..b38bb63 100644 --- a/images/audioon.svg +++ b/images/audioon.svg @@ -32,18 +32,18 @@ gradientTransform="matrix(0.7750554,0,0,0.9997979,0.8784441,32.623865)" /> </defs> <path - d="M 10,0.88028324 L 74.119717,0.88028324 L 74.119717,53.119717 L 10,53.119717 L 10,44.5 L 0.5,44.5 L 0.5,38.5 L 10,38.5 L 10,30 L 0.5,30 L 0.5,24 L 10,24 L 10,15.5 L 0.5,15.5 L 0.5,9.5 L 10,9.5 L 10,0.88028324 z" + d="M 1,0.88028324 L 74.119717,0.88028324 L 74.119717,53.119717 L 1,53.119717 L 1,0.88028324 z" id="path9" style="fill:url(#linearGradient3172);fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1.76100004;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect width="32.5" height="42.499996" - x="25.75" + x="21.25" y="5.7500038" id="rect2426" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <g - transform="translate(2.3,-0.5)" + transform="translate(-1.872241,-0.5)" id="g3201"> <path d="M 36.843,39.696 C 36.332,38.239 33.633,38.623 32.433,39.626 C 30.033,41.635 32.009,44.022 34.757,42.903 C 36.321,42.265 37.353,41.155 36.843,39.696 z" diff --git a/images/de/flow/flowgroup.svg b/images/de/flow/flowgroup.svg index 56757bf..8b15789 100644 --- a/images/de/flow/flowgroup.svg +++ b/images/de/flow/flowgroup.svg @@ -1,375 +1,362 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> - <!-- Created with Inkscape (http://www.inkscape.org/) --> - <svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - version="1.0" - width="145" - height="500" - id="svg2"> - <defs - id="defs4"> - <linearGradient - id="linearGradient3789"> - <stop - id="stop3791" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3793" - style="stop-color:#feb00a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="80" - y1="436" - x2="129" - y2="436" - id="linearGradient4683" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="17" - y1="382" - x2="128" - y2="382" - id="linearGradient4691" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="16" - y1="325" - x2="129" - y2="325" - id="linearGradient4699" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="80" - y1="287" - x2="130" - y2="287" - id="linearGradient4708" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="15" - y1="233" - x2="130" - y2="233" - id="linearGradient4716" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="15" - y1="150" - x2="130" - y2="150" - id="linearGradient4724" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="20" - y1="92" - x2="125" - y2="92" - id="linearGradient4732" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="43" - y1="51" - x2="93" - y2="51" - id="linearGradient4740" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="80" - y1="436" - x2="129" - y2="436" - id="linearGradient2502" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient3172" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - id="linearGradient3166"> - <stop - id="stop3168" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3170" - style="stop-color:#feb00a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient2711" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.67,0,0,0.67,80.04495,411.22166)" /> - <linearGradient - x1="80" - y1="436" - x2="129" - y2="436" - id="linearGradient3490" - xlink:href="#linearGradient3789" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-62.75315,0)" /> - </defs> - <path - d="M 0.5,0.5 L 0.5,486.5 L 3.5,493 L 8.5,497 L 15,499.5 L 129,499.5 L 136,497 L 142,492 L 144.5,484 L 144.5,0.5 L 0.5,0.5 z" - id="path17" - style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-linejoin:miter;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="4" - y="-29" - transform="scale(1,-1)" - id="rect19" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="4" - y="-28" - transform="scale(1,-1)" - id="rect21" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1px;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="4" - y="-473" - transform="scale(1,-1)" - id="rect23" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="4" - y="-471.5" - transform="scale(1,-1)" - id="rect25" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 79.5,438.375 C 79.5,442.86231 75.750385,446.5 71.125,446.5 C 66.499615,446.5 62.75,442.86231 62.75,438.375 C 62.75,433.88769 66.499615,430.25 71.125,430.25 C 75.750385,430.25 79.5,433.88769 79.5,438.375 L 79.5,438.375 z" - transform="translate(1.375,47.250977)" - id="path27" - style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1px;stroke-opacity:1" /> - <text - id="text29" - style="font-size:12px;font-weight:bold;font-family:Bitstream Vera Sans"> - <tspan - x="68" - y="490" - id="tspan31" - style="font-size:12px;font-weight:bold;fill:#ffffff">X</tspan> - </text> - <text - id="text33" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="72.5" - y="21.5" - id="tspan35" - style="font-size:18px">Programmfluss</tspan> - </text> - <rect - width="137.5" - height="0.14" - x="4" - y="358" - id="rect37" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="4" - y="359" - id="rect39" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1px;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="4" - y="360" - id="rect41" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 90,40.3 L 101,40.3 L 101,44.3 L 98.4,44.3 L 98.4,42.3 L 91.4,42.3" - id="path43" - style="fill:#c18516;fill-opacity:1;stroke:#966711;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 90,58.7 L 101,58.7 L 101,54.7 L 98.4,54.7 L 98.4,56.7 L 91.4,56.7" - id="path45" - style="fill:#c18516;fill-opacity:1;stroke:#966711;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 75.416813,36.999284 C 86.084013,36.999284 86.084013,36.999284 86.084013,36.999284 C 86.084013,36.999284 88.838683,38.657069 89.750863,39.666084 C 90.682558,40.696685 92.084313,43.666284 92.084313,43.666284 L 92.084313,56.333584 C 92.084313,56.333584 90.606206,58.796143 89.750863,59.667084 C 88.797775,60.637552 86.084013,62.333884 86.084013,62.333884 L 74.750113,62.333884 L 74.750113,62.333884 L 74.750113,65.000684 L 61.416113,65.000684 L 61.416113,62.333884 L 50.082213,62.333884 C 50.082213,62.333884 47.368451,60.637552 46.415363,59.667084 C 45.56002,58.796143 44.081913,56.333584 44.081913,56.333584 L 44.081913,43.666284 C 44.081913,43.666284 45.483669,40.696685 46.415363,39.666084 C 47.327543,38.657069 50.082213,36.999284 50.082213,36.999284 L 60.749413,36.999284 L 60.749413,40.332784 L 75.416813,40.332784 L 75.416813,36.999284 z" - id="path47" - style="fill:url(#linearGradient4740);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> - <text - id="text49" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="67" - y="54" - id="tspan51" - style="font-size:10.5px">warte</tspan> - </text> - <path - d="M 52.50651,77.818218 C 63.17371,77.818218 63.236319,77.818218 63.236319,77.818218 C 63.236319,77.818218 65.173229,78.495457 65.838818,79.045014 C 66.44769,79.547741 67.391349,81.170331 67.391349,81.170331 L 123.84341,81.485068 L 123.891,89.240796 L 121.55099,89.2381 C 121.55099,89.2381 120.29757,87.789652 119.64925,87.294528 C 118.9423,86.754631 117.0588,85.851826 117.0588,85.851826 L 105.88312,86.028865 L 105.85182,89.211131 L 93.048297,89.262953 L 92.954386,85.746068 L 79.649998,85.985716 C 79.649998,85.985716 77.028777,87.559278 76.112597,88.479284 C 75.129121,89.466868 73.451719,92.287639 73.451719,92.287639 L 73.367112,105.89746 L 27.52283,105.95509 C 27.52283,105.95509 24.391708,104.59925 23.310266,103.57044 C 22.452508,102.75442 21.109001,100.23897 21.109001,100.23897 L 21.17161,84.485218 C 21.17161,84.485218 22.573366,81.515619 23.50506,80.485018 C 24.41724,79.476003 27.17191,77.818218 27.17191,77.818218 L 37.83911,77.818218 L 37.83911,81.151718 L 52.50651,81.151718 L 52.50651,77.818218 z" - id="path53" - style="fill:url(#linearGradient4732);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> - <text - style="font-size:11px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="47" - y="93" - id="tspan57" - style="font-size:10.5px">fortlau-</tspan> - </text> - <text - style="font-size:11px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="47" - y="103" - id="tspan57" - style="font-size:10.5px">fend</tspan> - </text> - <path - d="M 47.49875,118.77264 C 58.16595,118.77264 58.291168,118.77264 58.291168,118.77264 C 58.291168,118.77264 60.228077,119.31441 60.893666,119.86396 C 61.502538,120.36669 62.547725,121.70003 62.547725,121.70003 L 80.83375,121.90308 L 80.83375,125.43964 L 77.845874,125.43964 L 77.676031,123.43954 L 72.16665,123.43954 L 72.16665,138.77364 L 77.707364,138.77364 L 77.74058,136.77354 L 80.83375,136.77354 L 80.83375,145.44064 L 128.83615,145.44064 L 128.83615,153.44104 L 125.2357,153.38351 C 125.2357,153.38351 124.38839,151.78404 123.74008,151.28892 C 123.03313,150.74902 121.50245,150.10754 121.50245,150.10754 L 110.16855,150.10754 L 110.16855,153.44104 L 96.83455,153.44104 L 96.83455,150.10754 L 84.16725,150.10754 C 84.16725,150.10754 81.729429,151.67768 80.914125,152.47367 C 79.925757,153.43864 78.16695,155.67286 78.16695,155.67286 L 78.16695,172.10864 L 65.635735,172.04467 C 65.635735,172.04467 64.327685,175.04114 63.35715,176.01146 C 62.402334,176.96607 59.454117,178.10894 59.454117,178.10894 L 46.83205,178.10894 L 46.83205,180.77574 L 34.16475,180.77574 L 34.16475,178.10894 L 22.780735,178.10894 C 22.780735,178.10894 19.649613,176.83094 18.568171,175.80212 C 17.710413,174.98611 16.16385,172.47065 16.16385,172.47065 L 16.16385,125.30417 C 16.16385,125.30417 17.628215,122.33457 18.559909,121.30397 C 19.472089,120.29495 22.226759,118.77264 22.226759,118.77264 L 32.83135,118.77264 L 32.83135,122.10614 L 47.49875,122.10614 L 47.49875,118.77264 z" - id="path59" - style="fill:url(#linearGradient4724);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> - <text - id="text61" - style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="44" - y="133" - id="tspan63" - style="font-size:10.5px">wieder-</tspan> - </text> - <text - id="text61" - style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="44" - y="144" - id="tspan63" - style="font-size:10.5px">hole</tspan> - </text> - <path - d="M 47.49875,193.59327 C 58.16595,193.59327 58.291168,193.59327 58.291168,193.59327 C 58.291168,193.59327 60.228077,194.13504 60.893666,194.68459 C 61.502538,195.18732 62.446197,196.92677 62.446197,196.92677 L 88.16745,196.92677 L 88.16745,199.83541 C 88.16745,199.83541 79.457707,200.90587 76.322955,202.6477 C 73.623788,204.1475 69.9625,206.54556 68.741575,209.31806 C 67.910373,211.20556 68.002913,214.32311 68.876317,216.19147 C 69.992727,218.57965 73.182145,220.71515 75.506966,221.95813 C 78.856423,223.74893 88.16745,225.28812 88.16745,225.28812 L 88.16745,229.59507 L 124.23283,229.59507 L 127.00542,231.82614 L 128.83615,234.75002 L 128.83615,244.92917 L 125.64182,244.92917 C 125.64182,244.92917 124.79451,243.3297 124.14619,242.83458 C 123.43924,242.29468 121.50245,241.59567 121.50245,241.59567 L 110.16855,241.59567 L 110.16855,244.92917 L 96.83455,244.92917 L 96.83455,241.59567 L 84.16725,241.59567 C 84.16725,241.59567 81.323318,243.12181 80.508014,243.91781 C 79.519645,244.88277 78.16695,247.82769 78.16695,247.82769 L 78.16695,262.93007 L 65.635735,262.8661 C 65.635735,262.8661 64.327685,265.86257 63.35715,266.83289 C 62.402334,267.7875 59.454117,269.07371 59.454117,269.07371 L 46.83205,268.93037 L 46.83205,272.26387 L 34.16475,272.26387 L 34.16475,268.93037 L 22.780735,268.93037 C 22.780735,268.93037 19.649613,267.65237 18.568171,266.62355 C 17.710413,265.80754 16.16385,263.29208 16.16385,263.29208 L 16.16385,200.1248 C 16.16385,200.1248 17.628215,197.1552 18.559909,196.1246 C 19.472089,195.11558 22.226759,193.59327 22.226759,193.59327 L 32.83135,193.59327 L 32.83135,196.92677 L 47.49875,196.92677 L 47.49875,193.59327 z" - id="path65" - style="fill:url(#linearGradient4716);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> - <text - id="text67" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="39" - y="212" - id="tspan69" - style="font-size:11px">wenn</tspan> - </text> - <text - id="text71" - style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="103" - y="238.5" - id="tspan73" - style="font-size:9px">dann</tspan> - </text> - <path - d="M 112.16865,271.51111 C 122.83585,271.51111 122.83585,271.51111 122.83585,271.51111 C 122.83585,271.51111 125.59052,273.16889 126.5027,274.17791 C 127.43439,275.20851 128.83615,278.17811 128.83615,278.17811 L 128.83615,290.17871 L 105.1683,302.84601 C 105.1683,302.84601 80.83375,290.17871 80.83375,290.17871 L 80.83375,278.17811 C 80.83375,278.17811 82.235506,275.20851 83.1672,274.17791 C 84.07938,273.16889 86.83405,271.51111 86.83405,271.51111 L 97.50125,271.51111 L 97.50125,274.84461 L 112.16865,274.84461 L 112.16865,271.51111 z" - id="path75" - style="fill:url(#linearGradient4708);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> - <text - id="text77" - style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="105" - y="283" - id="tspan79" - style="font-size:10px">stop</tspan> - </text> - <text - id="text81" - style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="105" - y="294" - id="tspan83" - style="font-size:10px">stack</tspan> - </text> - <path - d="M 36.940888,299.20373 C 44.052711,299.20373 44.136193,299.20373 44.136193,299.20373 C 44.136193,299.20373 45.427531,299.56492 45.871279,299.93131 C 46.277214,300.26648 46.906352,301.42617 46.906352,301.42617 L 64.054711,301.42617 L 64.054711,303.36536 C 64.054711,303.36536 58.247925,304.07904 56.157986,305.24032 C 54.358452,306.24023 51.917471,307.83902 51.10348,309.68744 C 50.549318,310.94584 50.611014,313.02432 51.193312,314.26995 C 51.937623,315.86215 54.064008,317.28588 55.613966,318.11458 C 57.847049,319.30851 64.054711,320.33468 64.054711,320.33468 L 64.054711,323.20613 L 125.93746,323.20613 L 127.78595,324.62589 L 128.95009,326.57524 L 128.95009,333.42937 L 126.87683,333.42937 C 126.87683,333.42937 126.31193,332.29532 125.8797,331.96522 C 125.40838,331.60527 124.11712,331.20693 124.11712,331.20693 L 116.5044,331.20693 L 116.5044,333.42937 L 108.05911,333.42937 L 108.05911,331.20693 L 99.603951,331.20693 C 99.603951,331.20693 97.505568,331.91803 96.848529,332.55436 C 96.068482,333.30981 96.00968,333.27413 95.24339,334.62327 L 95.011478,345.61026 L 90.279556,345.43424 L 90.279556,334.30933 C 90.279556,334.30933 89.296987,333.10246 88.853018,332.67916 C 88.350421,332.19995 86.969296,331.20693 86.969296,331.20693 L 78.722845,331.20693 L 78.722845,333.42937 L 70.277556,333.42937 L 70.277556,331.20693 L 61.387778,331.20693 C 61.387778,331.20693 59.491728,332.22441 58.948165,332.7551 C 58.289219,333.39844 57.387378,335.36182 57.387378,335.36182 L 57.387378,345.43057 L 49.032817,345.38793 C 49.032817,345.38793 48.160739,347.38567 47.513683,348.03259 C 46.877108,348.66902 44.911532,349.52654 44.911532,349.52654 L 36.496399,349.43097 L 36.496399,351.65342 L 28.05111,351.65342 L 28.05111,349.43097 L 20.461387,349.43097 C 20.461387,349.43097 18.373868,348.57893 17.652871,347.89302 C 17.081003,347.34898 16.04991,345.67193 16.04991,345.67193 L 16.04991,303.5583 C 16.04991,303.5583 17.026202,301.57847 17.647362,300.89136 C 18.255513,300.21865 20.092052,299.20373 20.092052,299.20373 L 27.162132,299.20373 L 27.162132,301.42617 L 36.940888,301.42617 L 36.940888,299.20373 z" - id="path85" - style="fill:url(#linearGradient4699);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> - <text - id="text87" - style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="32" - y="314" - id="tspan89" - style="font-size:11px">wenn</tspan> - </text> - <text - id="text91" - style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="74" - y="329" - id="tspan93" - style="font-size:6px">dann</tspan> - </text> - <text - id="text95" - style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="111" - y="329" - id="tspan97" - style="font-size:6px">sonst</tspan> - </text> - <path - d="M 49.8322,372.80906 C 60.4994,372.80906 59.49935,372.80906 59.49935,372.80906 C 59.49935,372.80906 61.567081,373.4166 62.232671,373.96615 C 62.841543,374.46888 63.8329,376.14256 63.8329,376.14256 L 67.8331,376.14256 L 67.8331,366.80876 L 127.1694,366.80876 L 127.1694,374.14246 L 124.83595,374.14246 C 124.83595,374.14246 123.50523,372.7019 122.8201,372.15446 C 122.01247,371.50913 119.8357,370.80896 119.8357,370.80896 L 109.1685,370.80896 L 109.1685,374.14246 L 96.5012,374.14246 L 96.5012,370.80896 L 83.8339,370.80896 C 83.8339,370.80896 80.63569,372.47259 79.813801,373.30588 C 78.826981,374.30638 77.1669,377.47596 77.1669,377.47596 L 77.1669,397.47696 L 24.4976,397.47696 C 24.4976,397.47696 21.021359,396.46106 19.973726,395.53967 C 18.833507,394.53684 17.8306,391.47666 17.8306,391.47666 L 17.8306,378.50052 C 17.8306,378.50052 19.191494,375.74876 19.968592,374.98808 C 20.940621,374.03658 23.8309,372.80906 23.8309,372.80906 L 34.4981,372.80906 L 34.4981,376.14256 L 49.8322,376.14256 L 49.8322,372.80906 z" - id="path99" - style="fill:url(#linearGradient4691);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 49.4155,411.64166 C 60.0827,411.64166 60.0827,411.64166 60.0827,411.64166 C 60.0827,411.64166 62.83737,413.29944 63.74955,414.30846 C 64.68124,415.33906 66.083,418.30866 66.083,418.30866 L 66.083,450.97696 C 66.083,450.97696 64.60489,453.43952 63.74955,454.31046 C 62.79646,455.28093 60.0827,456.97726 60.0827,456.97726 L 48.7488,456.97726 L 48.7488,456.97726 L 48.7488,459.64406 L 35.4148,459.64406 L 35.4148,456.97726 L 24.0809,456.97726 C 24.0809,456.97726 21.367138,455.28093 20.41405,454.31046 C 19.558707,453.43952 18.0806,450.97696 18.0806,450.97696 L 18.0806,418.30866 C 18.0806,418.30866 19.482356,415.33906 20.41405,414.30846 C 21.32623,413.29944 24.0809,411.64166 24.0809,411.64166 L 34.7481,411.64166 L 34.7481,414.97516 L 49.4155,414.97516 L 49.4155,411.64166 z" - id="path109" - style="fill:url(#linearGradient3490);fill-opacity:1;stroke:#a97513;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 112.20495,411.89166 C 122.92495,411.89166 122.92495,411.89166 122.92495,411.89166 C 122.92495,411.89166 125.69325,413.55765 126.60995,414.57166 C 127.54626,415.60736 128.95495,418.59166 128.95495,418.59166 L 128.95495,431.32166 C 128.95495,431.32166 127.46953,433.79641 126.60995,434.67166 C 125.65214,435.64693 122.92495,437.35166 122.92495,437.35166 L 111.53495,437.35166 L 111.53495,437.35166 L 111.53495,440.03166 L 98.13495,440.03166 L 98.13495,437.35166 L 86.74495,437.35166 C 86.74495,437.35166 84.017756,435.64693 83.05995,434.67166 C 82.200373,433.79641 80.71495,431.32166 80.71495,431.32166 L 80.71495,418.59166 C 80.71495,418.59166 82.123644,415.60736 83.05995,414.57166 C 83.976645,413.55765 86.74495,411.89166 86.74495,411.89166 L 97.46495,411.89166 L 97.46495,415.24166 L 112.20495,415.24166 L 112.20495,411.89166 z" - id="path14" - style="fill:url(#linearGradient2711);fill-opacity:1;stroke:#a97513;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - width="11.94208" - height="9.4202003" - x="98.863907" - y="424.68732" - id="rect2483" - style="fill:#666666;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" /> - <path - d="M 101.49433,424.68732 L 101.49433,422.25053 C 101.49433,420.44689 102.95493,418.9883 104.75589,418.9883 C 106.55685,418.9883 108.01678,420.44957 108.01678,422.25053 L 108.01678,424.68732" - id="path2485" - style="fill:none;stroke:#666666;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" /> - </svg> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="145" + height="500" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3789"> + <stop + id="stop3791" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3793" + style="stop-color:#feb00a;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="80" + y1="436" + x2="129" + y2="436" + id="linearGradient4683" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="17" + y1="382" + x2="128" + y2="382" + id="linearGradient4691" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="16" + y1="325" + x2="129" + y2="325" + id="linearGradient4699" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="80" + y1="287" + x2="130" + y2="287" + id="linearGradient4708" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="15" + y1="233" + x2="130" + y2="233" + id="linearGradient4716" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="15" + y1="150" + x2="130" + y2="150" + id="linearGradient4724" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="20" + y1="92" + x2="125" + y2="92" + id="linearGradient4732" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="51" + x2="93" + y2="51" + id="linearGradient4740" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="80" + y1="436" + x2="129" + y2="436" + id="linearGradient2502" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#feb00a;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2711" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.67,0,0,0.67,80.04495,411.22166)" /> + <linearGradient + x1="80" + y1="436" + x2="129" + y2="436" + id="linearGradient3490" + xlink:href="#linearGradient3789" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-62.75315,0)" /> + </defs> + <path + d="M 0.5,0.5 L 0.5,486.5 L 3.5,493 L 8.5,497 L 15,499.5 L 129,499.5 L 136,497 L 142,492 L 144.5,484 L 144.5,0.5 L 0.5,0.5 z" + id="path17" + style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-linejoin:miter;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="4" + y="-29" + transform="scale(1,-1)" + id="rect19" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="4" + y="-28" + transform="scale(1,-1)" + id="rect21" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1px;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="4" + y="-473" + transform="scale(1,-1)" + id="rect23" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="4" + y="-471.5" + transform="scale(1,-1)" + id="rect25" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 79.5,438.375 C 79.5,442.86231 75.750385,446.5 71.125,446.5 C 66.499615,446.5 62.75,442.86231 62.75,438.375 C 62.75,433.88769 66.499615,430.25 71.125,430.25 C 75.750385,430.25 79.5,433.88769 79.5,438.375 L 79.5,438.375 z" + transform="translate(1.375,47.250977)" + id="path27" + style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1px;stroke-opacity:1" /> + <text + id="text29" + style="font-size:12px;font-weight:bold;font-family:Bitstream Vera Sans"> + <tspan + x="68" + y="490" + id="tspan31" + style="font-size:12px;font-weight:bold;fill:#ffffff">X</tspan> + </text> + <text + id="text33" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="72.5" + y="21.5" + id="tspan35" + style="font-size:18px">Programmfluss</tspan> + </text> + <rect + width="137.5" + height="0.14" + x="4" + y="358" + id="rect37" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="4" + y="359" + id="rect39" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1px;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="4" + y="360" + id="rect41" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 90,40.3 L 101,40.3 L 101,44.3 L 98.4,44.3 L 98.4,42.3 L 91.4,42.3" + id="path43" + style="fill:#c18516;fill-opacity:1;stroke:#966711;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 90,58.7 L 101,58.7 L 101,54.7 L 98.4,54.7 L 98.4,56.7 L 91.4,56.7" + id="path45" + style="fill:#c18516;fill-opacity:1;stroke:#966711;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 75.416813,36.999284 C 86.084013,36.999284 86.084013,36.999284 86.084013,36.999284 C 86.084013,36.999284 88.838683,38.657069 89.750863,39.666084 C 90.682558,40.696685 92.084313,43.666284 92.084313,43.666284 L 92.084313,56.333584 C 92.084313,56.333584 90.606206,58.796143 89.750863,59.667084 C 88.797775,60.637552 86.084013,62.333884 86.084013,62.333884 L 74.750113,62.333884 L 74.750113,62.333884 L 74.750113,65.000684 L 61.416113,65.000684 L 61.416113,62.333884 L 50.082213,62.333884 C 50.082213,62.333884 47.368451,60.637552 46.415363,59.667084 C 45.56002,58.796143 44.081913,56.333584 44.081913,56.333584 L 44.081913,43.666284 C 44.081913,43.666284 45.483669,40.696685 46.415363,39.666084 C 47.327543,38.657069 50.082213,36.999284 50.082213,36.999284 L 60.749413,36.999284 L 60.749413,40.332784 L 75.416813,40.332784 L 75.416813,36.999284 z" + id="path47" + style="fill:url(#linearGradient4740);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> + <text + id="text49" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="67" + y="54" + id="tspan51" + style="font-size:10.5px">warte</tspan> + </text> + <path + d="M 52.50651,77.818218 C 63.17371,77.818218 63.236319,77.818218 63.236319,77.818218 C 63.236319,77.818218 65.173229,78.495457 65.838818,79.045014 C 66.44769,79.547741 67.391349,81.170331 67.391349,81.170331 L 123.84341,81.485068 L 123.891,89.240796 L 121.55099,89.2381 C 121.55099,89.2381 120.29757,87.789652 119.64925,87.294528 C 118.9423,86.754631 117.0588,85.851826 117.0588,85.851826 L 105.88312,86.028865 L 105.85182,89.211131 L 93.048297,89.262953 L 92.954386,85.746068 L 79.649998,85.985716 C 79.649998,85.985716 77.028777,87.559278 76.112597,88.479284 C 75.129121,89.466868 73.451719,92.287639 73.451719,92.287639 L 73.367112,105.89746 L 27.52283,105.95509 C 27.52283,105.95509 24.391708,104.59925 23.310266,103.57044 C 22.452508,102.75442 21.109001,100.23897 21.109001,100.23897 L 21.17161,84.485218 C 21.17161,84.485218 22.573366,81.515619 23.50506,80.485018 C 24.41724,79.476003 27.17191,77.818218 27.17191,77.818218 L 37.83911,77.818218 L 37.83911,81.151718 L 52.50651,81.151718 L 52.50651,77.818218 z" + id="path53" + style="fill:url(#linearGradient4732);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> + <text + id="text41" + style="font-size:11px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="47" + y="93" + id="tspan57" + style="font-size:10.5px">fortlau-</tspan> + </text> + <text + id="text44" + style="font-size:11px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="47" + y="103" + id="tspan46" + style="font-size:10.5px">fend</tspan> + </text> + <path + d="M 47.49875,118.77264 C 58.16595,118.77264 58.291168,118.77264 58.291168,118.77264 C 58.291168,118.77264 60.228077,119.31441 60.893666,119.86396 C 61.502538,120.36669 62.547725,121.70003 62.547725,121.70003 L 80.83375,121.90308 L 80.83375,125.43964 L 77.845874,125.43964 L 77.676031,123.43954 L 72.16665,123.43954 L 72.16665,138.77364 L 77.707364,138.77364 L 77.74058,136.77354 L 80.83375,136.77354 L 80.83375,145.44064 L 128.83615,145.44064 L 128.83615,153.44104 L 125.2357,153.38351 C 125.2357,153.38351 124.38839,151.78404 123.74008,151.28892 C 123.03313,150.74902 121.50245,150.10754 121.50245,150.10754 L 110.16855,150.10754 L 110.16855,153.44104 L 96.83455,153.44104 L 96.83455,150.10754 L 84.16725,150.10754 C 84.16725,150.10754 81.729429,151.67768 80.914125,152.47367 C 79.925757,153.43864 78.16695,155.67286 78.16695,155.67286 L 78.16695,172.10864 L 65.635735,172.04467 C 65.635735,172.04467 64.327685,175.04114 63.35715,176.01146 C 62.402334,176.96607 59.454117,178.10894 59.454117,178.10894 L 46.83205,178.10894 L 46.83205,180.77574 L 34.16475,180.77574 L 34.16475,178.10894 L 22.780735,178.10894 C 22.780735,178.10894 19.649613,176.83094 18.568171,175.80212 C 17.710413,174.98611 16.16385,172.47065 16.16385,172.47065 L 16.16385,125.30417 C 16.16385,125.30417 17.628215,122.33457 18.559909,121.30397 C 19.472089,120.29495 22.226759,118.77264 22.226759,118.77264 L 32.83135,118.77264 L 32.83135,122.10614 L 47.49875,122.10614 L 47.49875,118.77264 z" + id="path59" + style="fill:url(#linearGradient4724);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> + <text + id="text61" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="44" + y="133" + id="tspan63" + style="font-size:10.5px">wieder-</tspan> + </text> + <text + id="text51" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="44" + y="144" + id="tspan53" + style="font-size:10.5px">hole</tspan> + </text> + <path + d="M 47.49875,193.59327 C 58.16595,193.59327 58.291168,193.59327 58.291168,193.59327 C 58.291168,193.59327 60.228077,194.13504 60.893666,194.68459 C 61.502538,195.18732 62.446197,196.92677 62.446197,196.92677 L 88.16745,196.92677 L 88.16745,199.83541 C 88.16745,199.83541 79.457707,200.90587 76.322955,202.6477 C 73.623788,204.1475 69.9625,206.54556 68.741575,209.31806 C 67.910373,211.20556 68.002913,214.32311 68.876317,216.19147 C 69.992727,218.57965 73.182145,220.71515 75.506966,221.95813 C 78.856423,223.74893 88.16745,225.28812 88.16745,225.28812 L 88.16745,229.59507 L 124.23283,229.59507 L 127.00542,231.82614 L 128.83615,234.75002 L 128.83615,244.92917 L 125.64182,244.92917 C 125.64182,244.92917 124.79451,243.3297 124.14619,242.83458 C 123.43924,242.29468 121.50245,241.59567 121.50245,241.59567 L 110.16855,241.59567 L 110.16855,244.92917 L 96.83455,244.92917 L 96.83455,241.59567 L 84.16725,241.59567 C 84.16725,241.59567 81.323318,243.12181 80.508014,243.91781 C 79.519645,244.88277 78.16695,247.82769 78.16695,247.82769 L 78.16695,262.93007 L 65.635735,262.8661 C 65.635735,262.8661 64.327685,265.86257 63.35715,266.83289 C 62.402334,267.7875 59.454117,269.07371 59.454117,269.07371 L 46.83205,268.93037 L 46.83205,272.26387 L 34.16475,272.26387 L 34.16475,268.93037 L 22.780735,268.93037 C 22.780735,268.93037 19.649613,267.65237 18.568171,266.62355 C 17.710413,265.80754 16.16385,263.29208 16.16385,263.29208 L 16.16385,200.1248 C 16.16385,200.1248 17.628215,197.1552 18.559909,196.1246 C 19.472089,195.11558 22.226759,193.59327 22.226759,193.59327 L 32.83135,193.59327 L 32.83135,196.92677 L 47.49875,196.92677 L 47.49875,193.59327 z" + id="path65" + style="fill:url(#linearGradient4716);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> + <text + id="text67" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="39" + y="212" + id="tspan69" + style="font-size:11px">wenn</tspan> + </text> + <text + id="text71" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="103" + y="238.5" + id="tspan73" + style="font-size:9px">dann</tspan> + </text> + <path + d="M 112.16865,271.51111 C 122.83585,271.51111 122.83585,271.51111 122.83585,271.51111 C 122.83585,271.51111 125.59052,273.16889 126.5027,274.17791 C 127.43439,275.20851 128.83615,278.17811 128.83615,278.17811 L 128.83615,290.17871 L 105.1683,302.84601 C 105.1683,302.84601 80.83375,290.17871 80.83375,290.17871 L 80.83375,278.17811 C 80.83375,278.17811 82.235506,275.20851 83.1672,274.17791 C 84.07938,273.16889 86.83405,271.51111 86.83405,271.51111 L 97.50125,271.51111 L 97.50125,274.84461 L 112.16865,274.84461 L 112.16865,271.51111 z" + id="path75" + style="fill:url(#linearGradient4708);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> + <text + id="text77" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="105" + y="283" + id="tspan79" + style="font-size:10px">Stop-</tspan> + </text> + <text + id="text81" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="105" + y="294" + id="tspan83" + style="font-size:10px">Aktion</tspan> + </text> + <path + d="M 36.940888,299.20373 C 44.052711,299.20373 44.136193,299.20373 44.136193,299.20373 C 44.136193,299.20373 45.427531,299.56492 45.871279,299.93131 C 46.277214,300.26648 46.906352,301.42617 46.906352,301.42617 L 64.054711,301.42617 L 64.054711,303.36536 C 64.054711,303.36536 58.247925,304.07904 56.157986,305.24032 C 54.358452,306.24023 51.917471,307.83902 51.10348,309.68744 C 50.549318,310.94584 50.611014,313.02432 51.193312,314.26995 C 51.937623,315.86215 54.064008,317.28588 55.613966,318.11458 C 57.847049,319.30851 64.054711,320.33468 64.054711,320.33468 L 64.054711,323.20613 L 125.93746,323.20613 L 127.78595,324.62589 L 128.95009,326.57524 L 128.95009,333.42937 L 126.87683,333.42937 C 126.87683,333.42937 126.31193,332.29532 125.8797,331.96522 C 125.40838,331.60527 124.11712,331.20693 124.11712,331.20693 L 116.5044,331.20693 L 116.5044,333.42937 L 108.05911,333.42937 L 108.05911,331.20693 L 99.603951,331.20693 C 99.603951,331.20693 97.505568,331.91803 96.848529,332.55436 C 96.068482,333.30981 96.00968,333.27413 95.24339,334.62327 L 95.011478,345.61026 L 90.279556,345.43424 L 90.279556,334.30933 C 90.279556,334.30933 89.296987,333.10246 88.853018,332.67916 C 88.350421,332.19995 86.969296,331.20693 86.969296,331.20693 L 78.722845,331.20693 L 78.722845,333.42937 L 70.277556,333.42937 L 70.277556,331.20693 L 61.387778,331.20693 C 61.387778,331.20693 59.491728,332.22441 58.948165,332.7551 C 58.289219,333.39844 57.387378,335.36182 57.387378,335.36182 L 57.387378,345.43057 L 49.032817,345.38793 C 49.032817,345.38793 48.160739,347.38567 47.513683,348.03259 C 46.877108,348.66902 44.911532,349.52654 44.911532,349.52654 L 36.496399,349.43097 L 36.496399,351.65342 L 28.05111,351.65342 L 28.05111,349.43097 L 20.461387,349.43097 C 20.461387,349.43097 18.373868,348.57893 17.652871,347.89302 C 17.081003,347.34898 16.04991,345.67193 16.04991,345.67193 L 16.04991,303.5583 C 16.04991,303.5583 17.026202,301.57847 17.647362,300.89136 C 18.255513,300.21865 20.092052,299.20373 20.092052,299.20373 L 27.162132,299.20373 L 27.162132,301.42617 L 36.940888,301.42617 L 36.940888,299.20373 z" + id="path85" + style="fill:url(#linearGradient4699);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> + <text + id="text87" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="32" + y="314" + id="tspan89" + style="font-size:11px">wenn</tspan> + </text> + <text + id="text91" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="74" + y="329" + id="tspan93" + style="font-size:6px">dann</tspan> + </text> + <text + id="text95" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="111" + y="329" + id="tspan97" + style="font-size:6px">sonst</tspan> + </text> + <path + d="M 49.8322,372.80906 C 60.4994,372.80906 59.49935,372.80906 59.49935,372.80906 C 59.49935,372.80906 61.567081,373.4166 62.232671,373.96615 C 62.841543,374.46888 63.8329,376.14256 63.8329,376.14256 L 67.8331,376.14256 L 67.8331,366.80876 L 127.1694,366.80876 L 127.1694,374.14246 L 124.83595,374.14246 C 124.83595,374.14246 123.50523,372.7019 122.8201,372.15446 C 122.01247,371.50913 119.8357,370.80896 119.8357,370.80896 L 109.1685,370.80896 L 109.1685,374.14246 L 96.5012,374.14246 L 96.5012,370.80896 L 83.8339,370.80896 C 83.8339,370.80896 80.63569,372.47259 79.813801,373.30588 C 78.826981,374.30638 77.1669,377.47596 77.1669,377.47596 L 77.1669,397.47696 L 24.4976,397.47696 C 24.4976,397.47696 21.021359,396.46106 19.973726,395.53967 C 18.833507,394.53684 17.8306,391.47666 17.8306,391.47666 L 17.8306,378.50052 C 17.8306,378.50052 19.191494,375.74876 19.968592,374.98808 C 20.940621,374.03658 23.8309,372.80906 23.8309,372.80906 L 34.4981,372.80906 L 34.4981,376.14256 L 49.8322,376.14256 L 49.8322,372.80906 z" + id="path99" + style="fill:url(#linearGradient4691);fill-opacity:1;stroke:#a97513;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 49.4155,411.64166 C 60.0827,411.64166 60.0827,411.64166 60.0827,411.64166 C 60.0827,411.64166 62.83737,413.29944 63.74955,414.30846 C 64.68124,415.33906 66.083,418.30866 66.083,418.30866 L 66.083,450.97696 C 66.083,450.97696 64.60489,453.43952 63.74955,454.31046 C 62.79646,455.28093 60.0827,456.97726 60.0827,456.97726 L 48.7488,456.97726 L 48.7488,456.97726 L 48.7488,459.64406 L 35.4148,459.64406 L 35.4148,456.97726 L 24.0809,456.97726 C 24.0809,456.97726 21.367138,455.28093 20.41405,454.31046 C 19.558707,453.43952 18.0806,450.97696 18.0806,450.97696 L 18.0806,418.30866 C 18.0806,418.30866 19.482356,415.33906 20.41405,414.30846 C 21.32623,413.29944 24.0809,411.64166 24.0809,411.64166 L 34.7481,411.64166 L 34.7481,414.97516 L 49.4155,414.97516 L 49.4155,411.64166 z" + id="path109" + style="fill:url(#linearGradient3490);fill-opacity:1;stroke:#a97513;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> +</svg> diff --git a/images/de/flow/flowmask.svg b/images/de/flow/flowmask.svg deleted file mode 100644 index ac29920..0000000 --- a/images/de/flow/flowmask.svg +++ /dev/null @@ -1,66 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="145" - height="500" - id="svg3662"> - <defs - id="defs3687" /> - <rect - width="143" - height="440" - x="1" - y="30" - id="rect3664" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" /> - <rect - width="145" - height="29" - x="0" - y="0" - id="rect3666" - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" /> - <path - d="M 0.5,470 L 0.5,486 L 3.5,493 L 8.5,497 L 15,499.5 L 129,499.5 L 136,497 L 142,492 L 145,484 L 145,470 L 0.5,470 z" - id="path3668" - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 75,37 C 85,37 85,37 85,37 C 85,37 88,39 89,40 C 90,41 91,44 91,44 L 91,57 C 91,57 90,59 89,60 C 88,61 85,63 85,63 L 74,63 L 74,63 L 74,65 L 61,65 L 61,63 L 49,63 C 49,63 47,61 46,60 C 45,59 43,57 43,57 L 43,44 C 43,44 45,41 46,40 C 47,39 49,37 49,37 L 60,37 L 60,41 L 75,41 L 75,37 z" - id="path3670" - style="fill:#101010;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 52,78 C 63,78 63,78 63,78 C 63,78 65,79 65,79 C 66,80 67,81 67,81 L 123,82 L 123,89 L 121,89 C 121,89 120,88 119,87 C 118,87 116,86 116,86 L 105,86 L 105,89 L 92,89 L 92,86 L 79,86 C 79,86 76,88 75,89 C 74,90 73,92 73,92 L 73,106 L 27,106 C 27,106 24,105 23,104 C 22,103 20,100 20,100 L 21,85 C 21,85 22,82 23,81 C 24,80 27,78 27,78 L 37,78 L 37,81 L 52,81 L 52,78 z" - id="path3672" - style="fill:#181818;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 47,119 C 58,119 58,119 58,119 C 58,119 60,120 60,120 C 61,121 62,122 62,122 L 80,122 L 80,126 L 77,126 L 77,124 L 72,124 L 72,139 L 77,139 L 77,137 L 80,137 L 80,146 L 128,146 L 128,154 L 125,154 C 125,154 124,152 123,151 C 122,151 121,150 121,150 L 110,150 L 110,154 L 96,154 L 96,150 L 84,150 C 84,150 81,152 80,153 C 79,154 78,156 78,156 L 78,172 L 65,172 C 65,172 64,175 63,176 C 62,177 59,178 59,178 L 46,178 L 46,181 L 34,181 L 34,178 L 22,178 C 22,178 19,177 18,176 C 17,175 16,173 16,173 L 16,125 C 16,125 17,123 18,121 C 19,120 22,119 22,119 L 32,119 L 32,122 L 47,122 L 47,119 z" - id="path3674" - style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 47,194 C 58,194 58,194 58,194 C 58,194 60,194 60,195 C 61,195 62,197 62,197 L 88,197 L 88,200 C 88,200 79,201 76,203 C 73,204 69,207 68,210 C 67,211 67,215 68,216 C 69,219 73,221 75,222 C 78,224 88,225 88,225 L 88,230 L 124,230 L 126,232 L 128,235 L 128,245 L 125,245 C 125,245 124,244 123,243 C 123,242 121,242 121,242 L 110,242 L 110,245 L 96,245 L 96,242 L 84,242 C 84,242 81,243 80,244 C 79,245 78,248 78,248 L 78,263 L 65,263 C 65,263 64,266 63,267 C 62,268 59,269 59,269 L 46,269 L 46,272 L 34,272 L 34,269 L 22,269 C 22,269 19,268 18,267 C 17,266 16,263 16,263 L 16,200 C 16,200 17,197 18,196 C 19,195 22,194 22,194 L 32,194 L 32,197 L 47,197 L 47,194 z" - id="path3676" - style="fill:#282828;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 112,272 C 122,272 122,272 122,272 C 122,272 125,273 126,274 C 127,275 128,278 128,278 L 128,290 L 105,303 C 105,303 80,290 80,290 L 80,278 C 80,278 82,275 83,274 C 83,273 86,272 86,272 L 97,272 L 97,275 L 112,275 L 112,272 z" - id="path3678" - style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 36,299 C 43,299 43,299 43,299 C 43,299 45,300 45,300 C 46,300 46,302 46,302 L 63,302 L 63,304 C 63,304 58,304 56,305 C 54,306 51,308 50,310 C 50,311 50,313 51,314 C 51,316 53,317 55,318 C 57,319 63,321 63,321 L 63,323 L 125,323 L 127,325 L 128,327 L 128,334 L 126,334 C 126,334 126,332 125,332 C 125,332 123,331 123,331 L 116,331 L 116,334 L 107,334 L 107,331 L 99,331 C 99,331 97,332 96,333 C 95,333 95,333 95,335 L 94,346 L 90,346 L 90,334 C 90,334 89,333 88,333 C 88,332 86,331 86,331 L 78,331 L 78,334 L 70,334 L 70,331 L 61,331 C 61,331 59,332 58,333 C 58,334 57,336 57,336 L 57,346 L 48,346 C 48,346 48,348 47,348 C 46,349 44,350 44,350 L 36,350 L 36,352 L 27,352 L 27,350 L 20,350 C 20,350 18,349 17,348 C 16,348 15,346 15,346 L 15,304 C 15,304 16,302 17,301 C 18,300 19,299 19,299 L 27,299 L 27,302 L 36,302 L 36,299 z" - id="path3680" - style="fill:#383838;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 49,373 C 60,373 59,373 59,373 C 59,373 61,374 62,374 C 62,375 63,376 63,376 L 67,376 L 67,367 L 127,367 L 127,374 L 124,374 C 124,374 123,373 122,372 C 121,372 119,371 119,371 L 109,371 L 109,374 L 96,374 L 96,371 L 83,371 C 83,371 80,373 79,373 C 78,374 77,378 77,378 L 77,398 L 24,398 C 24,398 20,397 19,396 C 18,395 17,392 17,392 L 17,379 C 17,379 19,376 19,375 C 20,374 23,373 23,373 L 34,373 L 34,376 L 49,376 L 49,373 z" - id="path3682" - style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 49,412 C 59,412 59,412 59,412 C 59,412 62,413 63,414 C 64,416 65,418 65,418 L 65,451 C 65,451 64,454 63,454 C 62,455 59,457 59,457 L 48,457 L 48,457 L 48,460 L 35,460 L 35,457 L 23,457 C 23,457 20,455 20,454 C 19,454 17,451 17,451 L 17,418 C 17,418 19,416 20,414 C 20,413 23,412 23,412 L 34,412 L 34,415 L 49,415 L 49,412 z" - id="path3684" - style="fill:#484848;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 112,412 C 122,412 122,412 122,412 C 122,412 125,414 126,415 C 127,416 128,419 128,419 L 128,432 C 128,432 127,434 126,435 C 125,436 122,438 122,438 L 111,438 L 111,438 L 111,440 L 98,440 L 98,438 L 86,438 C 86,438 84,436 83,435 C 82,434 80,432 80,432 L 80,419 C 80,419 82,416 83,415 C 84,414 86,412 86,412 L 97,412 L 97,416 L 112,416 L 112,412 z" - id="path3693" - style="fill:#505050;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> -</svg> diff --git a/images/de/flow/stopstack.svg b/images/de/flow/stopstack.svg index b75f506..2e64e62 100644 --- a/images/de/flow/stopstack.svg +++ b/images/de/flow/stopstack.svg @@ -34,8 +34,8 @@ sodipodi:role="line" x="37" y="17.5" - style="font-size:14px;text-anchor:middle">stop</tspan><tspan + style="font-size:14px;text-anchor:middle">Stop-</tspan><tspan x="37" y="35" - style="font-size:14px;text-anchor:middle">stack</tspan></text> + style="font-size:14px;text-anchor:middle">Aktion</tspan></text> </svg> diff --git a/images/de/myblocks/hat1.svg b/images/de/myblocks/hat1.svg index 9174e7c..0eda095 100644 --- a/images/de/myblocks/hat1.svg +++ b/images/de/myblocks/hat1.svg @@ -45,7 +45,7 @@ <tspan x="49" y="35" - style="font-size:16px">Stapel 1</tspan> + style="font-size:16px">Aktion 1</tspan> </text> </svg> -
\ No newline at end of file + diff --git a/images/de/myblocks/hat2.svg b/images/de/myblocks/hat2.svg index 5d01ee1..dcd8fc3 100644 --- a/images/de/myblocks/hat2.svg +++ b/images/de/myblocks/hat2.svg @@ -45,7 +45,7 @@ <tspan x="49" y="35" - style="font-size:16px">Stapel 2</tspan> + style="font-size:16px">Aktion 2</tspan> </text> </svg> -
\ No newline at end of file + diff --git a/images/de/myblocks/myblocksgroup.svg b/images/de/myblocks/myblocksgroup.svg index 44ef78f..6d903f8 100644 --- a/images/de/myblocks/myblocksgroup.svg +++ b/images/de/myblocks/myblocksgroup.svg @@ -361,7 +361,7 @@ x="37" y="96" id="tspan53" - style="font-size:11px">Stapel 1</tspan> + style="font-size:11px">Aktion 1</tspan> </text> <path d="M 113.81428,78.23757 C 124.48148,78.23757 124.48148,78.23757 124.48148,78.23757 C 124.48148,78.23757 127.23615,79.895355 128.14833,80.90437 C 129.08003,81.934971 130.48178,84.90457 130.48178,84.90457 L 130.48178,97.57187 C 130.48178,97.57187 129.00368,100.03443 128.14833,100.90537 C 127.19525,101.87584 124.48148,103.57217 124.48148,103.57217 L 113.14758,103.57217 L 113.14758,103.57217 L 113.14758,106.23897 L 99.813583,106.23897 L 99.813583,103.57217 L 88.479683,103.57217 C 88.479683,103.57217 85.765921,101.87584 84.812833,100.90537 C 83.95749,100.03443 82.479383,97.57187 82.479383,97.57187 L 82.479383,84.90457 C 82.479383,84.90457 83.881139,81.934971 84.812833,80.90437 C 85.725013,79.895355 88.479683,78.23757 88.479683,78.23757 L 99.146883,78.23757 L 99.146883,81.57107 L 113.81428,81.57107 L 113.81428,78.23757 z" @@ -374,7 +374,7 @@ x="107" y="94" id="tspan59" - style="font-size:11px">Stapel 1</tspan> + style="font-size:11px">Aktion 1</tspan> </text> <path d="M 69.731407,133.4991 L 69.731407,133.4991 L 43.730107,148.8332 L 43.730107,148.8332 L 43.730107,151.5 L 30.396107,151.5 L 30.396107,148.8332 C 30.396107,148.8332 4.3948068,133.4991 4.3948068,133.4991 C 4.3948068,133.4991 37.063107,115.4982 37.063107,115.4982 C 37.063107,115.4982 69.731407,133.4991 69.731407,133.4991 z" @@ -387,7 +387,7 @@ x="37" y="137" id="tspan65" - style="font-size:11px">Stapel 2</tspan> + style="font-size:11px">Aktion 2</tspan> </text> <path d="M 113.81428,119.4984 C 124.48148,119.4984 124.48148,119.4984 124.48148,119.4984 C 124.48148,119.4984 127.23615,121.15619 128.14833,122.1652 C 129.08003,123.1958 130.48178,126.1654 130.48178,126.1654 L 130.48178,138.8327 C 130.48178,138.8327 129.00368,141.29526 128.14833,142.1662 C 127.19525,143.13667 124.48148,144.833 124.48148,144.833 L 113.14758,144.833 L 113.14758,144.833 L 113.14758,147.4998 L 99.813583,147.4998 L 99.813583,144.833 L 88.479683,144.833 C 88.479683,144.833 85.765921,143.13667 84.812833,142.1662 C 83.95749,141.29526 82.479383,138.8327 82.479383,138.8327 L 82.479383,126.1654 C 82.479383,126.1654 83.881139,123.1958 84.812833,122.1652 C 85.725013,121.15619 88.479683,119.4984 88.479683,119.4984 L 99.146883,119.4984 L 99.146883,122.8319 L 113.81428,122.8319 L 113.81428,119.4984 z" @@ -400,7 +400,7 @@ x="107" y="137" id="tspan71" - style="font-size:11px">Stapel 2</tspan> + style="font-size:11px">Aktion 2</tspan> </text> <path d="M 72.25,169.40992 L 35.75,187.65992 L 67.25,203.90992 L 67.25,205.90992 L 77.25,205.90992 L 77.25,203.90992 L 109.25,187.65992 L 72.25,169.40992 z" diff --git a/images/de/myblocks/myblocksmask.svg b/images/de/myblocks/myblocksmask.svg deleted file mode 100644 index efadbaf..0000000 --- a/images/de/myblocks/myblocksmask.svg +++ /dev/null @@ -1,148 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="145" - height="500" - id="svg2"> - <defs - id="defs44" /> - <rect - width="143" - height="440" - x="1" - y="30" - id="rect4" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> - <rect - width="145" - height="29" - x="0" - y="0" - id="rect6" - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 0,470 L 0,486 L 3,493 L 8,497 L 15,499 L 129,499 L 136,497 L 142,492 L 145,484 L 145,470 L 0,470 z" - id="path8" - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 69.731407,92.73827 L 69.731407,92.73827 L 43.730107,108.07237 L 43.730107,108.07237 L 43.730107,110.73917 L 30.396107,110.73917 L 30.396107,108.07237 C 30.396107,108.07237 4.3948068,92.73827 4.3948068,92.73827 C 4.3948068,92.73827 37.063107,74.73737 37.063107,74.73737 C 37.063107,74.73737 69.731407,92.73827 69.731407,92.73827 z" - id="path49" - style="fill:#181818;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 113.81428,78.73757 C 124.48148,78.73757 124.48148,78.73757 124.48148,78.73757 C 124.48148,78.73757 127.23615,80.395355 128.14833,81.40437 C 129.08003,82.434971 130.48178,85.40457 130.48178,85.40457 L 130.48178,98.07187 C 130.48178,98.07187 129.00368,100.53443 128.14833,101.40537 C 127.19525,102.37584 124.48148,104.07217 124.48148,104.07217 L 113.14758,104.07217 L 113.14758,104.07217 L 113.14758,106.73897 L 99.813583,106.73897 L 99.813583,104.07217 L 88.479683,104.07217 C 88.479683,104.07217 85.765921,102.37584 84.812833,101.40537 C 83.95749,100.53443 82.479383,98.07187 82.479383,98.07187 L 82.479383,85.40457 C 82.479383,85.40457 83.881139,82.434971 84.812833,81.40437 C 85.725013,80.395355 88.479683,78.73757 88.479683,78.73757 L 99.146883,78.73757 L 99.146883,82.07107 L 113.81428,82.07107 L 113.81428,78.73757 z" - id="path55" - style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 69.731407,133.9991 L 69.731407,133.9991 L 43.730107,149.3332 L 43.730107,149.3332 L 43.730107,152 L 30.396107,152 L 30.396107,149.3332 C 30.396107,149.3332 4.3948068,133.9991 4.3948068,133.9991 C 4.3948068,133.9991 37.063107,115.9982 37.063107,115.9982 C 37.063107,115.9982 69.731407,133.9991 69.731407,133.9991 z" - id="path61" - style="fill:#282828;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 113.81428,119.9984 C 124.48148,119.9984 124.48148,119.9984 124.48148,119.9984 C 124.48148,119.9984 127.23615,121.65619 128.14833,122.6652 C 129.08003,123.6958 130.48178,126.6654 130.48178,126.6654 L 130.48178,139.3327 C 130.48178,139.3327 129.00368,141.79526 128.14833,142.6662 C 127.19525,143.63667 124.48148,145.333 124.48148,145.333 L 113.14758,145.333 L 113.14758,145.333 L 113.14758,147.9998 L 99.813583,147.9998 L 99.813583,145.333 L 88.479683,145.333 C 88.479683,145.333 85.765921,143.63667 84.812833,142.6662 C 83.95749,141.79526 82.479383,139.3327 82.479383,139.3327 L 82.479383,126.6654 C 82.479383,126.6654 83.881139,123.6958 84.812833,122.6652 C 85.725013,121.65619 88.479683,119.9984 88.479683,119.9984 L 99.146883,119.9984 L 99.146883,123.3319 L 113.81428,123.3319 L 113.81428,119.9984 z" - id="path67" - style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <g - transform="matrix(0.5,0,0,0.5,35,169.40992)" - id="g2737" - style="fill:#383838;fill-opacity:1"> - <path - d="M 74.5,1 L 1.5,37.5 L 64.5,70 L 64.5,74 L 84.5,74 L 84.5,70 L 148.5,37.5 L 74.5,1 z" - id="path6722" - style="fill:#383838;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.5,0,0,0.5,40,211.5)" - id="g2873" - style="fill:#404040;fill-opacity:1;stroke:none"> - <path - d="M 76,1 C 92,1 120,1 120,1 C 120,1 124.1318,3.4865526 125.5,5 C 126.89747,6.5458243 129,11 129,11 L 129,30 C 129,30 126.78295,33.693654 125.5,35 C 124.07044,36.455629 120,39 120,39 L 75,39 L 75,39 L 75,43 L 55,43 L 55,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 54,1 L 54,6 L 76,6 L 76,1 z" - id="path10" - style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.6667,0,0,0.6667,7.4928819,277.7771)" - id="g85"> - <path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - id="path87" - style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-opacity:1" /> - <path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - id="path89" - style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-opacity:1" /> - </g> - <path - d="M 39.494482,272.61017 C 50.161682,272.61017 50.161682,272.61017 50.161682,272.61017 L 53.828532,275.27697 L 56.161982,279.27717 L 56.161982,301.94497 L 53.828532,305.94517 L 50.161682,308.61197 L 38.827782,308.61197 L 38.827782,308.61197 L 38.827782,311.27877 L 25.493782,311.27877 L 25.493782,308.61197 L 14.159882,308.61197 L 10.493032,305.94517 L 8.1595819,301.94497 L 8.1595819,279.27717 L 10.493032,275.27697 L 14.159882,272.61017 L 24.827082,272.61017 L 24.827082,275.94367 L 39.494482,275.94367 L 39.494482,272.61017 z" - id="path91" - style="fill:#484848;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 70.522547,285.27747 L 73.856047,285.27747 L 73.856047,287.94427 L 78.522947,287.94427 L 78.522947,285.27747 L 139.526,285.27747 L 139.526,298.61147 L 78.522947,298.61147 L 78.522947,295.94467 L 73.856047,295.94467 L 73.856047,298.61147 L 70.522547,298.61147 L 70.522547,285.27747 z" - id="path101" - style="fill:#505050;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <g - transform="matrix(0.6667,0,0,0.6667,7.4928819,324.20427)" - id="g107"> - <path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - id="path109" - style="fill:#505050;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-opacity:1" /> - <path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - id="path111" - style="fill:#505050;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-opacity:1" /> - </g> - <path - d="M 39.494482,319.03735 C 50.161682,319.03735 50.161682,319.03735 50.161682,319.03735 L 53.828532,321.70415 L 56.161982,325.70435 L 56.161982,348.37215 L 53.828532,352.37235 L 50.161682,355.03915 L 38.827782,355.03915 L 38.827782,355.03915 L 38.827782,357.70595 L 25.493782,357.70595 L 25.493782,355.03915 L 14.159882,355.03915 L 10.493032,352.37235 L 8.1595819,348.37215 L 8.1595819,325.70435 L 10.493032,321.70415 L 14.159882,319.03735 L 24.827082,319.03735 L 24.827082,322.37085 L 39.494482,322.37085 L 39.494482,319.03735 z" - id="path113" - style="fill:#585858;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 70.522547,331.70465 L 73.856047,331.70465 L 73.856047,334.37145 L 78.522947,334.37145 L 78.522947,331.70465 L 139.526,331.70465 L 139.526,345.03865 L 78.522947,345.03865 L 78.522947,342.37185 L 73.856047,342.37185 L 73.856047,345.03865 L 70.522547,345.03865 L 70.522547,331.70465 z" - id="path123" - style="fill:#606060;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <g - transform="matrix(0.5,0,0,0.5,37.0625,368.31313)" - id="g3062" - style="fill:#686868;fill-opacity:1;stroke:none"> - <g - transform="translate(59.878677,45.17647)" - id="g2533" - style="fill:#686868;fill-opacity:1;stroke:none"> - <path - d="M 64.871323,-38.92647 L 81.371323,-38.92647 L 81.371323,-32.92647 L 77.371323,-32.92647 L 77.371323,-35.92647 L 66.871323,-35.92647" - id="path2493" - style="fill:#686868;fill-opacity:1;stroke:none;stroke-width:3;stroke-opacity:1" /> - <path - d="M 64.871323,-11.42647 L 81.371323,-11.42647 L 81.371323,-17.42647 L 77.371323,-17.42647 L 77.371323,-14.42647 L 66.871323,-14.42647" - id="path2495" - style="fill:#686868;fill-opacity:1;stroke:none;stroke-width:3;stroke-opacity:1" /> - </g> - <path - d="M 76,1 C 92,1 120,1 120,1 C 120,1 124.1318,3.4865526 125.5,5 C 126.89747,6.5458243 129,11 129,11 L 129,30 C 129,30 126.78295,33.693654 125.5,35 C 124.07044,36.455629 120,39 120,39 L 75,39 L 75,39 L 75,43 L 55,43 L 55,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 54,1 L 54,6 L 76,6 L 76,1 z" - id="path3067" - style="fill:#686868;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.5,0,0,0.5,40,399.6775)" - id="g3156" - style="fill:#707070;fill-opacity:1;stroke:none"> - <path - d="M 13,1 L 13,10 L 6,10 L 6,6 L 1,6 L 1,25 L 6,25 L 6,21 L 13,21 L 13,31 L 129,31 L 129,1 L 13,1 z" - id="path11" - style="fill:#707070;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> - </g> - <g - transform="translate(-1.88425e-2,73.71799)" - id="g149" - style="fill:#787878;fill-opacity:1;stroke:none"> - <path - d="M 40.693845,353.55201 L 40.693845,358.24201 L 38.013845,358.24201 L 38.013845,361.59201 L 40.693845,361.59201 L 40.693845,366.28201 L 104.34384,366.28201 L 107.02384,359.91701 L 104.34384,353.55201 L 40.693845,353.55201 z" - id="path151" - style="fill:#787878;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> - <path - d="M 97,50.5 C 97.09921,57.29082 77.5,63 77.5,63 L 77.5,63 L 77.5,65 L 67.5,65 L 67.5,63 C 67.5,63 47.90079,57.29082 48,50.5 C 48.12259,42.10894 64.10804,38 72.5,38 C 80.89196,38 96.87741,42.10894 97,50.5 z" - id="path2528" - style="fill:#101010;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> -</svg> diff --git a/images/de/myblocks/stack1.svg b/images/de/myblocks/stack1.svg index 81e6175..c1e07a9 100644 --- a/images/de/myblocks/stack1.svg +++ b/images/de/myblocks/stack1.svg @@ -34,6 +34,6 @@ <tspan x="37" y="26" - style="font-size:16px;">Stapel 1</tspan> + style="font-size:16px;">Aktion 1</tspan> </text> </svg> diff --git a/images/de/myblocks/stack2.svg b/images/de/myblocks/stack2.svg index 31e78c3..d7fe9c0 100644 --- a/images/de/myblocks/stack2.svg +++ b/images/de/myblocks/stack2.svg @@ -34,6 +34,6 @@ <tspan x="37" y="26" - style="font-size:16px;">Stapel 2</tspan> + style="font-size:16px;">Aktion 2</tspan> </text> </svg> diff --git a/images/de/myblocks/storein.svg b/images/de/myblocks/storein.svg new file mode 100644 index 0000000..c458e51 --- /dev/null +++ b/images/de/myblocks/storein.svg @@ -0,0 +1,270 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="142" + height="60" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="128.68382" + y2="22" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2501" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2496" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3886"> + <stop + id="stop3888" + style="stop-color:#0000ff;stop-opacity:1" + offset="0" /> + <stop + id="stop3890" + style="stop-color:#ffffff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient4211" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient4238" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + id="linearGradient2473"> + <stop + id="stop2475" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2477" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2601" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2595"> + <stop + id="stop2597" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2599" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="128.68382" + y2="22" + id="linearGradient2608" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2515" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2509"> + <stop + id="stop2511" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2513" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + id="linearGradient2486"> + <stop + id="stop2488" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2490" + style="stop-color:#0000ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2492"> + <stop + id="stop2494" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2496" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2524" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,5.4999997)" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2522" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2520" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2514"> + <stop + id="stop2516" + style="stop-color:#0000ff;stop-opacity:1" + offset="0" /> + <stop + id="stop2518" + style="stop-color:#ffffff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2512" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2510" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + id="linearGradient2504"> + <stop + id="stop2506" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2508" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2540" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(34.404412,58.027574)" /> + </defs> + <g + transform="translate(59.878677,53.67647)" + id="g2533"> + <path + d="M 64.871323,-38.92647 L 81.371323,-38.92647 L 81.371323,-32.92647 L 77.371323,-32.92647 L 77.371323,-35.92647 L 66.871323,-35.92647" + id="path2493" + style="fill:#e0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.5;stroke-opacity:1" /> + <path + d="M 64.871323,-11.42647 L 81.371323,-11.42647 L 81.371323,-17.42647 L 77.371323,-17.42647 L 77.371323,-14.42647 L 66.871323,-14.42647" + id="path2495" + style="fill:#e0e000;fill-opacity:1;stroke:#908000;stroke-width:1.5;stroke-opacity:1" /> + </g> + <path + d="M 47,1 C 63,1 120,1 120,1 C 120,1 124.1318,3.4865526 125.5,5 C 126.89747,6.5458243 129,11 129,11 L 129,46 C 129,46 126.78295,49.693654 125.5,51 C 124.07044,52.455629 120,55 120,55 L 47,55 L 47,55 L 47,59 L 27,59 L 27,55 L 10,55 C 10,55 5.9295605,52.455629 4.5,51 C 3.2170498,49.693654 1,46 1,46 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 27,1 L 27,6 L 47,6 L 47,1 z" + id="path10" + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" /> + <path + d="M 13,28 L 18,28 L 18,32 L 24.999999,32 L 24.999999,28 L 116.50001,28 L 116.50001,48 L 24.999999,48 L 24.999999,44 L 18,44 L 18,48 L 13,48 L 13,28 z" + id="path9" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> + <text + x="28.035656" + y="-3.3128912" + id="text2593" + style="font-size:18px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="65.035652" + y="23.687109" + id="tspan2595" + style="font-size:18px">speichern</tspan> + </text> +</svg> diff --git a/images/de/numbers/numbersmask.svg b/images/de/numbers/numbersmask.svg deleted file mode 100644 index 7fcc732..0000000 --- a/images/de/numbers/numbersmask.svg +++ /dev/null @@ -1,1127 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - version="1.0" - width="145" - height="500" - id="svg2"> - <defs - id="defs45"> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4496" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,33.139165,170.11248)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4491" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,33.139163,211.61339)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4486" - xlink:href="#linearGradient3417" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,95.74772,211.61338)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4481" - xlink:href="#linearGradient3417" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,95.74772,170.11247)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4476" - xlink:href="#linearGradient3417" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,25.58374,253.1143)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4451" - xlink:href="#linearGradient3417" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,-107.9952,288.54552)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4441" - xlink:href="#linearGradient3417" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,-107.9952,288.54552)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4431" - xlink:href="#linearGradient3417" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,-107.9952,288.54552)" /> - <linearGradient - id="linearGradient4389"> - <stop - id="stop4391" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop4393" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4395" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="0" - x2="104" - y2="21" - id="linearGradient4397" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.2720588,8.0000002)" /> - <linearGradient - id="linearGradient4399"> - <stop - id="stop4401" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop4403" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4405" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.78e-7,29.691177)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4407" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.8e-8,33.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4409" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.25,0.25)" /> - <linearGradient - x1="84.393837" - y1="150.49895" - x2="121.72736" - y2="150.49895" - id="linearGradient4285" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-4.882461,18)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4273" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,311.64069,549.59336)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4269" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,181.07388,553.64194)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4242" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,383.87753,545.54478)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4237" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,445.61842,548.58121)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4232" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,311.64069,549.59336)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4227" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,240.79048,553.64194)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient4222" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,181.07388,553.64194)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3447" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> - <linearGradient - id="linearGradient3417"> - <stop - id="stop3419" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3421" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3423" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="0" - x2="104" - y2="21" - id="linearGradient3425" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.2720588,8.0000002)" /> - <linearGradient - id="linearGradient3427"> - <stop - id="stop3429" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3431" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3433" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.78e-7,29.691177)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3435" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.8e-8,33.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3437" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.25,0.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3293" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> - <linearGradient - id="linearGradient3263"> - <stop - id="stop3265" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3267" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3269" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="0" - x2="104" - y2="21" - id="linearGradient3271" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.2720588,8.0000002)" /> - <linearGradient - id="linearGradient3273"> - <stop - id="stop3275" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3277" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3279" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.78e-7,29.691177)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3281" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.8e-8,33.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3283" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.25,0.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3138" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> - <linearGradient - id="linearGradient3108"> - <stop - id="stop3110" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3112" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3114" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="0" - x2="104" - y2="21" - id="linearGradient3116" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.2720588,8.0000002)" /> - <linearGradient - id="linearGradient3118"> - <stop - id="stop3120" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3122" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3124" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.78e-7,29.691177)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3126" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.8e-8,33.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3128" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.25,0.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3024" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> - <linearGradient - id="linearGradient2994"> - <stop - id="stop2996" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2998" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3000" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="0" - x2="104" - y2="21" - id="linearGradient3002" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.2720588,8.0000002)" /> - <linearGradient - id="linearGradient3004"> - <stop - id="stop3006" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3008" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3010" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.78e-7,29.691177)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3012" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.8e-8,33.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3014" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.25,0.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2910" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> - <linearGradient - id="linearGradient2882"> - <stop - id="stop2884" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2886" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2888" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="0" - x2="104" - y2="21" - id="linearGradient2890" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.2720588,8.0000002)" /> - <linearGradient - id="linearGradient2892"> - <stop - id="stop2894" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2896" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2898" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.78e-7,29.691177)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2900" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.8e-8,33.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2902" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.25,0.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2798" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,50.790988,326.09766)" /> - <linearGradient - id="linearGradient2774"> - <stop - id="stop2776" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2778" - style="stop-color:#ffc000;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2780" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="0" - x2="104" - y2="21" - id="linearGradient2782" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.2720588,8.0000002)" /> - <linearGradient - id="linearGradient2784"> - <stop - id="stop2786" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2788" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2790" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.78e-7,29.691177)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2792" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.8e-8,33.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2794" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.25,0.25)" /> - <linearGradient - id="linearGradient3166"> - <stop - id="stop3168" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3170" - style="stop-color:#ffc000;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3173" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="0" - x2="104" - y2="21" - id="linearGradient3172" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.2720588,8.0000002)" /> - <linearGradient - id="linearGradient2480"> - <stop - id="stop2482" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2484" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2490" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.78e-7,29.691177)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2493" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.8e-8,33.25)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient2495" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,21.014163,215.41015)" /> - <linearGradient - x1="43.416519" - y1="448.5" - x2="92.750099" - y2="448.5" - id="linearGradient2584" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(36.437247,-46.558704)" /> - <linearGradient - x1="44.999863" - y1="402.5" - x2="100.00014" - y2="402.5" - id="linearGradient2582" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-32,0)" /> - <linearGradient - x1="43.416519" - y1="448.5" - x2="92.750099" - y2="448.5" - id="linearGradient3790" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(36.437247,-46.558704)" /> - <linearGradient - x1="44.999863" - y1="402.5" - x2="100.00014" - y2="402.5" - id="linearGradient3782" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-32,0)" /> - <linearGradient - x1="77.666512" - y1="359.5" - x2="139.33348" - y2="359.5" - id="linearGradient3774" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,12)" /> - <linearGradient - x1="8.1665125" - y1="360" - x2="69.833488" - y2="360" - id="linearGradient3765" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,12)" /> - <linearGradient - x1="1.2215077" - y1="318" - x2="143.7785" - y2="318" - id="linearGradient3757" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,14)" /> - <linearGradient - x1="1.2215077" - y1="278.5" - x2="143.7785" - y2="278.5" - id="linearGradient3749" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,26)" /> - <linearGradient - x1="1.2215077" - y1="235" - x2="143.7785" - y2="235" - id="linearGradient3741" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,42)" /> - <linearGradient - x1="10.277154" - y1="192.5" - x2="134.72285" - y2="192.5" - id="linearGradient3733" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,48)" /> - <linearGradient - x1="84.393837" - y1="150.49895" - x2="121.72736" - y2="150.49895" - id="linearGradient3725" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-4.882461,18)" /> - <linearGradient - x1="15.999892" - y1="150.49895" - x2="59.000107" - y2="150.49895" - id="linearGradient3717" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="85.560509" - y1="114.35662" - x2="120.56069" - y2="114.35662" - id="linearGradient3709" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="19.999912" - y1="114.35662" - x2="55.000088" - y2="114.35662" - id="linearGradient3701" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="85.560509" - y1="78.214287" - x2="120.56069" - y2="78.214287" - id="linearGradient3693" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="19.999912" - y1="78.214287" - x2="55.000088" - y2="78.214287" - id="linearGradient3685" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="37.33316" - y1="41.5" - x2="107.66684" - y2="41.5" - id="linearGradient3677" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient5187" - xlink:href="#linearGradient3049" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.66667,0,0,0.66667,147.83371,171.83398)" /> - <linearGradient - id="linearGradient5166"> - <stop - id="stop5168" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop5170" - style="stop-color:#ff00ff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3165" - xlink:href="#linearGradient3417" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,-274.41338,253.11142)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3170" - xlink:href="#linearGradient3417" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,-204.2494,211.6105)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3175" - xlink:href="#linearGradient3417" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,-204.2494,170.10959)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3180" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,-266.85796,211.61051)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3185" - xlink:href="#linearGradient2480" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.25,0,0,-0.25,-266.85795,170.1096)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3188" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,-249.20613,326.09478)" /> - <linearGradient - x1="-0.25" - y1="18.5" - x2="52.25" - y2="18.5" - id="linearGradient3191" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,-0.5,-278.98296,215.40727)" /> - <linearGradient - x1="77.666512" - y1="359.5" - x2="139.33348" - y2="359.5" - id="linearGradient3212" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-299.99712,11.99712)" /> - <linearGradient - x1="8.1665125" - y1="360" - x2="69.833488" - y2="360" - id="linearGradient3217" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-299.99712,11.99712)" /> - <linearGradient - x1="1.2215077" - y1="235" - x2="143.7785" - y2="235" - id="linearGradient3224" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-299.99712,41.99712)" /> - <linearGradient - x1="1.2215077" - y1="278.5" - x2="143.7785" - y2="278.5" - id="linearGradient3231" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-299.99712,25.99712)" /> - <linearGradient - x1="1.2215077" - y1="318" - x2="143.7785" - y2="318" - id="linearGradient3238" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-299.99712,13.99712)" /> - <linearGradient - x1="10.277154" - y1="192.5" - x2="134.72285" - y2="192.5" - id="linearGradient3245" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-299.99712,47.99712)" /> - <linearGradient - x1="37.33316" - y1="41.5" - x2="107.66684" - y2="41.5" - id="linearGradient3253" - xlink:href="#linearGradient5166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-299.99712,-2.88e-3)" /> - </defs> - <rect - width="143" - height="440" - x="1" - y="30" - id="rect4" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> - <rect - width="145" - height="29" - x="0" - y="0" - id="rect6" - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 0,470 L 0,486 L 3,493 L 8,497 L 15,499 L 129,499 L 136,497 L 142,492 L 145,484 L 145,470 L 0,470 z" - id="path8" - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 39,36 L 42,36 L 42,38 L 47,38 L 47,36 L 108,36 L 108,49 L 47,49 L 47,46 L 42,46 L 42,49 L 39,49 L 39,36 z" - id="path10" - style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:1;stroke-opacity:1" /> - <path - d="M 122,151.5 L 100,151.5 L 98,153.5 L 96,154.5 L 95,157.5 L 95,159.5 L 90,159.5 L 90,157.5 L 86,157.5 L 86,170.5 L 90,170.5 L 90,168.5 L 95,168.5 L 95,172.5 L 96,174.5 L 99,175.5 L 122,175.5 L 122,169.5 L 119,169.5 L 119,171.5 L 113,171.5 L 113,156.5 L 119,156.5 L 119,158.5 L 122,158.5 L 122,151.5 z" - id="path22" - style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 126,230 L 21,230 L 20,231 L 18,232 L 17,234 L 17,239 L 14,239 L 14,238 L 11,238 L 12,247 L 14,247 L 14,245 L 17,245 L 17,249 L 18,250 L 20,250 L 130,251 L 130,247 L 135,247 L 135,238 L 130,238 L 130,233 L 129,232 L 127,230 L 126,230 L 126,230" - id="path24" - style="fill:#585858;fill-opacity:1;stroke:#484848;stroke-width:1;stroke-opacity:1" /> - <path - d="M 132,323.5 L 14,323.5 L 11,324.5 L 6,326.5 L 4,329.5 L 3,331.5 L 2,332.5 L 2,333.5 L 3,335.5 L 6,337.5 L 9,338.5 L 11,339.5 L 14,340.5 L 132,340.5 L 137,339.5 L 140,337.5 L 143,335.5 L 144,333.5 L 144,332.5 L 144,329.5 L 141,327.5 L 138,325.5 L 135,324.5 L 132,323.5 z" - id="path26" - style="fill:#707070;fill-opacity:1;stroke:#606060;stroke-width:1;stroke-opacity:1" /> - <path - d="M 132,296.5 L 14,296.5 L 11,297.5 L 6,299.5 L 4,301.5 L 3,303.5 L 2,304.5 L 2,306.5 L 3,307.5 L 6,309.5 L 9,311.5 L 11,312.5 L 14,313.5 L 132,313.5 L 137,311.5 L 140,310.5 L 143,308.5 L 144,306.5 L 144,304.5 L 144,302.5 L 141,299.5 L 138,298.5 L 135,297.5 L 132,296.5 z" - id="path28" - style="fill:#686868;fill-opacity:1;stroke:#585858;stroke-width:1;stroke-opacity:1" /> - <path - d="M 132,268.5 L 14,268.5 L 11,269.5 L 6,271.5 L 4,274.5 L 3,276.5 L 2,277.5 L 2,278.5 L 3,280.5 L 6,282.5 L 9,283.5 L 11,284.5 L 14,285.5 L 132,285.5 L 137,284.5 L 140,282.5 L 143,280.5 L 144,278.5 L 144,277.5 L 144,274.5 L 141,272.5 L 138,270.5 L 135,269.5 L 132,268.5 z" - id="path30" - style="fill:#606060;fill-opacity:1;stroke:#505050;stroke-width:1;stroke-opacity:1" /> - <path - d="M 10,357.5 L 70,357.5 L 70,359.5 L 65,360.5 L 61,361.5 L 58,363.5 L 54,366.5 L 53,368.5 L 52,371.5 L 52,374.5 L 54,377.5 L 56,379.5 L 60,381.5 L 63,383.5 L 67,384.5 L 70,385.5 L 70,387.5 L 10,387.5 L 10,385.5 L 14,384.5 L 19,382.5 L 23,381.5 L 25,379.5 L 27,376.5 L 28,374.5 L 28,371.5 L 28,369.5 L 27,367.5 L 25,365.5 L 22,363.5 L 19,361.5 L 15,360.5 L 10,359.5 L 10,357.5 z" - id="path32" - style="fill:#787878;fill-opacity:1;stroke:#686868;stroke-width:1;stroke-opacity:1" /> - <path - d="M 79,356.5 L 140,356.5 L 140,359.5 L 134,359.5 L 130,361.5 L 127,362.5 L 124,365.5 L 122,368.5 L 121,371.5 L 122,373.5 L 123,377.5 L 126,379.5 L 129,381.5 L 132,382.5 L 136,383.5 L 140,384.5 L 140,386.5 L 79,386.5 L 79,384.5 L 84,383.5 L 88,382.5 L 92,380.5 L 95,378.5 L 96,376.5 L 97,373.5 L 97,371.5 L 97,369.5 L 96,367.5 L 94,364.5 L 92,362.5 L 88,360.5 L 84,359.5 L 79,359.5 L 79,356.5 z" - id="path34" - style="fill:#808080;fill-opacity:1;stroke:#707070;stroke-width:1;stroke-opacity:1" /> - <path - d="M 100,396.5 L 80,396.5 L 71,396.5 L 63,398.5 L 56,400.5 L 51,402.5 L 48,405.5 L 47,408.5 L 46,410.5 L 47,412.5 L 48,415.5 L 50,417.5 L 54,419.5 L 60,421.5 L 65,423.5 L 72,424.5 L 80,425.5 L 100,425.5 L 100,423.5 L 96,422.5 L 92,421.5 C 91,420.5 92,421.5 89,419.5 L 86,417.5 L 83,414.5 L 82,410.5 L 84,406.5 L 87,403.5 L 92,400.5 L 96,399.5 L 100,398.5 L 100,396.5" - id="path36" - style="fill:#888888;fill-opacity:1;stroke:#787878;stroke-width:1;stroke-opacity:1" /> - <path - d="M 91,439 L 102,439 L 102,443 L 99,443 L 99,441 L 92,441" - id="path38" - style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" /> - <path - d="M 91,457 L 102,457 L 102,453 L 99,453 L 99,455 L 92,455" - id="path40" - style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" /> - <path - d="M 76,438.5 C 87,438.5 87,438.5 87,438.5 L 91,441.5 L 93,445.5 L 93,458.5 L 91,461.5 L 87,464.5 L 76,464.5 L 76,464.5 L 76,466.5 L 62,466.5 L 62,464.5 L 51,464.5 L 47,461.5 L 45,458.5 L 45,445.5 L 47,441.5 L 51,438.5 L 62,438.5 L 62,442.5 L 76,442.5 L 76,438.5 z" - id="path42" - style="fill:#909090;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" /> - <path - d="M 37.643216,215.5 L 48.518216,215.5 L 48.518216,211 L 46.518216,211 L 46.518216,212.5 L 42.018216,212.5 L 42.018216,201 L 46.518216,201 L 46.518216,202.5 L 48.518216,202.5 L 48.518216,198.125 L 42.018216,198.125 L 41.77105,189.68559 L 25.768216,189.625 L 25.768216,187.625 L 23.018216,187.625 L 23.018216,197.875 L 25.768216,197.875 L 25.768216,195.875 L 28.018216,195.875 L 28.010174,215.44608 L 37.643216,215.5 z" - id="path3280" - style="fill:#484848;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 107.8072,187.625 L 118.6822,187.625 L 118.6822,192.125 L 116.6822,192.125 L 116.6822,190.625 L 112.1822,190.625 L 112.1822,202.125 L 116.6822,202.125 L 116.6822,200.625 L 118.6822,200.625 L 118.6822,205 L 118.84657,213.23958 L 98.182196,213.5 L 95.932196,213.5 L 95.932196,215.5 L 93.182196,215.5 L 93.182196,205.25 L 95.932196,205.25 L 95.932196,207.25 L 98.182196,207.25 L 98.295328,187.61834 L 107.8072,187.625 z" - id="path3282" - style="fill:#505050;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 27.006062,62.998163 L 47.506062,62.998163 L 47.506062,67.498163 L 45.506062,67.498163 L 45.506062,65.998163 L 41.006062,65.998163 L 41.006062,77.498163 L 45.506062,77.498163 L 45.506062,75.998163 L 47.506062,75.998163 L 47.506062,83.998163 L 45.506062,83.998163 L 45.506062,82.498163 L 41.006062,82.498163 L 41.006062,94.102668 L 45.506062,94.102668 L 45.506062,92.498163 L 47.506062,92.498163 L 47.506062,97.498168 L 27.006062,97.498168 L 27.006062,83.248163 L 24.756062,83.248163 L 24.756062,85.248163 L 22.006062,85.248163 L 22.006062,74.998163 L 24.756062,74.998163 L 24.756062,76.998163 L 27.006062,76.998163 L 27.006062,62.998163 z" - id="path3288" - style="fill:#181818;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 27.006062,104.49908 L 47.506062,104.49908 L 47.506062,108.99908 L 45.506062,108.99908 L 45.506062,107.49908 L 41.006062,107.49908 L 41.006062,118.99908 L 45.506062,118.99908 L 45.506062,117.49908 L 47.506062,117.49908 L 47.506062,125.49908 L 45.506062,125.49908 L 45.506062,123.99908 L 41.006062,123.99908 L 41.006062,135.60358 L 45.506062,135.60358 L 45.506062,133.99908 L 47.506062,133.99908 L 47.506062,138.99908 L 27.006062,138.99908 L 27.006062,124.74908 L 24.756062,124.74908 L 24.756062,126.74908 L 22.006062,126.74908 L 22.006062,116.49908 L 24.756062,116.49908 L 24.756062,118.49908 L 27.006062,118.49908 L 27.006062,104.49908 z" - id="path3290" - style="fill:#282828;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 92.357542,62.998163 L 112.98254,62.998163 L 112.98254,67.498163 L 110.85754,67.498163 L 110.85754,65.998163 L 106.35754,65.998163 L 106.35754,77.498163 L 110.85754,77.498163 L 110.85754,75.998163 L 112.98254,75.998163 L 112.98254,79.998163 L 122.48254,79.998163 L 122.48254,83.998163 L 120.48254,83.998163 L 120.48254,82.498163 L 115.98254,82.498163 L 115.98254,94.102668 L 120.48254,94.102668 L 120.48254,92.498163 L 122.48254,92.498163 L 122.48254,97.498168 L 92.357542,97.498168 L 92.357542,83.248163 L 90.107542,83.248163 L 90.107542,85.248163 L 87.357542,85.248163 L 87.357542,74.998163 L 90.107542,74.998163 L 90.107542,76.998163 L 92.357542,76.998163 L 92.357542,62.998163 z" - id="path3292" - style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 22.193562,146 L 42.818562,146 L 42.818562,150.5 L 40.693562,150.5 L 40.693562,149 L 36.193562,149 L 36.193562,160.5 L 40.693562,160.5 L 40.693562,159 L 42.818562,159 L 42.818562,163 L 52.318562,163 L 52.318562,167 L 50.318562,167 L 50.318562,165.5 L 45.818562,165.5 L 45.818562,177.1045 L 50.318562,177.1045 L 50.318562,175.5 L 52.318562,175.5 L 52.318562,180.5 L 22.193562,180.5 L 22.193562,166.25 L 19.943562,166.25 L 19.943562,168.25 L 17.193562,168.25 L 17.193562,158 L 19.943562,158 L 19.943562,160 L 22.193562,160 L 22.193562,146 z" - id="path3298" - style="fill:#383838;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 91.688511,105 L 112.31351,105 L 112.31351,109.5 L 110.18851,109.5 L 110.18851,108 L 105.68851,108 L 105.68851,119.5 L 110.18851,119.5 L 110.18851,118 L 112.31351,118 L 112.31351,122 L 121.81351,122 L 121.81351,126 L 119.81351,126 L 119.81351,124.5 L 115.31351,124.5 L 115.31351,136.1045 L 119.81351,136.1045 L 119.81351,134.5 L 121.81351,134.5 L 121.81351,139.5 L 91.688511,139.5 L 91.688511,125.25001 L 89.438511,125.25001 L 89.438511,127.25001 L 86.688511,127.25001 L 86.688511,117 L 89.438511,117 L 89.438511,119 L 91.688511,119 L 91.688511,105 z" - id="path3308" - style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> -</svg> diff --git a/images/de/pen/pengroup.svg b/images/de/pen/pengroup.svg index b2fc3b0..4725cac 100644 --- a/images/de/pen/pengroup.svg +++ b/images/de/pen/pengroup.svg @@ -1,236 +1,308 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> - <!-- Created with Inkscape (http://www.inkscape.org/) --> - <svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - version="1.0" - width="145" - height="500" - id="svg2"> - <defs - id="defs4"> - <linearGradient - id="linearGradient3876"> - <stop - id="stop3878" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3880" - style="stop-color:#00ffff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient3889" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient3913" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient3915" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="18.291491" - y1="48.644657" - x2="67.627289" - y2="48.644657" - id="linearGradient4830" - xlink:href="#linearGradient3876" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="77.372711" - y1="48.644657" - x2="126.70851" - y2="48.644657" - id="linearGradient4838" - xlink:href="#linearGradient3876" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="43.415215" - y1="95.379143" - x2="92.751015" - y2="95.379143" - id="linearGradient4846" - xlink:href="#linearGradient3876" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="43.415215" - y1="147.44724" - x2="92.751015" - y2="147.44724" - id="linearGradient4854" - xlink:href="#linearGradient3876" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="43.415215" - y1="199.5153" - x2="92.751015" - y2="199.5153" - id="linearGradient4862" - xlink:href="#linearGradient3876" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="43.415215" - y1="258.58374" - x2="92.751015" - y2="258.58374" - id="linearGradient4870" - xlink:href="#linearGradient3876" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="37.331573" - y1="312.79697" - x2="107.66842" - y2="312.79697" - id="linearGradient4878" - xlink:href="#linearGradient3876" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,95.96579)" /> - <linearGradient - x1="37.331573" - y1="337.74872" - x2="107.66842" - y2="337.74872" - id="linearGradient4886" - xlink:href="#linearGradient3876" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,95.96579)" /> - <linearGradient - x1="37.331573" - y1="362.7005" - x2="107.66842" - y2="362.7005" - id="linearGradient4894" - xlink:href="#linearGradient3876" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,95.96579)" /> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient3172" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.67,0,0,0.67,43.745213,299.47)" /> - <linearGradient - id="linearGradient3166"> - <stop - id="stop3168" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3170" - style="stop-color:#00ffff;stop-opacity:1" - offset="1" /> - </linearGradient> - </defs> - <path - d="M 0.5594301,0.5 L 0.49711997,486 L 3.6209793,492 L 8.494839,496 L 15.156388,499 L 128.9813,499 L 135.82978,496 L 141.77903,492 L 144.50288,486 L 144.54057,0.5 L 0.5594301,0.5 z" - id="path21" - style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:0.99423993px;stroke-opacity:1" /> - <rect - width="123.6" - height="0.14" - x="10.7" - y="391" - id="rect23" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.08842015;stroke-opacity:1" /> - <rect - width="123.6" - height="0.14" - x="10.7" - y="392" - id="rect25" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.08842015;stroke-opacity:1" /> - <rect - width="123.6" - height="0.14" - x="10.7" - y="393" - id="rect27" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.08842015;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="3.7" - y="-29" - transform="scale(1,-1)" - id="rect29" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="3.7" - y="-27.799999" - transform="scale(1,-1)" - id="rect31" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="3.7" - y="-474.79999" - transform="scale(1,-1)" - id="rect33" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> - <rect - width="137.5" - height="0.14" - x="3.7" - y="-473.5" - transform="scale(1,-1)" - id="rect35" - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> - <path - d="M 80.875,486.375 C 80.875,490.86231 77.125385,494.5 72.5,494.5 C 67.874615,494.5 64.125,490.86231 64.125,486.375 C 64.125,481.88769 67.874615,478.25 72.5,478.25 C 77.125385,478.25 80.875,481.88769 80.875,486.375 L 80.875,486.375 z" - id="path37" - style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" /> - <text - y="96.749023" - id="text39" - style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans"> - <tspan - x="68" - y="490.74902" - id="tspan41" - style="font-size:12px;font-weight:bold;fill:#ffffff">X</tspan> - </text> - <text - id="text43" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="72.5" - y="21" - id="tspan45" - style="font-size:20px">Stift</tspan> - </text> - <path - d="M 50.29309,34.643957 C 60.96029,34.643957 60.96029,34.643957 60.96029,34.643957 L 64.62714,37.310757 L 66.96059,41.310957 L 66.96059,53.978257 L 64.62714,57.311757 L 60.96029,59.978557 L 49.62639,59.978557 L 49.62639,59.978557 L 49.62639,62.645357 L 36.29239,62.645357 L 36.29239,59.978557 L 24.95849,59.978557 L 21.29164,57.311757 L 18.95819,53.978257 L 18.95819,41.310957 L 21.29164,37.310757 L 24.95849,34.643957 L 35.62569,34.643957 L 35.62569,37.977457 L 50.29309,37.977457 L 50.29309,34.643957 z" - id="path47" - style="fill:url(#linearGradient4830);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> - <text +<?xml version="1.0" encoding="UTF-8" standalone="no"?> + <!-- Created with Inkscape (http://www.inkscape.org/) --> + <svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="145" + height="500" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3876"> + <stop + id="stop3878" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3880" + style="stop-color:#00ffff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="18" + y1="48" + x2="67" + y2="48" + id="linearGradient4830" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="77" + y1="48" + x2="126" + y2="48" + id="linearGradient4838" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="95" + x2="92" + y2="95" + id="linearGradient4846" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="147" + x2="92" + y2="147" + id="linearGradient4854" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="199" + x2="92" + y2="199" + id="linearGradient4862" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="258" + x2="92" + y2="258" + id="linearGradient4870" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37" + y1="312" + x2="107" + y2="312" + id="linearGradient4878" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,65)" /> + <linearGradient + x1="37" + y1="337" + x2="107" + y2="337" + id="linearGradient4886" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,61)" /> + <linearGradient + x1="37" + y1="362" + x2="107" + y2="362" + id="linearGradient4894" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,57)" /> + <linearGradient + x1="37" + y1="337" + x2="107" + y2="337" + id="linearGradient2501" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,95)" /> + <linearGradient + x1="43" + y1="95" + x2="92" + y2="95" + id="linearGradient2560" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="147" + x2="92" + y2="147" + id="linearGradient2562" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="199" + x2="92" + y2="199" + id="linearGradient2580" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="199" + x2="92" + y2="199" + id="linearGradient2582" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37" + y1="337" + x2="107" + y2="337" + id="linearGradient2584" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,95)" /> + <linearGradient + x1="37" + y1="337" + x2="107" + y2="337" + id="linearGradient2598" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37" + y1="362" + x2="107" + y2="362" + id="linearGradient2600" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37" + y1="362" + x2="107" + y2="362" + id="linearGradient2627" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37" + y1="337" + x2="107" + y2="337" + id="linearGradient2629" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37" + y1="362" + x2="107" + y2="362" + id="linearGradient2631" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37" + y1="337" + x2="107" + y2="337" + id="linearGradient2633" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="199" + x2="92" + y2="199" + id="linearGradient2521" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="199" + x2="92" + y2="199" + id="linearGradient2523" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="199" + x2="92" + y2="199" + id="linearGradient2530" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43" + y1="199" + x2="92" + y2="199" + id="linearGradient2539" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + d="M 0.5,0.5 L 0.5,486 L 3.6,492 L 8.5,496 L 15.2,499 L 129,499 L 135.8,496 L 141.8,492 L 144.5,486 L 144.5,0.5 L 0.5,0.5 z" + style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect + width="123.6" + height="0.14" + x="10.7" + y="363" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect + width="123.6" + height="0.14" + x="10.7" + y="364" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> + <rect + width="123.6" + height="0.14" + x="10.7" + y="365" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="3.7" + y="-29" + transform="scale(1,-1)" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="3.7" + y="-27.799999" + transform="scale(1,-1)" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="3.7" + y="-474.79999" + transform="scale(1,-1)" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect + width="137.5" + height="0.14" + x="3.7" + y="-473.5" + transform="scale(1,-1)" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 80.9,486.4 C 80.9,490.9 77.1,494.5 72.5,494.5 C 67.9,494.5 64.1,490.09 64.1,486.4 C 64.1,481.9 67.9,478.3 72.5,478.3 C 77.1,478.3 80.9,481.9 80.9,486.4 L 80.9,486.4 z" + style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" /> + <text + style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans"> + <tspan + x="68" + y="491" + style="font-size:12px;font-weight:bold;fill:#ffffff">X</tspan> + </text> + <text + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="72.5" + y="21" + style="font-size:20px">Stift</tspan> + </text> + <g> + <path + d="M 50,34 C 60,34 60,34 60,34 L 64,37 L 66,41 L 66,53 L 64,57 L 60,59 L 49,59 L 49,59 L 49,62 L 36,62 L 36,59 L 24,59 L 21,57 L 18,53 L 18,41 L 21,37 L 24,34 L 35,34 L 35,37 L 50,37 L 50,34 z" + style="fill:url(#linearGradient4830);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> + <text id="text49" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="43" y="45" - id="tspan51" style="font-size:10px">hebe</tspan> </text> <text @@ -239,20 +311,19 @@ <tspan x="43" y="55" - id="tspan51" - style="font-size:10px">Stift</tspan> - </text> - <path - d="M 109.37431,34.643957 C 120.04151,34.643957 120.04151,34.643957 120.04151,34.643957 L 123.70836,37.310757 L 126.04181,41.310957 L 126.04181,53.978257 L 123.70836,57.311757 L 120.04151,59.978557 L 108.70761,59.978557 L 108.70761,59.978557 L 108.70761,62.645357 L 95.373609,62.645357 L 95.373609,59.978557 L 84.039709,59.978557 L 80.372859,57.311757 L 78.039409,53.978257 L 78.039409,41.310957 L 80.372859,37.310757 L 84.039709,34.643957 L 94.706909,34.643957 L 94.706909,37.977457 L 109.37431,37.977457 L 109.37431,34.643957 z" - id="path53" - style="fill:url(#linearGradient4838);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> - <text + style="font-size:10px">Stift</tspan> + </text> + </g> + <g> + <path + d="M 109,34 C 120,34 120,34 120,34 L 123,37 L 126,41 L 126,53 L 123,57 L 120,59 L 108,59 L 108,59 L 108,62 L 95,62 L 95,59 L 84,59 L 80,57 L 78,53 L 78,41 L 80,37 L 84,34 L 94,34 L 94,37 L 109,37 L 109,34 z" + style="fill:url(#linearGradient4838);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text id="text55" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="101" y="45" - id="tspan57" style="font-size:10px">senke</tspan> </text> <text @@ -261,29 +332,27 @@ <tspan x="101" y="55" - id="tspan57" - style="font-size:10px">Stift</tspan> - </text> - <path - d="M 90.084213,85.211967 L 101.08476,85.211967 L 101.08476,89.212167 L 98.417963,89.212167 L 98.417963,87.212067 L 91.417613,87.212067" - id="path59" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 90.084213,103.54622 L 101.08476,103.54622 L 101.08476,99.546017 L 98.417963,99.546017 L 98.417963,101.54612 L 91.417613,101.54612" - id="path61" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 75.416813,76.044842 C 86.084013,76.044842 86.084013,76.044842 86.084013,76.044842 L 89.750863,78.711642 L 92.084313,82.711842 L 92.084313,105.37964 L 89.750863,109.37984 L 86.084013,112.04664 L 74.750113,112.04664 L 74.750113,112.04664 L 74.750113,114.71344 L 61.416113,114.71344 L 61.416113,112.04664 L 50.082213,112.04664 L 46.415363,109.37984 L 44.081913,105.37964 L 44.081913,82.711842 L 46.415363,78.711642 L 50.082213,76.044842 L 60.749413,76.044842 L 60.749413,79.378342 L 75.416813,79.378342 L 75.416813,76.044842 z" - id="path63" - style="fill:url(#linearGradient4846);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> - <text + style="font-size:10px">Stift</tspan> + </text> + </g> + <g + transform="translate(0,-6)"> + <path + d="M 90,85 L 101,85 L 101,89 L 98,89 L 98,87 L 91,87" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 90,103 L 101,103 L 101,99 L 98,99 L 98,101 L 91,101" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 75,76 C 86,76 86,76 86,76 L 89,78 L 92,82 L 92,105 L 89,109 L 86,112 L 74,112 L 74,112 L 74,114 L 61,114 L 61,112 L 50,112 L 46,109 L 44,105 L 44,82 L 46,78 L 50,76 L 60,76 L 60,79 L 75,79 L 75,76 z" + style="fill:url(#linearGradient2560);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text id="text65" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="68" y="89" - id="tspan67" - style="font-size:10px">setze</tspan> + style="font-size:10.5px">setze</tspan> </text> <text id="text69" @@ -291,37 +360,34 @@ <tspan x="68" y="99" - id="tspan71" - style="font-size:10px">Stift-</tspan> - </text> + style="font-size:10.5px">Stift-</tspan> + </text> <text id="text69" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="68" y="109" - id="tspan71" - style="font-size:10px">dicke</tspan> - </text> - <path - d="M 90.084213,137.28005 L 101.08476,137.28005 L 101.08476,141.28025 L 98.417963,141.28025 L 98.417963,139.28015 L 91.417613,139.28015" - id="path73" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 90.084213,155.6143 L 101.08476,155.6143 L 101.08476,151.6141 L 98.417963,151.6141 L 98.417963,153.6142 L 91.417613,153.6142" - id="path75" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 75.416813,128.11293 C 86.084013,128.11293 86.084013,128.11293 86.084013,128.11293 L 89.750863,130.77973 L 92.084313,134.77993 L 92.084313,157.44773 L 89.750863,161.44793 L 86.084013,164.11473 L 74.750113,164.11473 L 74.750113,164.11473 L 74.750113,166.78153 L 61.416113,166.78153 L 61.416113,164.11473 L 50.082213,164.11473 L 46.415363,161.44793 L 44.081913,157.44773 L 44.081913,134.77993 L 46.415363,130.77973 L 50.082213,128.11293 L 60.749413,128.11293 L 60.749413,131.44643 L 75.416813,131.44643 L 75.416813,128.11293 z" - id="path77" - style="fill:url(#linearGradient4854);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> - <text + style="font-size:10.5px">dicke</tspan> + </text> + </g> + <g + transform="translate(0,-12)"> + <path + d="M 90,137 L 101,137 L 101,141 L 98,141 L 98,139 L 91,139" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 90,155 L 101,155 L 101,151 L 98,151 L 98,153 L 91,153" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 75,128 C 86,128 86,128 86,128 L 89,130 L 92,134 L 92,157 L 89,161 L 86,164 L 74,164 L 74,164 L 74,166 L 61,166 L 61,164 L 50,164 L 46,161 L 44,157 L 44,134 L 46,130 L 50,128 L 60,128 L 60,131 L 75,131 L 75,128 z" + style="fill:url(#linearGradient2562);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> + <text id="text79" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="68" y="145" - id="tspan81" style="font-size:11px">setze</tspan> </text> <text @@ -330,68 +396,55 @@ <tspan x="68" y="158" - id="tspan85" - style="font-size:11px">Farbe</tspan> - </text> - <path - d="M 90.084213,189.34813 L 101.08476,189.34813 L 101.08476,193.34833 L 98.417963,193.34833 L 98.417963,191.34823 L 91.417613,191.34823" - id="path87" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 90.084213,207.68238 L 101.08476,207.68238 L 101.08476,203.68218 L 98.417963,203.68218 L 98.417963,205.68228 L 91.417613,205.68228" - id="path89" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 75.416813,180.18101 C 86.084013,180.18101 86.084013,180.18101 86.084013,180.18101 L 89.750863,182.84781 L 92.084313,186.84801 L 92.084313,209.51581 L 89.750863,213.51601 L 86.084013,216.18281 L 74.750113,216.18281 L 74.750113,216.18281 L 74.750113,218.84961 L 61.416113,218.84961 L 61.416113,216.18281 L 50.082213,216.18281 L 46.415363,213.51601 L 44.081913,209.51581 L 44.081913,186.84801 L 46.415363,182.84781 L 50.082213,180.18101 L 60.749413,180.18101 L 60.749413,183.51451 L 75.416813,183.51451 L 75.416813,180.18101 z" - id="path91" - style="fill:url(#linearGradient4862);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> - <text + style="font-size:11px">Farbe</tspan> + </text> + </g> + <g> + <path + d="M 90,171 L 101,171 L 101,175 L 98,175 L 98,173 L 91,173" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 90,189 L 101,189 L 101,185 L 98,185 L 98,187 L 91,187" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 75,162 C 86,162 86,162 86,162 L 89,164 L 92,168 L 92,191 L 89,195 L 86,198 L 74,198 L 74,198 L 74,200 L 61,200 L 61,198 L 50,198 L 46,195 L 44,191 L 44,168 L 46,164 L 50,162 L 60,162 L 60,165 L 75,165 L 75,162 z" + style="fill:url(#linearGradient2539);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> + <text id="text93" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="68" - y="193" + y="177" id="tspan95" - style="font-size:10px">setze</tspan> - </text> - <text - id="text97" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="68" - y="203" - id="tspan99" - style="font-size:10px">Abstu-</tspan> + style="font-size:11px">setze</tspan> </text> <text id="text97" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="68" - y="213" + y="190" id="tspan99" - style="font-size:10px">fung</tspan> - </text> - <path - d="M 89.917538,260.08382 L 100.91809,260.08382 L 100.91809,264.2507 L 98.251288,264.2507 L 98.251288,262.08393 L 91.250938,262.08393" - id="path101" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 89.917538,278.41807 L 100.91809,278.41807 L 100.91809,274.41787 L 98.251288,274.41787 L 98.251288,276.41797 L 91.250938,276.41797" - id="path103" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 90.084213,235.5826 L 101.08476,235.5826 L 101.08476,239.5828 L 98.417963,239.5828 L 98.417963,237.5827 L 91.417613,237.5827" - id="path105" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 90.084213,253.91685 L 101.08476,253.91685 L 101.08476,249.91665 L 98.417963,249.91665 L 98.417963,251.91675 L 91.417613,251.91675" - id="path107" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> - <path - d="M 75.416813,232.2491 C 86.084013,232.2491 86.084013,232.2491 86.084013,232.2491 L 89.750863,234.9159 L 92.084313,238.9161 L 92.084313,276.2513 L 89.750863,279.5848 L 86.084013,282.2516 L 74.750113,282.2516 L 74.750113,282.2516 L 74.750113,284.9184 L 61.416113,284.9184 L 61.416113,282.2516 L 50.082213,282.2516 L 46.415363,279.5848 L 44.081913,276.2513 L 44.081913,238.9161 L 46.415363,234.9159 L 50.082213,232.2491 L 60.749413,232.2491 L 60.749413,235.5826 L 75.416813,235.5826 L 75.416813,232.2491 z" - id="path109" - style="fill:url(#linearGradient4870);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + style="font-size:11px">Farbton</tspan> + </text> + </g> + <g + transform="translate(0,-24)"> + <path + d="M 89,260 L 100,260 L 100,264 L 98,264 L 98,262 L 91,262" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 89,278 L 100,278 L 100,274 L 98,274 L 98,276 L 91,276" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 90,235 L 101,235 L 101,239 L 98,239 L 98,237 L 91,237" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 90,253 L 101,253 L 101,249 L 98,249 L 98,251 L 91,251" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 75,232 C 86,232 86,232 86,232 L 89,234 L 92,238 L 92,276 L 89,279 L 86,282 L 74,282 L 74,282 L 74,284 L 61,284 L 61,282 L 50,282 L 46,279 L 44,276 L 44,238 L 46,234 L 50,232 L 60,232 L 60,235 L 75,235 L 75,232 z" + style="fill:url(#linearGradient4870);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> <text id="text111" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> @@ -399,16 +452,16 @@ x="68" y="255" id="tspan113" - style="font-size:10px">fülle Bild-</tspan> + style="font-size:10.5px">fülle Bild-</tspan> </text> <text id="text115" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="68" - y="268" - id="tspan117" - style="font-size:10px">schirm</tspan> + y="267" + id="tspan117" + style="font-size:10.5px">schirm</tspan> </text> <text id="text119" @@ -426,92 +479,145 @@ x="91" y="277" id="tspan125" - style="font-size:8px">shade</tspan> - </text> - <path - d="M 37.998275,402.09575 L 41.331775,402.09575 L 41.331775,404.76255 L 45.998675,404.76255 L 45.998675,402.09575 L 107.00172,402.09575 L 107.00172,415.42975 L 45.998675,415.42975 L 45.998675,412.76295 L 41.331775,412.76295 L 41.331775,415.42975 L 37.998275,415.42975 L 37.998275,402.09575 z" - id="path127" - style="fill:url(#linearGradient4878);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> - <text - id="text129" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="74" - y="412" - id="tspan131" - style="font-size:10.5px">Stiftdicke</tspan> - </text> - <path - d="M 37.998275,427.04752 L 41.331775,427.04752 L 41.331775,429.71432 L 45.998675,429.71432 L 45.998675,427.04752 L 107.00172,427.04752 L 107.00172,440.38152 L 45.998675,440.38152 L 45.998675,437.71472 L 41.331775,437.71472 L 41.331775,440.38152 L 37.998275,440.38152 L 37.998275,427.04752 z" - id="path133" - style="fill:url(#linearGradient4886);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> - <text - id="text135" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="74" - y="437" - id="tspan137" - style="font-size:10.5px">Farbe</tspan> - </text> - <path - d="M 37.998275,451.9993 L 41.331775,451.9993 L 41.331775,454.6661 L 45.998675,454.6661 L 45.998675,451.9993 L 107.00172,451.9993 L 107.00172,465.3333 L 45.998675,465.3333 L 45.998675,462.6665 L 41.331775,462.6665 L 41.331775,465.3333 L 37.998275,465.3333 L 37.998275,451.9993 z" - id="path139" - style="fill:url(#linearGradient4894);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> - <text - y="95.96579" - id="text141" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="74" - y="461.96579" - id="tspan143" - style="font-size:10.5px">Abstufung</tspan> - </text> - <path - d="M 90.645213,309.3525 L 101.70021,309.3525 L 101.70021,313.3725 L 99.020213,313.3725 L 99.020213,311.3625 L 91.985213,311.3625" - id="path2622" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 90.645213,327.7775 L 101.70021,327.7775 L 101.70021,323.7575 L 99.020213,323.7575 L 99.020213,325.7675 L 91.985213,325.7675" - id="path2624" - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 75.905213,300.14 C 86.625213,300.14 86.625213,300.14 86.625213,300.14 L 90.310213,302.82 L 92.655213,306.84 L 92.655213,329.62 L 90.310213,333.64 L 86.625213,336.32 L 75.235213,336.32 L 75.235213,336.32 L 75.235213,339 L 61.835213,339 L 61.835213,336.32 L 50.445213,336.32 L 46.760213,333.64 L 44.415213,329.62 L 44.415213,306.84 L 46.760213,302.82 L 50.445213,300.14 L 61.165213,300.14 L 61.165213,303.49 L 75.905213,303.49 L 75.905213,300.14 z" - id="path2626" - style="fill:url(#linearGradient4886);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <text - x="43.745213" - y="299.47" - id="text2628" - style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="68.53521" - y="314.20999" - id="tspan2630" - style="font-size:10.5px">setze</tspan> - </text> - <text - x="43.745213" - y="299.47" - id="text2632" - style="font-size:10px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="68.53521" - y="323.59" - id="tspan2634" - style="font-size:10px">Schrift-</tspan> - </text> - <text - x="43.745213" - y="299.47" - id="text2636" - style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="68.53521" - y="332.97" - id="tspan2638" - style="font-size:10px">farbe</tspan> + style="font-size:8px">Farbton</tspan> + </text> + </g> + <g + transform="translate(0,-2)"> + <path + d="M 37,372 L 41,372 L 41,374 L 45,374 L 45,372 L 107,372 L 107,385 L 45,385 L 45,382 L 41,382 L 41,385 L 37,385 L 37,372 z" + style="fill:url(#linearGradient4878);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> + <text + x="4" + y="65" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="76" + y="381" + style="font-size:10.5">Stiftdicke</tspan> + </text> + </g> + <g + transform="translate(0,-2)"> + <path + d="M 37,393 L 41,393 L 41,395 L 45,395 L 45,393 L 107,393 L 107,406 L 45,406 L 45,403 L 41,403 L 41,406 L 37,406 L 37,393 z" + style="fill:url(#linearGradient2633);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> + <text + x="4" + y="61" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="76" + y="402" + style="font-size:10.5">Farbe</tspan> + </text> + </g> + <g + transform="translate(0,-1)"> + <path + d="M 37,413 L 41,413 L 41,416 L 45,416 L 45,413 L 107,413 L 107,427 L 45,427 L 45,424 L 41,424 L 41,427 L 37,427 L 37,413 z" + style="fill:url(#linearGradient2631);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> + <text + x="4" + y="57" + style="font-size:10px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="76" + y="423" + style="font-size:10.5">Farbton</tspan> + </text> + </g> + <g + transform="translate(0,-30)"> + <path + d="M 90,309 L 101,309 L 101,313 L 99,313 L 99,311 L 91,311" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 90,327 L 101,327 L 101,323 L 99,323 L 99,325 L 91,325" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 75,300 C 86,300 86,300 86,300 L 90,302 L 92,306 L 92,329 L 90,333 L 86,336 L 75,336 L 75,336 L 75,339 L 61,339 L 61,336 L 50,336 L 46,333 L 44,329 L 44,306 L 46,302 L 50,300 L 61,300 L 61,303 L 75,303 L 75,300 z" + style="fill:url(#linearGradient2584);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + style="font-size:10;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68" + y="314" + style="font-size:10.5">setze</tspan> + </text> + <text + style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68" + y="323" + style="font-size:10.5px">Schrift-</tspan> + </text> + <text + style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68" + y="332" + style="font-size:10.5px">dicke</tspan> + </text> + </g> + <g + transform="translate(0,18)"> + <path + d="M 90,309 L 101,309 L 101,313 L 99,313 L 99,311 L 91,311" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 90,327 L 101,327 L 101,323 L 99,323 L 99,325 L 91,325" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 75,300 C 86,300 86,300 86,300 L 90,302 L 92,306 L 92,329 L 90,333 L 86,336 L 75,336 L 75,336 L 75,339 L 61,339 L 61,336 L 50,336 L 46,333 L 44,329 L 44,306 L 46,302 L 50,300 L 61,300 L 61,303 L 75,303 L 75,300 z" + style="fill:url(#linearGradient2501);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + style="font-size:10.5;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68" + y="314" + style="font-size:10.5">setze</tspan> + </text> + <text + style="font-size:10.5;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68" + y="323" + style="font-size:10.5px">Schrift-</tspan> + </text> + <text + style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68" + y="332" + style="font-size:10.5px">farbe</tspan> + </text> + </g> + <g + transform="translate(0,-2)"> + <path + d="M 37,435 L 41,435 L 41,438 L 45,438 L 45,435 L 107,435 L 107,449 L 45,449 L 45,446 L 41,446 L 41,449 L 37,449 L 37,435 z" + style="fill:url(#linearGradient2629);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> + <text + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="76" + y="445" + style="font-size:10.5px">Schriftfarbe</tspan> + </text> + </g> + <g + transform="translate(0,-2)"> + <path + d="M 37,456 L 41,456 L 41,459 L 45,459 L 45,456 L 107,456 L 107,470 L 45,470 L 45,467 L 41,467 L 41,470 L 37,470 L 37,456 z" + style="fill:url(#linearGradient2627);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> + <text + style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="76" + y="466" + style="font-size:10.5">Schriftdicke</tspan> </text> + </g> </svg> diff --git a/images/de/pen/penmask.svg b/images/de/pen/penmask.svg deleted file mode 100644 index a050e75..0000000 --- a/images/de/pen/penmask.svg +++ /dev/null @@ -1,118 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="145" - height="500" - id="svg3575"> - <defs - id="defs3622" /> - <rect - width="143" - height="404" - x="1" - y="0" - id="rect3577" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> - <rect - width="145" - height="29" - x="0" - y="0" - id="rect3579" - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 0.5,470.5 L 0.5,486.5 L 3.5,493.5 L 8.5,497.5 L 15,500 L 129,500 L 136,497.5 L 142,492.5 L 145,484.5 L 145,470.5 L 0.5,470.5 z" - id="path3581" - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 50,33 C 61,33 61,33 61,33 L 64,36 L 67,40 L 67,53 L 64,56 L 61,59 L 49,59 L 49,59 L 49,61 L 36,61 L 36,59 L 25,59 L 21,56 L 19,53 L 19,40 L 21,36 L 25,33 L 35,33 L 35,37 L 50,37 L 50,33 z" - id="path3583" - style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:1;stroke-opacity:1" /> - <path - d="M 109,33 C 120,33 120,33 120,33 L 123,36 L 126,40 L 126,53 L 123,56 L 120,59 L 108,59 L 108,59 L 108,61 L 95,61 L 95,59 L 84,59 L 80,56 L 78,53 L 78,40 L 80,36 L 84,33 L 94,33 L 94,37 L 109,37 L 109,33 z" - id="path3585" - style="fill:#181818;fill-opacity:1;stroke:#181818;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,84 L 101,84 L 101,88 L 98,88 L 98,86 L 91,86" - id="path3587" - style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,102 L 101,102 L 101,98 L 98,98 L 98,100 L 91,100" - id="path3589" - style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" /> - <path - d="M 75,75 C 86,75 86,75 86,75 L 89,77 L 92,81 L 92,104 L 89,108 L 86,111 L 74,111 L 74,111 L 74,113 L 61,113 L 61,111 L 50,111 L 46,108 L 44,104 L 44,81 L 46,77 L 50,75 L 60,75 L 60,78 L 75,78 L 75,75 z" - id="path3591" - style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,136 L 101,136 L 101,140 L 98,140 L 98,138 L 91,138" - id="path3593" - style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,154 L 101,154 L 101,150 L 98,150 L 98,152 L 91,152" - id="path3595" - style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" /> - <path - d="M 75,127 C 86,127 86,127 86,127 L 89,129 L 92,133 L 92,156 L 89,160 L 86,163 L 74,163 L 74,163 L 74,165 L 61,165 L 61,163 L 50,163 L 46,160 L 44,156 L 44,133 L 46,129 L 50,127 L 60,127 L 60,130 L 75,130 L 75,127 z" - id="path3597" - style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,188 L 101,188 L 101,192 L 98,192 L 98,190 L 91,190" - id="path3599" - style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,206 L 101,206 L 101,202 L 98,202 L 98,204 L 91,204" - id="path3601" - style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" /> - <path - d="M 75,179 C 86,179 86,179 86,179 L 89,182 L 92,186 L 92,208 L 89,212 L 86,215 L 74,215 L 74,215 L 74,218 L 61,218 L 61,215 L 50,215 L 46,212 L 44,208 L 44,186 L 46,182 L 50,179 L 60,179 L 60,182 L 75,182 L 75,179 z" - id="path3603" - style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,259 L 101,259 L 101,263 L 98,263 L 98,261 L 91,261" - id="path3605" - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,277 L 101,277 L 101,273 L 98,273 L 98,275 L 91,275" - id="path3607" - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,234 L 101,234 L 101,238 L 98,238 L 98,236 L 91,236" - id="path3609" - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> - <path - d="M 90,253 L 101,253 L 101,249 L 98,249 L 98,251 L 91,251" - id="path3611" - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> - <path - d="M 75,231 C 86,231 86,231 86,231 L 89,234 L 92,238 L 92,275 L 89,278 L 86,281 L 74,281 L 74,281 L 74,284 L 61,284 L 61,281 L 50,281 L 46,278 L 44,275 L 44,238 L 46,234 L 50,231 L 60,231 L 60,234 L 75,234 L 75,231 z" - id="path3613" - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> - <path - d="M 38,450.5 L 41,450.5 L 41,452.5 L 46,452.5 L 46,450.5 L 107,450.5 L 107,463.5 L 46,463.5 L 46,460.5 L 41,460.5 L 41,463.5 L 38,463.5 L 38,450.5 z" - id="path3615" - style="fill:#585858;fill-opacity:1;stroke:#585858;stroke-width:1;stroke-opacity:1" /> - <path - d="M 38,400.5 L 41,400.5 L 41,402.5 L 46,402.5 L 46,400.5 L 107,400.5 L 107,413.5 L 46,413.5 L 46,410.5 L 41,410.5 L 41,413.5 L 38,413.5 L 38,400.5 z" - id="path3617" - style="fill:#484848;fill-opacity:1;stroke:#484848;stroke-width:1;stroke-opacity:1" /> - <path - d="M 38,425.5 L 41,425.5 L 41,427.5 L 46,427.5 L 46,425.5 L 107,425.5 L 107,438.5 L 46,438.5 L 46,435.5 L 41,435.5 L 41,438.5 L 38,438.5 L 38,425.5 z" - id="path3619" - style="fill:#505050;fill-opacity:1;stroke:#505050;stroke-width:1;stroke-opacity:1" /> - <path - d="M 76.327935,300.5 C 87.327935,300.5 87.327935,300.5 87.327935,300.5 L 90.32794,303.5 L 93.32794,307.5 L 93.32794,329.5 L 90.32794,333.5 L 87.327935,336.5 L 75.327935,336.5 L 75.327935,336.5 L 75.327935,339.5 L 62.327935,339.5 L 62.327935,336.5 L 51.327935,336.5 L 47.327935,333.5 L 45.327935,329.5 L 45.327935,307.5 L 47.327935,303.5 L 51.327935,300.5 L 61.327935,300.5 L 61.327935,303.5 L 76.327935,303.5 L 76.327935,300.5 z" - id="path3628" - style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1;stroke-opacity:1" /> - <path - d="M 91.00202,308.99191 L 102.00202,308.99191 L 102.00202,312.99191 L 99.00202,312.99191 L 99.00202,310.99191 L 92.00202,310.99191" - id="path3630" - style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1;stroke-opacity:1" /> - <path - d="M 91.00202,326.99191 L 102.00202,326.99191 L 102.00202,322.99191 L 99.00202,322.99191 L 99.00202,324.99191 L 92.00202,324.99191" - id="path3632" - style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1;stroke-opacity:1" /> -</svg> diff --git a/images/de/pen/settextsize.svg b/images/de/pen/settextsize.svg new file mode 100644 index 0000000..0ec3c36 --- /dev/null +++ b/images/de/pen/settextsize.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> + <svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + width="87" + height="60" + version="1.0"> + <defs> + <linearGradient + id="linearGradient3166"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3168" /> + <stop + style="stop-color:#00ffff;stop-opacity:1;" + offset="1" + id="stop3170" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient3166" + id="linearGradient3172" + x1="0" + y1="22" + x2="74" + y2="22" + gradientUnits="userSpaceOnUse" /> + </defs> + <g + transform="translate(0,8.75)"> + <path + d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.5;stroke-opacity:1" /> + <path + d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.5;stroke-opacity:1" /> + </g> + <path + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" + d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,45 L 69.5,51 L 64,55 L 47,55 L 47,55 L 47,59 L 27,59 L 27,55 L 10,55 L 4.5,51 L 1,45 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> + <text + style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> + <tspan + x="37" + y="20" + style="font-size:16px;">setze</tspan> + </text> + <text + style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> + <tspan + x="37" + y="35" + style="font-size:16px;">Schrift-</tspan> + </text> + <text + style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> + <tspan + x="37" + y="50" + style="font-size:16px;">dicke</tspan> + </text> + </svg> diff --git a/images/de/pen/textcolor.svg b/images/de/pen/textcolor.svg new file mode 100644 index 0000000..6c02582 --- /dev/null +++ b/images/de/pen/textcolor.svg @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> + <svg + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + width="105" + height="21"> + <defs + id="defs5"> + <linearGradient + id="linearGradient3166"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3168" /> + <stop + style="stop-color:#00ffff;stop-opacity:1;" + offset="1" + id="stop3170" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient3166" + id="linearGradient3172" + x1="0" + y1="0" + x2="104" + y2="21" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" + d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" /> + <text + style="font-size:16px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> + <tspan + x="52" + y="15.5" + style="font-size:16px;">Schriftfarbe</tspan> + </text> + </svg> + diff --git a/images/de/pen/textsize.svg b/images/de/pen/textsize.svg new file mode 100644 index 0000000..47fabd7 --- /dev/null +++ b/images/de/pen/textsize.svg @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> + <svg + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + width="105" + height="21"> + <defs + id="defs5"> + <linearGradient + id="linearGradient3166"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3168" /> + <stop + style="stop-color:#00ffff;stop-opacity:1;" + offset="1" + id="stop3170" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient3166" + id="linearGradient3172" + x1="0" + y1="0" + x2="104" + y2="21" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" + d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" /> + <text + style="font-size:16px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> + <tspan + x="52" + y="15.5" + style="font-size:16px;">Schriftdicke</tspan> + </text> + </svg> + diff --git a/images/de/sensors/bottompos.svg b/images/de/sensors/bottompos.svg new file mode 100644 index 0000000..acf79cb --- /dev/null +++ b/images/de/sensors/bottompos.svg @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="105" + height="21" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff0000;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" + id="path10" + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#a00000;stroke-width:2;stroke-opacity:1" /> + <text + id="text12" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="52" + y="15.5" + id="tspan14" + style="font-size:16px">bottom</tspan> + </text> +</svg> diff --git a/images/de/sensors/leftpos.svg b/images/de/sensors/leftpos.svg new file mode 100644 index 0000000..001cdbe --- /dev/null +++ b/images/de/sensors/leftpos.svg @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> + <!-- Created with Inkscape (http://www.inkscape.org/) --> + <svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="105" + height="21" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff0000;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" + id="path10" + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#a00000;stroke-width:2;stroke-opacity:1" /> + <text + id="text12" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="52" + y="15.5" + id="tspan14" + style="font-size:16px">links</tspan> + </text> + </svg> diff --git a/images/de/sensors/nop-loaded.svg b/images/de/sensors/nop-loaded.svg index 83ee400..b0301e3 100644 --- a/images/de/sensors/nop-loaded.svg +++ b/images/de/sensors/nop-loaded.svg @@ -9,27 +9,39 @@ height="44" id="svg2"> <defs - id="defs4"> - <linearGradient - id="linearGradient3166"> - <stop - id="stop3168" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3170" - style="stop-color:#ff0000;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient3172" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - </defs> + id="defs4"><linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff0000;stop-opacity:1" + offset="1" /> +</linearGradient> +<linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + + + + + + + + + + + + + +</defs> <path d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" id="path10" @@ -42,13 +54,23 @@ d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" id="path14" style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#a00000;stroke-width:2;stroke-opacity:1" /> - <path - d="M 35.034503,11.610295 C 34.052031,11.850121 33.126304,12.245835 32.274322,12.741517 C 32.582232,13.172995 32.77206,13.710161 32.77206,14.279978 C 32.77206,15.739222 31.561272,16.904413 30.102376,16.904413 C 29.521323,16.904413 29.000042,16.725488 28.563915,16.406675 C 28.120925,17.16034 27.761395,17.987605 27.523191,18.850114 C 28.768613,19.062096 29.695137,20.167312 29.695137,21.474548 C 29.695137,22.793701 28.744606,23.859924 27.477942,24.053734 C 27.717652,25.04042 28.109269,25.96328 28.609164,26.813915 C 29.039904,26.507772 29.534456,26.316177 30.102376,26.316177 C 31.561258,26.316177 32.77206,27.525415 32.77206,28.985861 C 32.77206,29.555185 32.580668,30.048333 32.274322,30.479073 C 33.125044,30.97849 34.049888,31.36931 35.034503,31.610295 C 35.228052,30.34282 36.289975,29.347852 37.613689,29.347852 C 38.902565,29.347866 39.963198,30.295341 40.192874,31.519797 C 41.070601,31.278842 41.913779,30.926451 42.681562,30.479073 C 42.375231,30.048072 42.183824,29.509271 42.183824,28.940612 C 42.183824,27.483946 43.351651,26.316177 44.808259,26.316177 C 45.378655,26.316177 45.914995,26.505846 46.34672,26.813915 C 46.845486,25.966885 47.238738,25.03832 47.477942,24.053734 C 46.205645,23.864746 45.215499,22.75449 45.215499,21.4293 C 45.215499,20.136992 46.159513,19.077662 47.387444,18.850114 C 47.145316,17.976992 46.793113,17.170606 46.34672,16.406675 C 45.914995,16.714744 45.378655,16.904413 44.808259,16.904413 C 43.351651,16.904398 42.183824,15.736644 42.183824,14.279978 C 42.183824,13.709567 42.373508,13.173256 42.681562,12.741517 C 41.903933,12.280369 41.088411,11.898729 40.192874,11.655544 C 39.980096,12.899287 38.917739,13.872738 37.613689,13.872738 C 36.293942,13.872724 35.22853,12.87609 35.034503,11.610295 z M 37.477942,18.533372 C 39.169207,18.533357 40.509616,19.917292 40.509616,21.610295 C 40.509602,23.300865 39.169193,24.687218 37.477942,24.687218 C 35.790861,24.687204 34.401019,23.30088 34.401019,21.610295 C 34.401019,19.918118 35.791571,18.533372 37.477942,18.533372 z" - id="circle2615" /> - <path - d="M 12.068295,13.315488 C 11.252387,13.913034 10.54856,14.632887 9.9511206,15.416877 C 10.400712,15.697678 10.781655,16.121311 10.999714,16.647753 C 11.558143,17.995919 10.88542,19.535764 9.5375756,20.094059 C 9.0007526,20.316418 8.4506801,20.350599 7.9257468,20.222952 C 7.8048926,21.088773 7.7893108,21.990652 7.8993069,22.878664 C 9.1310488,22.597907 10.409993,23.264428 10.910251,24.472157 C 11.415069,25.690895 10.944918,27.039709 9.8488414,27.703498 C 10.447893,28.523344 11.162863,29.22609 11.95023,29.820672 C 12.231026,29.372996 12.614612,29.006729 13.139302,28.789395 C 14.487133,28.231105 16.068523,28.884941 16.627412,30.234218 C 16.845283,30.760204 16.857179,31.289056 16.738989,31.804242 C 17.716073,31.940086 18.720077,31.947234 19.721964,31.793079 C 19.415738,30.548017 20.016069,29.222406 21.239022,28.715842 C 22.429793,28.222624 23.772273,28.69209 24.453045,29.735447 C 25.17175,29.176942 25.815891,28.528705 26.354025,27.821563 C 25.906076,27.540598 25.523048,27.116059 25.305432,26.590687 C 24.74799,25.244903 25.380036,23.719117 26.725766,23.161697 C 27.252743,22.943416 27.82084,22.913399 28.337595,23.032804 C 28.47425,22.05938 28.482221,21.051007 28.326432,20.049829 C 27.07866,20.362114 25.739008,19.715283 25.23188,18.490968 C 24.737335,17.297031 25.204102,15.957079 26.251484,15.276943 C 25.693657,14.562942 25.059673,13.952721 24.354916,13.417768 C 24.073947,13.8676 23.651017,14.24808 23.12404,14.466361 C 21.778304,15.023767 20.252492,14.391811 19.69505,13.046027 C 19.476763,12.519036 19.446771,11.95096 19.566157,11.434198 C 18.671247,11.305739 17.771756,11.265236 16.851325,11.38327 C 17.130703,12.613765 16.521737,13.919663 15.316952,14.418701 C 14.097659,14.923734 12.731952,14.410679 12.068295,13.315488 z M 16.975086,18.776514 C 18.537605,18.129281 20.30559,18.894918 20.953475,20.459049 C 21.600415,22.020937 20.892573,23.814712 19.33006,24.461926 C 17.771395,25.107531 15.956826,24.358604 15.309867,22.796707 C 14.662299,21.23334 15.417082,19.42186 16.975086,18.776514 z" - id="path2388" /> - <path - d="M 50.708729,13.315488 C 49.892821,13.913034 49.188994,14.632887 48.591555,15.416877 C 49.041146,15.697678 49.422089,16.121311 49.640148,16.647753 C 50.198577,17.995919 49.525854,19.535764 48.17801,20.094059 C 47.641187,20.316418 47.091114,20.350599 46.566181,20.222952 C 46.445327,21.088773 46.429745,21.990652 46.539741,22.878664 C 47.771483,22.597907 49.050427,23.264428 49.550685,24.472157 C 50.055503,25.690895 49.585352,27.039709 48.489276,27.703498 C 49.088327,28.523344 49.803297,29.22609 50.590664,29.820672 C 50.87146,29.372996 51.255046,29.006729 51.779736,28.789395 C 53.127567,28.231105 54.708957,28.884941 55.267846,30.234218 C 55.485717,30.760204 55.497613,31.289056 55.379423,31.804242 C 56.356507,31.940086 57.360511,31.947234 58.362398,31.793079 C 58.056172,30.548017 58.656503,29.222406 59.879456,28.715842 C 61.070227,28.222624 62.412707,28.69209 63.093479,29.735447 C 63.812184,29.176942 64.456325,28.528705 64.994459,27.821563 C 64.54651,27.540598 64.163482,27.116059 63.945866,26.590687 C 63.388424,25.244903 64.02047,23.719117 65.3662,23.161697 C 65.893177,22.943416 66.461274,22.913399 66.978029,23.032804 C 67.114684,22.05938 67.122655,21.051007 66.966866,20.049829 C 65.719094,20.362114 64.379442,19.715283 63.872314,18.490968 C 63.377769,17.297031 63.844536,15.957079 64.891918,15.276943 C 64.334091,14.562942 63.700107,13.952721 62.99535,13.417768 C 62.714381,13.8676 62.291451,14.24808 61.764474,14.466361 C 60.418738,15.023767 58.892926,14.391811 58.335484,13.046027 C 58.117197,12.519036 58.087205,11.95096 58.206591,11.434198 C 57.311681,11.305739 56.41219,11.265236 55.491759,11.38327 C 55.771137,12.613765 55.162171,13.919663 53.957386,14.418701 C 52.738093,14.923734 51.372386,14.410679 50.708729,13.315488 z M 55.61552,18.776514 C 57.178039,18.129281 58.946024,18.894918 59.593909,20.459049 C 60.240849,22.020937 59.533007,23.814712 57.970494,24.461926 C 56.411829,25.107531 54.59726,24.358604 53.950301,22.796707 C 53.302733,21.23334 54.057516,19.42186 55.61552,18.776514 z" - id="path2390" /> + <g + transform="translate(0,-8.955397)" + id="g2503"> + <path + d="M 36.900421,42.139076 C 40.57847,42.139076 46.040263,40.559298 46.040263,35.912927 C 46.040263,30.744416 41.284228,30.266809 39.311914,29.743556 C 37.131988,29.298791 35.679932,28.678125 35.592711,27.820324 C 35.443451,26.349651 36.303997,25.776856 38.016489,25.776856 C 38.016489,25.776856 42.090107,27.816428 45.550716,26.188778 C 46.526124,25.730654 48.273013,23.590328 48.273013,22.114088 C 48.273013,20.637291 42.633706,18.930597 40.922443,18.930597 C 39.209951,18.930597 37.753595,21.072036 37.753595,21.072036 C 34.32984,21.072036 30.90547,24.02563 30.90547,26.979224 C 30.90547,29.932261 34.181195,32.242365 38.096339,32.886411 C 39.916323,33.147481 41.438401,34.122178 41.092586,35.913483 C 40.81188,37.368014 39.252947,38.867077 35.956953,38.867077 C 33.345219,38.867077 27.787605,38.745171 26.900033,36.596495 C 26.329407,35.212659 27.003225,33.699123 27.859471,33.699123 L 27.842886,33.610059 C 26.97067,33.522108 24.435101,33.699123 24.435101,36.65216 C 24.434487,40.438505 30.051681,42.139076 36.900421,42.139076 z" + id="path2474" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 45.550102,26.189335 C 43.938959,26.029576 41.489383,25.076031 40.963596,23.39383" + id="path2476" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + cx="35.805" + cy="10.96" + r="1.676" + transform="matrix(0.6142367,0,0,0.5566517,19.396517,15.137572)" + id="circle2478" + style="fill:#000000;fill-opacity:1;stroke-width:3.42034841;stroke-miterlimit:4;stroke-dasharray:none" /> + </g> </svg> diff --git a/images/de/sensors/nop.svg b/images/de/sensors/nop.svg index 862e03f..1d933da 100644 --- a/images/de/sensors/nop.svg +++ b/images/de/sensors/nop.svg @@ -9,27 +9,39 @@ height="44" id="svg2"> <defs - id="defs4"> - <linearGradient - id="linearGradient3166"> - <stop - id="stop3168" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3170" - style="stop-color:#ff0000;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient3172" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> - </defs> + id="defs4"><linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff0000;stop-opacity:1" + offset="1" /> +</linearGradient> +<linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + + + + + + + + + + + + + +</defs> <path d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" id="path10" @@ -42,7 +54,41 @@ d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" id="path14" style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#a00000;stroke-width:2;stroke-opacity:1" /> - <path - d="M 35.034503,11.715074 C 34.052031,11.9549 33.126304,12.350614 32.274322,12.846296 C 32.582232,13.277774 32.77206,13.81494 32.77206,14.384757 C 32.77206,15.844001 31.561272,17.009192 30.102376,17.009192 C 29.521323,17.009192 29.000042,16.830267 28.563915,16.511454 C 28.120925,17.265119 27.761395,18.092384 27.523191,18.954893 C 28.768613,19.166875 29.695137,20.272091 29.695137,21.579327 C 29.695137,22.89848 28.744606,23.964703 27.477942,24.158513 C 27.717652,25.145199 28.109269,26.068059 28.609164,26.918694 C 29.039904,26.612551 29.534456,26.420956 30.102376,26.420956 C 31.561258,26.420956 32.77206,27.630194 32.77206,29.09064 C 32.77206,29.659964 32.580668,30.153112 32.274322,30.583852 C 33.125044,31.083269 34.049888,31.474089 35.034503,31.715074 C 35.228052,30.447599 36.289975,29.452631 37.613689,29.452631 C 38.902565,29.452645 39.963198,30.40012 40.192874,31.624576 C 41.070601,31.383621 41.913779,31.03123 42.681562,30.583852 C 42.375231,30.152851 42.183824,29.61405 42.183824,29.045391 C 42.183824,27.588725 43.351651,26.420956 44.808259,26.420956 C 45.378655,26.420956 45.914995,26.610625 46.34672,26.918694 C 46.845486,26.071664 47.238738,25.143099 47.477942,24.158513 C 46.205645,23.969525 45.215499,22.859269 45.215499,21.534079 C 45.215499,20.241771 46.159513,19.182441 47.387444,18.954893 C 47.145316,18.081771 46.793113,17.275385 46.34672,16.511454 C 45.914995,16.819523 45.378655,17.009192 44.808259,17.009192 C 43.351651,17.009177 42.183824,15.841423 42.183824,14.384757 C 42.183824,13.814346 42.373508,13.278035 42.681562,12.846296 C 41.903933,12.385148 41.088411,12.003508 40.192874,11.760323 C 39.980096,13.004066 38.917739,13.977517 37.613689,13.977517 C 36.293942,13.977503 35.22853,12.980869 35.034503,11.715074 z M 37.477942,18.638151 C 39.169207,18.638136 40.509616,20.022071 40.509616,21.715074 C 40.509602,23.405644 39.169193,24.791997 37.477942,24.791997 C 35.790861,24.791983 34.401019,23.405659 34.401019,21.715074 C 34.401019,20.022897 35.791571,18.638151 37.477942,18.638151 z" - id="circle2615" /> + <g + transform="matrix(-1,0,0,-1,105.01627,32.131939)" + id="g3" + style="fill:none;stroke:#000000;stroke-opacity:1"> + <line + style="fill:none;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + id="line3290" + y2="4.9169998" + y1="16.188" + x2="52.441002" + x1="41.169998" /> + + <polyline + style="fill:none;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + id="polyline3292" + points="51.562,15.306 41.17,16.188 42.053,5.794" /> + +</g> + <g + transform="translate(0,-8.955397)" + id="g2503"> + <path + d="M 36.900421,42.139076 C 40.57847,42.139076 46.040263,40.559298 46.040263,35.912927 C 46.040263,30.744416 41.284228,30.266809 39.311914,29.743556 C 37.131988,29.298791 35.679932,28.678125 35.592711,27.820324 C 35.443451,26.349651 36.303997,25.776856 38.016489,25.776856 C 38.016489,25.776856 42.090107,27.816428 45.550716,26.188778 C 46.526124,25.730654 48.273013,23.590328 48.273013,22.114088 C 48.273013,20.637291 42.633706,18.930597 40.922443,18.930597 C 39.209951,18.930597 37.753595,21.072036 37.753595,21.072036 C 34.32984,21.072036 30.90547,24.02563 30.90547,26.979224 C 30.90547,29.932261 34.181195,32.242365 38.096339,32.886411 C 39.916323,33.147481 41.438401,34.122178 41.092586,35.913483 C 40.81188,37.368014 39.252947,38.867077 35.956953,38.867077 C 33.345219,38.867077 27.787605,38.745171 26.900033,36.596495 C 26.329407,35.212659 27.003225,33.699123 27.859471,33.699123 L 27.842886,33.610059 C 26.97067,33.522108 24.435101,33.699123 24.435101,36.65216 C 24.434487,40.438505 30.051681,42.139076 36.900421,42.139076 z" + id="path2474" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 45.550102,26.189335 C 43.938959,26.029576 41.489383,25.076031 40.963596,23.39383" + id="path2476" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + cx="35.805" + cy="10.96" + r="1.676" + transform="matrix(0.6142367,0,0,0.5566517,19.396517,15.137572)" + id="circle2478" + style="fill:#000000;fill-opacity:1;stroke-width:3.42034841;stroke-miterlimit:4;stroke-dasharray:none" /> + </g> </svg> diff --git a/images/de/sensors/rightpos.svg b/images/de/sensors/rightpos.svg new file mode 100644 index 0000000..5346ccc --- /dev/null +++ b/images/de/sensors/rightpos.svg @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> + <!-- Created with Inkscape (http://www.inkscape.org/) --> + <svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="105" + height="21" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff0000;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" + id="path10" + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#a00000;stroke-width:2;stroke-opacity:1" /> + <text + id="text12" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="52" + y="15.5" + id="tspan14" + style="font-size:16px">rechts</tspan> + </text> + </svg> diff --git a/images/de/sensors/sensorsmask.svg b/images/de/sensors/sensorsmask.svg deleted file mode 100644 index 07151f0..0000000 --- a/images/de/sensors/sensorsmask.svg +++ /dev/null @@ -1,226 +0,0 @@ -<?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:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.0" - width="145" - height="500" - id="svg2646" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docname="sensorsmask.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata3573"> - <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> - <sodipodi:namedview - inkscape:window-height="975" - inkscape:window-width="1680" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="0.988" - inkscape:cx="72.5" - inkscape:cy="250" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:current-layer="svg2646" /> - <defs - id="defs12"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 250 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="145 : 250 : 1" - inkscape:persp3d-origin="72.5 : 166.66667 : 1" - id="perspective3575" /> - <linearGradient - id="linearGradient3712"> - <stop - offset="0" - style="stop-color:#ffffff;stop-opacity:1" - id="stop3714" /> - <stop - offset="1" - style="stop-color:#ff0000;stop-opacity:1" - id="stop3716" /> - </linearGradient> - <linearGradient - gradientTransform="translate(-32.50255,-122.50501)" - gradientUnits="userSpaceOnUse" - xlink:href="#linearGradient3712" - id="linearGradient2487" - y2="226.65366" - x2="140.1927" - y1="226.65366" - x1="69.85585" /> - <linearGradient - gradientTransform="translate(-32.50255,-122.74776)" - gradientUnits="userSpaceOnUse" - xlink:href="#linearGradient3712" - id="linearGradient2494" - y2="174.22649" - x2="140.1927" - y1="174.22649" - x1="69.85585" /> - <linearGradient - gradientTransform="translate(-32.502549,-96.17004)" - gradientUnits="userSpaceOnUse" - xlink:href="#linearGradient3712" - id="linearGradient2501" - y2="226.65366" - x2="140.1927" - y1="226.65366" - x1="69.85585" /> - <linearGradient - gradientTransform="translate(-32.502549,-96.412795)" - gradientUnits="userSpaceOnUse" - xlink:href="#linearGradient3712" - id="linearGradient2508" - y2="174.22649" - x2="140.1927" - y1="174.22649" - x1="69.85585" /> - <linearGradient - gradientUnits="userSpaceOnUse" - xlink:href="#linearGradient3166" - id="linearGradient3172" - y2="22" - x2="74" - y1="22" - x1="0" /> - <linearGradient - id="linearGradient3166"> - <stop - offset="0" - style="stop-color:#ffffff;stop-opacity:1" - id="stop3168" /> - <stop - offset="1" - style="stop-color:#ff0000;stop-opacity:1" - id="stop3170" /> - </linearGradient> - <inkscape:perspective - id="perspective2511" - inkscape:persp3d-origin="72.5 : 134.66667 : 1" - inkscape:vp_z="145 : 202 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 202 : 1" - sodipodi:type="inkscape:persp3d" /> - </defs> - <rect - width="143" - height="440" - x="1" - y="30" - id="rect4" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> - <rect - width="145" - height="29" - x="0" - y="0" - id="rect6" - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 0.5,470.5 L 0.5,486.5 L 3.5,493.5 L 8.5,497.5 L 15,500 L 129,500 L 136,497.5 L 142,492.5 L 145,484.5 L 145,470.5 L 0.5,470.5 z" - id="path2656" - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> - <path - d="M 79.87,39.071 C 90.59,39.071 90.59,39.071 90.59,39.071 L 94.275,41.751 L 96.62,45.771 L 96.62,68.551 L 94.275,72.571 L 90.59,75.251 L 79.2,75.251 L 79.2,75.251 L 79.2,77.931 L 65.8,77.931 L 65.8,75.251 L 54.41,75.251 L 50.725,72.571 L 48.38,68.551 L 48.38,45.771 L 50.725,41.751 L 54.41,39.071 L 65.13,39.071 L 65.13,42.421 L 79.87,42.421 L 79.87,39.071 z" - id="path10" - style="fill:#101010;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-opacity:1" /> - <path - d="M 37.998275,87.666 L 41.331775,87.666 L 41.331775,90.3328 L 45.998675,90.3328 L 45.998675,87.666 L 107.00172,87.666 L 107.00172,101 L 45.998675,101 L 45.998675,98.3332 L 41.331775,98.3332 L 41.331775,101 L 37.998275,101 L 37.998275,87.666 z" - id="path3338" - style="fill:#181818;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 37.998273,176.14967 L 41.331773,176.14967 L 41.331773,178.81647 L 45.998673,178.81647 L 45.998673,176.14967 L 107.00173,176.14967 L 107.00173,189.48367 L 45.998673,189.48367 L 45.998673,186.81687 L 41.331773,186.81687 L 41.331773,189.48367 L 37.998273,189.48367 L 37.998273,176.14967 z" - id="path2400" - style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 37.998272,197.666 L 41.331772,197.666 L 41.331772,200.3328 L 45.998672,200.3328 L 45.998672,197.666 L 107.00173,197.666 L 107.00173,211 L 45.998672,211 L 45.998672,208.3332 L 41.331772,208.3332 L 41.331772,211 L 37.998272,211 L 37.998272,197.666 z" - id="path2402" - style="fill:#383838;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 65.024798,147.46733 C 73.024798,147.46733 101.5248,147.46733 101.5248,147.46733 C 101.5248,147.46733 103.5907,148.71061 104.2748,149.46733 C 104.97354,150.24024 106.0248,152.46733 106.0248,152.46733 L 106.0248,161.96733 C 106.0248,161.96733 104.91627,163.81416 104.2748,164.46733 C 103.56002,165.19514 101.5248,166.46733 101.5248,166.46733 L 65.024798,166.46733 L 65.024798,166.46733 L 65.024798,168.46733 L 55.024798,168.46733 L 55.024798,166.46733 L 46.524797,166.46733 C 46.524797,166.46733 44.489577,165.58526 43.774797,164.85745 C 43.133327,164.20428 42.024797,162.96733 42.024797,162.96733 L 41.894287,160.96733 L 38.524797,160.96733 L 38.524797,162.96733 L 36.274797,162.96733 L 36.274797,152.96733 L 38.524797,152.96733 L 38.524797,154.96733 L 42.024797,154.96733 L 42.024797,152.46733 C 42.024797,152.46733 43.076067,150.24024 43.774797,149.46733 C 44.458897,148.71061 46.524797,147.46733 46.524797,147.46733 L 55.024798,147.46733 L 55.024798,149.96733 L 65.024798,149.96733 L 65.024798,147.46733 z" - id="path2653" - style="fill:#282828;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <g - transform="translate(31.1154,-155.6764)" - id="g157" - style="fill:#404040;fill-opacity:1"> - <g - transform="matrix(0.6667,0,0,0.6667,9.706356,385.54113)" - id="g159" - style="fill:#404040;fill-opacity:1"> - <path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - id="path161" - style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1.50000000000000000;stroke-opacity:1" /> - <path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - id="path163" - style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1.50000000000000000;stroke-opacity:1" /> - </g> - </g> - <path - d="M 74.3349,228.9986 C 85.0021,228.9986 85.0021,228.9986 85.0021,228.9986 C 85.0021,228.9986 87.75677,230.65638 88.66895,231.6654 C 89.60065,232.696 91.0024,235.6656 91.0024,235.6656 L 91.0024,248.3329 C 91.0024,248.3329 89.5243,250.79546 88.66895,251.6664 C 87.71587,252.63687 85.0021,254.3332 85.0021,254.3332 L 73.6682,254.3332 L 73.6682,254.3332 L 73.6682,257 L 60.3342,257 L 60.3342,254.3332 L 49.0003,254.3332 C 49.0003,254.3332 46.28654,252.63687 45.33345,251.6664 C 44.47811,250.79546 43,248.3329 43,248.3329 L 43,235.6656 C 43,235.6656 44.40176,232.696 45.33345,231.6654 C 46.24563,230.65638 49.0003,228.9986 49.0003,228.9986 L 59.6675,228.9986 L 59.6675,232.3321 L 74.3349,232.3321 L 74.3349,228.9986 z" - id="path165" - style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <g - transform="translate(-28.312039,-124.83704)" - id="g171" - style="fill:#484848;fill-opacity:1;stroke:none"> - <path - d="M 65.312039,389.50304 L 68.645539,389.50304 L 68.645539,392.16984 L 73.312439,392.16984 L 73.312439,389.50304 L 134.31549,389.50304 L 134.31549,402.83704 L 73.312439,402.83704 L 73.312439,400.17024 L 68.645539,400.17024 L 68.645539,402.83704 L 65.312039,402.83704 L 65.312039,389.50304 z" - id="path173" - style="fill:#484848;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - </g> - <path - d="M 47.3349,288.3314 C 58.0021,288.3314 58.0021,288.3314 58.0021,288.3314 L 61.66895,290.9982 L 64.0024,294.9984 L 64.0024,317.6662 L 61.66895,321.6664 L 58.0021,324.3332 L 46.6682,324.3332 L 46.6682,324.3332 L 46.6682,327 L 33.3342,327 L 33.3342,324.3332 L 22.0003,324.3332 L 18.33345,321.6664 L 16,317.6662 L 16,294.9984 L 18.33345,290.9982 L 22.0003,288.3314 L 32.6675,288.3314 L 32.6675,291.6649 L 47.3349,291.6649 L 47.3349,288.3314 z" - id="path179" - style="fill:#505050;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <path - d="M 113.56688,288.3314 C 124.23408,288.3314 124.23408,288.3314 124.23408,288.3314 L 127.90093,290.9982 L 130.23438,294.9984 L 130.23438,317.6662 L 127.90093,321.6664 L 124.23408,324.3332 L 112.90018,324.3332 L 112.90018,324.3332 L 112.90018,327 L 99.566179,327 L 99.566179,324.3332 L 88.232269,324.3332 L 84.565419,321.6664 L 82.231969,317.6662 L 82.231969,294.9984 L 84.565419,290.9982 L 88.232269,288.3314 L 98.899479,288.3314 L 98.899479,291.6649 L 113.56688,291.6649 L 113.56688,288.3314 z" - id="path191" - style="fill:#585858;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> - <g - id="g3433" - style="fill:#202020;fill-opacity:1;stroke:none" - transform="translate(1.875,1.4412955)"> - <path - d="M 85.625,121.285 L 93.875,121.285 L 93.875,124.285 L 91.875,124.285 L 91.875,122.785 L 86.625,122.785" - id="path2594" - style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 85.625,135.035 L 93.875,135.035 L 93.875,132.035 L 91.875,132.035 L 91.875,133.535 L 86.625,133.535" - id="path2596" - style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 74.625,118.785 C 82.625,118.785 82.625,118.785 82.625,118.785 C 82.625,118.785 84.690899,120.02828 85.375,120.785 C 86.073736,121.55791 87.125,123.785 87.125,123.785 L 87.125,133.285 C 87.125,133.285 86.016475,135.13183 85.375,135.785 C 84.66022,136.51281 82.625,137.785 82.625,137.785 L 74.125,137.785 L 74.125,137.785 L 74.125,139.785 L 64.125,139.785 L 64.125,137.785 L 55.625,137.785 C 55.625,137.785 53.58978,136.51281 52.875,135.785 C 52.233525,135.13183 51.125,133.285 51.125,133.285 L 51.125,123.785 C 51.125,123.785 52.176264,121.55791 52.875,120.785 C 53.559101,120.02828 55.625,118.785 55.625,118.785 L 63.625,118.785 L 63.625,121.285 L 74.625,121.285 L 74.625,118.785 z" - id="path2598" - style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> -</svg> diff --git a/images/de/sensors/toppos.svg b/images/de/sensors/toppos.svg new file mode 100644 index 0000000..7b9e287 --- /dev/null +++ b/images/de/sensors/toppos.svg @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="105" + height="21" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff0000;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" + id="path10" + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#a00000;stroke-width:2;stroke-opacity:1" /> + <text + id="text12" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="52" + y="15.5" + id="tspan14" + style="font-size:16px">top</tspan> + </text> +</svg> diff --git a/images/de/templates/audiooff.svg b/images/de/templates/audiooff.svg index 5bc2b0c..91ee514 100644 --- a/images/de/templates/audiooff.svg +++ b/images/de/templates/audiooff.svg @@ -1,149 +1,52 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.0" width="75" height="54" - id="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docname="audio.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - version="1.0"> - <metadata - id="metadata16"> - <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> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="10" - inkscape:cx="35.996358" - inkscape:cy="34.562517" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> + id="svg2"> <defs id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 10.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="105 : 10.5 : 1" - inkscape:persp3d-origin="52.5 : 7 : 1" - id="perspective18" /> <linearGradient id="linearGradient3166"> <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168" /> + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> <stop - style="stop-color:#ffff00;stop-opacity:1;" - offset="1" - id="stop3170" /> + id="stop3170" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> </linearGradient> <linearGradient - xlink:href="#linearGradient3166" - id="linearGradient3172" x1="0.94254935" y1="-31.669659" x2="94.577461" y2="20.434471" + id="linearGradient3172" + xlink:href="#linearGradient3166" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7750554,0,0,0.9997979,0.8784441,32.623865)" /> - <inkscape:perspective - id="perspective2455" - inkscape:persp3d-origin="27.5 : 18.333333 : 1" - inkscape:vp_z="55 : 27.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 27.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <inkscape:perspective - id="perspective2572" - inkscape:persp3d-origin="27.5 : 18.333333 : 1" - inkscape:vp_z="55 : 27.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 27.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <inkscape:perspective - id="perspective2777" - inkscape:persp3d-origin="27.5 : 18.333333 : 1" - inkscape:vp_z="55 : 27.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 27.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <inkscape:perspective - id="perspective2876" - inkscape:persp3d-origin="27.5 : 18.333333 : 1" - inkscape:vp_z="55 : 27.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 27.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <inkscape:perspective - id="perspective2978" - inkscape:persp3d-origin="27.5 : 18.333333 : 1" - inkscape:vp_z="55 : 27.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 27.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <inkscape:perspective - id="perspective3093" - inkscape:persp3d-origin="27.5 : 18.333333 : 1" - inkscape:vp_z="55 : 27.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 27.5 : 1" - sodipodi:type="inkscape:persp3d" /> - <inkscape:perspective - id="perspective3274" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> </defs> <path - style="fill:url(#linearGradient3172);fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1.76056659;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 10,0.88028324 L 74.119717,0.88028324 L 74.119717,53.119717 L 10,53.119717 L 10,44.5 L 0.5,44.5 L 0.5,38.5 L 10,38.5 L 10,30 L 0.5,30 L 0.5,24 L 10,24 L 10,15.5 L 0.5,15.5 L 0.5,9.5 L 10,9.5 L 10,0.88028324 z" + d="M 1,0.88028324 L 74.119717,0.88028324 L 74.119717,53.119717 L 1,53.119717 L 1,0.88028324 z" id="path9" - sodipodi:nodetypes="ccccccccccccccccc" /> + style="fill:url(#linearGradient3172);fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1.76056659;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <g + transform="translate(10.125,-0.501)" id="clipping-audio" - display="block" - transform="translate(14.818,-0.501)" style="display:block"> <g id="g2758" - display="inline" style="display:inline"> <g id="g2760"> <polygon - id="polygon2762" points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " + id="polygon2762" style="fill:#ffffff;stroke:#010101;stroke-width:3.5" /> <polyline id="polyline2764" @@ -152,9 +55,8 @@ </g> </g> <path - id="path2766" - display="inline" d="M 28.325,39.697 C 27.814,38.24 25.115,38.624 23.915,39.627 C 21.515,41.636 23.491,44.023 26.239,42.904 C 27.803,42.266 28.835,41.156 28.325,39.697 z" + id="path2766" style="fill:#010101;stroke:#010101;stroke-width:3.5;display:inline" /> <line id="line2768" @@ -165,9 +67,8 @@ display="inline" style="fill:none;stroke:#010101;stroke-width:2.25;display:inline" /> <polygon - id="polygon2770" points="35.047,25.036 27.838,28.595 27.838,24.728 35.047,21.166 35.047,25.036 " - display="inline" + id="polygon2770" style="fill:#010101;display:inline" /> </g> </svg> diff --git a/images/de/templates/descriptionoff.svg b/images/de/templates/descriptionoff.svg new file mode 100644 index 0000000..12e36fb --- /dev/null +++ b/images/de/templates/descriptionoff.svg @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="75" + height="54" + id="svg2"> + <defs + id="defs5"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0.94254935" + y1="-31.669659" + x2="104.37702" + y2="20.434471" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7083638,0,0,1.0012565,0.1338084,32.632067)" /> + </defs> + <path + d="M 0.84217214,0.84217214 L 74.157828,0.84217214 L 74.157828,53.157828 L 0.84217214,53.157828 L 0.84217214,0.84217214 z" + id="path9" + style="fill:url(#linearGradient3172);fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 22,48 L 22,6 L 43,6 L 53,17 L 53,48 L 22,48 z" + id="path3199" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#00000f;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" /> + <path + d="M 30.25,31 C 44.75,31 44.75,31 44.75,31" + id="path3163" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.25,37 C 44.75,37 44.75,37 44.75,37" + id="path3165" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 30.25,25 C 44.75,25 44.75,25 44.75,25" + id="path3167" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.49999976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 41.75,6.7500001 L 41.75,17 L 51.25,17" + id="path3201" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> +</svg> diff --git a/images/de/templates/templatesgroup.svg b/images/de/templates/templatesgroup.svg index ad4afa3..a5d5803 100644 --- a/images/de/templates/templatesgroup.svg +++ b/images/de/templates/templatesgroup.svg @@ -1,593 +1,770 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> - <!-- Created with Inkscape (http://www.inkscape.org/) --> - <svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - version="1.0" - width="145" - height="500" - id="svg2"> - <defs - id="defs98"> - <linearGradient - id="linearGradient3245"> - <stop - id="stop3247" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3249" - style="stop-color:#ffff00;stop-opacity:0" - offset="1" /> - </linearGradient> - <linearGradient - x1="11.45634" - y1="109.14062" - x2="63.081341" - y2="109.14062" - id="linearGradient3251" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="4.5188398" - y1="188.5" - x2="70.018837" - y2="188.5" - id="linearGradient3259" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="13.33134" - y1="270.5" - x2="61.206341" - y2="270.5" - id="linearGradient3267" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="12.124999" - y1="392.34818" - x2="80.875" - y2="392.34818" - id="linearGradient3275" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="47.393524" - y1="52.893875" - x2="97.606476" - y2="52.893875" - id="linearGradient3283" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="47.715" - y1="445.94196" - x2="97.284996" - y2="445.94196" - id="linearGradient3291" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="82.356911" - y1="392.34818" - x2="132.61295" - y2="392.34818" - id="linearGradient3307" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="82.928009" - y1="248.60938" - x2="134.55301" - y2="248.60938" - id="linearGradient3315" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="75.990517" - y1="188.5" - x2="141.49051" - y2="188.5" - id="linearGradient3323" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="82.928017" - y1="119.21875" - x2="134.55301" - y2="119.21875" - id="linearGradient3331" - xlink:href="#linearGradient3245" - gradientUnits="userSpaceOnUse" /> - </defs> - <path - d="M 0.5594301,0.5 L 0.49711997,486 C 1.5384064,488.33333 2.5796929,490.66667 3.6209793,493 C 5.2455992,494.33333 6.8702191,495.66667 8.494839,497 C 10.715355,497.66667 12.935872,498.33333 15.156388,499 L 128.9813,499 C 131.26413,498.33333 133.54695,497.66667 135.82978,497 C 137.81286,495.66667 139.79595,494.33333 141.77903,493 C 142.68698,490.66667 143.59493,488.33333 144.50288,486 L 144.54057,0.5 L 0.5594301,0.5 z" - id="path3201" - style="fill:#ffd000;fill-opacity:1;fill-rule:evenodd;stroke:#e0a000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <rect - width="123.61703" - height="0.14253192" - x="10.691486" - y="77.359131" - id="rect3987" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#e0a000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - width="123.61703" - height="0.14253192" - x="10.691486" - y="78.49942" - id="rect3989" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#fff080;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - width="123.61703" - height="0.14253192" - x="10.691486" - y="79.498322" - id="rect3991" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffc4;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - width="137.56932" - height="0.13955142" - x="3.7153397" - y="-28.931932" - transform="scale(1,-1)" - id="rect3993" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#e0a000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - width="137.56932" - height="0.13955142" - x="3.7153397" - y="-27.815523" - transform="scale(1,-1)" - id="rect3995" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#fff080;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - width="137.56932" - height="0.13955142" - x="3.7341847" - y="-474.77127" - transform="scale(1,-1)" - id="rect3999" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#e0a000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - width="137.56932" - height="0.13955142" - x="3.7341847" - y="-473.43195" - transform="scale(1,-1)" - id="rect4001" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#fff080;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 80.875,487.375 C 80.875,491.86231 77.125385,495.5 72.5,495.5 C 67.874615,495.5 64.125,491.86231 64.125,487.375 C 64.125,482.88769 67.874615,479.25 72.5,479.25 C 77.125385,479.25 80.875,482.88769 80.875,487.375 L 80.875,487.375 z" - id="path4003" - style="fill:#ff4040;fill-opacity:1;fill-rule:nonzero;stroke:#ff4040;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <text - xml:space="preserve" - style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"><tspan - x="68" - y="492" - id="tspan4007" - style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans">X</tspan></text> - <text - style="font-size:12px;text-align:center;text-anchor:middle;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"> - <tspan - x="72" - y="21.5" - id="tspan2796" - style="font-size:20px">Vorlagen</tspan> - </text> - <path - d="M 48.060226,35.454452 L 96.939774,35.454452 L 96.939774,70.3333 L 48.060226,70.3333 L 48.060226,35.454452 z" - id="path2685" - style="fill:url(#linearGradient3283);fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1.33340001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 89.277448,374.93417 L 132.02606,374.93417 L 132.02606,409.7622 L 89.277448,409.7622 L 89.277448,404.01542 L 82.943798,404.01542 L 82.943798,400.01522 L 89.277448,400.01522 L 89.277448,394.34827 L 82.943798,394.34827 L 82.943798,390.34807 L 89.277448,390.34807 L 89.277448,384.68113 L 82.943798,384.68113 L 82.943798,380.68093 L 89.277448,380.68093 L 89.277448,374.93417 z" - id="path3254" - style="fill:url(#linearGradient3307);fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1.17376971;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <g - transform="matrix(0.6667,0,0,0.6667,90.489602,374.01326)" - id="g3256" - style="display:block"> - <g - id="g3258" - style="display:inline"> - <g - id="g3260"> - <polygon - points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " - id="polygon3262" - style="fill:#ffffff;stroke:#010101;stroke-width:3.5" /> - <polyline - id="polyline3264" - points="43.818,18.027 31.874,18.027 31.874,6.088 " - style="fill:none;stroke:#010101;stroke-width:3.5" /> - </g> - </g> - <path - d="M 28.325,39.697 C 27.814,38.24 25.115,38.624 23.915,39.627 C 21.515,41.636 23.491,44.023 26.239,42.904 C 27.803,42.266 28.835,41.156 28.325,39.697 z" - id="path3266" - style="fill:#010101;stroke:#010101;stroke-width:3.5;display:inline" /> - <line - id="line3268" - y2="26.966999" - y1="39.806" - x2="28.941" - x1="28.941" - display="inline" - style="fill:none;stroke:#010101;stroke-width:2.25;display:inline" /> - <polygon - points="35.047,25.036 27.838,28.595 27.838,24.728 35.047,21.166 35.047,25.036 " - id="polygon3270" - style="fill:#010101;display:inline" /> - </g> - <path - d="M 79.869997,426.51197 C 90.589997,426.51197 90.589997,426.51197 90.589997,426.51197 L 94.274998,429.19197 L 96.619998,433.21197 L 96.619998,455.99197 L 94.274998,460.01197 L 90.589997,462.69197 L 79.199997,462.69197 L 79.199997,462.69197 L 79.199997,465.37197 L 65.800008,465.37197 L 65.800008,462.69197 L 54.410003,462.69197 L 50.725003,460.01197 L 48.380002,455.99197 L 48.380002,433.21197 L 50.725003,429.19197 L 54.410003,426.51197 L 65.130007,426.51197 L 65.130007,429.86197 L 79.869997,429.86197 L 79.869997,426.51197 z" - id="path2714" - style="fill:url(#linearGradient3291);fill-opacity:1;stroke:#c0a000;stroke-width:1.33000004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <text - style="font-size:12.06000042px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="72" - y="444" - id="tspan2718" - style="font-size:12px">hide</tspan> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> + <!-- Created with Inkscape (http://www.inkscape.org/) --> + <svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="145" + height="500" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3245"> + <stop + id="stop3247" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3249" + style="stop-color:#ffff00;stop-opacity:0" + offset="1" /> + </linearGradient> + <linearGradient + x1="47" + y1="445" + x2="97" + y2="445" + id="linearGradient3291" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="11" + y1="109" + x2="63" + y2="109" + id="linearGradient3251" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="4" + y1="188" + x2="70" + y2="188" + id="linearGradient3259" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="13" + y1="270" + x2="61" + y2="270" + id="linearGradient3267" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="75" + y1="188" + x2="141" + y2="188" + id="linearGradient3323" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="82" + y1="248" + x2="134" + y2="248" + id="linearGradient3315" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="12" + y1="392" + x2="80" + y2="392" + id="linearGradient3275" + xlink:href="#linearGradient3245" /> + <linearGradient + x1="47" + y1="52" + x2="97" + y2="52" + id="linearGradient3283" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="82" + y1="392" + x2="132" + y2="392" + id="linearGradient3307" + xlink:href="#linearGradient3245" /> + <linearGradient + x1="0" + y1="-31" + x2="104" + y2="20" + id="linearGradient3172" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="-31" + x2="104" + y2="20" + id="linearGradient2698" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="82" + y1="119" + x2="134" + y2="119" + id="linearGradient3331" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="47" + y1="52" + x2="97" + y2="52" + id="linearGradient2803" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="47.393524" + y1="52.893875" + x2="97.606476" + y2="52.893875" + id="linearGradient2686" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-39.41375,0)" /> + <linearGradient + x1="82.928017" + y1="119.21875" + x2="134.55301" + y2="119.21875" + id="linearGradient2684" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,94)" /> + <linearGradient + x1="0.94254935" + y1="-31.669659" + x2="104.37702" + y2="20.434471" + id="linearGradient2682" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7083638,0,0,1.0012565,0.1338084,32.632067)" /> + <linearGradient + x1="0.94254935" + y1="-31.669659" + x2="104.37702" + y2="20.434471" + id="linearGradient2680" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7083638,0,0,1.0012565,0.1338084,32.632067)" /> + <linearGradient + x1="82.356911" + y1="392.34818" + x2="132.61295" + y2="392.34818" + id="linearGradient2678" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="47.393524" + y1="52.893875" + x2="97.606476" + y2="52.893875" + id="linearGradient2676" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-39.41375,0)" /> + <linearGradient + x1="12.124999" + y1="392.34818" + x2="80.875" + y2="392.34818" + id="linearGradient2674" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="82.928009" + y1="248.60938" + x2="134.55301" + y2="248.60938" + id="linearGradient2672" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,94)" /> + <linearGradient + x1="75.990517" + y1="188.5" + x2="141.49051" + y2="188.5" + id="linearGradient2670" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,94)" /> + <linearGradient + x1="13.33134" + y1="270.5" + x2="61.206341" + y2="270.5" + id="linearGradient2668" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,94)" /> + <linearGradient + x1="4.5188398" + y1="188.5" + x2="70.018837" + y2="188.5" + id="linearGradient2666" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,94)" /> + <linearGradient + x1="11.45634" + y1="109.14062" + x2="63.081341" + y2="109.14062" + id="linearGradient2664" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,94)" /> + <linearGradient + x1="47.715" + y1="445.94196" + x2="97.284996" + y2="445.94196" + id="linearGradient2662" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2656"> + <stop + id="stop2658" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2660" + style="stop-color:#ffff00;stop-opacity:0" + offset="1" /> + </linearGradient> + <linearGradient + x1="47.393524" + y1="54.202423" + x2="97.606476" + y2="54.202423" + id="linearGradient3338" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="47.415104" + y1="99.202805" + x2="97.584892" + y2="99.202805" + id="linearGradient3372" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="47.269257" + y1="146.11281" + x2="97.730743" + y2="146.11281" + id="linearGradient3388" + xlink:href="#linearGradient3245" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + d="M 0.5,0.5 L 0.5,486 C 1.5,488.5 2.5,490.5 3.5,493 C 5,494.5 6.5,495.5 8.5,497 C 10.5,497.5 13,498.5 15,499 L 129,499 C 131,498.5 133.5,497.5 135.5,497 C 137.5,495.5 139.5,494.5 141.5,493 C 142.5,490.5 143.5,488.5 144.5,486 L 144.5,0.5 L 0.5,0.5 z" + id="path22" + style="fill:#ffd000;fill-opacity:1;fill-rule:evenodd;stroke:#e0a000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <rect + width="123" + height="0.14" + x="10" + y="173" + id="rect3987" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#e0a000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + width="123" + height="0.14" + x="10" + y="174" + id="rect3989" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#fff080;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + width="123" + height="0.14" + x="10" + y="175" + id="rect3991" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffc4;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + width="137" + height="0.14" + x="3" + y="-28" + transform="scale(1,-1)" + id="rect3993" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#e0a000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + width="137" + height="0.14" + x="3" + y="-27" + transform="scale(1,-1)" + id="rect3995" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#fff080;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + width="137" + height="0.14" + x="3" + y="-474" + transform="scale(1,-1)" + id="rect3999" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#e0a000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + width="137" + height="0.14" + x="3" + y="-473" + transform="scale(1,-1)" + id="rect4001" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#fff080;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 80,487 C 80,491 77,495 72,495 C 67,495 64,491 64,487 C 64,482 67,479 72,479 C 77,479 80,482 80,487 L 80,487 z" + id="path4003" + style="fill:#ff4040;fill-opacity:1;fill-rule:nonzero;stroke:#ff4040;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + id="text32" + xml:space="preserve" + style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"><tspan + x="67" + y="491" + id="tspan4007" + style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans">X</tspan></text> + <text + id="text35" + style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="22" + y="21" + id="tspan2796" + style="font-size:20px">Vorlagen</tspan> + </text> + <path + d="M 79,426 C 90,426 90,426 90,426 L 94,429 L 96,433 L 96,455 L 94,460 L 90,462 L 79,462 L 79,462 L 79,465 L 65,465 L 65,462 L 54,462 L 50,460 L 48,455 L 48,433 L 50,429 L 54,426 L 65,426 L 65,429 L 79,429 L 79,426 z" + id="path2714" + style="fill:url(#linearGradient3291);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + id="text42" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="72" + y="443" + id="tspan2722" + style="font-size:12px">Blöcke</tspan> </text> <text style="font-size:12.06000042px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="72" - y="457" + y="456" id="tspan2722" - style="font-size:12px">blocks</tspan> - </text> - <rect - width="123.61703" - height="0.14253192" - x="10.691486" - y="415.35913" - id="rect3434" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#e0a000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - width="123.61703" - height="0.14253192" - x="10.691486" - y="416.49945" - id="rect3436" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#fff080;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <rect - width="123.61703" - height="0.14253192" - x="10.691486" - y="417.49835" - id="rect3438" - style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffc4;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <g - transform="matrix(0.5,0,0,0.5,59.18725,38.91364)" - id="activity-journal" - style="stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:block"> - <path - d="M 45.866,44.669 C 45.866,47.18 44.338,49 41.534,49 L 12.077,49 L 12.077,6 L 41.535,6 C 43.685,6 45.867,8.154 45.867,10.33 L 45.866,44.669 L 45.866,44.669 z" - id="path3155" - style="fill:#ffffff;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <line - id="line3157" - y2="48.881001" - y1="6.1209998" - x2="21.341" - x1="21.341" - style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 7.384,14.464 C 7.384,14.464 9.468,15.159 11.554,15.159 C 13.64,15.159 15.727,14.464 15.727,14.464" - id="path3159" - style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 7.384,28.021 C 7.384,28.021 9.296,28.716 11.729,28.716 C 14.162,28.716 15.728,28.021 15.728,28.021" - id="path3161" - style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 7.384,41.232 C 7.384,41.232 9.12,41.927 11.902,41.927 C 14.683,41.927 15.727,41.232 15.727,41.232" - id="path3163" - style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> - <path - d="M 35.39384,88.28125 L 29.48759,88.28125 L 29.48759,90.15625 L 21.23759,90.15625 L 21.23759,88.28125 L 15.33134,88.28125 C 15.33134,88.28125 13.87478,89.25949 13.36259,89.78125 C 12.956,90.19543 11.95634,92.03125 11.95634,92.03125 L 11.95634,126.24625 C 11.95634,126.24625 12.196385,127.49447 12.518825,127.74812 C 12.830315,127.99315 14.20628,128.59375 14.20628,128.59375 L 21.70634,128.59375 L 21.70634,130 L 29.20634,130 L 29.20634,128.59375 L 62.58134,128.59375 L 62.58134,89.78125 L 37.45634,89.78125 L 36.50516,89.03529 L 35.39384,88.28125 z" - id="path4158" - style="fill:url(#linearGradient3251);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 15.61259,105.37364 L 43.00805,105.37364 L 43.00805,125.04148 L 15.61259,125.04148 L 15.61259,105.37364 z" - id="path4162" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <polygon - points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " - transform="matrix(0.375,0,0,0.375,42.63809,103.40725)" - id="polygon2963" - style="fill:#ffffff;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" /> - <polyline - style="fill:none;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" - points="43.818,18.027 31.874,18.027 31.874,6.088 " - id="polyline2965" - transform="matrix(0.375,0,0,0.375,42.63809,103.40725)" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="49.341213" - x2="56.466213" - y1="113.25099" - y2="113.25099" - id="line2967" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="49.341213" - x2="56.466213" - y1="115.87599" - y2="115.87599" - id="line2969" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="49.341213" - x2="56.466213" - y1="118.50099" - y2="118.50099" - id="line2971" /> - <path - d="M 28.45634,157.5625 L 22.55009,157.5625 L 22.55009,159.4375 L 14.30009,159.4375 L 14.30009,157.5625 L 8.39384,157.5625 C 8.39384,157.5625 6.93728,158.54076 6.42509,159.0625 C 6.0185,159.47668 5.01884,161.3125 5.01884,161.3125 L 5.01884,215.6875 C 5.01884,215.6875 5.258885,217.30885 5.581325,217.5625 C 5.892815,217.80752 7.26878,218.3125 7.26878,218.3125 L 14.76884,218.3125 L 14.76884,219.4375 L 22.26884,219.4375 L 22.26884,218.3125 L 69.51884,218.3125 L 69.51884,159.0625 L 30.51884,159.0625 L 29.56766,158.31653 L 28.45634,157.5625 z" - id="path4390" - style="fill:url(#linearGradient3259);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 8.67509,174.65489 L 36.07055,174.65489 L 36.07055,194.32273 L 8.67509,194.32273 L 8.67509,174.65489 z" - id="path4394" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 38.67509,174.65479 L 66.07055,174.65479 L 66.07055,194.32263 L 38.67509,194.32263 L 38.67509,174.65479 z" - id="path2418" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <polygon - points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " - transform="matrix(0.375,0,0,0.375,4.95059,195.5635)" - id="polygon4402" - style="fill:#ffffff;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" /> - <polyline - style="fill:none;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" - points="43.818,18.027 31.874,18.027 31.874,6.088 " - id="polyline4404" - transform="matrix(0.375,0,0,0.375,4.95059,195.5635)" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="11.653712" - x2="18.778713" - y1="205.40726" - y2="205.40726" - id="line4406" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="11.653712" - x2="18.778713" - y1="208.03226" - y2="208.03226" - id="line4408" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="11.653712" - x2="18.778713" - y1="210.65726" - y2="210.65726" - id="line4410" /> - <polygon - points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " - transform="matrix(0.375,0,0,0.375,34.95059,195.5635)" - id="polygon2582" - style="fill:#ffffff;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" /> - <polyline - style="fill:none;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" - points="43.818,18.027 31.874,18.027 31.874,6.088 " - id="polyline2584" - transform="matrix(0.375,0,0,0.375,34.95059,195.5635)" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="41.653713" - x2="48.778713" - y1="205.40726" - y2="205.40726" - id="line2586" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="41.653713" - x2="48.778713" - y1="208.03226" - y2="208.03226" - id="line2588" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="41.653713" - x2="48.778713" - y1="210.65726" - y2="210.65726" - id="line2590" /> - <path - d="M 37.26884,227.75 L 31.36259,227.75 L 31.36259,229.4375 L 23.11259,229.4375 L 23.11259,227.75 L 17.20634,227.75 C 17.20634,227.75 15.749783,228.72825 15.23759,229.25 C 14.830993,229.66418 13.83134,231.5 13.83134,231.5 L 13.83134,309.125 C 13.83134,309.125 14.071389,310.93385 14.393825,311.1875 C 14.705314,311.43252 16.081282,312.125 16.081282,312.125 L 23.58134,312.125 L 23.58134,313.25 L 31.08134,313.25 L 31.08134,312.125 L 60.70634,312.125 L 60.70634,229.25 L 39.33134,229.25 L 38.380155,228.50404 L 37.26884,227.75 z" - id="path4690" - style="fill:url(#linearGradient3267);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 106.86551,88.28124 L 100.95927,88.28124 L 100.95927,90.15625 L 92.709265,90.15625 L 92.709265,88.28124 L 86.803015,88.28124 C 86.803015,88.28124 85.346455,89.2595 84.834265,89.78124 C 84.427675,90.19543 83.428015,92.03124 83.428015,92.03124 L 83.428015,146.40625 C 83.428015,146.40625 83.66806,147.6526 83.9905,147.90625 C 84.30199,148.15129 85.677955,148.65625 85.677955,148.65625 L 93.178015,148.65625 L 93.178015,150.15625 L 100.67802,150.15625 L 100.67802,148.65625 L 134.05301,148.65625 L 134.05301,89.78124 L 108.92802,89.78124 L 107.97684,89.03528 L 106.86551,88.28124 z" - id="path5171" - style="fill:url(#linearGradient3331);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 87.084265,105.37364 L 114.47973,105.37364 L 114.47973,125.04147 L 87.084265,125.04147 L 87.084265,105.37364 z" - id="path5175" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <polygon - points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " - transform="matrix(0.375,0,0,0.375,114.10977,103.40724)" - id="polygon5183" - style="fill:#ffffff;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" /> - <polyline - style="fill:none;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" - points="43.818,18.027 31.874,18.027 31.874,6.088 " - id="polyline5185" - transform="matrix(0.375,0,0,0.375,114.10977,103.40724)" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="120.81288" - x2="127.93788" - y1="113.25101" - y2="113.25101" - id="line5187" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="120.81288" - x2="127.93788" - y1="115.87601" - y2="115.87601" - id="line5189" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="120.81288" - x2="127.93788" - y1="118.50101" - y2="118.50101" - id="line5191" /> - <path - d="M 87.084265,126.83216 L 114.47973,126.83216 L 114.47973,146.49999 L 87.084265,146.49999 L 87.084265,126.83216 z" - id="path2425" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <polygon - points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " - transform="matrix(0.375,0,0,0.375,113.96295,125.10807)" - id="polygon2433" - style="fill:#ffffff;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" /> - <polyline - style="fill:none;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" - points="43.818,18.027 31.874,18.027 31.874,6.088 " - id="polyline2435" - transform="matrix(0.375,0,0,0.375,113.96295,125.10807)" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="120.66608" - x2="127.79108" - y1="134.95181" - y2="134.95181" - id="line2437" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="120.66608" - x2="127.79108" - y1="137.57681" - y2="137.57681" - id="line2439" /> - <line - style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - display="inline" - x1="120.66608" - x2="127.79108" - y1="140.20181" - y2="140.20181" - id="line2441" /> - <path - d="M 99.928015,157.5625 L 94.021765,157.5625 L 94.021765,159.4375 L 85.771765,159.4375 L 85.771765,157.5625 L 79.865515,157.5625 C 79.865515,157.5625 78.408955,158.54075 77.896765,159.0625 C 77.490175,159.47668 76.490515,161.3125 76.490515,161.3125 L 76.490515,215.6875 C 76.490515,215.6875 76.73056,216.93385 77.053,217.1875 C 77.36449,217.43253 78.740455,217.9375 78.740455,217.9375 L 86.240515,217.9375 L 86.240515,219.4375 L 93.740515,219.4375 L 93.740515,217.9375 L 140.99051,217.9375 L 140.99051,159.0625 L 101.99051,159.0625 L 101.03934,158.31654 L 99.928015,157.5625 z" - id="path5376" - style="fill:url(#linearGradient3323);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 80.146765,174.65489 L 107.54223,174.65489 L 107.54223,194.32273 L 80.146765,194.32273 L 80.146765,174.65489 z" - id="path5380" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 110.14676,174.65478 L 137.54223,174.65478 L 137.54223,194.32262 L 110.14676,194.32262 L 110.14676,174.65478 z" - id="path5382" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 80.146765,196.1134 L 107.54223,196.1134 L 107.54223,215.78125 L 80.146765,215.78125 L 80.146765,196.1134 z" - id="path2410" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 110.14676,196.1133 L 137.54223,196.1133 L 137.54223,215.78114 L 110.14676,215.78114 L 110.14676,196.1133 z" - id="path2412" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 106.86551,227.75 L 100.95926,227.75 L 100.95926,229.625 L 92.70926,229.625 L 92.70926,227.75 L 86.80301,227.75 C 86.80301,227.75 85.34645,228.72824 84.83426,229.25 C 84.42767,229.66418 83.42801,231.5 83.42801,231.5 L 83.42801,265.71499 C 83.42801,265.71499 83.668055,266.96322 83.990495,267.21687 C 84.301985,267.4619 85.67795,268.0625 85.67795,268.0625 L 93.17801,268.0625 L 93.17801,269.46875 L 100.67801,269.46875 L 100.67801,268.0625 L 134.05301,268.0625 L 134.05301,229.25 L 108.92801,229.25 L 107.97683,228.50404 L 106.86551,227.75 z" - id="path3036" - style="fill:url(#linearGradient3315);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 87.08426,244.84239 L 114.47972,244.84239 L 114.47972,264.51023 L 87.08426,264.51023 L 87.08426,244.84239 z" - id="path3040" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 43.999999,379.03568 L 36.124999,379.03568 L 36.124999,381.03568 L 25.124999,381.03568 L 25.124999,379.03568 L 17.249999,379.03568 C 17.249999,379.03568 15.307923,379.34001 14.624999,380.03568 C 14.082869,380.58793 12.749999,382.03568 12.749999,382.03568 L 12.749999,400.65568 C 12.749999,400.65568 13.070065,402.31999 13.49998,402.65818 C 13.915296,402.98489 15.749921,403.78568 15.749921,403.78568 L 25.749999,403.78568 L 25.749999,405.66068 L 35.749999,405.66068 L 35.749999,403.78568 L 75.74837,403.78568 L 75.75,398.03568 L 80.25,398.03568 L 80.25,395.28568 L 75.75,395.28568 L 75.75,390.78568 L 80.25,390.78568 L 80.25,388.03568 L 75.75,388.03568 L 75.75,382.03568 L 46.749999,382.03568 L 45.481752,380.03568 L 43.999999,379.03568 z" - id="path3037" - style="fill:url(#linearGradient3275);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <text - style="font-size:12.06000042px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="47" - y="396" - id="tspan3043" - style="font-size:12px">Klang</tspan> - </text> - <path - d="M 87.75,93.55 L 89.425,93.55 L 89.425,94.89 L 91.77,94.89 L 91.77,93.55 L 122.4225,93.55 L 122.4225,100.25 L 91.77,100.25 L 91.77,98.91 L 89.425,98.91 L 89.425,100.25 L 87.75,100.25 L 87.75,93.55 z" - id="path9" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 17.75,291.78471 L 19.425,291.78471 L 19.425,293.12471 L 21.77,293.12471 L 21.77,291.78471 L 52.4225,291.78471 L 52.4225,298.48471 L 21.77,298.48471 L 21.77,297.14471 L 19.425,297.14471 L 19.425,298.48471 L 17.75,298.48471 L 17.75,291.78471 z" - id="path3323" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 17.75,282.01942 L 19.425,282.01942 L 19.425,283.35942 L 21.77,283.35942 L 21.77,282.01942 L 52.4225,282.01942 L 52.4225,288.71942 L 21.77,288.71942 L 21.77,287.37942 L 19.425,287.37942 L 19.425,288.71942 L 17.75,288.71942 L 17.75,282.01942 z" - id="path3325" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 17.75,272.25413 L 19.424999,272.25413 L 19.424999,273.59413 L 21.769999,273.59413 L 21.769999,272.25413 L 52.422499,272.25413 L 52.422499,278.95413 L 21.769999,278.95413 L 21.769999,277.61413 L 19.424999,277.61413 L 19.424999,278.95413 L 17.75,278.95413 L 17.75,272.25413 z" - id="path3327" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 17.75,262.48884 L 19.425,262.48884 L 19.425,263.82884 L 21.77,263.82884 L 21.77,262.48884 L 52.4225,262.48884 L 52.4225,269.18884 L 21.77,269.18884 L 21.77,267.84884 L 19.425,267.84884 L 19.425,269.18884 L 17.75,269.18884 L 17.75,262.48884 z" - id="path3329" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 17.75,242.95827 L 19.425,242.95827 L 19.425,244.29827 L 21.77,244.29827 L 21.77,242.95827 L 52.4225,242.95827 L 52.4225,249.65827 L 21.77,249.65827 L 21.77,248.31827 L 19.425,248.31827 L 19.425,249.65827 L 17.75,249.65827 L 17.75,242.95827 z" - id="path3331" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 8.75,163.55 L 10.425,163.55 L 10.425,164.89 L 12.77,164.89 L 12.77,163.55 L 43.4225,163.55 L 43.4225,170.25 L 12.77,170.25 L 12.77,168.91 L 10.425,168.91 L 10.425,170.25 L 8.75,170.25 L 8.75,163.55 z" - id="path3333" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 15.75,93.55 L 17.425,93.55 L 17.425,94.89 L 19.77,94.89 L 19.77,93.55 L 50.4225,93.55 L 50.4225,100.25 L 19.77,100.25 L 19.77,98.91 L 17.425,98.91 L 17.425,100.25 L 15.75,100.25 L 15.75,93.55 z" - id="path3335" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 80.75,163.55 L 82.425,163.55 L 82.425,164.89 L 84.77,164.89 L 84.77,163.55 L 115.4225,163.55 L 115.4225,170.25 L 84.77,170.25 L 84.77,168.91 L 82.425,168.91 L 82.425,170.25 L 80.75,170.25 L 80.75,163.55 z" - id="path3337" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 17.75,233.19298 L 19.425,233.19298 L 19.425,234.53298 L 21.77,234.53298 L 21.77,233.19298 L 52.4225,233.19298 L 52.4225,239.89298 L 21.77,239.89298 L 21.77,238.55298 L 19.425,238.55298 L 19.425,239.89298 L 17.75,239.89298 L 17.75,233.19298 z" - id="path3339" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 17.75,301.55 L 19.425,301.55 L 19.425,302.89 L 21.77,302.89 L 21.77,301.55 L 52.4225,301.55 L 52.4225,308.25 L 21.77,308.25 L 21.77,306.91 L 19.425,306.91 L 19.425,308.25 L 17.75,308.25 L 17.75,301.55 z" - id="path3341" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 17.75,252.72355 L 19.425,252.72355 L 19.425,254.06355 L 21.77,254.06355 L 21.77,252.72355 L 52.4225,252.72355 L 52.4225,259.42355 L 21.77,259.42355 L 21.77,258.08355 L 19.425,258.08355 L 19.425,259.42355 L 17.75,259.42355 L 17.75,252.72355 z" - id="path3343" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - d="M 87.25,233.55 L 88.925,233.55 L 88.925,234.89 L 91.27,234.89 L 91.27,233.55 L 121.9225,233.55 L 121.9225,240.25 L 91.27,240.25 L 91.27,238.91 L 88.925,238.91 L 88.925,240.25 L 87.25,240.25 L 87.25,233.55 z" - id="path3345" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </svg> -
\ No newline at end of file + style="font-size:12px">verbergen</tspan> + </text> + <rect + width="123" + height="0.14" + x="10" + y="415" + id="rect3434" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#e0a000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + width="123" + height="0.14" + x="10" + y="416" + id="rect3436" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#fff080;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + width="123" + height="0.14" + x="10" + y="417" + id="rect3438" + style="opacity:1;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffc4;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 35,182 L 29,182 L 29,184 L 21,184 L 21,182 L 15,182 C 15,182 13,183 13,183 C 12,184 11,186 11,186 L 11,220 C 11,220 12,221 12,221 C 12,221 14,222 14,222 L 21,222 L 21,224 L 29,224 L 29,222 L 62,222 L 62,183 L 37,183 L 36,183 L 35,182 z" + id="path4158" + style="fill:url(#linearGradient3251);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 15,199 L 43,199 L 43,219 L 15,219 L 15,199 z" + id="path4162" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <polygon + points="10,6 31,6 43,18 43,48 10,48 10,6 " + transform="matrix(0.375,0,0,0.375,42.63809,197.40725)" + id="polygon2963" + style="fill:#ffffff;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" /> + <polyline + style="fill:none;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" + points="43,18 31,18 31,6 " + id="polyline2965" + transform="matrix(0.375,0,0,0.375,42.63809,197.40725)" /> + <line + style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" + display="inline" + x1="49" + x2="56" + y1="207" + y2="207" + id="line2967" /> + <line + style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" + display="inline" + x1="49" + x2="56" + y1="209.5" + y2="209.5" + id="line2969" /> + <line + style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" + display="inline" + x1="49" + x2="56" + y1="212" + y2="212" + id="line2971" /> + <path + d="M 28,251 L 22,251 L 22,253 L 14,253 L 14,251 L 8,251 C 8,251 6,252 6,253 C 6,253 5,255 5,255 L 5,309 C 5,309 5,311 5,311 C 5,311 7,312 7,312 L 14,312 L 14,313 L 22,313 L 22,312 L 69,312 L 69,253 L 30,253 L 29,252 L 28,251 z" + id="path4390" + style="fill:url(#linearGradient3259);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 8,268 L 36,268 L 36,288 L 8,288 L 8,268 z" + id="path4394" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 38,268 L 66,268 L 66,288 L 38,288 L 38,268 z" + id="path2418" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <polygon + points="10,6 31,6 43,18 43,48 10,48 10,6 " + transform="matrix(0.375,0,0,0.375,4.95059,289.5635)" + id="polygon4402" + style="fill:#ffffff;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" /> + <polyline + style="fill:none;stroke:#010101;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none" + points="43,18 31,18 31,6 " + id="polyline4404" + transform="matrix(0.375,0,0,0.375,4.95059,289.5635)" /> + <line + style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" + display="inline" + x1="11" + x2="18" + y1="299" + y2="299" + id="line4406" /> + <line + style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" + display="inline" + x1="11" + x2="18" + y1="301.5" + y2="301.5" + id="line4408" /> + <line + style="fill:none;stroke:#010101;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" + display="inline" + x1="11" + x2="18" + y1="304" + y2="304" + id="line4410" /> + <polygon + points="10,6 31,6 43,18 43,48 10,48 10,6 " + transform="matrix(0.375,0,0,0.375,34.95059,289.5635)" + id="polygon2582" + style="fill:#ffffff;stroke:#010101;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" |