Moved all the docs to the wiki.

This commit is contained in:
paul.baranowski 2010-09-28 18:01:35 -04:00
parent f0c313f1dd
commit 1bf23d2148
108 changed files with 0 additions and 46363 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,67 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>autoconf configure file conventions</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright © 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document describes the autoconf configure file conventions for the
Campcaster
project. See also the generic description of the <a
href="fileConventions.html">file
conventions</a> in the Campcaster
project.<br>
<h1>Introduction</h1>
Autoconf configure input files are processed by GNU <a
href="http://www.gnu.org/software/autoconf/">autoconf</a> and <a
href="http://www.gnu.org/software/automake/">automake</a> to generate
a configure script, which in turn generates Makefiles and other files
based on the system specifics it is run on. These are text
based files, thus they should adhere to the <a
href="fileConventions.html#textConventions">generic text-based
conventions</a>.<br>
<h1>Naming</h1>
Autoconf configure files are named either <code>configure.ac</code>
(for autoconf) or sometimes <code>configure.am</code> (for automake).<br>
<h1>Structure</h1>
Autoconf configure files are partitioned by using the following 80
column
wide partitioning comment:<br>
<pre>dnl-----------------------------------------------------------------------------<br>dnl This is the title of the partition<br>dnl-----------------------------------------------------------------------------<br></pre>
The file has the
following mandatory structure:<br>
<ul>
<li>Header</li>
<li>Additional sections+</li>
</ul>
<h2>Header</h2>
The header holds all information mandated by the <a
href="fileConventions.html#header">generic guidelines</a>, but
starting with the autoconf comment sequence <code>dnl</code>. Note the
80
column wide partitioning delimiter enclosing the header.<br>
<pre>dnl-----------------------------------------------------------------------------<br>dnl Copyright (c) 2010 Sourcefabric O.P.S.<br>dnl<br>dnl This file is part of the Campcaster project.<br>dnl http://campcaster.sourcefabric.org/<br>dnl To report bugs, send an e-mail to bugs@campware.org<br>dnl<br>dnl Campcaster is free software; you can redistribute it and/or modify<br>dnl it under the terms of the GNU General Public License as published by<br>dnl the Free Software Foundation; either version 2 of the License, or<br>dnl (at your option) any later version.<br>dnl<br>dnl Campcaster is distributed in the hope that it will be useful,<br>dnl but WITHOUT ANY WARRANTY; without even the implied warranty of<br>dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br>dnl GNU General Public License for more details.<br>dnl<br>dnl You should have received a copy of the GNU General Public License<br>dnl along with Campcaster; if not, write to the Free Software<br>dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA<br>dnl<br>dnl<br>dnl Author : $Author$<br>dnl Version : $Revision$<br>dnl Location : $URL$<br>dnl-----------------------------------------------------------------------------<br></pre>
<h2>Additional sections</h2>
Additional sections contain the autoconf configuration macro calls.
Bigger
parts of the file may be partitioned by the partitioning commend seen
above.<br>
<h1>Template</h1>
See a generic <a href="templates/configure.ac">template
for autoconf configurations</a>. You may freely copy this
template when starting to create a new document.<br>
<br>
</body>
</html>

View file

@ -1,228 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>Build environment</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &copy; 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL:
svn+ssh://maroy@code.campware.org/home/svn/repo/campcaster/trunk/campcaster/doc/developmentEnvironment/buildEnvironment.html
$<br>
</li>
</ul>
<h1>Scope</h1>
This document describes the build environment for components of the
Campcaster project.<br>
<h1>Introduction</h1>
As seen in the <a href="directoryStructure.html">directory structure</a>
description, each component is contained in its own directory, and has
the same general directory layout, which includes a <code>configure</code> script on the top
of the directory. This script is responsible for gathering compilation and installation information, and for creating a <code>Makefile</code> in the top directory. All components are built by using <a href="http://www.gnu.org/directory/make.html">GNU make</a> working on
that <code>Makefile</code>.<br>
<br>
This document describes details about the <code>configure</code> script,&nbsp;the targets for the generated <code>Makefile</code>, and related files involved with the installation of the component.<br>
<br>
Parts of this document are inspired by the <a href="http://www.gnu.org/prep/standards.html">GNU Coding Standards</a>
<a href="http://www.gnu.org/prep/standards_50.html">Makefile
Conventions Standard targets</a>.<br>
<h1>The <code>configure</code> script and generated files<br>
</h1>
<h2><code>configure</code> options</h2>
The <code>configure</code> script should honor the generic directory settings passed to it:<br>
<br>
<pre>Installation directories:<br> --prefix=PREFIX install architecture-independent files in PREFIX<br> [/usr/local]<br> --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX<br> [PREFIX]<br><br>Fine tuning of the installation directories:<br> --bindir=DIR user executables [EPREFIX/bin]<br> --sbindir=DIR system admin executables [EPREFIX/sbin]<br> --libexecdir=DIR program executables [EPREFIX/libexec]<br> --datadir=DIR read-only architecture-independent data [PREFIX/share]<br> --sysconfdir=DIR read-only single-machine data [PREFIX/etc]<br> --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]<br> --localstatedir=DIR modifiable single-machine data [PREFIX/var]<br> --libdir=DIR object code libraries [EPREFIX/lib]<br> --includedir=DIR C header files [PREFIX/include]<br> --oldincludedir=DIR C header files for non-gcc [/usr/include]<br> --infodir=DIR info documentation [PREFIX/info]<br> --mandir=DIR man documentation [PREFIX/man]<br></pre>
<br>
Other configuration-time options should be processed using <code>--with-XXX</code> arguments, using the <a href="http://www.gnu.org/software/autoconf/manual/autoconf-2.57/html_node/autoconf_130.html#IDX835"><code>AC_ARG_WITH</code></a> <code>autoconf</code> macro.<br>
<br>
Note: when writing <code>etc/configure.ac</code>, the input for the <code>configure</code> script, the <a href="http://autoconf-archive.cryp.to/">Autoconf Macro Archive</a> can provide quite useful.<br>
<br>
<h2>generated files</h2>
The main file generated by the <code>configure</code> script will the the <code>Makefile</code>. The input for the <code>Makefile</code>, <code>etc/Makefile.in</code>, can refer to the variables substituted by <code>configure</code> in the following way:<br>
<br>
<pre><code>prefix = @prefix@<br>some_other_var = @some_other_var@</code></pre>
<br>
Because these variables might need to be overwritten when running the <code>Makefile</code>, make sure to use the same name for the variable inside the <code>Makefile</code> as was used by the configure script (as in the above example). For example:<br>
<br>
<pre><code># these are wrong!<br>PREFIX = @prefix@<br>myvar = @some_other_var@<br><br># these are correct, and have the same desired effect:<br></code><code>prefix = @prefix@<br>some_other_var = @some_other_var@<br>PREFIX = ${prefix}<br>myvar = ${some_other_var}</code></pre>
<span style="font-weight: bold;"><br>
</span><span style="font-weight: bold;"></span>Using the same names will make it possible to overwrite the values substituted by <code>configure</code> when invoking the <code>Makefile</code>, for example:<br>
<br>
<pre><code>make prefix=/foo/bar install</code></pre>
<br>
will cause installation under the prefix <code>/foo/bar</code>, irrespective of the prefix supplied to <code>configure</code>.<br>
<span style="font-weight: bold;"></span><span style="font-weight: bold;"></span>
<h1>Make targets<br>
</h1>
The following make targets are required for all components to support:<br>
<ul>
<li>all</li>
<li>clean</li>
<li>depclean</li>
<li>doc<br>
</li>
<li>dist</li>
<li>check</li>
<li>install</li>
</ul>
<h4>all</h4>
Compile all source files for this component.&nbsp; As a result, the
component is ready to be run (if an executable) or linked to (if a
library).<br>
This target traverses the dependent modules, and executes the all
target on them, if their targets do not exist.<br>
<h4>clean</h4>
Delete all files generated by the all target, but only for this module
(e..g. no files for dependent modules are deleted).<br>
<h4>depclean</h4>
Delete all the dependent target files. Executing the depclean target
with an all target afterwards results in a full recompilation of all
the dependent modules.<br>
<h4>doc</h4>
Generate the documentation for this component. This would include
processing info pages, or using tools to generate documentation based
on comments in the source code (like javadoc).<br>
<h4>dist</h4>
Create a distribution package for this component. This involves
possibly compiling, document generation and other tasks, and results in
an archive containing the distribution.<br>
<h4>check</h4>
Run all tests, especially unit tests, for the component. This usually
results in a generated test-report.<br>
<br>
<h4>install</h4>
Installs the component into the specified prefix. (See the <a href="installation.html">Installation</a> document for details.)<br>
<br>
</body>
</html>

View file

@ -1,199 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>C++ header file conventions</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright © 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document describes C++ header file conventions for the
Campcaster
project. See also the generic description of the <a
href="fileConventions.html">file
conventions</a> in the Campcaster
project.<br>
<h1>Introduction</h1>
C++ header files are files containing declarations of structures,
functions and classes, that may be shared among object files, by
including them with the pre-processor directive <code>#include</code>
in multiple source files. They are text
based files, thus they should adhere to the <a
href="fileConventions.html#textConventions">generic text-based
conventions</a>.<br>
<br>
The Campcaster project uses a strong object oriented approach. Part of
this approach is to group declarations of classes into their own files:
one header file and one source file for each class. Therefore each C++
header file contains the declaration of exactly one C++ class, although
inner types are defined in the same file.<br>
<h1>Naming</h1>
A C++ header files name reflects the class it is defining. Class names
begin with a capital letter, followed by lower case letters. In case of
a multiple word class name, the first letter of each word is
capitalized. Example class names are <code>Foo</code> and <code>FooBar</code>.<br>
<br>
As the name of the header file reflects the name of the class defined
in it, the header file will be named exactly as the class inside, with
the <code>.h</code> extension. Thus a class named <code>Foo</code> is
defined in
the header file <code>Foo.h</code>, and the class named <code>SomeOtherLongNamedClass</code>
is defined in the header file named <code>SomeOtherLongNamedClass.h</code>.<br>
<h1>Structure</h1>
C++ files are partitioned by using the following 80 column wide
partitioning comment:<br>
<pre>/* ==================================================== name of the partition */<br></pre>
Note that the comment is always 80 columns wide, independent of the
length of the text within.<br>
<br>
The file has the
following mandatory structure:<br>
<ul>
<li>Header</li>
<li>Include files &amp; namespaces</li>
<li>Constants</li>
<li>Macros</li>
<li>Data types</li>
<li>External data signatures</li>
<li>Function Prototypes</li>
<li>Footer<br>
</li>
</ul>
<h2>Header</h2>
The header holds all information mandated by the <a
href="fileConventions.html#header">generic guidelines</a>. It begins
with the generic header information, enclosed in 80
column wide partitioning delimiters.<br>
<br>
After this a macro definition follows, prohibiting the multiple time
inclusion of the header file. The name of the header-identity macro is
derived from the full name the file is expected to be included as. The
macro name is formed by replacing all non-alphanumeric characters from
the expected include definition with the '_' (underscore) character.
For a header file that will be included with the line:<br>
<pre><code>#include "Foo.h"</code><br></pre>
the identity macro is defined as <code>Foo_h</code>. For a header file
that is expected to be included as:<br>
<pre><code>#include "Campcaster/Foo/Bar.h"<br></code></pre>
the identity macro is defined as <code>Campcaster_Foo_Bar_h</code>.<br>
<br>
After the identity macro, a preprocessor check is performed to see if
the file is being processessed by a C++ compiler (and say not a C
compiler).<br>
<h3>Sample</h3>
A sample for a C++ header file header follows, where the file itself
would be expected to be included as <code>"Campcaster/Foo/Bar.h"</code>.<br>
<br>
<pre>/*------------------------------------------------------------------------------<br><br> Copyright (c) 2010 Sourcefabric O.P.S.<br> <br> This file is part of the Campcaster project.<br> http://campcaster.sourcefabric.org/<br> To report bugs, send an e-mail to bugs@campware.org<br> <br> Campcaster is free software; you can redistribute it and/or modify<br> it under the terms of the GNU General Public License as published by<br> the Free Software Foundation; either version 2 of the License, or<br> (at your option) any later version.<br> <br> Campcaster is distributed in the hope that it will be useful,<br> but WITHOUT ANY WARRANTY; without even the implied warranty of<br> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br> GNU General Public License for more details.<br> <br> You should have received a copy of the GNU General Public License<br> along with Campcaster; if not, write to the Free Software<br> Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA<br> <br> <br> Author : $Author$<br> Version : $Revision$<br> Location : $URL$<br> <br>------------------------------------------------------------------------------*/<br>#ifndef Campcaster_Foo_Bar_h<br>#define Campcaster_Foo_Bar_h<br> <br>#ifndef __cplusplus<br>#error This is a C++ include file<br>#endif<br><br></pre>
<h2>Include files &amp; namespace <br>
</h2>
This section contains all the include files that the header file needs
to include, plus namespace declarations. The include files are listed
in a most generic to most specific order: firts system include files,
then other Campcaster module include files, and finnally include files
from the same module / product are listed.<br>
<br>
After the includes, namespace definitions follow. Each Campcaster
object is contained in its own namespace inside the <code>Campcaster</code>
namespace, thus this is a nested namespace declaration.<br>
<br>
After the namespace declarations, the namespaces used within the
include file itself are listed with <code>using namespace</code>
clauses. Note that the <code>using namespace</code> clauses are
strictly within the namespace declaration clauses, so that they only
take effect within the header file, but not afterwards.<br>
<h3>Sample</h3>
A sample include files &amp; namespaces section follows.<br>
<pre>/* =============================================== include files &amp; namespaces */<br><br>#ifdef HAVE_CONFIG_H<br>#include "configure.h"<br>#endif<br><br>#if HAVE_STDLIB_H<br>#include &lt;stdlib.h&gt;<br>#else<br>#error need stdlib.h<br>#endif<br><br>#include &lt;string&gt;<br><br><br>namespace Campcaster {<br>namespace Foo {<br><br>using namespace Campcaster::Core;<br><br></pre>
<h2>Constants</h2>
The constants section contains static constant values defined in the
header file.
Nowhere in the header file may be other static constants defined. This
section is
rarely used, as static constants&nbsp; outside classes are discurraged,<br>
<h3>Sample</h3>
A sample constants section follows.<br>
<pre>/* ================================================================ constants */<br><br>/**<br> * The contant value of foo bar.<br> */<br>static const int fooBarConst;<br></pre>
<h2>Macros</h2>
The macros section contains any macros defined in the header file.
Nowhere in the header file may be other macros defined. This section is
rarely used, as macros are discurraged,<br>
<h3>Sample</h3>
A sample macros section follows.<br>
<pre>/* =================================================================== macros */<br><br>/**<br> * Some very important macro.<br> */<br>#define SOME_MACRO "some macro"<br></pre>
<h2>Data types</h2>
This section contains the data type definitions of the header file,
most notable the definition of the class this header file is named
after.<br>
<br>
The class itself and all its members (including private members) are
described by <a href="http://www.doxygen.org/">doxygen</a> comments.
The Java style of commenting is to be used.&nbsp; For the comment
describing the entire class, the <code>@author</code> and <code>@version</code>
tags are mandatory. For each member function, all parameters, the
return value and all possibly thrown exceptions are to be documented.<br>
<br>
The class lists its members in the following order:<br>
<ul>
<li>private</li>
<li>protected</li>
<li>public</li>
</ul>
Within each of the above blocks, the order is the following:<br>
<ul>
<li>static data members</li>
<li>dynamic data members</li>
<li>constructors</li>
<li>destructor</li>
<li>static functions</li>
<li>dynamic functions</li>
</ul>
For proper indentation of the above blocks, see the example below.<br>
<h3>Sample</h3>
A sample data types section follows.<br>
<pre>/* =============================================================== data types */<br><br>/**<br> * Hello class.<br> * The only purpose of this class is to say hello.<br> *<br> * @author $Author$<br> * @version $Revision$<br> */<br>class Hello<br>{<br> private:<br> /**<br> * Our famous hello string.<br> */<br> static const std::string helloWorld;<br><br> public:<br> /**<br> * Default constructor.<br> */<br> Hello (void) throw ()<br> {<br> }<br><br> /**<br> * Say hello.<br> *<br> * @return the string "Hello, World!"<br> * @exception std::exception on problems<br> */<br> const std::string<br> hello (void) throw (std::exception)<br> {<br> return helloWorld;<br> }<br>};<br><br></pre>
<h2>External data structures<br>
</h2>
The external data structures section contains any external data
definitions needed by the header file, that may be defined externally.
Nowhere in the header file may other external data definitions exist.
This section is
rarely used, as external data definitions are discouraged.<br>
<h3>Sample</h3>
A sample external data structures section follows.<br>
<pre>/* ================================================= external data structures */<br><br>/**<br> * An externally defined data, which the linker will find.<br> */<br>extern int fooBarInt;<br><br></pre>
<h2>Function prototypes<br>
</h2>
The function prototypes section contains any function prototypes
defined by the header file, that are not members of classes.
Nowhere in the header file may other such definitions exist.
This section is seldom used, as functions outside classes are
discouraged.<br>
<h3>Sample</h3>
A sample function prototypes section follows.<br>
<pre>/* ====================================================== function prototypes */<br><br>/**<br> * An important foo function.<br> *<br> * @return the result of foo.<br> */<br>int foo(void) throw ();<br></pre>
<h2>Footer</h2>
The footer of the header file closes the namespace brackets opened in
the include files &amp; namespaces section, and also ends the header
identity macro #ifdef section opened in the header.<br>
<h3>Sample</h3>
A sample footer section follows.<br>
<br>
<pre>} // namespace Foo<br>} // namespace Campcaster<br><br>#endif // Campcaster_Foo_Bar_h<br></pre>
<h1>Template</h1>
See a <a href="templates/Bar.h">template
C++ header file</a>. You may freely copy this
template when starting to create a new header file.<br>
<br>
</body>
</html>

View file

@ -1,150 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>C++ source file conventions</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright © 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document describes C++ source file conventions for the
Campcaster
project. See also the generic description of the <a
href="fileConventions.html">file
conventions</a> in the Campcaster
project.<br>
<h1>Introduction</h1>
C++ source files are files containing implementations of functions and
definitions of static data. They are text
based files, thus they should adhere to the <a
href="fileConventions.html#textConventions">generic text-based
conventions</a>.<br>
<br>
The Campcaster project uses a strong object oriented approach. Part of
this approach is to group implementations of classes into their own
files: one header file and one source file for each class. Therefore
each C++ source file contains implementation of exactly one C++ class,
although static (local) functions may be defined as well.<br>
<h1>Naming</h1>
A C++ source files name reflects the class it is implementing. Class
names begin with a capital letter, followed by lower case letters. In
case of a multiple word class name, the first letter of each word is
capitalized. Example class names are <code>Foo</code> and <code>FooBar</code>.<br>
<br>
As the name of the source file reflects the name of the class it
implements, the source file will be named exactly as the class inside,
with the <code>.cxx</code> extension. Thus a class named <code>Foo</code>
is implemented in the source file <code>Foo.cxx</code>, and the class
named <code>SomeOtherLongNamedClass</code> is implemented in the
source file named <code>SomeOtherLongNamedClass.cxx</code>.<br>
<h1>Structure</h1>
C++ files are partitioned by using the following 80 column wide
partitioning comment:<br>
<pre>/* ==================================================== name of the partition */<br></pre>
Note that the comment is always 80 columns wide, independent of the
length of the text within.<br>
<br>
Local data type definitions and function prototypes required
doxygen-style commenting.<br>
<br>
Function implementations and static data definitions were already
commented for doxygen at their place of declaration. Therefore these
are preceded by the following simple comment header.<br>
<pre>/*------------------------------------------------------------------------------<br>&nbsp;* Function implementation below.<br> *----------------------------------------------------------------------------*/<br></pre>
<br>
The file has the
following mandatory structure:<br>
<ul>
<li>Header</li>
<li>Include files &amp; namespaces</li>
<li>Local data structures<br>
</li>
<li>Local constants &amp; macros<br>
</li>
<li>Local function prototypes<br>
</li>
<li>Module code<br>
</li>
</ul>
<h2>Header</h2>
The header holds all information mandated by the <a
href="fileConventions.html#header">generic guidelines</a>. It contains
with the generic header information, enclosed in 80
column wide partitioning delimiters.<br>
<h3>Sample</h3>
A sample for a C++ source file header follows.<br>
<pre>/*------------------------------------------------------------------------------<br><br> Copyright (c) 2010 Sourcefabric O.P.S.<br> <br> This file is part of the Campcaster project.<br> http://campcaster.sourcefabric.org/<br> To report bugs, send an e-mail to bugs@campware.org<br> <br> Campcaster is free software; you can redistribute it and/or modify<br> it under the terms of the GNU General Public License as published by<br> the Free Software Foundation; either version 2 of the License, or<br> (at your option) any later version.<br> <br> Campcaster is distributed in the hope that it will be useful,<br> but WITHOUT ANY WARRANTY; without even the implied warranty of<br> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br> GNU General Public License for more details.<br> <br> You should have received a copy of the GNU General Public License<br> along with Campcaster; if not, write to the Free Software<br> Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA<br> <br> <br> Author : $Author$<br> Version : $Revision$<br> Location : $URL$<br> <br>------------------------------------------------------------------------------*/<br><br></pre>
<h2>Include files &amp; namespaces <br>
</h2>
This section contains all the include files that the source file needs
to include, plus namespace references. The include files are listed in
a most generic to most specific order: first system include files, then
other Campcaster module include files, and finally include files from
the same module / product are listed. The last one is the header file
for the class this source file implements.<br>
<br>
After the includes, the namespaces used within the source file itself
are listed with <code>using namespace</code> clauses. The order of the
<code>using namespace</code> declarations is also from most generic to
most specific, the last one being the namespace of the class this
source file implements.<br>
<h3>Sample</h3>
A sample include files &amp; namespaces section follows.<br>
<pre>/* =============================================== include files &amp; namespaces */<br><br>#ifdef HAVE_CONFIG_H<br>#include "configure.h"<br>#endif<br><br>#if HAVE_STDLIB_H<br>#include &lt;stdlib.h&gt;<br>#else<br>#error need stdlib.h<br>#endif<br><br>#include &lt;string&gt;<br><br>#include &lt;Campcaster/Foo/Bar.h&gt;<br><br><br>using namespace Campcaster::Core;<br>using namespace Campcaster::Foo;<br><br></pre>
<h2>Local data structures<br>
</h2>
The constants section contains locally defined data structures, that
are not used anywhere outside this source file.
Nowhere in the source file may be other data structure definitions.
This section is
rarely used, as reusable data structures are encouraged.<br>
<h3>Sample</h3>
A sample local data structures section follows.<br>
<pre>/* =================================================== local data structures */<br><br>/**<br> * The union of foo.<br> */<br>union foo {<br> int foo;<br> long bar;<br>};<br></pre>
<h2>Local constants &amp; macros</h2>
The local constants &amp; macros section contains any macros and
constant values used in this source file. It also contains the
definitions for constant values of the class this source file
implements. Nowhere in the source file may be other macros or constants
defined.<br>
<br>
Having local constants is discouraged. Have private static class
members instead.<br>
<h3>Sample</h3>
A sample local constants &amp; macros section follows.<br>
<pre>/* ================================================ local constants &amp; macros */<br><br>/*------------------------------------------------------------------------------<br>&nbsp;* The famous foo string for the class Bar.<br> *----------------------------------------------------------------------------*/<br>const std::string Bar::fooStr = "foo";<br><br></pre>
<h2>Local function prototypes<br>
</h2>
This section contains the prototypes for local functions, which are
only used in this source file. Nowhere else in the source file may
function prototypes be other than in this section. This section is
rarely used, local functions are discouraged. Use private class member
functions instead.<br>
<h3>Sample</h3>
A sample local function prototypes section follows.<br>
<pre>/* =============================================== local function prototypes */<br><br>/**<br> * Some local function.<br> *<br> * @param parameter some parameter<br> * @return a very big return value.<br> */<br>int<br>localFunction(int parameter) throw ();<br><br></pre>
<h2>Module code<br>
</h2>
This section contains the implementation for the class it is made for.
Also contains the implementation for all local functions. The
implementation order is not defined.<br>
<h3>Sample</h3>
A sample module code section follows.<br>
<pre>/* ============================================================= module code */<br><br>/*------------------------------------------------------------------------------<br>&nbsp;* Return the famous bar string.<br> *----------------------------------------------------------------------------*/<br>const std::string<br>Bar :: sayBar(void) throw (std::exception)<br>{<br> if (barInt) {<br> throw std::exception();<br> }<br><br> return barStr;<br>}<br><br></pre>
<h1>Template</h1>
See a <a href="templates/Bar.cxx">template
C++ source file</a>. You may freely copy this
template when starting to create a new source file.<br>
<br>
</body>
</html>

View file

@ -1,250 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>Directory structure</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &copy; 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL:
svn+ssh://maroy@code.campware.org/home/svn/repo/campcaster/trunk/campcaster/doc/developmentEnvironment/directoryStructure.html
$<br>
</li>
</ul>
<h1>Scope</h1>
This document describes the directory structure used for all component
of the Campcaster project.<br>
<h1>Introduction</h1>
It is important to define a common and uniform directory structure in
order to allow more seamless cooperation between participants of the
project. It also helps referencing the various components (modules,
etc.), as all the components will have a predictable and stable file
hierarchy.<br>
<br>
As seen below, the main inspiration for each components directory
structure is the <a href="http://www.pathname.com/fhs/">Filesystem
Hierarchy Standard</a>.<br>
<h1>Overall structure</h1>
The base campcaster directory contains all the special tools needed to
build, test and run Campcaster, along with all the source code that
constitutes Campcaster itself.<br>
<br>
The self written part of Campcaster project consists of re-usable
modules, and products.
Modules are components that do not execute by themselves, but have a
useful, preferably generic functionality. Products are the executable
components that are actually run by users.<br>
<br>
Both modules and products may reference (depend on) other modules, but
circular reference is not allowed.<br>
<br>
Other needed parts of the directory structure are involved with
external libraries Campcaster depends on, and a running environment
where Campcaster can run.<br>
<br>
The directory structure is organized in the following way:<br>
<br>
<code></code>
<pre>campcaster<br>|-- configure<br>|-- bin<br>|-- doc<br>|-- etc<br>|-- src<br>| |-- modules<br>| | |-- module1<br>| | |-- module2<br>| ...<br>| | `-- moduleN<br>| |-- products<br>| | |-- product1<br>| | |-- product2<br>| | ...<br>| | `-- productN<br>| `-- tools<br>| |-- tool1<br>| |-- tool2<br>| ...<br>| `-- tool3<br>|-- tmp<br>|-- usr<br>`-- var<br></pre>
<br>
<h2>Referencing modules and the running environment<br>
</h2>
As a consequence of the directory structure above, if a module is
referencing an other (e.g. moduleX), than it can be sure that it is
located at <code>../moduleX</code>. If a product is referencing the
same module, it can be sure that it is located at <code>../../modules/moduleX</code>.<br>
<br>
Furthermore, if a module or product is referencing the running
environment under <code>campcaster/usr</code>, it can also be sure
that it is located at <code>../../../usr</code> from either the module or
the product directory.<br>
<br>
Referencing always means exactly that: no contents are copied from one
module directory to an other. For example for a module or product to
reference the shared libraries of moduleX means to do exactly that:
link to the library <code>../../modules/moduleX/lib/libmoduleX.so</code>.<br>
<br>
Please note that the above relative reference are valid in the build
environment only! After a module or product is installed, it can make
no assumptions on the relative locations of other components.<br>
<h1>Top-level configure script</h1>
The top-level <code>configure</code> script takes care of <a href="http://www.gnu.org/software/autoconf/">autoconf</a>-style configuring the whole Campcaster project. This involves running <code>configure</code> in all tool, module and product directories, and creating a top-level <code>Makefile</code>.<br>
<br>
The configure script is expected to run autoconf in case the
autoconf-style environment has not yet been set up. This typically
involves executing an autogen.sh script from the bin directory.<br>
<br>
<h1>Documentation directory</h1>
The doc directory contains generic documentation with respect to the
whole Campcaster project. Documentation pertaining to a module or
products should go under the modules' or products' directory,
respectively.<br>
<h1>Configuration files</h1>
Under the <code>etc</code> directory project-wide configuration files
are found, like the ones used by the top-level configure script. This
typically involves having autoconf sources (configure.ac,
acinlcude.m4), and the input for the top-level Makefile (Makefile.in).<br>
<h1>Module structure</h1>
Each module has the same directory structure, which is as follows:<br>
<br>
<pre>moduleX<br>|-- configure<br>|-- bin<br>|-- etc<br>|-- include<br>| `-- Campcaster<br>| `-- ModuleX<br>|-- lib<br>|-- src<br>|-- tmp<br>`-- var<br></pre>
<h4>configure</h4>
An <a href="http://www.gnu.org/software/autoconf/">autoconf</a>-style configure script. See the <a href="buildEnvironment.html">build environment</a> document for a
detailed description.<br>
<h4>bin</h4>
Directory containing all executables.<br>
<h4>etc</h4>
All configuration files go here.<br>
<h4>include</h4>
The public C/C++ header files for this module. The include files are
stored in a subdirectory that completely replicates the namespacing of
the module itself, in a case-sensitive manner. Thus a header file name <code>Foo.h</code>
for <code>ModuleX</code> would be contained in the directory <code>include/Campcaster/ModuleX/Foo.h</code>,
and would be included with the line:<br>
<br>
<pre>#include "Campcaster/ModuleX/Foo.h"<br></pre>
<h4>lib</h4>
Directory containing all shared and static libraries that are generated
by building the module. All external, third-party libraries used by
this module should be installed into the <code>../../../usr/lib</code>
directory. The libraries are named resembling the full namespacing of
the module, but all lower cased. For example, the library for moduleX
would be named <code>libcampcaster_modulex.so</code>, and thus would
be linked to with the linker option <code>-L../../modules/moduleX/lib
-lcampcaster_modulex</code>.<br>
<h4>src</h4>
Contains all source files. A source file is a file which is processed
(compiled, etc.) by the build process, and as a result some target
files are generated from it.<br>
<h4>tmp</h4>
A temporary directory, holding temporary files used by the build
process. This directory either does not exist in the configuration
management system, or is empty there.<br>
<h4>var</h4>
Directory containing data. This can range from XML data to HTML pages
to all other files that are not source files (are not processed by the
build process). Note that web-page scripting files like PHP files also
fall into this category.<br>
<h1>Product structure</h1>
The directory structure for a product is in essence the same as for
modules, described above, with the difference that products don't have
externally visible include files, thus their directories don't contain
an <code>include</code> directory.<br>
<h1>Tools structure</h1>
The tools directory is an archive of tools and external libraries used
for either building or running the Campcaster system. These tools are
installable to the usr directory of the Campcaster directory tree.<br>
Each tool has its own directory, where several versions of the same
tool may reside. Thus the generic directory structure is as follows:<br>
<pre>tools<br>|-- tool1<br>| |-- tool1-X<br>| |-- tool1-Y<br>| ...<br>| `-- tool1-Z<br> ...<br>`-- toolN<br> |-- toolN-A<br> |-- toolN-B<br> ...<br> `-- toolN-C<br></pre>
Thus a user can select version X of toolK to be installed by selecting
the directory <code>tools/toolK/toolK-X</code>. Each tool directory
has the following structure:<br>
<pre>toolK-X<br>|-- configure<br>|-- bin<br>|-- etc<br>|-- src<br>| `-- toolK-X.tar.gz<br>`-- tmp<br></pre>
The <code>configure</code> script is an autoconf-style configure script that creates a <code>Makefile</code> in the tool directory, reflecting typical configuration settings like <code>--prefix</code>.
Executing make install in the tool directory will result in the
compilation and installation of the specific tool into the specified <code>${prefix}</code>. <br>
<br>
In case the source needs to patched before compilation, the patches may
be contained in the <code>etc</code> directory.<br>
<h1>usr structure</h1>
The usr directory is similar to the /usr system directory on UNIX
systems (see the <a href="http://www.pathname.com/fhs/">Filesystem
Hierarchy Standard</a>). This directory contains all the external tools
needed by either developing or running the Campcaster system. This
directory is separate from the system /usr directory in order to
facilitate changing the configuration for Campcaster related libraries
and tools in user space.<br>
<br>
</body>
</html>

View file

@ -1,118 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8"
http-equiv="content-type">
<title>File Conventions</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &#169; 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document describes the conventions used for files in the
Campcaster project.<br>
<h1>Introduction</h1>
To facilitate cooperation between multiple contributors, it is
advisable to have common file conventions, so as the result of
different peoples work have a uniform look and form. This document
lists the file conventions for the different file formats used by the
project.<br>
<br>
Where the description of the conventions is ambiguous, the examples
given are binding, and are to be followed.<br>
<h1>Generic conventions</h1>
In general, all documents have the following structure:<br>
<ul>
<li>header</li>
<li>partition1</li>
<li>partition2</li>
<li>...</li>
<li>partitionN</li>
</ul>
<h2><a name="header"></a>header<br>
</h2>
The header of the file holds:<br>
<ul>
<li>a reference to the Campcaster project itself</li>
<li>copyright information</li>
<li>reference to the license of the file</li>
<li>the latest author of the file</li>
<li>the current version of the file</li>
<li>the full location of the file in the configuration management
system<br>
</li>
</ul>
Following the GNU GPL <a
href="http://www.gnu.org/licenses/gpl.html#SEC4">guidelines</a> on
applying a license term to source files, the typical header for a text
file looks like the following:<br>
<br>
<pre><code> Copyright (c) 2010 Sourcefabric O.P.S.<br> <br> This file is part of the Campcaster project.<br> http://campcaster.sourcefabric.org/<br> To report bugs, send an e-mail to bugs@campware.org<br> <br> Campcaster is free software; you can redistribute it and/or modify<br> it under the terms of the GNU General Public License as published by<br> the Free Software Foundation; either version 2 of the License, or<br> (at your option) any later version.<br> <br> Campcaster is distributed in the hope that it will be useful,<br> but WITHOUT ANY WARRANTY; without even the implied warranty of<br> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br> GNU General Public License for more details.<br> <br> You should have received a copy of the GNU General Public License<br> along with Campcaster; if not, write to the Free Software<br> Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA<br> <br> <br> Author : $Author$<br> Version : $Revision$<br> Location : $URL$<br></code><br></pre>
Note the CVS keywords (as an example) for having up-to-date information
on the author, version and location of the file.<br>
<h2>partitions</h2>
Each file is split into separate partitions, and maintains its
structure with the fixed sequence of these partitions. File formats
differ heavily on the capabilities of defining partitions - some have
explicit support (like HTML with headers and paragraphs), while in some
the commenting feature can be used to visually split up the file (like
comments in source code).<br>
<br>
The exact nature and sequence of the partitions is dependent on the
nature of the file itself.<br>
<h2><a name="textConventions"></a>Generic text-based conventions</h2>
The majority (if not) all sources files are text-based. As a general
rule, text-based files adhere to the following conventions in the
Campcaster project:<br>
<h3>UTF-8</h3>
Whenever possible, the text files should be saved in the <a
href="http://www.unicode.org/glossary/#UTF_8">UTF-8</a> character
encoding, to enable all characters within covered by the Unicode
character set.<br>
<h3>80 columns</h3>
Don't exceed 80 columns for any line in the file, unless it's
absolutely necessary (like having a single expression over 80 columns
that can not be broken up by a new-line character).<br>
<h3>no tabs - 4 spaces</h3>
Don't use the tab character in text files - use 4 spaces instead for
indentation.<br>
<h1>Specific conventions</h1>
For specific file conventions, see the separate descriptions below.<br>
<h2>html</h2>
<a href="htmlFileConventions.html">convention</a> and <a
href="templates/htmlDocumentTemplate.html">template</a>.<br>
<h2>shell scripts</h2>
<a href="shellScriptConventions.html">convention</a> and <a
href="templates/shellScriptTemplate.sh">template</a>.<br>
<h2>Makefiles</h2>
<a href="makefileConventions.html">convention</a> and <a
href="templates/Makefile">template</a>.<br>
<h2>Autoconf configure files<br>
</h2>
<a href="autoconfConfigureConventions.html">convention</a> and <a
href="templates/configure.ac">template</a>.<br>
<h2>C++ files</h2>
There are specific conventions for the header files and the source
files.<br>
<h3>C++ header files</h3>
<a href="cxxHeaderFileConventions.html">convention</a> and <a
href="templates/Bar.h">template</a>.<br>
<h3>C++ source files</h3>
<a href="cxxSourceFileConventions.html">convention</a> and <a
href="templates/Bar.cxx">template</a>.<br>
<h2>PHP scripts</h2>
<a href="phpFileConventions.html">convention</a> and <a
href="templates/phpScriptTemplate.phps">template</a>
(<a href="templates/phpScriptTemplate.php.txt">downlodable version</a>).<br>
<br>
</body>
</html>

View file

@ -1,91 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8"
http-equiv="content-type">
<title>HTML file conventions</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &#169; 2010 Sourcefabric O.P.S., under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document describes the HTML file conventions for the Campcaster
project. See also the generic description of the <a
href="fileConventions.html">file conventions</a> in the Campcaster
project.<br>
<h1>Introduction</h1>
HTML pages written as part of the Campcaster documentation should
conform to either the <a href="http://www.w3.org/TR/html4/">HTML 4.01
Transitional</a> or <a href="http://www.w3.org/TR/xhtml1/">XHTML 1.0
Transitional</a> specifications.<br>
<h1>Naming</h1>
HTML document files are named by the following rules:<br>
<ul>
<li>there are no spaces in the file name</li>
<li>the file name begins with a lower case letter</li>
<li>for file names containing multiple words, each additional word
begins with a capital letter</li>
<li>the extension of the file is <code>.html</code> (not <code>.htm</code>)<br>
</li>
</ul>
For example, a file with a single-word name may be named like: <code>single.html</code>,
whereas a file with multiple word name would be like: <code>multipleWordNameFile.html</code>.<br>
<h1>Structure</h1>
Each HTML file is partitioned by using the <code>&lt;h1&gt;</code>
element to mark the start and name of each partition. The file has the
following mandatory structure:<br>
<ul>
<li>Preface</li>
<li>Scope</li>
<li>Introduction?</li>
<li>Additional sections+</li>
</ul>
<h2>HTML header</h2>
The HTML header of the document should describe the title and author of
the document. The following HTML code should be inside the <code>&lt;head&gt;</code>
element for the HTML page:<br>
<br>
<pre><code> &lt;title&gt;The title of the file&lt;/title&gt;<br> &lt;meta name="author" content="$Author$"/&gt;<br></code></pre>
<h2>The Preface section</h2>
This section holds the following specific text:<br>
<br>
<blockquote>This document is part of the <a
href="http://campcaster.sourcefabric.org/">Campcaster</a> project,
Copyright &#169; 2010 Sourcefabric O.P.S., under the GNU <a href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
</blockquote>
<h2>The Scope section</h2>
This section describes the scope of the document in short form. This
details the areas which the document covers, and sometimes holds
references to related documents.<br>
<h2>The Introductions section</h2>
This optional section introduces the topic of the document to the
reader.<br>
<h2>Additional sections</h2>
These section hold the real content of the document, with freely named
sections and sub-sections. The normal HTML heading elements (<code>&lt;h1&gt;</code>,
<code>&lt;h2&gt;</code>, ...) should be used to mark and group the
sections. Sample source code included in the HTML document should be
put inside a <code>&lt;pre&gt;&lt;code&gt;...&lt;/code&gt;&lt;/pre&gt;</code>
block, like the following:<br>
<br>
<pre><code> // some sample code here<br> int i = 1;<br></code></pre>
<h1>Template</h1>
See a generic <a href="templates/htmlDocumentTemplate.html">template
for HTML documents</a>. You may freely copy this
template when starting to create a new document.<br>
<br>
</body>
</html>

View file

@ -1,63 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>Campcaster development environment</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &copy; 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL:
svn+ssh://maroy@code.campware.org/home/svn/repo/campcaster/trunk/campcaster/doc/developmentEnvironment/index.html
$</li>
</ul>
<h1>Scope</h1>
This document gives an overview of the Campcaster development
environment.<br>
<h1>Introduction</h1>
The Campcaster project defines a uniform development environment to
enhance collaboration of participants in the project. The following
aspects of the environment are defined so far:<br>
<ul>
<li><a href="fileConventions.html">file conventions</a></li>
<li><a href="directoryStructure.html">directory structure</a></li>
<li><a href="buildEnvironment.html">build
environment</a></li>
<li><a href="installation.html">component installation guidelines</a></li>
</ul>
<br>
<br>
</body>
</html>

View file

@ -1,166 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>Component Installation Guidelines</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &copy; 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL:
svn+ssh://maroy@code.campware.org/home/svn/repo/campcaster/trunk/campcaster/doc/developmentEnvironment/buildEnvironment.html
$<br>
</li>
</ul>
<h1>Scope</h1>
This document describes the installation procedures used by the components of the Campcaster project.<br>
<h1>Introduction</h1>
Component installation is a process more tricky than it seems at first.
For example, when using a binary package manager, the component is
configured and compiled on a different system (the one creating the
binary package) than the one it will run on at the end.<br>
<br>
Installation also involves related issues like uninstallation and product
version migration, which also have to be discussed here.<br>
<br>
<h1>Installation use cases</h1>
<h2>Basic installation</h2>
The basic installation procedure is as follows.<br>
<h4>1. &nbsp;setting up the sources</h4>
Get and unpack the source tarball(s), patch them if necessary. Make sure all tools required by the build are present.<br>
<h4>2. configuring the sources</h4>
Run the <code>configure</code> script on the unpacked source tree.<br>
<br>
Assumptions:<br>
<ul>
<li>don't assume that the directory prefixes supplied to <code>configure</code> will be the final installation directories for the component</li>
<li>don't assume that the machine used for compilation will be the same machine the tool is used on (think binary package building)</li>
</ul>
<h4>3. compile the sources</h4>
The sources are compiled (if needed) by the invoking&nbsp;<code></code><code>make all</code>.<br>
<h4>4. install the component</h4>
Install (copy) the component, possibly into a different directory than
what was specified at step 2. This basically involves copying relevant
files from the (built) source directory tree into a target directory
tree.<br>
<h4>5. post-installation setup</h4>
Do post-installation (post-copy) setup of the component. This might involve the following:<br>
<ul>
<li>create and customize configuration files</li>
<li>setup &amp; configure external resources, like:</li>
<ul>
<li>database tables</li>
<li>update configuration files of other tools used by this component</li>
</ul>
</ul>
Assumptions:<br>
<ul>
<li>don't assume that the component has been built (compiled) on the same system as the one doing post-installation setup.</li>
<li>running this step and pre-uninstallation should be a null operation</li>
</ul>
<br>
<h2>Basic uninstallation</h2>
The basic uninstallation procedure is the following.<br>
<h4>1. pre-uninstallation steps</h4>
Destroy any resources used by the component, with the components itself still being installed. This might involve:<br>
<ul>
<li>destroying databases</li>
<li>reverting configuration changes to external resources made in during post-installation setup</li>
</ul>
Assumptions:<br>
<ul>
<li>this is the inverse of the post-installation setup procedure</li>
</ul>
<h4>2. uninstall the component</h4>
Remove the components files from the filesystem.<br>
<br>
<h2>Upgrading</h2>
TODO: detail the upgrading procedure<br>
<br>
<h1>Provisions in the build environment</h1>
For the above goals to be met, the following structure is needed for each component in the build environment:<br>
<br>
<pre>componentX<br>|-- configure<br>|-- bin<br>| |-- autogen.sh<br>| |-- postInstall.sh<br>| `-- preUninstall.sh<br>`-- etc<br> |-- acinclude.m4<br> |-- configure.ac<br> `-- Makefile.in<br></pre>
<h2>Considerations about specific installation steps</h2>
<h4>1. &nbsp;setting up the sources</h4>
none: this step is external to the package.<br>
<h4>2. configuring the sources</h4>
Assumptions:
<ul>
<li>don't assume that the directory prefixes supplied to <code>configure</code> will be the final installation directories for the component</li>
<li>don't assume that the machine used for compilation will be the same machine the tool is used on (think binary package building)</li>
</ul>
<h4>3. compile the sources</h4>
Assumptions:<br>
<ul>
<li>No hard-coded references should be made to any resources the component depends on. For example:</li>
<ul>
<li>don't hard-code shared library paths that are being linked to</li>
<li>don't hard-code PHP include paths that are referenced</li>
<li>don't hard-code paths that were supplied to configure</li>
</ul>
</ul>
<h4>4. install the component</h4>
When using package managers, this step is usually two-fold:<br>
<ul>
<li><code>make install</code> is executed, with <code>${prefix}</code> and other variables overwritten, so that the package is installed into a temporary directory</li>
<li>the files installed by the call to <code>make install</code> will be copied to their true target location when the package build based on them is installed on a target system</li>
</ul>
Note that there is a lot of package manager-specific magic happening
between these two steps, and that the steps usually take place on
different machines (after all the package is only build on one, while
it will be installed on a miriad of systems).<br>
<br>
Assumptions:<br>
<ul>
<li><code>make install</code> really should just copy files, and neither do, nor assume anything more than that.</li>
<li><code>make install</code> should also copy all files needed to perform the post-installation setup and pre-uninstall steps.</li>
</ul>
<h4>5. post-installation setup</h4>
The <code>bin/postInstall.sh</code> script should be used to perform
the post-installation setup. The script should expect all variables it
needs to be supplied by command-line arguments.<br>
<br>
Assumptions:<br>
<ul>
<li>only files that were installed by <code>make install</code> can be used to perform the post-installation setup</li>
</ul>
<h2>Considerations about specific uninstallation steps</h2>
<h4>1. pre-uninstallation steps</h4>
The <code>bin/preUninstall.sh</code> script should be used to perform
the pre-uninstallation steps. The script should expect all variables it
needs to be supplied by command-line arguments.<br>
<br>
Assumptions:<br>
<ul>
<li>only files that were installed by <code>make install</code> can be used to perform the pre-uninstallation step</li>
</ul>
<h4>2. uninstall the component</h4>
none: this step is external to the package<br>
</body>
</html>

View file

@ -1,142 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>Makefile conventions</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright © 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document describes the Makefile file conventions for the
Campcaster
project. See also the generic description of the <a
href="fileConventions.html">file
conventions</a> in the Campcaster
project. This document does not describe the mandatory targets for
Makefiles, see the <a href="buildEnvironment.html">build environment</a>
description for such details.<br>
<h1>Introduction</h1>
Makefiles are text-based files processed by <a
href="http://www.gnu.org/software/make/">GNU make</a>. As text based
files, they should adhere to the <a
href="fileConventions.html#textConventions">generic text-based
conventions</a>.<br>
<h1>Naming</h1>
Makefiles are always named <code>Makefile</code>. In case they are
input files for automake or autoconf, they can be named <code>Makefile.in</code>
or <code>Makefile.am</code>.<br>
<h1>Structure</h1>
Makefiles are partitioned by using the following 80 column wide
partitioning comment:<br>
<pre>#-------------------------------------------------------------------------------<br># This is the title of the partition<br>#-------------------------------------------------------------------------------<br></pre>
The file has the
following mandatory structure:<br>
<ul>
<li>Header</li>
<li>General command definitions</li>
<li>Basic directory and file definitions</li>
<li>Configuration parameters</li>
<li>Dependencies</li>
<li>Targets</li>
<li>Specific targets</li>
<li>Pattern rules<br>
</li>
</ul>
<h2>Header</h2>
The header holds all information mandated by the <a
href="fileConventions.html#header">generic guidelines</a>, but
starting with the Makefile comment character <code>#</code>. Note the
80
column wide partitioning delimiter enclosing the header.<br>
<pre>#-------------------------------------------------------------------------------<br># Copyright (c) 2010 Sourcefabric O.P.S.<br>#<br># This file is part of the Campcaster project.<br># http://campcaster.sourcefabric.org/<br># To report bugs, send an e-mail to bugs@campware.org<br>#<br># Campcaster is free software; you can redistribute it and/or modify<br># it under the terms of the GNU General Public License as published by<br># the Free Software Foundation; either version 2 of the License, or<br># (at your option) any later version.<br>#<br># Campcaster is distributed in the hope that it will be useful,<br># but WITHOUT ANY WARRANTY; without even the implied warranty of<br># MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br># GNU General Public License for more details.<br>#<br># You should have received a copy of the GNU General Public License<br># along with Campcaster; if not, write to the Free Software<br># Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA<br>#<br>#<br># Author : $Author$<br># Version : $Revision$<br># Location : $URL$<br>#-------------------------------------------------------------------------------<br></pre>
<h2>General command definitions<br>
</h2>
This section contains definitions to commands used when executing the
make targets within this Makefile. All the commands should be collected
here, and a variable defined for them. This insures easy overview of
the commands the Makefile uses, and also makes it easy to migrate to
new commands, or the same commands in different locations.<br>
<br>
No external commands may be directly referenced outside this section.<br>
<h3>Sample</h3>
A sample general command definitions section follows.<br>
<pre>#-------------------------------------------------------------------------------<br># General command definitions<br>#-------------------------------------------------------------------------------<br>MKDIR = mkdir -p<br>RM = rm -f<br>RMDIR = rm -rf<br>DOXYGEN = doxygen<br><br></pre>
<h2>Basic directory and file definitions</h2>
This section contains definitions for the directories and files
referenced in this Makefile. All directories referenced from the
Makefile, and all external files referenced by the Makefile should be
collected here. This insures easy adoption in case some external
directories or files change.<br>
<br>
No directories or external files may be directory referenced outside
this section.<br>
<br>
When referencing other Campcaster modules, typically the following
variables are defined for them:<br>
<pre><code>MODULEX_DIR = ${MODULES_DIR}/moduleX<br>MODULEX_INCLUDE_DIR = ${MODULEX_DIR}/include<br>MODULEX_LIB_DIR = ${MODULEX_DIR}/lib<br>MODULEX_LIB = campcaster_modulex<br></code></pre>
<h3>Sample</h3>
A sample directory and file definition section follows.<br>
<pre>#-------------------------------------------------------------------------------<br># Basic directory and file definitions<br>#-------------------------------------------------------------------------------<br>BASE_DIR = .<br>DOC_DIR = ${BASE_DIR}/doc<br>DOXYGEN_DIR = ${DOC_DIR}/doxygen<br>ETC_DIR = ${BASE_DIR}/etc<br>SRC_DIR = ${BASE_DIR}/src<br>TMP_DIR = ${BASE_DIR}/tmp<br><br><br>USR_DIR = ${BASE_DIR}/../../usr<br>USR_INCLUDE_DIR = ${USR_DIR}/include<br>USR_LIB_DIR = ${USR_DIR}/lib<br>BOOST_INCLUDE_DIR = ${USR_INCLUDE_DIR}/boost-1_31<br>LIBXMLPP_INCLUDE_DIR = ${USR_INCLUDE_DIR}/libxml++-1.0<br><br>MODULES_DIR = ${BASE_DIR}/../../modules<br><br>HELLOLIB_DIR = ${MODULES_DIR}/hello<br>HELLOLIB_INCLUDE_DIR = ${HELLOLIB_DIR}/include<br>HELLOLIB_LIB_DIR = ${HELLOLIB_DIR}/lib<br>HELLOLIB_LIB = campcaster_hello<br><br>VPATH = ${SRC_DIR}<br><br>HELLO_EXE = ${TMP_DIR}/hello<br><br>DOXYGEN_CONFIG = ${ETC_DIR}/doxygen.config<br><br></pre>
<h2>Configuration parameters</h2>
This section contains the parameters passed to the building tools
(compiler, linker, etc.) When invoking building tools, they should be
parametrized by the definitions made here.<br>
<h3>Sample<br>
</h3>
A sample configuration parameters section follows.<br>
<pre>#-------------------------------------------------------------------------------<br># Configuration parameters<br>#-------------------------------------------------------------------------------<br>CPPFLAGS = <br>CXXFLAGS = -pedantic -Wall \<br> &nbsp;-I${USR_INCLUDE_DIR} -I${HELLOLIB_INCLUDE_DIR} \<br> -I${INCLUDE_DIR} -I${TMP_DIR}<br>LDFLAGS = -L${USR_LIB_DIR} -L${HELLOLIB_LIB_DIR} -L${LIB_DIR}<br><br></pre>
<h2>Dependencies</h2>
The dependencies section lists the objects that are build by implicit
rules, and that main targets depend on. This is the place where all
object files are listed, basically, for each library or executable.<br>
<br>
No object files that are built by this Makefile should be directly
referred to outside this section.<br>
<h3>Sample</h3>
A sample dependencies section follows.<br>
<pre>#-------------------------------------------------------------------------------<br># Dependencies<br>#-------------------------------------------------------------------------------<br>HELLO_EXE_OBJS = ${TMP_DIR}/main.o<br><br></pre>
<h2>Targets</h2>
This section lists all the explicit, external targets for the makefile.
For a list of targets required, see the <a href="buildEnvironment.html">description</a>
of the build environment. All targets in this section are marked as
.PHONY, as these targets are not building the files they are named
after.<br>
<br>
No explicit targets should be defined in the Makefile outside this
directory.<br>
<h3>Sample</h3>
A sample targets section follows.<br>
<pre>#-------------------------------------------------------------------------------<br># Targets<br>#-------------------------------------------------------------------------------<br>.PHONY: all dir_setup doc clean docclean depclean distclean<br> <br>all: dir_setup ${HELLO_EXE}<br> <br>dir_setup: ${TMP_DIR} ${DOXYGEN_DIR}<br> <br>doc:<br> ${DOXYGEN} ${DOXYGEN_CONFIG}<br> <br>clean:<br> ${RM} ${HELLO_EXE_OBJS} ${HELLO_EXE}<br> <br>docclean:<br> ${RMDIR} ${DOXYGEN_DIR}/html<br> <br>depclean: clean<br> <br>distclean: clean docclean<br> ${RMDIR} ${TMP_DIR}/config* ${TMP_DIR}/autom4te*<br> <br></pre>
<h2>Specific targets</h2>
This section defines the targets for files to be built by the Makefile.
These are the targets that specify how files are built, but are not
covered by pattern rules.<br>
<h3>Sample</h3>
A sample specific targets section follows.<br>
<pre>#-------------------------------------------------------------------------------<br># Specific targets<br>#-------------------------------------------------------------------------------<br>${HELLO_EXE}: ${HELLO_EXE_OBJS}<br> ${CXX} ${LDFLAGS} -o $@ $^ -l${HELLOLIB_LIB}<br> <br>${TMP_DIR}:<br> ${MKDIR} ${TMP_DIR}<br> <br>${DOXYGEN_DIR}:<br> ${MKDIR} ${DOXYGEN_DIR}<br> <br></pre>
<h2>Pattern rules</h2>
Pattern rules are the generic rules to build target files from object
files. Define these pattern rules in this section.<br>
<br>
No pattern rules should exist outside this section.<br>
<h3>Sample</h3>
A sample pattern rules section follows.<br>
<pre>#-------------------------------------------------------------------------------<br># Pattern rules<br>#-------------------------------------------------------------------------------<br>${TMP_DIR}/%.o : ${SRC_DIR}/%.cxx<br> ${CXX} ${CPPFLAGS} ${CXXFLAGS} -c -o $@ $&lt;<br><br></pre>
<br>
<h1>Template</h1>
See a generic <a href="templates/Makefile">template
for Makefiles</a>. You may freely copy this
template when starting to create a new Makefile.<br>
<br>
</body>
</html>

View file

@ -1,136 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8"
http-equiv="content-type">
<title>PHP file conventions</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &#169; 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document describes the PHP script file conventions for the Campcaster
project. See also the generic description of the <a
href="fileConventions.html">file conventions</a> in the Campcaster
project.<br>
<h1>Introduction</h1>
PHP scripts are text-based files containing PHP class definitions and/or commands.<br/>
They should adhere to the <a
href="http://pear.php.net/manual/en/standards.php">PEAR coding standards
conventions</a>.<br>
As text based files, they should adhere to the <a
href="fileConventions.html#textConventions">generic text-based
conventions</a>.<br>
<h1>Naming</h1>
A PHP script containing only class definition should have filename which reflects the class,
it is implementing.
Class names begin with a capital letter, followed by lower case letters.
In case of a multiple word file name, the first letter of each word is
capitalized.<br/>
Other PHP scripts should have name starting with lowecase letter.<br/>
PHP script files are named by the following rules:<br>
<ul>
<li>there are no spaces in the file name</li>
<li>for file names containing multiple words, each additional word
begins with a capital letter</li>
<li>the extension of the file is <code>.php</code><br>
</li>
</ul>
<h1>Structure</h1>
PHP scripts are partitioned by using the following 80 column wide partitioning comments:<br/>
<pre>
/* ==================================================== name of the partition */
</pre>
and
<pre>
/* ------------------------------------------------- name of the subpartition */
</pre>
The file has the following mandatory structure:<br>
<ul>
<li>PHP starting tag <code>&lt;?php </code></li>
<li>Header</li>
<li>Defines&nbsp;?</li>
<li>Include files&nbsp;?</li>
<li>Code sections&nbsp;+</li>
<li>PHP ending tag <code>?&gt; </code></li>
</ul>
Because PHP is in-HTML embedable script language, it is possible to mix PHP and HTML code
using PHP tags <code>&lt;?php</code> and <code>?&gt;</code>. This mixing approach is little bit
obsolete and it is better to use pure PHP (with structure described above) and some template system to generate HTML.
<h2>Header</h2>
The header holds all information mandated by the <a
href="fileConventions.html#header">generic guidelines</a>, but
are enclosed in the PHP multiline comments <code>/* */</code>. Note the 80
column wide partitioning delimiter enclosing the header.<br>
<pre>
/*------------------------------------------------------------------------------
Copyright (c) 2010 Sourcefabric O.P.S.
This file is part of the Campcaster project.
http://campcaster.sourcefabric.org/
To report bugs, send an e-mail to bugs@campware.org
Campcaster is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Campcaster is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Campcaster; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author$
Version : $Revision$
Location : $URL$
------------------------------------------------------------------------------*/
</pre>
<h2>Defines<br>
</h2>
This section contains all the constant defines, similar as:<br/>
<br/>
<code>define('CONSTAT_NAME', 10);</code><br/>
<br/>
<h2>Include files<br>
</h2>
This section contains all the include files that the script needs
to include.
The include files are listed in
a most generic to most specific order: first PEAR classes, then
other Campcaster module include files, and finally include files from
the same module / product are listed.<br>
Is much safer to use <code>include_once</code> or <code>require_once</code>, not the original versions
of this statement.<br/>
<br>
<h2>Code sections</h2>
This sections contain class definitions, function definitions or runable PHP commands.<br/>
<h1>Template</h1>
See a generic <a href="templates/phpScriptTemplate.phps">template
for PHP scripts</a>.
You may freely <a href="templates/phpScriptTemplate.php.txt">download</a> and copy this
template when starting to create a new script.<br>
<br>
</body>
</html>

View file

@ -1,76 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>shell script conventions</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright © 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document describes the shell script file conventions for the
Campcaster
project. See also the generic description of the <a
href="fileConventions.html">file
conventions</a> in the Campcaster
project.<br>
<h1>Introduction</h1>
Shell scripts are text-based executable shell command files. As text
based files, they should adhere to the <a
href="fileConventions.html#textConventions">generic text-based
conventions</a>.<br>
<h1>Naming</h1>
Shell script files are named by the following rules:<br>
<ul>
<li>there are no spaces in the file name</li>
<li>the file name begins with a lower case letter</li>
<li>for file names containing multiple words, each additional word
begins with a capital letter</li>
<li>the extension of the file is <code>.sh</code><br>
</li>
</ul>
For example, a file with a single-word name may be named like: <code>single.sh</code>,
whereas a file with multiple word name would be like: <code>multipleWordNameFile.sh</code>.<br>
<h1>Structure</h1>
Shell script files are partitioned by using the following 80 column
wide partitioning comment:<br>
<pre>#-------------------------------------------------------------------------------<br># This is the title of the partition<br>#-------------------------------------------------------------------------------<br></pre>
The file has the
following mandatory structure:<br>
<ul>
<li>Reference to the shell<br>
</li>
<li>Header</li>
<li>Additional sections+</li>
</ul>
<h2>Reference to the shell<br>
</h2>
This is the mandatory reference to the shell executable each script has
to begin with:<br>
<pre><code>#!/bin/sh</code><br></pre>
<h2>Header</h2>
The header holds all information mandated by the <a
href="fileConventions.html#header">generic guidelines</a>, but
starting with the shell comment character <code>#</code>. Note the 80
column wide partitioning delimiter enclosing the header.<br>
<pre>#-------------------------------------------------------------------------------<br># Copyright (c) 2010 Sourcefabric O.P.S.<br>#<br># This file is part of the Campcaster project.<br># http://campcaster.sourcefabric.org/<br># To report bugs, send an e-mail to bugs@campware.org<br>#<br># Campcaster is free software; you can redistribute it and/or modify<br># it under the terms of the GNU General Public License as published by<br># the Free Software Foundation; either version 2 of the License, or<br># (at your option) any later version.<br>#<br># Campcaster is distributed in the hope that it will be useful,<br># but WITHOUT ANY WARRANTY; without even the implied warranty of<br># MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br># GNU General Public License for more details.<br>#<br># You should have received a copy of the GNU General Public License<br># along with Campcaster; if not, write to the Free Software<br># Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA<br>#<br>#<br># Author : $Author$<br># Version : $Revision$<br># Location : $URL$<br>#-------------------------------------------------------------------------------<br></pre>
<h2>Additional sections</h2>
Additional sections contain the executing code of the script. Bigger
parts of the script may be partitioned by the partitioning commend seen
above.<br>
<h1>Template</h1>
See a generic <a href="templates/shellScriptTemplate.sh">template
for shell scripts</a>. You may freely copy this
template when starting to create a new document.<br>
<br>
</body>
</html>

View file

@ -1,70 +0,0 @@
/*------------------------------------------------------------------------------
Copyright (c) 2010 Sourcefabric O.P.S.
This file is part of the Campcaster project.
http://campcaster.sourcefabric.org/
To report bugs, send an e-mail to bugs@campware.org
Campcaster is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Campcaster is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Campcaster; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author$
Version : $Revision$
Location : $URL$
------------------------------------------------------------------------------*/
/* =============================================== include files & namespaces */
#ifdef HAVE_CONFIG_H
#include "configure.h"
#endif
#include <LiveSupport/Foo/Bar.h>
using namespace LiveSupport::Core;
using namespace LiveSupport::Bar;
/* =================================================== local data structures */
/* ================================================ local constants & macros */
/*------------------------------------------------------------------------------
* Our famous foo string.
*----------------------------------------------------------------------------*/
const std::string Bar::fooStr = "foo";
/* =============================================== local function prototypes */
/* ============================================================= module code */
/*------------------------------------------------------------------------------
* Return the famous bar string.
*----------------------------------------------------------------------------*/
const std::string
Bar :: sayBar(void) throw (std::exception)
{
if (barInt) {
throw std::exception();
}
return barStr;
}

View file

@ -1,125 +0,0 @@
/*------------------------------------------------------------------------------
Copyright (c) 2010 Sourcefabric O.P.S.
This file is part of the Campcaster project.
http://campcaster.sourcefabric.org/
To report bugs, send an e-mail to bugs@campware.org
Campcaster is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Campcaster is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Campcaster; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author$
Version : $Revision$
Location : $URL$
------------------------------------------------------------------------------*/
#ifndef LiveSupport_Foo_Bar_h
#define LiveSupport_Foo_Bar_H
#ifndef __cplusplus
#error This is a C++ include file
#endif
/* =============================================== include files & namespaces */
#ifdef HAVE_CONFIG_H
#include "configure.h"
#endif
#include <string>
namespace LiveSupport {
namespace Foo {
using namespace LiveSupport::Core;
/* ================================================================ constants */
/* =================================================================== macros */
/* =============================================================== data types */
/**
* Bar class.
* This does nothing.
*
* @author $Author$
* @version $Revision$
*/
class Bar
{
private:
/**
* A static member variable.
*/
static const std::string barStr;
/**
* A member variable.
*/
int barInt;
public:
/**
* Default constructor.
*/
Bar (void) throw ()
{
}
/**
* Say something.
*
* @return the bar string.
* @exception std::exception on some problems.
*/
const std::string
sayBar(void) throw (std::exception);
/**
* Say something else.
*
* @param firstParam the first parameter (a pointer).
* @param secondParam the second parameter (a smart pointer).
* @return the bar string.
*/
void
sayFoo(ClassOne * firstParam,
Ptr<ClassTwo>::Ref secondParam)
throw ()
{
// TODO: implement this important function.
}
};
/* ================================================= external data structures */
/* ====================================================== function prototypes */
} // namespace Foo
} // namespace LiveSupport
#endif // LiveSupport_Foo_Bar_H

View file

@ -1,117 +0,0 @@
#-------------------------------------------------------------------------------
# Copyright (c) 2010 Sourcefabric O.P.S.
#
# This file is part of the Campcaster project.
# http://campcaster.campware.org/
#
# Campcaster is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Campcaster is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Campcaster; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# General command definitions
#-------------------------------------------------------------------------------
MKDIR = mkdir -p
RM = rm -f
RMDIR = rm -rf
DOXYGEN = doxygen
#-------------------------------------------------------------------------------
# Basic directory and file definitions
#-------------------------------------------------------------------------------
BASE_DIR = .
DOC_DIR = ${BASE_DIR}/doc
DOXYGEN_DIR = ${DOC_DIR}/doxygen
ETC_DIR = ${BASE_DIR}/etc
SRC_DIR = ${BASE_DIR}/src
TMP_DIR = ${BASE_DIR}/tmp
VPATH = ${SRC_DIR}
MODULES_DIR = ${BASE_DIR}/../../modules
HELLOLIB_DIR = ${MODULES_DIR}/hello
HELLOLIB_INCLUDE_DIR = ${HELLOLIB_DIR}/include
HELLOLIB_LIB_DIR = ${HELLOLIB_DIR}/lib
HELLOLIB_LIB = livesupport_hello
HELLO_EXE = ${TMP_DIR}/hello
DOXYGEN_CONFIG = ${ETC_DIR}/doxygen.config
#-------------------------------------------------------------------------------
# Configuration parameters
#-------------------------------------------------------------------------------
CPPFLAGS =
CXXFLAGS = -pedantic -Wall \
-I${TMP_DIR} -I${HELLOLIB_INCLUDE_DIR}
LDFLAGS = -L${HELLOLIB_LIB_DIR}
#-------------------------------------------------------------------------------
# Dependencies
#-------------------------------------------------------------------------------
HELLO_EXE_OBJS = ${TMP_DIR}/main.o
#-------------------------------------------------------------------------------
# Targets
#-------------------------------------------------------------------------------
.PHONY: all dir_setup doc clean docclean depclean distclean
all: ${HELLOLIB_LIB} dir_setup ${HELLO_EXE}
dir_setup: ${TMP_DIR} ${DOXYGEN_DIR}
doc:
${DOXYGEN} ${DOXYGEN_CONFIG}
clean:
${RM} ${HELLO_EXE_OBJS} ${HELLO_EXE}
docclean:
${RMDIR} ${DOXYGEN_DIR}/html
depclean: clean
${MAKE} -C ${HELLOLIB_DIR} clean
distclean: clean docclean
${RMDIR} ${TMP_DIR}/config* ${TMP_DIR}/autom4te*
#-------------------------------------------------------------------------------
# Specific targets
#-------------------------------------------------------------------------------
${HELLO_EXE}: ${HELLO_EXE_OBJS}
${CXX} ${LDFLAGS} -o $@ $^ -l${HELLOLIB_LIB}
${TMP_DIR}:
${MKDIR} ${TMP_DIR}
${DOXYGEN_DIR}:
${MKDIR} ${DOXYGEN_DIR}
${HELLOLIB_LIB}:
${MAKE} -C ${HELLOLIB_DIR} all
#-------------------------------------------------------------------------------
# Pattern rules
#-------------------------------------------------------------------------------
${TMP_DIR}/%.o : ${SRC_DIR}/%.cxx
${CXX} ${CPPFLAGS} ${CXXFLAGS} -c -o $@ $<

View file

@ -1,49 +0,0 @@
dnl-----------------------------------------------------------------------------
dnl Copyright (c) 2010 Sourcefabric O.P.S.
dnl
dnl This file is part of the Campcaster project.
dnl http://campcaster.sourcefabric.org/
dnl To report bugs, send an e-mail to bugs@campware.org
dnl
dnl Campcaster is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation; either version 2 of the License, or
dnl (at your option) any later version.
dnl
dnl Campcaster is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with Campcaster; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
dnl
dnl Author : $Author$
dnl Version : $Revision$
dnl Location : $URL$
dnl-----------------------------------------------------------------------------
dnl-----------------------------------------------------------------------------
dnl NOTE: Run all configure related scripts from the tmp directory of the
dnl project.
dnl This is due to the fact that configure spreads a lot of trash around,
dnl like atom4te cache directories, config.* files, etc. into the directory
dnl it is being run from. We clearly don't want these in our base directory.
dnl-----------------------------------------------------------------------------
AC_INIT(Hello, 1.0, bugs@campware.org)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2010 Sourcefabric O.P.S. under the GNU GPL])
AC_REVISION($Revision$)
AC_CONFIG_SRCDIR(../src/main.cxx)
AC_CONFIG_HEADERS(configure.h)
AC_PROG_CXX()
AC_CHECK_HEADERS(unistd.h getopt.h)
AC_CONFIG_FILES(../Makefile:../etc/Makefile.in)
AC_OUTPUT()

View file

@ -1,29 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8"
http-equiv="content-type">
<title>HTML document template</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &#169; 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
Describe the scope of your document here, e.g. what topic it is all
about<br>
<h1>Introduction</h1>
Introduce the content of the document to your reader<br>
<h1>Additional sections</h1>
Write about your topic in details here..<br>
<br>
</body>
</html>

View file

@ -1,98 +0,0 @@
<?php
/*------------------------------------------------------------------------------
Copyright (c) 2010 Sourcefabric O.P.S.
This file is part of the Campcaster project.
http://campcaster.sourcefabric.org/
To report bugs, send an e-mail to bugs@campware.org
Campcaster is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Campcaster is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Campcaster; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author$
Version : $Revision$
Location : $URL$
------------------------------------------------------------------------------*/
define('CONSTANT1', 10);
define('CONSTANT2', 20);
define('ERROR_CODE', 404);
require_once "DB.php";
require_once "../../../othermodule/var/ClassName.php";
require_once "LocalBaseClass.php";
/**
* Example class
*
* Description of Example class
*
* @author $Author$
* @version $Revision$
* @see LocalBaseClass
*/
class Example extends LocalBaseClass{
var $property1;
var $property2;
/* ========================================================== constructor */
/**
* Constructor
*
* @param paramName parameter type, description
* @return return type, description
*/
function Example($paramName)
{
parent::LocalBaseClass($paramName);
/* commands here */
}
/* ======================================================= public methods */
/**
* First Example method
*
* @param paramName parameter type, description
* @return return type, description
*/
function firstExampleMethod($paramName)
{
/* commands here */
return $variable;
}
/**
* Second Example method
*
* @param paramName parameter type, description
* @return return type, description
*/
function secondExampleMethod($paramName)
{
/* commands here */
return $variable;
}
/* ----------------------------------------------------------- subsection */
/* ---------------------------------------------------- redefined methods */
/* ==================================================== "private" methods */
/* =============================================== test and debug methods */
}
/* optional runable code here */
?>

View file

@ -1,98 +0,0 @@
<?php
/*------------------------------------------------------------------------------
Copyright (c) 2010 Sourcefabric O.P.S.
This file is part of the Campcaster project.
http://campcaster.sourcefabric.org/
To report bugs, send an e-mail to bugs@campware.org
Campcaster is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Campcaster is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Campcaster; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author$
Version : $Revision$
Location : $URL$
------------------------------------------------------------------------------*/
define('CONSTANT1', 10);
define('CONSTANT2', 20);
define('ERROR_CODE', 404);
require_once "DB.php";
require_once "../../../othermodule/var/ClassName.php";
require_once "LocalBaseClass.php";
/**
* Example class
*
* Description of Example class
*
* @author $Author$
* @version $Revision$
* @see LocalBaseClass
*/
class Example extends LocalBaseClass{
var $property1;
var $property2;
/* ========================================================== constructor */
/**
* Constructor
*
* @param paramName parameter type, description
* @return return type, description
*/
function Example($paramName)
{
parent::LocalBaseClass($paramName);
/* commands here */
}
/* ======================================================= public methods */
/**
* First Example method
*
* @param paramName parameter type, description
* @return return type, description
*/
function firstExampleMethod($paramName)
{
/* commands here */
return $variable;
}
/**
* Second Example method
*
* @param paramName parameter type, description
* @return return type, description
*/
function secondExampleMethod($paramName)
{
/* commands here */
return $variable;
}
/* ----------------------------------------------------------- subsection */
/* ---------------------------------------------------- redefined methods */
/* ==================================================== "private" methods */
/* =============================================== test and debug methods */
}
/* optional runable code here */
?>

View file

@ -1,33 +0,0 @@
#!/bin/bash
#-------------------------------------------------------------------------------
# Copyright (c) 2010 Sourcefabric O.P.S.
#
# This file is part of the Campcaster project.
# http://campcaster.sourcefabric.org/
# To report bugs, send an e-mail to bugs@campware.org
#
# Campcaster is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Campcaster is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Campcaster; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
# Author : $Author$
# Version : $Revision$
# Location : $URL$
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# This script does nothing else, but says hello.
#-------------------------------------------------------------------------------
echo "Hello!";

View file

@ -1 +0,0 @@
keep me

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 324 KiB

View file

@ -1,13 +0,0 @@
<html><head><title>final designs : campcaster</title></head>
<body>
<a href="livemode.gif" target="100%">master palette, live mode, cue, history, scratchpad and xfader</a><br>
<a href="advancedsearch.gif" target="100%">advanced search</a><br>
<a href="simple-browser.gif" target="100%">search : browser and simple search</a><br>
<a href="info.gif" target="100%">info palette</a><br>
<a href="uploadstream.gif" target="100%">upload stream</a><br>
<a href="editfile.gif" target="100%">edit file</a><br>
<a href="login_upload.gif" target="100%">login and upload palettes</a><br>
<a href="scheduler_week.gif" target="100%">scheduler, week view</a><br>
<a href="scheduler_day.gif" target="100%">scheduler, day view</a><br>
<a href="playlist_list_view.gif" target="100%">playlist, list view</a><br>
<a href="playlist_timeline_view.gif" target="100%">playlist, timeline view</a></body></html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 346 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 318 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 293 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 298 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 195 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 338 KiB

View file

@ -1,100 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8"
http-equiv="content-type">
<title>File Conventions</title>
<meta content="$Author$" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &#169; 2007 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document describes the conventions used for the Glade window design files.<br>
<h1>Introduction</h1>
The following are spacing and other conventions observed in the Glade files
<code>src/products/gLiveSupport/var/glade/*.glade</code>. They are loosely
based on the design documentation <code>styleguide.pdf</code>.
<h1>Structural conventions</h1>
<p>Each toplevel has its own file, named the same as the C++ class which
controls it, with the extension <code>.glade</code>. For example:
<code>ScratchpadWindow.glade</code>, <code>LiveModeWindow.glade</code>.
Pop-up dialogs which do not have their own class go into the Glade file
of the toplevel which pops them up.
<p>Each toplevel should be a GtkWindow, except for pop-ups like the Login
window, confirmation dialogs etc., which are GtkDialogs or subclasses of it.</p>
<p>Always use boxes, because this assures that the widgets get positioned
and resized properly when the window is resized. Each toplevel should
contain a single GtkVBox, which contains some number of GtkHBoxes and
GtkHButtonBoxes, which in turn contain the widgets.</p>
<p>If a group of widgets belong logically together, put them in their own
GtkHBox or GtkVBox.</p>
<h1>Naming conventions</h1>
<p>Widgets which need to be referred to from the controlling class should
have a camelCased name followed by "1", with the function of the widget first
and the kind of the widget second: e.g., <code>playButton1</code>,
<code>fileNameEntry1</code>, <code>scratchpadTreeView1</code>. Such names
must be unique in their own Glade file. If there is a group of
widgets with same function, they should be numbered starting with 1,
like this: <code>myGroupButton1</code>, <code>myGroupButton2</code>,
<code>myGroupButton3</code> etc.</p>
<p><em>The reason for the "1" at the end of names, and for the unusual
1-based numbering for groups of widgets is that this is how Glade does it.
If you follow these guidelines, and copy or move part of the window using
copy-paste, the widget names will stay correct. If a widget had a name
without a number, and you cut and then repasted it, its name would get an
extra "1" at the end.</em></p>
<p>Widgets which do not need to be referred can keep their Glade-assigned
names like <code>treeview3</code>; these do not need to be unique.</p>
<h1>Sizing conventions</h1>
<p>Each toplevel should have a border width of <strong>8 pixels</strong>.</p>
<p>Use spacing, not padding. For example, if some widgets are packed into
<code>hbox1</code>, and we want 8 pixels between each widget, set the spacing
of <code>hbox1</code> to 8 pixels; leave the padding of the widgets at 0.
To put some space before the first and after the last widget, set the spacing
of the outer box which contains <code>hbox1</code>.
For finetuning, if spacing can not be used, you can add padding to boxes,
but not to widgets.</p>
<p>Normal spacing between widgets is <strong>8 pixels</strong>. Spacing
between related widgets (e.g., an input field and its label) is
<strong>3 pixels</strong>.</p>
<h1>Other conventions</h1>
<p>Use stock buttons whenever possible. This makes the application behave
much nicer with themes.</p>
<br><br><br>
</body>
</html>

File diff suppressed because it is too large Load diff

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,179 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M60 20 L60 550 L730 550 L730 20 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 530 L670 530 L670 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-150 -60 L-150 470 L520 470 L520 -60 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-152 -62 L-152 468 L518 468 L518 -62 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-150 -77 L-150 453 L520 453 L520 -77 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-520 -240 L-520 290 L150 290 L150 -240 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-522 -242 L-522 288 L148 288 L148 -242 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-520 -257 L-520 273 L150 273 L150 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-10 -230 L-10 300 L660 300 L660 -230 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-12 -232 L-12 298 L658 298 L658 -232 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-10 -247 L-10 283 L660 283 L660 -247 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-270 -400 L-270 130 L400 130 L400 -400 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-272 -402 L-272 128 L398 128 L398 -402 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-270 -417 L-270 113 L400 113 L400 -417 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-420 -10 L-420 520 L250 520 L250 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-422 -12 L-422 518 L248 518 L248 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-420 -27 L-420 503 L250 503 L250 -27 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-172.17543029785156 -558.8779907226562 L-416.0186462402344 -88.3033676147461 L178.8587188720703 219.95126342773438 L422.7019348144531 -250.6233673095703 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M403.0769348144531 265.3846130371094 L199.23077392578125 -223.84616088867188 L-419.23077392578125 33.846153259277344 L-215.38461303710938 523.076904296875 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M247 -150 L-283 -150 L-283 520 L247 520 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M400 -280 L-130 -280 L-130 390 L400 390 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M563.7422485351562 100.96875762939453 L429.9586181640625 -411.868408203125 L-218.34494018554688 -242.7457275390625 L-84.56133270263672 270.0914306640625 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M302.1673583984375 -439.0152282714844 L-211.8700714111328 -309.9202575683594 L-48.674530029296875 339.9006652832031 L465.3629150390625 210.80567932128906 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M240 -535 L-290 -535 L-290 135 L240 135 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-39.4243049621582 -286.27734375 L-250.15625 200.02713012695312 L364.60601806640625 466.4241027832031 L575.3379516601562 -19.88037109375 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-290 -90 L-290 440 L380 440 L380 -90 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,150,60)">
<path d="M0.5 0.5 L55.57275390625 0.5 L55.57275390625 17.5 L0.5 17.5 Z" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,152,62)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">Scheduler</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,150,77)">
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="none" clip-path="url(#clipPath5)" />
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="black" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,520,240)">
<path d="M0.5 0.5 L74.53271484375 0.5 L74.53271484375 17.5 L0.5 17.5 Z" stroke="none" clip-path="url(#clipPath6)" />
<path d="M0.5 0.5 L74.53271484375 0.5 L74.53271484375 17.5 L0.5 17.5 Z" stroke="black" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,522,242)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath7)">Local storage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,520,257)">
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="none" clip-path="url(#clipPath8)" />
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,230)">
<path d="M0.5 0.5 L76.79930114746094 0.5 L76.79930114746094 17.5 L0.5 17.5 Z" stroke="none" clip-path="url(#clipPath9)" />
<path d="M0.5 0.5 L76.79930114746094 0.5 L76.79930114746094 17.5 L0.5 17.5 Z" stroke="black" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12,232)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Media archive</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,247)">
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,270,400)">
<path d="M0.5 0.5 L81.6923828125 0.5 L81.6923828125 17.5 L0.5 17.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L81.6923828125 0.5 L81.6923828125 17.5 L0.5 17.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,272,402)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">Authentication</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,270,417)">
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="none" clip-path="url(#clipPath14)" />
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="black" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,420,10)">
<path d="M0.5 0.5 L75.74658203125 0.5 L75.74658203125 17.5 L0.5 17.5 Z" stroke="none" clip-path="url(#clipPath15)" />
<path d="M0.5 0.5 L75.74658203125 0.5 L75.74658203125 17.5 L0.5 17.5 Z" stroke="black" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,422,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">Playlist editor</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,420,27)">
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="none" clip-path="url(#clipPath17)" />
<path d="M0.5 0.5 L139.5 0.5 L139.5 102.5 L0.5 102.5 Z" stroke="black" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-20)">
<path d="M580 380 L470 437" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath18)" fill="none" stroke-linecap="square" transform="matrix(0.8878766650334321,-0.4600815446082472,0.4600815446082472,0.8878766650334321,470,437)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-20)">
<path d="M210 370 L330 420" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath19)" fill="none" stroke-linecap="square" transform="matrix(-0.9230769230769345,-0.38461538461535705,0.38461538461535705,-0.9230769230769345,330,420)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-20)">
<path d="M210 200 L210 267" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath20)" fill="none" stroke-linecap="square" transform="matrix(5.88418203051333E-15,-1,1,5.88418203051333E-15,210,267)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-20)">
<path d="M340 200 L340 420" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-2.653433028854124E-14,-1,1,-2.653433028854124E-14,340,420)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-20)">
<path d="M350 200 L580 260" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath22)" fill="none" stroke-linecap="square" transform="matrix(-0.9676172723968477,-0.2524218971469878,0.2524218971469878,-0.9676172723968477,580,260)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-20)">
<path d="M480 150 L412.1924133300781 420" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath23)" fill="none" stroke-linecap="square" transform="matrix(0.24357543580434315,-0.9698819552258534,0.9698819552258534,0.24357543580434315,412.1924,420)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-20)">
<path d="M595 150 L595 260" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath24)" fill="none" stroke-linecap="square" transform="matrix(0,-1,1,0,595,260)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-20)">
<path d="M480 150 L210 267" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath25)" fill="none" stroke-linecap="square" transform="matrix(0.917555625309924,-0.39760743763430084,0.39760743763430084,0.917555625309924,210,267)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-20)">
<path d="M480 110 L350 110" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath26)" fill="none" stroke-linecap="square" transform="matrix(1,0,0,1,350,110)" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,139 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M72 10 L72 116 L572 116 L572 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 106 L500 106 L500 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-28 -10 L-28 96 L472 96 L472 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.798800468444824 -42 L-12.798800468444824 64 L487.2012023925781 64 L487.2012023925781 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-35.862300872802734 -42 L-35.862300872802734 64 L464.1376953125 64 L464.1376953125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-39.34270095825195 -42 L-39.34270095825195 64 L460.65728759765625 64 L460.65728759765625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-358 -10 L-358 96 L142 96 L142 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-364 -16 L-364 90 L136 90 L136 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-401.4740905761719 -16 L-401.4740905761719 90 L98.5259017944336 90 L98.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-404.95458984375 -16 L-404.95458984375 90 L95.04540252685547 90 L95.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-418.573486328125 -75 L-418.573486328125 31 L81.42649841308594 31 L81.42649841308594 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M418.573486328125 75 L418.573486328125 -31 L-81.42649841308594 -31 L-81.42649841308594 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-121.2926025390625 -51 L-121.2926025390625 55 L378.7073974609375 55 L378.7073974609375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-126.77310180664062 -51 L-126.77310180664062 55 L373.2268981933594 55 L373.2268981933594 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-132.2534942626953 -51 L-132.2534942626953 55 L367.7464904785156 55 L367.7464904785156 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-205.2198028564453 -51 L-205.2198028564453 55 L294.78021240234375 55 L294.78021240234375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-217.44439697265625 -51 L-217.44439697265625 55 L282.55560302734375 55 L282.55560302734375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-283.4873962402344 -51 L-283.4873962402344 55 L216.51260375976562 55 L216.51260375976562 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-287.06451416015625 -51 L-287.06451416015625 55 L212.9355010986328 55 L212.9355010986328 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-331.7037048339844 -51 L-331.7037048339844 55 L168.29629516601562 55 L168.29629516601562 -51 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,28,10)">
<path d="M10.5 48.5 L10.5 85.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.7988,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">user</text>
<line x1="0" y1="12.5" x2="23.0634765625" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,35.862300000000005,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,39.3427,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">User</text>
<line x1="0" y1="12.5" x2="23.8583984375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,358,10)">
<path d="M66.07350158691406 0.5 L66.07350158691406 85.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M66.07350158691406 0.5 L66.07350158691406 85.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L130.64700317382812 0.5 L130.64700317382812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L130.64700317382812 0.5 L130.64700317382812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,364,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,401.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,404.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Authentication</text>
<line x1="0" y1="12.5" x2="78.1923828125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,418.5735,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 20.5 L0.5 20.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 20.5 L0.5 20.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-72,-10)">
<path d="M110 85 L490.573486328125 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,0,0,-1,490.5735,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,490.5735,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,121.2926,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,126.7731,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,132.2535,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,205.21980000000002,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,217.4444,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,283.4874,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,287.0645,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,331.7037,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,259 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M140 30 L140 590 L700 590 L700 30 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 560 L560 560 L560 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 550 L550 550 L550 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-229.39329528808594 -12 L-229.39329528808594 548 L330.606689453125 548 L330.606689453125 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-249.88160705566406 -12 L-249.88160705566406 548 L310.118408203125 548 L310.118408203125 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-313.118408203125 -12 L-313.118408203125 548 L246.88160705566406 548 L246.88160705566406 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-240.90379333496094 -28 L-240.90379333496094 532 L319.09619140625 532 L319.09619140625 -28 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-60 -270 L-60 290 L500 290 L500 -270 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-63 -273 L-63 287 L497 287 L497 -273 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-61 -289 L-61 271 L499 271 L499 -289 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-61 -314 L-61 246 L499 246 L499 -314 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-270 -350 L-270 210 L290 210 L290 -350 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-215.79100036621094 -380 L-215.79100036621094 180 L344.2090148925781 180 L344.2090148925781 -380 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-50 -70 L-50 490 L510 490 L510 -70 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-53 -73 L-53 487 L507 487 L507 -73 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-51 -89 L-51 471 L509 471 L509 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-51 -114 L-51 446 L509 446 L509 -114 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-330 -180 L-330 380 L230 380 L230 -180 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-338.341796875 -183 L-338.341796875 377 L221.658203125 377 L221.658203125 -183 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-331 -199 L-331 361 L229 361 L229 -199 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-331 -224 L-331 336 L229 336 L229 -224 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-10 -46 L-10 514 L550 514 L550 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-287.5 -391.5 L-287.5 168.5 L272.5 168.5 L272.5 -391.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M270 -130 L-290 -130 L-290 430 L270 430 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-118.24810028076172 -243.0095977783203 L-118.24810028076172 316.9903869628906 L441.75189208984375 316.9903869628906 L441.75189208984375 -243.0095977783203 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-86.9677963256836 -198 L-86.9677963256836 362 L473.0321960449219 362 L473.0321960449219 -198 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-223.21859741210938 -81.1190414428711 L-67.47184753417969 456.78704833984375 L470.4342346191406 301.040283203125 L314.6874694824219 -236.8657989501953 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-263.7066955566406 -137.5386962890625 L-263.7066955566406 422.4613037109375 L296.2933044433594 422.4613037109375 L296.2933044433594 -137.5386962890625 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-250 -480 L-250 80 L310 80 L310 -480 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-287.1174011230469 -483 L-287.1174011230469 77 L272.8825988769531 77 L272.8825988769531 -483 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-251 -499 L-251 61 L309 61 L309 -499 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-251 -524 L-251 36 L309 36 L309 -524 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-397 282.5 L163 282.5 L163 -277.5 L-397 -277.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-292.5 -431.5 L-292.5 128.5 L267.5 128.5 L267.5 -431.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-340 140 L220 140 L220 -420 L-340 -420 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-172.7888946533203 -444.1612854003906 L-172.7888946533203 115.83869934082031 L387.2110900878906 115.83869934082031 L387.2110900878906 -444.1612854003906 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M0.5 0.5 L539.5 0.5 L539.5 389.5 L0.5 389.5 Z" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,229.3933,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">&lt;&lt;</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,249.88160000000002,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">component</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,313.1184,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">&gt;&gt;</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,240.9038,28)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath7)">Authentication</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,60,270)">
<path d="M0.5 0.5 L111.27290344238281 0.5 L111.27290344238281 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath8)" />
<path d="M0.5 0.5 L111.27290344238281 0.5 L111.27290344238281 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,63,273)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">AuthenticationInfo</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,61,289)">
<path d="M0.5 0.5 L109.27290344238281 0.5 L109.27290344238281 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath10)" />
<path d="M0.5 0.5 L109.27290344238281 0.5 L109.27290344238281 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,61,314)">
<path d="M0.5 0.5 L109.27290344238281 0.5 L109.27290344238281 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L109.27290344238281 0.5 L109.27290344238281 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,270,350)">
<path d="M21 12.5 C21 17.194419860839844 17.194419860839844 21 12.5 21 C7.805579662322998 21 4 17.194419860839844 4 12.5 C4 7.805579662322998 7.805579662322998 4 12.5 4 C17.194419860839844 4 21 7.805579662322998 21 12.5 Z" fill-rule="evenodd" stroke="none" clip-path="url(#clipPath12)" />
<path d="M21 12.5 C21 17.194419860839844 17.194419860839844 21 12.5 21 C7.805579662322998 21 4 17.194419860839844 4 12.5 C4 7.805579662322998 7.805579662322998 4 12.5 4 C17.194419860839844 4 21 7.805579662322998 21 12.5 Z" fill-rule="evenodd" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,215.791,380)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">AuthenticationInterface</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,50,70)">
<path d="M0.5 0.5 L141.35110473632812 0.5 L141.35110473632812 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath14)" />
<path d="M0.5 0.5 L141.35110473632812 0.5 L141.35110473632812 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,53,73)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">AuthenticationDatabase</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,51,89)">
<path d="M0.5 0.5 L139.35110473632812 0.5 L139.35110473632812 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath16)" />
<path d="M0.5 0.5 L139.35110473632812 0.5 L139.35110473632812 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,51,114)">
<path d="M0.5 0.5 L139.35110473632812 0.5 L139.35110473632812 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath17)" />
<path d="M0.5 0.5 L139.35110473632812 0.5 L139.35110473632812 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,330,180)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath18)" />
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath18)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,338.3418,183)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">Authentication</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,331,199)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath20)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath20)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,331,224)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath21)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath21)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,46)">
<path d="M272.5 354 L272.5 351" clip-path="url(#clipPath22)" fill="none" />
<text x="0" y="11" xml:space="preserve" font-weight="normal" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath23)" stroke-linecap="square" transform="matrix(1,0,0,1,277.5,345.5)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,46)">
<path d="M320 204 L277.3622131347656 304.9844055175781" clip-path="url(#clipPath22)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,46)">
<path d="M120 94 L120 224" clip-path="url(#clipPath22)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,-1,1,0,130,270)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath24)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,-1,1,0,130,270)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath24)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,118.2481,243.0096)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">*</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,86.9678,198)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">Stores</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,46)">
<path d="M320 134 L181.85110473632812 94" clip-path="url(#clipPath22)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0.960546566357187,0.2781192080015656,-0.2781192080015656,0.960546566357187,191.8511,140)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath27)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0.960546566357187,0.2781192080015656,-0.2781192080015656,0.960546566357187,191.8511,140)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath27)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,263.7067,137.5387)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">Checks authentication info in</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,250,480)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath29)" />
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath29)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,287.1174,483)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">User</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,251,499)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath31)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath31)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,251,524)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath32)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath32)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-140,-30)">
<path d="M422.5 510 L422.5 427" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,282.5,397)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath33)" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,282.5,397)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath33)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,292.5,431.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">Authenticates by</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-140,-30)">
<path d="M390 510 L280 490 L280 370" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,140,340)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath35)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,140,340)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath35)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,172.7889,444.1613)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">Contains</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 26 KiB

View file

@ -1,63 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M60 70 L60 310 L510 310 L510 70 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 240 L450 240 L450 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-180 -10 L-180 230 L270 230 L270 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-182 -12 L-182 228 L268 228 L268 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-180 -27 L-180 213 L270 213 L270 -27 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-220 -90 L-220 150 L230 150 L230 -90 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-251.7801971435547 -106 L-251.7801971435547 134 L198.2198028564453 134 L198.2198028564453 -106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-10 -80 L-10 160 L440 160 L440 -80 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-23.07080078125 -165 L-23.07080078125 75 L426.92919921875 75 L426.92919921875 -165 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,180,10)">
<path d="M0.5 0.5 L81.69239807128906 0.5 L81.69239807128906 17.5 L0.5 17.5 Z" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,182,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">Authentication</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,180,27)">
<path d="M0.5 0.5 L259.1951904296875 0.5 L259.1951904296875 202.5 L0.5 202.5 Z" stroke="none" clip-path="url(#clipPath5)" />
<path d="M0.5 0.5 L259.1951904296875 0.5 L259.1951904296875 202.5 L0.5 202.5 Z" stroke="black" clip-path="url(#clipPath5)" fill="none" />
<ellipse cx="94.8476" cy="25" rx="94.8476" ry="25" stroke="none" clip-path="url(#clipPath6)" transform="matrix(1,0,0,1,40,63)" />
<ellipse cx="94.8476" cy="25" rx="94.8476" ry="25" stroke="black" clip-path="url(#clipPath6)" fill="none" transform="matrix(1,0,0,1,40,63)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,251.7802,106)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath7)">UC-1 Authenticate user</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,80)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath8)" />
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,23.0708,165)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">User</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-60,-70)">
<path d="M120 185 L280 185" clip-path="url(#clipPath1)" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.9 KiB

View file

@ -1,145 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M120 110 L120 330 L426 330 L426 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 220 L306 220 L306 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-110 -140 L-110 80 L196 80 L196 -140 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-118.341796875 -143 L-118.341796875 77 L187.658203125 77 L187.658203125 -143 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-111 -159 L-111 61 L195 61 L195 -159 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-111 -184 L-111 36 L195 36 L195 -184 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-10 -10 L-10 210 L296 210 L296 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-85.879638671875 -13 L-85.879638671875 207 L220.120361328125 207 L220.120361328125 -13 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-11 -29 L-11 191 L295 191 L295 -29 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-15 -34 L-15 186 L291 186 L291 -34 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-23.744140625 -34 L-23.744140625 186 L282.255859375 186 L282.255859375 -34 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-89.787109375 -34 L-89.787109375 186 L216.212890625 186 L216.212890625 -34 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-93.3642578125 -34 L-93.3642578125 186 L212.6357421875 186 L212.6357421875 -34 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-138.00341796875 -34 L-138.00341796875 186 L167.99658203125 186 L167.99658203125 -34 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-141.48388671875 -34 L-141.48388671875 186 L164.51611328125 186 L164.51611328125 -34 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-240.47314453125 -34 L-240.47314453125 186 L65.52685546875 186 L65.52685546875 -34 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-244.05029296875 -34 L-244.05029296875 186 L61.94970703125 186 L61.94970703125 -34 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-247.53076171875 -34 L-247.53076171875 186 L58.46923828125 186 L58.46923828125 -34 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-61.114498138427734 -98 L-61.114498138427734 122 L244.885498046875 122 L244.885498046875 -98 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-81.60279846191406 -98 L-81.60279846191406 122 L224.39720153808594 122 L224.39720153808594 -98 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-120.10030364990234 -98 L-120.10030364990234 122 L185.8997039794922 122 L185.8997039794922 -98 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-70 142.58859252929688 L150 142.58859252929688 L150 -163.41140747070312 L-70 -163.41140747070312 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110,140)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,118.3418,143)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">Authentication</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,111,159)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath5)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,111,184)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath6)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M0.5 0.5 L284.67718505859375 0.5 L284.67718505859375 59.5 L0.5 59.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L284.67718505859375 0.5 L284.67718505859375 59.5 L0.5 59.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85.879638671875,13)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">AuthenticationInterface</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,11,29)">
<path d="M0.5 0.5 L282.67724609375 0.5 L282.67724609375 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath9)" />
<path d="M0.5 0.5 L282.67724609375 0.5 L282.67724609375 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,15,34)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">+</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,23.744140625,34)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,89.787109375,34)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath12)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,93.3642578125,34)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,138.00341796875,34)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,141.48388671875,34)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">AuthenticationInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,240.47314453125,34)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,244.05029296875,34)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,247.53076171875,34)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">boolean</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-120,-110)">
<path d="M262.5885925292969 250 L262.5885925292969 180" clip-path="url(#clipPath1)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-dasharray="none" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath19)" stroke-linecap="square" transform="matrix(1,0,0,1,181.1145,208)">&lt;&lt;</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,81.60279999999999,98)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">realize</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,120.10029999999999,98)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">&gt;&gt;</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,142.58859999999999,70)">
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath22)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,142.58859999999999,70)">
<path d="M12 -6 L0 0 L12 6 Z" clip-path="url(#clipPath22)" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

View file

@ -1,500 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-2"
http-equiv="content-type">
<title>Campcaster Authentication specification</title>
<meta content="<22>kos Mar<61>y" name="author">
</head>
<body>
<h1>Preface</h1>
This document is part of the <a href="http://campcaster.sourcefabric.org/">Campcaster</a>
project, Copyright &#169; 2004 <a href="http://www.mdlf.org/">Media
Development Loan Fund</a>, under the GNU <a
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
<ul>
<li>Author: $Author$</li>
<li>Version: $Revision$</li>
<li>Location: $URL$</li>
</ul>
<h1>Scope</h1>
This document contains the specification of the Campcaster
Authentication component.<br>
<br>
This document contains embedded <a
href="http://www.w3.org/Graphics/SVG/">SVG</a> figures, thus an SVG
capable browser is needed to view it, or an SVG plugin like <a
href="http://www.adobe.com/svg/">Adobe's SVG Viewer</a>.<br>
<h1>Requirements</h1>
<h2>Overview<br>
</h2>
The purpose of the Authentication component is to provide
authentication services by receiving authentication information and
checking these against an authentication database.
<h2>Goals</h2>
The authentication component is a re-usable component, which provides
both local and remote interfaces. Different authentication methods may
be supported, with username / password authentication being the most
trivial.<br>
<h2>System functions</h2>
The main system functions are described below. There are three
categories for these functions:<br>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<th valign="top">function category<br>
</th>
<th valign="top">meaning<br>
</th>
</tr>
<tr>
<td valign="top">evident<br>
</td>
<td valign="top">Should perform, and the user should be cognizant
that it is performed<br>
</td>
</tr>
<tr>
<td valign="top">hidden<br>
</td>
<td valign="top">Should perform, but not visible to the users.<br>
</td>
</tr>
<tr>
<td valign="top">frill<br>
</td>
<td valign="top">Optional<br>
</td>
</tr>
</tbody>
</table>
<br>
<br>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<th valign="top">ref#<br>
</th>
<th valign="top">function<br>
</th>
<th valign="top">category<br>
</th>
</tr>
<tr>
<td valign="top">F1.1<br>
</td>
<td valign="top">Authenticate users<br>
</td>
<td valign="top">evident<br>
</td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
</tr>
</tbody>
</table>
<br>
<h2>System attributes</h2>
Generic attributes<br>
<br>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<th valign="top">ref#<br>
</th>
<th valign="top">attribute<br>
</th>
<th valign="top">details and constraints<br>
</th>
<th valign="top">category<br>
</th>
</tr>
<tr>
<td valign="top">A1.1<br>
</td>
<td valign="top">operating system platform<br>
</td>
<td valign="top">Linux<br>
</td>
<td valign="top">must<br>
</td>
</tr>
<tr>
<td valign="top">A1.2<br>
</td>
<td valign="top">local interface<br>
</td>
<td valign="top">locally callable API<br>
</td>
<td valign="top">must<br>
</td>
</tr>
<tr>
<td valign="top">A1.3<br>
</td>
<td valign="top">remote interface<br>
</td>
<td valign="top">remote interface via some RPC method like
XML-RPC or SOAP<br>
</td>
<td valign="top">want<br>
</td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
</tr>
</tbody>
</table>
<br>
Attributes related to system functions<br>
<br>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<th valign="top">ref#<br>
</th>
<th valign="top">function<br>
</th>
<th valign="top">ref#<br>
</th>
<th valign="top">attribute<br>
</th>
<th valign="top">details and constraints<br>
</th>
<th valign="top">category<br>
</th>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
</tr>
</tbody>
</table>
<br>
<h2>Essential use cases</h2>
This section lists generic (essential) uses cases, that do not contain
architecture-specific considerations.<br>
<br>
<object type="image/svg+xml" name="essential use cases"
data="EssentialUseCases.svg" width="500" height="300"></object>
<h3>UC-1 Authenticate user<br>
</h3>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<td valign="top"><b>ref#</b> </td>
<td valign="top">UC-1 </td>
</tr>
<tr>
<td valign="top"><b>use case</b> </td>
<td valign="top">Authenticate user </td>
</tr>
<tr>
<td valign="top"><b>type</b> </td>
<td valign="top">primary, essential </td>
</tr>
<tr>
<td valign="top"><b>actors</b> </td>
<td valign="top">User </td>
</tr>
<tr>
<td valign="top"><b>purpose</b> </td>
<td valign="top">Authenticate a user </td>
</tr>
<tr>
<td valign="top"><b>overview</b> </td>
<td valign="top">The user contacts the Authentication module with
the intention of verifying his integrity. </td>
</tr>
<tr>
<td valign="top"><b>references</b> </td>
<td valign="top">F1.1 </td>
</tr>
</tbody>
</table>
<h4>Typical course of events</h4>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<th colspan="2" valign="top">actor action <br>
</th>
<th colspan="2" valign="top">system response <br>
</th>
</tr>
<tr>
<td valign="top"><b>1.</b> </td>
<td valign="top">User connects to the authentication component
with the intention of authenticating<br>
</td>
<td valign="top"> <br>
</td>
<td valign="top"> <br>
</td>
</tr>
<tr>
<td valign="top"><b>2.</b> </td>
<td valign="top">The User provides authentication
information </td>
<td valign="top"><b>3.</b> </td>
<td valign="top">The system checks the authentication information
againts its internal database, and informs the user if the provided
information was correct. </td>
</tr>
<tr>
<td valign="top"> <br>
</td>
<td valign="top"> <br>
</td>
<td valign="top"> <br>
</td>
<td valign="top"> <br>
</td>
</tr>
</tbody>
</table>
<br>
<h4>Alternate courses</h4>
none<br>
<br>
<h2>Conceptual model</h2>
The following figure displays the semantic concepts identified for the
Scheduler daemon, and the main associations between the concepts.<br>
<br>
<object type="image/svg+xml" name="essential use cases"
data="Concepts.svg" width="600" height="600"></object>
<br>
<h3>Concepts</h3>
<br>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<th valign="top">concept<br>
</th>
<th valign="top">description<br>
</th>
</tr>
<tr>
<td valign="top"><b>Authentication database</b><br>
</td>
<td valign="top">A database containing authentication
information, against which user-sent authentication information can be
checked.<br>
</td>
</tr>
<tr>
<td valign="top"><b>Authentication</b><br>
</td>
<td valign="top">Component responsible for doing the
authentications <br>
</td>
</tr>
<tr>
<td valign="top"><b>Authentication info</b><br>
</td>
<td valign="top">The information a user sends during
authentication, provides the basis for authentication<br>
</td>
</tr>
<tr>
<td valign="top"><b>User</b><br>
</td>
<td valign="top">The party that wants to authenticate<br>
</td>
</tr>
<tr>
<td valign="top"><b>Authentication interface</b><br>
</td>
<td valign="top">The local or remote interface for authentications<br>
</td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
</tr>
</tbody>
</table>
<br>
<h3>Associations</h3>
<br>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<th valign="top">source<br>
</th>
<th valign="top">association<br>
</th>
<th valign="top">target<br>
</th>
<th valign="top">description<br>
</th>
</tr>
<tr>
<td valign="top">Authentication<br>
</td>
<td valign="top">Checks authentication info in<br>
</td>
<td valign="top">Authentication database<br>
</td>
<td valign="top"><br>
</td>
</tr>
<tr>
<td valign="top">Authentication database<br>
</td>
<td valign="top">Stores<br>
</td>
<td valign="top">Authentication info<br>
</td>
<td valign="top"><br>
</td>
</tr>
<tr>
<td valign="top">User<br>
</td>
<td valign="top">Contains<br>
</td>
<td valign="top">Authentication info<br>
</td>
<td valign="top"><br>
</td>
</tr>
<tr>
<td valign="top">User<br>
</td>
<td valign="top">Authenticates by<br>
</td>
<td valign="top">Authentication interface<br>
</td>
<td valign="top"><br>
</td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
</tr>
</tbody>
</table>
<br>
<h2>System behavior</h2>
The behavior of the system as a whole as experienced from the outside
is discussed in this section.<br>
<h3>System sequence diagrams</h3>
System diagrams are presented for each use case below.<br>
<h4>UC-1 Authenticate user<br>
</h4>
<object type="image/svg+xml" name="authenticate user sequence diagram"
data="Authenticateuser_SequenceDiagram.svg" width="550" height="200"></object>
<br>
<h3>System objects</h3>
The following figures shows the system objects and their functions, as
derived from the system sequence diagrams.<br>
<object type="image/svg+xml" name="system behaviour"
data="Systembehaviour.svg" width="400" height="300"></object>
<h3>Contracts</h3>
For all operations exposed in the system sequence diagrams, the
following contracts are defined.<br>
<h4>Contract for AuthenticationInterface : authenticate</h4>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<td valign="top"><b>Name</b><br>
</td>
<td colspan="2" rowspan="1" valign="top">authenticate<br>
(authInfo : AuthenticationInfo)<br>
: boolean<br>
</td>
</tr>
<tr>
<td valign="top"><b>Responsibilities</b><br>
</td>
<td colspan="2" rowspan="1" valign="top">Check if the the
provided authentication info is recognized.<br>
</td>
</tr>
<tr>
<td valign="top"><b>Type</b><br>
</td>
<td colspan="2" rowspan="1" valign="top">system<br>
</td>
</tr>
<tr>
<td valign="top"><b>Cross-reference</b><br>
</td>
<td colspan="2" rowspan="1" valign="top">UC-1<br>
</td>
</tr>
<tr>
<td valign="top"><b>Notes</b><br>
</td>
<td colspan="2" rowspan="1" valign="top"><br>
</td>
</tr>
<tr>
<td valign="top"><b>Exceptions</b><br>
</td>
<td colspan="2" rowspan="1" valign="top">none</td>
</tr>
<tr>
<td valign="top"><b>Output</b><br>
</td>
<td colspan="2" rowspan="1" valign="top">true if the provided
authentication is recognized, false otherwise<br>
</td>
</tr>
<tr>
<td valign="top"><b>Pre-conditions</b><br>
</td>
<td colspan="2" rowspan="1" valign="top">none</td>
</tr>
<tr>
<td valign="top"><b>Post-conditions</b><br>
</td>
<td valign="top">none<br>
</td>
<td valign="top"><br>
</td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
</tr>
</tbody>
</table>
<br>
<br>
</body>
</html>

Binary file not shown.

View file

@ -1,249 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg color-interpolation="auto" color-rendering="auto" fill="black" fill-opacity="1" font-family="&apos;Dialog&apos;" font-size="12" font-style="normal" font-weight="normal" image-rendering="auto" shape-rendering="auto" stroke="black" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="10" stroke-opacity="1" stroke-width="1" text-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-51 10 L-51 171 L554 171 L554 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 161 L605 161 L605 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-71 -10 L-71 151 L534 151 L534 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.706500053405762 -42 L-12.706500053405762 119 L592.2935180664062 119 L592.2935180664062 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-78.50240325927734 -42 L-78.50240325927734 119 L526.4976196289062 119 L526.4976196289062 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-81.98290252685547 -42 L-81.98290252685547 119 L523.01708984375 119 L523.01708984375 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-471 -10 L-471 151 L134 151 L134 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-477 -16 L-477 145 L128 145 L128 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-514.47412109375 -16 L-514.47412109375 145 L90.52587890625 145 L90.52587890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-517.95458984375 -16 L-517.95458984375 145 L87.04541015625 145 L87.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-527.9937133789062 -71 L-527.9937133789062 90 L77.00630187988281 90 L77.00630187988281 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-280.9809875488281 -115 L-280.9809875488281 46 L324.0190124511719 46 L324.0190124511719 -115 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-286.46148681640625 -115 L-286.46148681640625 46 L318.53851318359375 46 L318.53851318359375 -115 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-291.94189453125 -115 L-291.94189453125 46 L313.05810546875 46 L313.05810546875 -115 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-366.8525085449219 -115 L-366.8525085449219 46 L238.1475067138672 46 L238.1475067138672 -115 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-370.4296875 -115 L-370.4296875 46 L234.57029724121094 46 L234.57029724121094 -115 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-408.43560791015625 -115 L-408.43560791015625 46 L196.5644073486328 46 L196.5644073486328 -115 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M527.9937133789062 141 L527.9937133789062 -20 L-77.00630187988281 -20 L-77.00630187988281 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-250.35040283203125 -82 L-250.35040283203125 79 L354.64959716796875 79 L354.64959716796875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-255.83090209960938 -82 L-255.83090209960938 79 L349.1690979003906 79 L349.1690979003906 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-261.3113098144531 -82 L-261.3113098144531 79 L343.6886901855469 79 L343.6886901855469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-299.31719970703125 -82 L-299.31719970703125 79 L305.68280029296875 79 L305.68280029296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-311.54180908203125 -82 L-311.54180908203125 79 L293.45819091796875 79 L293.45819091796875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-383.3908996582031 -82 L-383.3908996582031 79 L221.60910034179688 79 L221.60910034179688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-386.9679870605469 -82 L-386.9679870605469 79 L218.03199768066406 79 L218.03199768066406 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-435.0661926269531 -82 L-435.0661926269531 79 L169.93380737304688 79 L169.93380737304688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M527.9937133789062 106 L527.9937133789062 -55 L-77.00630187988281 -55 L-77.00630187988281 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-230.49740600585938 -47 L-230.49740600585938 114 L374.5025939941406 114 L374.5025939941406 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-235.9779052734375 -47 L-235.9779052734375 114 L369.0220947265625 114 L369.0220947265625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-241.4582977294922 -47 L-241.4582977294922 114 L363.54168701171875 114 L363.54168701171875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-314.4245910644531 -47 L-314.4245910644531 114 L290.5754089355469 114 L290.5754089355469 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-326.6492004394531 -47 L-326.6492004394531 114 L278.3507995605469 114 L278.3507995605469 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-392.69219970703125 -47 L-392.69219970703125 114 L212.30780029296875 114 L212.30780029296875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-396.269287109375 -47 L-396.269287109375 114 L208.73069763183594 114 L208.73069763183594 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-440.919189453125 -47 L-440.919189453125 114 L164.08079528808594 114 L164.08079528808594 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M527.9937133789062 71 L527.9937133789062 -90 L-77.00630187988281 -90 L-77.00630187988281 71 Z" />
</clipPath>
</defs>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-dasharray="5,5" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,71,10)">
<path clip-path="url(#clipPath3)" d="M10.5 48.5 L10.5 140.5" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,71,10)">
<path clip-path="url(#clipPath3)" d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,71,10)">
<path clip-path="url(#clipPath3)" d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,12.706499999999998,42)">
<text clip-path="url(#clipPath4)" stroke="none" x="0" xml:space="preserve" y="11">audio player</text>
<line clip-path="url(#clipPath4)" fill="none" x1="0" x2="65.7958984375" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,78.5024,42)">
<text clip-path="url(#clipPath5)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
<line clip-path="url(#clipPath5)" fill="none" x1="0" x2="3.48046875" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,81.9829,42)">
<text clip-path="url(#clipPath6)" stroke="none" x="0" xml:space="preserve" y="11">Audio player</text>
<line clip-path="url(#clipPath6)" fill="none" x1="0" x2="67.310546875" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,471,10)">
<path clip-path="url(#clipPath7)" d="M62.493648529052734 0.5 L62.493648529052734 140.5" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-dasharray="5,5" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,471,10)">
<path clip-path="url(#clipPath7)" d="M62.493648529052734 0.5 L62.493648529052734 140.5" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,471,10)">
<path clip-path="url(#clipPath7)" d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,471,10)">
<path clip-path="url(#clipPath7)" d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" fill="none" />
<text clip-path="url(#clipPath8)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,6,6)" x="0" xml:space="preserve" y="11">system</text>
<line clip-path="url(#clipPath8)" fill="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,6,6)" x1="0" x2="37.47412109375" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,514.47412109375,16)">
<text clip-path="url(#clipPath9)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
<line clip-path="url(#clipPath9)" fill="none" x1="0" x2="3.48046875" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,517.95458984375,16)">
<text clip-path="url(#clipPath10)" stroke="none" x="0" xml:space="preserve" y="11">Local storage</text>
<line clip-path="url(#clipPath10)" fill="none" x1="0" x2="71.03271484375" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,527.9937,71)">
<path clip-path="url(#clipPath11)" d="M0.5 0.5 L9.5 0.5 L9.5 79.5 L0.5 79.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,527.9937,71)">
<path clip-path="url(#clipPath11)" d="M0.5 0.5 L9.5 0.5 L9.5 79.5 L0.5 79.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,51,-10)">
<path clip-path="url(#clipPath1)" d="M476.99371337890625 151 L30 151" fill="none" />
<text clip-path="url(#clipPath12)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,229.981,125)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,286.4615,115)">
<text clip-path="url(#clipPath13)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,291.9419,115)">
<text clip-path="url(#clipPath14)" stroke="none" x="0" xml:space="preserve" y="11">releasePlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,366.85249999999996,115)">
<text clip-path="url(#clipPath15)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,370.42969999999997,115)">
<text clip-path="url(#clipPath16)" stroke="none" x="0" xml:space="preserve" y="11">playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,408.43559999999997,115)">
<text clip-path="url(#clipPath17)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,0,0,-1,527.9937,141)">
<path clip-path="url(#clipPath18)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath18)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,51,-10)">
<path clip-path="url(#clipPath1)" d="M476.99371337890625 116 L30 116" fill="none" />
<text clip-path="url(#clipPath19)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,199.3504,92)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,255.8309,82)">
<text clip-path="url(#clipPath20)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,261.3113,82)">
<text clip-path="url(#clipPath21)" stroke="none" x="0" xml:space="preserve" y="11">playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,299.3172,82)">
<text clip-path="url(#clipPath22)" stroke="none" x="0" xml:space="preserve" y="11">:=</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,311.5418,82)">
<text clip-path="url(#clipPath23)" stroke="none" x="0" xml:space="preserve" y="11">accessPlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,383.3909,82)">
<text clip-path="url(#clipPath24)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,386.968,82)">
<text clip-path="url(#clipPath25)" stroke="none" x="0" xml:space="preserve" y="11">playlistId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,435.0662,82)">
<text clip-path="url(#clipPath26)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,0,0,-1,527.9937,106)">
<path clip-path="url(#clipPath27)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath27)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,51,-10)">
<path clip-path="url(#clipPath1)" d="M476.99371337890625 81 L30 81" fill="none" />
<text clip-path="url(#clipPath28)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,179.4974,57)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,235.9779,47)">
<text clip-path="url(#clipPath29)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,241.4583,47)">
<text clip-path="url(#clipPath30)" stroke="none" x="0" xml:space="preserve" y="11">authenticated</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,314.4246,47)">
<text clip-path="url(#clipPath31)" stroke="none" x="0" xml:space="preserve" y="11">:=</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,326.6492,47)">
<text clip-path="url(#clipPath32)" stroke="none" x="0" xml:space="preserve" y="11">authenticate</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,392.6922,47)">
<text clip-path="url(#clipPath33)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,396.26930000000004,47)">
<text clip-path="url(#clipPath34)" stroke="none" x="0" xml:space="preserve" y="11">authinfo</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,440.91920000000005,47)">
<text clip-path="url(#clipPath35)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,0,0,-1,527.9937,71)">
<path clip-path="url(#clipPath36)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath36)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 24 KiB

View file

@ -1,239 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-21 10 L-21 167 L574 167 L574 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 157 L595 157 L595 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-461 -10 L-461 147 L134 147 L134 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-467 -16 L-467 141 L128 141 L128 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-504.4740905761719 -16 L-504.4740905761719 141 L90.5259017944336 141 L90.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-507.95458984375 -16 L-507.95458984375 141 L87.04540252685547 141 L87.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-517.9937133789062 -75 L-517.9937133789062 82 L77.00630187988281 82 L77.00630187988281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-71 -10 L-71 147 L524 147 L524 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-12.706500053405762 -42 L-12.706500053405762 115 L582.2935180664062 115 L582.2935180664062 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-78.50240325927734 -42 L-78.50240325927734 115 L516.4976196289062 115 L516.4976196289062 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-81.98290252685547 -42 L-81.98290252685547 115 L513.01708984375 115 L513.01708984375 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M517.9937133789062 75 L517.9937133789062 -82 L-77.00630187988281 -82 L-77.00630187988281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-197.85499572753906 -51 L-197.85499572753906 106 L397.1449890136719 106 L397.1449890136719 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-203.3354949951172 -51 L-203.3354949951172 106 L391.66448974609375 106 L391.66448974609375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-208.81590270996094 -51 L-208.81590270996094 106 L386.1841125488281 106 L386.1841125488281 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-281.7821960449219 -51 L-281.7821960449219 106 L313.2178039550781 106 L313.2178039550781 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-294.0068054199219 -51 L-294.0068054199219 106 L300.9931945800781 106 L300.9931945800781 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-360.0498046875 -51 L-360.0498046875 106 L234.9501953125 106 L234.9501953125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-363.62689208984375 -51 L-363.62689208984375 106 L231.3730926513672 106 L231.3730926513672 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-397.5614929199219 -51 L-397.5614929199219 106 L197.43850708007812 106 L197.43850708007812 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M517.9937133789062 110 L517.9937133789062 -47 L-77.00630187988281 -47 L-77.00630187988281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-160.55279541015625 -86 L-160.55279541015625 71 L434.44720458984375 71 L434.44720458984375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-166.03329467773438 -86 L-166.03329467773438 71 L428.9667053222656 71 L428.9667053222656 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-171.51370239257812 -86 L-171.51370239257812 71 L423.4862976074219 71 L423.4862976074219 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-246.3437957763672 -86 L-246.3437957763672 71 L348.65618896484375 71 L348.65618896484375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-258.5683898925781 -86 L-258.5683898925781 71 L336.4316101074219 71 L336.4316101074219 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-370.53961181640625 -86 L-370.53961181640625 71 L224.4604034423828 71 L224.4604034423828 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-374.11669921875 -86 L-374.11669921875 71 L220.88330078125 71 L220.88330078125 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-434.8638000488281 -86 L-434.8638000488281 71 L160.13619995117188 71 L160.13619995117188 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-195.50790405273438 -121 L-195.50790405273438 36 L399.4920959472656 36 L399.4920959472656 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-200.9884033203125 -121 L-200.9884033203125 36 L394.0115966796875 36 L394.0115966796875 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-206.4687957763672 -121 L-206.4687957763672 36 L388.53118896484375 36 L388.53118896484375 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-321.5014953613281 -121 L-321.5014953613281 36 L273.4985046386719 36 L273.4985046386719 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-325.0787048339844 -121 L-325.0787048339844 36 L269.9212951660156 36 L269.9212951660156 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-399.90869140625 -121 L-399.90869140625 36 L195.09129333496094 36 L195.09129333496094 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M517.9937133789062 145 L517.9937133789062 -12 L-77.00630187988281 -12 L-77.00630187988281 145 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,461,10)">
<path d="M62.493648529052734 0.5 L62.493648529052734 136.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,467,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,504.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,507.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,517.9937,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,71,10)">
<path d="M10.5 48.5 L10.5 136.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10.5 48.5 L10.5 136.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.706499999999998,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">audio player</text>
<line x1="0" y1="12.5" x2="65.7958984375" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,78.5024,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,81.9829,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Audio player</text>
<line x1="0" y1="12.5" x2="67.310546875" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,21,-10)">
<path d="M60 85 L496.99371337890625 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,-1.0547118733938987E-15,1.0547118733938987E-15,-1,496.9937,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,-1.0547118733938987E-15,1.0547118733938987E-15,-1,496.9937,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,197.855,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,203.3355,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,208.8159,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,281.7822,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,294.0068,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,360.0498,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,363.6269,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,397.5615,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,21,-10)">
<path d="M60 120 L496.99371337890625 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-2.831068712794149E-15,2.831068712794149E-15,-1,496.9937,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-2.831068712794149E-15,2.831068712794149E-15,-1,496.9937,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160.5528,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,166.0333,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,171.5137,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">rawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,246.3438,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,258.5684,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">accessRawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,370.5396,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,374.11670000000004,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,434.86379999999997,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,21,-10)">
<path d="M60 155 L496.99371337890625 155" clip-path="url(#clipPath1)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath30)" stroke-linecap="square" transform="matrix(1,0,0,1,174.5079,131)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,200.9884,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,206.46880000000002,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">releaseRawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,321.5015,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,325.0787,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">rawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,399.9087,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-1,0,0,-1,517.9937,145)">
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath36)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath36)" fill="none" stroke-linecap="square" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 23 KiB

View file

@ -1,633 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg color-interpolation="auto" color-rendering="auto" fill="black" fill-opacity="1" font-family="&apos;Dialog&apos;" font-size="12" font-style="normal" font-weight="normal" image-rendering="auto" shape-rendering="auto" stroke="black" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="10" stroke-opacity="1" stroke-width="1" text-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M57 80 L57 620 L700 620 L700 80 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 540 L643 540 L643 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-43 -10 L-43 530 L600 530 L600 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-287.393310546875 -12 L-287.393310546875 528 L355.606689453125 528 L355.606689453125 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-307.881591796875 -12 L-307.881591796875 528 L335.118408203125 528 L335.118408203125 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-371.118408203125 -12 L-371.118408203125 528 L271.881591796875 528 L271.881591796875 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-302.4836120605469 -28 L-302.4836120605469 512 L340.5163879394531 512 L340.5163879394531 -28 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-243 -210 L-243 330 L400 330 L400 -210 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-265.2528991699219 -213 L-265.2528991699219 327 L377.7471008300781 327 L377.7471008300781 -213 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-244 -229 L-244 311 L399 311 L399 -229 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-248 -234 L-248 306 L395 306 L395 -234 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-254.3647003173828 -234 L-254.3647003173828 306 L388.63531494140625 306 L388.63531494140625 -234 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-264.4678039550781 -234 L-264.4678039550781 306 L378.5321960449219 306 L378.5321960449219 -234 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-267.9482116699219 -234 L-267.9482116699219 306 L375.0517883300781 306 L375.0517883300781 -234 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-248 -249 L-248 291 L395 291 L395 -249 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-254.3647003173828 -249 L-254.3647003173828 291 L388.63531494140625 291 L388.63531494140625 -249 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-299.5679016113281 -249 L-299.5679016113281 291 L343.4320983886719 291 L343.4320983886719 -249 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-303.0483093261719 -249 L-303.0483093261719 291 L339.9516906738281 291 L339.9516906738281 -249 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-244 -267 L-244 273 L399 273 L399 -267 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-343 -330 L-343 210 L300 210 L300 -330 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-351.341796875 -333 L-351.341796875 207 L291.658203125 207 L291.658203125 -333 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-344 -349 L-344 191 L299 191 L299 -349 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-344 -374 L-344 166 L299 166 L299 -374 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-423 -220 L-423 320 L220 320 L220 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-448.8075866699219 -223 L-448.8075866699219 317 L194.19239807128906 317 L194.19239807128906 -223 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-424 -239 L-424 301 L219 301 L219 -239 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-428 -244 L-428 296 L215 296 L215 -244 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-434.36468505859375 -244 L-434.36468505859375 296 L208.6352996826172 296 L208.6352996826172 -244 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-534.8900756835938 -244 L-534.8900756835938 296 L108.10990142822266 296 L108.10990142822266 -244 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-538.37060546875 -244 L-538.37060546875 296 L104.62940216064453 296 L104.62940216064453 -244 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-424 -264 L-424 276 L219 276 L219 -264 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-428 -269 L-428 271 L215 271 L215 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-436.7441101074219 -269 L-436.7441101074219 271 L206.2559051513672 271 L206.2559051513672 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-494.7842102050781 -269 L-494.7842102050781 271 L148.21580505371094 271 L148.21580505371094 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-498.3612976074219 -269 L-498.3612976074219 271 L144.63870239257812 271 L144.63870239257812 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-501.9385070800781 -269 L-501.9385070800781 271 L141.06149291992188 271 L141.06149291992188 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-505.4189147949219 -269 L-505.4189147949219 271 L137.5811004638672 271 L137.5811004638672 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-63 -210 L-63 330 L580 330 L580 -210 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-86.2654037475586 -213 L-86.2654037475586 327 L556.734619140625 327 L556.734619140625 -213 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-64 -229 L-64 311 L579 311 L579 -229 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-64 -254 L-64 286 L579 286 L579 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-43 -46 L-43 494 L600 494 L600 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M423 260 L423 -280 L-220 -280 L-220 260 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-362.2521057128906 -273 L-362.2521057128906 267 L280.7478942871094 267 L280.7478942871094 -273 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-163 -240 L-163 300 L480 300 L480 -240 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-162.82150268554688 -216 L-162.82150268554688 324 L480.1784973144531 324 L480.1784973144531 -216 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-253 -70 L-253 470 L390 470 L390 -70 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-277.6028137207031 -73 L-277.6028137207031 467 L365.3971862792969 467 L365.3971862792969 -73 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-254 -89 L-254 451 L389 451 L389 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-254 -114 L-254 426 L389 426 L389 -114 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-140 303 L400 303 L400 -340 L-140 -340 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-313 -168 L-313 372 L330 372 L330 -168 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-123 -310 L-123 230 L520 230 L520 -310 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-133.181396484375 -313 L-133.181396484375 227 L509.818603515625 227 L509.818603515625 -313 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-124 -329 L-124 211 L519 211 L519 -329 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-124 -354 L-124 186 L519 186 L519 -354 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-483 -70 L-483 470 L160 470 L160 -70 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-512.482421875 -73 L-512.482421875 467 L130.51759338378906 467 L130.51759338378906 -73 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-484 -89 L-484 451 L159 451 L159 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-484 -114 L-484 426 L159 426 L159 -114 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-353 -104 L-353 436 L290 436 L290 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-378.476806640625 -80 L-378.476806640625 460 L264.523193359375 460 L264.523193359375 -80 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-473 -460 L-473 80 L170 80 L170 -460 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-486.9841003417969 -463 L-486.9841003417969 77 L156.01589965820312 77 L156.01589965820312 -463 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-474 -479 L-474 61 L169 61 L169 -479 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M-474 -504 L-474 36 L169 36 L169 -504 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-93 -460 L-93 80 L550 80 L550 -460 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
<path d="M-96 -463 L-96 77 L547 77 L547 -463 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
<path d="M-94 -479 L-94 61 L549 61 L549 -479 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
<path d="M-94 -504 L-94 36 L549 36 L549 -504 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
<path d="M152.81324768066406 504.27880859375 L370.3355712890625 10.027819633483887 L-218.18919372558594 -248.98487854003906 L-435.7115478515625 245.26609802246094 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
<path d="M-247.4656982421875 -451.8681945800781 L-247.4656982421875 88.13179779052734 L395.5343017578125 88.13179779052734 L395.5343017578125 -451.8681945800781 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
<path d="M-555.886474609375 217.34580993652344 L-72.89581298828125 458.8411560058594 L214.6625213623047 -116.2755355834961 L-268.3281555175781 -357.7708740234375 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
<path d="M-345.3576965332031 -425.7597961425781 L-345.3576965332031 114.24019622802734 L297.6423034667969 114.24019622802734 L297.6423034667969 -425.7597961425781 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath75">
<path d="M-234.64642333984375 299.73162841796875 L293.0112609863281 184.9389190673828 L156.32289123535156 -443.3645935058594 L-371.3348083496094 -328.5718688964844 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath76">
<path d="M-248.60589599609375 -321.9049072265625 L-248.60589599609375 218.0950927734375 L394.39410400390625 218.0950927734375 L394.39410400390625 -321.9049072265625 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath77">
<path d="M-290 493 L250 493 L250 -150 L-290 -150 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath78">
<path d="M-503 -368 L-503 172 L140 172 L140 -368 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath79">
<path d="M-280 63 L260 63 L260 -580 L-280 -580 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath80">
<path d="M-10.687999725341797 -458.1553955078125 L-10.687999725341797 81.84459686279297 L632.31201171875 81.84459686279297 L632.31201171875 -458.1553955078125 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath81">
<path d="M-380 159.83450317382812 L160 159.83450317382812 L160 -483.1654968261719 L-380 -483.1654968261719 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath82">
<path d="M-85.8583984375 -398.14630126953125 L-85.8583984375 141.85369873046875 L557.1416015625 141.85369873046875 L557.1416015625 -398.14630126953125 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath83">
<path d="M-140 563 L400 563 L400 -80 L-140 -80 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath84">
<path d="M-573 -293 L-573 247 L70 247 L70 -293 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath85">
<path d="M209.716552734375 457.06451416015625 L618.4215087890625 104.13358306884766 L198.17230224609375 -382.528076171875 L-210.53268432617188 -29.59716033935547 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath86">
<path d="M-400.3576965332031 -153.60800170898438 L-400.3576965332031 386.3919982910156 L242.64230346679688 386.3919982910156 L242.64230346679688 -153.60800170898438 Z" />
</clipPath>
</defs>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-57,-80)">
<rect clip-path="url(#clipPath1)" height="540" stroke="none" width="643" x="57" y="80" />
<path clip-path="url(#clipPath3)" d="M0.5 0.5 L589.5 0.5 L589.5 409.5 L0.5 409.5 Z" stroke="none" transform="matrix(1,0,0,1,100,90)" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,43,10)">
<path clip-path="url(#clipPath3)" d="M0.5 0.5 L589.5 0.5 L589.5 409.5 L0.5 409.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,287.3933,12)">
<text clip-path="url(#clipPath4)" stroke="none" x="0" xml:space="preserve" y="11">&lt;&lt;</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,307.8816,12)">
<text clip-path="url(#clipPath5)" stroke="none" x="0" xml:space="preserve" y="11">component</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,371.1184,12)">
<text clip-path="url(#clipPath6)" stroke="none" x="0" xml:space="preserve" y="11">&gt;&gt;</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,302.4836,28)">
<text clip-path="url(#clipPath7)" stroke="none" x="0" xml:space="preserve" y="11">Local storage</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,243,210)">
<path clip-path="url(#clipPath8)" d="M0.5 0.5 L99.5 0.5 L99.5 82.5 L0.5 82.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,243,210)">
<path clip-path="url(#clipPath8)" d="M0.5 0.5 L99.5 0.5 L99.5 82.5 L0.5 82.5 Z" fill="none" />
<text clip-path="url(#clipPath9)" font-weight="bold" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,22.2529,3)" x="0" xml:space="preserve" y="11">AudioClip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,244,229)">
<path clip-path="url(#clipPath10)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,244,229)">
<path clip-path="url(#clipPath10)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,248,234)">
<text clip-path="url(#clipPath11)" stroke="none" x="0" xml:space="preserve" y="11">-</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,254.3647,234)">
<text clip-path="url(#clipPath12)" stroke="none" x="0" xml:space="preserve" y="11">id</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,264.4678,234)">
<text clip-path="url(#clipPath13)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,267.9482,234)">
<text clip-path="url(#clipPath14)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,248,249)">
<text clip-path="url(#clipPath15)" stroke="none" x="0" xml:space="preserve" y="11">-</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,254.3647,249)">
<text clip-path="url(#clipPath16)" stroke="none" x="0" xml:space="preserve" y="11">duration</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,299.5679,249)">
<text clip-path="url(#clipPath17)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,303.0483,249)">
<text clip-path="url(#clipPath18)" stroke="none" x="0" xml:space="preserve" y="11">Time</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,244,267)">
<path clip-path="url(#clipPath19)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,244,267)">
<path clip-path="url(#clipPath19)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,343,330)">
<path clip-path="url(#clipPath20)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,343,330)">
<path clip-path="url(#clipPath20)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" fill="none" />
<text clip-path="url(#clipPath21)" font-weight="bold" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,8.3418,3)" x="0" xml:space="preserve" y="11">Authentication</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,344,349)">
<path clip-path="url(#clipPath22)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,344,349)">
<path clip-path="url(#clipPath22)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,344,374)">
<path clip-path="url(#clipPath23)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,344,374)">
<path clip-path="url(#clipPath23)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,423,220)">
<path clip-path="url(#clipPath24)" d="M0.5 0.5 L133.99119567871094 0.5 L133.99119567871094 69.5 L0.5 69.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,423,220)">
<path clip-path="url(#clipPath24)" d="M0.5 0.5 L133.99119567871094 0.5 L133.99119567871094 69.5 L0.5 69.5 Z" fill="none" />
<text clip-path="url(#clipPath25)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,25.8076,3)" x="0" xml:space="preserve" y="11">RawAudioData</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,424,239)">
<path clip-path="url(#clipPath26)" d="M0.5 0.5 L131.99119567871094 0.5 L131.99119567871094 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,424,239)">
<path clip-path="url(#clipPath26)" d="M0.5 0.5 L131.99119567871094 0.5 L131.99119567871094 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,428,244)">
<text clip-path="url(#clipPath27)" stroke="none" x="0" xml:space="preserve" y="11">-</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,434.3647,244)">
<text clip-path="url(#clipPath28)" stroke="none" x="0" xml:space="preserve" y="11">currentlyAccessing</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,534.8901,244)">
<text clip-path="url(#clipPath29)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,538.3706,244)">
<text clip-path="url(#clipPath30)" stroke="none" x="0" xml:space="preserve" y="11">int</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,424,264)">
<path clip-path="url(#clipPath31)" d="M0.5 0.5 L131.99119567871094 0.5 L131.99119567871094 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,424,264)">
<path clip-path="url(#clipPath31)" d="M0.5 0.5 L131.99119567871094 0.5 L131.99119567871094 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,428,269)">
<text clip-path="url(#clipPath32)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,436.7441,269)">
<text clip-path="url(#clipPath33)" stroke="none" x="0" xml:space="preserve" y="11">isAccessed</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,494.7842,269)">
<text clip-path="url(#clipPath34)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,498.3613,269)">
<text clip-path="url(#clipPath35)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,501.9385,269)">
<text clip-path="url(#clipPath36)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,505.4189,269)">
<text clip-path="url(#clipPath37)" stroke="none" x="0" xml:space="preserve" y="11">boolean</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,63,210)">
<path clip-path="url(#clipPath38)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,63,210)">
<path clip-path="url(#clipPath38)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" fill="none" />
<text clip-path="url(#clipPath39)" font-weight="bold" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,23.2654,3)" x="0" xml:space="preserve" y="11">MetaData</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,64,229)">
<path clip-path="url(#clipPath40)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,64,229)">
<path clip-path="url(#clipPath40)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,64,254)">
<path clip-path="url(#clipPath41)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,64,254)">
<path clip-path="url(#clipPath41)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,43,46)">
<path clip-path="url(#clipPath42)" d="M300 214 L380 214" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(-1,0,0,-1,423,260)">
<path clip-path="url(#clipPath43)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath43)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,362.2521,273)">
<text clip-path="url(#clipPath44)" stroke="none" x="0" xml:space="preserve" y="11">Contains</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,43,46)">
<path clip-path="url(#clipPath42)" d="M200 194 L120 194" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,163,240)">
<path clip-path="url(#clipPath45)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath45)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,162.82150000000001,216)">
<text clip-path="url(#clipPath46)" stroke="none" x="0" xml:space="preserve" y="11">Is described by</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,253,70)">
<path clip-path="url(#clipPath47)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,253,70)">
<path clip-path="url(#clipPath47)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" fill="none" />
<text clip-path="url(#clipPath48)" font-weight="bold" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,24.6028,3)" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,254,89)">
<path clip-path="url(#clipPath49)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,254,89)">
<path clip-path="url(#clipPath49)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,254,114)">
<path clip-path="url(#clipPath50)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,254,114)">
<path clip-path="url(#clipPath50)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,43,46)">
<path clip-path="url(#clipPath42)" d="M260 164 L260 94" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(0,1,-1,0,303,140)">
<path clip-path="url(#clipPath51)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath51)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,313,168)">
<text clip-path="url(#clipPath52)" stroke="none" x="0" xml:space="preserve" y="11">Is identified by</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,123,310)">
<path clip-path="url(#clipPath53)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,123,310)">
<path clip-path="url(#clipPath53)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" fill="none" />
<text clip-path="url(#clipPath54)" font-weight="bold" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,10.1814,3)" x="0" xml:space="preserve" y="11">SearchCriteria</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,124,329)">
<path clip-path="url(#clipPath55)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,124,329)">
<path clip-path="url(#clipPath55)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,124,354)">
<path clip-path="url(#clipPath56)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,124,354)">
<path clip-path="url(#clipPath56)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,483,70)">
<path clip-path="url(#clipPath57)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,483,70)">
<path clip-path="url(#clipPath57)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" fill="none" />
<text clip-path="url(#clipPath58)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,29.4824,3)" x="0" xml:space="preserve" y="11">Playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,484,89)">
<path clip-path="url(#clipPath59)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,484,89)">
<path clip-path="url(#clipPath59)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,484,114)">
<path clip-path="url(#clipPath60)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,484,114)">
<path clip-path="url(#clipPath60)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,43,46)">
<path clip-path="url(#clipPath42)" d="M440 58 L310 58" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,353,104)">
<path clip-path="url(#clipPath61)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath61)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,378.4768,80)">
<text clip-path="url(#clipPath62)" stroke="none" x="0" xml:space="preserve" y="11">is identified by</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,473,460)">
<path clip-path="url(#clipPath63)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,473,460)">
<path clip-path="url(#clipPath63)" d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" fill="none" />
<text clip-path="url(#clipPath64)" font-weight="bold" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,13.9841,3)" x="0" xml:space="preserve" y="11">Audio player</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,474,479)">
<path clip-path="url(#clipPath65)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,474,479)">
<path clip-path="url(#clipPath65)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,474,504)">
<path clip-path="url(#clipPath66)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,474,504)">
<path clip-path="url(#clipPath66)" d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,93,460)">
<path clip-path="url(#clipPath67)" d="M0.5 0.5 L113.16889953613281 0.5 L113.16889953613281 69.5 L0.5 69.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,93,460)">
<path clip-path="url(#clipPath67)" d="M0.5 0.5 L113.16889953613281 0.5 L113.16889953613281 69.5 L0.5 69.5 Z" fill="none" />
<text clip-path="url(#clipPath68)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,3,3)" x="0" xml:space="preserve" y="11">Storage maintainer</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,94,479)">
<path clip-path="url(#clipPath69)" d="M0.5 0.5 L111.16889953613281 0.5 L111.16889953613281 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,94,479)">
<path clip-path="url(#clipPath69)" d="M0.5 0.5 L111.16889953613281 0.5 L111.16889953613281 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,94,504)">
<path clip-path="url(#clipPath70)" d="M0.5 0.5 L111.16889953613281 0.5 L111.16889953613281 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,94,504)">
<path clip-path="url(#clipPath70)" d="M0.5 0.5 L111.16889953613281 0.5 L111.16889953613281 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-57,-80)">
<path clip-path="url(#clipPath1)" d="M263.6689147949219 540 L400 480" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(-0.9152795986159178,0.40281913603686254,-0.40281913603686254,-0.9152795986159178,343,400)">
<path clip-path="url(#clipPath71)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath71)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,247.46570000000003,451.8682)">
<text clip-path="url(#clipPath72)" stroke="none" x="0" xml:space="preserve" y="11">Is authenticated by</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-57,-80)">
<path clip-path="url(#clipPath1)" d="M530 540 L500 480" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(0.44721359549995804,0.8944271909999159,-0.8944271909999159,0.44721359549995804,443,400)">
<path clip-path="url(#clipPath73)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath73)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,345.3577,425.7598)">
<text clip-path="url(#clipPath74)" stroke="none" x="0" xml:space="preserve" y="11">Is authenticated by</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-57,-80)">
<path clip-path="url(#clipPath1)" d="M263.6689147949219 540 L300 373" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(-0.21257910943269884,0.9771438595379908,-0.9771438595379908,-0.21257910943269884,243,293)">
<path clip-path="url(#clipPath75)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath75)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,248.60590000000002,321.9049)">
<text clip-path="url(#clipPath76)" stroke="none" x="0" xml:space="preserve" y="11">Manages</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-57,-80)">
<path clip-path="url(#clipPath1)" d="M550 540 L550 370" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(0,1,-1,0,493,290)">
<path clip-path="url(#clipPath77)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath77)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,503,368)">
<text clip-path="url(#clipPath78)" stroke="none" x="0" xml:space="preserve" y="11">Accesses</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-57,-80)">
<path clip-path="url(#clipPath1)" d="M150 540 L120 520 L120 360" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(0,1,-1,0,63,280)">
<path clip-path="url(#clipPath79)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath79)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,10.688000000000002,458.1554)">
<text clip-path="url(#clipPath80)" stroke="none" x="0" xml:space="preserve" y="11">Searches in</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-57,-80)">
<path clip-path="url(#clipPath1)" d="M216.83450317382812 540 L216.83450317382812 460" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(0,1,-1,0,159.8345,380)">
<path clip-path="url(#clipPath81)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath81)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,85.85839999999999,398.1463)">
<text clip-path="url(#clipPath82)" stroke="none" x="0" xml:space="preserve" y="11">Searches by</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-57,-80)">
<path clip-path="url(#clipPath1)" d="M620 540 L620 220" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(0,1,-1,0,563,140)">
<path clip-path="url(#clipPath83)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath83)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,573,293)">
<text clip-path="url(#clipPath84)" stroke="none" x="0" xml:space="preserve" y="11">Accesses</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-57,-80)">
<path clip-path="url(#clipPath1)" d="M263.6689147949219 540 L540 220" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(-0.6535757910369188,0.7568610740224826,-0.7568610740224826,-0.6535757910369188,483,140)">
<path clip-path="url(#clipPath85)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" />
<path clip-path="url(#clipPath85)" d="M10 -5 L0 0 ZM10 5 L0 0 Z" fill="none" stroke="black" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,400.3577,153.608)">
<text clip-path="url(#clipPath86)" stroke="none" x="0" xml:space="preserve" y="11">Manages</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 64 KiB

View file

@ -1,193 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg color-interpolation="auto" color-rendering="auto" fill="black" fill-opacity="1" font-family="&apos;Dialog&apos;" font-size="12" font-style="normal" font-weight="normal" image-rendering="auto" shape-rendering="auto" stroke="black" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="10" stroke-opacity="1" stroke-width="1" text-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-75 10 L-75 128 L534 128 L534 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 118 L609 118 L609 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-105 -10 L-105 108 L504 108 L504 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.40410041809082 -42 L-12.40410041809082 76 L596.5958862304688 76 L596.5958862304688 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-113.10140228271484 -42 L-113.10140228271484 76 L495.8985900878906 76 L495.8985900878906 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-116.58180236816406 -42 L-116.58180236816406 76 L492.418212890625 76 L492.418212890625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-475 -10 L-475 108 L134 108 L134 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-481 -16 L-481 102 L128 102 L128 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-518.47412109375 -16 L-518.47412109375 102 L90.5259017944336 102 L90.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-521.95458984375 -16 L-521.95458984375 102 L87.04540252685547 102 L87.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-531.9937133789062 -71 L-531.9937133789062 47 L77.00630187988281 47 L77.00630187988281 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-241.49740600585938 -46 L-241.49740600585938 72 L367.5025939941406 72 L367.5025939941406 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-246.9779052734375 -46 L-246.9779052734375 72 L362.0220947265625 72 L362.0220947265625 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-252.4582977294922 -46 L-252.4582977294922 72 L356.54168701171875 72 L356.54168701171875 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-325.4245910644531 -46 L-325.4245910644531 72 L283.5754089355469 72 L283.5754089355469 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-337.6492004394531 -46 L-337.6492004394531 72 L271.3507995605469 72 L271.3507995605469 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-403.69219970703125 -46 L-403.69219970703125 72 L205.30780029296875 72 L205.30780029296875 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-407.269287109375 -46 L-407.269287109375 72 L201.73069763183594 72 L201.73069763183594 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-451.919189453125 -46 L-451.919189453125 72 L157.08079528808594 72 L157.08079528808594 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M531.9937133789062 71 L531.9937133789062 -47 L-77.00630187988281 -47 L-77.00630187988281 71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-255.51829528808594 -82 L-255.51829528808594 36 L353.481689453125 36 L353.481689453125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-260.9988098144531 -82 L-260.9988098144531 36 L348.0011901855469 36 L348.0011901855469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-266.47918701171875 -82 L-266.47918701171875 36 L342.52081298828125 36 L342.52081298828125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-336.222900390625 -82 L-336.222900390625 36 L272.777099609375 36 L272.777099609375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-339.79998779296875 -82 L-339.79998779296875 36 L269.20001220703125 36 L269.20001220703125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-387.8981018066406 -82 L-387.8981018066406 36 L221.10189819335938 36 L221.10189819335938 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M531.9937133789062 106 L531.9937133789062 -12 L-77.00630187988281 -12 L-77.00630187988281 106 Z" />
</clipPath>
</defs>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-dasharray="5,5" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,105,10)">
<path clip-path="url(#clipPath3)" d="M10.5 48.5 L10.5 97.5" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,105,10)">
<path clip-path="url(#clipPath3)" d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,105,10)">
<path clip-path="url(#clipPath3)" d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,12.4041,42)">
<text clip-path="url(#clipPath4)" stroke="none" x="0" xml:space="preserve" y="11">storage maintainer</text>
<line clip-path="url(#clipPath4)" fill="none" x1="0" x2="100.697265625" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,113.1014,42)">
<text clip-path="url(#clipPath5)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
<line clip-path="url(#clipPath5)" fill="none" x1="0" x2="3.48046875" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,116.5818,42)">
<text clip-path="url(#clipPath6)" stroke="none" x="0" xml:space="preserve" y="11">Storage maintainer</text>
<line clip-path="url(#clipPath6)" fill="none" x1="0" x2="101.01416015625" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,475,10)">
<path clip-path="url(#clipPath7)" d="M62.493648529052734 0.5 L62.493648529052734 97.5" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-dasharray="5,5" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,475,10)">
<path clip-path="url(#clipPath7)" d="M62.493648529052734 0.5 L62.493648529052734 97.5" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,475,10)">
<path clip-path="url(#clipPath7)" d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,475,10)">
<path clip-path="url(#clipPath7)" d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" fill="none" />
<text clip-path="url(#clipPath8)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,6,6)" x="0" xml:space="preserve" y="11">system</text>
<line clip-path="url(#clipPath8)" fill="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,6,6)" x1="0" x2="37.47412109375" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,518.4741,16)">
<text clip-path="url(#clipPath9)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
<line clip-path="url(#clipPath9)" fill="none" x1="0" x2="3.48046875" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,521.9546,16)">
<text clip-path="url(#clipPath10)" stroke="none" x="0" xml:space="preserve" y="11">Local storage</text>
<line clip-path="url(#clipPath10)" fill="none" x1="0" x2="71.03271484375" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,531.9937,71)">
<path clip-path="url(#clipPath11)" d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,531.9937,71)">
<path clip-path="url(#clipPath11)" d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,75,-10)">
<path clip-path="url(#clipPath1)" d="M456.99371337890625 81 L40 81" fill="none" />
<text clip-path="url(#clipPath12)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,166.4974,56)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,246.9779,46)">
<text clip-path="url(#clipPath13)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,252.4583,46)">
<text clip-path="url(#clipPath14)" stroke="none" x="0" xml:space="preserve" y="11">authenticated</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,325.4246,46)">
<text clip-path="url(#clipPath15)" stroke="none" x="0" xml:space="preserve" y="11">:=</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,337.6492,46)">
<text clip-path="url(#clipPath16)" stroke="none" x="0" xml:space="preserve" y="11">authenticate</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,403.6922,46)">
<text clip-path="url(#clipPath17)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,407.26930000000004,46)">
<text clip-path="url(#clipPath18)" stroke="none" x="0" xml:space="preserve" y="11">authinfo</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,451.91920000000005,46)">
<text clip-path="url(#clipPath19)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,0,0,-1,531.9937,71)">
<path clip-path="url(#clipPath20)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath20)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,75,-10)">
<path clip-path="url(#clipPath1)" d="M456.99371337890625 116 L40 116" fill="none" />
<text clip-path="url(#clipPath21)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,180.5183,92)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,260.9988,82)">
<text clip-path="url(#clipPath22)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,266.4792,82)">
<text clip-path="url(#clipPath23)" stroke="none" x="0" xml:space="preserve" y="11">createPlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,336.2229,82)">
<text clip-path="url(#clipPath24)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,339.8,82)">
<text clip-path="url(#clipPath25)" stroke="none" x="0" xml:space="preserve" y="11">playlistId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,387.8981,82)">
<text clip-path="url(#clipPath26)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,8.881784197001252E-16,-8.881784197001252E-16,-1,531.9937,106)">
<path clip-path="url(#clipPath27)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath27)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,183 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-85 10 L-85 132 L484 132 L484 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L569 122 L569 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-105 -10 L-105 112 L464 112 L464 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.40410041809082 -42 L-12.40410041809082 80 L556.5958862304688 80 L556.5958862304688 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-113.10140228271484 -42 L-113.10140228271484 80 L455.8985900878906 80 L455.8985900878906 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-116.58180236816406 -42 L-116.58180236816406 80 L452.418212890625 80 L452.418212890625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-435 -10 L-435 112 L134 112 L134 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-441 -16 L-441 106 L128 106 L128 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-478.4740905761719 -16 L-478.4740905761719 106 L90.5259017944336 106 L90.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-481.95458984375 -16 L-481.95458984375 106 L87.04540252685547 106 L87.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-491.99371337890625 -75 L-491.99371337890625 47 L77.00630187988281 47 L77.00630187988281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M491.99371337890625 75 L491.99371337890625 -47 L-77.00630187988281 -47 L-77.00630187988281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-196.50270080566406 -51 L-196.50270080566406 71 L372.497314453125 71 L372.497314453125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-201.9832000732422 -51 L-201.9832000732422 71 L367.0168151855469 71 L367.0168151855469 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-207.46359252929688 -51 L-207.46359252929688 71 L361.5364074707031 71 L361.5364074707031 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-280.4299011230469 -51 L-280.4299011230469 71 L288.5700988769531 71 L288.5700988769531 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-292.6545104980469 -51 L-292.6545104980469 71 L276.3454895019531 71 L276.3454895019531 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-358.697509765625 -51 L-358.697509765625 71 L210.30250549316406 71 L210.30250549316406 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-362.27459716796875 -51 L-362.27459716796875 71 L206.72540283203125 71 L206.72540283203125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-406.9137878417969 -51 L-406.9137878417969 71 L162.08619689941406 71 L162.08619689941406 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M491.99371337890625 110 L491.99371337890625 -12 L-77.00630187988281 -12 L-77.00630187988281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-221.67970275878906 -86 L-221.67970275878906 36 L347.3203125 36 L347.3203125 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-227.1602020263672 -86 L-227.1602020263672 36 L341.8398132324219 36 L341.8398132324219 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-232.64059448242188 -86 L-232.64059448242188 36 L336.3594055175781 36 L336.3594055175781 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-317.41259765625 -86 L-317.41259765625 36 L251.58740234375 36 L251.58740234375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-320.98968505859375 -86 L-320.98968505859375 36 L248.0102996826172 36 L248.0102996826172 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-381.7367858886719 -86 L-381.7367858886719 36 L187.26319885253906 36 L187.26319885253906 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,105,10)">
<path d="M10.5 48.5 L10.5 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.4041,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">storage maintainer</text>
<line x1="0" y1="12.5" x2="100.697265625" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.1014,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,116.5818,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Storage maintainer</text>
<line x1="0" y1="12.5" x2="101.01416015625" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,435,10)">
<path d="M62.493648529052734 0.5 L62.493648529052734 101.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M62.493648529052734 0.5 L62.493648529052734 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,441,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,478.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,481.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,491.9937,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85,-10)">
<path d="M30 85 L406.99371337890625 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,0,0,-1,406.9937,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,406.9937,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,196.5027,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,201.9832,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,207.4636,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,280.42990000000003,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,292.6545,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,358.6975,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,362.2746,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,406.91380000000004,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85,-10)">
<path d="M30 120 L406.99371337890625 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,0,0,-1,406.9937,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,406.9937,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,221.6797,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,227.1602,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,232.6406,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">deleteAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,317.4126,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,320.9897,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,381.7368,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

View file

@ -1,193 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg color-interpolation="auto" color-rendering="auto" fill="black" fill-opacity="1" font-family="&apos;Dialog&apos;" font-size="12" font-style="normal" font-weight="normal" image-rendering="auto" shape-rendering="auto" stroke="black" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="10" stroke-opacity="1" stroke-width="1" text-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-85 10 L-85 141 L504 141 L504 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 131 L589 131 L589 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-105 -10 L-105 121 L484 121 L484 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.40410041809082 -42 L-12.40410041809082 89 L576.5958862304688 89 L576.5958862304688 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-113.10140228271484 -42 L-113.10140228271484 89 L475.8985900878906 89 L475.8985900878906 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-116.58180236816406 -42 L-116.58180236816406 89 L472.418212890625 89 L472.418212890625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-455 -10 L-455 121 L134 121 L134 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-461 -16 L-461 115 L128 115 L128 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-498.4740905761719 -16 L-498.4740905761719 115 L90.5259017944336 115 L90.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-501.95458984375 -16 L-501.95458984375 115 L87.04540252685547 115 L87.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-511.99371337890625 -75 L-511.99371337890625 56 L77.00630187988281 56 L77.00630187988281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-246.5406951904297 -52 L-246.5406951904297 79 L342.45928955078125 79 L342.45928955078125 -52 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-252.0211944580078 -52 L-252.0211944580078 79 L336.9787902832031 79 L336.9787902832031 -52 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-257.5015869140625 -52 L-257.5015869140625 79 L331.4984130859375 79 L331.4984130859375 -52 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-330.4678955078125 -52 L-330.4678955078125 79 L258.5321044921875 79 L258.5321044921875 -52 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-342.6925048828125 -52 L-342.6925048828125 79 L246.3074951171875 79 L246.3074951171875 -52 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-408.7355041503906 -52 L-408.7355041503906 79 L180.26449584960938 79 L180.26449584960938 -52 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-412.3125915527344 -52 L-412.3125915527344 79 L176.68739318847656 79 L176.68739318847656 -52 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-456.9624938964844 -52 L-456.9624938964844 79 L132.03750610351562 79 L132.03750610351562 -52 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M511.99371337890625 75 L511.99371337890625 -56 L-77.00630187988281 -56 L-77.00630187988281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-281.5075988769531 -85 L-281.5075988769531 46 L307.4924011230469 46 L307.4924011230469 -85 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-286.98809814453125 -85 L-286.98809814453125 46 L302.01190185546875 46 L302.01190185546875 -85 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-292.468505859375 -85 L-292.468505859375 46 L296.531494140625 46 L296.531494140625 -85 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-362.2336120605469 -85 L-362.2336120605469 46 L226.7664031982422 46 L226.7664031982422 -85 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-365.810791015625 -85 L-365.810791015625 46 L223.18919372558594 46 L223.18919372558594 -85 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-413.9089050292969 -85 L-413.9089050292969 46 L175.09109497070312 46 L175.09109497070312 -85 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M511.99371337890625 110 L511.99371337890625 -21 L-77.00630187988281 -21 L-77.00630187988281 110 Z" />
</clipPath>
</defs>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-dasharray="5,5" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,105,10)">
<path clip-path="url(#clipPath3)" d="M10.5 48.5 L10.5 101.5" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,105,10)">
<path clip-path="url(#clipPath3)" d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,105,10)">
<path clip-path="url(#clipPath3)" d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,12.4041,42)">
<text clip-path="url(#clipPath4)" stroke="none" x="0" xml:space="preserve" y="11">storage maintainer</text>
<line clip-path="url(#clipPath4)" fill="none" x1="0" x2="100.697265625" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,113.1014,42)">
<text clip-path="url(#clipPath5)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
<line clip-path="url(#clipPath5)" fill="none" x1="0" x2="3.48046875" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,116.5818,42)">
<text clip-path="url(#clipPath6)" stroke="none" x="0" xml:space="preserve" y="11">Storage maintainer</text>
<line clip-path="url(#clipPath6)" fill="none" x1="0" x2="101.01416015625" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,455,10)">
<path clip-path="url(#clipPath7)" d="M62.493648529052734 0.5 L62.493648529052734 110.5" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-dasharray="5,5" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,455,10)">
<path clip-path="url(#clipPath7)" d="M62.493648529052734 0.5 L62.493648529052734 110.5" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,455,10)">
<path clip-path="url(#clipPath7)" d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,455,10)">
<path clip-path="url(#clipPath7)" d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" fill="none" />
<text clip-path="url(#clipPath8)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,6,6)" x="0" xml:space="preserve" y="11">system</text>
<line clip-path="url(#clipPath8)" fill="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,6,6)" x1="0" x2="37.47412109375" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,498.4741,16)">
<text clip-path="url(#clipPath9)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
<line clip-path="url(#clipPath9)" fill="none" x1="0" x2="3.48046875" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,501.9546,16)">
<text clip-path="url(#clipPath10)" stroke="none" x="0" xml:space="preserve" y="11">Local storage</text>
<line clip-path="url(#clipPath10)" fill="none" x1="0" x2="71.03271484375" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,511.9937,75)">
<path clip-path="url(#clipPath11)" d="M0.5 0.5 L9.5 0.5 L9.5 45.5 L0.5 45.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,511.9937,75)">
<path clip-path="url(#clipPath11)" d="M0.5 0.5 L9.5 0.5 L9.5 45.5 L0.5 45.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,85,-10)">
<path clip-path="url(#clipPath1)" d="M426.99371337890625 85 L30 85" fill="none" />
<text clip-path="url(#clipPath12)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,161.5407,62)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,252.0212,52)">
<text clip-path="url(#clipPath13)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,257.5016,52)">
<text clip-path="url(#clipPath14)" stroke="none" x="0" xml:space="preserve" y="11">authenticated</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,330.4679,52)">
<text clip-path="url(#clipPath15)" stroke="none" x="0" xml:space="preserve" y="11">:=</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,342.6925,52)">
<text clip-path="url(#clipPath16)" stroke="none" x="0" xml:space="preserve" y="11">authenticate</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,408.7355,52)">
<text clip-path="url(#clipPath17)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,412.3126,52)">
<text clip-path="url(#clipPath18)" stroke="none" x="0" xml:space="preserve" y="11">authinfo</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,456.9625,52)">
<text clip-path="url(#clipPath19)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,0,0,-1,511.9937,75)">
<path clip-path="url(#clipPath20)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath20)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,85,-10)">
<path clip-path="url(#clipPath1)" d="M426.99371337890625 120 L30 120" fill="none" />
<text clip-path="url(#clipPath21)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,196.5076,95)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,286.98810000000003,85)">
<text clip-path="url(#clipPath22)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,292.4685,85)">
<text clip-path="url(#clipPath23)" stroke="none" x="0" xml:space="preserve" y="11">deletePlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,362.2336,85)">
<text clip-path="url(#clipPath24)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,365.8108,85)">
<text clip-path="url(#clipPath25)" stroke="none" x="0" xml:space="preserve" y="11">playlistId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,413.9089,85)">
<text clip-path="url(#clipPath26)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,4.884981308350689E-15,-4.884981308350689E-15,-1,511.9937,110)">
<path clip-path="url(#clipPath27)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath27)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,249 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg color-interpolation="auto" color-rendering="auto" fill="black" fill-opacity="1" font-family="&apos;Dialog&apos;" font-size="12" font-style="normal" font-weight="normal" image-rendering="auto" shape-rendering="auto" stroke="black" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="10" stroke-opacity="1" stroke-width="1" text-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-85 10 L-85 171 L534 171 L534 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 161 L619 161 L619 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-105 -10 L-105 151 L514 151 L514 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.40410041809082 -42 L-12.40410041809082 119 L606.5958862304688 119 L606.5958862304688 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-113.10140228271484 -42 L-113.10140228271484 119 L505.8985900878906 119 L505.8985900878906 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-116.58180236816406 -42 L-116.58180236816406 119 L502.418212890625 119 L502.418212890625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-485 -10 L-485 151 L134 151 L134 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-491 -16 L-491 145 L128 145 L128 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-528.47412109375 -16 L-528.47412109375 145 L90.52587890625 145 L90.52587890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-531.95458984375 -16 L-531.95458984375 145 L87.04541015625 145 L87.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-541.9937133789062 -75 L-541.9937133789062 86 L77.00630187988281 86 L77.00630187988281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-253.21099853515625 -51 L-253.21099853515625 110 L365.78900146484375 110 L365.78900146484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-258.6914978027344 -51 L-258.6914978027344 110 L360.3085021972656 110 L360.3085021972656 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-264.1719055175781 -51 L-264.1719055175781 110 L354.8280944824219 110 L354.8280944824219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-337.1382141113281 -51 L-337.1382141113281 110 L281.8617858886719 110 L281.8617858886719 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-349.36279296875 -51 L-349.36279296875 110 L269.63720703125 110 L269.63720703125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-415.4057922363281 -51 L-415.4057922363281 110 L203.5941925048828 110 L203.5941925048828 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-418.98291015625 -51 L-418.98291015625 110 L200.01710510253906 110 L200.01710510253906 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-463.6328125 -51 L-463.6328125 110 L155.36720275878906 110 L155.36720275878906 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M541.9937133789062 75 L541.9937133789062 -86 L-77.00630187988281 -86 L-77.00630187988281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-270.52081298828125 -86 L-270.52081298828125 75 L348.47918701171875 75 L348.47918701171875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-276.0013122558594 -86 L-276.0013122558594 75 L342.9986877441406 75 L342.9986877441406 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-281.481689453125 -86 L-281.481689453125 75 L337.518310546875 75 L337.518310546875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-319.48760986328125 -86 L-319.48760986328125 75 L299.51239013671875 75 L299.51239013671875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-331.7121887207031 -86 L-331.7121887207031 75 L287.2878112792969 75 L287.2878112792969 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-389.2204895019531 -86 L-389.2204895019531 75 L229.7794952392578 75 L229.7794952392578 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-392.797607421875 -86 L-392.797607421875 75 L226.202392578125 75 L226.202392578125 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-440.89581298828125 -86 L-440.89581298828125 75 L178.1042022705078 75 L178.1042022705078 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M541.9937133789062 110 L541.9937133789062 -51 L-77.00630187988281 -51 L-77.00630187988281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-304.10308837890625 -121 L-304.10308837890625 40 L314.89691162109375 40 L314.89691162109375 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-309.5835876464844 -121 L-309.5835876464844 40 L309.4164123535156 40 L309.4164123535156 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-315.0639953613281 -121 L-315.0639953613281 40 L303.9360046386719 40 L303.9360046386719 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-375.7304992675781 -121 L-375.7304992675781 40 L243.26950073242188 40 L243.26950073242188 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-379.3077087402344 -121 L-379.3077087402344 40 L239.6923065185547 40 L239.6923065185547 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-417.3135070800781 -121 L-417.3135070800781 40 L201.68649291992188 40 L201.68649291992188 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M541.9937133789062 145 L541.9937133789062 -16 L-77.00630187988281 -16 L-77.00630187988281 145 Z" />
</clipPath>
</defs>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-dasharray="5,5" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,105,10)">
<path clip-path="url(#clipPath3)" d="M10.5 48.5 L10.5 136.5" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,105,10)">
<path clip-path="url(#clipPath3)" d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,105,10)">
<path clip-path="url(#clipPath3)" d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,12.4041,42)">
<text clip-path="url(#clipPath4)" stroke="none" x="0" xml:space="preserve" y="11">storage maintainer</text>
<line clip-path="url(#clipPath4)" fill="none" x1="0" x2="100.697265625" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,113.1014,42)">
<text clip-path="url(#clipPath5)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
<line clip-path="url(#clipPath5)" fill="none" x1="0" x2="3.48046875" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,116.5818,42)">
<text clip-path="url(#clipPath6)" stroke="none" x="0" xml:space="preserve" y="11">Storage maintainer</text>
<line clip-path="url(#clipPath6)" fill="none" x1="0" x2="101.01416015625" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,485,10)">
<path clip-path="url(#clipPath7)" d="M62.493648529052734 0.5 L62.493648529052734 140.5" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-dasharray="5,5" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,485,10)">
<path clip-path="url(#clipPath7)" d="M62.493648529052734 0.5 L62.493648529052734 140.5" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,485,10)">
<path clip-path="url(#clipPath7)" d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,485,10)">
<path clip-path="url(#clipPath7)" d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" fill="none" />
<text clip-path="url(#clipPath8)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,6,6)" x="0" xml:space="preserve" y="11">system</text>
<line clip-path="url(#clipPath8)" fill="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,6,6)" x1="0" x2="37.47412109375" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,528.47412109375,16)">
<text clip-path="url(#clipPath9)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
<line clip-path="url(#clipPath9)" fill="none" x1="0" x2="3.48046875" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,531.95458984375,16)">
<text clip-path="url(#clipPath10)" stroke="none" x="0" xml:space="preserve" y="11">Local storage</text>
<line clip-path="url(#clipPath10)" fill="none" x1="0" x2="71.03271484375" y1="12.5" y2="12.5" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,541.9937,75)">
<path clip-path="url(#clipPath11)" d="M0.5 0.5 L9.5 0.5 L9.5 75.5 L0.5 75.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,541.9937,75)">
<path clip-path="url(#clipPath11)" d="M0.5 0.5 L9.5 0.5 L9.5 75.5 L0.5 75.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,85,-10)">
<path clip-path="url(#clipPath1)" d="M456.99371337890625 85 L30 85" fill="none" />
<text clip-path="url(#clipPath12)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,168.211,61)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,258.6915,51)">
<text clip-path="url(#clipPath13)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,264.1719,51)">
<text clip-path="url(#clipPath14)" stroke="none" x="0" xml:space="preserve" y="11">authenticated</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,337.1382,51)">
<text clip-path="url(#clipPath15)" stroke="none" x="0" xml:space="preserve" y="11">:=</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,349.3628,51)">
<text clip-path="url(#clipPath16)" stroke="none" x="0" xml:space="preserve" y="11">authenticate</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,415.4058,51)">
<text clip-path="url(#clipPath17)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,418.9829,51)">
<text clip-path="url(#clipPath18)" stroke="none" x="0" xml:space="preserve" y="11">authinfo</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,463.6328,51)">
<text clip-path="url(#clipPath19)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,0,0,-1,541.9937,75)">
<path clip-path="url(#clipPath20)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath20)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,85,-10)">
<path clip-path="url(#clipPath1)" d="M456.99371337890625 120 L30 120" fill="none" />
<text clip-path="url(#clipPath21)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,185.5208,96)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,276.0013,86)">
<text clip-path="url(#clipPath22)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,281.4817,86)">
<text clip-path="url(#clipPath23)" stroke="none" x="0" xml:space="preserve" y="11">playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,319.4876,86)">
<text clip-path="url(#clipPath24)" stroke="none" x="0" xml:space="preserve" y="11">:=</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,331.7122,86)">
<text clip-path="url(#clipPath25)" stroke="none" x="0" xml:space="preserve" y="11">editPlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,389.2205,86)">
<text clip-path="url(#clipPath26)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,392.7976,86)">
<text clip-path="url(#clipPath27)" stroke="none" x="0" xml:space="preserve" y="11">playlistId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,440.8958,86)">
<text clip-path="url(#clipPath28)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,0,0,-1,541.9937,110)">
<path clip-path="url(#clipPath29)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath29)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,85,-10)">
<path clip-path="url(#clipPath1)" d="M456.99371337890625 155 L30 155" fill="none" />
<text clip-path="url(#clipPath30)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,219.1031,131)" x="0" xml:space="preserve" y="11"> </text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,309.58360000000005,121)">
<text clip-path="url(#clipPath31)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,315.064,121)">
<text clip-path="url(#clipPath32)" stroke="none" x="0" xml:space="preserve" y="11">savePlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,375.7305,121)">
<text clip-path="url(#clipPath33)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,379.3077,121)">
<text clip-path="url(#clipPath34)" stroke="none" x="0" xml:space="preserve" y="11">playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,417.31350000000003,121)">
<text clip-path="url(#clipPath35)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(-1,0,0,-1,541.9937,145)">
<path clip-path="url(#clipPath36)" d="M12 -6 L0 0 L12 6 Z" stroke="none" />
<path clip-path="url(#clipPath36)" d="M12 -6 L0 0 L12 6 Z" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 24 KiB

View file

@ -1,210 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg color-interpolation="auto" color-rendering="auto" fill="black" fill-opacity="1" font-family="&apos;Dialog&apos;" font-size="12" font-style="normal" font-weight="normal" image-rendering="auto" shape-rendering="auto" stroke="black" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="10" stroke-opacity="1" stroke-width="1" text-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M4 50 L4 800 L579 800 L579 50 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 750 L575 750 L575 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-176 -10 L-176 740 L399 740 L399 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-178 -12 L-178 738 L397 738 L397 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-176 -27 L-176 723 L399 723 L399 -27 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-216.31289672851562 -50 L-216.31289672851562 700 L358.6871032714844 700 L358.6871032714844 -50 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-248.9792022705078 -64 L-248.9792022705078 686 L326.02081298828125 686 L326.02081298828125 -64 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-213.6072998046875 -150 L-213.6072998046875 600 L361.3927001953125 600 L361.3927001953125 -150 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-244.76010131835938 -166 L-244.76010131835938 584 L330.2398986816406 584 L330.2398986816406 -166 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-210.87269592285156 -230 L-210.87269592285156 520 L364.1272888183594 520 L364.1272888183594 -230 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-242.82650756835938 -239.45590209960938 L-242.82650756835938 510.5440979003906 L332.1734924316406 510.5440979003906 L332.1734924316406 -239.45590209960938 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-194.1125030517578 -310 L-194.1125030517578 440 L380.88751220703125 440 L380.88751220703125 -310 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-230.9752960205078 -326 L-230.9752960205078 424 L344.0246887207031 424 L344.0246887207031 -326 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-206 -390 L-206 360 L369 360 L369 -390 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-239.38099670410156 -406 L-239.38099670410156 344 L335.6189880371094 344 L335.6189880371094 -406 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-216 -460 L-216 290 L359 290 L359 -460 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-246.96139526367188 -476 L-246.96139526367188 274 L328.0386047363281 274 L328.0386047363281 -476 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-226 -530 L-226 220 L349 220 L349 -530 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-251.0625 -546 L-251.0625 204 L323.9375 204 L323.9375 -546 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-216 -600 L-216 150 L359 150 L359 -600 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-243.9080047607422 -616 L-243.9080047607422 134 L331.0920104980469 134 L331.0920104980469 -616 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-216 -670 L-216 80 L359 80 L359 -670 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-244.38070678710938 -686 L-244.38070678710938 64 L330.6192932128906 64 L330.6192932128906 -686 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-36 -370 L-36 380 L539 380 L539 -370 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-10.492899894714355 -455 L-10.492899894714355 295 L564.507080078125 295 L564.507080078125 -455 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-506 -440 L-506 310 L69 310 L69 -440 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-497.3446960449219 -525 L-497.3446960449219 225 L77.6552963256836 225 L77.6552963256836 -525 Z" />
</clipPath>
</defs>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,176,10)">
<path clip-path="url(#clipPath3)" d="M0.5 0.5 L74.53269958496094 0.5 L74.53269958496094 17.5 L0.5 17.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,178,12)">
<text clip-path="url(#clipPath4)" stroke="none" x="0" xml:space="preserve" y="11">Local storage</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,176,27)">
<path clip-path="url(#clipPath5)" d="M0.5 0.5 L249.5 0.5 L249.5 712.5 L0.5 712.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,176,27)">
<path clip-path="url(#clipPath5)" d="M0.5 0.5 L249.5 0.5 L249.5 712.5 L0.5 712.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,216.3129,50)">
<ellipse clip-path="url(#clipPath6)" cx="90" cy="30" rx="90" ry="30" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,216.3129,50)">
<ellipse clip-path="url(#clipPath6)" cx="90" cy="30" fill="none" rx="90" ry="30" />
<text clip-path="url(#clipPath7)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,32.6663,14)" x="0" xml:space="preserve" y="11">UC-1 Store or update</text>
<text clip-path="url(#clipPath7)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,32.6663,14)" x="0" xml:space="preserve" y="25">Audio clip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,213.6073,150)">
<ellipse clip-path="url(#clipPath8)" cx="92.70555" cy="25" rx="92.70555" ry="25" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,213.6073,150)">
<ellipse clip-path="url(#clipPath8)" cx="92.70555" cy="25" fill="none" rx="92.70555" ry="25" />
<text clip-path="url(#clipPath9)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,31.1528,16)" x="0" xml:space="preserve" y="11">UC-2 Delete Audio clip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,210.8727,230)">
<ellipse clip-path="url(#clipPath10)" cx="95.4401" cy="25.45585" rx="95.4401" ry="25.45585" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,210.8727,230)">
<ellipse clip-path="url(#clipPath10)" cx="95.4401" cy="25.45585" fill="none" rx="95.4401" ry="25.45585" />
<text clip-path="url(#clipPath11)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,31.9538,9.4559)" x="0" xml:space="preserve" y="11">UC-3 Update Audio clip</text>
<text clip-path="url(#clipPath11)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,31.9538,9.4559)" x="0" xml:space="preserve" y="25">metadata</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,194.1125,310)">
<ellipse clip-path="url(#clipPath12)" cx="112.2004" cy="25" rx="112.2004" ry="25" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,194.1125,310)">
<ellipse clip-path="url(#clipPath12)" cx="112.2004" cy="25" fill="none" rx="112.2004" ry="25" />
<text clip-path="url(#clipPath13)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,36.8628,16)" x="0" xml:space="preserve" y="11">UC-4 Access raw audio data</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,206,390)">
<ellipse clip-path="url(#clipPath14)" cx="100.31285" cy="25" rx="100.31285" ry="25" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,206,390)">
<ellipse clip-path="url(#clipPath14)" cx="100.31285" cy="25" fill="none" rx="100.31285" ry="25" />
<text clip-path="url(#clipPath15)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,33.381,16)" x="0" xml:space="preserve" y="11">UC-5 Search in metadata</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,216,460)">
<ellipse clip-path="url(#clipPath16)" cx="85" cy="25" rx="85" ry="25" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,216,460)">
<ellipse clip-path="url(#clipPath16)" cx="85" cy="25" fill="none" rx="85" ry="25" />
<text clip-path="url(#clipPath17)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,30.9614,16)" x="0" xml:space="preserve" y="11">UC-6 Create playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,226,530)">
<ellipse clip-path="url(#clipPath18)" cx="71.91185" cy="25" rx="71.91185" ry="25" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,226,530)">
<ellipse clip-path="url(#clipPath18)" cx="71.91185" cy="25" fill="none" rx="71.91185" ry="25" />
<text clip-path="url(#clipPath19)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,25.0625,16)" x="0" xml:space="preserve" y="11">UC-7 Edit playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,216,600)">
<ellipse clip-path="url(#clipPath20)" cx="81.627" cy="25" rx="81.627" ry="25" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,216,600)">
<ellipse clip-path="url(#clipPath20)" cx="81.627" cy="25" fill="none" rx="81.627" ry="25" />
<text clip-path="url(#clipPath21)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,27.908,16)" x="0" xml:space="preserve" y="11">UC-8 Delete playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,216,670)">
<ellipse clip-path="url(#clipPath22)" cx="83.2411" cy="25" rx="83.2411" ry="25" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,216,670)">
<ellipse clip-path="url(#clipPath22)" cx="83.2411" cy="25" fill="none" rx="83.2411" ry="25" />
<text clip-path="url(#clipPath23)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,28.3807,16)" x="0" xml:space="preserve" y="11">UC-9 Access playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,36,370)">
<path clip-path="url(#clipPath24)" d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,36,370)">
<path clip-path="url(#clipPath24)" d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" fill="none" />
<text clip-path="url(#clipPath25)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,-25.5071,85)" x="0" xml:space="preserve" y="11">Storage maintainer</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,506,440)">
<path clip-path="url(#clipPath26)" d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,506,440)">
<path clip-path="url(#clipPath26)" d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" fill="none" />
<text clip-path="url(#clipPath27)" stroke="none" stroke-linecap="square" stroke-miterlimit="10" transform="matrix(1,0,0,1,-8.6553,85)" x="0" xml:space="preserve" y="11">Audio player</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-4,-50)">
<path clip-path="url(#clipPath1)" d="M90 420 L217.26449584960938 311.1191101074219" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-4,-50)">
<path clip-path="url(#clipPath1)" d="M90 465 L210 465" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-4,-50)">
<path clip-path="url(#clipPath1)" d="M90 420 L234.26710510253906 146.04519653320312" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-4,-50)">
<path clip-path="url(#clipPath1)" d="M90 420 L223.53900146484375 233.7989959716797" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-4,-50)">
<path clip-path="url(#clipPath1)" d="M510 490 L419.32818603515625 390.91448974609375" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-4,-50)">
<path clip-path="url(#clipPath1)" d="M118.5071029663086 507.252685546875 L220.23699951171875 533.134521484375" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-4,-50)">
<path clip-path="url(#clipPath1)" d="M118.5071029663086 519.8922119140625 L232.0269012451172 599.106201171875" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-4,-50)">
<path clip-path="url(#clipPath1)" d="M107.90149688720703 522 L225.2322998046875 666.1934204101562" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,-4,-50)">
<path clip-path="url(#clipPath1)" d="M498.3446960449219 584.9854736328125 L380.8940124511719 735.9945068359375" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 23 KiB

View file

@ -1,195 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-85 10 L-85 132 L524 132 L524 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L609 122 L609 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-475 -10 L-475 112 L134 112 L134 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-481 -16 L-481 106 L128 106 L128 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-518.47412109375 -16 L-518.47412109375 106 L90.5259017944336 106 L90.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-521.95458984375 -16 L-521.95458984375 106 L87.04540252685547 106 L87.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-531.9937133789062 -75 L-531.9937133789062 47 L77.00630187988281 47 L77.00630187988281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-105 -10 L-105 112 L504 112 L504 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-12.40410041809082 -42 L-12.40410041809082 80 L596.5958862304688 80 L596.5958862304688 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-113.10140228271484 -42 L-113.10140228271484 80 L495.8985900878906 80 L495.8985900878906 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-116.58180236816406 -42 L-116.58180236816406 80 L492.418212890625 80 L492.418212890625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M531.9937133789062 75 L531.9937133789062 -47 L-77.00630187988281 -47 L-77.00630187988281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-221.85499572753906 -51 L-221.85499572753906 71 L387.1449890136719 71 L387.1449890136719 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-227.3354949951172 -51 L-227.3354949951172 71 L381.66448974609375 71 L381.66448974609375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-232.81590270996094 -51 L-232.81590270996094 71 L376.1841125488281 71 L376.1841125488281 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-305.7821960449219 -51 L-305.7821960449219 71 L303.2178039550781 71 L303.2178039550781 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-318.0068054199219 -51 L-318.0068054199219 71 L290.9931945800781 71 L290.9931945800781 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-384.0498046875 -51 L-384.0498046875 71 L224.9501953125 71 L224.9501953125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-387.62689208984375 -51 L-387.62689208984375 71 L221.3730926513672 71 L221.3730926513672 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-421.5614929199219 -51 L-421.5614929199219 71 L187.43850708007812 71 L187.43850708007812 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M531.9937133789062 110 L531.9937133789062 -12 L-77.00630187988281 -12 L-77.00630187988281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-196.2993927001953 -86 L-196.2993927001953 36 L412.7005920410156 36 L412.7005920410156 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-201.7799072265625 -86 L-201.7799072265625 36 L407.2200927734375 36 L407.2200927734375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-207.2602996826172 -86 L-207.2602996826172 36 L401.73968505859375 36 L401.73968505859375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-310.2510070800781 -86 L-310.2510070800781 36 L298.7489929199219 36 L298.7489929199219 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-322.4755859375 -86 L-322.4755859375 36 L286.5244140625 36 L286.5244140625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-406.22711181640625 -86 L-406.22711181640625 36 L202.7729034423828 36 L202.7729034423828 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-409.80419921875 -86 L-409.80419921875 36 L199.19580078125 36 L199.19580078125 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-447.1171875 -86 L-447.1171875 36 L161.88279724121094 36 L161.88279724121094 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,475,10)">
<path d="M62.493648529052734 0.5 L62.493648529052734 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,481,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,518.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,521.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,531.9937,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,105,10)">
<path d="M10.5 48.5 L10.5 101.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10.5 48.5 L10.5 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.4041,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">storage maintainer</text>
<line x1="0" y1="12.5" x2="100.697265625" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.1014,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,116.5818,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Storage maintainer</text>
<line x1="0" y1="12.5" x2="101.01416015625" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85,-10)">
<path d="M30 85 L446.99371337890625 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,446.9937,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,446.9937,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,221.855,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,227.3355,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,232.8159,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,305.7822,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,318.0068,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,384.0498,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,387.6269,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,421.5615,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85,-10)">
<path d="M30 120 L446.99371337890625 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,446.9937,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,446.9937,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,196.2994,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,201.7799,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,207.2603,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">matchingUniqueIds</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,310.251,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,322.4756,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">searchMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,406.2271,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,409.80420000000004,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">criteria</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,447.1172,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,195 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-25 10 L-25 181 L594 181 L594 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 171 L619 171 L619 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-485 -10 L-485 161 L134 161 L134 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-491 -16 L-491 155 L128 155 L128 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-528.47412109375 -16 L-528.47412109375 155 L90.5259017944336 155 L90.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-531.95458984375 -16 L-531.95458984375 155 L87.04540252685547 155 L87.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-541.9937133789062 -75 L-541.9937133789062 96 L77.00630187988281 96 L77.00630187988281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-105 -10 L-105 161 L514 161 L514 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-12.40410041809082 -42 L-12.40410041809082 129 L606.5958862304688 129 L606.5958862304688 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-113.10140228271484 -42 L-113.10140228271484 129 L505.8985900878906 129 L505.8985900878906 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-116.58180236816406 -42 L-116.58180236816406 129 L502.418212890625 129 L502.418212890625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M541.9937133789062 75 L541.9937133789062 -96 L-77.00630187988281 -96 L-77.00630187988281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-221.50270080566406 -51 L-221.50270080566406 120 L397.497314453125 120 L397.497314453125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-226.9832000732422 -51 L-226.9832000732422 120 L392.0168151855469 120 L392.0168151855469 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-232.46359252929688 -51 L-232.46359252929688 120 L386.5364074707031 120 L386.5364074707031 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-305.4299011230469 -51 L-305.4299011230469 120 L313.5700988769531 120 L313.5700988769531 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-317.6545104980469 -51 L-317.6545104980469 120 L301.3454895019531 120 L301.3454895019531 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-383.697509765625 -51 L-383.697509765625 120 L235.30250549316406 120 L235.30250549316406 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-387.27459716796875 -51 L-387.27459716796875 120 L231.72540283203125 120 L231.72540283203125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-431.9137878417969 -51 L-431.9137878417969 120 L187.08619689941406 120 L187.08619689941406 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M541.9937133789062 110 L541.9937133789062 -61 L-77.00630187988281 -61 L-77.00630187988281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-217.98739624023438 -86 L-217.98739624023438 85 L401.0126037597656 85 L401.0126037597656 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-223.4678955078125 -86 L-223.4678955078125 85 L395.5321044921875 85 L395.5321044921875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-228.94830322265625 -86 L-228.94830322265625 85 L390.05169677734375 85 L390.05169677734375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-289.6954040527344 -86 L-289.6954040527344 85 L329.3045959472656 85 L329.3045959472656 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-301.9200134277344 -86 L-301.9200134277344 85 L317.0799865722656 85 L317.0799865722656 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-381.1972961425781 -86 L-381.1972961425781 85 L237.80270385742188 85 L237.80270385742188 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-384.7745056152344 -86 L-384.7745056152344 85 L234.22549438476562 85 L234.22549438476562 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-435.4292907714844 -86 L-435.4292907714844 85 L183.57069396972656 85 L183.57069396972656 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,485,10)">
<path d="M62.493648529052734 0.5 L62.493648529052734 150.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,491,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,528.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,531.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,541.9937,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 85.5 L0.5 85.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 85.5 L0.5 85.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,105,10)">
<path d="M10.5 48.5 L10.5 150.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10.5 48.5 L10.5 150.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.4041,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">storage maintainer</text>
<line x1="0" y1="12.5" x2="100.697265625" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.1014,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,116.5818,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Storage maintainer</text>
<line x1="0" y1="12.5" x2="101.01416015625" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,25,-10)">
<path d="M90 85 L516.9937133789062 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,0,0,-1,516.9937,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,516.9937,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,221.5027,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,226.9832,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,232.4636,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,305.42990000000003,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,317.6545,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,383.6975,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,387.2746,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,431.91380000000004,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,25,-10)">
<path d="M90 120 L516.9937133789062 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,0,0,-1,516.9937,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,516.9937,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,217.9874,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,223.46790000000001,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,228.94830000000002,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,289.6954,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,301.92,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">storeAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,381.19730000000004,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,384.7745,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,435.4293,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,911 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg color-interpolation="auto" color-rendering="auto" fill="black" fill-opacity="1" font-family="&apos;Dialog&apos;" font-size="12" font-style="normal" font-weight="normal" image-rendering="auto" shape-rendering="auto" stroke="black" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="10" stroke-opacity="1" stroke-width="1" text-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M10 10 L10 323 L460 323 L460 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 313 L450 313 L450 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 303 L440 303 L440 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-186.87229919433594 -13 L-186.87229919433594 300 L263.127685546875 300 L263.127685546875 -13 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-11 -29 L-11 284 L439 284 L439 -29 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-11 -54 L-11 259 L439 259 L439 -54 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-15 -59 L-15 254 L435 254 L435 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-23.74410057067871 -59 L-23.74410057067871 254 L426.2558898925781 254 L426.2558898925781 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-89.78710174560547 -59 L-89.78710174560547 254 L360.212890625 254 L360.212890625 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-93.36430358886719 -59 L-93.36430358886719 254 L356.6357116699219 254 L356.6357116699219 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-190.83889770507812 -59 L-190.83889770507812 254 L259.1611022949219 254 L259.1611022949219 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-194.31939697265625 -59 L-194.31939697265625 254 L255.68060302734375 254 L255.68060302734375 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-293.30859375 -59 L-293.30859375 254 L156.69140625 254 L156.69140625 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-296.8857116699219 -59 L-296.8857116699219 254 L153.1143035888672 254 L153.1143035888672 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-300.3662109375 -59 L-300.3662109375 254 L149.63380432128906 254 L149.63380432128906 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-15 -74 L-15 239 L435 239 L435 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-23.74410057067871 -74 L-23.74410057067871 239 L426.2558898925781 239 L426.2558898925781 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-107.2968978881836 -74 L-107.2968978881836 239 L342.7030944824219 239 L342.7030944824219 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-110.8740005493164 -74 L-110.8740005493164 239 L339.1260070800781 239 L339.1260070800781 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-171.62109375 -74 L-171.62109375 239 L278.37890625 239 L278.37890625 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-175.10150146484375 -74 L-175.10150146484375 239 L274.89849853515625 239 L274.89849853515625 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-222.7001953125 -74 L-222.7001953125 239 L227.2998046875 239 L227.2998046875 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-226.2772979736328 -74 L-226.2772979736328 239 L223.7227020263672 239 L223.7227020263672 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-229.75779724121094 -74 L-229.75779724121094 239 L220.24220275878906 239 L220.24220275878906 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-15 -89 L-15 224 L435 224 L435 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-23.74410057067871 -89 L-23.74410057067871 224 L426.2558898925781 224 L426.2558898925781 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-103.02149963378906 -89 L-103.02149963378906 224 L346.9784851074219 224 L346.9784851074219 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-106.59860229492188 -89 L-106.59860229492188 224 L343.4013977050781 224 L343.4013977050781 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-157.25340270996094 -89 L-157.25340270996094 224 L292.7466125488281 224 L292.7466125488281 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-160.73390197753906 -89 L-160.73390197753906 224 L289.26611328125 224 L289.26611328125 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-212.90330505371094 -89 L-212.90330505371094 224 L237.09669494628906 224 L237.09669494628906 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-216.48049926757812 -89 L-216.48049926757812 224 L233.51950073242188 224 L233.51950073242188 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-219.96090698242188 -89 L-219.96090698242188 224 L230.03909301757812 224 L230.03909301757812 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-15 -104 L-15 209 L435 209 L435 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-23.74410057067871 -104 L-23.74410057067871 209 L426.2558898925781 209 L426.2558898925781 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-108.51609802246094 -104 L-108.51609802246094 209 L341.48388671875 209 L341.48388671875 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-112.09329986572266 -104 L-112.09329986572266 209 L337.9067077636719 209 L337.9067077636719 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-172.84039306640625 -104 L-172.84039306640625 209 L277.15960693359375 209 L277.15960693359375 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-176.32080078125 -104 L-176.32080078125 209 L273.67919921875 209 L273.67919921875 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-223.91940307617188 -104 L-223.91940307617188 209 L226.08059692382812 209 L226.08059692382812 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-227.49659729003906 -104 L-227.49659729003906 209 L222.50340270996094 209 L222.50340270996094 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-230.9770965576172 -104 L-230.9770965576172 209 L219.0229034423828 209 L219.0229034423828 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-15 -119 L-15 194 L435 194 L435 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-23.74410057067871 -119 L-23.74410057067871 194 L426.2558898925781 194 L426.2558898925781 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-161.88330078125 -119 L-161.88330078125 194 L288.11669921875 194 L288.11669921875 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-165.4604034423828 -119 L-165.4604034423828 194 L284.53961181640625 194 L284.53961181640625 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-226.20750427246094 -119 L-226.20750427246094 194 L223.79249572753906 194 L223.79249572753906 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-229.68789672851562 -119 L-229.68789672851562 194 L220.31210327148438 194 L220.31210327148438 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-277.2865905761719 -119 L-277.2865905761719 194 L172.71339416503906 194 L172.71339416503906 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-280.76708984375 -119 L-280.76708984375 194 L169.23289489746094 194 L169.23289489746094 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-351.1767883300781 -119 L-351.1767883300781 194 L98.82319641113281 194 L98.82319641113281 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-354.6571960449219 -119 L-354.6571960449219 194 L95.3427963256836 194 L95.3427963256836 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-404.95208740234375 -119 L-404.95208740234375 194 L45.04790115356445 194 L45.04790115356445 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-408.529296875 -119 L-408.529296875 194 L41.470699310302734 194 L41.470699310302734 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-412.0097961425781 -119 L-412.0097961425781 194 L37.99020004272461 194 L37.99020004272461 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-15 -134 L-15 179 L435 179 L435 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-23.74410057067871 -134 L-23.74410057067871 179 L426.2558898925781 179 L426.2558898925781 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-135.71530151367188 -134 L-135.71530151367188 179 L314.2846984863281 179 L314.2846984863281 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-139.29249572753906 -134 L-139.29249572753906 179 L310.7074890136719 179 L310.7074890136719 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-200.0395965576172 -134 L-200.0395965576172 179 L249.9604034423828 179 L249.9604034423828 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-203.52000427246094 -134 L-203.52000427246094 179 L246.47999572753906 179 L246.47999572753906 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-251.1186981201172 -134 L-251.1186981201172 179 L198.8813018798828 179 L198.8813018798828 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-254.69580078125 -134 L-254.69580078125 179 L195.30419921875 179 L195.30419921875 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-258.1763000488281 -134 L-258.1763000488281 179 L191.82369995117188 179 L191.82369995117188 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-15 -149 L-15 164 L435 164 L435 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M-23.74410057067871 -149 L-23.74410057067871 164 L426.2558898925781 164 L426.2558898925781 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-138.7769012451172 -149 L-138.7769012451172 164 L311.2231140136719 164 L311.2231140136719 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
<path d="M-142.35400390625 -149 L-142.35400390625 164 L307.64599609375 164 L307.64599609375 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
<path d="M-217.18409729003906 -149 L-217.18409729003906 164 L232.81590270996094 164 L232.81590270996094 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
<path d="M-220.6645050048828 -149 L-220.6645050048828 164 L229.3354949951172 164 L229.3354949951172 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
<path d="M-297.9491882324219 -149 L-297.9491882324219 164 L152.05079650878906 164 L152.05079650878906 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
<path d="M-301.5263977050781 -149 L-301.5263977050781 164 L148.47360229492188 164 L148.47360229492188 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
<path d="M-305.0068054199219 -149 L-305.0068054199219 164 L144.99319458007812 164 L144.99319458007812 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
<path d="M-15 -164 L-15 149 L435 149 L435 -164 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath75">
<path d="M-23.74410057067871 -164 L-23.74410057067871 149 L426.2558898925781 149 L426.2558898925781 -164 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath76">
<path d="M-107.49559783935547 -164 L-107.49559783935547 149 L342.50439453125 149 L342.50439453125 -164 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath77">
<path d="M-111.07279968261719 -164 L-111.07279968261719 149 L338.92718505859375 149 L338.92718505859375 -164 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath78">
<path d="M-148.38580322265625 -164 L-148.38580322265625 149 L301.61419677734375 149 L301.61419677734375 -164 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath79">
<path d="M-151.86630249023438 -164 L-151.86630249023438 149 L298.1336975097656 149 L298.1336975097656 -164 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath80">
<path d="M-226.24510192871094 -164 L-226.24510192871094 149 L223.75489807128906 149 L223.75489807128906 -164 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath81">
<path d="M-229.82229614257812 -164 L-229.82229614257812 149 L220.17770385742188 149 L220.17770385742188 -164 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath82">
<path d="M-233.30270385742188 -164 L-233.30270385742188 149 L216.69729614257812 149 L216.69729614257812 -164 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath83">
<path d="M-15 -179 L-15 134 L435 134 L435 -179 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath84">
<path d="M-23.74410057067871 -179 L-23.74410057067871 134 L426.2558898925781 134 L426.2558898925781 -179 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath85">
<path d="M-93.01509857177734 -179 L-93.01509857177734 134 L356.9848937988281 134 L356.9848937988281 -179 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath86">
<path d="M-96.59230041503906 -179 L-96.59230041503906 134 L353.40771484375 134 L353.40771484375 -179 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath87">
<path d="M-157.3394012451172 -179 L-157.3394012451172 134 L292.6606140136719 134 L292.6606140136719 -179 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath88">
<path d="M-160.81979370117188 -179 L-160.81979370117188 134 L289.1802062988281 134 L289.1802062988281 -179 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath89">
<path d="M-208.4185028076172 -179 L-208.4185028076172 134 L241.5814971923828 134 L241.5814971923828 -179 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath90">
<path d="M-211.99560546875 -179 L-211.99560546875 134 L238.00439453125 134 L238.00439453125 -179 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath91">
<path d="M-215.47610473632812 -179 L-215.47610473632812 134 L234.52389526367188 134 L234.52389526367188 -179 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath92">
<path d="M-15 -194 L-15 119 L435 119 L435 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath93">
<path d="M-23.74410057067871 -194 L-23.74410057067871 119 L426.2558898925781 119 L426.2558898925781 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath94">
<path d="M-93.48780059814453 -194 L-93.48780059814453 119 L356.51220703125 119 L356.51220703125 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath95">
<path d="M-97.06490325927734 -194 L-97.06490325927734 119 L352.9350891113281 119 L352.9350891113281 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath96">
<path d="M-145.16299438476562 -194 L-145.16299438476562 119 L304.8370056152344 119 L304.8370056152344 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath97">
<path d="M-148.64349365234375 -194 L-148.64349365234375 119 L301.35650634765625 119 L301.35650634765625 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath98">
<path d="M-196.24220275878906 -194 L-196.24220275878906 119 L253.75779724121094 119 L253.75779724121094 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath99">
<path d="M-199.81930541992188 -194 L-199.81930541992188 119 L250.18069458007812 119 L250.18069458007812 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath100">
<path d="M-15 -284 L-15 29 L435 29 L435 -284 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath101">
<path d="M-23.74410057067871 -284 L-23.74410057067871 29 L426.2558898925781 29 L426.2558898925781 -284 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath102">
<path d="M-92.29000091552734 -284 L-92.29000091552734 29 L357.7099914550781 29 L357.7099914550781 -284 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath103">
<path d="M-95.86720275878906 -284 L-95.86720275878906 29 L354.1328125 29 L354.1328125 -284 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath104">
<path d="M-143.96530151367188 -284 L-143.96530151367188 29 L306.0346984863281 29 L306.0346984863281 -284 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath105">
<path d="M-147.44580078125 -284 L-147.44580078125 29 L302.55419921875 29 L302.55419921875 -284 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath106">
<path d="M-195.04440307617188 -284 L-195.04440307617188 29 L254.95559692382812 29 L254.95559692382812 -284 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath107">
<path d="M-198.62159729003906 -284 L-198.62159729003906 29 L251.37840270996094 29 L251.37840270996094 -284 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath108">
<path d="M-202.1020965576172 -284 L-202.1020965576172 29 L247.8979034423828 29 L247.8979034423828 -284 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath109">
<path d="M-15 -209 L-15 104 L435 104 L435 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath110">
<path d="M-23.74410057067871 -209 L-23.74410057067871 104 L426.2558898925781 104 L426.2558898925781 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath111">
<path d="M-81.25240325927734 -209 L-81.25240325927734 104 L368.7475891113281 104 L368.7475891113281 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath112">
<path d="M-84.82959747314453 -209 L-84.82959747314453 104 L365.17041015625 104 L365.17041015625 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath113">
<path d="M-132.92770385742188 -209 L-132.92770385742188 104 L317.0722961425781 104 L317.0722961425781 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath114">
<path d="M-136.408203125 -209 L-136.408203125 104 L313.591796875 104 L313.591796875 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath115">
<path d="M-184.00680541992188 -209 L-184.00680541992188 104 L265.9931945800781 104 L265.9931945800781 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath116">
<path d="M-187.58399963378906 -209 L-187.58399963378906 104 L262.4159851074219 104 L262.4159851074219 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath117">
<path d="M-191.0644989013672 -209 L-191.0644989013672 104 L258.93548583984375 104 L258.93548583984375 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath118">
<path d="M-15 -224 L-15 89 L435 89 L435 -224 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath119">
<path d="M-23.74410057067871 -224 L-23.74410057067871 89 L426.2558898925781 89 L426.2558898925781 -224 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath120">
<path d="M-84.41059875488281 -224 L-84.41059875488281 89 L365.5893859863281 89 L365.5893859863281 -224 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath121">
<path d="M-87.98780059814453 -224 L-87.98780059814453 89 L362.01220703125 89 L362.01220703125 -224 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath122">
<path d="M-125.99369812011719 -224 L-125.99369812011719 89 L324.00628662109375 89 L324.00628662109375 -224 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath123">
<path d="M-129.47410583496094 -224 L-129.47410583496094 89 L320.5259094238281 89 L320.5259094238281 -224 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath124">
<path d="M-166.63670349121094 -224 L-166.63670349121094 89 L283.3633117675781 89 L283.3633117675781 -224 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath125">
<path d="M-170.21389770507812 -224 L-170.21389770507812 89 L279.7861022949219 89 L279.7861022949219 -224 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath126">
<path d="M-15 -239 L-15 74 L435 74 L435 -239 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath127">
<path d="M-23.74410057067871 -239 L-23.74410057067871 74 L426.2558898925781 74 L426.2558898925781 -239 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath128">
<path d="M-93.5093002319336 -239 L-93.5093002319336 74 L356.4906921386719 74 L356.4906921386719 -239 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath129">
<path d="M-97.0864028930664 -239 L-97.0864028930664 74 L352.9136047363281 74 L352.9136047363281 -239 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath130">
<path d="M-145.1844940185547 -239 L-145.1844940185547 74 L304.81549072265625 74 L304.81549072265625 -239 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath131">
<path d="M-148.6649932861328 -239 L-148.6649932861328 74 L301.3349914550781 74 L301.3349914550781 -239 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath132">
<path d="M-196.26370239257812 -239 L-196.26370239257812 74 L253.73629760742188 74 L253.73629760742188 -239 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath133">
<path d="M-199.84080505371094 -239 L-199.84080505371094 74 L250.15919494628906 74 L250.15919494628906 -239 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath134">
<path d="M-15 -254 L-15 59 L435 59 L435 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath135">
<path d="M-23.74410057067871 -254 L-23.74410057067871 59 L426.2558898925781 59 L426.2558898925781 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath136">
<path d="M-95.59329986572266 -254 L-95.59329986572266 59 L354.4067077636719 59 L354.4067077636719 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath137">
<path d="M-99.17040252685547 -254 L-99.17040252685547 59 L350.82958984375 59 L350.82958984375 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath138">
<path d="M-147.26849365234375 -254 L-147.26849365234375 59 L302.73150634765625 59 L302.73150634765625 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath139">
<path d="M-150.74899291992188 -254 L-150.74899291992188 59 L299.2510070800781 59 L299.2510070800781 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath140">
<path d="M-198.3477020263672 -254 L-198.3477020263672 59 L251.6522979736328 59 L251.6522979736328 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath141">
<path d="M-201.9248046875 -254 L-201.9248046875 59 L248.0751953125 59 L248.0751953125 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath142">
<path d="M-205.40530395507812 -254 L-205.40530395507812 59 L244.59469604492188 59 L244.59469604492188 -254 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath143">
<path d="M-15 -269 L-15 44 L435 44 L435 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath144">
<path d="M-23.74410057067871 -269 L-23.74410057067871 44 L426.2558898925781 44 L426.2558898925781 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath145">
<path d="M-98.65480041503906 -269 L-98.65480041503906 44 L351.34521484375 44 L351.34521484375 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath146">
<path d="M-102.23190307617188 -269 L-102.23190307617188 44 L347.7680969238281 44 L347.7680969238281 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath147">
<path d="M-140.23779296875 -269 L-140.23779296875 44 L309.76220703125 44 L309.76220703125 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath148">
<path d="M-143.71820068359375 -269 L-143.71820068359375 44 L306.28179931640625 44 L306.28179931640625 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath149">
<path d="M-180.8809051513672 -269 L-180.8809051513672 44 L269.1191101074219 44 L269.1191101074219 -269 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath150">
<path d="M-184.45799255371094 -269 L-184.45799255371094 44 L265.5419921875 44 L265.5419921875 -269 Z" />
</clipPath>
</defs>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,10,10)">
<path clip-path="url(#clipPath3)" d="M0.5 0.5 L429.06298828125 0.5 L429.06298828125 292.5 L0.5 292.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,186.8723,13)">
<text clip-path="url(#clipPath4)" stroke="none" x="0" xml:space="preserve" y="11">Local storage</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,11,29)">
<path clip-path="url(#clipPath5)" d="M0.5 0.5 L427.06298828125 0.5 L427.06298828125 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,11,29)">
<path clip-path="url(#clipPath5)" d="M0.5 0.5 L427.06298828125 0.5 L427.06298828125 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" fill="white" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="white" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,11,54)">
<path clip-path="url(#clipPath6)" d="M0.5 0.5 L427.06298828125 0.5 L427.06298828125 0.5 L0.5 0.5 Z" stroke="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" font-weight="bold" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke-linecap="butt" stroke-miterlimit="1" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,11,54)">
<path clip-path="url(#clipPath6)" d="M0.5 0.5 L427.06298828125 0.5 L427.06298828125 0.5 L0.5 0.5 Z" fill="none" />
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,59)">
<text clip-path="url(#clipPath7)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,59)">
<text clip-path="url(#clipPath8)" stroke="none" x="0" xml:space="preserve" y="11">authenticate</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,89.7871,59)">
<text clip-path="url(#clipPath9)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,93.3643,59)">
<text clip-path="url(#clipPath10)" stroke="none" x="0" xml:space="preserve" y="11">authenticationInfo</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,190.8389,59)">
<text clip-path="url(#clipPath11)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,194.3194,59)">
<text clip-path="url(#clipPath12)" stroke="none" x="0" xml:space="preserve" y="11">AuthenticationInfo</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,293.3086,59)">
<text clip-path="url(#clipPath13)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,296.8857,59)">
<text clip-path="url(#clipPath14)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,300.3662,59)">
<text clip-path="url(#clipPath15)" stroke="none" x="0" xml:space="preserve" y="11">boolean</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,74)">
<text clip-path="url(#clipPath16)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,74)">
<text clip-path="url(#clipPath17)" stroke="none" x="0" xml:space="preserve" y="11">existsAudioClip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,107.2969,74)">
<text clip-path="url(#clipPath18)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,110.874,74)">
<text clip-path="url(#clipPath19)" stroke="none" x="0" xml:space="preserve" y="11">audioClipId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,171.6211,74)">
<text clip-path="url(#clipPath20)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,175.1015,74)">
<text clip-path="url(#clipPath21)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,222.7002,74)">
<text clip-path="url(#clipPath22)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,226.2773,74)">
<text clip-path="url(#clipPath23)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,229.7578,74)">
<text clip-path="url(#clipPath24)" stroke="none" x="0" xml:space="preserve" y="11">boolean</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,89)">
<text clip-path="url(#clipPath25)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,89)">
<text clip-path="url(#clipPath26)" stroke="none" x="0" xml:space="preserve" y="11">storeAudioClip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,103.0215,89)">
<text clip-path="url(#clipPath27)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,106.5986,89)">
<text clip-path="url(#clipPath28)" stroke="none" x="0" xml:space="preserve" y="11">audioClip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,157.2534,89)">
<text clip-path="url(#clipPath29)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,160.7339,89)">
<text clip-path="url(#clipPath30)" stroke="none" x="0" xml:space="preserve" y="11">AudioClip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,212.9033,89)">
<text clip-path="url(#clipPath31)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,216.4805,89)">
<text clip-path="url(#clipPath32)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,219.9609,89)">
<text clip-path="url(#clipPath33)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,104)">
<text clip-path="url(#clipPath34)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,104)">
<text clip-path="url(#clipPath35)" stroke="none" x="0" xml:space="preserve" y="11">deleteAudioClip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,108.5161,104)">
<text clip-path="url(#clipPath36)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,112.0933,104)">
<text clip-path="url(#clipPath37)" stroke="none" x="0" xml:space="preserve" y="11">audioClipId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,172.8404,104)">
<text clip-path="url(#clipPath38)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,176.32080000000002,104)">
<text clip-path="url(#clipPath39)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,223.9194,104)">
<text clip-path="url(#clipPath40)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,227.4966,104)">
<text clip-path="url(#clipPath41)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,230.9771,104)">
<text clip-path="url(#clipPath42)" stroke="none" x="0" xml:space="preserve" y="11">void</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,119)">
<text clip-path="url(#clipPath43)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,119)">
<text clip-path="url(#clipPath44)" stroke="none" x="0" xml:space="preserve" y="11">updateAudioClipMetadata</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,161.8833,119)">
<text clip-path="url(#clipPath45)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,165.4604,119)">
<text clip-path="url(#clipPath46)" stroke="none" x="0" xml:space="preserve" y="11">audioClipId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,226.20749999999998,119)">
<text clip-path="url(#clipPath47)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,229.6879,119)">
<text clip-path="url(#clipPath48)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,277.2866,119)">
<text clip-path="url(#clipPath49)" stroke="none" x="0" xml:space="preserve" y="11">,</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,280.7671,119)">
<text clip-path="url(#clipPath50)" stroke="none" x="0" xml:space="preserve" y="11">newMetadata</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,351.1768,119)">
<text clip-path="url(#clipPath51)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,354.65720000000005,119)">
<text clip-path="url(#clipPath52)" stroke="none" x="0" xml:space="preserve" y="11">MetaData</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,404.9521,119)">
<text clip-path="url(#clipPath53)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,408.5293,119)">
<text clip-path="url(#clipPath54)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,412.0098,119)">
<text clip-path="url(#clipPath55)" stroke="none" x="0" xml:space="preserve" y="11">void</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,134)">
<text clip-path="url(#clipPath56)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,134)">
<text clip-path="url(#clipPath57)" stroke="none" x="0" xml:space="preserve" y="11">accessRawAudioData</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,135.7153,134)">
<text clip-path="url(#clipPath58)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,139.29250000000002,134)">
<text clip-path="url(#clipPath59)" stroke="none" x="0" xml:space="preserve" y="11">audioClipId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,200.0396,134)">
<text clip-path="url(#clipPath60)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,203.52000000000004,134)">
<text clip-path="url(#clipPath61)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,251.1187,134)">
<text clip-path="url(#clipPath62)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,254.6958,134)">
<text clip-path="url(#clipPath63)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,258.17629999999997,134)">
<text clip-path="url(#clipPath64)" stroke="none" x="0" xml:space="preserve" y="11">RawAudioData</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,149)">
<text clip-path="url(#clipPath65)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,149)">
<text clip-path="url(#clipPath66)" stroke="none" x="0" xml:space="preserve" y="11">releaseRawAudioData</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,138.7769,149)">
<text clip-path="url(#clipPath67)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,142.35399999999998,149)">
<text clip-path="url(#clipPath68)" stroke="none" x="0" xml:space="preserve" y="11">rawAudioData</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,217.1841,149)">
<text clip-path="url(#clipPath69)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,220.66449999999998,149)">
<text clip-path="url(#clipPath70)" stroke="none" x="0" xml:space="preserve" y="11">RawAudioData</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,297.9492,149)">
<text clip-path="url(#clipPath71)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,301.5264,149)">
<text clip-path="url(#clipPath72)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,305.0068,149)">
<text clip-path="url(#clipPath73)" stroke="none" x="0" xml:space="preserve" y="11">void</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,164)">
<text clip-path="url(#clipPath74)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,164)">
<text clip-path="url(#clipPath75)" stroke="none" x="0" xml:space="preserve" y="11">searchMetadata</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,107.4956,164)">
<text clip-path="url(#clipPath76)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,111.0728,164)">
<text clip-path="url(#clipPath77)" stroke="none" x="0" xml:space="preserve" y="11">criteria</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,148.38580000000002,164)">
<text clip-path="url(#clipPath78)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,151.8663,164)">
<text clip-path="url(#clipPath79)" stroke="none" x="0" xml:space="preserve" y="11">SearchCriteria</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,226.2451,164)">
<text clip-path="url(#clipPath80)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,229.8223,164)">
<text clip-path="url(#clipPath81)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,233.3027,164)">
<text clip-path="url(#clipPath82)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,179)">
<text clip-path="url(#clipPath83)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,179)">
<text clip-path="url(#clipPath84)" stroke="none" x="0" xml:space="preserve" y="11">getAudioClip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,93.0151,179)">
<text clip-path="url(#clipPath85)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,96.5923,179)">
<text clip-path="url(#clipPath86)" stroke="none" x="0" xml:space="preserve" y="11">audioClipId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,157.3394,179)">
<text clip-path="url(#clipPath87)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,160.8198,179)">
<text clip-path="url(#clipPath88)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,208.4185,179)">
<text clip-path="url(#clipPath89)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,211.9956,179)">
<text clip-path="url(#clipPath90)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,215.4761,179)">
<text clip-path="url(#clipPath91)" stroke="none" x="0" xml:space="preserve" y="11">AudioClip</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,194)">
<text clip-path="url(#clipPath92)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,194)">
<text clip-path="url(#clipPath93)" stroke="none" x="0" xml:space="preserve" y="11">createPlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,93.4878,194)">
<text clip-path="url(#clipPath94)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,97.0649,194)">
<text clip-path="url(#clipPath95)" stroke="none" x="0" xml:space="preserve" y="11">playlistId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,145.163,194)">
<text clip-path="url(#clipPath96)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,148.6435,194)">
<text clip-path="url(#clipPath97)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,196.2422,194)">
<text clip-path="url(#clipPath98)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,199.8193,194)">
<text clip-path="url(#clipPath99)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,284)">
<text clip-path="url(#clipPath100)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,284)">
<text clip-path="url(#clipPath101)" stroke="none" x="0" xml:space="preserve" y="11">existsPlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,92.29,284)">
<text clip-path="url(#clipPath102)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,95.8672,284)">
<text clip-path="url(#clipPath103)" stroke="none" x="0" xml:space="preserve" y="11">playlistId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,143.9653,284)">
<text clip-path="url(#clipPath104)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,147.4458,284)">
<text clip-path="url(#clipPath105)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,195.0444,284)">
<text clip-path="url(#clipPath106)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,198.6216,284)">
<text clip-path="url(#clipPath107)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,202.1021,284)">
<text clip-path="url(#clipPath108)" stroke="none" x="0" xml:space="preserve" y="11">boolean</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,209)">
<text clip-path="url(#clipPath109)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,209)">
<text clip-path="url(#clipPath110)" stroke="none" x="0" xml:space="preserve" y="11">editPlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,81.2524,209)">
<text clip-path="url(#clipPath111)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,84.8296,209)">
<text clip-path="url(#clipPath112)" stroke="none" x="0" xml:space="preserve" y="11">playlistId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,132.92770000000002,209)">
<text clip-path="url(#clipPath113)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,136.4082,209)">
<text clip-path="url(#clipPath114)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,184.0068,209)">
<text clip-path="url(#clipPath115)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,187.584,209)">
<text clip-path="url(#clipPath116)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,191.0645,209)">
<text clip-path="url(#clipPath117)" stroke="none" x="0" xml:space="preserve" y="11">Playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,224)">
<text clip-path="url(#clipPath118)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,224)">
<text clip-path="url(#clipPath119)" stroke="none" x="0" xml:space="preserve" y="11">savePlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,84.4106,224)">
<text clip-path="url(#clipPath120)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,87.9878,224)">
<text clip-path="url(#clipPath121)" stroke="none" x="0" xml:space="preserve" y="11">playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,125.99369999999999,224)">
<text clip-path="url(#clipPath122)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,129.4741,224)">
<text clip-path="url(#clipPath123)" stroke="none" x="0" xml:space="preserve" y="11">Playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,166.6367,224)">
<text clip-path="url(#clipPath124)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,170.2139,224)">
<text clip-path="url(#clipPath125)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,239)">
<text clip-path="url(#clipPath126)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,239)">
<text clip-path="url(#clipPath127)" stroke="none" x="0" xml:space="preserve" y="11">deletePlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,93.5093,239)">
<text clip-path="url(#clipPath128)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,97.0864,239)">
<text clip-path="url(#clipPath129)" stroke="none" x="0" xml:space="preserve" y="11">playlistId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,145.1845,239)">
<text clip-path="url(#clipPath130)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,148.665,239)">
<text clip-path="url(#clipPath131)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,196.2637,239)">
<text clip-path="url(#clipPath132)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,199.8408,239)">
<text clip-path="url(#clipPath133)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,254)">
<text clip-path="url(#clipPath134)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,254)">
<text clip-path="url(#clipPath135)" stroke="none" x="0" xml:space="preserve" y="11">accessPlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,95.5933,254)">
<text clip-path="url(#clipPath136)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,99.1704,254)">
<text clip-path="url(#clipPath137)" stroke="none" x="0" xml:space="preserve" y="11">playlistId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,147.26850000000002,254)">
<text clip-path="url(#clipPath138)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,150.749,254)">
<text clip-path="url(#clipPath139)" stroke="none" x="0" xml:space="preserve" y="11">UniqueId</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,198.3477,254)">
<text clip-path="url(#clipPath140)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,201.9248,254)">
<text clip-path="url(#clipPath141)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,205.4053,254)">
<text clip-path="url(#clipPath142)" stroke="none" x="0" xml:space="preserve" y="11">Playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,15,269)">
<text clip-path="url(#clipPath143)" stroke="none" x="0" xml:space="preserve" y="11">+</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,23.7441,269)">
<text clip-path="url(#clipPath144)" stroke="none" x="0" xml:space="preserve" y="11">releasePlaylist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,98.6548,269)">
<text clip-path="url(#clipPath145)" stroke="none" x="0" xml:space="preserve" y="11">(</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,102.2319,269)">
<text clip-path="url(#clipPath146)" stroke="none" x="0" xml:space="preserve" y="11">playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,140.2378,269)">
<text clip-path="url(#clipPath147)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,143.7182,269)">
<text clip-path="url(#clipPath148)" stroke="none" x="0" xml:space="preserve" y="11">Playlist</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,180.8809,269)">
<text clip-path="url(#clipPath149)" stroke="none" x="0" xml:space="preserve" y="11">)</text>
</g>
<g color-interpolation="linearRGB" color-rendering="optimizeQuality" font-family="sans-serif" font-size="11" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility" transform="matrix(1,0,0,1,184.458,269)">
<text clip-path="url(#clipPath150)" stroke="none" x="0" xml:space="preserve" y="11">:</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 84 KiB

View file

@ -1,195 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-85 10 L-85 132 L554 132 L554 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L639 122 L639 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-505 -10 L-505 112 L134 112 L134 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-511 -16 L-511 106 L128 106 L128 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-548.47412109375 -16 L-548.47412109375 106 L90.5259017944336 106 L90.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-551.95458984375 -16 L-551.95458984375 106 L87.04540252685547 106 L87.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-561.9937133789062 -75 L-561.9937133789062 47 L77.00630187988281 47 L77.00630187988281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-105 -10 L-105 112 L534 112 L534 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-12.40410041809082 -42 L-12.40410041809082 80 L626.5958862304688 80 L626.5958862304688 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-113.10140228271484 -42 L-113.10140228271484 80 L525.8986206054688 80 L525.8986206054688 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-116.58180236816406 -42 L-116.58180236816406 80 L522.418212890625 80 L522.418212890625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M561.9937133789062 75 L561.9937133789062 -47 L-77.00630187988281 -47 L-77.00630187988281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-231.50270080566406 -51 L-231.50270080566406 71 L407.497314453125 71 L407.497314453125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-236.9832000732422 -51 L-236.9832000732422 71 L402.0168151855469 71 L402.0168151855469 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-242.46359252929688 -51 L-242.46359252929688 71 L396.5364074707031 71 L396.5364074707031 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-315.4299011230469 -51 L-315.4299011230469 71 L323.5700988769531 71 L323.5700988769531 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-327.6545104980469 -51 L-327.6545104980469 71 L311.3454895019531 71 L311.3454895019531 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-393.697509765625 -51 L-393.697509765625 71 L245.30250549316406 71 L245.30250549316406 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-397.27459716796875 -51 L-397.27459716796875 71 L241.72540283203125 71 L241.72540283203125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-441.9137878417969 -51 L-441.9137878417969 71 L197.08619689941406 71 L197.08619689941406 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M561.9937133789062 110 L561.9937133789062 -12 L-77.00630187988281 -12 L-77.00630187988281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-193.0511016845703 -86 L-193.0511016845703 36 L445.94891357421875 36 L445.94891357421875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-198.53160095214844 -86 L-198.53160095214844 36 L440.4684143066406 36 L440.4684143066406 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-204.01199340820312 -86 L-204.01199340820312 36 L434.9880065917969 36 L434.9880065917969 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-342.1512145996094 -86 L-342.1512145996094 36 L296.8487854003906 36 L296.8487854003906 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-345.7283020019531 -86 L-345.7283020019531 36 L293.2716979980469 36 L293.2716979980469 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-406.47540283203125 -86 L-406.47540283203125 36 L232.52459716796875 36 L232.52459716796875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-409.955810546875 -86 L-409.955810546875 36 L229.04420471191406 36 L229.04420471191406 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-480.3655090332031 -86 L-480.3655090332031 36 L158.63450622558594 36 L158.63450622558594 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,505,10)">
<path d="M62.493648529052734 0.5 L62.493648529052734 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L123.48729705810547 0.5 L123.48729705810547 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,511,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,548.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,551.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,561.9937,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,105,10)">
<path d="M10.5 48.5 L10.5 101.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10.5 48.5 L10.5 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.4041,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">storage maintainer</text>
<line x1="0" y1="12.5" x2="100.697265625" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.1014,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,116.5818,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Storage maintainer</text>
<line x1="0" y1="12.5" x2="101.01416015625" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85,-10)">
<path d="M30 85 L476.99371337890625 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,0,0,-1,476.9937,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,476.9937,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,231.5027,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,236.9832,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,242.4636,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,315.42990000000003,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,327.6545,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,393.6975,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,397.2746,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,441.91380000000004,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85,-10)">
<path d="M30 120 L476.99371337890625 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,0,0,-1,476.9937,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,476.9937,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,193.05110000000002,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,198.53160000000003,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,204.01200000000003,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">updateAudioClipMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,342.1512,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,345.7283,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,406.47540000000004,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,409.95580000000007,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">newMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,480.3655,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because it is too large Load diff

View file

@ -1,476 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M80 60 L80 610 L699 610 L699 60 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 550 L619 550 L619 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 540 L609 540 L609 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-244.39329528808594 -12 L-244.39329528808594 538 L374.606689453125 538 L374.606689453125 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-264.881591796875 -12 L-264.881591796875 538 L354.118408203125 538 L354.118408203125 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-328.118408203125 -12 L-328.118408203125 538 L290.881591796875 538 L290.881591796875 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-258.3503112792969 -28 L-258.3503112792969 522 L360.6496887207031 522 L360.6496887207031 -28 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-190 -310 L-190 240 L429 240 L429 -310 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-198.341796875 -313 L-198.341796875 237 L420.658203125 237 L420.658203125 -313 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-191 -329 L-191 221 L428 221 L428 -329 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-191 -354 L-191 196 L428 196 L428 -354 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-60 -170 L-60 380 L559 380 L559 -170 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-82.25289916992188 -173 L-82.25289916992188 377 L536.7470703125 377 L536.7470703125 -173 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-61 -189 L-61 361 L558 361 L558 -189 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-65 -194 L-65 356 L554 356 L554 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-71.36470031738281 -194 L-71.36470031738281 356 L547.6353149414062 356 L547.6353149414062 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-81.4677963256836 -194 L-81.4677963256836 356 L537.5322265625 356 L537.5322265625 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-84.94819641113281 -194 L-84.94819641113281 356 L534.0518188476562 356 L534.0518188476562 -194 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-65 -209 L-65 341 L554 341 L554 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-71.36470031738281 -209 L-71.36470031738281 341 L547.6353149414062 341 L547.6353149414062 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-116.56790161132812 -209 L-116.56790161132812 341 L502.4320983886719 341 L502.4320983886719 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-120.04830169677734 -209 L-120.04830169677734 341 L498.9516906738281 341 L498.9516906738281 -209 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-61 -227 L-61 323 L558 323 L558 -227 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-280 -200 L-280 350 L339 350 L339 -200 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-303.2654113769531 -203 L-303.2654113769531 347 L315.7345886230469 347 L315.7345886230469 -203 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-281 -219 L-281 331 L338 331 L338 -219 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-281 -244 L-281 306 L338 306 L338 -244 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-420 -280 L-420 270 L199 270 L199 -280 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-430.181396484375 -283 L-430.181396484375 267 L188.818603515625 267 L188.818603515625 -283 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-421 -299 L-421 251 L198 251 L198 -299 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-421 -324 L-421 226 L198 226 L198 -324 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-460 -100 L-460 450 L159 450 L159 -100 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-468.56201171875 -103 L-468.56201171875 447 L150.43800354003906 447 L150.43800354003906 -103 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-461 -119 L-461 431 L158 431 L158 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-461 -144 L-461 406 L158 406 L158 -144 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M280 230 L280 -320 L-339 -320 L-339 230 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-179.82159423828125 -240 L-179.82159423828125 310 L439.17840576171875 310 L439.17840576171875 -240 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-10 -46 L-10 504 L609 504 L609 -46 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M460 170 L460 -380 L-159 -380 L-159 170 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-270.5014953613281 -147 L-270.5014953613281 403 L348.4985046386719 403 L348.4985046386719 -147 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-60 -60 L-60 490 L559 490 L559 -60 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-84.60279846191406 -63 L-84.60279846191406 487 L534.397216796875 487 L534.397216796875 -63 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-61 -79 L-61 471 L558 471 L558 -79 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-61 -104 L-61 446 L558 446 L558 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-130 70 L420 70 L420 -549 L-130 -549 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-80 -143 L-80 407 L539 407 L539 -143 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-40 -460 L-40 90 L579 90 L579 -460 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-43 -463 L-43 87 L576 87 L576 -463 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-41 -479 L-41 71 L578 71 L578 -479 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-41 -504 L-41 46 L578 46 L578 -504 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-430 -470 L-430 80 L189 80 L189 -470 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-441.255615234375 -473 L-441.255615234375 77 L177.74440002441406 77 L177.74440002441406 -473 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-431 -489 L-431 61 L188 61 L188 -489 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-431 -514 L-431 36 L188 36 L188 -514 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-266.71173095703125 330.7035827636719 L233.5723419189453 102.1957015991211 L-23.60288429260254 -460.8512878417969 L-523.886962890625 -232.34339904785156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-180.8258056640625 -418.4010925292969 L-180.8258056640625 131.59890747070312 L438.1741943359375 131.59890747070312 L438.1741943359375 -418.4010925292969 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-449.4296569824219 -162.828125 L-152.01296997070312 299.8200378417969 L368.676513671875 -34.908905029296875 L71.25983428955078 -497.55706787109375 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-308.3183898925781 -461.2716064453125 L-308.3183898925781 88.72840118408203 L310.6816101074219 88.72840118408203 L310.6816101074219 -461.2716064453125 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-354.1020202636719 303.1695251464844 L179.4763641357422 436.5641174316406 L329.6059265136719 -163.95408630371094 L-203.9724578857422 -297.3486633300781 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-326.389404296875 -343.7217102050781 L-326.389404296875 206.27830505371094 L292.610595703125 206.27830505371094 L292.610595703125 -343.7217102050781 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-350 460 L200 460 L200 -159 L-350 -159 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-469 -372.1017150878906 L-469 177.89830017089844 L150 177.89830017089844 L150 -372.1017150878906 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-170 550 L380 550 L380 -69 L-170 -69 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-549.8057861328125 -415.9023132324219 L-549.8057861328125 134.0977020263672 L69.19419860839844 134.0977020263672 L69.19419860839844 -415.9023132324219 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-253 80 L297 80 L297 -539 L-253 -539 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M-90 -349.5 L-90 200.5 L529 200.5 L529 -349.5 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M0.5 0.5 L569.5 0.5 L569.5 391.5 L0.5 391.5 Z" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,244.3933,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">&lt;&lt;</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,264.8816,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">component</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,328.1184,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">&gt;&gt;</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,258.3503,28)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath7)">Media archive</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,190,310)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath8)" />
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,198.3418,313)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">Authentication</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,191,329)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath10)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,191,354)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,60,170)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 82.5 L0.5 82.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L99.5 0.5 L99.5 82.5 L0.5 82.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82.2529,173)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">AudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,61,189)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath14)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,65,194)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">-</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,71.3647,194)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">id</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,81.4678,194)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,84.9482,194)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">UniqueId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,65,209)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">-</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,71.3647,209)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">duration</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,116.56790000000001,209)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,120.0483,209)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">Time</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,61,227)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath23)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath23)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,280,200)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath24)" />
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath24)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,303.2654,203)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">MetaData</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,281,219)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath26)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath26)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,281,244)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath27)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath27)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,420,280)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath28)" />
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath28)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,430.1814,283)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">SearchCriteria</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,421,299)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath30)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath30)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,421,324)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath31)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath31)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,460,100)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath32)" />
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath32)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,468.562,103)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">RawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,461,119)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath34)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath34)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,461,144)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath35)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath35)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-80,-60)">
<path d="M240 290 L360 290" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-0.9999999999999998,0,0,-0.9999999999999998,280,230)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath36)" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-0.9999999999999998,0,0,-0.9999999999999998,280,230)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath36)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,179.8216,240)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">Is described by</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,46)">
<path d="M150 124 L450 124" clip-path="url(#clipPath38)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-1,0,0,-1,460,170)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath39)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-1,0,0,-1,460,170)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath39)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,270.5015,147)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">Contains</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,60,60)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath41)" />
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath41)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,84.6028,63)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">UniqueId</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,61,79)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath43)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath43)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,61,104)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath44)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath44)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-80,-60)">
<path d="M150 230 L150 190" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(2.636779683484747E-16,1,-1,2.636779683484747E-16,70,130)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath45)" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(2.636779683484747E-16,1,-1,2.636779683484747E-16,70,130)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath45)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,80,143)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">Is identified by</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,40,460)">
<path d="M0.5 0.5 L112.95950317382812 0.5 L112.95950317382812 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath47)" />
<path d="M0.5 0.5 L112.95950317382812 0.5 L112.95950317382812 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath47)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,43,463)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">Archive maintainer</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,41,479)">
<path d="M0.5 0.5 L110.95947265625 0.5 L110.95947265625 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath49)" />
<path d="M0.5 0.5 L110.95947265625 0.5 L110.95947265625 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath49)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,41,504)">
<path d="M0.5 0.5 L110.95947265625 0.5 L110.95947265625 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath50)" />
<path d="M0.5 0.5 L110.95947265625 0.5 L110.95947265625 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath50)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,430,470)">
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath51)" />
<path d="M0.5 0.5 L99.5 0.5 L99.5 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath51)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,441.2556,473)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">Archive client</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,431,489)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath53)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath53)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,431,514)">
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath54)" />
<path d="M0.5 0.5 L97.5 0.5 L97.5 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath54)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-80,-60)">
<path d="M233.45950317382812 520 L270 440" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-0.4154688650136933,0.9096074000381889,-0.9096074000381889,-0.4154688650136933,190,380)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath55)" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-0.4154688650136933,0.9096074000381889,-0.9096074000381889,-0.4154688650136933,190,380)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath55)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,180.82580000000002,418.4011)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">Is authenticated by</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-80,-60)">
<path d="M510 530 L370 440" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0.8411784753765534,0.5407575913134987,-0.5407575913134987,0.8411784753765534,290,380)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath57)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0.8411784753765534,0.5407575913134987,-0.5407575913134987,0.8411784753765534,290,380)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath57)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,308.3184,461.27160000000003)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)">Is authenticated by</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-80,-60)">
<path d="M510 530 L460 330" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0.24253562503633286,0.9701425001453319,-0.9701425001453319,0.24253562503633286,380,270)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath59)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0.24253562503633286,0.9701425001453319,-0.9701425001453319,0.24253562503633286,380,270)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath59)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,326.3894,343.7217)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath60)">Searches in</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-80,-60)">
<path d="M540 530 L540 410" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(9.020562075079397E-16,1,-1,9.020562075079397E-16,460,350)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath61)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(9.020562075079397E-16,1,-1,9.020562075079397E-16,460,350)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath61)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,469,372.1017)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath62)">Searches by</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-80,-60)">
<path d="M610 530 L630 430 L630 230" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,550,170)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath63)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,550,170)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath63)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,549.8058,415.9023)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath64)">Downloads</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-80,-60)">
<path d="M160 520 L160 313" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,80,253)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" stroke="none" clip-path="url(#clipPath65)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(0,1,-1,0,80,253)">
<path d="M10 -5 L0 0 ZM10 5 L0 0 Z" clip-path="url(#clipPath65)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,90,349.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath66)">Manages</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 48 KiB

View file

@ -1,183 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-84 10 L-84 132 L567 132 L567 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L651 122 L651 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-104 -10 L-104 112 L547 112 L547 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.808600425720215 -42 L-12.808600425720215 80 L638.19140625 80 L638.19140625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-111.50240325927734 -42 L-111.50240325927734 80 L539.4976196289062 80 L539.4976196289062 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-114.98290252685547 -42 L-114.98290252685547 80 L536.01708984375 80 L536.01708984375 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-514 -10 L-514 112 L137 112 L137 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-520 -16 L-520 106 L131 106 L131 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-557.47412109375 -16 L-557.47412109375 106 L93.5259017944336 106 L93.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-560.95458984375 -16 L-560.95458984375 106 L90.04540252685547 106 L90.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-572.1270141601562 -75 L-572.1270141601562 47 L78.87300109863281 47 L78.87300109863281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M572.1270141601562 75 L572.1270141601562 -47 L-78.87300109863281 -47 L-78.87300109863281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-236.06939697265625 -51 L-236.06939697265625 71 L414.93060302734375 71 L414.93060302734375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-241.54989624023438 -51 L-241.54989624023438 71 L409.4501037597656 71 L409.4501037597656 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-247.03030395507812 -51 L-247.03030395507812 71 L403.9696960449219 71 L403.9696960449219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-319.9966125488281 -51 L-319.9966125488281 71 L331.0033874511719 71 L331.0033874511719 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-332.22119140625 -51 L-332.22119140625 71 L318.77880859375 71 L318.77880859375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-398.2641906738281 -51 L-398.2641906738281 71 L252.7357940673828 71 L252.7357940673828 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-401.84130859375 -51 L-401.84130859375 71 L249.15870666503906 71 L249.15870666503906 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-446.4804992675781 -51 L-446.4804992675781 71 L204.51950073242188 71 L204.51950073242188 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M572.1270141601562 110 L572.1270141601562 -12 L-78.87300109863281 -12 L-78.87300109863281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-261.24639892578125 -86 L-261.24639892578125 36 L389.75360107421875 36 L389.75360107421875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-266.7268981933594 -86 L-266.7268981933594 36 L384.2731018066406 36 L384.2731018066406 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-272.2073059082031 -86 L-272.2073059082031 36 L378.7926940917969 36 L378.7926940917969 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-356.97930908203125 -86 L-356.97930908203125 36 L294.02069091796875 36 L294.02069091796875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-360.556396484375 -86 L-360.556396484375 36 L290.443603515625 36 L290.443603515625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-421.3034973144531 -86 L-421.3034973144531 36 L229.69650268554688 36 L229.69650268554688 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,104,10)">
<path d="M10.5 48.5 L10.5 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.808599999999998,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">archive maintainer</text>
<line x1="0" y1="12.5" x2="98.69384765625" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,111.5024,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,114.9829,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Archive maintainer</text>
<line x1="0" y1="12.5" x2="100.20849609375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,514,10)">
<path d="M63.626949310302734 0.5 L63.626949310302734 101.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.626949310302734 0.5 L63.626949310302734 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,520,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,557.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,560.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,572.127,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,84,-10)">
<path d="M30 85 L488.12701416015625 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,488.127,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,488.127,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,236.0694,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,241.5499,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,247.0303,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,319.9966,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,332.2212,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,398.2642,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,401.84130000000005,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,446.4805,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,84,-10)">
<path d="M30 120 L488.12701416015625 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,488.127,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,488.127,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,261.2464,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,266.7269,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,272.2073,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">deleteAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,356.97929999999997,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,360.5564,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,421.3035,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

View file

@ -1,207 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-26 10 L-26 132 L627 132 L627 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L653 122 L653 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-516 -10 L-516 112 L137 112 L137 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-522 -16 L-522 106 L131 106 L131 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-559.47412109375 -16 L-559.47412109375 106 L93.5259017944336 106 L93.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-562.95458984375 -16 L-562.95458984375 106 L90.04540252685547 106 L90.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-574.1270141601562 -75 L-574.1270141601562 47 L78.87300109863281 47 L78.87300109863281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-76 -10 L-76 112 L577 112 L577 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-12.920900344848633 -42 L-12.920900344848633 80 L640.0791015625 80 L640.0791015625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-83.50240325927734 -42 L-83.50240325927734 80 L569.4976196289062 80 L569.4976196289062 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-86.98290252685547 -42 L-86.98290252685547 80 L566.01708984375 80 L566.01708984375 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M574.1270141601562 75 L574.1270141601562 -47 L-78.87300109863281 -47 L-78.87300109863281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-223.06939697265625 -51 L-223.06939697265625 71 L429.93060302734375 71 L429.93060302734375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-228.54989624023438 -51 L-228.54989624023438 71 L424.4501037597656 71 L424.4501037597656 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-234.03030395507812 -51 L-234.03030395507812 71 L418.9696960449219 71 L418.9696960449219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-306.9966125488281 -51 L-306.9966125488281 71 L346.0033874511719 71 L346.0033874511719 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-319.22119140625 -51 L-319.22119140625 71 L333.77880859375 71 L333.77880859375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-385.2641906738281 -51 L-385.2641906738281 71 L267.7358093261719 71 L267.7358093261719 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-388.84130859375 -51 L-388.84130859375 71 L264.15869140625 71 L264.15869140625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-433.4804992675781 -51 L-433.4804992675781 71 L219.51950073242188 71 L219.51950073242188 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M574.1270141601562 110 L574.1270141601562 -12 L-78.87300109863281 -12 L-78.87300109863281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-176.16900634765625 -86 L-176.16900634765625 36 L476.83099365234375 36 L476.83099365234375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-181.64950561523438 -86 L-181.64950561523438 36 L471.3504943847656 36 L471.3504943847656 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-187.12989807128906 -86 L-187.12989807128906 36 L465.8700866699219 36 L465.8700866699219 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-261.9599914550781 -86 L-261.9599914550781 36 L391.0400085449219 36 L391.0400085449219 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-274.1846008300781 -86 L-274.1846008300781 36 L378.8153991699219 36 L378.8153991699219 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-381.8804016113281 -86 L-381.8804016113281 36 L271.1195983886719 36 L271.1195983886719 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-385.4574890136719 -86 L-385.4574890136719 36 L267.5425109863281 36 L267.5425109863281 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-446.20458984375 -86 L-446.20458984375 36 L206.79539489746094 36 L206.79539489746094 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-449.6850891113281 -86 L-449.6850891113281 36 L203.3148956298828 36 L203.3148956298828 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-480.3808898925781 -86 L-480.3808898925781 36 L172.6190948486328 36 L172.6190948486328 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,516,10)">
<path d="M63.626949310302734 0.5 L63.626949310302734 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,522,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,559.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,562.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,574.127,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,76,10)">
<path d="M10.5 48.5 L10.5 101.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10.5 48.5 L10.5 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.920900000000003,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">archive client</text>
<line x1="0" y1="12.5" x2="70.58154296875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,83.50240000000001,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,86.9829,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Archive client</text>
<line x1="0" y1="12.5" x2="72.09619140625" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,26,-10)">
<path d="M60 85 L548.1270141601562 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,-1.0547118733938987E-15,1.0547118733938987E-15,-1,548.127,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,-1.0547118733938987E-15,1.0547118733938987E-15,-1,548.127,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,223.0694,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,228.5499,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,234.0303,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authneticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,306.9966,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,319.2212,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,385.2642,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,388.84130000000005,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,433.4805,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,26,-10)">
<path d="M60 120 L548.1270141601562 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,2.942091015256665E-15,-2.942091015256665E-15,-1,548.127,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,2.942091015256665E-15,-2.942091015256665E-15,-1,548.127,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,176.169,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,181.64950000000002,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,187.12990000000002,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">rawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,261.96000000000004,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,274.18460000000005,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">downloadAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,381.8804,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,385.4575,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,446.2046,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,449.68510000000003,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">offset</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,480.3809,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View file

@ -1,143 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M24 80 L24 540 L430 540 L430 80 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 460 L406 460 L406 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-36 -130 L-36 330 L370 330 L370 -130 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-10.89579963684082 -215 L-10.89579963684082 245 L395.10418701171875 245 L395.10418701171875 -215 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-156 -10 L-156 450 L250 450 L250 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-158 -12 L-158 448 L248 448 L248 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-156 -27 L-156 433 L250 433 L250 -27 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-196 -220 L-196 240 L210 240 L210 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-223.31509399414062 -229.45590209960938 L-223.31509399414062 230.54409790039062 L182.68490600585938 230.54409790039062 L182.68490600585938 -229.45590209960938 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-176 -370 L-176 90 L230 90 L230 -370 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-209.38099670410156 -386 L-209.38099670410156 74 L196.61900329589844 74 L196.61900329589844 -386 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-186 -140 L-186 320 L220 320 L220 -140 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-217.15280151367188 -156 L-217.15280151367188 304 L188.84719848632812 304 L188.84719848632812 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-196 -300 L-196 160 L210 160 L210 -300 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-223.9824981689453 -309.4559020996094 L-223.9824981689453 150.54409790039062 L182.0175018310547 150.54409790039062 L182.0175018310547 -309.4559020996094 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-186 -60 L-186 400 L220 400 L220 -60 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-215.40530395507812 -69.45590209960938 L-215.40530395507812 390.5440979003906 L190.59469604492188 390.5440979003906 L190.59469604492188 -69.45590209960938 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-46 -310 L-46 150 L360 150 L360 -310 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-34.951900482177734 -395 L-34.951900482177734 65 L371.048095703125 65 L371.048095703125 -395 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,36,130)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10.895800000000001,215)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">Archive maintainer</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,156,10)">
<path d="M0.5 0.5 L143.11619567871094 0.5 L143.11619567871094 17.5 L0.5 17.5 Z" stroke="none" clip-path="url(#clipPath5)" />
<path d="M0.5 0.5 L143.11619567871094 0.5 L143.11619567871094 17.5 L0.5 17.5 Z" stroke="black" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,158,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">LiveSupport Media archive</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,156,27)">
<path d="M0.5 0.5 L239.5 0.5 L239.5 422.5 L0.5 422.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L239.5 0.5 L239.5 422.5 L0.5 422.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<ellipse cx="79.6027" cy="25.45585" rx="79.6027" ry="25.45585" stroke="none" clip-path="url(#clipPath8)" transform="matrix(1,0,0,1,40,193)" />
<ellipse cx="79.6027" cy="25.45585" rx="79.6027" ry="25.45585" stroke="black" clip-path="url(#clipPath8)" fill="none" transform="matrix(1,0,0,1,40,193)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,223.3151,229.45589999999999)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">UC-3 Update Audio</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">clip metadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,176,370)">
<ellipse cx="100.31285" cy="25" rx="100.31285" ry="25" stroke="none" clip-path="url(#clipPath10)" />
<ellipse cx="100.31285" cy="25" rx="100.31285" ry="25" stroke="black" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,209.381,386)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">UC-5 Search in metadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,186,140)">
<ellipse cx="92.70555" cy="25" rx="92.70555" ry="25" stroke="none" clip-path="url(#clipPath12)" />
<ellipse cx="92.70555" cy="25" rx="92.70555" ry="25" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,217.1528,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">UC-2 Delete Audio clip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,196,300)">
<ellipse cx="81.88145" cy="25.45585" rx="81.88145" ry="25.45585" stroke="none" clip-path="url(#clipPath14)" />
<ellipse cx="81.88145" cy="25.45585" rx="81.88145" ry="25.45585" stroke="black" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,223.98250000000002,309.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">UC-4 Download raw</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">audio data</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,186,60)">
<ellipse cx="86.739" cy="25.45585" rx="86.739" ry="25.45585" stroke="none" clip-path="url(#clipPath16)" />
<ellipse cx="86.739" cy="25.45585" rx="86.739" ry="25.45585" stroke="black" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,215.4053,69.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">UC-1 Store or update</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">Audio clip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-24,-80)">
<path d="M110 210 L210.6280059814453 168.5135040283203" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-24,-80)">
<path d="M110 245 L210 245" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-24,-80)">
<path d="M138.1042938232422 298.4114074707031 L220.3621063232422 323.0306091308594" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,46,310)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath18)" />
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="black" clip-path="url(#clipPath18)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,34.9519,395)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">Archive client</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-24,-80)">
<path d="M120 405.4559020996094 L220 405.4559020996094" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-24,-80)">
<path d="M120 470 L200.010498046875 474.6387939453125" clip-path="url(#clipPath1)" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

View file

@ -1,195 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-56 10 L-56 132 L617 132 L617 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L673 122 L673 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-536 -10 L-536 112 L137 112 L137 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-542 -16 L-542 106 L131 106 L131 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-579.47412109375 -16 L-579.47412109375 106 L93.5259017944336 106 L93.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-582.95458984375 -16 L-582.95458984375 106 L90.04540252685547 106 L90.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-594.1270141601562 -75 L-594.1270141601562 47 L78.87300109863281 47 L78.87300109863281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-76 -10 L-76 112 L597 112 L597 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-12.920900344848633 -42 L-12.920900344848633 80 L660.0791015625 80 L660.0791015625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-83.50240325927734 -42 L-83.50240325927734 80 L589.4976196289062 80 L589.4976196289062 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-86.98290252685547 -42 L-86.98290252685547 80 L586.01708984375 80 L586.01708984375 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M594.1270141601562 75 L594.1270141601562 -47 L-78.87300109863281 -47 L-78.87300109863281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-233.06939697265625 -51 L-233.06939697265625 71 L439.93060302734375 71 L439.93060302734375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-238.54989624023438 -51 L-238.54989624023438 71 L434.4501037597656 71 L434.4501037597656 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-244.03030395507812 -51 L-244.03030395507812 71 L428.9696960449219 71 L428.9696960449219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-316.9966125488281 -51 L-316.9966125488281 71 L356.0033874511719 71 L356.0033874511719 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-329.22119140625 -51 L-329.22119140625 71 L343.77880859375 71 L343.77880859375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-395.2641906738281 -51 L-395.2641906738281 71 L277.7358093261719 71 L277.7358093261719 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-398.84130859375 -51 L-398.84130859375 71 L274.15869140625 71 L274.15869140625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-443.4804992675781 -51 L-443.4804992675781 71 L229.51950073242188 71 L229.51950073242188 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M594.1270141601562 110 L594.1270141601562 -12 L-78.87300109863281 -12 L-78.87300109863281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-231.18409729003906 -86 L-231.18409729003906 36 L441.8158874511719 36 L441.8158874511719 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-236.6645965576172 -86 L-236.6645965576172 36 L436.33538818359375 36 L436.33538818359375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-242.14500427246094 -86 L-242.14500427246094 36 L430.8550109863281 36 L430.8550109863281 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-308.49951171875 -86 L-308.49951171875 36 L364.50048828125 36 L364.50048828125 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-320.7240905761719 -86 L-320.7240905761719 36 L352.2759094238281 36 L352.2759094238281 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-404.4755859375 -86 L-404.4755859375 36 L268.5244140625 36 L268.5244140625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-408.0527038574219 -86 L-408.0527038574219 36 L264.9472961425781 36 L264.9472961425781 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-445.3656921386719 -86 L-445.3656921386719 36 L227.63429260253906 36 L227.63429260253906 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,536,10)">
<path d="M63.626949310302734 0.5 L63.626949310302734 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,542,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,579.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,582.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,594.127,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,76,10)">
<path d="M10.5 48.5 L10.5 101.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10.5 48.5 L10.5 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.920900000000003,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">archive client</text>
<line x1="0" y1="12.5" x2="70.58154296875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,83.50240000000001,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,86.9829,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Archive client</text>
<line x1="0" y1="12.5" x2="72.09619140625" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,56,-10)">
<path d="M30 85 L538.1270141601562 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,538.127,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,538.127,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,233.0694,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,238.5499,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,244.0303,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,316.9966,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,329.2212,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,395.2642,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,398.84130000000005,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,443.4805,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,56,-10)">
<path d="M30 120 L538.1270141601562 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,538.127,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,538.127,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,231.1841,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,236.6646,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,242.145,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">audioClipIds</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,308.4995,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,320.7241,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">searchMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,404.4756,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408.0527,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">criteria</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,445.3657,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,195 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-34 10 L-34 132 L587 132 L587 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L621 122 L621 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-104 -10 L-104 112 L517 112 L517 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.808600425720215 -42 L-12.808600425720215 80 L608.19140625 80 L608.19140625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-111.50240325927734 -42 L-111.50240325927734 80 L509.4975891113281 80 L509.4975891113281 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-114.98290252685547 -42 L-114.98290252685547 80 L506.01708984375 80 L506.01708984375 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-484 -10 L-484 112 L137 112 L137 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-490 -16 L-490 106 L131 106 L131 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-527.47412109375 -16 L-527.47412109375 106 L93.5259017944336 106 L93.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-530.95458984375 -16 L-530.95458984375 106 L90.04540252685547 106 L90.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-542.1270141601562 -75 L-542.1270141601562 47 L78.87300109863281 47 L78.87300109863281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M542.1270141601562 75 L542.1270141601562 -47 L-78.87300109863281 -47 L-78.87300109863281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-226.4217071533203 -51 L-226.4217071533203 71 L394.57830810546875 71 L394.57830810546875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-231.90220642089844 -51 L-231.90220642089844 71 L389.0978088378906 71 L389.0978088378906 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-237.38259887695312 -51 L-237.38259887695312 71 L383.6174011230469 71 L383.6174011230469 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-310.3489074707031 -51 L-310.3489074707031 71 L310.6510925292969 71 L310.6510925292969 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-322.573486328125 -51 L-322.573486328125 71 L298.426513671875 71 L298.426513671875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-388.6164855957031 -51 L-388.6164855957031 71 L232.3834991455078 71 L232.3834991455078 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-392.193603515625 -51 L-392.193603515625 71 L228.806396484375 71 L228.806396484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-426.1282043457031 -51 L-426.1282043457031 71 L194.87179565429688 71 L194.87179565429688 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M542.1270141601562 110 L542.1270141601562 -12 L-78.87300109863281 -12 L-78.87300109863281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-217.5540008544922 -86 L-217.5540008544922 36 L403.4460144042969 36 L403.4460144042969 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-223.0345001220703 -86 L-223.0345001220703 36 L397.96551513671875 36 L397.96551513671875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-228.514892578125 -86 L-228.514892578125 36 L392.485107421875 36 L392.485107421875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-289.2619934082031 -86 L-289.2619934082031 36 L331.7380065917969 36 L331.7380065917969 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-301.4866027832031 -86 L-301.4866027832031 36 L319.5133972167969 36 L319.5133972167969 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-380.7638854980469 -86 L-380.7638854980469 36 L240.23609924316406 36 L240.23609924316406 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-384.3410949707031 -86 L-384.3410949707031 36 L236.65890502929688 36 L236.65890502929688 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-434.99591064453125 -86 L-434.99591064453125 36 L186.0041046142578 36 L186.0041046142578 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,104,10)">
<path d="M10.5 48.5 L10.5 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.808599999999998,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">archive maintainer</text>
<line x1="0" y1="12.5" x2="98.69384765625" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,111.5024,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,114.9829,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Archive maintainer</text>
<line x1="0" y1="12.5" x2="100.20849609375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,484,10)">
<path d="M63.626949310302734 0.5 L63.626949310302734 101.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.626949310302734 0.5 L63.626949310302734 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,490,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,527.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,530.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,542.127,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,34,-10)">
<path d="M80 85 L508.12701416015625 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,2.1649348980190553E-15,-2.1649348980190553E-15,-1,508.127,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,2.1649348980190553E-15,-2.1649348980190553E-15,-1,508.127,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,226.4217,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,231.9022,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,237.3826,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,310.3489,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,322.57349999999997,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,388.6165,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,392.1936,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,426.1282,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,34,-10)">
<path d="M80 120 L508.12701416015625 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,1.5543122344752192E-15,-1.5543122344752192E-15,-1,508.127,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,1.5543122344752192E-15,-1.5543122344752192E-15,-1,508.127,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,217.554,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,223.0345,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,228.5149,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,289.262,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,301.4866,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">storeAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,380.76390000000004,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,384.3411,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,434.9959,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,469 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M10 10 L10 188 L460 188 L460 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 178 L450 178 L450 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 168 L440 168 L440 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-185.54029846191406 -13 L-185.54029846191406 165 L264.4596862792969 165 L264.4596862792969 -13 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-11 -29 L-11 149 L439 149 L439 -29 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-11 -54 L-11 124 L439 124 L439 -54 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-15 -59 L-15 119 L435 119 L435 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-23.74410057067871 -59 L-23.74410057067871 119 L426.2558898925781 119 L426.2558898925781 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-89.78710174560547 -59 L-89.78710174560547 119 L360.212890625 119 L360.212890625 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-93.36430358886719 -59 L-93.36430358886719 119 L356.6357116699219 119 L356.6357116699219 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-190.83889770507812 -59 L-190.83889770507812 119 L259.1611022949219 119 L259.1611022949219 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-194.31939697265625 -59 L-194.31939697265625 119 L255.68060302734375 119 L255.68060302734375 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-293.30859375 -59 L-293.30859375 119 L156.69140625 119 L156.69140625 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-296.8857116699219 -59 L-296.8857116699219 119 L153.1143035888672 119 L153.1143035888672 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-300.3662109375 -59 L-300.3662109375 119 L149.63380432128906 119 L149.63380432128906 -59 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-15 -74 L-15 104 L435 104 L435 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-23.74410057067871 -74 L-23.74410057067871 104 L426.2558898925781 104 L426.2558898925781 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-116.28810119628906 -74 L-116.28810119628906 104 L333.7119140625 104 L333.7119140625 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-119.86519622802734 -74 L-119.86519622802734 104 L330.1347961425781 104 L330.1347961425781 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-180.6123046875 -74 L-180.6123046875 104 L269.3876953125 104 L269.3876953125 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-184.0926971435547 -74 L-184.0926971435547 104 L265.90728759765625 104 L265.90728759765625 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-187.5731964111328 -74 L-187.5731964111328 104 L262.4267883300781 104 L262.4267883300781 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-191.15040588378906 -74 L-191.15040588378906 104 L258.849609375 104 L258.849609375 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-194.6309051513672 -74 L-194.6309051513672 104 L255.3690948486328 104 L255.3690948486328 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-15 -89 L-15 89 L435 89 L435 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-23.74410057067871 -89 L-23.74410057067871 89 L426.2558898925781 89 L426.2558898925781 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-103.02149963378906 -89 L-103.02149963378906 89 L346.9784851074219 89 L346.9784851074219 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-106.59860229492188 -89 L-106.59860229492188 89 L343.4013977050781 89 L343.4013977050781 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-157.25340270996094 -89 L-157.25340270996094 89 L292.7466125488281 89 L292.7466125488281 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-160.73390197753906 -89 L-160.73390197753906 89 L289.26611328125 89 L289.26611328125 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-212.90330505371094 -89 L-212.90330505371094 89 L237.09669494628906 89 L237.09669494628906 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-216.48049926757812 -89 L-216.48049926757812 89 L233.51950073242188 89 L233.51950073242188 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-219.96090698242188 -89 L-219.96090698242188 89 L230.03909301757812 89 L230.03909301757812 -89 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-15 -104 L-15 74 L435 74 L435 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-23.74410057067871 -104 L-23.74410057067871 74 L426.2558898925781 74 L426.2558898925781 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-108.51609802246094 -104 L-108.51609802246094 74 L341.48388671875 74 L341.48388671875 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-112.09329986572266 -104 L-112.09329986572266 74 L337.9067077636719 74 L337.9067077636719 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-172.84039306640625 -104 L-172.84039306640625 74 L277.15960693359375 74 L277.15960693359375 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-176.32080078125 -104 L-176.32080078125 74 L273.67919921875 74 L273.67919921875 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-223.91940307617188 -104 L-223.91940307617188 74 L226.08059692382812 74 L226.08059692382812 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-227.49659729003906 -104 L-227.49659729003906 74 L222.50340270996094 74 L222.50340270996094 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-230.9770965576172 -104 L-230.9770965576172 74 L219.0229034423828 74 L219.0229034423828 -104 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-15 -119 L-15 59 L435 59 L435 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-23.74410057067871 -119 L-23.74410057067871 59 L426.2558898925781 59 L426.2558898925781 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-161.88330078125 -119 L-161.88330078125 59 L288.11669921875 59 L288.11669921875 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-165.4604034423828 -119 L-165.4604034423828 59 L284.53961181640625 59 L284.53961181640625 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-226.20750427246094 -119 L-226.20750427246094 59 L223.79249572753906 59 L223.79249572753906 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-229.68789672851562 -119 L-229.68789672851562 59 L220.31210327148438 59 L220.31210327148438 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-277.2865905761719 -119 L-277.2865905761719 59 L172.71339416503906 59 L172.71339416503906 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-280.76708984375 -119 L-280.76708984375 59 L169.23289489746094 59 L169.23289489746094 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-351.1767883300781 -119 L-351.1767883300781 59 L98.82319641113281 59 L98.82319641113281 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-354.6571960449219 -119 L-354.6571960449219 59 L95.3427963256836 59 L95.3427963256836 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-404.95208740234375 -119 L-404.95208740234375 59 L45.04790115356445 59 L45.04790115356445 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-408.529296875 -119 L-408.529296875 59 L41.470699310302734 59 L41.470699310302734 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-412.0097961425781 -119 L-412.0097961425781 59 L37.99020004272461 59 L37.99020004272461 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-15 -134 L-15 44 L435 44 L435 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-23.74410057067871 -134 L-23.74410057067871 44 L426.2558898925781 44 L426.2558898925781 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-131.4398956298828 -134 L-131.4398956298828 44 L318.5600891113281 44 L318.5600891113281 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-135.01710510253906 -134 L-135.01710510253906 44 L314.98291015625 44 L314.98291015625 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-195.7642059326172 -134 L-195.7642059326172 44 L254.2357940673828 44 L254.2357940673828 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-199.24459838867188 -134 L-199.24459838867188 44 L250.75540161132812 44 L250.75540161132812 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-246.8433074951172 -134 L-246.8433074951172 44 L203.1566925048828 44 L203.1566925048828 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-250.32369995117188 -134 L-250.32369995117188 44 L199.67630004882812 44 L199.67630004882812 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-281.0195007324219 -134 L-281.0195007324219 44 L168.98049926757812 44 L168.98049926757812 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-284.5 -134 L-284.5 44 L165.5 44 L165.5 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M-298.62060546875 -134 L-298.62060546875 44 L151.37939453125 44 L151.37939453125 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-302.19781494140625 -134 L-302.19781494140625 44 L147.8022003173828 44 L147.8022003173828 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
<path d="M-305.6781921386719 -134 L-305.6781921386719 44 L144.32179260253906 44 L144.32179260253906 -134 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
<path d="M-15 -149 L-15 29 L435 29 L435 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
<path d="M-23.74410057067871 -149 L-23.74410057067871 29 L426.2558898925781 29 L426.2558898925781 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
<path d="M-107.49559783935547 -149 L-107.49559783935547 29 L342.50439453125 29 L342.50439453125 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
<path d="M-111.07279968261719 -149 L-111.07279968261719 29 L338.92718505859375 29 L338.92718505859375 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
<path d="M-148.38580322265625 -149 L-148.38580322265625 29 L301.61419677734375 29 L301.61419677734375 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
<path d="M-151.86630249023438 -149 L-151.86630249023438 29 L298.1336975097656 29 L298.1336975097656 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath75">
<path d="M-226.24510192871094 -149 L-226.24510192871094 29 L223.75489807128906 29 L223.75489807128906 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath76">
<path d="M-229.82229614257812 -149 L-229.82229614257812 29 L220.17770385742188 29 L220.17770385742188 -149 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath77">
<path d="M-233.30270385742188 -149 L-233.30270385742188 29 L216.69729614257812 29 L216.69729614257812 -149 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M0.5 0.5 L429.06298828125 0.5 L429.06298828125 157.5 L0.5 157.5 Z" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,185.5403,13)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">Media archive</text>
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,11,29)">
<path d="M0.5 0.5 L427.06298828125 0.5 L427.06298828125 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath5)" />
<path d="M0.5 0.5 L427.06298828125 0.5 L427.06298828125 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" font-weight="bold" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,11,54)">
<path d="M0.5 0.5 L427.06298828125 0.5 L427.06298828125 0.5 L0.5 0.5 Z" stroke="none" clip-path="url(#clipPath6)" />
<path d="M0.5 0.5 L427.06298828125 0.5 L427.06298828125 0.5 L0.5 0.5 Z" stroke="black" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,15,59)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath7)">+</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,23.7441,59)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,89.7871,59)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,93.3643,59)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">authenticationInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,190.8389,59)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,194.3194,59)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath12)">AuthenticationInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,293.3086,59)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,296.8857,59)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300.3662,59)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">boolean</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,15,74)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">+</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,23.7441,74)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">retrieveAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,116.2881,74)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,119.8652,74)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,180.6123,74)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,184.0927,74)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,187.5732,74)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,191.1504,74)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,194.6309,74)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,15,89)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">+</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,23.7441,89)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">storeAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,103.0215,89)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,106.5986,89)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,157.2534,89)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160.7339,89)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">AudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,212.9033,89)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,216.4805,89)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,219.9609,89)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">UniqueId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,15,104)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">+</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,23.7441,104)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">deleteAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,108.5161,104)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,112.0933,104)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,172.8404,104)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,176.32080000000002,104)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">UniqueId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,223.9194,104)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,227.4966,104)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,230.9771,104)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">void</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,15,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">+</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,23.7441,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">updateAudioClipMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,161.8833,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,165.4604,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,226.20749999999998,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,229.6879,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">UniqueId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,277.2866,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,280.7671,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">newMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,351.1768,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,354.65720000000005,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">MetaData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,404.9521,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408.5293,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,412.0098,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">void</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,15,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">+</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,23.7441,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath57)">downloadAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,131.4399,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,135.0171,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath59)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,195.76420000000002,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath60)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,199.2446,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath61)">UniqueId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,246.8433,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath62)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,250.3237,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath63)">offset</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,281.0195,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath64)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,284.5,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath65)">int</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,298.6206,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath66)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,302.1978,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath67)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,305.6782,134)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath68)">RawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,15,149)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath69)">+</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,23.7441,149)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath70)">searchMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,107.4956,149)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath71)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,111.0728,149)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath72)">criteria</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,148.38580000000002,149)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath73)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,151.8663,149)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath74)">SearchCriteria</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,226.2451,149)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath75)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,229.8223,149)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath76)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,233.3027,149)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath77)">UniqueId</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 43 KiB

View file

@ -1,195 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-84 10 L-84 132 L647 132 L647 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L731 122 L731 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-594 -10 L-594 112 L137 112 L137 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-600 -16 L-600 106 L131 106 L131 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-637.47412109375 -16 L-637.47412109375 106 L93.5259017944336 106 L93.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-640.95458984375 -16 L-640.95458984375 106 L90.04540252685547 106 L90.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-652.1270141601562 -75 L-652.1270141601562 47 L78.87300109863281 47 L78.87300109863281 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-104 -10 L-104 112 L627 112 L627 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-12.808600425720215 -42 L-12.808600425720215 80 L718.19140625 80 L718.19140625 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-111.50240325927734 -42 L-111.50240325927734 80 L619.4976196289062 80 L619.4976196289062 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-114.98290252685547 -42 L-114.98290252685547 80 L616.01708984375 80 L616.01708984375 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M652.1270141601562 75 L652.1270141601562 -47 L-78.87300109863281 -47 L-78.87300109863281 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-275.3121032714844 -51 L-275.3121032714844 71 L455.6878967285156 71 L455.6878967285156 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-280.7926025390625 -51 L-280.7926025390625 71 L450.2073974609375 71 L450.2073974609375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-286.27301025390625 -51 L-286.27301025390625 71 L444.72698974609375 71 L444.72698974609375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-359.2392883300781 -51 L-359.2392883300781 71 L371.7607116699219 71 L371.7607116699219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-371.4638977050781 -51 L-371.4638977050781 71 L359.5361022949219 71 L359.5361022949219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-437.50689697265625 -51 L-437.50689697265625 71 L293.49310302734375 71 L293.49310302734375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-441.0840148925781 -51 L-441.0840148925781 71 L289.9159851074219 71 L289.9159851074219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-487.23779296875 -51 L-487.23779296875 71 L243.76220703125 71 L243.76220703125 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M652.1270141601562 110 L652.1270141601562 -12 L-78.87300109863281 -12 L-78.87300109863281 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-237.61770629882812 -86 L-237.61770629882812 36 L493.3822937011719 36 L493.3822937011719 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-243.09820556640625 -86 L-243.09820556640625 36 L487.90179443359375 36 L487.90179443359375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-248.57859802246094 -86 L-248.57859802246094 36 L482.42138671875 36 L482.42138671875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-386.7178039550781 -86 L-386.7178039550781 36 L344.2821960449219 36 L344.2821960449219 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-390.2948913574219 -86 L-390.2948913574219 36 L340.7051086425781 36 L340.7051086425781 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-451.0419921875 -86 L-451.0419921875 36 L279.9580078125 36 L279.9580078125 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-454.52239990234375 -86 L-454.52239990234375 36 L276.47760009765625 36 L276.47760009765625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-524.93212890625 -86 L-524.93212890625 36 L206.06790161132812 36 L206.06790161132812 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,594,10)">
<path d="M63.626949310302734 0.5 L63.626949310302734 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L125.75389862060547 0.5 L125.75389862060547 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,600,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,637.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,640.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,652.127,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,104,10)">
<path d="M10.5 48.5 L10.5 101.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10.5 48.5 L10.5 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.808599999999998,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">archive maintainer</text>
<line x1="0" y1="12.5" x2="98.69384765625" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,111.5024,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,114.9829,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Archive maintainer</text>
<line x1="0" y1="12.5" x2="100.20849609375" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,84,-10)">
<path d="M30 85 L568.1270141601562 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,568.127,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,568.127,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,275.3121,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,280.7926,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,286.27299999999997,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,359.23929999999996,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,371.46389999999997,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,437.5069,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,441.08399999999995,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">AuthInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,487.2378,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,84,-10)">
<path d="M30 120 L568.1270141601562 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,568.127,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,568.127,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,237.6177,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,243.09820000000002,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,248.57860000000002,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">updateAudioClipMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,386.7178,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,390.2949,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,451.04200000000003,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,454.52240000000006,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">newMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,524.9321,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because it is too large Load diff

View file

@ -1,388 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 252 L715 252 L715 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 242 L797 242 L797 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 232 L695 232 L695 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 200 L784.5828247070312 200 L784.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 200 L686.7161254882812 200 L686.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 200 L683.235595703125 200 L683.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-107 -211 L-107 31 L690 31 L690 -211 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-362 -10 L-362 232 L435 232 L435 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-368 -16 L-368 226 L429 226 L429 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-405.4740905761719 -16 L-405.4740905761719 226 L391.5259094238281 226 L391.5259094238281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-408.95458984375 -16 L-408.95458984375 226 L388.04541015625 226 L388.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-419.6005859375 -75 L-419.6005859375 167 L377.3994140625 167 L377.3994140625 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-632 -10 L-632 232 L165 232 L165 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-638 -16 L-638 226 L159 226 L159 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-706.3472290039062 -16 L-706.3472290039062 226 L90.65280151367188 226 L90.65280151367188 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-709.8275756835938 -16 L-709.8275756835938 226 L87.17240142822266 226 L87.17240142822266 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-704.43017578125 -141 L-704.43017578125 101 L92.5698013305664 101 L92.5698013305664 -141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-117 -211 L-117 31 L680 31 L680 -211 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-216.75709533691406 -187 L-216.75709533691406 55 L580.242919921875 55 L580.242919921875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-222.2375946044922 -187 L-222.2375946044922 55 L574.7623901367188 55 L574.7623901367188 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-227.71800231933594 -187 L-227.71800231933594 55 L569.281982421875 55 L569.281982421875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M419.6005859375 75 L419.6005859375 -167 L-377.3994140625 -167 L-377.3994140625 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-158.8061981201172 -51 L-158.8061981201172 191 L638.1937866210938 191 L638.1937866210938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-164.2866973876953 -51 L-164.2866973876953 191 L632.7133178710938 191 L632.7133178710938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-169.76710510253906 -51 L-169.76710510253906 191 L627.23291015625 191 L627.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-242.7333984375 -51 L-242.7333984375 191 L554.2666015625 191 L554.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-254.95799255371094 -51 L-254.95799255371094 191 L542.0419921875 191 L542.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-321.0010070800781 -51 L-321.0010070800781 191 L475.9989929199219 191 L475.9989929199219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-324.5780944824219 -51 L-324.5780944824219 191 L472.4219055175781 191 L472.4219055175781 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-369.21728515625 -51 L-369.21728515625 191 L427.78271484375 191 L427.78271484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M419.6005859375 110 L419.6005859375 -132 L-377.3994140625 -132 L-377.3994140625 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-119.51129913330078 -86 L-119.51129913330078 156 L677.4887084960938 156 L677.4887084960938 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-124.9917984008789 -86 L-124.9917984008789 156 L672.0081787109375 156 L672.0081787109375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-130.47219848632812 -86 L-130.47219848632812 156 L666.5277709960938 156 L666.5277709960938 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-191.21929931640625 -86 L-191.21929931640625 156 L605.7807006835938 156 L605.7807006835938 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-203.4438934326172 -86 L-203.4438934326172 156 L593.5560913085938 156 L593.5560913085938 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-275.5346984863281 -86 L-275.5346984863281 156 L521.4652709960938 156 L521.4652709960938 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-279.1117858886719 -86 L-279.1117858886719 156 L517.88818359375 156 L517.88818359375 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-353.94189453125 -86 L-353.94189453125 156 L443.05810546875 156 L443.05810546875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-357.4223937988281 -86 L-357.4223937988281 156 L439.5776062011719 156 L439.5776062011719 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-408.51220703125 -86 L-408.51220703125 156 L388.48779296875 156 L388.48779296875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M704.43017578125 141 L704.43017578125 -101 L-92.5698013305664 -101 L-92.5698013305664 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-460.02130126953125 -117 L-460.02130126953125 125 L336.97869873046875 125 L336.97869873046875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-465.5018005371094 -117 L-465.5018005371094 125 L331.4981994628906 125 L331.4981994628906 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-470.9822082519531 -117 L-470.9822082519531 125 L326.0177917480469 125 L326.0177917480469 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-543.948486328125 -117 L-543.948486328125 125 L253.05149841308594 125 L253.05149841308594 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-556.173095703125 -117 L-556.173095703125 125 L240.826904296875 125 L240.826904296875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-622.2161254882812 -117 L-622.2161254882812 125 L174.78390502929688 125 L174.78390502929688 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-625.793212890625 -117 L-625.793212890625 125 L171.20680236816406 125 L171.20680236816406 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-670.432373046875 -117 L-670.432373046875 125 L126.56759643554688 125 L126.56759643554688 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M704.43017578125 176 L704.43017578125 -66 L-92.5698013305664 -66 L-92.5698013305664 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-454.0058898925781 -152 L-454.0058898925781 90 L342.9941101074219 90 L342.9941101074219 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-459.48638916015625 -152 L-459.48638916015625 90 L337.51361083984375 90 L337.51361083984375 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-464.966796875 -152 L-464.966796875 90 L332.033203125 90 L332.033203125 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-525.7139282226562 -152 L-525.7139282226562 90 L271.2861022949219 90 L271.2861022949219 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-537.9384765625 -152 L-537.9384765625 90 L259.0614929199219 90 L259.0614929199219 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-617.2158203125 -152 L-617.2158203125 90 L179.78419494628906 90 L179.78419494628906 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-620.7930297851562 -152 L-620.7930297851562 90 L176.20700073242188 90 L176.20700073242188 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-671.4478149414062 -152 L-671.4478149414062 90 L125.55220031738281 90 L125.55220031738281 -152 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 221.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,107,211)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 20.5 L0.5 20.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 20.5 L0.5 20.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,362,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 221.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 221.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,368,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,405.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,419.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 66.5 L0.5 66.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 66.5 L0.5 66.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,632,10)">
<path d="M77.9301986694336 0.5 L77.9301986694336 221.5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M77.9301986694336 0.5 L77.9301986694336 221.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath13)" fill="none" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,638,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">local storage</text>
<line x1="0" y1="12.5" x2="68.34716796875" y2="12.5" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,706.3472,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,709.8276,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,704.4302,141)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 90.5 L0.5 90.5 Z" stroke="none" clip-path="url(#clipPath17)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 90.5 L0.5 90.5 Z" stroke="black" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="10,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M342.6005859375 221 L35 221" clip-path="url(#clipPath1)" fill="none" />
<path d="M10 5 L0 0 L10 -5" stroke-dasharray="none" stroke-miterlimit="10" clip-path="url(#clipPath18)" fill="none" stroke-linecap="square" transform="matrix(1,1.3461454173580023E-15,-1.3461454173580023E-15,1,35,221)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,216.7571,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,222.23760000000001,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,227.71800000000002,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">retrun audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L337.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath22)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,337.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath22)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,337.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,158.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,164.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,169.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,242.73340000000002,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,254.958,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,321.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,324.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,369.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 120 L337.6005859375 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath31)" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,337.6006,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath31)" fill="none" stroke-linecap="square" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,337.6006,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,119.5113,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,124.99180000000001,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,130.47220000000002,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,191.21930000000003,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,203.4439,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">addAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,275.53470000000004,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,279.1118,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">rawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,353.94190000000003,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,357.42240000000004,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">metaData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408.5122,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M347.6005859375 151 L622.43017578125 151" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath42)" transform="matrix(-1,6.5503158452884236E-15,-6.5503158452884236E-15,-1,622.4302,151)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath42)" fill="none" stroke-linecap="square" transform="matrix(-1,6.5503158452884236E-15,-6.5503158452884236E-15,-1,622.4302,151)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,460.0213,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,465.5018,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,470.9822,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,543.9485,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,556.1731,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,622.2161,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,625.7932,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,670.4323999999999,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M342.6005859375 186 L622.43017578125 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath51)" transform="matrix(-1,1.2212453270876722E-15,-1.2212453270876722E-15,-1,622.4302,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath51)" fill="none" stroke-linecap="square" transform="matrix(-1,1.2212453270876722E-15,-1.2212453270876722E-15,-1,622.4302,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,454.0059,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,459.4864,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,464.9668,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,525.7139,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,537.9385,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">storeAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,617.2158,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath57)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,620.793,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,671.4477999999999,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath59)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 37 KiB

View file

@ -1,444 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 262 L883 262 L883 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 252 L965 252 L965 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 242 L863 242 L863 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 210 L952.5828247070312 210 L952.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 210 L854.7161254882812 210 L854.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 210 L851.235595703125 210 L851.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-342 -10 L-342 242 L623 242 L623 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-348 -16 L-348 236 L617 236 L617 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-385.4740905761719 -16 L-385.4740905761719 236 L579.52587890625 236 L579.52587890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-388.95458984375 -16 L-388.95458984375 236 L576.04541015625 236 L576.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-399.6005859375 -75 L-399.6005859375 177 L565.3994140625 177 L565.3994140625 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-399.6005859375 -180 L-399.6005859375 72 L565.3994140625 72 L565.3994140625 -180 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-562 -10 L-562 242 L403 242 L403 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-568 -16 L-568 236 L397 236 L397 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-636.3472290039062 -16 L-636.3472290039062 236 L328.6528015136719 236 L328.6528015136719 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-639.8275756835938 -16 L-639.8275756835938 236 L325.1723937988281 236 L325.1723937988281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-634.43017578125 -106 L-634.43017578125 146 L330.56982421875 146 L330.56982421875 -106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-792 -10 L-792 242 L173 242 L173 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-798 -16 L-798 236 L167 236 L167 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-872.09423828125 -16 L-872.09423828125 236 L92.90576171875 236 L92.90576171875 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-875.57470703125 -16 L-875.57470703125 236 L89.42529296875 236 L89.42529296875 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-868.43701171875 -141 L-868.43701171875 111 L96.56298828125 111 L96.56298828125 -141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M399.6005859375 75 L399.6005859375 -177 L-565.3994140625 -177 L-565.3994140625 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-148.8061981201172 -51 L-148.8061981201172 201 L816.1937866210938 201 L816.1937866210938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-154.2866973876953 -51 L-154.2866973876953 201 L810.7133178710938 201 L810.7133178710938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-159.76710510253906 -51 L-159.76710510253906 201 L805.23291015625 201 L805.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-232.7333984375 -51 L-232.7333984375 201 L732.2666015625 201 L732.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-244.95799255371094 -51 L-244.95799255371094 201 L720.0419921875 201 L720.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-311.0010070800781 -51 L-311.0010070800781 201 L653.9990234375 201 L653.9990234375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-314.5780944824219 -51 L-314.5780944824219 201 L650.421875 201 L650.421875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-359.21728515625 -51 L-359.21728515625 201 L605.78271484375 201 L605.78271484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M399.6005859375 180 L399.6005859375 -72 L-565.3994140625 -72 L-565.3994140625 180 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-117.05500030517578 -156 L-117.05500030517578 96 L847.9450073242188 96 L847.9450073242188 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-122.5354995727539 -156 L-122.5354995727539 96 L842.4644775390625 96 L842.4644775390625 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-128.01589965820312 -156 L-128.01589965820312 96 L836.9840698242188 96 L836.9840698242188 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-250.98170471191406 -156 L-250.98170471191406 96 L714.018310546875 96 L714.018310546875 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-254.55889892578125 -156 L-254.55889892578125 96 L710.4411010742188 96 L710.4411010742188 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-292.564697265625 -156 L-292.564697265625 96 L672.435302734375 96 L672.435302734375 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-296.0451965332031 -156 L-296.0451965332031 96 L668.9547729492188 96 L668.9547729492188 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-356.79229736328125 -156 L-356.79229736328125 96 L608.2077026367188 96 L608.2077026367188 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-360.272705078125 -156 L-360.272705078125 96 L604.727294921875 96 L604.727294921875 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-390.968505859375 -156 L-390.968505859375 96 L574.031494140625 96 L574.031494140625 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M634.43017578125 106 L634.43017578125 -146 L-330.5697937011719 -146 L-330.5697937011719 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-415.02130126953125 -82 L-415.02130126953125 170 L549.9786987304688 170 L549.9786987304688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-420.5018005371094 -82 L-420.5018005371094 170 L544.4982299804688 170 L544.4982299804688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-425.9822082519531 -82 L-425.9822082519531 170 L539.017822265625 170 L539.017822265625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-498.948486328125 -82 L-498.948486328125 170 L466.051513671875 170 L466.051513671875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-511.173095703125 -82 L-511.173095703125 170 L453.826904296875 170 L453.826904296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-577.2161254882812 -82 L-577.2161254882812 170 L387.7839050292969 170 L387.7839050292969 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-580.793212890625 -82 L-580.793212890625 170 L384.206787109375 170 L384.206787109375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-625.432373046875 -82 L-625.432373046875 170 L339.5675964355469 170 L339.5675964355469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M868.43701171875 141 L868.43701171875 -111 L-96.56300354003906 -111 L-96.56300354003906 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-646.01318359375 -118 L-646.01318359375 134 L318.9867858886719 134 L318.9867858886719 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-651.4937133789062 -118 L-651.4937133789062 134 L313.50628662109375 134 L313.50628662109375 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-656.97412109375 -118 L-656.97412109375 134 L308.0259094238281 134 L308.0259094238281 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-729.9404296875 -118 L-729.9404296875 134 L235.05960083007812 134 L235.05960083007812 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-742.1649780273438 -118 L-742.1649780273438 134 L222.8350067138672 134 L222.8350067138672 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-808.2080078125 -118 L-808.2080078125 134 L156.79200744628906 134 L156.79200744628906 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-811.7850952148438 -118 L-811.7850952148438 134 L153.21490478515625 134 L153.21490478515625 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-856.42431640625 -118 L-856.42431640625 134 L108.57569885253906 134 L108.57569885253906 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-288.4681091308594 -227.5 L-288.4681091308594 24.5 L676.5319213867188 24.5 L676.5319213867188 -227.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-361.6081848144531 -227.5 L-361.6081848144531 24.5 L603.3917846679688 24.5 L603.3917846679688 -227.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-367.0887145996094 -227.5 L-367.0887145996094 24.5 L597.9113159179688 24.5 L597.9113159179688 -227.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-530.8319091796875 -227.5 L-530.8319091796875 24.5 L434.1680908203125 24.5 L434.1680908203125 -227.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-534.4089965820312 -227.5 L-534.4089965820312 24.5 L430.59100341796875 24.5 L430.59100341796875 -227.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M-595.1561279296875 -227.5 L-595.1561279296875 24.5 L369.8439025878906 24.5 L369.8439025878906 -227.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-409.6005859375 -211 L-409.6005859375 41 L555.3994140625 41 L555.3994140625 -211 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 202.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,342,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 202.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 202.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,348,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,385.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,388.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,399.6005859375,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,399.6005859375,180)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,562,10)">
<path d="M77.9301986694336 0.5 L77.9301986694336 202.5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M77.9301986694336 0.5 L77.9301986694336 202.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath13)" fill="none" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,568,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">local storage</text>
<line x1="0" y1="12.5" x2="68.34716796875" y2="12.5" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,636.3472,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,639.8276,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,634.43017578125,106)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 106.5 L0.5 106.5 Z" stroke="none" clip-path="url(#clipPath17)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 106.5 L0.5 106.5 Z" stroke="black" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,792,10)">
<path d="M81.93699645996094 0.5 L81.93699645996094 202.5" stroke="none" clip-path="url(#clipPath18)" />
<path d="M81.93699645996094 0.5 L81.93699645996094 202.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath18)" fill="none" />
<path d="M0.5 0.5 L162.37399291992188 0.5 L162.37399291992188 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath18)" />
<path d="M0.5 0.5 L162.37399291992188 0.5 L162.37399291992188 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath18)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,798,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">media archive</text>
<line x1="0" y1="12.5" x2="74.09423828125" y2="12.5" clip-path="url(#clipPath19)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,872.09423828125,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath20)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,875.57470703125,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath21)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,868.43701171875,141)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="none" clip-path="url(#clipPath22)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="black" clip-path="url(#clipPath22)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L317.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath23)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,317.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath23)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,317.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,148.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,154.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,159.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,232.73340000000002,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,244.958,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,311.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,314.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,359.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 190 L317.6005859375 190" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath32)" transform="matrix(-1,6.078471059822732E-15,-6.078471059822732E-15,-1,317.6006,190)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath32)" fill="none" stroke-linecap="square" transform="matrix(-1,6.078471059822732E-15,-6.078471059822732E-15,-1,317.6006,190)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,117.055,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,122.53550000000001,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,128.01590000000002,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">addAudioClipToPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,250.98170000000002,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,254.55890000000002,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,292.5647,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,296.0452,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,356.7923,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,360.2727,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">offset</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,390.96850000000006,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M327.6005859375 116 L552.43017578125 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath43)" transform="matrix(-0.9999999999999999,-4.107825191113079E-15,4.107825191113079E-15,-0.9999999999999999,552.4302,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath43)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-4.107825191113079E-15,4.107825191113079E-15,-0.9999999999999999,552.4302,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,415.0213,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,420.5018,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,425.9822,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,498.94849999999997,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,511.1731,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,577.2161,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,580.7932,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,625.4323999999999,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M322.6005859375 151 L786.43701171875 151" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath52)" transform="matrix(-1,2.4980018054066022E-15,-2.4980018054066022E-15,-1,786.437,151)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath52)" fill="none" stroke-linecap="square" transform="matrix(-1,2.4980018054066022E-15,-2.4980018054066022E-15,-1,786.437,151)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,646.0132,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,651.4937,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,656.9741,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,729.9404000000001,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,742.165,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath57)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,808.2080000000001,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,811.7851,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath59)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,856.4243,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath60)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M327.6005859375 203.5 L397.6005859375 203.5 L397.6005859375 221 L327.6005859375 221" clip-path="url(#clipPath1)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath61)" stroke-linecap="square" transform="matrix(1,0,0,1,206.4681,237.5)">[if requested]</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,361.6082,227.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath62)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,367.0887,227.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath63)">mirrorAudioClipInLocalStorage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,530.8319,227.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath64)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,534.409,227.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath65)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,595.1561,227.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath66)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,409.6006,211)">
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath67)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath67)" fill="none" stroke-linecap="square" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 43 KiB

View file

@ -1,488 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 291 L943 291 L943 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 281 L1025 281 L1025 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 271 L923 271 L923 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 239 L1012.5828247070312 239 L1012.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 239 L914.7161254882812 239 L914.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 239 L911.235595703125 239 L911.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-332 -10 L-332 271 L693 271 L693 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-338 -16 L-338 265 L687 265 L687 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-375.4740905761719 -16 L-375.4740905761719 265 L649.52587890625 265 L649.52587890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-378.95458984375 -16 L-378.95458984375 265 L646.04541015625 265 L646.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-389.6005859375 -75 L-389.6005859375 206 L635.3994140625 206 L635.3994140625 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-389.6005859375 -145 L-389.6005859375 136 L635.3994140625 136 L635.3994140625 -145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-572 -10 L-572 271 L453 271 L453 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-578 -16 L-578 265 L447 265 L447 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-646.3472290039062 -16 L-646.3472290039062 265 L378.6528015136719 265 L378.6528015136719 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-649.8275756835938 -16 L-649.8275756835938 265 L375.1723937988281 265 L375.1723937988281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-644.43017578125 -106 L-644.43017578125 175 L380.5697937011719 175 L380.5697937011719 -106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-852 -10 L-852 271 L173 271 L173 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-858 -16 L-858 265 L167 265 L167 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-932.09423828125 -16 L-932.09423828125 265 L92.90576171875 265 L92.90576171875 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-935.57470703125 -16 L-935.57470703125 265 L89.42529296875 265 L89.42529296875 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-928.43701171875 -176 L-928.43701171875 105 L96.56300354003906 105 L96.56300354003906 -176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M389.6005859375 75 L389.6005859375 -206 L-635.3994140625 -206 L-635.3994140625 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-143.8061981201172 -51 L-143.8061981201172 230 L881.1937866210938 230 L881.1937866210938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-149.2866973876953 -51 L-149.2866973876953 230 L875.7133178710938 230 L875.7133178710938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-154.76710510253906 -51 L-154.76710510253906 230 L870.23291015625 230 L870.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-227.7333984375 -51 L-227.7333984375 230 L797.2666015625 230 L797.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-239.95799255371094 -51 L-239.95799255371094 230 L785.0419921875 230 L785.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-306.0010070800781 -51 L-306.0010070800781 230 L718.9990234375 230 L718.9990234375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-309.5780944824219 -51 L-309.5780944824219 230 L715.421875 230 L715.421875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-354.21728515625 -51 L-354.21728515625 230 L670.78271484375 230 L670.78271484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M389.6005859375 145 L389.6005859375 -136 L-635.3994140625 -136 L-635.3994140625 145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-132.80079650878906 -121 L-132.80079650878906 160 L892.19921875 160 L892.19921875 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-138.2812957763672 -121 L-138.2812957763672 160 L886.7186889648438 160 L886.7186889648438 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-143.76170349121094 -121 L-143.76170349121094 160 L881.23828125 160 L881.23828125 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-300.8984069824219 -121 L-300.8984069824219 160 L724.1016235351562 160 L724.1016235351562 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-304.4755859375 -121 L-304.4755859375 160 L720.5244140625 160 L720.5244140625 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-365.22259521484375 -121 L-365.22259521484375 160 L659.7774047851562 160 L659.7774047851562 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M644.43017578125 106 L644.43017578125 -175 L-380.5697937011719 -175 L-380.5697937011719 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-415.02130126953125 -82 L-415.02130126953125 199 L609.9786987304688 199 L609.9786987304688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-420.5018005371094 -82 L-420.5018005371094 199 L604.4982299804688 199 L604.4982299804688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-425.9822082519531 -82 L-425.9822082519531 199 L599.017822265625 199 L599.017822265625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-498.948486328125 -82 L-498.948486328125 199 L526.051513671875 199 L526.051513671875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-511.173095703125 -82 L-511.173095703125 199 L513.826904296875 199 L513.826904296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-577.2161254882812 -82 L-577.2161254882812 199 L447.7839050292969 199 L447.7839050292969 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-580.793212890625 -82 L-580.793212890625 199 L444.206787109375 199 L444.206787109375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-625.432373046875 -82 L-625.432373046875 199 L399.5675964355469 199 L399.5675964355469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M644.43017578125 211 L644.43017578125 -70 L-380.5697937011719 -70 L-380.5697937011719 211 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-414.0090026855469 -187 L-414.0090026855469 94 L610.9910278320312 94 L610.9910278320312 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-419.489501953125 -187 L-419.489501953125 94 L605.510498046875 94 L605.510498046875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-424.96990966796875 -187 L-424.96990966796875 94 L600.0300903320312 94 L600.0300903320312 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-475.62469482421875 -187 L-475.62469482421875 94 L549.3753051757812 94 L549.3753051757812 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-487.84930419921875 -187 L-487.84930419921875 94 L537.1506958007812 94 L537.1506958007812 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-557.1203002929688 -187 L-557.1203002929688 94 L467.87969970703125 94 L467.87969970703125 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-560.6973876953125 -187 L-560.6973876953125 94 L464.3026123046875 94 L464.3026123046875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-621.4445190429688 -187 L-621.4445190429688 94 L403.5555114746094 94 L403.5555114746094 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M928.43701171875 176 L928.43701171875 -105 L-96.56300354003906 -105 L-96.56300354003906 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-667.2636108398438 -153 L-667.2636108398438 128 L357.73638916015625 128 L357.73638916015625 -153 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-672.7440795898438 -153 L-672.7440795898438 128 L352.2558898925781 128 L352.2558898925781 -153 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-678.2244873046875 -153 L-678.2244873046875 128 L346.7755126953125 128 L346.7755126953125 -153 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-751.1907958984375 -153 L-751.1907958984375 128 L273.8092041015625 128 L273.8092041015625 -153 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-763.4154052734375 -153 L-763.4154052734375 128 L261.5845947265625 128 L261.5845947265625 -153 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-829.4583740234375 -153 L-829.4583740234375 128 L195.54159545898438 128 L195.54159545898438 -153 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-833.0355224609375 -153 L-833.0355224609375 128 L191.96449279785156 128 L191.96449279785156 -153 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-877.6746826171875 -153 L-877.6746826171875 128 L147.32530212402344 128 L147.32530212402344 -153 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M928.43701171875 246 L928.43701171875 -35 L-96.56300354003906 -35 L-96.56300354003906 246 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-668.1838989257812 -220 L-668.1838989257812 61 L356.81610107421875 61 L356.81610107421875 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
<path d="M-673.6644287109375 -220 L-673.6644287109375 61 L351.3356018066406 61 L351.3356018066406 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
<path d="M-679.144775390625 -220 L-679.144775390625 61 L345.8551940917969 61 L345.8551940917969 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
<path d="M-739.8919067382812 -220 L-739.8919067382812 61 L285.10809326171875 61 L285.10809326171875 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
<path d="M-752.1165161132812 -220 L-752.1165161132812 61 L272.8835144042969 61 L272.8835144042969 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
<path d="M-831.393798828125 -220 L-831.393798828125 61 L193.606201171875 61 L193.606201171875 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
<path d="M-834.9710083007812 -220 L-834.9710083007812 61 L190.0290069580078 61 L190.0290069580078 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
<path d="M-885.6257934570312 -220 L-885.6257934570312 61 L139.37420654296875 61 L139.37420654296875 -220 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 237.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,332,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 237.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 237.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,338,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,375.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,378.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,389.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,389.6006,145)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,572,10)">
<path d="M77.9301986694336 0.5 L77.9301986694336 237.5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M77.9301986694336 0.5 L77.9301986694336 237.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath13)" fill="none" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,578,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">local storage</text>
<line x1="0" y1="12.5" x2="68.34716796875" y2="12.5" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,646.3472,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,649.8276,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,644.4302,106)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 141.5 L0.5 141.5 Z" stroke="none" clip-path="url(#clipPath17)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 141.5 L0.5 141.5 Z" stroke="black" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,852,10)">
<path d="M81.93699645996094 0.5 L81.93699645996094 260.5" stroke="none" clip-path="url(#clipPath18)" />
<path d="M81.93699645996094 0.5 L81.93699645996094 260.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath18)" fill="none" />
<path d="M0.5 0.5 L162.37399291992188 0.5 L162.37399291992188 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath18)" />
<path d="M0.5 0.5 L162.37399291992188 0.5 L162.37399291992188 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath18)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,858,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">media archive</text>
<line x1="0" y1="12.5" x2="74.09423828125" y2="12.5" clip-path="url(#clipPath19)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,932.09423828125,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath20)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,935.57470703125,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath21)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,928.437,176)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 94.5 L0.5 94.5 Z" stroke="none" clip-path="url(#clipPath22)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 94.5 L0.5 94.5 Z" stroke="black" clip-path="url(#clipPath22)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L307.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath23)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,307.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath23)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,307.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,143.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,149.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,154.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,227.73340000000002,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,239.958,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,306.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,309.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,354.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 155 L307.6005859375 155" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath32)" transform="matrix(-1,1.2739809207573671E-14,-1.2739809207573671E-14,-1,307.6006,155)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath32)" fill="none" stroke-linecap="square" transform="matrix(-1,1.2739809207573671E-14,-1.2739809207573671E-14,-1,307.6006,155)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,132.8008,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,138.28130000000002,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,143.76170000000002,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">addAudioClipToMediaArchive</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300.89840000000004,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,304.4756,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,365.22260000000006,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M317.6005859375 116 L562.43017578125 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath39)" transform="matrix(-1,6.5503158452884236E-15,-6.5503158452884236E-15,-1,562.4302,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath39)" fill="none" stroke-linecap="square" transform="matrix(-1,6.5503158452884236E-15,-6.5503158452884236E-15,-1,562.4302,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,415.0213,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,420.5018,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,425.9822,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,498.94849999999997,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,511.1731,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,577.2161,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,580.7932,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,625.4323999999999,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M312.6005859375 221 L562.43017578125 221" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath48)" transform="matrix(-1,6.5503158452884236E-15,-6.5503158452884236E-15,-1,562.4302,221)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath48)" fill="none" stroke-linecap="square" transform="matrix(-1,6.5503158452884236E-15,-6.5503158452884236E-15,-1,562.4302,221)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,414.009,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,419.4895,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,424.9699,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,475.6247,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,487.84929999999997,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">getAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,557.1203,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,560.6974,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,621.4445000000001,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M317.6005859375 186 L846.43701171875 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath57)" transform="matrix(-1,-9.992007221626409E-16,9.992007221626409E-16,-1,846.437,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath57)" fill="none" stroke-linecap="square" transform="matrix(-1,-9.992007221626409E-16,9.992007221626409E-16,-1,846.437,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,667.2636,153)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,672.7441,153)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath59)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,678.2245,153)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath60)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,751.1908000000001,153)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath61)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,763.4154000000001,153)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath62)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,829.4584,153)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath63)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,833.0355000000001,153)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath64)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,877.6747,153)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath65)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M312.6005859375 256 L846.43701171875 256" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath66)" transform="matrix(-0.9999999999999999,-5.551115123125783E-16,5.551115123125783E-16,-0.9999999999999999,846.437,256)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath66)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-5.551115123125783E-16,5.551115123125783E-16,-0.9999999999999999,846.437,256)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,668.1839,220)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath67)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,673.6644,220)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath68)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,679.1448,220)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath69)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,739.8919000000001,220)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath70)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,752.1165000000001,220)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath71)">storeAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,831.3938,220)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath72)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,834.971,220)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath73)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,885.6258,220)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath74)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 47 KiB

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 105 KiB

View file

@ -1,189 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-12 10 L-12 132 L606 132 L606 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L618 122 L618 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 112 L516 112 L516 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 80 L605.5828247070312 80 L605.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 80 L507.7160949707031 80 L507.7160949707031 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 80 L504.235595703125 80 L504.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-482 -10 L-482 112 L136 112 L136 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-488 -16 L-488 106 L130 106 L130 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-525.47412109375 -16 L-525.47412109375 106 L92.5259017944336 106 L92.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-528.95458984375 -16 L-528.95458984375 106 L89.04540252685547 106 L89.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-539.6005859375 -75 L-539.6005859375 47 L78.39939880371094 47 L78.39939880371094 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M539.6005859375 75 L539.6005859375 -47 L-78.39939880371094 -47 L-78.39939880371094 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-218.8061981201172 -51 L-218.8061981201172 71 L399.19378662109375 71 L399.19378662109375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-224.2866973876953 -51 L-224.2866973876953 71 L393.7132873535156 71 L393.7132873535156 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-229.76710510253906 -51 L-229.76710510253906 71 L388.23291015625 71 L388.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-302.7333984375 -51 L-302.7333984375 71 L315.2666015625 71 L315.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-314.9580078125 -51 L-314.9580078125 71 L303.0419921875 71 L303.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-381.0010070800781 -51 L-381.0010070800781 71 L236.99899291992188 71 L236.99899291992188 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-384.5780944824219 -51 L-384.5780944824219 71 L233.42190551757812 71 L233.42190551757812 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-429.21728515625 -51 L-429.21728515625 71 L188.78269958496094 71 L188.78269958496094 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M539.6005859375 110 L539.6005859375 -12 L-78.39939880371094 -12 L-78.39939880371094 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-256.755615234375 -86 L-256.755615234375 36 L361.244384765625 36 L361.244384765625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-262.2361145019531 -86 L-262.2361145019531 36 L355.7638854980469 36 L355.7638854980469 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-267.71649169921875 -86 L-267.71649169921875 36 L350.28350830078125 36 L350.28350830078125 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-305.722412109375 -86 L-305.722412109375 36 L312.277587890625 36 L312.277587890625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-317.9469909667969 -86 L-317.9469909667969 36 L300.0530090332031 36 L300.0530090332031 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-387.69061279296875 -86 L-387.69061279296875 36 L230.3094024658203 36 L230.3094024658203 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-391.2677917480469 -86 L-391.2677917480469 36 L226.73219299316406 36 L226.73219299316406 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,482,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 101.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,488,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,525.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,528.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,539.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12,-10)">
<path d="M100 85 L527.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,3.83026943495679E-15,-3.83026943495679E-15,-1,527.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,3.83026943495679E-15,-3.83026943495679E-15,-1,527.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,218.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,224.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,229.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,302.7334,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,314.95799999999997,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,381.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,384.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,429.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12,-10)">
<path d="M100 120 L527.6005859375 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-5.551115123125783E-15,5.551115123125783E-15,-1,527.6006,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-5.551115123125783E-15,5.551115123125783E-15,-1,527.6006,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,256.75559999999996,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,262.23609999999996,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,267.71649999999994,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,305.72239999999994,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,317.94699999999995,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">createPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,387.69059999999996,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,391.26779999999997,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,327 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 198 L635 198 L635 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 188 L717 188 L717 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-552 -10 L-552 178 L165 178 L165 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-558 -16 L-558 172 L159 172 L159 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-626.3472290039062 -16 L-626.3472290039062 172 L90.65280151367188 172 L90.65280151367188 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-629.8275756835938 -16 L-629.8275756835938 172 L87.17240142822266 172 L87.17240142822266 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-624.43017578125 -106 L-624.43017578125 82 L92.5698013305664 82 L92.5698013305664 -106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-332 -10 L-332 178 L385 178 L385 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-338 -16 L-338 172 L379 172 L379 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-375.4740905761719 -16 L-375.4740905761719 172 L341.5259094238281 172 L341.5259094238281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-378.95458984375 -16 L-378.95458984375 172 L338.04541015625 172 L338.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-389.6005859375 -75 L-389.6005859375 113 L327.3994140625 113 L327.3994140625 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-389.6005859375 -145 L-389.6005859375 43 L327.3994140625 43 L327.3994140625 -145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-102 -10 L-102 178 L615 178 L615 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-12.417200088500977 -42 L-12.417200088500977 146 L704.5828247070312 146 L704.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-110.28389739990234 -42 L-110.28389739990234 146 L606.7161254882812 146 L606.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-113.76439666748047 -42 L-113.76439666748047 146 L603.235595703125 146 L603.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M389.6005859375 75 L389.6005859375 -113 L-327.3994140625 -113 L-327.3994140625 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-143.8061981201172 -51 L-143.8061981201172 137 L573.1937866210938 137 L573.1937866210938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-149.2866973876953 -51 L-149.2866973876953 137 L567.7133178710938 137 L567.7133178710938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-154.76710510253906 -51 L-154.76710510253906 137 L562.23291015625 137 L562.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-227.7333984375 -51 L-227.7333984375 137 L489.2666015625 137 L489.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-239.95799255371094 -51 L-239.95799255371094 137 L477.0419921875 137 L477.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-306.0010070800781 -51 L-306.0010070800781 137 L410.9989929199219 137 L410.9989929199219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-309.5780944824219 -51 L-309.5780944824219 137 L407.4219055175781 137 L407.4219055175781 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-354.21728515625 -51 L-354.21728515625 137 L362.78271484375 137 L362.78271484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M389.6005859375 145 L389.6005859375 -43 L-327.3994140625 -43 L-327.3994140625 145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-124.714599609375 -121 L-124.714599609375 67 L592.285400390625 67 L592.285400390625 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-130.19509887695312 -121 L-130.19509887695312 67 L586.8048706054688 67 L586.8048706054688 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-135.67550659179688 -121 L-135.67550659179688 67 L581.3245239257812 67 L581.3245239257812 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-308.9845886230469 -121 L-308.9845886230469 67 L408.0154113769531 67 L408.0154113769531 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-312.56170654296875 -121 L-312.56170654296875 67 L404.43829345703125 67 L404.43829345703125 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-373.3088073730469 -121 L-373.3088073730469 67 L343.6911926269531 67 L343.6911926269531 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M624.43017578125 106 L624.43017578125 -82 L-92.5698013305664 -82 L-92.5698013305664 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-405.0212097167969 -82 L-405.0212097167969 106 L311.9787902832031 106 L311.9787902832031 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-410.501708984375 -82 L-410.501708984375 106 L306.498291015625 106 L306.498291015625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-415.9820861816406 -82 L-415.9820861816406 106 L301.0179138183594 106 L301.0179138183594 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-488.9483947753906 -82 L-488.9483947753906 106 L228.05160522460938 106 L228.05160522460938 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-501.1730041503906 -82 L-501.1730041503906 106 L215.82699584960938 106 L215.82699584960938 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-567.2160034179688 -82 L-567.2160034179688 106 L149.78399658203125 106 L149.78399658203125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-570.7930908203125 -82 L-570.7930908203125 106 L146.20689392089844 106 L146.20689392089844 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-615.4323120117188 -82 L-615.4323120117188 106 L101.56770324707031 106 L101.56770324707031 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M624.43017578125 176 L624.43017578125 -12 L-92.5698013305664 -12 L-92.5698013305664 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-430.1982116699219 -152 L-430.1982116699219 36 L286.8017883300781 36 L286.8017883300781 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-435.6787109375 -152 L-435.6787109375 36 L281.3212890625 36 L281.3212890625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-441.1590881347656 -152 L-441.1590881347656 36 L275.8409118652344 36 L275.8409118652344 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-525.9310913085938 -152 L-525.9310913085938 36 L191.0688934326172 36 L191.0688934326172 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-529.5081787109375 -152 L-529.5081787109375 36 L187.49180603027344 36 L187.49180603027344 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-590.2553100585938 -152 L-590.2553100585938 36 L126.74469757080078 36 L126.74469757080078 -152 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,552,10)">
<path d="M77.9301986694336 0.5 L77.9301986694336 167.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,558,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">local storage</text>
<line x1="0" y1="12.5" x2="68.34716796875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,626.3472,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,629.8276,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,624.4302,106)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,332,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 167.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 167.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,338,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,375.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,378.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,389.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,389.6006,145)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath13)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 167.5" stroke="none" clip-path="url(#clipPath14)" />
<path d="M10.5 48.5 L10.5 167.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath14)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath14)" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="black" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L307.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath18)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,307.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath18)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,307.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,143.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,149.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,154.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,227.73340000000002,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,239.958,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,306.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,309.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,354.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 155 L307.6005859375 155" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath27)" transform="matrix(-1,1.3211653993039363E-14,-1.3211653993039363E-14,-1,307.6006,155)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath27)" fill="none" stroke-linecap="square" transform="matrix(-1,1.3211653993039363E-14,-1.3211653993039363E-14,-1,307.6006,155)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,124.71459999999999,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,130.1951,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,135.6755,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">deleteAudiClipFromLocalStorage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,308.9846,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,312.5617,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,373.3088,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M317.6005859375 116 L542.43017578125 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath34)" transform="matrix(-1,5.218048215738236E-15,-5.218048215738236E-15,-1,542.4302,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath34)" fill="none" stroke-linecap="square" transform="matrix(-1,5.218048215738236E-15,-5.218048215738236E-15,-1,542.4302,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,405.0212,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,410.5017,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,415.9821,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,488.9484,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,501.173,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,567.216,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,570.7931,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,615.4322999999999,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M317.6005859375 186 L542.43017578125 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath43)" transform="matrix(-1,3.885780586188048E-15,-3.885780586188048E-15,-1,542.4302,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath43)" fill="none" stroke-linecap="square" transform="matrix(-1,3.885780586188048E-15,-3.885780586188048E-15,-1,542.4302,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,430.1982,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,435.6787,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,441.15909999999997,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">deleteAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,525.9311,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,529.5082,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,590.2553,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 31 KiB

View file

@ -1,207 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 132 L546 132 L546 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 122 L628 122 L628 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 112 L526 112 L526 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 80 L615.5828247070312 80 L615.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 80 L517.7161254882812 80 L517.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 80 L514.235595703125 80 L514.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-492 -10 L-492 112 L136 112 L136 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-498 -16 L-498 106 L130 106 L130 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-535.47412109375 -16 L-535.47412109375 106 L92.5259017944336 106 L92.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-538.95458984375 -16 L-538.95458984375 106 L89.04540252685547 106 L89.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-549.6005859375 -75 L-549.6005859375 47 L78.39939880371094 47 L78.39939880371094 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M549.6005859375 75 L549.6005859375 -47 L-78.39939880371094 -47 L-78.39939880371094 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-223.8061981201172 -51 L-223.8061981201172 71 L404.19378662109375 71 L404.19378662109375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-229.2866973876953 -51 L-229.2866973876953 71 L398.7132873535156 71 L398.7132873535156 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-234.76710510253906 -51 L-234.76710510253906 71 L393.23291015625 71 L393.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-307.7333984375 -51 L-307.7333984375 71 L320.2666015625 71 L320.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-319.9580078125 -51 L-319.9580078125 71 L308.0419921875 71 L308.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-386.0010070800781 -51 L-386.0010070800781 71 L241.99899291992188 71 L241.99899291992188 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-389.5780944824219 -51 L-389.5780944824219 71 L238.42190551757812 71 L238.42190551757812 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-434.21728515625 -51 L-434.21728515625 71 L193.78269958496094 71 L193.78269958496094 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M549.6005859375 110 L549.6005859375 -12 L-78.39939880371094 -12 L-78.39939880371094 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-135.21530151367188 -86 L-135.21530151367188 36 L492.7846984863281 36 L492.7846984863281 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-140.69580078125 -86 L-140.69580078125 36 L487.30419921875 36 L487.30419921875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-146.1761932373047 -86 L-146.1761932373047 36 L481.82379150390625 36 L481.82379150390625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-267.6702880859375 -86 L-267.6702880859375 36 L360.3297119140625 36 L360.3297119140625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-271.24749755859375 -86 L-271.24749755859375 36 L356.75250244140625 36 L356.75250244140625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-351.8622131347656 -86 L-351.8622131347656 36 L276.1377868652344 36 L276.1377868652344 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-355.34271240234375 -86 L-355.34271240234375 36 L272.65728759765625 36 L272.65728759765625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-432.5898132324219 -86 L-432.5898132324219 36 L195.4102020263672 36 L195.4102020263672 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-436.0701904296875 -86 L-436.0701904296875 36 L191.92979431152344 36 L191.92979431152344 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-522.8079833984375 -86 L-522.8079833984375 36 L105.19200134277344 36 L105.19200134277344 -86 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 101.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,492,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 101.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 101.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,498,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,535.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,538.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,549.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 36.5 L0.5 36.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L467.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,467.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,467.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,223.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,229.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,234.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,307.7334,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,319.95799999999997,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,386.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,389.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,434.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 120 L467.6005859375 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,467.6006,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,467.6006,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,135.2153,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,140.69580000000002,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,146.17620000000002,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">updateFadeParameters</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,267.6703,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,271.2475,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">playlistElement</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,351.86220000000003,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,355.34270000000004,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">newFadeInInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,432.58979999999997,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,436.0702,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">newFadeOutInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,522.808,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 20 KiB

View file

@ -1,344 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M26 110 L26 1040 L912 1040 L912 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 930 L886 930 L886 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-184 -10 L-184 920 L702 920 L702 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-186 -12 L-186 918 L700 918 L700 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-184 -27 L-184 903 L702 903 L702 -27 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-244 -750 L-244 180 L642 180 L642 -750 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-273.8446960449219 -766 L-273.8446960449219 164 L612.1552734375 164 L612.1552734375 -766 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-474 -710 L-474 220 L412 220 L412 -710 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-507.48779296875 -719.4558715820312 L-507.48779296875 210.54409790039062 L378.51220703125 210.54409790039062 L378.51220703125 -719.4558715820312 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-474 -790 L-474 140 L412 140 L412 -790 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-505.8902893066406 -799.4558715820312 L-505.8902893066406 130.54409790039062 L380.1097106933594 130.54409790039062 L380.1097106933594 -799.4558715820312 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-244 -830 L-244 100 L642 100 L642 -830 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-278.15289306640625 -839.4558715820312 L-278.15289306640625 90.54409790039062 L607.8471069335938 90.54409790039062 L607.8471069335938 -839.4558715820312 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-244 -60 L-244 870 L642 870 L642 -60 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-275.96038818359375 -69.45590209960938 L-275.96038818359375 860.5441284179688 L610.0396118164062 860.5441284179688 L610.0396118164062 -69.45590209960938 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-454 -110 L-454 820 L432 820 L432 -110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-488.54559326171875 -119.45590209960938 L-488.54559326171875 810.5441284179688 L397.45440673828125 810.5441284179688 L397.45440673828125 -119.45590209960938 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-244 -160 L-244 770 L642 770 L642 -160 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-279.3465881347656 -169.45590209960938 L-279.3465881347656 760.5441284179688 L606.6533813476562 760.5441284179688 L606.6533813476562 -169.45590209960938 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-444 -210 L-444 720 L442 720 L442 -210 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-477.6701965332031 -226 L-477.6701965332031 704 L408.3298034667969 704 L408.3298034667969 -226 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-464 -300 L-464 630 L422 630 L422 -300 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-495.96038818359375 -309.4559020996094 L-495.96038818359375 620.5441284179688 L390.03961181640625 620.5441284179688 L390.03961181640625 -309.4559020996094 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-454 -400 L-454 530 L432 530 L432 -400 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-490.4466857910156 -416 L-490.4466857910156 514 L395.5533142089844 514 L395.5533142089844 -416 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-454 -490 L-454 440 L432 440 L432 -490 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-491.4032897949219 -502.35540771484375 L-491.4032897949219 427.64459228515625 L394.5967102050781 427.64459228515625 L394.5967102050781 -502.35540771484375 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-434 -590 L-434 340 L452 340 L452 -590 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-477.39471435546875 -599.4558715820312 L-477.39471435546875 330.5440979003906 L408.60528564453125 330.5440979003906 L408.60528564453125 -599.4558715820312 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-224 -660 L-224 270 L662 270 L662 -660 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-260.3132019042969 -669.4558715820312 L-260.3132019042969 260.5440979003906 L625.6868286132812 260.5440979003906 L625.6868286132812 -669.4558715820312 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-34 -520 L-34 410 L852 410 L852 -520 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-10.090800285339355 -605 L-10.090800285339355 325 L875.9091796875 325 L875.9091796875 -605 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-814 -130 L-814 800 L72 800 L72 -130 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-803.4835815429688 -215 L-803.4835815429688 715 L82.51640319824219 715 L82.51640319824219 -215 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-814 -390 L-814 540 L72 540 L72 -390 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-802.3502807617188 -475 L-802.3502807617188 455 L83.64969635009766 455 L83.64969635009766 -475 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-804 -770 L-804 160 L82 160 L82 -770 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-802.963623046875 -855 L-802.963623046875 75 L83.0363998413086 75 L83.0363998413086 -855 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,184,10)">
<path d="M0.5 0.5 L75.74659729003906 0.5 L75.74659729003906 17.5 L0.5 17.5 Z" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,186,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">Playlist editor</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,184,27)">
<path d="M0.5 0.5 L529.5 0.5 L529.5 892.5 L0.5 892.5 Z" stroke="none" clip-path="url(#clipPath5)" />
<path d="M0.5 0.5 L529.5 0.5 L529.5 892.5 L0.5 892.5 Z" stroke="black" clip-path="url(#clipPath5)" fill="none" />
<ellipse cx="88.2392" cy="25" rx="88.2392" ry="25" stroke="none" clip-path="url(#clipPath6)" transform="matrix(1,0,0,1,60,723)" />
<ellipse cx="88.2392" cy="25" rx="88.2392" ry="25" stroke="black" clip-path="url(#clipPath6)" fill="none" transform="matrix(1,0,0,1,60,723)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,273.8447,766)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath7)">UC-1 Create a Playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,474,710)">
<ellipse cx="100.67745" cy="25.45585" rx="100.67745" ry="25.45585" stroke="none" clip-path="url(#clipPath8)" />
<ellipse cx="100.67745" cy="25.45585" rx="100.67745" ry="25.45585" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,507.4878,719.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">UC-10 Edit the transition</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">of an Audio clip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,474,790)">
<ellipse cx="95.2236" cy="25.45585" rx="95.2236" ry="25.45585" stroke="none" clip-path="url(#clipPath10)" />
<ellipse cx="95.2236" cy="25.45585" rx="95.2236" ry="25.45585" stroke="black" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,505.8903,799.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">UC-12 Upload a Playlist</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">to a Scheduler daemon</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,244,830)">
<ellipse cx="102.9486" cy="25.45585" rx="102.9486" ry="25.45585" stroke="none" clip-path="url(#clipPath12)" />
<ellipse cx="102.9486" cy="25.45585" rx="102.9486" ry="25.45585" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,278.1529,839.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">UC-13 Maintain</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">configuration information</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,244,60)">
<ellipse cx="95.46285" cy="25.45585" rx="95.46285" ry="25.45585" stroke="none" clip-path="url(#clipPath14)" />
<ellipse cx="95.46285" cy="25.45585" rx="95.46285" ry="25.45585" stroke="black" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,275.9604,69.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">UC-2 Add an Audio clip</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">to Local storage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,454,110)">
<ellipse cx="104.28925" cy="25.45585" rx="104.28925" ry="25.45585" stroke="none" clip-path="url(#clipPath16)" />
<ellipse cx="104.28925" cy="25.45585" rx="104.28925" ry="25.45585" stroke="black" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,488.5456,119.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">UC-3 Delete an Audio clip</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">from Local storage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,244,160)">
<ellipse cx="107.0238" cy="25.45585" rx="107.0238" ry="25.45585" stroke="none" clip-path="url(#clipPath18)" />
<ellipse cx="107.0238" cy="25.45585" rx="107.0238" ry="25.45585" stroke="black" clip-path="url(#clipPath18)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,279.3466,169.45589999999999)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">UC-4 Update an Audio clip</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">in Local storage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,444,210)">
<ellipse cx="101.3003" cy="25" rx="101.3003" ry="25" stroke="none" clip-path="url(#clipPath20)" />
<ellipse cx="101.3003" cy="25" rx="101.3003" ry="25" stroke="black" clip-path="url(#clipPath20)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,477.6702,226)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">UC-11 Listen to a Playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,464,300)">
<ellipse cx="95.46285" cy="25.45585" rx="95.46285" ry="25.45585" stroke="none" clip-path="url(#clipPath22)" />
<ellipse cx="95.46285" cy="25.45585" rx="95.46285" ry="25.45585" stroke="black" clip-path="url(#clipPath22)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,495.9604,309.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">UC-8 Add an Audio clip</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">to a Playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,454,400)">
<ellipse cx="110.77995" cy="25" rx="110.77995" ry="25" stroke="none" clip-path="url(#clipPath24)" />
<ellipse cx="110.77995" cy="25" rx="110.77995" ry="25" stroke="black" clip-path="url(#clipPath24)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,490.4467,416)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">UC-6 Search for Audio clips</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,454,490)">
<ellipse cx="114.04615" cy="35.35535" rx="114.04615" ry="35.35535" stroke="none" clip-path="url(#clipPath26)" />
<ellipse cx="114.04615" cy="35.35535" rx="114.04615" ry="35.35535" stroke="black" clip-path="url(#clipPath26)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,491.4033,502.3554)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">UC-7 Mirror an Audio clip</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">from a remote Media archive</text>
<text x="0" y="39" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">in Local storage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,434,590)">
<ellipse cx="134.50185" cy="25.45585" rx="134.50185" ry="25.45585" stroke="none" clip-path="url(#clipPath28)" />
<ellipse cx="134.50185" cy="25.45585" rx="134.50185" ry="25.45585" stroke="black" clip-path="url(#clipPath28)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,477.3947,599.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">UC-5 Add or update an Audio clip</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">to Media archive</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,224,660)">
<ellipse cx="110.3242" cy="25.45585" rx="110.3242" ry="25.45585" stroke="none" clip-path="url(#clipPath30)" />
<ellipse cx="110.3242" cy="25.45585" rx="110.3242" ry="25.45585" stroke="black" clip-path="url(#clipPath30)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,260.3132,669.4559)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">UC-9 Move the position</text>
<text x="0" y="25" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">of an Audio clip in a Playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,34,520)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath32)" />
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="black" clip-path="url(#clipPath32)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10.090800000000002,605)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">Playlist maintainer</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,814,130)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath34)" />
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="black" clip-path="url(#clipPath34)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,803.4836,215)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">Local storage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,814,390)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath36)" />
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="black" clip-path="url(#clipPath36)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,802.3503,475)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">Media archive</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,804,770)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath38)" />
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="black" clip-path="url(#clipPath38)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,802.9636,855)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">Scheduler</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M131.41140747070312 732 L273.51690673828125 878.0123291015625" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M136.90919494628906 725.6641845703125 L250.98190307617188 792.0671997070312" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M136.90919494628906 714.3637084960938 L480 770 L511.2243957519531 833.7753295898438" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M830 925.455810546875 L690.4472045898438 925.455810546875" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M136.90919494628906 731.5274047851562 L260 830 L460 850 L506.3013916015625 916.349609375" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M110 630 L285.0893859863281 209.19129943847656" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M840 240 L460.8804931640625 196.23899841308594" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M110 630 L280 260 L480.0154113769531 245.8939971923828" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M840 245.45579528808594 L688.5784912109375 245.45579528808594" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M110 630 L279.5888977050781 305.9873962402344" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M840 295.455810546875 L484.047607421875 295.455810546875" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M110 630 L471.8023986816406 349.69500732421875" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M840 320 L672.5366821289062 344.1122131347656" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M110 630 L490.84381103515625 438.8330078125" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M826.4835815429688 329.3263854980469 L679.3496704101562 430.8493957519531" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M840 500 L680.418701171875 438.0758972167969" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M110 630 L480.1798095703125 536.4238891601562" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M840 535 L701.5598754882812 535" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M826.4835815429688 339.4729919433594 L696.131591796875 527.2702026367188" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M110 635.3552856445312 L480 635.3552856445312" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M828.9597778320312 342 L691.0714111328125 616.7738037109375" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M825.3502807617188 585.6472778320312 L707.2864990234375 631.1599731445312" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M832.7758178710938 342 L711.0338134765625 712.7443237304688" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M110 710 L460.0046081542969 725.2459716796875" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M825.3502807617188 597.8850708007812 L725.551025390625 719.72509765625" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-26,-110)">
<path d="M124.83049774169922 732 L276.2969055175781 956.689697265625" clip-path="url(#clipPath1)" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 39 KiB

View file

@ -1,559 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 351 L675 351 L675 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 341 L757 341 L757 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 331 L655 331 L655 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 299 L744.5828247070312 299 L744.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 299 L646.7161254882812 299 L646.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 299 L643.235595703125 299 L643.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-292 -10 L-292 331 L465 331 L465 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-298 -16 L-298 325 L459 325 L459 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-335.4740905761719 -16 L-335.4740905761719 325 L421.5259094238281 325 L421.5259094238281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-338.95458984375 -16 L-338.95458984375 325 L418.04541015625 325 L418.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-349.6005859375 -75 L-349.6005859375 266 L407.3994140625 266 L407.3994140625 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-349.6005859375 -145 L-349.6005859375 196 L407.3994140625 196 L407.3994140625 -145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-349.6005859375 -215 L-349.6005859375 126 L407.3994140625 126 L407.3994140625 -215 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-349.6005859375 -285 L-349.6005859375 56 L407.3994140625 56 L407.3994140625 -285 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-592 -10 L-592 331 L165 331 L165 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-598 -16 L-598 325 L159 325 L159 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-666.3472290039062 -16 L-666.3472290039062 325 L90.65280151367188 325 L90.65280151367188 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-669.8275756835938 -16 L-669.8275756835938 325 L87.17240142822266 325 L87.17240142822266 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-664.43017578125 -106 L-664.43017578125 235 L92.5698013305664 235 L92.5698013305664 -106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M349.6005859375 75 L349.6005859375 -266 L-407.3994140625 -266 L-407.3994140625 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-123.80619812011719 -51 L-123.80619812011719 290 L633.1937866210938 290 L633.1937866210938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-129.2866973876953 -51 L-129.2866973876953 290 L627.7133178710938 290 L627.7133178710938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-134.76710510253906 -51 L-134.76710510253906 290 L622.23291015625 290 L622.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-207.7333984375 -51 L-207.7333984375 290 L549.2666015625 290 L549.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-219.95799255371094 -51 L-219.95799255371094 290 L537.0419921875 290 L537.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-286.0010070800781 -51 L-286.0010070800781 290 L470.9989929199219 290 L470.9989929199219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-289.5780944824219 -51 L-289.5780944824219 290 L467.4219055175781 290 L467.4219055175781 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-334.21728515625 -51 L-334.21728515625 290 L422.78271484375 290 L422.78271484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M349.6005859375 145 L349.6005859375 -196 L-407.3994140625 -196 L-407.3994140625 145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-167.9781036376953 -121 L-167.9781036376953 220 L589.0219116210938 220 L589.0219116210938 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-173.45860290527344 -121 L-173.45860290527344 220 L583.5413818359375 220 L583.5413818359375 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-178.93899536132812 -121 L-178.93899536132812 220 L578.0609741210938 220 L578.0609741210938 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-238.02639770507812 -121 L-238.02639770507812 220 L518.9735717773438 220 L518.9735717773438 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-241.60360717773438 -121 L-241.60360717773438 220 L515.3964233398438 220 L515.3964233398438 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-279.6094055175781 -121 L-279.6094055175781 220 L477.3905944824219 220 L477.3905944824219 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-283.08990478515625 -121 L-283.08990478515625 220 L473.91009521484375 220 L473.91009521484375 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-290.04541015625 -121 L-290.04541015625 220 L466.95458984375 220 L466.95458984375 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M664.43017578125 106 L664.43017578125 -235 L-92.5698013305664 -235 L-92.5698013305664 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-405.02130126953125 -82 L-405.02130126953125 259 L351.97869873046875 259 L351.97869873046875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-410.5018005371094 -82 L-410.5018005371094 259 L346.4981994628906 259 L346.4981994628906 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-415.9822082519531 -82 L-415.9822082519531 259 L341.0177917480469 259 L341.0177917480469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-488.948486328125 -82 L-488.948486328125 259 L268.051513671875 259 L268.051513671875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-501.173095703125 -82 L-501.173095703125 259 L255.826904296875 259 L255.826904296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-567.2161254882812 -82 L-567.2161254882812 259 L189.78390502929688 259 L189.78390502929688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-570.793212890625 -82 L-570.793212890625 259 L186.20680236816406 259 L186.20680236816406 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-615.432373046875 -82 L-615.432373046875 259 L141.56759643554688 259 L141.56759643554688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M664.43017578125 176 L664.43017578125 -165 L-92.5698013305664 -165 L-92.5698013305664 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-373.0712890625 -152 L-373.0712890625 189 L383.9287109375 189 L383.9287109375 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-378.5517883300781 -152 L-378.5517883300781 189 L378.4482116699219 189 L378.4482116699219 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-384.0321960449219 -152 L-384.0321960449219 189 L372.9678039550781 189 L372.9678039550781 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-458.8623046875 -152 L-458.8623046875 189 L298.1376953125 189 L298.1376953125 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-471.0869140625 -152 L-471.0869140625 189 L285.9130859375 189 L285.9130859375 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-583.05810546875 -152 L-583.05810546875 189 L173.94189453125 189 L173.94189453125 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-586.6351928710938 -152 L-586.6351928710938 189 L170.36480712890625 189 L170.36480712890625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-647.38232421875 -152 L-647.38232421875 189 L109.6176986694336 189 L109.6176986694336 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M349.6005859375 215 L349.6005859375 -126 L-407.3994140625 -126 L-407.3994140625 215 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-143.06689453125 -191 L-143.06689453125 150 L613.93310546875 150 L613.93310546875 -191 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-148.54739379882812 -191 L-148.54739379882812 150 L608.4525756835938 150 L608.4525756835938 -191 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-154.02780151367188 -191 L-154.02780151367188 150 L602.9722290039062 150 L602.9722290039062 -191 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-213.11520385742188 -191 L-213.11520385742188 150 L543.8848266601562 150 L543.8848266601562 -191 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-216.69239807128906 -191 L-216.69239807128906 150 L540.3076171875 150 L540.3076171875 -191 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-254.6981964111328 -191 L-254.6981964111328 150 L502.3017883300781 150 L502.3017883300781 -191 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-258.1787109375 -191 L-258.1787109375 150 L498.8212890625 150 L498.8212890625 -191 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-314.9565124511719 -191 L-314.9565124511719 150 L442.0434875488281 150 L442.0434875488281 -191 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M664.43017578125 246 L664.43017578125 -95 L-92.5698013305664 -95 L-92.5698013305664 246 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M-373.0712890625 -222 L-373.0712890625 119 L383.9287109375 119 L383.9287109375 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-378.5517883300781 -222 L-378.5517883300781 119 L378.4482116699219 119 L378.4482116699219 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
<path d="M-384.0321960449219 -222 L-384.0321960449219 119 L372.9678039550781 119 L372.9678039550781 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
<path d="M-458.8623046875 -222 L-458.8623046875 119 L298.1376953125 119 L298.1376953125 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
<path d="M-471.0869140625 -222 L-471.0869140625 119 L285.9130859375 119 L285.9130859375 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
<path d="M-583.05810546875 -222 L-583.05810546875 119 L173.94189453125 119 L173.94189453125 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
<path d="M-586.6351928710938 -222 L-586.6351928710938 119 L170.36480712890625 119 L170.36480712890625 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
<path d="M-647.38232421875 -222 L-647.38232421875 119 L109.6176986694336 119 L109.6176986694336 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
<path d="M349.6005859375 285 L349.6005859375 -56 L-407.3994140625 -56 L-407.3994140625 285 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath75">
<path d="M-191.0684051513672 -261 L-191.0684051513672 80 L565.9315795898438 80 L565.9315795898438 -261 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath76">
<path d="M-196.5489044189453 -261 L-196.5489044189453 80 L560.4511108398438 80 L560.4511108398438 -261 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath77">
<path d="M-202.029296875 -261 L-202.029296875 80 L554.970703125 80 L554.970703125 -261 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath78">
<path d="M-263.3778991699219 -261 L-263.3778991699219 80 L493.6221008300781 80 L493.6221008300781 -261 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath79">
<path d="M-266.9551086425781 -261 L-266.9551086425781 80 L490.0448913574219 80 L490.0448913574219 -261 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath80">
<path d="M664.43017578125 316 L664.43017578125 -25 L-92.5698013305664 -25 L-92.5698013305664 316 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath81">
<path d="M-408.0263977050781 -292 L-408.0263977050781 49 L348.9736022949219 49 L348.9736022949219 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath82">
<path d="M-413.50689697265625 -292 L-413.50689697265625 49 L343.49310302734375 49 L343.49310302734375 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath83">
<path d="M-418.9873046875 -292 L-418.9873046875 49 L338.0126953125 49 L338.0126953125 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath84">
<path d="M-534.02001953125 -292 L-534.02001953125 49 L222.97999572753906 49 L222.97999572753906 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath85">
<path d="M-537.5972290039062 -292 L-537.5972290039062 49 L219.40280151367188 49 L219.40280151367188 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath86">
<path d="M-612.4271850585938 -292 L-612.4271850585938 49 L144.5727996826172 49 L144.5727996826172 -292 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 307.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,292,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 307.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 307.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,298,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,335.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,338.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,349.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,349.6006,145)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,349.6006,215)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath13)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,349.6006,285)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath14)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,592,10)">
<path d="M77.9301986694336 0.5 L77.9301986694336 320.5" stroke="none" clip-path="url(#clipPath15)" />
<path d="M77.9301986694336 0.5 L77.9301986694336 320.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath15)" fill="none" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath15)" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,598,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">local storage</text>
<line x1="0" y1="12.5" x2="68.34716796875" y2="12.5" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,666.3472,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,669.8276,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath18)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,664.4302,106)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 224.5 L0.5 224.5 Z" stroke="none" clip-path="url(#clipPath19)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 224.5 L0.5 224.5 Z" stroke="black" clip-path="url(#clipPath19)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L267.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath20)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,267.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath20)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,267.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,123.80619999999999,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,129.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,134.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,207.73340000000002,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,219.958,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,286.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,289.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,334.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 155 L267.6005859375 155" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath29)" transform="matrix(-1,1.3211653993039363E-14,-1.3211653993039363E-14,-1,267.6006,155)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath29)" fill="none" stroke-linecap="square" transform="matrix(-1,1.3211653993039363E-14,-1.3211653993039363E-14,-1,267.6006,155)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,167.97809999999998,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,173.4586,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,178.939,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">playPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,238.0264,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,241.6036,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,279.6094,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,283.0899,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">0</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,290.0454,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M277.6005859375 116 L582.43017578125 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath38)" transform="matrix(-1,-2.3314683517128287E-15,2.3314683517128287E-15,-1,582.4302,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath38)" fill="none" stroke-linecap="square" transform="matrix(-1,-2.3314683517128287E-15,2.3314683517128287E-15,-1,582.4302,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,405.0213,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,410.5018,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,415.9822,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,488.94849999999997,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,501.1731,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,567.2161,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,570.7932,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,615.4323999999999,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M277.6005859375 186 L582.43017578125 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath47)" transform="matrix(-1,1.3156142841808105E-14,-1.3156142841808105E-14,-1,582.4302,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath47)" fill="none" stroke-linecap="square" transform="matrix(-1,1.3156142841808105E-14,-1.3156142841808105E-14,-1,582.4302,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,373.0713,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,378.5518,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,384.0322,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">rawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,458.8623,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,471.0869,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">accessRawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,583.0581,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,586.6351999999999,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,647.3823,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 225 L267.6005859375 225" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath56)" transform="matrix(-1,-8.798517470154366E-15,8.798517470154366E-15,-1,267.6006,225)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath56)" fill="none" stroke-linecap="square" transform="matrix(-1,-8.798517470154366E-15,8.798517470154366E-15,-1,267.6006,225)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,143.0669,191)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath57)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,148.5474,191)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,154.0278,191)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath59)">playPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,213.11520000000002,191)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath60)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,216.69240000000002,191)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath61)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,254.6982,191)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath62)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,258.1787,191)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath63)">seekOffset</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,314.9565,191)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath64)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M277.6005859375 256 L582.43017578125 256" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath65)" transform="matrix(-1,1.2323475573339238E-14,-1.2323475573339238E-14,-1,582.4302,256)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath65)" fill="none" stroke-linecap="square" transform="matrix(-1,1.2323475573339238E-14,-1.2323475573339238E-14,-1,582.4302,256)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,373.0713,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath66)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,378.5518,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath67)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,384.0322,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath68)">rawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,458.8623,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath69)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,471.0869,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath70)">accessRawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,583.0581,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath71)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,586.6351999999999,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath72)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,647.3823,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath73)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 295 L267.6005859375 295" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath74)" transform="matrix(-0.9999999999999999,-1.3447576385772209E-14,1.3447576385772209E-14,-0.9999999999999999,267.6006,295)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath74)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-1.3447576385772209E-14,1.3447576385772209E-14,-0.9999999999999999,267.6006,295)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,191.0684,261)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath75)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,196.5489,261)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath76)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,202.0293,261)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath77)">stopPlaying</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,263.3779,261)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath78)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,266.9551,261)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath79)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M277.6005859375 326 L582.43017578125 326" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath80)" transform="matrix(-1,-1.2545520178264269E-14,1.2545520178264269E-14,-1,582.4302,326)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath80)" fill="none" stroke-linecap="square" transform="matrix(-1,-1.2545520178264269E-14,1.2545520178264269E-14,-1,582.4302,326)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408.0264,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath81)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,413.50690000000003,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath82)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,418.9873,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath83)">releaseRawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,534.02,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath84)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,537.5972,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath85)">rawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,612.4272,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath86)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 54 KiB

View file

@ -1,271 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 211 L456 211 L456 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 201 L538 201 L538 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 191 L436 191 L436 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 159 L525.5828247070312 159 L525.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 159 L427.7160949707031 159 L427.7160949707031 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 159 L424.235595703125 159 L424.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-402 -10 L-402 191 L136 191 L136 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-408 -16 L-408 185 L130 185 L130 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-445.4740905761719 -16 L-445.4740905761719 185 L92.5259017944336 185 L92.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-448.95458984375 -16 L-448.95458984375 185 L89.04540252685547 185 L89.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-459.6005859375 -75 L-459.6005859375 126 L78.39939880371094 126 L78.39939880371094 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M459.6005859375 75 L459.6005859375 -126 L-78.39939880371094 -126 L-78.39939880371094 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-178.8061981201172 -51 L-178.8061981201172 150 L359.19378662109375 150 L359.19378662109375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-184.2866973876953 -51 L-184.2866973876953 150 L353.7132873535156 150 L353.7132873535156 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-189.76710510253906 -51 L-189.76710510253906 150 L348.23291015625 150 L348.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-262.7333984375 -51 L-262.7333984375 150 L275.2666015625 150 L275.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-274.9580078125 -51 L-274.9580078125 150 L263.0419921875 150 L263.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-341.0010070800781 -51 L-341.0010070800781 150 L196.99899291992188 150 L196.99899291992188 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-344.5780944824219 -51 L-344.5780944824219 150 L193.42190551757812 150 L193.42190551757812 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-389.21728515625 -51 L-389.21728515625 150 L148.78269958496094 150 L148.78269958496094 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M459.6005859375 110 L459.6005859375 -91 L-78.39939880371094 -91 L-78.39939880371094 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-194.21319580078125 -86 L-194.21319580078125 115 L343.78680419921875 115 L343.78680419921875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-199.69369506835938 -86 L-199.69369506835938 115 L338.3063049316406 115 L338.3063049316406 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-205.17410278320312 -86 L-205.17410278320312 115 L332.8258972167969 115 L332.8258972167969 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-298.652587890625 -86 L-298.652587890625 115 L239.34739685058594 115 L239.34739685058594 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-302.22979736328125 -86 L-302.22979736328125 115 L235.77020263671875 115 L235.77020263671875 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-373.810302734375 -86 L-373.810302734375 115 L164.189697265625 115 L164.189697265625 -86 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M459.6005859375 145 L459.6005859375 -56 L-78.39939880371094 -56 L-78.39939880371094 145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-185.67849731445312 -121 L-185.67849731445312 80 L352.3215026855469 80 L352.3215026855469 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-191.15899658203125 -121 L-191.15899658203125 80 L346.84100341796875 80 L346.84100341796875 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-196.639404296875 -121 L-196.639404296875 80 L341.360595703125 80 L341.360595703125 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-307.1872863769531 -121 L-307.1872863769531 80 L230.8126983642578 80 L230.8126983642578 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-310.764404296875 -121 L-310.764404296875 80 L227.235595703125 80 L227.235595703125 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-382.3450012207031 -121 L-382.3450012207031 80 L155.65499877929688 80 L155.65499877929688 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M459.6005859375 180 L459.6005859375 -21 L-78.39939880371094 -21 L-78.39939880371094 180 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-187.8726043701172 -156 L-187.8726043701172 45 L350.1274108886719 45 L350.1274108886719 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-193.3531036376953 -156 L-193.3531036376953 45 L344.64691162109375 45 L344.64691162109375 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-198.83349609375 -156 L-198.83349609375 45 L339.16650390625 45 L339.16650390625 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-304.9931945800781 -156 L-304.9931945800781 45 L233.00680541992188 45 L233.00680541992188 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-308.5703125 -156 L-308.5703125 45 L229.42970275878906 45 L229.42970275878906 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-380.1509094238281 -156 L-380.1509094238281 45 L157.84910583496094 45 L157.84910583496094 -156 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 171.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,402,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 180.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 180.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,445.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,448.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,459.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 115.5 L0.5 115.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 115.5 L0.5 115.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L377.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,377.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,377.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,178.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,184.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,189.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,262.7334,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,274.95799999999997,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,341.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,344.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,389.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 120 L377.6005859375 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,377.6006,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-6.328271240363392E-15,6.328271240363392E-15,-1,377.6006,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,194.2132,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,199.6937,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,205.1741,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">addConfiguration</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,298.6526,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,302.2298,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">configuration</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,373.8103,86)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 155 L377.6005859375 155" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath28)" transform="matrix(-1,1.2739809207573671E-14,-1.2739809207573671E-14,-1,377.6006,155)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath28)" fill="none" stroke-linecap="square" transform="matrix(-1,1.2739809207573671E-14,-1.2739809207573671E-14,-1,377.6006,155)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,185.67849999999999,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,191.159,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,196.6394,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">updateConfiguration</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,307.1873,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,310.7644,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">configuration</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,382.345,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 190 L377.6005859375 190" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath35)" transform="matrix(-1,6.078471059822732E-15,-6.078471059822732E-15,-1,377.6006,190)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath35)" fill="none" stroke-linecap="square" transform="matrix(-1,6.078471059822732E-15,-6.078471059822732E-15,-1,377.6006,190)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,187.8726,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,193.3531,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,198.83350000000002,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">deleteConfiguration</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,304.9932,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,308.57030000000003,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">configuration</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,380.1509,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 26 KiB

View file

@ -1,488 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 271 L873 271 L873 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 261 L955 261 L955 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 251 L853 251 L853 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 219 L942.5828247070312 219 L942.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 219 L844.7161254882812 219 L844.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 219 L841.235595703125 219 L841.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-292 -10 L-292 251 L663 251 L663 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-298 -16 L-298 245 L657 245 L657 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-335.4740905761719 -16 L-335.4740905761719 245 L619.52587890625 245 L619.52587890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-338.95458984375 -16 L-338.95458984375 245 L616.04541015625 245 L616.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-349.6005859375 -75 L-349.6005859375 186 L605.3994140625 186 L605.3994140625 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-349.6005859375 -180 L-349.6005859375 81 L605.3994140625 81 L605.3994140625 -180 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-522 -10 L-522 251 L433 251 L433 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-528 -16 L-528 245 L427 245 L427 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-596.3472290039062 -16 L-596.3472290039062 245 L358.6528015136719 245 L358.6528015136719 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-599.8275756835938 -16 L-599.8275756835938 245 L355.1723937988281 245 L355.1723937988281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-594.43017578125 -141 L-594.43017578125 120 L360.5697937011719 120 L360.5697937011719 -141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-782 -10 L-782 251 L173 251 L173 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-788 -16 L-788 245 L167 245 L167 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-862.0941772460938 -16 L-862.0941772460938 245 L92.90579986572266 245 L92.90579986572266 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-865.57470703125 -16 L-865.57470703125 245 L89.42530059814453 245 L89.42530059814453 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-858.43701171875 -106 L-858.43701171875 155 L96.56300354003906 155 L96.56300354003906 -106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M349.6005859375 75 L349.6005859375 -186 L-605.3994140625 -186 L-605.3994140625 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-123.80619812011719 -51 L-123.80619812011719 210 L831.1937866210938 210 L831.1937866210938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-129.2866973876953 -51 L-129.2866973876953 210 L825.7133178710938 210 L825.7133178710938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-134.76710510253906 -51 L-134.76710510253906 210 L820.23291015625 210 L820.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-207.7333984375 -51 L-207.7333984375 210 L747.2666015625 210 L747.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-219.95799255371094 -51 L-219.95799255371094 210 L735.0419921875 210 L735.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-286.0010070800781 -51 L-286.0010070800781 210 L668.9990234375 210 L668.9990234375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-289.5780944824219 -51 L-289.5780944824219 210 L665.421875 210 L665.421875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-334.21728515625 -51 L-334.21728515625 210 L620.78271484375 210 L620.78271484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M594.43017578125 141 L594.43017578125 -120 L-360.5697937011719 -120 L-360.5697937011719 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-367.52130126953125 -117 L-367.52130126953125 144 L587.4786987304688 144 L587.4786987304688 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-373.0018005371094 -117 L-373.0018005371094 144 L581.9982299804688 144 L581.9982299804688 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-378.4822082519531 -117 L-378.4822082519531 144 L576.517822265625 144 L576.517822265625 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-451.448486328125 -117 L-451.448486328125 144 L503.551513671875 144 L503.551513671875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-463.673095703125 -117 L-463.673095703125 144 L491.326904296875 144 L491.326904296875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-529.7161254882812 -117 L-529.7161254882812 144 L425.2839050292969 144 L425.2839050292969 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-533.293212890625 -117 L-533.293212890625 144 L421.706787109375 144 L421.706787109375 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-577.932373046875 -117 L-577.932373046875 144 L377.0675964355469 144 L377.0675964355469 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M349.6005859375 180 L349.6005859375 -81 L-605.3994140625 -81 L-605.3994140625 180 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-109.49759674072266 -156 L-109.49759674072266 105 L845.5023803710938 105 L845.5023803710938 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-114.97810363769531 -156 L-114.97810363769531 105 L840.0219116210938 105 L840.0219116210938 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-120.45850372314453 -156 L-120.45850372314453 105 L834.54150390625 105 L834.54150390625 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-284.2016906738281 -156 L-284.2016906738281 105 L670.7982788085938 105 L670.7982788085938 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-287.77880859375 -156 L-287.77880859375 105 L667.22119140625 105 L667.22119140625 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-348.5259094238281 -156 L-348.5259094238281 105 L606.47412109375 105 L606.47412109375 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M858.43701171875 106 L858.43701171875 -155 L-96.56300354003906 -155 L-96.56300354003906 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-616.7913818359375 -83 L-616.7913818359375 178 L338.2085876464844 178 L338.2085876464844 -83 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-622.2719116210938 -83 L-622.2719116210938 178 L332.72808837890625 178 L332.72808837890625 -83 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-627.7523193359375 -83 L-627.7523193359375 178 L327.2477111816406 178 L327.2477111816406 -83 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-700.7186279296875 -83 L-700.7186279296875 178 L254.28140258789062 178 L254.28140258789062 -83 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-712.9431762695312 -83 L-712.9431762695312 178 L242.05679321289062 178 L242.05679321289062 -83 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-778.9862060546875 -83 L-778.9862060546875 178 L176.0137939453125 178 L176.0137939453125 -83 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-782.5632934570312 -83 L-782.5632934570312 178 L172.43670654296875 178 L172.43670654296875 -83 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-827.2025146484375 -83 L-827.2025146484375 178 L127.79750061035156 178 L127.79750061035156 -83 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M858.43701171875 211 L858.43701171875 -50 L-96.56300354003906 -50 L-96.56300354003906 211 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-609.5234985351562 -187 L-609.5234985351562 74 L345.47650146484375 74 L345.47650146484375 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-615.0040283203125 -187 L-615.0040283203125 74 L339.9960021972656 74 L339.9960021972656 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-620.484375 -187 L-620.484375 74 L334.5155944824219 74 L334.5155944824219 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-671.1392211914062 -187 L-671.1392211914062 74 L283.8608093261719 74 L283.8608093261719 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-683.36376953125 -187 L-683.36376953125 74 L271.6361999511719 74 L271.6361999511719 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-775.90771484375 -187 L-775.90771484375 74 L179.09230041503906 74 L179.09230041503906 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-779.4849243164062 -187 L-779.4849243164062 74 L175.51510620117188 74 L175.51510620117188 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-840.2319946289062 -187 L-840.2319946289062 74 L114.76799774169922 74 L114.76799774169922 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M594.43017578125 246 L594.43017578125 -15 L-360.5697937011719 -15 L-360.5697937011719 246 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-364.0058898925781 -222 L-364.0058898925781 39 L590.9940795898438 39 L590.9940795898438 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
<path d="M-369.48638916015625 -222 L-369.48638916015625 39 L585.5136108398438 39 L585.5136108398438 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
<path d="M-374.966796875 -222 L-374.966796875 39 L580.033203125 39 L580.033203125 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
<path d="M-435.7138977050781 -222 L-435.7138977050781 39 L519.2860717773438 39 L519.2860717773438 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
<path d="M-447.9385070800781 -222 L-447.9385070800781 39 L507.0614929199219 39 L507.0614929199219 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
<path d="M-527.2158203125 -222 L-527.2158203125 39 L427.7842102050781 39 L427.7842102050781 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
<path d="M-530.7930297851562 -222 L-530.7930297851562 39 L424.2070007324219 39 L424.2070007324219 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
<path d="M-581.4478149414062 -222 L-581.4478149414062 39 L373.55218505859375 39 L373.55218505859375 -222 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 237.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,292,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 237.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 237.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,298,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,335.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,338.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,349.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,349.6006,180)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,522,10)">
<path d="M77.9301986694336 0.5 L77.9301986694336 240.5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M77.9301986694336 0.5 L77.9301986694336 240.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath13)" fill="none" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,528,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">local storage</text>
<line x1="0" y1="12.5" x2="68.34716796875" y2="12.5" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,596.3472,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,599.8276,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,594.4302,141)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 109.5 L0.5 109.5 Z" stroke="none" clip-path="url(#clipPath17)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 109.5 L0.5 109.5 Z" stroke="black" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,782,10)">
<path d="M81.93699645996094 0.5 L81.93699645996094 237.5" stroke="none" clip-path="url(#clipPath18)" />
<path d="M81.93699645996094 0.5 L81.93699645996094 237.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath18)" fill="none" />
<path d="M0.5 0.5 L162.37399291992188 0.5 L162.37399291992188 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath18)" />
<path d="M0.5 0.5 L162.37399291992188 0.5 L162.37399291992188 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath18)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,788,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">media archive</text>
<line x1="0" y1="12.5" x2="74.09423828125" y2="12.5" clip-path="url(#clipPath19)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,862.0942,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath20)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,865.5747,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath21)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,858.437,106)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 141.5 L0.5 141.5 Z" stroke="none" clip-path="url(#clipPath22)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 141.5 L0.5 141.5 Z" stroke="black" clip-path="url(#clipPath22)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L267.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath23)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,267.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath23)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,267.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,123.80619999999999,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,129.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,134.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,207.73340000000002,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,219.958,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,286.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,289.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,334.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M272.6005859375 151 L512.43017578125 151" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath32)" transform="matrix(-1,6.106226635438361E-15,-6.106226635438361E-15,-1,512.4302,151)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath32)" fill="none" stroke-linecap="square" transform="matrix(-1,6.106226635438361E-15,-6.106226635438361E-15,-1,512.4302,151)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,367.5213,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,373.0018,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,378.4822,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,451.44849999999997,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,463.6731,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,529.7161,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,533.2932,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,577.9323999999999,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 190 L267.6005859375 190" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath41)" transform="matrix(-1,6.078471059822732E-15,-6.078471059822732E-15,-1,267.6006,190)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath41)" fill="none" stroke-linecap="square" transform="matrix(-1,6.078471059822732E-15,-6.078471059822732E-15,-1,267.6006,190)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,109.4976,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,114.97810000000001,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,120.4585,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">mirrorAudioClipInLocalStorage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,284.2017,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,287.7788,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,348.5259,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M277.6005859375 116 L776.43701171875 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath48)" transform="matrix(-1,-2.3314683517128287E-15,2.3314683517128287E-15,-1,776.437,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath48)" fill="none" stroke-linecap="square" transform="matrix(-1,-2.3314683517128287E-15,2.3314683517128287E-15,-1,776.437,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,616.7914,83)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,622.2719,83)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,627.7523,83)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,700.7186,83)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,712.9431999999999,83)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,778.9862,83)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,782.5633,83)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,827.2025,83)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M277.6005859375 221 L776.43701171875 221" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath57)" transform="matrix(-0.9999999999999999,6.106226635438358E-15,-6.106226635438358E-15,-0.9999999999999999,776.437,221)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath57)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,6.106226635438358E-15,-6.106226635438358E-15,-0.9999999999999999,776.437,221)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,609.5235,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,615.004,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath59)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,620.4844,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath60)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,671.1392000000001,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath61)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,683.3638000000001,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath62)">retrieveAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,775.9077000000001,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath63)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,779.4849,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath64)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,840.2320000000001,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath65)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M272.6005859375 256 L512.43017578125 256" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath66)" transform="matrix(-1,-5.88418203051333E-15,5.88418203051333E-15,-1,512.4302,256)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath66)" fill="none" stroke-linecap="square" transform="matrix(-1,-5.88418203051333E-15,5.88418203051333E-15,-1,512.4302,256)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,364.0059,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath67)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,369.4864,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath68)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,374.9668,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath69)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,435.71389999999997,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath70)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,447.9385,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath71)">storeAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,527.2158,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath72)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,530.793,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath73)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,581.4477999999999,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath74)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 47 KiB

View file

@ -1,275 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 181 L496 181 L496 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 171 L578 171 L578 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 161 L476 161 L476 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 129 L565.5828247070312 129 L565.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 129 L467.7160949707031 129 L467.7160949707031 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 129 L464.235595703125 129 L464.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-442 -10 L-442 161 L136 161 L136 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-448 -16 L-448 155 L130 155 L130 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-485.4740905761719 -16 L-485.4740905761719 155 L92.5259017944336 155 L92.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-488.95458984375 -16 L-488.95458984375 155 L89.04540252685547 155 L89.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-499.6005859375 -75 L-499.6005859375 96 L78.39939880371094 96 L78.39939880371094 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M499.6005859375 75 L499.6005859375 -96 L-78.39939880371094 -96 L-78.39939880371094 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-198.8061981201172 -51 L-198.8061981201172 120 L379.19378662109375 120 L379.19378662109375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-204.2866973876953 -51 L-204.2866973876953 120 L373.7132873535156 120 L373.7132873535156 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-209.76710510253906 -51 L-209.76710510253906 120 L368.23291015625 120 L368.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-282.7333984375 -51 L-282.7333984375 120 L295.2666015625 120 L295.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-294.9580078125 -51 L-294.9580078125 120 L283.0419921875 120 L283.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-361.0010070800781 -51 L-361.0010070800781 120 L216.99899291992188 120 L216.99899291992188 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-364.5780944824219 -51 L-364.5780944824219 120 L213.42190551757812 120 L213.42190551757812 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-409.21728515625 -51 L-409.21728515625 120 L168.78269958496094 120 L168.78269958496094 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M499.6005859375 110 L499.6005859375 -61 L-78.39939880371094 -61 L-78.39939880371094 110 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-117.26809692382812 -85 L-117.26809692382812 86 L460.7319030761719 86 L460.7319030761719 -85 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-123.06500244140625 -85 L-123.06500244140625 86 L454.93499755859375 86 L454.93499755859375 -85 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-128.8618927001953 -85.5 L-128.8618927001953 85.5 L449.1380920410156 85.5 L449.1380920410156 -85.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-307.68170166015625 -85.5 L-307.68170166015625 85.5 L270.31829833984375 85.5 L270.31829833984375 -85.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-311.2589111328125 -85.5 L-311.2589111328125 85.5 L266.7410888671875 85.5 L266.7410888671875 -85.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-349.26470947265625 -85.5 L-349.26470947265625 85.5 L228.7353057861328 85.5 L228.7353057861328 -85.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-352.7452087402344 -85.5 L-352.7452087402344 85.5 L225.2548065185547 85.5 L225.2548065185547 -85.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-433.3598937988281 -85.5 L-433.3598937988281 85.5 L144.64010620117188 85.5 L144.64010620117188 -85.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-436.84039306640625 -85.5 L-436.84039306640625 85.5 L141.15960693359375 85.5 L141.15960693359375 -85.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-490.7554931640625 -85.5 L-490.7554931640625 85.5 L87.24449920654297 85.5 L87.24449920654297 -85.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M499.6005859375 145 L499.6005859375 -26 L-78.39939880371094 -26 L-78.39939880371094 145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-132.18089294433594 -120 L-132.18089294433594 51 L445.819091796875 51 L445.819091796875 -120 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-137.97779846191406 -120 L-137.97779846191406 51 L440.0221862792969 51 L440.0221862792969 -120 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-143.7747039794922 -120.5 L-143.7747039794922 50.5 L434.2253112792969 50.5 L434.2253112792969 -120.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-296.9367980957031 -120.5 L-296.9367980957031 50.5 L281.0632019042969 50.5 L281.0632019042969 -120.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-300.5140075683594 -120.5 L-300.5140075683594 50.5 L277.4859924316406 50.5 L277.4859924316406 -120.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-338.5198059082031 -120.5 L-338.5198059082031 50.5 L239.48019409179688 50.5 L239.48019409179688 -120.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-342.00030517578125 -120.5 L-342.00030517578125 50.5 L235.99969482421875 50.5 L235.99969482421875 -120.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-422.614990234375 -120.5 L-422.614990234375 50.5 L155.38499450683594 50.5 L155.38499450683594 -120.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-426.0954895019531 -120.5 L-426.0954895019531 50.5 L151.9044952392578 50.5 L151.9044952392578 -120.5 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-475.84259033203125 -120.5 L-475.84259033203125 50.5 L102.15740203857422 50.5 L102.15740203857422 -120.5 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 136.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,442,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 150.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 150.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,448,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,485.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,488.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,499.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 85.5 L0.5 85.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 85.5 L0.5 85.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L417.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,0,0,-1,417.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,417.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,198.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,204.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,209.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,282.7334,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,294.95799999999997,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,361.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,364.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,409.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 120 L417.6005859375 120" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,0,0,-1,417.6006,120)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,417.6006,120)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,117.2681,85)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,123.065,85)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,128.8619,85.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">updateAudioClipPositionInPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,307.6817,85.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,311.2589,85.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,349.2647,85.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,352.74519999999995,85.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">playlistElement</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,433.3599,85.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,436.8404,85.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">newOffset</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,490.7555,85.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 155 L417.6005859375 155" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath32)" transform="matrix(-1,0,0,-1,417.6006,155)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath32)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,417.6006,155)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,132.1809,120)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,137.9778,120)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,143.7747,120.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">moveAudioClipToOtherLayer</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,296.9368,120.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300.514,120.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,338.51980000000003,120.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,342.0003,120.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">playlistElement</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,422.615,120.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,426.0955,120.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">newLayer</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,475.8426,120.5)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 26 KiB

View file

@ -1,532 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 322 L833 322 L833 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 312 L915 312 L915 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 302 L813 302 L813 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 270 L902.5828247070312 270 L902.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 270 L804.7161254882812 270 L804.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 270 L801.235595703125 270 L801.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-107 -281 L-107 31 L808 31 L808 -281 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-292 -10 L-292 302 L623 302 L623 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-298 -16 L-298 296 L617 296 L617 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-335.4740905761719 -16 L-335.4740905761719 296 L579.52587890625 296 L579.52587890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-338.95458984375 -16 L-338.95458984375 296 L576.04541015625 296 L576.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-349.6005859375 -75 L-349.6005859375 237 L565.3994140625 237 L565.3994140625 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-349.6005859375 -180 L-349.6005859375 132 L565.3994140625 132 L565.3994140625 -180 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-502 -10 L-502 302 L413 302 L413 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-508 -16 L-508 296 L407 296 L407 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-576.3472290039062 -16 L-576.3472290039062 296 L338.6528015136719 296 L338.6528015136719 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-579.8275756835938 -16 L-579.8275756835938 296 L335.1723937988281 296 L335.1723937988281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-574.43017578125 -106 L-574.43017578125 206 L340.56982421875 206 L340.56982421875 -106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-742 -10 L-742 302 L173 302 L173 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-748 -16 L-748 296 L167 296 L167 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-822.0941772460938 -16 L-822.0941772460938 296 L92.90579986572266 296 L92.90579986572266 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-825.57470703125 -16 L-825.57470703125 296 L89.42530059814453 296 L89.42530059814453 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-818.43701171875 -141 L-818.43701171875 171 L96.56300354003906 171 L96.56300354003906 -141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M349.6005859375 75 L349.6005859375 -237 L-565.3994140625 -237 L-565.3994140625 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-123.80619812011719 -51 L-123.80619812011719 261 L791.1937866210938 261 L791.1937866210938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-129.2866973876953 -51 L-129.2866973876953 261 L785.7133178710938 261 L785.7133178710938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-134.76710510253906 -51 L-134.76710510253906 261 L780.23291015625 261 L780.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-207.7333984375 -51 L-207.7333984375 261 L707.2666015625 261 L707.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-219.95799255371094 -51 L-219.95799255371094 261 L695.0419921875 261 L695.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-286.0010070800781 -51 L-286.0010070800781 261 L628.9990234375 261 L628.9990234375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-289.5780944824219 -51 L-289.5780944824219 261 L625.421875 261 L625.421875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-334.21728515625 -51 L-334.21728515625 261 L580.78271484375 261 L580.78271484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M574.43017578125 106 L574.43017578125 -206 L-340.5697937011719 -206 L-340.5697937011719 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-360.02130126953125 -82 L-360.02130126953125 230 L554.9786987304688 230 L554.9786987304688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-365.5018005371094 -82 L-365.5018005371094 230 L549.4982299804688 230 L549.4982299804688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-370.9822082519531 -82 L-370.9822082519531 230 L544.017822265625 230 L544.017822265625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-443.948486328125 -82 L-443.948486328125 230 L471.051513671875 230 L471.051513671875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-456.173095703125 -82 L-456.173095703125 230 L458.826904296875 230 L458.826904296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-522.2161254882812 -82 L-522.2161254882812 230 L392.7839050292969 230 L392.7839050292969 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-525.793212890625 -82 L-525.793212890625 230 L389.206787109375 230 L389.206787109375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-570.432373046875 -82 L-570.432373046875 230 L344.5675964355469 230 L344.5675964355469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M818.43701171875 141 L818.43701171875 -171 L-96.56300354003906 -171 L-96.56300354003906 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-587.5245971679688 -119 L-587.5245971679688 193 L327.47540283203125 193 L327.47540283203125 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-593.005126953125 -119 L-593.005126953125 193 L321.9949035644531 193 L321.9949035644531 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-598.4854736328125 -119 L-598.4854736328125 193 L316.5144958496094 193 L316.5144958496094 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-671.4517822265625 -119 L-671.4517822265625 193 L243.54820251464844 193 L243.54820251464844 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-683.6763916015625 -119 L-683.6763916015625 193 L231.32359313964844 193 L231.32359313964844 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-749.7194213867188 -119 L-749.7194213867188 193 L165.2805938720703 193 L165.2805938720703 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-753.2965087890625 -119 L-753.2965087890625 193 L161.70350646972656 193 L161.70350646972656 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-797.9357299804688 -119 L-797.9357299804688 193 L117.06430053710938 193 L117.06430053710938 -119 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M349.6005859375 180 L349.6005859375 -132 L-565.3994140625 -132 L-565.3994140625 180 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-121.9208984375 -156 L-121.9208984375 156 L793.0791015625 156 L793.0791015625 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-127.40139770507812 -156 L-127.40139770507812 156 L787.5985717773438 156 L787.5985717773438 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-132.88180541992188 -156 L-132.88180541992188 156 L782.1182250976562 156 L782.1182250976562 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-199.23629760742188 -156 L-199.23629760742188 156 L715.763671875 156 L715.763671875 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-211.46090698242188 -156 L-211.46090698242188 156 L703.5391235351562 156 L703.5391235351562 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-295.21240234375 -156 L-295.21240234375 156 L619.78759765625 156 L619.78759765625 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-298.78948974609375 -156 L-298.78948974609375 156 L616.2105102539062 156 L616.2105102539062 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-336.1025085449219 -156 L-336.1025085449219 156 L578.8975219726562 156 L578.8975219726562 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M574.43017578125 211 L574.43017578125 -101 L-340.5697937011719 -101 L-340.5697937011719 211 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-358.135986328125 -187 L-358.135986328125 125 L556.864013671875 125 L556.864013671875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-363.6164855957031 -187 L-363.6164855957031 125 L551.3834838867188 125 L551.3834838867188 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-369.0968933105469 -187 L-369.0968933105469 125 L545.903076171875 125 L545.903076171875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-435.4513854980469 -187 L-435.4513854980469 125 L479.5486145019531 125 L479.5486145019531 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-447.6759948730469 -187 L-447.6759948730469 125 L467.3240051269531 125 L467.3240051269531 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M-531.427490234375 -187 L-531.427490234375 125 L383.572509765625 125 L383.572509765625 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-535.0045776367188 -187 L-535.0045776367188 125 L379.9953918457031 125 L379.9953918457031 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
<path d="M-572.317626953125 -187 L-572.317626953125 125 L342.6824035644531 125 L342.6824035644531 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
<path d="M818.43701171875 246 L818.43701171875 -66 L-96.56300354003906 -66 L-96.56300354003906 246 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
<path d="M-477.639404296875 -222 L-477.639404296875 90 L437.360595703125 90 L437.360595703125 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
<path d="M-483.1199035644531 -222 L-483.1199035644531 90 L431.8800964355469 90 L431.8800964355469 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
<path d="M-488.6003112792969 -222 L-488.6003112792969 90 L426.3996887207031 90 L426.3996887207031 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
<path d="M-554.9547729492188 -222 L-554.9547729492188 90 L360.0451965332031 90 L360.0451965332031 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
<path d="M-567.1793823242188 -222 L-567.1793823242188 90 L347.8205871582031 90 L347.8205871582031 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath75">
<path d="M-650.930908203125 -222 L-650.930908203125 90 L264.069091796875 90 L264.069091796875 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath76">
<path d="M-654.5079956054688 -222 L-654.5079956054688 90 L260.49200439453125 90 L260.49200439453125 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath77">
<path d="M-691.8209838867188 -222 L-691.8209838867188 90 L223.1790008544922 90 L223.1790008544922 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath78">
<path d="M-151.56350708007812 -257 L-151.56350708007812 55 L763.4365234375 55 L763.4365234375 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath79">
<path d="M-157.04400634765625 -257 L-157.04400634765625 55 L757.9559936523438 55 L757.9559936523438 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath80">
<path d="M-162.52439880371094 -257 L-162.52439880371094 55 L752.4755859375 55 L752.4755859375 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath81">
<path d="M-117 -281 L-117 31 L798 31 L798 -281 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 291.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,107,281)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 20.5 L0.5 20.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 20.5 L0.5 20.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,292,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 291.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 291.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,298,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,335.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,338.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,349.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,349.6006,180)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath13)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,502,10)">
<path d="M77.9301986694336 0.5 L77.9301986694336 291.5" stroke="none" clip-path="url(#clipPath14)" />
<path d="M77.9301986694336 0.5 L77.9301986694336 291.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath14)" fill="none" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath14)" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,508,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">local storage</text>
<line x1="0" y1="12.5" x2="68.34716796875" y2="12.5" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,576.3472,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,579.8276,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,574.43017578125,106)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 195.5 L0.5 195.5 Z" stroke="none" clip-path="url(#clipPath18)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 195.5 L0.5 195.5 Z" stroke="black" clip-path="url(#clipPath18)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,742,10)">
<path d="M81.93699645996094 0.5 L81.93699645996094 291.5" stroke="none" clip-path="url(#clipPath19)" />
<path d="M81.93699645996094 0.5 L81.93699645996094 291.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath19)" fill="none" />
<path d="M0.5 0.5 L162.37399291992188 0.5 L162.37399291992188 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath19)" />
<path d="M0.5 0.5 L162.37399291992188 0.5 L162.37399291992188 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath19)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,748,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">media archive</text>
<line x1="0" y1="12.5" x2="74.09423828125" y2="12.5" clip-path="url(#clipPath20)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,822.0942,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath21)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,825.5747,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath22)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,818.437,141)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 160.5 L0.5 160.5 Z" stroke="none" clip-path="url(#clipPath23)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 160.5 L0.5 160.5 Z" stroke="black" clip-path="url(#clipPath23)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L267.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath24)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,267.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath24)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,267.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,123.80619999999999,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,129.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,134.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,207.73340000000002,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,219.958,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,286.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,289.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,334.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M277.6005859375 116 L492.4302062988281 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath33)" transform="matrix(-1,-2.3314683517128287E-15,2.3314683517128287E-15,-1,492.4302,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath33)" fill="none" stroke-linecap="square" transform="matrix(-1,-2.3314683517128287E-15,2.3314683517128287E-15,-1,492.4302,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,360.0213,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,365.5018,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,370.9822,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,443.94849999999997,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,456.1731,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,522.2161,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,525.7932,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,570.4323999999999,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M272.6005859375 151 L736.43701171875 151" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath42)" transform="matrix(-1,6.106226635438361E-15,-6.106226635438361E-15,-1,736.437,151)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath42)" fill="none" stroke-linecap="square" transform="matrix(-1,6.106226635438361E-15,-6.106226635438361E-15,-1,736.437,151)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,587.5246,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,593.0051,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,598.4855,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,671.4518,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,683.6764000000001,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,749.7194,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,753.2965,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,797.9357,119)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 190 L267.6005859375 190" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath51)" transform="matrix(-1,6.078471059822732E-15,-6.078471059822732E-15,-1,267.6006,190)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath51)" fill="none" stroke-linecap="square" transform="matrix(-1,6.078471059822732E-15,-6.078471059822732E-15,-1,267.6006,190)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,121.9209,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,127.40140000000001,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,132.8818,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">audioClipIds</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,199.2363,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,211.46089999999998,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">searchMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,295.2124,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath57)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,298.7895,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)">criteria</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,336.10249999999996,156)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath59)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M277.6005859375 221 L492.4302062988281 221" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath60)" transform="matrix(-0.9999999999999999,1.404432126150823E-14,-1.404432126150823E-14,-0.9999999999999999,492.4302,221)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath60)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,1.404432126150823E-14,-1.404432126150823E-14,-0.9999999999999999,492.4302,221)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,358.136,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath61)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,363.61650000000003,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath62)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,369.0969,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath63)">audioClipIds</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,435.45140000000004,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath64)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,447.676,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath65)">searchMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,531.4275,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath66)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,535.0046,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath67)">criteria</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,572.3176,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath68)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M272.6005859375 256 L736.43701171875 256" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath69)" transform="matrix(-1,-5.88418203051333E-15,5.88418203051333E-15,-1,736.437,256)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath69)" fill="none" stroke-linecap="square" transform="matrix(-1,-5.88418203051333E-15,5.88418203051333E-15,-1,736.437,256)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,477.6394,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath70)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,483.11990000000003,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath71)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,488.6003,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath72)">audioClipIds</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,554.9548,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath73)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,567.1794,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath74)">searchMetadata</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,650.9309000000001,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath75)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,654.508,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath76)">criteria</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,691.821,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath77)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="10,10" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M272.6005859375 291 L35 291" clip-path="url(#clipPath1)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-dasharray="none" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath78)" stroke-linecap="square" transform="matrix(1,0,0,1,69.5635,267)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,157.044,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath79)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,162.5244,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath80)">return matching AudioClipIds</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,-1.3988810110276972E-14,1.3988810110276972E-14,1,117,281)">
<path d="M10 5 L0 0 L10 -5" clip-path="url(#clipPath81)" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 51 KiB

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 119 KiB

View file

@ -1,363 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 251 L755 251 L755 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 241 L837 241 L837 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-672 -10 L-672 231 L165 231 L165 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-678 -16 L-678 225 L159 225 L159 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-746.3472290039062 -16 L-746.3472290039062 225 L90.65280151367188 225 L90.65280151367188 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-749.8275756835938 -16 L-749.8275756835938 225 L87.17240142822266 225 L87.17240142822266 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-744.43017578125 -106 L-744.43017578125 135 L92.5698013305664 135 L92.5698013305664 -106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-102 -10 L-102 231 L735 231 L735 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-12.417200088500977 -42 L-12.417200088500977 199 L824.5828247070312 199 L824.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-110.28389739990234 -42 L-110.28389739990234 199 L726.7161254882812 199 L726.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-113.76439666748047 -42 L-113.76439666748047 199 L723.235595703125 199 L723.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-442 -10 L-442 231 L395 231 L395 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-448 -16 L-448 225 L389 225 L389 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-485.4740905761719 -16 L-485.4740905761719 225 L351.5259094238281 225 L351.5259094238281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-488.95458984375 -16 L-488.95458984375 225 L348.04541015625 225 L348.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-499.6005859375 -75 L-499.6005859375 166 L337.3994140625 166 L337.3994140625 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-499.6005859375 -145 L-499.6005859375 96 L337.3994140625 96 L337.3994140625 -145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M499.6005859375 75 L499.6005859375 -166 L-337.3994140625 -166 L-337.3994140625 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-198.8061981201172 -51 L-198.8061981201172 190 L638.1937866210938 190 L638.1937866210938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-204.2866973876953 -51 L-204.2866973876953 190 L632.7133178710938 190 L632.7133178710938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-209.76710510253906 -51 L-209.76710510253906 190 L627.23291015625 190 L627.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-282.7333984375 -51 L-282.7333984375 190 L554.2666015625 190 L554.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-294.9580078125 -51 L-294.9580078125 190 L542.0419921875 190 L542.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-361.0010070800781 -51 L-361.0010070800781 190 L475.9989929199219 190 L475.9989929199219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-364.5780944824219 -51 L-364.5780944824219 190 L472.4219055175781 190 L472.4219055175781 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-409.21728515625 -51 L-409.21728515625 190 L427.78271484375 190 L427.78271484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M499.6005859375 145 L499.6005859375 -96 L-337.3994140625 -96 L-337.3994140625 145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-116.41629791259766 -121 L-116.41629791259766 120 L720.5836791992188 120 L720.5836791992188 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-121.89679718017578 -121 L-121.89679718017578 120 L715.1032104492188 120 L715.1032104492188 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-127.377197265625 -121 L-127.377197265625 120 L709.622802734375 120 L709.622802734375 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-294.402099609375 -121 L-294.402099609375 120 L542.597900390625 120 L542.597900390625 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-297.97930908203125 -121 L-297.97930908203125 120 L539.0206909179688 120 L539.0206909179688 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-358.7262878417969 -121 L-358.7262878417969 120 L478.2737121582031 120 L478.2737121582031 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-362.206787109375 -121 L-362.206787109375 120 L474.793212890625 120 L474.793212890625 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-437.0368957519531 -121 L-437.0368957519531 120 L399.9631042480469 120 L399.9631042480469 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-440.5173034667969 -121 L-440.5173034667969 120 L396.4826965332031 120 L396.4826965332031 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-491.6072082519531 -121 L-491.6072082519531 120 L345.3927917480469 120 L345.3927917480469 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M744.43017578125 106 L744.43017578125 -135 L-92.5698013305664 -135 L-92.5698013305664 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-520.0213012695312 -82 L-520.0213012695312 159 L316.97869873046875 159 L316.97869873046875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-525.5017700195312 -82 L-525.5017700195312 159 L311.4981994628906 159 L311.4981994628906 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-530.982177734375 -82 L-530.982177734375 159 L306.0177917480469 159 L306.0177917480469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-603.948486328125 -82 L-603.948486328125 159 L233.05149841308594 159 L233.05149841308594 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-616.173095703125 -82 L-616.173095703125 159 L220.826904296875 159 L220.826904296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-682.2161254882812 -82 L-682.2161254882812 159 L154.78390502929688 159 L154.78390502929688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-685.793212890625 -82 L-685.793212890625 159 L151.20680236816406 159 L151.20680236816406 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-730.432373046875 -82 L-730.432373046875 159 L106.56759643554688 159 L106.56759643554688 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M744.43017578125 176 L744.43017578125 -65 L-92.5698013305664 -65 L-92.5698013305664 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-516.5059204101562 -152 L-516.5059204101562 89 L320.4941101074219 89 L320.4941101074219 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-521.9863891601562 -152 L-521.9863891601562 89 L315.01361083984375 89 L315.01361083984375 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-527.466796875 -152 L-527.466796875 89 L309.533203125 89 L309.533203125 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-588.2139282226562 -152 L-588.2139282226562 89 L248.78610229492188 89 L248.78610229492188 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-600.4384765625 -152 L-600.4384765625 89 L236.56149291992188 89 L236.56149291992188 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-679.7158203125 -152 L-679.7158203125 89 L157.28419494628906 89 L157.28419494628906 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-683.2930297851562 -152 L-683.2930297851562 89 L153.70700073242188 89 L153.70700073242188 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-733.9478149414062 -152 L-733.9478149414062 89 L103.05220031738281 89 L103.05220031738281 -152 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,672,10)">
<path d="M77.9301986694336 0.5 L77.9301986694336 220.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L154.3603973388672 0.5 L154.3603973388672 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,678,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">local storage</text>
<line x1="0" y1="12.5" x2="68.34716796875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,746.3472,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,749.8276,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,744.4302,106)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 124.5 L0.5 124.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 124.5 L0.5 124.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 167.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10.5 48.5 L10.5 167.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,442,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 167.5" stroke="none" clip-path="url(#clipPath12)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 167.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath12)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,448,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,485.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,488.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,499.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath16)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,499.6006,145)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath17)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L417.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath18)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,417.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath18)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,417.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,198.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,204.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,209.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,282.7334,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,294.95799999999997,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,361.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,364.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,409.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 155 L417.6005859375 155" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath27)" transform="matrix(-1,1.2739809207573671E-14,-1.2739809207573671E-14,-1,417.6006,155)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath27)" fill="none" stroke-linecap="square" transform="matrix(-1,1.2739809207573671E-14,-1.2739809207573671E-14,-1,417.6006,155)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,116.4163,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,121.89680000000001,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,127.3772,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">updateAudioClipInLocalStorage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,294.4021,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,297.9793,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,358.7263,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,362.2068,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">rawAudioData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,437.0369,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,440.51730000000003,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">metaData</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,491.60720000000003,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M427.6005859375 116 L662.43017578125 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath38)" transform="matrix(-1,-2.831068712794149E-15,2.831068712794149E-15,-1,662.4302,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath38)" fill="none" stroke-linecap="square" transform="matrix(-1,-2.831068712794149E-15,2.831068712794149E-15,-1,662.4302,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,520.0213,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,525.5018,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,530.9822,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,603.9485000000001,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,616.1731,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,682.2161000000001,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,685.7932000000001,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,730.4324,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M427.6005859375 186 L662.43017578125 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath47)" transform="matrix(-1,7.438494264988549E-15,-7.438494264988549E-15,-1,662.4302,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath47)" fill="none" stroke-linecap="square" transform="matrix(-1,7.438494264988549E-15,-7.438494264988549E-15,-1,662.4302,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,516.5059,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,521.9864,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,527.4668,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,588.2139000000001,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,600.4385,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">storeAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,679.7158000000001,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,683.293,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,733.9478,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 35 KiB

View file

@ -1,351 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-82 10 L-82 198 L620 198 L620 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 188 L702 188 L702 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-102 -10 L-102 178 L600 178 L600 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-12.417200088500977 -42 L-12.417200088500977 146 L689.5828247070312 146 L689.5828247070312 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-110.28389739990234 -42 L-110.28389739990234 146 L591.7161254882812 146 L591.7161254882812 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-113.76439666748047 -42 L-113.76439666748047 146 L588.235595703125 146 L588.235595703125 -42 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-312 -10 L-312 178 L390 178 L390 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-318 -16 L-318 172 L384 172 L384 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-355.4740905761719 -16 L-355.4740905761719 172 L346.5259094238281 172 L346.5259094238281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-358.95458984375 -16 L-358.95458984375 172 L343.04541015625 172 L343.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-369.6005859375 -75 L-369.6005859375 113 L332.3994140625 113 L332.3994140625 -75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-369.6005859375 -145 L-369.6005859375 43 L332.3994140625 43 L332.3994140625 -145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-572 -10 L-572 178 L130 178 L130 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-578 -16 L-578 172 L124 172 L124 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-629.7559204101562 -16 L-629.7559204101562 172 L72.24410247802734 172 L72.24410247802734 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-633.236328125 -16 L-633.236328125 172 L68.76370239257812 172 L68.76370239257812 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-626.6546020507812 -106 L-626.6546020507812 82 L75.34539794921875 82 L75.34539794921875 -106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M369.6005859375 75 L369.6005859375 -113 L-332.3994140625 -113 L-332.3994140625 75 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-133.8061981201172 -51 L-133.8061981201172 137 L568.1937866210938 137 L568.1937866210938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-139.2866973876953 -51 L-139.2866973876953 137 L562.7133178710938 137 L562.7133178710938 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-144.76710510253906 -51 L-144.76710510253906 137 L557.23291015625 137 L557.23291015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-217.7333984375 -51 L-217.7333984375 137 L484.2666015625 137 L484.2666015625 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-229.95799255371094 -51 L-229.95799255371094 137 L472.0419921875 137 L472.0419921875 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-296.0010070800781 -51 L-296.0010070800781 137 L405.9989929199219 137 L405.9989929199219 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-299.5780944824219 -51 L-299.5780944824219 137 L402.4219055175781 137 L402.4219055175781 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-344.21728515625 -51 L-344.21728515625 137 L357.78271484375 137 L357.78271484375 -51 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M369.6005859375 145 L369.6005859375 -43 L-332.3994140625 -43 L-332.3994140625 145 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-145.1634063720703 -121 L-145.1634063720703 67 L556.8366088867188 67 L556.8366088867188 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-150.64390563964844 -121 L-150.64390563964844 67 L551.3560791015625 67 L551.3560791015625 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-156.12429809570312 -121 L-156.12429809570312 67 L545.8756713867188 67 L545.8756713867188 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-240.5417938232422 -121 L-240.5417938232422 67 L461.45819091796875 67 L461.45819091796875 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-244.118896484375 -121 L-244.118896484375 67 L457.881103515625 67 L457.881103515625 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-282.1247863769531 -121 L-282.1247863769531 67 L419.8752136230469 67 L419.8752136230469 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-285.60528564453125 -121 L-285.60528564453125 67 L416.39471435546875 67 L416.39471435546875 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-332.860107421875 -121 L-332.860107421875 67 L369.139892578125 67 L369.139892578125 -121 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M626.6544799804688 106 L626.6544799804688 -82 L-75.34549713134766 -82 L-75.34549713134766 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-396.1333923339844 -82 L-396.1333923339844 106 L305.8666076660156 106 L305.8666076660156 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-401.6138916015625 -82 L-401.6138916015625 106 L300.3861083984375 106 L300.3861083984375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-407.09429931640625 -82 L-407.09429931640625 106 L294.90570068359375 106 L294.90570068359375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-451.7334899902344 -82 L-451.7334899902344 106 L250.26649475097656 106 L250.26649475097656 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-463.9580993652344 -82 L-463.9580993652344 106 L238.04190063476562 106 L238.04190063476562 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-530.0009765625 -82 L-530.0009765625 106 L171.99899291992188 106 L171.99899291992188 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-533.5781860351562 -82 L-533.5781860351562 106 L168.4217987060547 106 L168.4217987060547 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-606.5444946289062 -82 L-606.5444946289062 106 L95.45549774169922 106 L95.45549774169922 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M626.6544799804688 176 L626.6544799804688 -12 L-75.34549713134766 -12 L-75.34549713134766 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-412.7757873535156 -152 L-412.7757873535156 36 L289.2242126464844 36 L289.2242126464844 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-418.25628662109375 -152 L-418.25628662109375 36 L283.74371337890625 36 L283.74371337890625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-423.7366943359375 -152 L-423.7366943359375 36 L278.2633056640625 36 L278.2633056640625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-497.5838928222656 -152 L-497.5838928222656 36 L204.41610717773438 36 L204.41610717773438 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-501.1610107421875 -152 L-501.1610107421875 36 L200.83900451660156 36 L200.83900451660156 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-539.1668701171875 -152 L-539.1668701171875 36 L162.83309936523438 36 L162.83309936523438 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-542.6472778320312 -152 L-542.6472778320312 36 L159.3527069091797 36 L159.3527069091797 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-589.9022216796875 -152 L-589.9022216796875 36 L112.0978012084961 36 L112.0978012084961 -152 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,102,10)">
<path d="M10.5 48.5 L10.5 167.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M10 8 C5 8 5 0 10 0 C15 0 15 8 10 8 M10 8 L10 10 M0 10 L20 10 M10 10 L10 20 M10 20 L0 30 M10 20 L20 30" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,12.417199999999994,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlist Maintainer</text>
<line x1="0" y1="12.5" x2="97.86669921875" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,110.28389999999999,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,113.7644,42)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist maintainer</text>
<line x1="0" y1="12.5" x2="97.818359375" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,312,10)">
<path d="M63.10060119628906 0.5 L63.10060119628906 167.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M63.10060119628906 0.5 L63.10060119628906 167.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L124.70120239257812 0.5 L124.70120239257812 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,318,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,355.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,358.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,369.6006,75)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,369.6006,145)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 31.5 L0.5 31.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,572,10)">
<path d="M60.15454864501953 0.5 L60.15454864501953 167.5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M60.15454864501953 0.5 L60.15454864501953 167.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath13)" fill="none" />
<path d="M0.5 0.5 L118.80909729003906 0.5 L118.80909729003906 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath13)" />
<path d="M0.5 0.5 L118.80909729003906 0.5 L118.80909729003906 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,578,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">scheduler</text>
<line x1="0" y1="12.5" x2="51.755859375" y2="12.5" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,629.7559,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,633.2363,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">Scheduler</text>
<line x1="0" y1="12.5" x2="52.07275390625" y2="12.5" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,626.6546,106)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="none" clip-path="url(#clipPath17)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="black" clip-path="url(#clipPath17)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 85 L287.6005859375 85" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath18)" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,287.6006,85)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath18)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-3.219646771412954E-15,3.219646771412954E-15,-0.9999999999999999,287.6006,85)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,133.8062,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,139.2867,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,144.7671,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,217.73340000000002,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,229.958,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,296.001,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,299.5781,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,344.2173,51)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M30 155 L287.6005859375 155" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath27)" transform="matrix(-1,1.3211653993039363E-14,-1.3211653993039363E-14,-1,287.6006,155)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath27)" fill="none" stroke-linecap="square" transform="matrix(-1,1.3211653993039363E-14,-1.3211653993039363E-14,-1,287.6006,155)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,145.1634,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,150.6439,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,156.1243,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">schedulePlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,240.54180000000002,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,244.1189,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,282.1248,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,285.6053,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">schedule</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,332.8601,121)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M297.6005859375 116 L544.6544799804688 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath36)" transform="matrix(-1,6.5503158452884236E-15,-6.5503158452884236E-15,-1,544.6545,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath36)" fill="none" stroke-linecap="square" transform="matrix(-1,6.5503158452884236E-15,-6.5503158452884236E-15,-1,544.6545,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,396.1334,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,401.6139,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,407.0943,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,451.7335,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,463.95809999999994,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,530.001,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,533.5781999999999,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,606.5445,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,82,-10)">
<path d="M297.6005859375 186 L544.6544799804688 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath45)" transform="matrix(-1,-1.2989609388114332E-14,1.2989609388114332E-14,-1,544.6545,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath45)" fill="none" stroke-linecap="square" transform="matrix(-1,-1.2989609388114332E-14,1.2989609388114332E-14,-1,544.6545,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,412.7758,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,418.2563,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,423.7367,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">uploadPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,497.58389999999997,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,501.161,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,539.1668999999999,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,542.6473,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">schedule</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,589.9022,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 34 KiB

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 144 KiB

View file

@ -1,199 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M50 10 L50 240 L646 240 L646 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 230 L596 230 L596 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 220 L586 220 L586 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-16 -16 L-16 214 L580 214 L580 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-85.44290161132812 -16 L-85.44290161132812 214 L510.5570983886719 214 L510.5570983886719 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-88.92330169677734 -16 L-88.92330169677734 214 L507.0766906738281 214 L507.0766906738281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-480 -10 L-480 220 L116 220 L116 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-486 -16 L-486 214 L110 214 L110 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-523.47412109375 -16 L-523.47412109375 214 L72.5259017944336 214 L72.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-526.95458984375 -16 L-526.95458984375 214 L69.04540252685547 214 L69.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-527.513671875 -71 L-527.513671875 159 L68.48629760742188 159 L68.48629760742188 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M527.513671875 71 L527.513671875 -159 L-68.48629760742188 -159 L-68.48629760742188 71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-201.05520629882812 -47 L-201.05520629882812 183 L394.9447937011719 183 L394.9447937011719 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-206.53570556640625 -47 L-206.53570556640625 183 L389.46429443359375 183 L389.46429443359375 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-212.01609802246094 -47 L-212.01609802246094 183 L383.98388671875 183 L383.98388671875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-284.9823913574219 -47 L-284.9823913574219 183 L311.0176086425781 183 L311.0176086425781 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-297.2070007324219 -47 L-297.2070007324219 183 L298.7929992675781 183 L298.7929992675781 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-363.25 -47 L-363.25 183 L232.75 183 L232.75 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-366.82708740234375 -47 L-366.82708740234375 183 L229.1728973388672 183 L229.1728973388672 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-411.46630859375 -47 L-411.46630859375 183 L184.53370666503906 183 L184.53370666503906 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M527.513671875 106 L527.513671875 -124 L-68.48629760742188 -124 L-68.48629760742188 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-239.00469970703125 -82 L-239.00469970703125 148 L356.99530029296875 148 L356.99530029296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-244.48519897460938 -82 L-244.48519897460938 148 L351.5148010253906 148 L351.5148010253906 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-249.96560668945312 -82 L-249.96560668945312 148 L346.0343933105469 148 L346.0343933105469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-287.97149658203125 -82 L-287.97149658203125 148 L308.02850341796875 148 L308.02850341796875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-300.19610595703125 -82 L-300.19610595703125 148 L295.80389404296875 148 L295.80389404296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-369.939697265625 -82 L-369.939697265625 148 L226.060302734375 148 L226.060302734375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-373.51690673828125 -82 L-373.51690673828125 148 L222.48309326171875 148 L222.48309326171875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-170 -150 L-170 80 L426 80 L426 -150 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M79.08495330810547 0.5 L79.08495330810547 210.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,16,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlistEditor</text>
<line x1="0" y1="12.5" x2="69.44287109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85.4429,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,88.9233,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,480,10)">
<path d="M53.013648986816406 0.5 L53.013648986816406 200.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M53.013648986816406 0.5 L53.013648986816406 200.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,486,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,523.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,526.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Scheduler</text>
<line x1="0" y1="12.5" x2="52.07275390625" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,527.5137,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 139.5 L0.5 139.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 139.5 L0.5 139.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-50,-10)">
<path d="M138.5850067138672 81 L577.513671875 81" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,-4.163336342344337E-15,4.163336342344337E-15,-1,577.5137,81)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,-4.163336342344337E-15,4.163336342344337E-15,-1,577.5137,81)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,201.0552,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,206.53570000000002,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,212.01610000000002,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,284.98240000000004,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,297.207,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,363.25,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,366.82710000000003,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,411.46630000000005,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-50,-10)">
<path d="M138.5850067138672 116 L577.513671875 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,7.771561172376096E-16,-7.771561172376096E-16,-1,577.5137,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,7.771561172376096E-16,-7.771561172376096E-16,-1,577.5137,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,239.0047,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,244.48520000000002,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,249.96560000000002,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,287.9715,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300.1961,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">createPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,369.9397,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,373.5169,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="yellow" fill="yellow" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,170,150)">
<path d="M0 0 L248.4066925048828 0 L258.4067077636719 10 L248.4066925048828 10 L248.4066925048828 0 L258.4067077636719 10 L258.4067077636719 40 L0 40 Z" stroke="none" clip-path="url(#clipPath29)" />
<path d="M0 0 L248.4066925048828 0 L258.4067077636719 10 L248.4066925048828 10 L248.4066925048828 0 L258.4067077636719 10 L258.4067077636719 40 L0 40 Z" stroke="black" clip-path="url(#clipPath29)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,170,150)">
<text x="10" y="21" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">For editing the playlist see UC-7 Edit playlist</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View file

@ -1,779 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-30 10 L-30 511 L743 511 L743 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 501 L773 501 L773 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-500 -10 L-500 491 L273 491 L273 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-506 -16 L-506 485 L267 485 L267 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-543.47412109375 -16 L-543.47412109375 485 L229.52587890625 485 L229.52587890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-546.95458984375 -16 L-546.95458984375 485 L226.04541015625 485 L226.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-547.513671875 -71 L-547.513671875 430 L225.48629760742188 430 L225.48629760742188 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-50 -10 L-50 491 L723 491 L723 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-56 -16 L-56 485 L717 485 L717 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-125.44287109375 -16 L-125.44287109375 485 L647.55712890625 485 L647.55712890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-128.92333984375 -16 L-128.92333984375 485 L644.07666015625 485 L644.07666015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-610 -170 L-610 331 L163 331 L163 -170 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-610 -260 L-610 241 L163 241 L163 -260 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M547.513671875 71 L547.513671875 -430 L-225.48629760742188 -430 L-225.48629760742188 71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-231.05520629882812 -47 L-231.05520629882812 454 L541.94482421875 454 L541.94482421875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-236.53570556640625 -47 L-236.53570556640625 454 L536.4642944335938 454 L536.4642944335938 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-242.01609802246094 -47 L-242.01609802246094 454 L530.98388671875 454 L530.98388671875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-314.9823913574219 -47 L-314.9823913574219 454 L458.0176086425781 454 L458.0176086425781 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-327.2070007324219 -47 L-327.2070007324219 454 L445.7929992675781 454 L445.7929992675781 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-393.25 -47 L-393.25 454 L379.75 454 L379.75 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-396.82708740234375 -47 L-396.82708740234375 454 L376.17291259765625 454 L376.17291259765625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-441.46630859375 -47 L-441.46630859375 454 L331.53369140625 454 L331.53369140625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M547.513671875 106 L547.513671875 -395 L-225.48629760742188 -395 L-225.48629760742188 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-260.8702087402344 -82 L-260.8702087402344 419 L512.1298217773438 419 L512.1298217773438 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-266.3507080078125 -82 L-266.3507080078125 419 L506.6492919921875 419 L506.6492919921875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-271.8310852050781 -82 L-271.8310852050781 419 L501.1689147949219 419 L501.1689147949219 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-315.44439697265625 -82 L-315.44439697265625 419 L457.55560302734375 419 L457.55560302734375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-327.66900634765625 -82 L-327.66900634765625 419 L445.33099365234375 419 L445.33099365234375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-408.0743103027344 -82 L-408.0743103027344 419 L364.9256896972656 419 L364.9256896972656 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-411.6513977050781 -82 L-411.6513977050781 419 L361.3486022949219 419 L361.3486022949219 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M547.513671875 141 L547.513671875 -360 L-225.48629760742188 -360 L-225.48629760742188 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-250.99000549316406 -117 L-250.99000549316406 384 L522.010009765625 384 L522.010009765625 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-256.4704895019531 -117 L-256.4704895019531 384 L516.5294799804688 384 L516.5294799804688 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-261.9508972167969 -117 L-261.9508972167969 384 L511.0491027832031 384 L511.0491027832031 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-379.948486328125 -117 L-379.948486328125 384 L393.051513671875 384 L393.051513671875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-383.5256042480469 -117 L-383.5256042480469 384 L389.4743957519531 384 L389.4743957519531 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-421.531494140625 -117 L-421.531494140625 384 L351.468505859375 384 L351.468505859375 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M547.513671875 246 L547.513671875 -255 L-225.48629760742188 -255 L-225.48629760742188 246 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-183.9561004638672 -222 L-183.9561004638672 279 L589.0438842773438 279 L589.0438842773438 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-189.4365997314453 -222 L-189.4365997314453 279 L583.5634155273438 279 L583.5634155273438 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-194.91700744628906 -222 L-194.91700744628906 279 L578.0830078125 279 L578.0830078125 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-317.8828125 -222 L-317.8828125 279 L455.1171875 279 L455.1171875 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-321.4599914550781 -222 L-321.4599914550781 279 L451.5400085449219 279 L451.5400085449219 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-372.11480712890625 -222 L-372.11480712890625 279 L400.88519287109375 279 L400.88519287109375 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-375.59521484375 -222 L-375.59521484375 279 L397.40478515625 279 L397.40478515625 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-413.6011047363281 -222 L-413.6011047363281 279 L359.3988952636719 279 L359.3988952636719 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-417.08160400390625 -222 L-417.08160400390625 279 L355.91839599609375 279 L355.91839599609375 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-488.5653991699219 -222 L-488.5653991699219 279 L284.4346008300781 279 L284.4346008300781 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M547.513671875 176 L547.513671875 -325 L-225.48629760742188 -325 L-225.48629760742188 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-247.04229736328125 -152 L-247.04229736328125 349 L525.9577026367188 349 L525.9577026367188 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-252.52279663085938 -152 L-252.52279663085938 349 L520.4771728515625 349 L520.4771728515625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-258.0032043457031 -152 L-258.0032043457031 349 L514.996826171875 349 L514.996826171875 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-314.2654113769531 -152 L-314.2654113769531 349 L458.7345886230469 349 L458.7345886230469 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-326.489990234375 -152 L-326.489990234375 349 L446.510009765625 349 L446.510009765625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-421.902099609375 -152 L-421.902099609375 349 L351.097900390625 349 L351.097900390625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-425.47930908203125 -152 L-425.47930908203125 349 L347.52069091796875 349 L347.52069091796875 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M547.513671875 211 L547.513671875 -290 L-225.48629760742188 -290 L-225.48629760742188 211 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-222.2761993408203 -187 L-222.2761993408203 314 L550.7238159179688 314 L550.7238159179688 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-227.75669860839844 -187 L-227.75669860839844 314 L545.2432861328125 314 L545.2432861328125 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-233.2371063232422 -187 L-233.2371063232422 314 L539.7628784179688 314 L539.7628784179688 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-283.89190673828125 -187 L-283.89190673828125 314 L489.10809326171875 314 L489.10809326171875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-296.1164855957031 -187 L-296.1164855957031 314 L476.8835144042969 314 L476.8835144042969 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-385.92120361328125 -187 L-385.92120361328125 314 L387.07879638671875 314 L387.07879638671875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-389.498291015625 -187 L-389.498291015625 314 L383.501708984375 314 L383.501708984375 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-450.2453918457031 -187 L-450.2453918457031 314 L322.7546081542969 314 L322.7546081542969 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M547.513671875 281 L547.513671875 -220 L-225.48629760742188 -220 L-225.48629760742188 281 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-242.42849731445312 -257 L-242.42849731445312 244 L530.5714721679688 244 L530.5714721679688 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
<path d="M-247.90899658203125 -257 L-247.90899658203125 244 L525.0910034179688 244 L525.0910034179688 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
<path d="M-253.389404296875 -257 L-253.389404296875 244 L519.610595703125 244 L519.610595703125 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath70">
<path d="M-291.3952941894531 -257 L-291.3952941894531 244 L481.6047058105469 244 L481.6047058105469 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath71">
<path d="M-303.6199035644531 -257 L-303.6199035644531 244 L469.3800964355469 244 L469.3800964355469 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath72">
<path d="M-378.4176940917969 -257 L-378.4176940917969 244 L394.5823059082031 244 L394.5823059082031 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath73">
<path d="M-381.9949035644531 -257 L-381.9949035644531 244 L391.0050964355469 244 L391.0050964355469 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath74">
<path d="M-430.0929870605469 -257 L-430.0929870605469 244 L342.9070129394531 244 L342.9070129394531 -257 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath75">
<path d="M547.513671875 316 L547.513671875 -185 L-225.48629760742188 -185 L-225.48629760742188 316 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath76">
<path d="M-204.8040008544922 -292 L-204.8040008544922 209 L568.1959838867188 209 L568.1959838867188 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath77">
<path d="M-210.2845001220703 -292 L-210.2845001220703 209 L562.7155151367188 209 L562.7155151367188 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath78">
<path d="M-215.764892578125 -292 L-215.764892578125 209 L557.235107421875 209 L557.235107421875 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath79">
<path d="M-371.9992980957031 -292 L-371.9992980957031 209 L401.0007019042969 209 L401.0007019042969 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath80">
<path d="M-375.5763854980469 -292 L-375.5763854980469 209 L397.4236145019531 209 L397.4236145019531 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath81">
<path d="M-413.5823059082031 -292 L-413.5823059082031 209 L359.4176940917969 209 L359.4176940917969 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath82">
<path d="M-417.06280517578125 -292 L-417.06280517578125 209 L355.93719482421875 209 L355.93719482421875 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath83">
<path d="M-467.7174987792969 -292 L-467.7174987792969 209 L305.2825012207031 209 L305.2825012207031 -292 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath84">
<path d="M547.513671875 351 L547.513671875 -150 L-225.48629760742188 -150 L-225.48629760742188 351 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath85">
<path d="M-237.1728973388672 -327 L-237.1728973388672 174 L535.8270874023438 174 L535.8270874023438 -327 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath86">
<path d="M-242.6533966064453 -327 L-242.6533966064453 174 L530.3466186523438 174 L530.3466186523438 -327 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath87">
<path d="M-248.13380432128906 -327 L-248.13380432128906 174 L524.8662109375 174 L524.8662109375 -327 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath88">
<path d="M-339.6304016113281 -327 L-339.6304016113281 174 L433.3695983886719 174 L433.3695983886719 -327 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath89">
<path d="M-343.2074890136719 -327 L-343.2074890136719 174 L429.7925109863281 174 L429.7925109863281 -327 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath90">
<path d="M-381.2134094238281 -327 L-381.2134094238281 174 L391.7865905761719 174 L391.7865905761719 -327 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath91">
<path d="M-384.69390869140625 -327 L-384.69390869140625 174 L388.30609130859375 174 L388.30609130859375 -327 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath92">
<path d="M-435.3486022949219 -327 L-435.3486022949219 174 L337.6513977050781 174 L337.6513977050781 -327 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath93">
<path d="M-198.00149536132812 -362 L-198.00149536132812 139 L574.9984741210938 139 L574.9984741210938 -362 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath94">
<path d="M-272.14599609375 -362 L-272.14599609375 139 L500.85400390625 139 L500.85400390625 -362 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath95">
<path d="M-277.6264953613281 -362 L-277.6264953613281 139 L495.3735046386719 139 L495.3735046386719 -362 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath96">
<path d="M-342.18170166015625 -362 L-342.18170166015625 139 L430.81829833984375 139 L430.81829833984375 -362 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath97">
<path d="M-354.40631103515625 -362 L-354.40631103515625 139 L418.59368896484375 139 L418.59368896484375 -362 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath98">
<path d="M-432.93701171875 -362 L-432.93701171875 139 L340.06298828125 139 L340.06298828125 -362 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath99">
<path d="M-436.5141906738281 -362 L-436.5141906738281 139 L336.4858093261719 139 L336.4858093261719 -362 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath100">
<path d="M-474.5201110839844 -362 L-474.5201110839844 139 L298.4798889160156 139 L298.4798889160156 -362 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath101">
<path d="M547.513671875 386 L547.513671875 -115 L-225.48629760742188 -115 L-225.48629760742188 386 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath102">
<path d="M547.513671875 421 L547.513671875 -80 L-225.48629760742188 -80 L-225.48629760742188 421 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath103">
<path d="M-279.6556091308594 -397 L-279.6556091308594 104 L493.3443908691406 104 L493.3443908691406 -397 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath104">
<path d="M-285.1361083984375 -397 L-285.1361083984375 104 L487.8638916015625 104 L487.8638916015625 -397 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath105">
<path d="M-290.6164855957031 -397 L-290.6164855957031 104 L482.3835144042969 104 L482.3835144042969 -397 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath106">
<path d="M-351.2829895019531 -397 L-351.2829895019531 104 L421.7170104980469 104 L421.7170104980469 -397 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath107">
<path d="M-354.8601989746094 -397 L-354.8601989746094 104 L418.1398010253906 104 L418.1398010253906 -397 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath108">
<path d="M-392.8659973144531 -397 L-392.8659973144531 104 L380.1340026855469 104 L380.1340026855469 -397 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath109">
<path d="M-203.45590209960938 -432 L-203.45590209960938 69 L569.5441284179688 69 L569.5441284179688 -432 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath110">
<path d="M-320.54229736328125 -432 L-320.54229736328125 69 L452.45770263671875 69 L452.45770263671875 -432 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath111">
<path d="M-326.0227966308594 -432 L-326.0227966308594 69 L446.9772033691406 69 L446.9772033691406 -432 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath112">
<path d="M-427.4827880859375 -432 L-427.4827880859375 69 L345.5172119140625 69 L345.5172119140625 -432 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath113">
<path d="M-431.0599060058594 -432 L-431.0599060058594 69 L341.9400939941406 69 L341.9400939941406 -432 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath114">
<path d="M-469.0657958984375 -432 L-469.0657958984375 69 L303.9342041015625 69 L303.9342041015625 -432 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath115">
<path d="M547.513671875 456 L547.513671875 -45 L-225.48629760742188 -45 L-225.48629760742188 456 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath116">
<path d="M-10 -360 L-10 141 L763 141 L763 -360 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,500,10)">
<path d="M53.013648986816406 0.5 L53.013648986816406 480.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,506,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,543.47412109375,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,546.95458984375,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Scheduler</text>
<line x1="0" y1="12.5" x2="52.07275390625" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,547.5137,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 419.5 L0.5 419.5 Z" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 419.5 L0.5 419.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,50,10)">
<path d="M79.08495330810547 0.5 L79.08495330810547 470.5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M79.08495330810547 0.5 L79.08495330810547 470.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath8)" fill="none" />
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath8)" />
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,56,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">playlistEditor</text>
<line x1="0" y1="12.5" x2="69.44287109375" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,125.44287109375,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,128.92333984375,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="yellow" fill="yellow" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,610,170)">
<path d="M0 0 L142.0269012451172 0 L152.0269012451172 10 L142.0269012451172 10 L142.0269012451172 0 L152.0269012451172 10 L152.0269012451172 76 L0 76 Z" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0 0 L142.0269012451172 0 L152.0269012451172 10 L142.0269012451172 10 L142.0269012451172 0 L152.0269012451172 10 L152.0269012451172 76 L0 76 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,610,170)">
<text x="10" y="21" xml:space="preserve" stroke="none" clip-path="url(#clipPath12)">These three constitute</text>
<text x="10" y="35" xml:space="preserve" stroke="none" clip-path="url(#clipPath12)">selecting and adding an</text>
<text x="10" y="49" xml:space="preserve" stroke="none" clip-path="url(#clipPath12)">audio clip to the playlist,</text>
<text x="10" y="63" xml:space="preserve" stroke="none" clip-path="url(#clipPath12)">use case actions 7-12</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="yellow" fill="yellow" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,610,260)">
<path d="M0 0 L134.97459411621094 0 L144.97459411621094 10 L134.97459411621094 10 L134.97459411621094 0 L144.97459411621094 10 L144.97459411621094 70 L0 70 Z" stroke="none" clip-path="url(#clipPath13)" />
<path d="M0 0 L134.97459411621094 0 L144.97459411621094 10 L134.97459411621094 10 L134.97459411621094 0 L144.97459411621094 10 L144.97459411621094 70 L0 70 Z" stroke="black" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,610,260)">
<text x="10" y="21" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">Selecting and removing</text>
<text x="10" y="35" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">an aduio clip from the</text>
<text x="10" y="49" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">playlist, actions 13-14</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 81 L517.513671875 81" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath14)" transform="matrix(-1,0,0,-1,517.5137,81)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath14)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,81)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,231.0552,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,236.53570000000002,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,242.01610000000002,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,314.98240000000004,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,327.207,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,393.25,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,396.82710000000003,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,441.46630000000005,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 116 L517.513671875 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath23)" transform="matrix(-1,0,0,-1,517.5137,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath23)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,260.8702,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,266.3507,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,271.8311,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">playlists</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,315.4444,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,327.669,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">displayPlaylists</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408.0743,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,411.65139999999997,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 151 L517.513671875 151" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath31)" transform="matrix(-1,0,0,-1,517.5137,151)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath31)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,151)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,250.99,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,256.4705,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,261.9509,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">openPlaylistForEditing</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,379.94849999999997,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,383.5256,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,421.5315,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M580 256 L517.513671875 256" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 256 L517.513671875 256" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath38)" transform="matrix(-1,0,0,-1,517.5137,256)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath38)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,256)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,183.9561,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,189.4366,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,194.917,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">addAudioClipToPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,317.8828,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,321.46000000000004,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,372.1148,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,375.5952,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,413.6011,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,417.0816,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">relativeOffset</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,488.56539999999995,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 186 L517.513671875 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath49)" transform="matrix(-1,0,0,-1,517.5137,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath49)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,247.0423,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,252.52280000000002,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,258.0032,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">audioClips</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,314.2654,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,326.49,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">displayAudioClips</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,421.9021,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,425.47929999999997,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M580 221 L517.513671875 221" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 221 L517.513671875 221" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath57)" transform="matrix(-1,0,0,-1,517.5137,221)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath57)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,221)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,222.2762,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,227.7567,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath59)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,233.2371,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath60)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,283.8919,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath61)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,296.1165,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath62)">displayAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,385.9212,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath63)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,389.4983,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath64)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,450.2454,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath65)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M580 186 L517.513671875 186" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 291 L517.513671875 291" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath66)" transform="matrix(-1,0,0,-1,517.5137,291)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath66)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,291)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,242.4285,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath67)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,247.90900000000002,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath68)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,253.38940000000002,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath69)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,291.3953,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath70)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,303.61990000000003,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath71)">displayPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,378.4177,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath72)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,381.99490000000003,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath73)">playlistId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,430.093,257)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath74)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M580 326 L517.513671875 326" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 326 L517.513671875 326" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath75)" transform="matrix(-1,0,0,-1,517.5137,326)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath75)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,326)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,204.804,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath76)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,210.2845,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath77)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,215.7649,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath78)">removeAudioClipFromPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,371.9993,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath79)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,375.57640000000004,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath80)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,413.58230000000003,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath81)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,417.06280000000004,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath82)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,467.7175,292)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath83)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M580 291 L517.513671875 291" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 361 L517.513671875 361" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath84)" transform="matrix(-1,0,0,-1,517.5137,361)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath84)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,361)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,237.1729,327)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath85)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,242.6534,327)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath86)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,248.1338,327)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath87)">updateFadeInOut</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,339.6304,327)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath88)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,343.2075,327)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath89)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,381.2134,327)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath90)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,384.6939,327)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath91)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,435.34860000000003,327)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath92)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 396 L517.513671875 396" clip-path="url(#clipPath1)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath93)" stroke-linecap="square" transform="matrix(1,0,0,1,168.0015,372)">[save playlist]</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,272.14599999999996,362)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath94)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,277.62649999999996,362)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath95)">playlistValid</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,342.1817,362)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath96)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,354.4063,362)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath97)">validatePlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,432.93699999999995,362)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath98)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,436.51419999999996,362)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath99)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,474.52009999999996,362)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath100)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-1,0,0,-1,547.5137,386)">
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath101)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath101)" fill="none" stroke-linecap="square" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 431 L517.513671875 431" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath102)" transform="matrix(-1,0,0,-1,517.5137,431)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath102)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,517.5137,431)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,279.6556,397)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath103)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,285.1361,397)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath104)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,290.6165,397)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath105)">savePlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,351.28299999999996,397)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath106)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,354.86019999999996,397)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath107)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,392.866,397)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath108)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M98.58499908447266 466 L517.513671875 466" clip-path="url(#clipPath1)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath109)" stroke-linecap="square" transform="matrix(1,0,0,1,173.4559,442)">[revert to old version]</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,320.5423,432)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath110)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,326.0228,432)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath111)">revertEditedPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,427.4828,432)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath112)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,431.0599,432)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath113)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,469.0658,432)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath114)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-1,0,0,-1,547.5137,456)">
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath115)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath115)" fill="none" stroke-linecap="square" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="yellow" fill="yellow" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,360)">
<path d="M0 0 L60 0 L70 10 L60 10 L60 0 L70 10 L70 100 L0 100 Z" stroke="none" clip-path="url(#clipPath116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,360)">
<path d="M0 0 L60 0 L70 10 L60 10 L60 0 L70 10 L70 100 L0 100 Z" clip-path="url(#clipPath116)" fill="none" />
<text x="10" y="21" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath116)" stroke-linecap="square">either</text>
<text x="10" y="35" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath116)" stroke-linecap="square">save, or</text>
<text x="10" y="49" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath116)" stroke-linecap="square">revert to</text>
<text x="10" y="63" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath116)" stroke-linecap="square">the old</text>
<text x="10" y="77" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath116)" stroke-linecap="square">version</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M50 396 L98.58499908447266 396" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,30,-10)">
<path d="M50 466 L98.58499908447266 466" clip-path="url(#clipPath1)" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 76 KiB

View file

@ -1,218 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" color-rendering="auto" stroke-dasharray="none" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" text-rendering="auto" stroke="black" font-style="normal" stroke-linecap="square" shape-rendering="auto" fill-opacity="1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M18 30 L18 750 L592 750 L592 30 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 720 L574 720 L574 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-142 -10 L-142 710 L432 710 L432 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-144 -12 L-144 708 L430 708 L430 -12 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-142 -27 L-142 693 L432 693 L432 -27 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-192 -410 L-192 310 L382 310 L382 -410 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-221.3240966796875 -426 L-221.3240966796875 294 L352.6759033203125 294 L352.6759033203125 -426 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-172 -320 L-172 400 L402 400 L402 -320 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-207.03729248046875 -336 L-207.03729248046875 384 L366.96270751953125 384 L366.96270751953125 -336 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-182 -220 L-182 500 L392 500 L392 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-212.62669372558594 -236 L-212.62669372558594 484 L361.373291015625 484 L361.373291015625 -236 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-192 -60 L-192 660 L382 660 L382 -60 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-220.64549255371094 -76 L-220.64549255371094 644 L353.3544921875 644 L353.3544921875 -76 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-182 -140 L-182 580 L392 580 L392 -140 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-213.3809051513672 -156 L-213.3809051513672 564 L360.6191101074219 564 L360.6191101074219 -156 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-192 -490 L-192 230 L382 230 L382 -490 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-220.0404052734375 -506 L-220.0404052734375 214 L353.9595947265625 214 L353.9595947265625 -506 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-202 -570 L-202 150 L372 150 L372 -570 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-227.0625 -586 L-227.0625 134 L346.9375 134 L346.9375 -586 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-172 -640 L-172 80 L402 80 L402 -640 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-206.893798828125 -656 L-206.893798828125 64 L367.106201171875 64 L367.106201171875 -656 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-22 -300 L-22 420 L552 420 L552 -300 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-10.876700401306152 -385 L-10.876700401306152 335 L563.123291015625 335 L563.123291015625 -385 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-492 -400 L-492 320 L82 320 L82 -400 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-470.064697265625 -485 L-470.064697265625 235 L103.935302734375 235 L103.935302734375 -485 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-492 -220 L-492 500 L82 500 L82 -220 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-481.4836120605469 -305 L-481.4836120605469 415 L92.51640319824219 415 L92.51640319824219 -305 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-22 -610 L-22 110 L552 110 L552 -610 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-10.18120002746582 -695 L-10.18120002746582 25 L563.8187866210938 25 L563.8187866210938 -695 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,142,10)">
<path d="M0.5 0.5 L121.88960266113281 0.5 L121.88960266113281 17.5 L0.5 17.5 Z" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,144,12)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">LiveSupport Scheduler</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,142,27)">
<path d="M0.5 0.5 L269.5 0.5 L269.5 682.5 L0.5 682.5 Z" stroke="none" clip-path="url(#clipPath5)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,142,27)">
<path d="M0.5 0.5 L269.5 0.5 L269.5 682.5 L0.5 682.5 Z" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,192,410)">
<ellipse cx="86.46175" cy="25" rx="86.46175" ry="25" stroke="none" clip-path="url(#clipPath6)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,192,410)">
<ellipse cx="86.46175" cy="25" rx="86.46175" ry="25" clip-path="url(#clipPath6)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath7)" stroke-linecap="square" transform="matrix(1,0,0,1,29.3241,16)">UC-5 Review play log</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,172,320)">
<ellipse cx="105.96795" cy="25" rx="105.96795" ry="25" stroke="none" clip-path="url(#clipPath8)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,172,320)">
<ellipse cx="105.96795" cy="25" rx="105.96795" ry="25" clip-path="url(#clipPath8)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath9)" stroke-linecap="square" transform="matrix(1,0,0,1,35.0373,16)">UC-4 Retrieve remote files</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,182,220)">
<ellipse cx="90.90915" cy="25" rx="90.90915" ry="25" stroke="none" clip-path="url(#clipPath10)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,182,220)">
<ellipse cx="90.90915" cy="25" rx="90.90915" ry="25" clip-path="url(#clipPath10)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath11)" stroke-linecap="square" transform="matrix(1,0,0,1,30.6267,16)">UC-3 Manage playlists</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,192,60)">
<ellipse cx="84.145" cy="25" rx="84.145" ry="25" stroke="none" clip-path="url(#clipPath12)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,192,60)">
<ellipse cx="84.145" cy="25" rx="84.145" ry="25" clip-path="url(#clipPath12)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath13)" stroke-linecap="square" transform="matrix(1,0,0,1,28.6455,16)">UC-1 Upload playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,182,140)">
<ellipse cx="93.48415" cy="25" rx="93.48415" ry="25" stroke="none" clip-path="url(#clipPath14)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,182,140)">
<ellipse cx="93.48415" cy="25" rx="93.48415" ry="25" clip-path="url(#clipPath14)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath15)" stroke-linecap="square" transform="matrix(1,0,0,1,31.3809,16)">UC-2 Manage schedule</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,192,490)">
<ellipse cx="82.07895" cy="25" rx="82.07895" ry="25" stroke="none" clip-path="url(#clipPath16)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,192,490)">
<ellipse cx="82.07895" cy="25" rx="82.07895" ry="25" clip-path="url(#clipPath16)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath17)" stroke-linecap="square" transform="matrix(1,0,0,1,28.0404,16)">UC-6 Create playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,202,570)">
<ellipse cx="71.91185" cy="25" rx="71.91185" ry="25" stroke="none" clip-path="url(#clipPath18)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,202,570)">
<ellipse cx="71.91185" cy="25" rx="71.91185" ry="25" clip-path="url(#clipPath18)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath19)" stroke-linecap="square" transform="matrix(1,0,0,1,25.0625,16)">UC-7 Edit playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,172,640)">
<ellipse cx="105.47805" cy="25" rx="105.47805" ry="25" stroke="none" clip-path="url(#clipPath20)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,172,640)">
<ellipse cx="105.47805" cy="25" rx="105.47805" ry="25" clip-path="url(#clipPath20)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath21)" stroke-linecap="square" transform="matrix(1,0,0,1,34.8938,16)">UC-8 Start/stop scheduler</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,22,300)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath22)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,22,300)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" clip-path="url(#clipPath22)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath23)" stroke-linecap="square" transform="matrix(1,0,0,1,-11.1233,85)">Playlist editor</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,492,400)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath24)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,492,400)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" clip-path="url(#clipPath24)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath25)" stroke-linecap="square" transform="matrix(1,0,0,1,-21.9353,85)">Broadcast auditor</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-18,-30)">
<path d="M510 465 L382.9234924316406 465" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-18,-30)">
<path d="M90 330 L200.74319458007812 278.1900939941406" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,492,220)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath26)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,492,220)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" clip-path="url(#clipPath26)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath27)" stroke-linecap="square" transform="matrix(1,0,0,1,-10.5164,85)">Local storage</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-18,-30)">
<path d="M496.4836120605469 335.31719970703125 L401.4825134277344 372.689697265625" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-18,-30)">
<path d="M90 330 L218.1038055419922 125.70459747314453" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-18,-30)">
<path d="M90 330 L203.9423065185547 202.1833953857422" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-18,-30)">
<path d="M104.12329864501953 424.55108642578125 L213.7655029296875 537.5145874023438" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-18,-30)">
<path d="M104.12329864501953 430.84600830078125 L227.931396484375 613.586669921875" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,22,610)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" stroke="none" clip-path="url(#clipPath28)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,22,610)">
<path d="M25 21.33333396911621 C12.5 21.33333396911621 12.5 0 25 0 C37.5 0 37.5 21.33333396911621 25 21.33333396911621 M25 21.33333396911621 L25 26.66666603088379 M0 26.66666603088379 L50 26.66666603088379 M25 26.66666603088379 L25 53.33333206176758 M25 53.33333206176758 L0 80 M25 53.33333206176758 L50 80" clip-path="url(#clipPath28)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath29)" stroke-linecap="square" transform="matrix(1,0,0,1,-11.8188,85)">Administrator</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-18,-30)">
<path d="M90 695 L190 695" clip-path="url(#clipPath1)" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 24 KiB

View file

@ -1,289 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M10 10 L10 221 L626 221 L626 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 211 L616 211 L616 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 201 L606 201 L606 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-16 -16 L-16 195 L600 195 L600 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-85.44290161132812 -16 L-85.44290161132812 195 L530.55712890625 195 L530.55712890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-88.92330169677734 -16 L-88.92330169677734 195 L527.0767211914062 195 L527.0767211914062 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-500 -10 L-500 201 L116 201 L116 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-506 -16 L-506 195 L110 195 L110 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-543.47412109375 -16 L-543.47412109375 195 L72.5259017944336 195 L72.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-546.95458984375 -16 L-546.95458984375 195 L69.04540252685547 195 L69.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-547.513671875 -71 L-547.513671875 140 L68.48629760742188 140 L68.48629760742188 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M547.513671875 71 L547.513671875 -140 L-68.48629760742188 -140 L-68.48629760742188 71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-209.79840087890625 -47 L-209.79840087890625 164 L406.20159912109375 164 L406.20159912109375 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-215.27890014648438 -47 L-215.27890014648438 164 L400.7210998535156 164 L400.7210998535156 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-220.75929260253906 -47 L-220.75929260253906 164 L395.2406921386719 164 L395.2406921386719 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-293.7255859375 -47 L-293.7255859375 164 L322.2744140625 164 L322.2744140625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-305.9501953125 -47 L-305.9501953125 164 L310.0498046875 164 L310.0498046875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-371.9931945800781 -47 L-371.9931945800781 164 L244.00680541992188 164 L244.00680541992188 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-375.5703125 -47 L-375.5703125 164 L240.42970275878906 164 L240.42970275878906 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-420.2095031738281 -47 L-420.2095031738281 164 L195.79049682617188 164 L195.79049682617188 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M547.513671875 106 L547.513671875 -105 L-68.48629760742188 -105 L-68.48629760742188 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-239.61329650878906 -82 L-239.61329650878906 129 L376.3866882324219 129 L376.3866882324219 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-245.0937957763672 -82 L-245.0937957763672 129 L370.90618896484375 129 L370.90618896484375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-250.57420349121094 -82 L-250.57420349121094 129 L365.4258117675781 129 L365.4258117675781 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-294.1875 -82 L-294.1875 129 L321.8125 129 L321.8125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-306.412109375 -82 L-306.412109375 129 L309.587890625 129 L309.587890625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-386.8174133300781 -82 L-386.8174133300781 129 L229.18260192871094 129 L229.18260192871094 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-390.3945007324219 -82 L-390.3945007324219 129 L225.60549926757812 129 L225.60549926757812 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M547.513671875 141 L547.513671875 -70 L-68.48629760742188 -70 L-68.48629760742188 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-221.1717071533203 -117 L-221.1717071533203 94 L394.82830810546875 94 L394.82830810546875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-226.65220642089844 -117 L-226.65220642089844 94 L389.3478088378906 94 L389.3478088378906 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-232.13259887695312 -117 L-232.13259887695312 94 L383.8674011230469 94 L383.8674011230469 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-270.13848876953125 -117 L-270.13848876953125 94 L345.86151123046875 94 L345.86151123046875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-282.36309814453125 -117 L-282.36309814453125 94 L333.63690185546875 94 L333.63690185546875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-357.160888671875 -117 L-357.160888671875 94 L258.839111328125 94 L258.839111328125 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-360.73809814453125 -117 L-360.73809814453125 94 L255.26190185546875 94 L255.26190185546875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-408.8362121582031 -117 L-408.8362121582031 94 L207.16380310058594 94 L207.16380310058594 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M547.513671875 176 L547.513671875 -35 L-68.48629760742188 -35 L-68.48629760742188 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-253.84939575195312 -152 L-253.84939575195312 59 L362.1506042480469 59 L362.1506042480469 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-259.32989501953125 -152 L-259.32989501953125 59 L356.67010498046875 59 L356.67010498046875 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-264.810302734375 -152 L-264.810302734375 59 L351.189697265625 59 L351.189697265625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-334.5754089355469 -152 L-334.5754089355469 59 L281.4245910644531 59 L281.4245910644531 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-338.152587890625 -152 L-338.152587890625 59 L277.847412109375 59 L277.847412109375 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-376.15838623046875 -152 L-376.15838623046875 59 L239.8415985107422 59 L239.8415985107422 -152 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M79.08495330810547 0.5 L79.08495330810547 190.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,16,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlistEditor</text>
<line x1="0" y1="12.5" x2="69.44287109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85.4429,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,88.9233,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,500,10)">
<path d="M53.013648986816406 0.5 L53.013648986816406 190.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M53.013648986816406 0.5 L53.013648986816406 190.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,506,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,543.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,546.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Scheduler</text>
<line x1="0" y1="12.5" x2="52.07275390625" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,547.5137,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 129.5 L0.5 129.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 129.5 L0.5 129.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 81 L557.513671875 81" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,-4.163336342344337E-15,4.163336342344337E-15,-1,557.5137,81)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,-4.163336342344337E-15,4.163336342344337E-15,-1,557.5137,81)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,209.7984,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,215.2789,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,220.7593,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,293.7256,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,305.9502,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,371.9932,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,375.5703,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,420.2095,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 116 L557.513671875 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-5.10702591327572E-15,5.10702591327572E-15,-1,557.5137,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-5.10702591327572E-15,5.10702591327572E-15,-1,557.5137,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,239.6133,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,245.09380000000002,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,250.57420000000002,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">playlists</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,294.1875,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,306.4121,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">displayPlaylists</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,386.8174,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,390.3945,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 151 L557.513671875 151" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath29)" transform="matrix(-1,-1.1102230246251565E-16,1.1102230246251565E-16,-1,557.5137,151)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath29)" fill="none" stroke-linecap="square" transform="matrix(-1,-1.1102230246251565E-16,1.1102230246251565E-16,-1,557.5137,151)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,221.1717,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,226.6522,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,232.1326,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,270.1385,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,282.3631,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">displayPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,357.16089999999997,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,360.73810000000003,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">playlistId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408.83619999999996,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 186 L557.513671875 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath38)" transform="matrix(-1,1.1879386363489175E-14,-1.1879386363489175E-14,-1,557.5137,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath38)" fill="none" stroke-linecap="square" transform="matrix(-1,1.1879386363489175E-14,-1.1879386363489175E-14,-1,557.5137,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,253.8494,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,259.3299,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,264.8103,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">deletePlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,334.5754,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,338.1526,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,376.1584,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 27 KiB

View file

@ -1,453 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M10 10 L10 311 L596 311 L596 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 301 L586 301 L586 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 291 L576 291 L576 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-16 -16 L-16 285 L570 285 L570 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-85.44290161132812 -16 L-85.44290161132812 285 L500.5570983886719 285 L500.5570983886719 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-88.92330169677734 -16 L-88.92330169677734 285 L497.0766906738281 285 L497.0766906738281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-470 -10 L-470 291 L116 291 L116 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-476 -16 L-476 285 L110 285 L110 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-513.47412109375 -16 L-513.47412109375 285 L72.5259017944336 285 L72.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-516.95458984375 -16 L-516.95458984375 285 L69.04540252685547 285 L69.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-517.513671875 -71 L-517.513671875 230 L68.48629760742188 230 L68.48629760742188 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M517.513671875 71 L517.513671875 -230 L-68.48629760742188 -230 L-68.48629760742188 71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-194.79840087890625 -47 L-194.79840087890625 254 L391.20159912109375 254 L391.20159912109375 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-200.27890014648438 -47 L-200.27890014648438 254 L385.7210998535156 254 L385.7210998535156 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-205.75929260253906 -47 L-205.75929260253906 254 L380.2406921386719 254 L380.2406921386719 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-278.7255859375 -47 L-278.7255859375 254 L307.2744140625 254 L307.2744140625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-290.9501953125 -47 L-290.9501953125 254 L295.0498046875 254 L295.0498046875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-356.9931945800781 -47 L-356.9931945800781 254 L229.00680541992188 254 L229.00680541992188 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-360.5703125 -47 L-360.5703125 254 L225.42970275878906 254 L225.42970275878906 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-405.2095031738281 -47 L-405.2095031738281 254 L180.79049682617188 254 L180.79049682617188 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M517.513671875 106 L517.513671875 -195 L-68.48629760742188 -195 L-68.48629760742188 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-182.27029418945312 -82 L-182.27029418945312 219 L403.7297058105469 219 L403.7297058105469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-187.75079345703125 -82 L-187.75079345703125 219 L398.24920654296875 219 L398.24920654296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-193.231201171875 -82 L-193.231201171875 219 L392.768798828125 219 L392.768798828125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-276.8053894042969 -82 L-276.8053894042969 219 L309.1946105957031 219 L309.1946105957031 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-289.0299987792969 -82 L-289.0299987792969 219 L296.9700012207031 219 L296.9700012207031 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-374.2370910644531 -82 L-374.2370910644531 219 L211.7628936767578 219 L211.7628936767578 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-377.814208984375 -82 L-377.814208984375 219 L208.18580627441406 219 L208.18580627441406 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-403.385986328125 -82 L-403.385986328125 219 L182.61399841308594 219 L182.61399841308594 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-406.8664855957031 -82 L-406.8664855957031 219 L179.1334991455078 219 L179.1334991455078 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-417.73748779296875 -82 L-417.73748779296875 219 L168.2624969482422 219 L168.2624969482422 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M517.513671875 141 L517.513671875 -160 L-68.48629760742188 -160 L-68.48629760742188 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-206.1717071533203 -117 L-206.1717071533203 184 L379.82830810546875 184 L379.82830810546875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-211.65220642089844 -117 L-211.65220642089844 184 L374.3478088378906 184 L374.3478088378906 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-217.13259887695312 -117 L-217.13259887695312 184 L368.8674011230469 184 L368.8674011230469 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-255.1385040283203 -117 L-255.1385040283203 184 L330.86151123046875 184 L330.86151123046875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-267.36309814453125 -117 L-267.36309814453125 184 L318.63690185546875 184 L318.63690185546875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-342.160888671875 -117 L-342.160888671875 184 L243.83909606933594 184 L243.83909606933594 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-345.73809814453125 -117 L-345.73809814453125 184 L240.26190185546875 184 L240.26190185546875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-393.8362121582031 -117 L-393.8362121582031 184 L192.16380310058594 184 L192.16380310058594 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M517.513671875 176 L517.513671875 -125 L-68.48629760742188 -125 L-68.48629760742188 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-164.61819458007812 -152 L-164.61819458007812 149 L421.3818054199219 149 L421.3818054199219 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-170.09869384765625 -152 L-170.09869384765625 149 L415.90130615234375 149 L415.90130615234375 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M-175.5791015625 -152 L-175.5791015625 149 L410.4208984375 149 L410.4208984375 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-233.22169494628906 -152 L-233.22169494628906 149 L352.7782897949219 149 L352.7782897949219 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-245.44630432128906 -152 L-245.44630432128906 149 L340.5537109375 149 L340.5537109375 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-359.92041015625 -152 L-359.92041015625 149 L226.07960510253906 149 L226.07960510253906 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-363.4975891113281 -152 L-363.4975891113281 149 L222.5023956298828 149 L222.5023956298828 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-437.9032897949219 -152 L-437.9032897949219 149 L148.09669494628906 149 L148.09669494628906 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M517.513671875 211 L517.513671875 -90 L-68.48629760742188 -90 L-68.48629760742188 211 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-191.7476043701172 -187 L-191.7476043701172 114 L394.2524108886719 114 L394.2524108886719 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-197.2281036376953 -187 L-197.2281036376953 114 L388.77191162109375 114 L388.77191162109375 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M-202.70849609375 -187 L-202.70849609375 114 L383.29150390625 114 L383.29150390625 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-260.5928039550781 -187 L-260.5928039550781 114 L325.4071960449219 114 L325.4071960449219 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-264.1698913574219 -187 L-264.1698913574219 114 L321.8301086425781 114 L321.8301086425781 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-338.5757141113281 -187 L-338.5757141113281 114 L247.42430114746094 114 L247.42430114746094 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-342.05621337890625 -187 L-342.05621337890625 114 L243.9438018798828 114 L243.9438018798828 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-408.26031494140625 -187 L-408.26031494140625 114 L177.7397003173828 114 L177.7397003173828 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M517.513671875 246 L517.513671875 -55 L-68.48629760742188 -55 L-68.48629760742188 246 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath60">
<path d="M-182.27029418945312 -222 L-182.27029418945312 79 L403.7297058105469 79 L403.7297058105469 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath61">
<path d="M-187.75079345703125 -222 L-187.75079345703125 79 L398.24920654296875 79 L398.24920654296875 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath62">
<path d="M-193.231201171875 -222 L-193.231201171875 79 L392.768798828125 79 L392.768798828125 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath63">
<path d="M-276.8053894042969 -222 L-276.8053894042969 79 L309.1946105957031 79 L309.1946105957031 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath64">
<path d="M-289.0299987792969 -222 L-289.0299987792969 79 L296.9700012207031 79 L296.9700012207031 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath65">
<path d="M-374.2370910644531 -222 L-374.2370910644531 79 L211.7628936767578 79 L211.7628936767578 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath66">
<path d="M-377.814208984375 -222 L-377.814208984375 79 L208.18580627441406 79 L208.18580627441406 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath67">
<path d="M-403.385986328125 -222 L-403.385986328125 79 L182.61399841308594 79 L182.61399841308594 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath68">
<path d="M-406.8664855957031 -222 L-406.8664855957031 79 L179.1334991455078 79 L179.1334991455078 -222 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath69">
<path d="M-417.73748779296875 -222 L-417.73748779296875 79 L168.2624969482422 79 L168.2624969482422 -222 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M79.08495330810547 0.5 L79.08495330810547 280.5" clip-path="url(#clipPath3)" fill="none" />
</g>
<g color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" />
</g>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,16,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlistEditor</text>
<line x1="0" y1="12.5" x2="69.44287109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85.4429,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,88.9233,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,470,10)">
<path d="M53.013648986816406 0.5 L53.013648986816406 280.5" stroke="none" clip-path="url(#clipPath7)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,470,10)">
<path d="M53.013648986816406 0.5 L53.013648986816406 280.5" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,470,10)">
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath7)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,470,10)">
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" clip-path="url(#clipPath7)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath8)" stroke-linecap="square" transform="matrix(1,0,0,1,6,6)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" stroke-miterlimit="10" clip-path="url(#clipPath8)" fill="none" stroke-linecap="square" transform="matrix(1,0,0,1,6,6)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,513.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,516.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Scheduler</text>
<line x1="0" y1="12.5" x2="52.07275390625" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,517.5137,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 219.5 L0.5 219.5 Z" stroke="none" clip-path="url(#clipPath11)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,517.5137,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 219.5 L0.5 219.5 Z" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 81 L527.513671875 81" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath12)" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,81)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,81)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,194.7984,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,200.2789,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,205.7593,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,278.7256,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,290.9502,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,356.9932,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,360.5703,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,405.2095,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 116 L527.513671875 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath21)" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,182.2703,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,187.7508,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,193.2312,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">scheduleEntries</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,276.8054,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,289.03,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">displaySchedule</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,374.2371,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,377.8142,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">from</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,403.38599999999997,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,406.8665,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">to</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,417.7375,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 151 L527.513671875 151" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath32)" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,151)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath32)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,151)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,206.1717,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,211.6522,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,217.1326,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,255.1385,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,267.3631,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">displayPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,342.16089999999997,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,345.73810000000003,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">playlistId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,393.83619999999996,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 186 L527.513671875 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath41)" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath41)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,164.6182,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,170.0987,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,175.5791,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath44)">isRemoved</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,233.2217,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,245.4463,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">removeFromSchedule</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,359.9204,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,363.49760000000003,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">scheduleEntry</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,437.90330000000006,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 221 L527.513671875 221" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath50)" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,221)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath50)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,221)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,191.7476,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,197.2281,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,202.70850000000002,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath53)">reschedule</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,260.5928,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,264.1699,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">scheduleEntry</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,338.5757,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,342.0562,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath57)">newPlaytime</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408.26030000000003,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M98.58499908447266 256 L527.513671875 256" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath59)" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,256)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath59)" fill="none" stroke-linecap="square" transform="matrix(-1,0,0,-1,527.5137,256)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,182.2703,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath60)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,187.7508,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath61)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,193.2312,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath62)">scheduleEntries</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,276.8054,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath63)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,289.03,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath64)">displaySchedule</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,374.2371,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath65)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,377.8142,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath66)">from</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,403.38599999999997,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath67)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,406.8665,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath68)">to</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,417.7375,222)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath69)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 44 KiB

View file

@ -1,388 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M10 10 L10 311 L761 311 L761 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 301 L751 301 L751 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 291 L741 291 L741 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-16 -16 L-16 285 L735 285 L735 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-53.474098205566406 -16 L-53.474098205566406 285 L697.52587890625 285 L697.52587890625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-56.9546012878418 -16 L-56.9546012878418 285 L694.04541015625 285 L694.04541015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-290 -10 L-290 291 L461 291 L461 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-296 -16 L-296 285 L455 285 L455 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-361.18359375 -16 L-361.18359375 285 L389.81640625 285 L389.81640625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-364.6640930175781 -16 L-364.6640930175781 285 L386.3359069824219 285 L386.3359069824219 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-360.848388671875 -71 L-360.848388671875 230 L390.151611328125 230 L390.151611328125 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-580 -10 L-580 291 L171 291 L171 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-586 -16 L-586 285 L165 285 L165 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-658.12841796875 -16 L-658.12841796875 285 L92.87159729003906 285 L92.87159729003906 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-661.60888671875 -16 L-661.60888671875 285 L89.39109802246094 285 L89.39109802246094 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-655.4541015625 -141 L-655.4541015625 160 L95.5458984375 160 L95.5458984375 -141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M360.848388671875 71 L360.848388671875 -230 L-390.151611328125 -230 L-390.151611328125 71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-103.43009948730469 -47 L-103.43009948730469 254 L647.5698852539062 254 L647.5698852539062 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-108.91059875488281 -47 L-108.91059875488281 254 L642.0894165039062 254 L642.0894165039062 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-114.39099884033203 -47 L-114.39099884033203 254 L636.6090087890625 254 L636.6090087890625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-187.3572998046875 -47 L-187.3572998046875 254 L563.6427001953125 254 L563.6427001953125 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-199.58189392089844 -47 L-199.58189392089844 254 L551.4180908203125 254 L551.4180908203125 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-265.6249084472656 -47 L-265.6249084472656 254 L485.3750915527344 254 L485.3750915527344 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-269.2019958496094 -47 L-269.2019958496094 254 L481.7980041503906 254 L481.7980041503906 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-313.8411865234375 -47 L-313.8411865234375 254 L437.1588134765625 254 L437.1588134765625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M360.848388671875 106 L360.848388671875 -195 L-390.151611328125 -195 L-390.151611328125 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-98.0374984741211 -82 L-98.0374984741211 219 L652.9625244140625 219 L652.9625244140625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-103.51799774169922 -82 L-103.51799774169922 219 L647.4819946289062 219 L647.4819946289062 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-108.99839782714844 -82 L-108.99839782714844 219 L642.0015869140625 219 L642.0015869140625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-159.1322021484375 -82 L-159.1322021484375 219 L591.8677978515625 219 L591.8677978515625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-171.35679626464844 -82 L-171.35679626464844 219 L579.6431884765625 219 L579.6431884765625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-254.9095001220703 -82 L-254.9095001220703 219 L496.09051513671875 219 L496.09051513671875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-258.4866943359375 -82 L-258.4866943359375 219 L492.5133056640625 219 L492.5133056640625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-319.2337951660156 -82 L-319.2337951660156 219 L431.7662048339844 219 L431.7662048339844 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M655.4541015625 141 L655.4541015625 -160 L-95.5458984375 -160 L-95.5458984375 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-401.7298889160156 -118 L-401.7298889160156 183 L349.2701110839844 183 L349.2701110839844 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-407.21038818359375 -118 L-407.21038818359375 183 L343.78961181640625 183 L343.78961181640625 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-412.6907958984375 -118 L-412.6907958984375 183 L338.3092041015625 183 L338.3092041015625 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-485.6571044921875 -118 L-485.6571044921875 183 L265.3428955078125 183 L265.3428955078125 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath40">
<path d="M-497.8817138671875 -118 L-497.8817138671875 183 L253.11830139160156 183 L253.11830139160156 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath41">
<path d="M-563.9246826171875 -118 L-563.9246826171875 183 L187.07530212402344 183 L187.07530212402344 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath42">
<path d="M-567.5017700195312 -118 L-567.5017700195312 183 L183.49819946289062 183 L183.49819946289062 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath43">
<path d="M-601.4364013671875 -118 L-601.4364013671875 183 L149.5635986328125 183 L149.5635986328125 -118 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath44">
<path d="M655.4541015625 176 L655.4541015625 -125 L-95.5458984375 -125 L-95.5458984375 176 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath45">
<path d="M-241.84109497070312 -152 L-241.84109497070312 149 L509.1589050292969 149 L509.1589050292969 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath46">
<path d="M-247.32159423828125 -152 L-247.32159423828125 149 L503.67840576171875 149 L503.67840576171875 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath47">
<path d="M-252.802001953125 -152 L-252.802001953125 149 L498.197998046875 149 L498.197998046875 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath48">
<path d="M-303.456787109375 -152 L-303.456787109375 149 L447.543212890625 149 L447.543212890625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath49">
<path d="M-315.681396484375 -152 L-315.681396484375 149 L435.318603515625 149 L435.318603515625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath50">
<path d="M-408.2253112792969 -152 L-408.2253112792969 149 L342.7746887207031 149 L342.7746887207031 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath51">
<path d="M-411.802490234375 -152 L-411.802490234375 149 L339.197509765625 149 L339.197509765625 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath52">
<path d="M-472.5495910644531 -152 L-472.5495910644531 149 L278.4504089355469 149 L278.4504089355469 -152 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath53">
<path d="M360.848388671875 211 L360.848388671875 -90 L-390.151611328125 -90 L-390.151611328125 211 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath54">
<path d="M-136.40049743652344 -187 L-136.40049743652344 114 L614.5994873046875 114 L614.5994873046875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath55">
<path d="M-141.88099670410156 -187 L-141.88099670410156 114 L609.1190185546875 114 L609.1190185546875 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M-147.3614044189453 -187 L-147.3614044189453 114 L603.6386108398438 114 L603.6386108398438 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath57">
<path d="M-226.63870239257812 -187 L-226.63870239257812 114 L524.361328125 114 L524.361328125 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath58">
<path d="M-230.2158966064453 -187 L-230.2158966064453 114 L520.7841186523438 114 L520.7841186523438 -187 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath59">
<path d="M-280.8706970214844 -187 L-280.8706970214844 114 L470.1293029785156 114 L470.1293029785156 -187 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M53.013648986816406 0.5 L53.013648986816406 280.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,16,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,53.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,56.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Scheduler</text>
<line x1="0" y1="12.5" x2="52.07275390625" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,290,10)">
<path d="M76.34839630126953 0.5 L76.34839630126953 280.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M76.34839630126953 0.5 L76.34839630126953 280.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L151.19679260253906 0.5 L151.19679260253906 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L151.19679260253906 0.5 L151.19679260253906 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,296,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">localStorage</text>
<line x1="0" y1="12.5" x2="65.18359375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,361.1836,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,364.6641,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Local storage</text>
<line x1="0" y1="12.5" x2="71.03271484375" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,360.84839999999997,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 219.5 L0.5 219.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 219.5 L0.5 219.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,580,10)">
<path d="M80.9541015625 0.5 L80.9541015625 202.5" stroke="none" clip-path="url(#clipPath12)" />
<path d="M80.9541015625 0.5 L80.9541015625 202.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath12)" fill="none" />
<path d="M0.5 0.5 L160.408203125 0.5 L160.408203125 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath12)" />
<path d="M0.5 0.5 L160.408203125 0.5 L160.408203125 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,586,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)">mediaArchive</text>
<line x1="0" y1="12.5" x2="72.12841796875" y2="12.5" clip-path="url(#clipPath13)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,658.1284,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath14)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,661.6089,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">Media archive</text>
<line x1="0" y1="12.5" x2="73.29931640625" y2="12.5" clip-path="url(#clipPath15)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,655.4541,141)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="none" clip-path="url(#clipPath16)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 71.5 L0.5 71.5 Z" stroke="black" clip-path="url(#clipPath16)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M72.51370239257812 81 L370.848388671875 81" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath17)" transform="matrix(-0.9999999999999999,7.216449660063502E-16,-7.216449660063502E-16,-0.9999999999999999,370.8484,81)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath17)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,7.216449660063502E-16,-7.216449660063502E-16,-0.9999999999999999,370.8484,81)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,103.4301,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,108.9106,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,114.39099999999999,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,187.3573,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,199.5819,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,265.6249,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,269.202,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,313.84119999999996,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M72.51370239257812 116 L370.848388671875 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath26)" transform="matrix(-0.9999999999999999,-6.328271240363392E-15,6.328271240363392E-15,-0.9999999999999999,370.8484,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath26)" fill="none" stroke-linecap="square" transform="matrix(-0.9999999999999999,-6.328271240363392E-15,6.328271240363392E-15,-0.9999999999999999,370.8484,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,98.0375,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,103.518,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,108.99839999999999,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">clipExists</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,159.13219999999998,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,171.3568,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">existsAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,254.90949999999998,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,258.4867,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,319.2338,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M72.51370239257812 151 L665.4541015625 151" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath35)" transform="matrix(-1,-1.2156942119645464E-14,1.2156942119645464E-14,-1,665.4541,151)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath35)" fill="none" stroke-linecap="square" transform="matrix(-1,-1.2156942119645464E-14,1.2156942119645464E-14,-1,665.4541,151)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,401.7299,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,407.2104,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,412.69079999999997,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,485.65709999999996,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,497.88169999999997,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath40)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,563.9247,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath41)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,567.5018,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath42)">authId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,601.4363999999999,118)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath43)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M72.51370239257812 186 L665.4541015625 186" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath44)" transform="matrix(-1,1.609823385706477E-15,-1.609823385706477E-15,-1,665.4541,186)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath44)" fill="none" stroke-linecap="square" transform="matrix(-1,1.609823385706477E-15,-1.609823385706477E-15,-1,665.4541,186)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,241.8411,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath45)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,247.32160000000002,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath46)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,252.80200000000002,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath47)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,303.45680000000004,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath48)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,315.6814,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath49)">retrieveAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,408.22530000000006,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath50)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,411.8025,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath51)">audioClipId</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,472.54960000000005,152)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath52)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-10,-10)">
<path d="M72.51370239257812 221 L370.848388671875 221" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath53)" transform="matrix(-1,-4.718447854656915E-15,4.718447854656915E-15,-1,370.8484,221)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath53)" fill="none" stroke-linecap="square" transform="matrix(-1,-4.718447854656915E-15,4.718447854656915E-15,-1,370.8484,221)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,136.4005,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath54)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,141.881,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath55)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,147.3614,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath56)">storeAudioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,226.6387,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath57)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,230.2159,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath58)">audioClip</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,280.8707,187)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath59)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 37 KiB

View file

@ -1,257 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M50 10 L50 201 L616 201 L616 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 191 L566 191 L566 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 181 L556 181 L556 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-16 -16 L-16 175 L550 175 L550 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-108.5009994506836 -16 L-108.5009994506836 175 L457.4989929199219 175 L457.4989929199219 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-111.98139953613281 -16 L-111.98139953613281 175 L454.0185852050781 175 L454.0185852050781 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-450 -10 L-450 181 L116 181 L116 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-456 -16 L-456 175 L110 175 L110 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-493.4740905761719 -16 L-493.4740905761719 175 L72.5259017944336 175 L72.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-496.95458984375 -16 L-496.95458984375 175 L69.04540252685547 175 L69.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-497.5137023925781 -71 L-497.5137023925781 120 L68.48629760742188 120 L68.48629760742188 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M497.5137023925781 71 L497.5137023925781 -120 L-68.48629760742188 -120 L-68.48629760742188 71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-195.96890258789062 -47 L-195.96890258789062 144 L370.0310974121094 144 L370.0310974121094 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-201.44940185546875 -47 L-201.44940185546875 144 L364.55059814453125 144 L364.55059814453125 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-206.92979431152344 -47 L-206.92979431152344 144 L359.0701904296875 144 L359.0701904296875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-279.8960876464844 -47 L-279.8960876464844 144 L286.1039123535156 144 L286.1039123535156 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-292.1206970214844 -47 L-292.1206970214844 144 L273.8793029785156 144 L273.8793029785156 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-358.1636962890625 -47 L-358.1636962890625 144 L207.8363037109375 144 L207.8363037109375 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-361.7408142089844 -47 L-361.7408142089844 144 L204.2592010498047 144 L204.2592010498047 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-406.3800048828125 -47 L-406.3800048828125 144 L159.6199951171875 144 L159.6199951171875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M497.5137023925781 106 L497.5137023925781 -85 L-68.48629760742188 -85 L-68.48629760742188 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-227.99139404296875 -82 L-227.99139404296875 109 L338.00860595703125 109 L338.00860595703125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-233.47189331054688 -82 L-233.47189331054688 109 L332.5281066894531 109 L332.5281066894531 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-238.95230102539062 -82 L-238.95230102539062 109 L327.0476989746094 109 L327.0476989746094 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-280.35809326171875 -82 L-280.35809326171875 109 L285.64190673828125 109 L285.64190673828125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-292.58270263671875 -82 L-292.58270263671875 109 L273.41729736328125 109 L273.41729736328125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-370.7803955078125 -82 L-370.7803955078125 109 L195.2196044921875 109 L195.2196044921875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-374.35760498046875 -82 L-374.35760498046875 109 L191.64239501953125 109 L191.64239501953125 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M497.5137023925781 141 L497.5137023925781 -50 L-68.48629760742188 -50 L-68.48629760742188 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-199.75819396972656 -117 L-199.75819396972656 74 L366.2417907714844 74 L366.2417907714844 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-205.2386932373047 -117 L-205.2386932373047 74 L360.76129150390625 74 L360.76129150390625 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-210.71910095214844 -117 L-210.71910095214844 74 L355.2809143066406 74 L355.2809143066406 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath33">
<path d="M-243.64390563964844 -117 L-243.64390563964844 74 L322.3561096191406 74 L322.3561096191406 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath34">
<path d="M-255.86849975585938 -117 L-255.86849975585938 74 L310.1315002441406 74 L310.1315002441406 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath35">
<path d="M-359.0902099609375 -117 L-359.0902099609375 74 L206.90980529785156 74 L206.90980529785156 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath36">
<path d="M-362.66729736328125 -117 L-362.66729736328125 74 L203.33270263671875 74 L203.33270263671875 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath37">
<path d="M-388.2391052246094 -117 L-388.2391052246094 74 L177.76089477539062 74 L177.76089477539062 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath38">
<path d="M-391.7196044921875 -117 L-391.7196044921875 74 L174.2803955078125 74 L174.2803955078125 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath39">
<path d="M-402.5906982421875 -117 L-402.5906982421875 74 L163.4093017578125 74 L163.4093017578125 -117 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M101.4260482788086 0.5 L101.4260482788086 170.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L201.3520965576172 0.5 L201.3520965576172 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L201.3520965576172 0.5 L201.3520965576172 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,16,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">broadcastAuditor</text>
<line x1="0" y1="12.5" x2="92.5009765625" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,108.501,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,111.9814,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Broadcast auditor</text>
<line x1="0" y1="12.5" x2="93.87060546875" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,450,10)">
<path d="M53.013648986816406 0.5 L53.013648986816406 170.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M53.013648986816406 0.5 L53.013648986816406 170.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,456,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,493.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,496.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Scheduler</text>
<line x1="0" y1="12.5" x2="52.07275390625" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,497.5137,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 109.5 L0.5 109.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 109.5 L0.5 109.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-50,-10)">
<path d="M160.9261016845703 81 L547.513671875 81" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,-1.1102230246251565E-16,1.1102230246251565E-16,-1,547.5137,81)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,-1.1102230246251565E-16,1.1102230246251565E-16,-1,547.5137,81)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,195.9689,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,201.4494,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,206.9298,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,279.8961,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,292.1207,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,358.1637,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,361.74080000000004,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,406.38,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-50,-10)">
<path d="M160.9261016845703 116 L547.513671875 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,-2.275957200481571E-15,2.275957200481571E-15,-1,547.5137,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,-2.275957200481571E-15,2.275957200481571E-15,-1,547.5137,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,227.9914,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,233.4719,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,238.9523,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">playLog</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,280.35810000000004,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,292.5827,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">displayPlayLog</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,370.7804,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,374.35760000000005,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-50,-10)">
<path d="M160.9261016845703 151 L547.513671875 151" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath29)" transform="matrix(-1,-7.66053886991358E-15,7.66053886991358E-15,-1,547.5137,151)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath29)" fill="none" stroke-linecap="square" transform="matrix(-1,-7.66053886991358E-15,7.66053886991358E-15,-1,547.5137,151)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,199.7582,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,205.2387,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,210.7191,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">report</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,243.6439,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath33)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,255.86849999999998,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath34)">generatePlayReport</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,359.0902,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath35)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,362.6673,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath36)">from</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,388.2391,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath37)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,391.7196,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath38)">to</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,402.59069999999997,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath39)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 24 KiB

View file

@ -1,222 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" color-rendering="auto" stroke-dasharray="none" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" text-rendering="auto" stroke="black" font-style="normal" stroke-linecap="square" shape-rendering="auto" fill-opacity="1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M40 10 L40 181 L610 181 L610 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 171 L570 171 L570 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-450 -10 L-450 161 L120 161 L120 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-452.4862976074219 -10 L-452.4862976074219 161 L117.51370239257812 161 L117.51370239257812 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-458.4862976074219 -16 L-458.4862976074219 155 L111.51370239257812 155 L111.51370239257812 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-495.96038818359375 -16 L-495.96038818359375 155 L74.03959655761719 155 L74.03959655761719 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-499.4408874511719 -16 L-499.4408874511719 155 L70.55909729003906 155 L70.55909729003906 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-500 -71 L-500 100 L70 100 L70 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-10 -10 L-10 161 L560 161 L560 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-16 -16 L-16 155 L554 155 L554 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-88.12300109863281 -16 L-88.12300109863281 155 L481.87701416015625 155 L481.87701416015625 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-91.60350036621094 -16 L-91.60350036621094 155 L478.3965148925781 155 L478.3965148925781 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-274.04681396484375 -47 L-274.04681396484375 124 L295.95318603515625 124 L295.95318603515625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-279.5273132324219 -47 L-279.5273132324219 124 L290.4726867675781 124 L290.4726867675781 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-285.0076904296875 -47 L-285.0076904296875 124 L284.9923095703125 124 L284.9923095703125 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-309.4193115234375 -47 L-309.4193115234375 124 L260.5806884765625 124 L260.5806884765625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-312.9964904785156 -47 L-312.9964904785156 124 L257.0035095214844 124 L257.0035095214844 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M500 71 L500 -100 L-70 -100 L-70 71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-274.55169677734375 -117 L-274.55169677734375 54 L295.44830322265625 54 L295.44830322265625 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-280.0321960449219 -117 L-280.0321960449219 54 L289.9678039550781 54 L289.9678039550781 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M-285.5126037597656 -117 L-285.5126037597656 54 L284.4873962402344 54 L284.4873962402344 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-308.91448974609375 -117 L-308.91448974609375 54 L261.08551025390625 54 L261.08551025390625 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-312.4916076660156 -117 L-312.4916076660156 54 L257.5083923339844 54 L257.5083923339844 -117 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M500 141 L500 -30 L-70 -30 L-70 141 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M500 106 L500 -65 L-70 -65 L-70 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-227.05250549316406 -82 L-227.05250549316406 89 L342.947509765625 89 L342.947509765625 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-232.5330047607422 -82 L-232.5330047607422 89 L337.4670104980469 89 L337.4670104980469 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-238.01339721679688 -82 L-238.01339721679688 89 L331.9866027832031 89 L331.9866027832031 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-291.1012878417969 -82 L-291.1012878417969 89 L278.8987121582031 89 L278.8987121582031 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath30">
<path d="M-303.3258972167969 -82 L-303.3258972167969 89 L266.6741027832031 89 L266.6741027832031 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath31">
<path d="M-356.4137878417969 -82 L-356.4137878417969 89 L213.58619689941406 89 L213.58619689941406 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath32">
<path d="M-359.99090576171875 -82 L-359.99090576171875 89 L210.00909423828125 89 L210.00909423828125 -82 Z" />
</clipPath>
</defs>
<g stroke-dasharray="5,5" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,450,10)">
<path d="M55.5 0.5 L55.5 150.5" clip-path="url(#clipPath3)" fill="none" />
</g>
<g color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,452.4863,10)">
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath4)" />
</g>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,452.4863,10)">
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,458.4863,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,495.96040000000005,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,499.44090000000006,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath7)">Scheduler</text>
<line x1="0" y1="12.5" x2="52.07275390625" y2="12.5" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,500,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 89.5 L0.5 89.5 Z" stroke="none" clip-path="url(#clipPath8)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,500,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 89.5 L0.5 89.5 Z" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M81.12059783935547 0.5 L81.12059783935547 132.5" stroke="none" clip-path="url(#clipPath9)" />
</g>
<g font-family="sans-serif" font-size="11" stroke-dasharray="5,5" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M81.12059783935547 0.5 L81.12059783935547 132.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M0.5 0.5 L160.74119567871094 0.5 L160.74119567871094 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath9)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M0.5 0.5 L160.74119567871094 0.5 L160.74119567871094 25.5 L0.5 25.5 Z" clip-path="url(#clipPath9)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath10)" stroke-linecap="square" transform="matrix(1,0,0,1,6,6)">administrator</text>
<line x1="0" y1="12.5" x2="72.123046875" y2="12.5" stroke-miterlimit="10" clip-path="url(#clipPath10)" fill="none" stroke-linecap="square" transform="matrix(1,0,0,1,6,6)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,88.123,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath11)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,91.6035,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath12)">Administrator</text>
<line x1="0" y1="12.5" x2="73.6376953125" y2="12.5" clip-path="url(#clipPath12)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-40,-10)">
<path d="M540 81 L130.62060546875 81" clip-path="url(#clipPath1)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath13)" stroke-linecap="square" transform="matrix(1,0,0,1,314.0468,57)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,279.5273,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,285.0077,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">start</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,309.4193,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,312.9965,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-1,0,0,-1,500,71)">
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath18)" />
<path d="M12 -6 L0 0 L12 6 Z" clip-path="url(#clipPath18)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-40,-10)">
<path d="M540 151 L130.62060546875 151" clip-path="url(#clipPath1)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath19)" stroke-linecap="square" transform="matrix(1,0,0,1,314.5517,127)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,280.0322,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,285.51259999999996,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath21)">stop</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,308.9145,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,312.49159999999995,117)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(-1,-7.549516567451064E-15,7.549516567451064E-15,-1,500,141)">
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath24)" />
<path d="M12 -6 L0 0 L12 6 Z" clip-path="url(#clipPath24)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-40,-10)">
<path d="M540 116 L130.62060546875 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath25)" stroke-linecap="square" transform="matrix(-1,2.942091015256665E-15,-2.942091015256665E-15,-1,540,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath25)" fill="none" stroke-linecap="square" transform="matrix(-1,2.942091015256665E-15,-2.942091015256665E-15,-1,540,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,227.0525,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,232.53300000000002,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,238.01340000000002,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">isRunning</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,291.10130000000004,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,303.32590000000005,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath30)">isRunning</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,356.41380000000004,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath31)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,359.9909,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath32)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 120 KiB

View file

@ -1,195 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" stroke-dasharray="none" color-rendering="auto" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" stroke="black" text-rendering="auto" font-style="normal" stroke-linecap="square" fill-opacity="1" shape-rendering="auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M70 10 L70 170 L576 170 L576 10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 160 L506 160 L506 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-10 -10 L-10 150 L496 150 L496 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-16 -16 L-16 144 L490 144 L490 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-85.44290161132812 -16 L-85.44290161132812 144 L420.5570983886719 144 L420.5570983886719 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-88.92330169677734 -16 L-88.92330169677734 144 L417.0766906738281 144 L417.0766906738281 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-390 -10 L-390 150 L116 150 L116 -10 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-396 -16 L-396 144 L110 144 L110 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-433.4740905761719 -16 L-433.4740905761719 144 L72.5259017944336 144 L72.5259017944336 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-436.95458984375 -16 L-436.95458984375 144 L69.04540252685547 144 L69.04540252685547 -16 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-437.5137023925781 -71 L-437.5137023925781 89 L68.48629760742188 89 L68.48629760742188 -71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M437.5137023925781 71 L437.5137023925781 -89 L-68.48629760742188 -89 L-68.48629760742188 71 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-154.79840087890625 -47 L-154.79840087890625 113 L351.20159912109375 113 L351.20159912109375 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-160.27890014648438 -47 L-160.27890014648438 113 L345.7210998535156 113 L345.7210998535156 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-165.75929260253906 -47 L-165.75929260253906 113 L340.2406921386719 113 L340.2406921386719 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-238.72560119628906 -47 L-238.72560119628906 113 L267.2744140625 113 L267.2744140625 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-250.9501953125 -47 L-250.9501953125 113 L255.0498046875 113 L255.0498046875 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath18">
<path d="M-316.9931945800781 -47 L-316.9931945800781 113 L189.00680541992188 113 L189.00680541992188 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath19">
<path d="M-320.5703125 -47 L-320.5703125 113 L185.42970275878906 113 L185.42970275878906 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath20">
<path d="M-365.2095031738281 -47 L-365.2095031738281 113 L140.79049682617188 113 L140.79049682617188 -47 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath21">
<path d="M437.5137023925781 106 L437.5137023925781 -54 L-68.48629760742188 -54 L-68.48629760742188 106 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath22">
<path d="M-172.25979614257812 -82 L-172.25979614257812 78 L333.7402038574219 78 L333.7402038574219 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath23">
<path d="M-177.74029541015625 -82 L-177.74029541015625 78 L328.25970458984375 78 L328.25970458984375 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath24">
<path d="M-183.220703125 -82 L-183.220703125 78 L322.779296875 78 L322.779296875 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath25">
<path d="M-257.0679016113281 -82 L-257.0679016113281 78 L248.93209838867188 78 L248.93209838867188 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath26">
<path d="M-260.6449890136719 -82 L-260.6449890136719 78 L245.35499572753906 78 L245.35499572753906 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath27">
<path d="M-298.6509094238281 -82 L-298.6509094238281 78 L207.34910583496094 78 L207.34910583496094 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath28">
<path d="M-302.13128662109375 -82 L-302.13128662109375 78 L203.8686981201172 78 L203.8686981201172 -82 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath29">
<path d="M-347.74798583984375 -82 L-347.74798583984375 78 L158.2519989013672 78 L158.2519989013672 -82 Z" />
</clipPath>
</defs>
<g color-rendering="optimizeQuality" stroke-dasharray="5,5" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,10)">
<path d="M79.08495330810547 0.5 L79.08495330810547 140.5" clip-path="url(#clipPath3)" fill="none" />
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" stroke="none" clip-path="url(#clipPath3)" fill="white" />
<path d="M0.5 0.5 L156.66990661621094 0.5 L156.66990661621094 25.5 L0.5 25.5 Z" stroke-dasharray="none" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,16,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">playlistEditor</text>
<line x1="0" y1="12.5" x2="69.44287109375" y2="12.5" clip-path="url(#clipPath4)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,85.4429,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath5)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath5)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,88.9233,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath6)">Playlist editor</text>
<line x1="0" y1="12.5" x2="72.24658203125" y2="12.5" clip-path="url(#clipPath6)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,390,10)">
<path d="M53.013648986816406 0.5 L53.013648986816406 130.5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M53.013648986816406 0.5 L53.013648986816406 130.5" stroke-dasharray="5,5" stroke="black" clip-path="url(#clipPath7)" fill="none" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke-dasharray="5,5" stroke="none" clip-path="url(#clipPath7)" />
<path d="M0.5 0.5 L104.52729797363281 0.5 L104.52729797363281 25.5 L0.5 25.5 Z" stroke="black" clip-path="url(#clipPath7)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,396,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath8)">system</text>
<line x1="0" y1="12.5" x2="37.47412109375" y2="12.5" clip-path="url(#clipPath8)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,433.4741,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath9)">:</text>
<line x1="0" y1="12.5" x2="3.48046875" y2="12.5" clip-path="url(#clipPath9)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,436.9546,16)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath10)">Scheduler</text>
<line x1="0" y1="12.5" x2="52.07275390625" y2="12.5" clip-path="url(#clipPath10)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke="white" fill="white" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,437.5137,71)">
<path d="M0.5 0.5 L9.5 0.5 L9.5 69.5 L0.5 69.5 Z" stroke="none" clip-path="url(#clipPath11)" />
<path d="M0.5 0.5 L9.5 0.5 L9.5 69.5 L0.5 69.5 Z" stroke="black" clip-path="url(#clipPath11)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-70,-10)">
<path d="M158.5850067138672 81 L507.5137023925781 81" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath12)" transform="matrix(-1,-4.996003610813204E-16,4.996003610813204E-16,-1,507.5137,81)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath12)" fill="none" stroke-linecap="square" transform="matrix(-1,-4.996003610813204E-16,4.996003610813204E-16,-1,507.5137,81)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,154.7984,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath13)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160.2789,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath14)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,165.7593,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath15)">authenticated</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,238.7256,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath16)">:=</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,250.9502,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath17)">authenticate</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,316.9932,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath18)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,320.5703,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath19)">authInfo</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,365.2095,47)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath20)">)</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,-70,-10)">
<path d="M158.5850067138672 116 L507.5137023925781 116" clip-path="url(#clipPath1)" fill="none" />
<path d="M12 -6 L0 0 L12 6 Z" stroke="none" clip-path="url(#clipPath21)" transform="matrix(-1,2.55351295663786E-15,-2.55351295663786E-15,-1,507.5137,116)" />
<path d="M12 -6 L0 0 L12 6 Z" stroke-miterlimit="10" clip-path="url(#clipPath21)" fill="none" stroke-linecap="square" transform="matrix(-1,2.55351295663786E-15,-2.55351295663786E-15,-1,507.5137,116)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,172.2598,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath22)"> </text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,177.74030000000002,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath23)">:</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,183.22070000000002,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath24)">uploadPlaylist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,257.0679,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath25)">(</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,260.64500000000004,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath26)">playlist</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,298.65090000000004,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath27)">,</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,302.1313,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath28)">playtime</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,347.74800000000005,82)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath29)">)</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because it is too large Load diff

View file

@ -1,144 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg stroke-width="1" stroke-dashoffset="0" font-size="12" color-rendering="auto" stroke-dasharray="none" font-weight="normal" color-interpolation="auto" stroke-linejoin="miter" fill="black" image-rendering="auto" font-family="&apos;sansserif&apos;" stroke-opacity="1" stroke-miterlimit="10" text-rendering="auto" stroke="black" font-style="normal" stroke-linecap="square" shape-rendering="auto" fill-opacity="1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!--Generated by the Batik Graphics2D SVG Generator-->
<defs id="genericDefs" />
<g>
<defs id="defs1">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath1">
<path d="M-160 80 L-160 592 L640 592 L640 80 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath2">
<path d="M0 0 L0 512 L800 512 L800 0 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath3">
<path d="M-300 -410 L-300 102 L500 102 L500 -410 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath4">
<path d="M-302 -434 L-302 78 L498 78 L498 -434 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5">
<path d="M-410 -410 L-410 102 L390 102 L390 -410 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath6">
<path d="M-412 -434 L-412 78 L388 78 L388 -434 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7">
<path d="M-300 -290 L-300 222 L500 222 L500 -290 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath8">
<path d="M-302 -314 L-302 198 L498 198 L498 -314 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath9">
<path d="M-300 -150 L-300 362 L500 362 L500 -150 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath10">
<path d="M-302 -174 L-302 338 L498 338 L498 -174 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath11">
<path d="M-300 -30 L-300 482 L500 482 L500 -30 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath12">
<path d="M-302 -54 L-302 458 L498 458 L498 -54 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath13">
<path d="M-660 -210 L-660 302 L140 302 L140 -210 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath14">
<path d="M-630 -50 L-630 462 L170 462 L170 -50 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath15">
<path d="M-632 -74 L-632 438 L168 438 L168 -74 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath16">
<path d="M-10 -80 L-10 432 L790 432 L790 -80 Z" />
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath17">
<path d="M-12 -104 L-12 408 L788 408 L788 -104 Z" />
</clipPath>
</defs>
<g stroke-opacity="0" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="rgb(255,255,255)" text-rendering="optimizeLegibility" fill="rgb(255,255,255)" fill-opacity="0" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160,-80)">
<path d="M120 90 L360.49798583984375 90 L360.49798583984375 581.5 L120 581.5 Z" stroke="none" clip-path="url(#clipPath1)" />
</g>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160,-80)">
<path d="M120 90 L360.49798583984375 90 L360.49798583984375 581.5 L120 581.5 Z" clip-path="url(#clipPath1)" fill="none" />
</g>
<g color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300,410)">
<path d="M0.5 20.5 L69.5 20.5 L69.5 69.5 L0.5 69.5 ZM0.5 20.5 L20.5 0.5 L89.5 0.5 L69.5 20.5 ZM89.5 0.5 L89.5 49.5 L69.5 69.5 L69.5 20.5 M89.5 0.5" stroke="none" clip-path="url(#clipPath3)" />
</g>
<g color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300,410)">
<path d="M0.5 20.5 L69.5 20.5 L69.5 69.5 L0.5 69.5 ZM0.5 20.5 L20.5 0.5 L89.5 0.5 L69.5 20.5 ZM89.5 0.5 L89.5 49.5 L69.5 69.5 L69.5 20.5 M89.5 0.5" clip-path="url(#clipPath3)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" text-rendering="optimizeLegibility" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,302,434)">
<text x="0" y="11" xml:space="preserve" stroke="none" clip-path="url(#clipPath4)">OSS</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,410,410)">
<path d="M0.5 20.5 L69.5 20.5 L69.5 69.5 L0.5 69.5 ZM0.5 20.5 L20.5 0.5 L89.5 0.5 L69.5 20.5 ZM89.5 0.5 L89.5 49.5 L69.5 69.5 L69.5 20.5 M89.5 0.5" stroke="none" clip-path="url(#clipPath5)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,410,410)">
<path d="M0.5 20.5 L69.5 20.5 L69.5 69.5 L0.5 69.5 ZM0.5 20.5 L20.5 0.5 L89.5 0.5 L69.5 20.5 ZM89.5 0.5 L89.5 49.5 L69.5 69.5 L69.5 20.5 M89.5 0.5" clip-path="url(#clipPath5)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath6)" stroke-linecap="square" transform="matrix(1,0,0,1,2,24)">ALSA</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300,290)">
<path d="M0.5 20.5 L179.5 20.5 L179.5 99.5 L0.5 99.5 ZM0.5 20.5 L20.5 0.5 L199.5 0.5 L179.5 20.5 ZM199.5 0.5 L199.5 79.5 L179.5 99.5 L179.5 20.5 M199.5 0.5" stroke="none" clip-path="url(#clipPath7)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300,290)">
<path d="M0.5 20.5 L179.5 20.5 L179.5 99.5 L0.5 99.5 ZM0.5 20.5 L20.5 0.5 L199.5 0.5 L179.5 20.5 ZM199.5 0.5 L199.5 79.5 L179.5 99.5 L179.5 20.5 M199.5 0.5" clip-path="url(#clipPath7)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath8)" stroke-linecap="square" transform="matrix(1,0,0,1,2,24)">Helix Client Library</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300,150)">
<path d="M0.5 20.5 L179.5 20.5 L179.5 119.5 L0.5 119.5 ZM0.5 20.5 L20.5 0.5 L199.5 0.5 L179.5 20.5 ZM199.5 0.5 L199.5 99.5 L179.5 119.5 L179.5 20.5 M199.5 0.5" stroke="none" clip-path="url(#clipPath9)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300,150)">
<path d="M0.5 20.5 L179.5 20.5 L179.5 119.5 L0.5 119.5 ZM0.5 20.5 L20.5 0.5 L199.5 0.5 L179.5 20.5 ZM199.5 0.5 L199.5 99.5 L179.5 119.5 L179.5 20.5 M199.5 0.5" clip-path="url(#clipPath9)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath10)" stroke-linecap="square" transform="matrix(1,0,0,1,2,24)">Playlist editor</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300,30)">
<path d="M0.5 20.5 L179.5 20.5 L179.5 99.5 L0.5 99.5 ZM0.5 20.5 L20.5 0.5 L199.5 0.5 L179.5 20.5 ZM199.5 0.5 L199.5 79.5 L179.5 99.5 L179.5 20.5 M199.5 0.5" stroke="none" clip-path="url(#clipPath11)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,300,30)">
<path d="M0.5 20.5 L179.5 20.5 L179.5 99.5 L0.5 99.5 ZM0.5 20.5 L20.5 0.5 L199.5 0.5 L179.5 20.5 ZM199.5 0.5 L199.5 79.5 L179.5 99.5 L179.5 20.5 M199.5 0.5" clip-path="url(#clipPath11)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath12)" stroke-linecap="square" transform="matrix(1,0,0,1,2,24)">GTK+</text>
</g>
<g font-family="sans-serif" font-size="11" stroke-opacity="0" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="rgb(255,255,255)" text-rendering="optimizeLegibility" fill="rgb(255,255,255)" fill-opacity="0" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160,-80)">
<path d="M580 377.25 C580 367.9992370605469 557.7261962890625 360.5 530.25 360.5 C502.7738342285156 360.5 480.5 367.9992370605469 480.5 377.25 C480.5 386.5007629394531 502.7738342285156 394 530.25 394 C557.7261962890625 394 580 386.5007629394531 580 377.25" stroke="none" clip-path="url(#clipPath1)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160,-80)">
<path d="M580 377.25 C580 367.9992370605469 557.7261962890625 360.5 530.25 360.5 C502.7738342285156 360.5 480.5 367.9992370605469 480.5 377.25 C480.5 386.5007629394531 502.7738342285156 394 530.25 394 C557.7261962890625 394 580 386.5007629394531 580 377.25" clip-path="url(#clipPath1)" fill="none" />
<path d="M340 430 L480 350 L480 350" clip-path="url(#clipPath1)" fill="none" />
<path d="M480 300 L480 345.79168701171875 L480 361.6785888671875 L480 378.5 L480 378.5" clip-path="url(#clipPath1)" fill="none" />
<path d="M580 300 L580 345.79168701171875 L580 361.6785888671875 L580 378.5 L580 378.5" clip-path="url(#clipPath1)" fill="none" />
<path d="M340 300 L481.216796875 331.8982849121094 L481.216796875 331.8982849121094" clip-path="url(#clipPath1)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath13)" stroke-linecap="square" transform="matrix(1,0,0,1,500,290)">Local storage</text>
</g>
<g font-family="sans-serif" font-size="11" stroke-opacity="0" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="rgb(255,255,255)" text-rendering="optimizeLegibility" fill="rgb(255,255,255)" fill-opacity="0" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160,-80)">
<path d="M580 297.25 C580 287.9992370605469 557.7261962890625 280.5 530.25 280.5 C502.7738342285156 280.5 480.5 287.9992370605469 480.5 297.25 C480.5 306.5007629394531 502.7738342285156 314 530.25 314 C557.7261962890625 314 580 306.5007629394531 580 297.25" stroke="none" clip-path="url(#clipPath1)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160,-80)">
<path d="M580 297.25 C580 287.9992370605469 557.7261962890625 280.5 530.25 280.5 C502.7738342285156 280.5 480.5 287.9992370605469 480.5 297.25 C480.5 306.5007629394531 502.7738342285156 314 530.25 314 C557.7261962890625 314 580 306.5007629394531 580 297.25" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,630,50)">
<path d="M0.5 20.5 L139.5 20.5 L139.5 89.5 L0.5 89.5 ZM0.5 20.5 L20.5 0.5 L159.5 0.5 L139.5 20.5 ZM159.5 0.5 L159.5 69.5 L139.5 89.5 L139.5 20.5 M159.5 0.5" stroke="none" clip-path="url(#clipPath14)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,630,50)">
<path d="M0.5 20.5 L139.5 20.5 L139.5 89.5 L0.5 89.5 ZM0.5 20.5 L20.5 0.5 L159.5 0.5 L139.5 20.5 ZM159.5 0.5 L159.5 69.5 L139.5 89.5 L139.5 20.5 M159.5 0.5" clip-path="url(#clipPath14)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath15)" stroke-linecap="square" transform="matrix(1,0,0,1,2,24)">Media Archive</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160,-80)">
<path d="M339 256 L339 256 L339 256" clip-path="url(#clipPath1)" fill="none" />
<path d="M250 255 L250 255 L250 255" clip-path="url(#clipPath1)" fill="none" />
<path d="M340 270 L340 270 L469.2343444824219 199.5 L469.2343444824219 199.5 L469.2343444824219 199.5" clip-path="url(#clipPath1)" fill="none" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white" text-rendering="optimizeLegibility" fill="white" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,80)">
<path d="M0.5 20.5 L159.5 20.5 L159.5 99.5 L0.5 99.5 ZM0.5 20.5 L20.5 0.5 L179.5 0.5 L159.5 20.5 ZM179.5 0.5 L179.5 79.5 L159.5 99.5 L159.5 20.5 M179.5 0.5" stroke="none" clip-path="url(#clipPath16)" />
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,10,80)">
<path d="M0.5 20.5 L159.5 20.5 L159.5 99.5 L0.5 99.5 ZM0.5 20.5 L20.5 0.5 L179.5 0.5 L159.5 20.5 ZM179.5 0.5 L179.5 79.5 L159.5 99.5 L159.5 20.5 M179.5 0.5" clip-path="url(#clipPath16)" fill="none" />
<text x="0" y="11" xml:space="preserve" stroke-miterlimit="10" stroke="none" clip-path="url(#clipPath17)" stroke-linecap="square" transform="matrix(1,0,0,1,2,24)">Scheduler</text>
</g>
<g font-family="sans-serif" font-size="11" color-rendering="optimizeQuality" stroke-miterlimit="1" color-interpolation="linearRGB" text-rendering="optimizeLegibility" stroke-linecap="butt" shape-rendering="geometricPrecision" image-rendering="optimizeQuality" transform="matrix(1,0,0,1,160,-80)">
<path d="M29 226 L139 288 L139 288 L139 288" clip-path="url(#clipPath1)" fill="none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

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