Mon, 22 Apr 2013 22:00:43 +0200
Import pristine sources of new project OTPWCalc.
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/.hgignore Mon Apr 22 22:00:43 2013 +0200 1.3 @@ -0,0 +1,12 @@ 1.4 +syntax: glob 1.5 +*.orig 1.6 +*.rej 1.7 +*.o 1.8 +*~ 1.9 + 1.10 +dist 1.11 +doc/shot*.png 1.12 +doc/design*.pdf 1.13 +doc/miscnotas.txt 1.14 +src/firefoxos/jquery.core 1.15 +src/firefoxos/jquery.mobile
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/src/firefoxos/Makefile Mon Apr 22 22:00:43 2013 +0200 2.3 @@ -0,0 +1,46 @@ 2.4 +## 2.5 +## OTPWCalc - One time password challenge response calculator client 2.6 +## Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> 2.7 +## 2.8 +## OTPWCalc is free software: you can redistribute it and/or modify 2.9 +## it under the terms of the European Union Public Licence, either 2.10 +## version 1.1 of the license, or (at your option) any later version. 2.11 +## 2.12 +## OTPWCalc is distributed in the hope that it will be useful, 2.13 +## but WITHOUT ANY WARRANTY; without even the implied warranty 2.14 +## of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 2.15 +## the European Union Public License for more details. 2.16 +## 2.17 +## You should have received a copy of the European Union Public 2.18 +## Licence along with OTPWCalc. If not, please refer to 2.19 +## <http://joinup.ec.europa.eu/software/page/eupl/>. 2.20 +## 2.21 +## This file is part of project OTWPCalc, a one time password challenge 2.22 +## response calculator client and is found at http://otpwcalc.europalab.com/ 2.23 +## 2.24 +## Makefile: Autoconf Makefile configuration 2.25 +## 2.26 + 2.27 +# Paths 2.28 +distdir = ../../dist 2.29 + 2.30 +# Files 2.31 +ZIPBALL = otpwcalc-foxos-$(VERSION).zip 2.32 + 2.33 +# Vars 2.34 +VERSION = 0.7.1 2.35 + 2.36 +# Progs 2.37 +PROGZIP = zip 2.38 +PROGECHO = echo 2.39 + 2.40 +# Logic 2.41 +all: 2.42 + @$(PROGECHO) 'Nothing to do... To roll a zipball please make the dist target.' 2.43 + 2.44 +dist: Makefile 2.45 + @if [ -e $(distdir)/$(ZIPBALL) ]; \ 2.46 + then $(PROGECHO) '$(distdir)/$(ZIPBALL) already exists, aborting.'; \ 2.47 + else \ 2.48 + $(PROGZIP) -r9 $(distdir)/$(ZIPBALL) . -x Makefile -x otpwcalc.appcache -x jquery.plugins/\*-x img/keonmobile.png -x img/\*.svg -x img/\*.xcf; \ 2.49 + fi
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/src/firefoxos/about.html Mon Apr 22 22:00:43 2013 +0200 3.3 @@ -0,0 +1,65 @@ 3.4 +<!DOCTYPE html> 3.5 +<!-- 3.6 +OTPWCalc - One time password challenge response calculator client 3.7 +Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> 3.8 + 3.9 +OTPWCalc is free software: you can redistribute it and/or modify 3.10 +it under the terms of the European Union Public Licence, either 3.11 +version 1.1 of the license, or (at your option) any later version. 3.12 + 3.13 +OTPWCalc is distributed in the hope that it will be useful, 3.14 +but WITHOUT ANY WARRANTY; without even the implied warranty 3.15 +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 3.16 +the European Union Public License for more details. 3.17 + 3.18 +You should have received a copy of the European Union Public 3.19 +Licence along with OTPWCalc. If not, please refer to 3.20 +<http://joinup.ec.europa.eu/software/page/eupl/>. 3.21 + 3.22 +This file is part of project OTWPCalc, a one time password challenge 3.23 +response calculator client and is found at http://otpwcalc.europalab.com/ 3.24 + 3.25 +about.html: W3C HTML implementation 3.26 +--> 3.27 + 3.28 +<html> 3.29 + <head> 3.30 + <meta charset="utf-8"> 3.31 + <meta name="viewport" content="width=device-width, initial-scale=1"> 3.32 + <title>OTPWCalc</title> 3.33 + <link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.3.1.min.css" /> 3.34 + <script src="jquery.core/jquery-1.9.1.js"></script> 3.35 + <script type="text/javascript"> 3.36 + $(document).on("pageinit", "#unknown", function() { 3.37 + // If this device supports the vibrate API... 3.38 + if('vibrate' in navigator) { 3.39 + // ...vibrate for a second 3.40 + navigator.vibrate(1000); 3.41 + } 3.42 + alert("Pageinit is bound!"); 3.43 + }); 3.44 + </script> 3.45 + <script src="jquery.mobile/jquery.mobile-1.3.1.min.js"></script> 3.46 +</head> 3.47 +<body> 3.48 + <!-- Data attributes reserved by JQuery Mobile: 3.49 + data-theme, data-ajax, data-filter, data-icon, data-grid, 3.50 + data-rel, data-icon, data-url, data-role, and data-type --> 3.51 + <div data-role="page" class="type-interior"> 3.52 + <!-- H1 header data-role good for Search Engine Optimization --> 3.53 + <!--<div data-role="header" data-position="inline">--> 3.54 + <div data-role="header" data-id="headabout"> 3.55 + <h1>About</h1> 3.56 + </div><!-- /header --> 3.57 + <div data-role="content"> 3.58 + <h1 style="float: left; margin: 0 0 0.25em;">OTPWCalc</h1> 3.59 + <img src="img/tastatur.png" alt="Computer keyboard" height="38" width="90" style="float: right;" /> 3.60 + <h2 style="clear: both; margin-left: 1em; line-height: 1em;">One Time Password Calculator 0.7.1</h2> 3.61 + <img src="img/datahost.png" alt="Datacenter host computer" height="68" width="245" style="display: block; margin: 0.75em auto;" /> 3.62 + <p>Visit the <a href="http://otpwcalc.europalab.com/">OTPWCalc Homepage</a></p> 3.63 + <p>Copyright © 2012 – 2013<br /><a href="http://michael.schloh.com/">Michael Schloh von Bennewitz</a></p> 3.64 + <p>This software is distributed under the terms of the <a href="http://joinup.ec.europa.eu/software/page/eupl/">European Union Public Licence (EUPL) version 1.1</a></p> 3.65 + </div><!-- /content --> 3.66 + </div><!-- /page --> 3.67 +</body> 3.68 +</html>
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/src/firefoxos/eupl-1.1.txt Mon Apr 22 22:00:43 2013 +0200 4.3 @@ -0,0 +1,295 @@ 4.4 + European Union Public Licence 4.5 + V. 1.1 4.6 + EUPL © the European Community 2007 4.7 + 4.8 +This Europe an Union Public Licence (the “EUPL”) applies to the Work 4.9 +or Software (as defined below) which is provided under the terms of 4.10 +this Licence. Any use of the Work, other than as authorised under this 4.11 +Licence is prohibited (to the extent such use is covered by a right of 4.12 +the copyright holder of the Work). 4.13 + 4.14 +The Original Work is provided under the terms of this Licence when the 4.15 +Licensor (as defined below) has placed the following notice immediately 4.16 +following the copyright notice for the Original Work: 4.17 + 4.18 + Licensed under the EUPL V.1.1 4.19 + 4.20 +or has expressed by any other mean his willingness to license under the EUPL. 4.21 + 4.22 +1. Definitions 4.23 + 4.24 +In this Licence, the following terms have the following meaning: 4.25 + 4.26 +- The Licence: this Licence. 4.27 + 4.28 +- The Original Work or the Software: the software distributed and/or 4.29 +communicated by the Licensor under this Licence, available as Source 4.30 +Code and also as Executable Code as the case may be. 4.31 + 4.32 +- Derivative Works: the works or software that could be created by the 4.33 +Licensee, based upon the Original Work or modifications thereof. This 4.34 +Licence does not define the extent of modification or dependence on the 4.35 +Original Work required in order to classify a work as a Derivative Work; 4.36 +this extent is determined by copyright law applicable in the country 4.37 +mentioned in Article 15. 4.38 + 4.39 +- The Work: the Original Work and/or its Derivative Works. 4.40 + 4.41 +- The Source Code: the human-readable form of the Work which 4.42 + is the most convenient for people to study and modify. 4.43 + 4.44 +- The Executable Code: any code which has generally been compiled 4.45 + and which is meant to be interpreted by a computer as a program. 4.46 + 4.47 +- The Licensor: the natural or legal person that distributes 4.48 + and/or communicates the Work under the Licence. 4.49 + 4.50 +- Contributor(s): any natural or legal person who modifies the Work under 4.51 + the Licence, or otherwise contributes to the creation of a Derivative Work. 4.52 + 4.53 +- The Licensee or “You”: any natural or legal person who makes 4.54 + any usage of the Software under the terms of the Licence. 4.55 + 4.56 +- Distribution and/or Communication: any act of selling, giving, 4.57 + lending, renting, distributing, communicating, transmitting, or 4.58 + otherwise making available, on-line or off-line, copies of the 4.59 + Work or providing access to its essential functionalities at 4.60 + the disposal of any other natural or legal person. 4.61 + 4.62 +2. Scope of the rights granted by the Licence 4.63 + 4.64 +The Licensor hereby grants You a world-wide, royalty-free, non-exclusive, 4.65 +sublicensable licence to do the following, for the duration of copyright 4.66 +vested in the Original Work: 4.67 + 4.68 +- use the Work in any circumstance and for all usage, 4.69 +- reproduce the Work, 4.70 +- modify the Original Work, and make Derivative Works based upon the Work, 4.71 +- communicate to the public, including the right to make available or 4.72 + display the Work or copies thereof to the public and perform publicly, 4.73 + as the case may be, the Work, 4.74 +- distribute the Work or copies thereof, 4.75 +- lend and rent the Work or copies thereof, 4.76 +- sub-license rights in the Work or copies thereof. 4.77 + 4.78 +Those rights can be exercised on any media, supports and formats, whether 4.79 +now known or later invented, as far as the applicable law permits so. 4.80 + 4.81 +In the countries where moral rights apply, the Licensor waives his right 4.82 +to exercise his moral right to the extent allowed by law in order to 4.83 +make effective the licence of the economic rights here above listed. 4.84 + 4.85 +The Licensor grants to the Licensee royalty-free, non exclusive usage 4.86 +rights to any patents held by the Licensor, to the extent necessary to 4.87 +make use of the rights granted on the Work under this Licence. 4.88 + 4.89 +3. Communication of the Source Code 4.90 + 4.91 +The Licensor may provide the Work either in its Source Code form, or 4.92 +as Executable Code. If the Work is provided as Executable Code, the 4.93 +Licensor provides in addition a machine-readable copy of the Source 4.94 +Code of the Work along with each copy of the Work that the Licensor 4.95 +distributes or indicates, in a notice following the copyright notice 4.96 +attached to the Work, a repository where the Source Code is easily and 4.97 +freely accessible for as long as the Licensor continues to distribute 4.98 +and/or communicate the Work. 4.99 + 4.100 +4. Limitations on copyright 4.101 + 4.102 +Nothing in this Licence is intended to deprive the Licensee of the 4.103 +benefits from any exception or limitation to the exclusive rights of the 4.104 +rights owners in the Original Work or Software, of the exhaustion of 4.105 +those rights or of other applicable limitations thereto. 4.106 + 4.107 +5. Obligations of the Licensee 4.108 + 4.109 +The grant of the rights mentioned above is subject to some restrictions 4.110 +and obligations imposed on the Licensee. Those obligations are the 4.111 +following: 4.112 + 4.113 +Attribution right: the Licensee shall keep intact all 4.114 +copyright, patent or trademarks notices and all notices that refer to 4.115 +the Licence and to the disclaimer of warranties. 4.116 + 4.117 +The Licensee must include a copy of such notices and a copy of 4.118 +the Licence with every copy of the Work he/she distributes and/or 4.119 +communicates. The Licensee must cause any Derivative Work to carry 4.120 +prominent notices stating that the Work has been modified and the date 4.121 +of modification. 4.122 + 4.123 +Copyleft clause: If the Licensee distributes and/or communicates copies 4.124 +of the Original Works or Derivative Works based upon the Original 4.125 +Work, this Distribution and/or Communication will be done under the 4.126 +terms of this Licence or of a later version of this Licence unless the 4.127 +Original Work is expressly distributed only under this version of the 4.128 +Licence. The Licensee (becoming Licensor) cannot offer or impose any 4.129 +additional terms or conditions on the Work or Derivative Work that alter 4.130 +or restrict the terms of the Licence. 4.131 + 4.132 +Compatibility clause: If the Licensee Distributes and/or Communicates 4.133 +Derivative Works or copies thereof based upon both the Original Work 4.134 +and another work licensed under a Compatible Licence, this Distribution 4.135 +and/or Communication can be done under the terms of this Compatible 4.136 +Licence. For the sake of this clause, “Compatible Licence” refers 4.137 +to the licences listed in the appendix attached to this Licence. Should 4.138 +the Licensee’s obligations under the Compatible Licence conflict 4.139 +with his/her obligations under this Licence, the obligations of the 4.140 +Compatible Licence shall prevail. 4.141 + 4.142 +Provision of Source Code: When distributing and/or communicating copies 4.143 +of the Work, the Licensee will provide a machine-readable copy of the 4.144 +Source Code or indicate a repository where this Source will be easily 4.145 +and freely available for as long as the Licensee continues to distribute 4.146 +and/or communicate the Work. 4.147 + 4.148 +Legal Protection: This Licence does not grant permission to use the 4.149 +trade names, trademarks, service marks, or names of the Licensor, except 4.150 +as required for reasonable and customary use in describing the origin of 4.151 +the Work and reproducing the content of the copyright notice. 4.152 + 4.153 +6. Chain of Authorship 4.154 + 4.155 +The original Licensor warrants that the copyright in the Original Work 4.156 +granted hereunder is owned by him/her or licensed to him/her and that 4.157 +he/she has the power and authority to grant the Licence. 4.158 + 4.159 +Each Contributor warrants that the copyright in the modifications he/she 4.160 +brings to the Work are owned by him/her or licensed to him/her and that 4.161 +he/she has the power and authority to grant the Licence. 4.162 + 4.163 +Each time You accept the Licence, the original Licensor and subsequent 4.164 +Contributors grant You a licence to their contributions to the Work, 4.165 +under the terms of this Licence. 4.166 + 4.167 +7. Disclaimer of Warranty 4.168 + 4.169 +The Work is a work in progress, which is continuously improved by 4.170 +numerous contributors. It is not a finished work and may therefore 4.171 +contain defects or “bugs” inherent to this type of software 4.172 +development. 4.173 + 4.174 +For the above reason, the Work is provided under the Licence on an 4.175 +“as is” basis and without warranties of any kind concerning the Work, 4.176 +including without limitation merchantability, fitness for a particular 4.177 +purpose, absence of defects or errors, accuracy, non-infringement of 4.178 +intellectual property rights other than copyright as stated in Article 4.179 +6 of this Licence. 4.180 + 4.181 +This disclaimer of warranty is an essential part of the Licence 4.182 +and a condition for the grant of any rights to the Work. 4.183 + 4.184 +8. Disclaimer of Liability 4.185 + 4.186 +Except in the cases of wilful misconduct or damages directly caused to 4.187 +natural persons, the Licensor will in no event be liable for any direct 4.188 +or indirect, material or moral, damages of any kind, arising out of the 4.189 +Licence or of the use of the Work, including without limitation, damages 4.190 +for loss of goodwill, work stoppage, computer failure or malfunction, 4.191 +loss of data or any commercial damage, even if the Licensor has been 4.192 +advised of the possibility of such damage. However, the Licensor will be 4.193 +liable under statutory product liability laws as far such laws apply to 4.194 +the Work. 4.195 + 4.196 +9. Additional agreements 4.197 + 4.198 +While distributing the Original Work or Derivative Works, You may 4.199 +choose to conclude an additional agreement to offer, and charge a fee 4.200 +for, acceptance of support, warranty, indemnity, or other liability 4.201 +obligations and/or services consistent with this Licence. However, in 4.202 +accepting such obligations, You may act only on your own behalf and on 4.203 +your sole responsibility, not on behalf of the original Licensor or 4.204 +any other Contributor, and only if You agree to indemnify, defend, and 4.205 +hold each Contributor harmless for any liability incurred by, or claims 4.206 +asserted against such Contributor by the fact You have accepted any such 4.207 +warranty or additional liability. 4.208 + 4.209 +10. Acceptance of the Licence 4.210 + 4.211 +The provisions of this Licence can be accepted by clicking on an icon 4.212 +“I agree” placed under the bottom of a window displaying the text 4.213 +of this Licence or by affirming consent in any other similar way, in 4.214 +accordance with the rules of applicable law. Clicking on that icon 4.215 +indicates your clear and irrevocable acceptance of this Licence and all 4.216 +of its terms and conditions. 4.217 + 4.218 +Similarly, you irrevocably accept this Licence and all of its terms 4.219 +and conditions by exercising any rights granted to You by Article 2 of 4.220 +this Licence, such as the use of the Work, the creation by You of a 4.221 +Derivative Work or the Distribution and/or Communication by You of the 4.222 +Work or copies thereof. 4.223 + 4.224 +11. Information to the public 4.225 + 4.226 +In case of any Distribution and/or Communication of the Work by means of 4.227 +electronic communication by You (for example, by offering to download 4.228 +the Work from a remote location) the distribution channel or media (for 4.229 +example, a website) must at least provide to the public the information 4.230 +requested by the applicable law regarding the Licensor, the Licence and 4.231 +the way it may be accessible, concluded, stored and reproduced by the 4.232 +Licensee. 4.233 + 4.234 +12. Termination of the Licence 4.235 + 4.236 +The Licence and the rights granted hereunder will terminate 4.237 +automatically upon any breach by the Licensee of the terms of the 4.238 +Licence. Such a termination will not terminate the licences of any 4.239 +person who has received the Work from the Licensee under the Licence, 4.240 +provided such persons remain in full compliance with the Licence. 4.241 + 4.242 +13. Miscellaneous 4.243 + 4.244 +Without prejudice of Article 9 above, the Licence represents the 4.245 +complete agreement between the Parties as to the Work licensed 4.246 +hereunder. 4.247 + 4.248 +If any provision of the Licence is invalid or unenforceable under 4.249 +applicable law, this will not affect the validity or enforceability 4.250 +of the Licence as a whole. Such provision will be construed and/or 4.251 +reformed so as necessary to make it valid and enforceable. The European 4.252 +Commission may publish other linguistic versions and/or new versions of 4.253 +this Licence, so far this is required and reasonable, without reducing 4.254 +the scope of the rights granted by the Licence. New versions of the 4.255 +Licence will be published with a unique version number. 4.256 + 4.257 +All linguistic versions of this Licence, approved by the European 4.258 +Commission, have identical value. Parties can take advantage of the 4.259 +linguistic version of their choice. 4.260 + 4.261 +14. Jurisdiction 4.262 + 4.263 +Any litigation resulting from the interpretation of this License, 4.264 +arising between the European Commission, as a Licensor, and any 4.265 +Licensee, will be subject to the jurisdiction of the Court of Justice 4.266 +of the European Communities, as laid down in article 238 of the Treaty 4.267 +establishing the European Community. 4.268 + 4.269 +Any litigation arising between Parties, other than the European 4.270 +Commission, and resulting from the interpretation of this License, will 4.271 +be subject to the exclusive jurisdiction of the competent court where 4.272 +the Licensor resides or conducts its primary business. 4.273 + 4.274 +15. Applicable Law 4.275 + 4.276 +This Licence shall be governed by the law of the European Union 4.277 +country where the Licensor resides or has his registered office. 4.278 + 4.279 +This licence shall be governed by the Belgian law if: 4.280 + 4.281 +- a litigation arises between the European 4.282 + Commission, as a Licensor, and any Licensee; 4.283 +- the Licensor, other than the European Commission, has no 4.284 + residence or registered office inside a European Union country. 4.285 + 4.286 + 4.287 + === 4.288 + 4.289 + 4.290 + Appendix 4.291 + 4.292 + “Compatible Licences” according to article 5 EUPL are: 4.293 + 4.294 + - GNU General Public License (GNU GPL) v. 2 4.295 + - Open Software License (OSL) v. 2.1, v. 3.0 4.296 + - Common Public License v. 1.0 4.297 + - Eclipse Public License v. 1.0 4.298 + - Cecill v. 2.0
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/src/firefoxos/hashes/md4.js Mon Apr 22 22:00:43 2013 +0200 5.3 @@ -0,0 +1,236 @@ 5.4 +/* 5.5 + * A JavaScript implementation of the RSA Data Security, Inc. MD4 Message 5.6 + * Digest Algorithm, as defined in RFC 1320. 5.7 + * Version 2.1 Copyright (C) Jerrad Pierce, Paul Johnston 1999 - 2002. 5.8 + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet 5.9 + * Distributed under the BSD License 5.10 + * See http://pajhome.org.uk/crypt/md5 for more info. 5.11 + */ 5.12 + 5.13 +/* 5.14 + * Configurable variables. You may need to tweak these to be compatible with 5.15 + * the server-side, but the defaults work in most cases. 5.16 + */ 5.17 +var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */ 5.18 +var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */ 5.19 +var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */ 5.20 + 5.21 +/* 5.22 + * These are the functions you'll usually want to call 5.23 + */ 5.24 +function hexmd4(s){ return binl2hex(coremd4(str2binl(s), s.length * chrsz));} 5.25 +function b64md4(s){ return binl2b64(coremd4(str2binl(s), s.length * chrsz));} 5.26 +function strmd4(s){ return binl2str(coremd4(str2binl(s), s.length * chrsz));} 5.27 +function hexhmacmd4(key, data) { return binl2hex(corehmacmd4(key, data)); } 5.28 +function b64hmacmd4(key, data) { return binl2b64(corehmacmd4(key, data)); } 5.29 +function strhmacmd4(key, data) { return binl2str(corehmacmd4(key, data)); } 5.30 + 5.31 +/* 5.32 + * Perform a simple self-test to see if the VM is working 5.33 + */ 5.34 +function md4vmtest() 5.35 +{ 5.36 + return hexmd4("abc") == "a448017aaf21d8525fc10ae87aa6729d"; 5.37 +} 5.38 + 5.39 +/* 5.40 + * Calculate the MD4 of an array of little-endian words, and a bit length 5.41 + */ 5.42 +function coremd4(x, len) 5.43 +{ 5.44 + /* append padding */ 5.45 + x[len >> 5] |= 0x80 << (len % 32); 5.46 + x[(((len + 64) >>> 9) << 4) + 14] = len; 5.47 + 5.48 + var a = 1732584193; 5.49 + var b = -271733879; 5.50 + var c = -1732584194; 5.51 + var d = 271733878; 5.52 + 5.53 + for(var i = 0; i < x.length; i += 16) 5.54 + { 5.55 + var olda = a; 5.56 + var oldb = b; 5.57 + var oldc = c; 5.58 + var oldd = d; 5.59 + 5.60 + a = md4ff(a, b, c, d, x[i+ 0], 3 ); 5.61 + d = md4ff(d, a, b, c, x[i+ 1], 7 ); 5.62 + c = md4ff(c, d, a, b, x[i+ 2], 11); 5.63 + b = md4ff(b, c, d, a, x[i+ 3], 19); 5.64 + a = md4ff(a, b, c, d, x[i+ 4], 3 ); 5.65 + d = md4ff(d, a, b, c, x[i+ 5], 7 ); 5.66 + c = md4ff(c, d, a, b, x[i+ 6], 11); 5.67 + b = md4ff(b, c, d, a, x[i+ 7], 19); 5.68 + a = md4ff(a, b, c, d, x[i+ 8], 3 ); 5.69 + d = md4ff(d, a, b, c, x[i+ 9], 7 ); 5.70 + c = md4ff(c, d, a, b, x[i+10], 11); 5.71 + b = md4ff(b, c, d, a, x[i+11], 19); 5.72 + a = md4ff(a, b, c, d, x[i+12], 3 ); 5.73 + d = md4ff(d, a, b, c, x[i+13], 7 ); 5.74 + c = md4ff(c, d, a, b, x[i+14], 11); 5.75 + b = md4ff(b, c, d, a, x[i+15], 19); 5.76 + 5.77 + a = md4gg(a, b, c, d, x[i+ 0], 3 ); 5.78 + d = md4gg(d, a, b, c, x[i+ 4], 5 ); 5.79 + c = md4gg(c, d, a, b, x[i+ 8], 9 ); 5.80 + b = md4gg(b, c, d, a, x[i+12], 13); 5.81 + a = md4gg(a, b, c, d, x[i+ 1], 3 ); 5.82 + d = md4gg(d, a, b, c, x[i+ 5], 5 ); 5.83 + c = md4gg(c, d, a, b, x[i+ 9], 9 ); 5.84 + b = md4gg(b, c, d, a, x[i+13], 13); 5.85 + a = md4gg(a, b, c, d, x[i+ 2], 3 ); 5.86 + d = md4gg(d, a, b, c, x[i+ 6], 5 ); 5.87 + c = md4gg(c, d, a, b, x[i+10], 9 ); 5.88 + b = md4gg(b, c, d, a, x[i+14], 13); 5.89 + a = md4gg(a, b, c, d, x[i+ 3], 3 ); 5.90 + d = md4gg(d, a, b, c, x[i+ 7], 5 ); 5.91 + c = md4gg(c, d, a, b, x[i+11], 9 ); 5.92 + b = md4gg(b, c, d, a, x[i+15], 13); 5.93 + 5.94 + a = md4hh(a, b, c, d, x[i+ 0], 3 ); 5.95 + d = md4hh(d, a, b, c, x[i+ 8], 9 ); 5.96 + c = md4hh(c, d, a, b, x[i+ 4], 11); 5.97 + b = md4hh(b, c, d, a, x[i+12], 15); 5.98 + a = md4hh(a, b, c, d, x[i+ 2], 3 ); 5.99 + d = md4hh(d, a, b, c, x[i+10], 9 ); 5.100 + c = md4hh(c, d, a, b, x[i+ 6], 11); 5.101 + b = md4hh(b, c, d, a, x[i+14], 15); 5.102 + a = md4hh(a, b, c, d, x[i+ 1], 3 ); 5.103 + d = md4hh(d, a, b, c, x[i+ 9], 9 ); 5.104 + c = md4hh(c, d, a, b, x[i+ 5], 11); 5.105 + b = md4hh(b, c, d, a, x[i+13], 15); 5.106 + a = md4hh(a, b, c, d, x[i+ 3], 3 ); 5.107 + d = md4hh(d, a, b, c, x[i+11], 9 ); 5.108 + c = md4hh(c, d, a, b, x[i+ 7], 11); 5.109 + b = md4hh(b, c, d, a, x[i+15], 15); 5.110 + 5.111 + a = safeadd(a, olda); 5.112 + b = safeadd(b, oldb); 5.113 + c = safeadd(c, oldc); 5.114 + d = safeadd(d, oldd); 5.115 + 5.116 + } 5.117 + return Array(a, b, c, d); 5.118 + 5.119 +} 5.120 + 5.121 +/* 5.122 + * These functions implement the basic operation for each round of the 5.123 + * algorithm. 5.124 + */ 5.125 +function md4cmn(q, a, b, x, s, t) 5.126 +{ 5.127 + return safeadd(rol(safeadd(safeadd(a, q), safeadd(x, t)), s), b); 5.128 +} 5.129 +function md4ff(a, b, c, d, x, s) 5.130 +{ 5.131 + return md4cmn((b & c) | ((~b) & d), a, 0, x, s, 0); 5.132 +} 5.133 +function md4gg(a, b, c, d, x, s) 5.134 +{ 5.135 + return md4cmn((b & c) | (b & d) | (c & d), a, 0, x, s, 1518500249); 5.136 +} 5.137 +function md4hh(a, b, c, d, x, s) 5.138 +{ 5.139 + return md4cmn(b ^ c ^ d, a, 0, x, s, 1859775393); 5.140 +} 5.141 + 5.142 +/* 5.143 + * Calculate the HMAC-MD4, of a key and some data 5.144 + */ 5.145 +function corehmacmd4(key, data) 5.146 +{ 5.147 + var bkey = str2binl(key); 5.148 + if(bkey.length > 16) bkey = coremd4(bkey, key.length * chrsz); 5.149 + 5.150 + var ipad = Array(16), opad = Array(16); 5.151 + for(var i = 0; i < 16; i++) 5.152 + { 5.153 + ipad[i] = bkey[i] ^ 0x36363636; 5.154 + opad[i] = bkey[i] ^ 0x5C5C5C5C; 5.155 + } 5.156 + 5.157 + var hash = coremd4(ipad.concat(str2binl(data)), 512 + data.length * chrsz); 5.158 + return coremd4(opad.concat(hash), 512 + 128); 5.159 +} 5.160 + 5.161 +/* 5.162 + * Add integers, wrapping at 2^32. This uses 16-bit operations internally 5.163 + * to work around bugs in some JS interpreters. 5.164 + */ 5.165 +function safeadd(x, y) 5.166 +{ 5.167 + var lsw = (x & 0xFFFF) + (y & 0xFFFF); 5.168 + var msw = (x >> 16) + (y >> 16) + (lsw >> 16); 5.169 + return (msw << 16) | (lsw & 0xFFFF); 5.170 +} 5.171 + 5.172 +/* 5.173 + * Bitwise rotate a 32-bit number to the left. 5.174 + */ 5.175 +function rol(num, cnt) 5.176 +{ 5.177 + return (num << cnt) | (num >>> (32 - cnt)); 5.178 +} 5.179 + 5.180 +/* 5.181 + * Convert a string to an array of little-endian words 5.182 + * If chrsz is ASCII, characters >255 have their hi-byte silently ignored. 5.183 + */ 5.184 +function str2binl(str) 5.185 +{ 5.186 + var bin = Array(); 5.187 + var mask = (1 << chrsz) - 1; 5.188 + for(var i = 0; i < str.length * chrsz; i += chrsz) 5.189 + bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (i%32); 5.190 + return bin; 5.191 +} 5.192 + 5.193 +/* 5.194 + * Convert an array of little-endian words to a string 5.195 + */ 5.196 +function binl2str(bin) 5.197 +{ 5.198 + var str = ""; 5.199 + var mask = (1 << chrsz) - 1; 5.200 + for(var i = 0; i < bin.length * 32; i += chrsz) 5.201 + str += String.fromCharCode((bin[i>>5] >>> (i % 32)) & mask); 5.202 + return str; 5.203 +} 5.204 + 5.205 +/* 5.206 + * Convert an array of little-endian words to a hex string. 5.207 + */ 5.208 +function binl2hex(binarray) 5.209 +{ 5.210 + var hextab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; 5.211 + var str = ""; 5.212 + for(var i = 0; i < binarray.length * 4; i++) 5.213 + { 5.214 + str += hextab.charAt((binarray[i>>2] >> ((i%4)*8+4)) & 0xF) + 5.215 + hextab.charAt((binarray[i>>2] >> ((i%4)*8 )) & 0xF); 5.216 + } 5.217 + return str; 5.218 +} 5.219 + 5.220 +/* 5.221 + * Convert an array of little-endian words to a base-64 string 5.222 + */ 5.223 +function binl2b64(binarray) 5.224 +{ 5.225 + var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; 5.226 + var str = ""; 5.227 + for(var i = 0; i < binarray.length * 4; i += 3) 5.228 + { 5.229 + var triplet = (((binarray[i >> 2] >> 8 * ( i %4)) & 0xFF) << 16) 5.230 + | (((binarray[i+1 >> 2] >> 8 * ((i+1)%4)) & 0xFF) << 8 ) 5.231 + | ((binarray[i+2 >> 2] >> 8 * ((i+2)%4)) & 0xFF); 5.232 + for(var j = 0; j < 4; j++) 5.233 + { 5.234 + if(i * 8 + j * 6 > binarray.length * 32) str += b64pad; 5.235 + else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F); 5.236 + } 5.237 + } 5.238 + return str; 5.239 +}
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/src/firefoxos/hashes/md5.js Mon Apr 22 22:00:43 2013 +0200 6.3 @@ -0,0 +1,256 @@ 6.4 +/* 6.5 + * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message 6.6 + * Digest Algorithm, as defined in RFC 1321. 6.7 + * Version 2.1 Copyright (C) Paul Johnston 1999 - 2002. 6.8 + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet 6.9 + * Distributed under the BSD License 6.10 + * See http://pajhome.org.uk/crypt/md5 for more info. 6.11 + */ 6.12 + 6.13 +/* 6.14 + * Configurable variables. You may need to tweak these to be compatible with 6.15 + * the server-side, but the defaults work in most cases. 6.16 + */ 6.17 +var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */ 6.18 +var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */ 6.19 +var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */ 6.20 + 6.21 +/* 6.22 + * These are the functions you'll usually want to call 6.23 + * They take string arguments and return either hex or base-64 encoded strings 6.24 + */ 6.25 +function hexmd5(s){ return binl2hex(coremd5(str2binl(s), s.length * chrsz));} 6.26 +function b64md5(s){ return binl2b64(coremd5(str2binl(s), s.length * chrsz));} 6.27 +function strmd5(s){ return binl2str(coremd5(str2binl(s), s.length * chrsz));} 6.28 +function hexhmacmd5(key, data) { return binl2hex(corehmacmd5(key, data)); } 6.29 +function b64hmacmd5(key, data) { return binl2b64(corehmacmd5(key, data)); } 6.30 +function strhmacmd5(key, data) { return binl2str(corehmacmd5(key, data)); } 6.31 + 6.32 +/* 6.33 + * Perform a simple self-test to see if the VM is working 6.34 + */ 6.35 +function md5vmtest() 6.36 +{ 6.37 + return hexmd5("abc") == "900150983cd24fb0d6963f7d28e17f72"; 6.38 +} 6.39 + 6.40 +/* 6.41 + * Calculate the MD5 of an array of little-endian words, and a bit length 6.42 + */ 6.43 +function coremd5(x, len) 6.44 +{ 6.45 + /* append padding */ 6.46 + x[len >> 5] |= 0x80 << ((len) % 32); 6.47 + x[(((len + 64) >>> 9) << 4) + 14] = len; 6.48 + 6.49 + var a = 1732584193; 6.50 + var b = -271733879; 6.51 + var c = -1732584194; 6.52 + var d = 271733878; 6.53 + 6.54 + for(var i = 0; i < x.length; i += 16) 6.55 + { 6.56 + var olda = a; 6.57 + var oldb = b; 6.58 + var oldc = c; 6.59 + var oldd = d; 6.60 + 6.61 + a = md5ff(a, b, c, d, x[i+ 0], 7 , -680876936); 6.62 + d = md5ff(d, a, b, c, x[i+ 1], 12, -389564586); 6.63 + c = md5ff(c, d, a, b, x[i+ 2], 17, 606105819); 6.64 + b = md5ff(b, c, d, a, x[i+ 3], 22, -1044525330); 6.65 + a = md5ff(a, b, c, d, x[i+ 4], 7 , -176418897); 6.66 + d = md5ff(d, a, b, c, x[i+ 5], 12, 1200080426); 6.67 + c = md5ff(c, d, a, b, x[i+ 6], 17, -1473231341); 6.68 + b = md5ff(b, c, d, a, x[i+ 7], 22, -45705983); 6.69 + a = md5ff(a, b, c, d, x[i+ 8], 7 , 1770035416); 6.70 + d = md5ff(d, a, b, c, x[i+ 9], 12, -1958414417); 6.71 + c = md5ff(c, d, a, b, x[i+10], 17, -42063); 6.72 + b = md5ff(b, c, d, a, x[i+11], 22, -1990404162); 6.73 + a = md5ff(a, b, c, d, x[i+12], 7 , 1804603682); 6.74 + d = md5ff(d, a, b, c, x[i+13], 12, -40341101); 6.75 + c = md5ff(c, d, a, b, x[i+14], 17, -1502002290); 6.76 + b = md5ff(b, c, d, a, x[i+15], 22, 1236535329); 6.77 + 6.78 + a = md5gg(a, b, c, d, x[i+ 1], 5 , -165796510); 6.79 + d = md5gg(d, a, b, c, x[i+ 6], 9 , -1069501632); 6.80 + c = md5gg(c, d, a, b, x[i+11], 14, 643717713); 6.81 + b = md5gg(b, c, d, a, x[i+ 0], 20, -373897302); 6.82 + a = md5gg(a, b, c, d, x[i+ 5], 5 , -701558691); 6.83 + d = md5gg(d, a, b, c, x[i+10], 9 , 38016083); 6.84 + c = md5gg(c, d, a, b, x[i+15], 14, -660478335); 6.85 + b = md5gg(b, c, d, a, x[i+ 4], 20, -405537848); 6.86 + a = md5gg(a, b, c, d, x[i+ 9], 5 , 568446438); 6.87 + d = md5gg(d, a, b, c, x[i+14], 9 , -1019803690); 6.88 + c = md5gg(c, d, a, b, x[i+ 3], 14, -187363961); 6.89 + b = md5gg(b, c, d, a, x[i+ 8], 20, 1163531501); 6.90 + a = md5gg(a, b, c, d, x[i+13], 5 , -1444681467); 6.91 + d = md5gg(d, a, b, c, x[i+ 2], 9 , -51403784); 6.92 + c = md5gg(c, d, a, b, x[i+ 7], 14, 1735328473); 6.93 + b = md5gg(b, c, d, a, x[i+12], 20, -1926607734); 6.94 + 6.95 + a = md5hh(a, b, c, d, x[i+ 5], 4 , -378558); 6.96 + d = md5hh(d, a, b, c, x[i+ 8], 11, -2022574463); 6.97 + c = md5hh(c, d, a, b, x[i+11], 16, 1839030562); 6.98 + b = md5hh(b, c, d, a, x[i+14], 23, -35309556); 6.99 + a = md5hh(a, b, c, d, x[i+ 1], 4 , -1530992060); 6.100 + d = md5hh(d, a, b, c, x[i+ 4], 11, 1272893353); 6.101 + c = md5hh(c, d, a, b, x[i+ 7], 16, -155497632); 6.102 + b = md5hh(b, c, d, a, x[i+10], 23, -1094730640); 6.103 + a = md5hh(a, b, c, d, x[i+13], 4 , 681279174); 6.104 + d = md5hh(d, a, b, c, x[i+ 0], 11, -358537222); 6.105 + c = md5hh(c, d, a, b, x[i+ 3], 16, -722521979); 6.106 + b = md5hh(b, c, d, a, x[i+ 6], 23, 76029189); 6.107 + a = md5hh(a, b, c, d, x[i+ 9], 4 , -640364487); 6.108 + d = md5hh(d, a, b, c, x[i+12], 11, -421815835); 6.109 + c = md5hh(c, d, a, b, x[i+15], 16, 530742520); 6.110 + b = md5hh(b, c, d, a, x[i+ 2], 23, -995338651); 6.111 + 6.112 + a = md5ii(a, b, c, d, x[i+ 0], 6 , -198630844); 6.113 + d = md5ii(d, a, b, c, x[i+ 7], 10, 1126891415); 6.114 + c = md5ii(c, d, a, b, x[i+14], 15, -1416354905); 6.115 + b = md5ii(b, c, d, a, x[i+ 5], 21, -57434055); 6.116 + a = md5ii(a, b, c, d, x[i+12], 6 , 1700485571); 6.117 + d = md5ii(d, a, b, c, x[i+ 3], 10, -1894986606); 6.118 + c = md5ii(c, d, a, b, x[i+10], 15, -1051523); 6.119 + b = md5ii(b, c, d, a, x[i+ 1], 21, -2054922799); 6.120 + a = md5ii(a, b, c, d, x[i+ 8], 6 , 1873313359); 6.121 + d = md5ii(d, a, b, c, x[i+15], 10, -30611744); 6.122 + c = md5ii(c, d, a, b, x[i+ 6], 15, -1560198380); 6.123 + b = md5ii(b, c, d, a, x[i+13], 21, 1309151649); 6.124 + a = md5ii(a, b, c, d, x[i+ 4], 6 , -145523070); 6.125 + d = md5ii(d, a, b, c, x[i+11], 10, -1120210379); 6.126 + c = md5ii(c, d, a, b, x[i+ 2], 15, 718787259); 6.127 + b = md5ii(b, c, d, a, x[i+ 9], 21, -343485551); 6.128 + 6.129 + a = safeadd(a, olda); 6.130 + b = safeadd(b, oldb); 6.131 + c = safeadd(c, oldc); 6.132 + d = safeadd(d, oldd); 6.133 + } 6.134 + return Array(a, b, c, d); 6.135 + 6.136 +} 6.137 + 6.138 +/* 6.139 + * These functions implement the four basic operations the algorithm uses. 6.140 + */ 6.141 +function md5cmn(q, a, b, x, s, t) 6.142 +{ 6.143 + return safeadd(bitrol(safeadd(safeadd(a, q), safeadd(x, t)), s),b); 6.144 +} 6.145 +function md5ff(a, b, c, d, x, s, t) 6.146 +{ 6.147 + return md5cmn((b & c) | ((~b) & d), a, b, x, s, t); 6.148 +} 6.149 +function md5gg(a, b, c, d, x, s, t) 6.150 +{ 6.151 + return md5cmn((b & d) | (c & (~d)), a, b, x, s, t); 6.152 +} 6.153 +function md5hh(a, b, c, d, x, s, t) 6.154 +{ 6.155 + return md5cmn(b ^ c ^ d, a, b, x, s, t); 6.156 +} 6.157 +function md5ii(a, b, c, d, x, s, t) 6.158 +{ 6.159 + return md5cmn(c ^ (b | (~d)), a, b, x, s, t); 6.160 +} 6.161 + 6.162 +/* 6.163 + * Calculate the HMAC-MD5, of a key and some data 6.164 + */ 6.165 +function corehmacmd5(key, data) 6.166 +{ 6.167 + var bkey = str2binl(key); 6.168 + if(bkey.length > 16) bkey = coremd5(bkey, key.length * chrsz); 6.169 + 6.170 + var ipad = Array(16), opad = Array(16); 6.171 + for(var i = 0; i < 16; i++) 6.172 + { 6.173 + ipad[i] = bkey[i] ^ 0x36363636; 6.174 + opad[i] = bkey[i] ^ 0x5C5C5C5C; 6.175 + } 6.176 + 6.177 + var hash = coremd5(ipad.concat(str2binl(data)), 512 + data.length * chrsz); 6.178 + return coremd5(opad.concat(hash), 512 + 128); 6.179 +} 6.180 + 6.181 +/* 6.182 + * Add integers, wrapping at 2^32. This uses 16-bit operations internally 6.183 + * to work around bugs in some JS interpreters. 6.184 + */ 6.185 +function safeadd(x, y) 6.186 +{ 6.187 + var lsw = (x & 0xFFFF) + (y & 0xFFFF); 6.188 + var msw = (x >> 16) + (y >> 16) + (lsw >> 16); 6.189 + return (msw << 16) | (lsw & 0xFFFF); 6.190 +} 6.191 + 6.192 +/* 6.193 + * Bitwise rotate a 32-bit number to the left. 6.194 + */ 6.195 +function bitrol(num, cnt) 6.196 +{ 6.197 + return (num << cnt) | (num >>> (32 - cnt)); 6.198 +} 6.199 + 6.200 +/* 6.201 + * Convert a string to an array of little-endian words 6.202 + * If chrsz is ASCII, characters >255 have their hi-byte silently ignored. 6.203 + */ 6.204 +function str2binl(str) 6.205 +{ 6.206 + var bin = Array(); 6.207 + var mask = (1 << chrsz) - 1; 6.208 + for(var i = 0; i < str.length * chrsz; i += chrsz) 6.209 + bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (i%32); 6.210 + return bin; 6.211 +} 6.212 + 6.213 +/* 6.214 + * Convert an array of little-endian words to a string 6.215 + */ 6.216 +function binl2str(bin) 6.217 +{ 6.218 + var str = ""; 6.219 + var mask = (1 << chrsz) - 1; 6.220 + for(var i = 0; i < bin.length * 32; i += chrsz) 6.221 + str += String.fromCharCode((bin[i>>5] >>> (i % 32)) & mask); 6.222 + return str; 6.223 +} 6.224 + 6.225 +/* 6.226 + * Convert an array of little-endian words to a hex string. 6.227 + */ 6.228 +function binl2hex(binarray) 6.229 +{ 6.230 + var hextab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; 6.231 + var str = ""; 6.232 + for(var i = 0; i < binarray.length * 4; i++) 6.233 + { 6.234 + str += hextab.charAt((binarray[i>>2] >> ((i%4)*8+4)) & 0xF) + 6.235 + hextab.charAt((binarray[i>>2] >> ((i%4)*8 )) & 0xF); 6.236 + } 6.237 + return str; 6.238 +} 6.239 + 6.240 +/* 6.241 + * Convert an array of little-endian words to a base-64 string 6.242 + */ 6.243 +function binl2b64(binarray) 6.244 +{ 6.245 + var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; 6.246 + var str = ""; 6.247 + for(var i = 0; i < binarray.length * 4; i += 3) 6.248 + { 6.249 + var triplet = (((binarray[i >> 2] >> 8 * ( i %4)) & 0xFF) << 16) 6.250 + | (((binarray[i+1 >> 2] >> 8 * ((i+1)%4)) & 0xFF) << 8 ) 6.251 + | ((binarray[i+2 >> 2] >> 8 * ((i+2)%4)) & 0xFF); 6.252 + for(var j = 0; j < 4; j++) 6.253 + { 6.254 + if(i * 8 + j * 6 > binarray.length * 32) str += b64pad; 6.255 + else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F); 6.256 + } 6.257 + } 6.258 + return str; 6.259 +}
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/src/firefoxos/hashes/rmd160.js Mon Apr 22 22:00:43 2013 +0200 7.3 @@ -0,0 +1,249 @@ 7.4 +/* A JavaScript implementation of RIPEMD-160, as specified at 7.5 + * 7.6 + * http://www.esat.kuleuven.ac.be/~cosicart/pdf/AB-9601/ 7.7 + * 7.8 + * This is pretty much a straight translation of the pseudocode, which is 7.9 + * shorter than the reference version which has loops unrolled, but is 7.10 + * also somewhat slower. 7.11 + * 7.12 + * More information about RIPEMD-160 can be found at 7.13 + * 7.14 + * http://www.esat.kuleuven.ac.be/~bosselae/ripemd160.html 7.15 + * 7.16 + * Copyright (c) 2004, Jeremy Lin. Written 2004/02/29. 7.17 + * 7.18 + * You may use this code under the terms of the BSD-style jsotp license: 7.19 + * 7.20 + * http://www.ocf.berkeley.edu/~jjlin/jsotp/license.html 7.21 + * 7.22 + * The utility functions and general framework are borrowed from Paul Johnston's 7.23 + * MD4/MD5/SHA-1 JavaScript implementations (http://pajhome.org.uk/crypt/md5), so 7.24 + * 7.25 + * Portions copyright (c) 1999-2002, Paul Johnston. 7.26 + */ 7.27 + 7.28 +/* 7.29 + * Configurable variables. You may need to tweak these to be compatible with 7.30 + * the server-side, but the defaults work in most cases. 7.31 + */ 7.32 +var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */ 7.33 +var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */ 7.34 +var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */ 7.35 + 7.36 +/* 7.37 + * These are the functions you'll usually want to call 7.38 + * They take string arguments and return either hex or base-64 encoded strings 7.39 + */ 7.40 +function hexrmd160(s){return binl2hex(corermd160(str2binl(s),s.length * chrsz));} 7.41 +function b64rmd160(s){return binl2b64(corermd160(str2binl(s),s.length * chrsz));} 7.42 +function strrmd160(s){return binl2str(corermd160(str2binl(s),s.length * chrsz));} 7.43 +function hexhmacrmd160(key, data){ return binl2hex(corehmacrmd160(key, data));} 7.44 +function b64hmacrmd160(key, data){ return binl2b64(corehmacrmd160(key, data));} 7.45 +function strhmacrmd160(key, data){ return binl2str(corehmacrmd160(key, data));} 7.46 + 7.47 +/* 7.48 + * Perform a simple self-test to see if the VM is working 7.49 + */ 7.50 +function rmd160vmtest() 7.51 +{ 7.52 + return hexrmd160("abc") == "8eb208f7e05d987a9b044a8e98c6b087f15a0bfc"; 7.53 +} 7.54 + 7.55 +/* 7.56 + * Calculate the RMD-160 of an array of big-endian words, and a bit length 7.57 + */ 7.58 +function corermd160(x, len) 7.59 +{ 7.60 + /* append padding */ 7.61 + x[len >> 5] |= 0x80 << (len % 32); 7.62 + x[(((len + 64) >>> 9) << 4) + 14] = len; 7.63 + 7.64 + var h0 = 0x67452301; 7.65 + var h1 = 0xefcdab89; 7.66 + var h2 = 0x98badcfe; 7.67 + var h3 = 0x10325476; 7.68 + var h4 = 0xc3d2e1f0; 7.69 + 7.70 + for (var i = 0; i < x.length; i += 16) { 7.71 + var T; 7.72 + var A1 = h0, B1 = h1, C1 = h2, D1 = h3, E1 = h4; 7.73 + var A2 = h0, B2 = h1, C2 = h2, D2 = h3, E2 = h4; 7.74 + for (var j = 0; j <= 79; ++j) { 7.75 + T = safeadd(A1, rmd160f(j, B1, C1, D1)); 7.76 + T = safeadd(T, x[i + rmd160r1[j]]); 7.77 + T = safeadd(T, rmd160K1(j)); 7.78 + T = safeadd(rol(T, rmd160s1[j]), E1); 7.79 + A1 = E1; E1 = D1; D1 = rol(C1, 10); C1 = B1; B1 = T; 7.80 + T = safeadd(A2, rmd160f(79-j, B2, C2, D2)); 7.81 + T = safeadd(T, x[i + rmd160r2[j]]); 7.82 + T = safeadd(T, rmd160K2(j)); 7.83 + T = safeadd(rol(T, rmd160s2[j]), E2); 7.84 + A2 = E2; E2 = D2; D2 = rol(C2, 10); C2 = B2; B2 = T; 7.85 + } 7.86 + T = safeadd(h1, safeadd(C1, D2)); 7.87 + h1 = safeadd(h2, safeadd(D1, E2)); 7.88 + h2 = safeadd(h3, safeadd(E1, A2)); 7.89 + h3 = safeadd(h4, safeadd(A1, B2)); 7.90 + h4 = safeadd(h0, safeadd(B1, C2)); 7.91 + h0 = T; 7.92 + } 7.93 + return [h0, h1, h2, h3, h4]; 7.94 +} 7.95 + 7.96 +function rmd160f(j, x, y, z) 7.97 +{ 7.98 + return ( 0 <= j && j <= 15) ? (x ^ y ^ z) : 7.99 + (16 <= j && j <= 31) ? (x & y) | (~x & z) : 7.100 + (32 <= j && j <= 47) ? (x | ~y) ^ z : 7.101 + (48 <= j && j <= 63) ? (x & z) | (y & ~z) : 7.102 + (64 <= j && j <= 79) ? x ^ (y | ~z) : 7.103 + "rmd160f: j out of range"; 7.104 +} 7.105 + 7.106 +function rmd160K1(j) 7.107 +{ 7.108 + return ( 0 <= j && j <= 15) ? 0x00000000 : 7.109 + (16 <= j && j <= 31) ? 0x5a827999 : 7.110 + (32 <= j && j <= 47) ? 0x6ed9eba1 : 7.111 + (48 <= j && j <= 63) ? 0x8f1bbcdc : 7.112 + (64 <= j && j <= 79) ? 0xa953fd4e : 7.113 + "rmd160K1: j out of range"; 7.114 +} 7.115 + 7.116 +function rmd160K2(j) 7.117 +{ 7.118 + return ( 0 <= j && j <= 15) ? 0x50a28be6 : 7.119 + (16 <= j && j <= 31) ? 0x5c4dd124 : 7.120 + (32 <= j && j <= 47) ? 0x6d703ef3 : 7.121 + (48 <= j && j <= 63) ? 0x7a6d76e9 : 7.122 + (64 <= j && j <= 79) ? 0x00000000 : 7.123 + "rmd160K2: j out of range"; 7.124 +} 7.125 + 7.126 +var rmd160r1 = [ 7.127 + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 7.128 + 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8, 7.129 + 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12, 7.130 + 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2, 7.131 + 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13 7.132 +]; 7.133 +var rmd160r2 = [ 7.134 + 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12, 7.135 + 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2, 7.136 + 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13, 7.137 + 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14, 7.138 + 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11 7.139 +]; 7.140 +var rmd160s1 = [ 7.141 + 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, 7.142 + 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12, 7.143 + 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5, 7.144 + 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12, 7.145 + 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6 7.146 +]; 7.147 +var rmd160s2 = [ 7.148 + 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, 7.149 + 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, 7.150 + 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, 7.151 + 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, 7.152 + 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11 7.153 +]; 7.154 + 7.155 +/* 7.156 + * Calculate the HMAC-RMD160 of a key and some data 7.157 + */ 7.158 +function corehmacrmd160(key, data) 7.159 +{ 7.160 + var bkey = str2binl(key); 7.161 + if(bkey.length > 16) bkey = corermd160(bkey, key.length * chrsz); 7.162 + 7.163 + var ipad = Array(16), opad = Array(16); 7.164 + for(var i = 0; i < 16; i++) 7.165 + { 7.166 + ipad[i] = bkey[i] ^ 0x36363636; 7.167 + opad[i] = bkey[i] ^ 0x5C5C5C5C; 7.168 + } 7.169 + 7.170 + var hash = corermd160(ipad.concat(str2binl(data)), 512 + data.length * chrsz); 7.171 + return corermd160(opad.concat(hash), 512 + 160); 7.172 +} 7.173 + 7.174 +/* 7.175 + * Add integers, wrapping at 2^32. This uses 16-bit operations internally 7.176 + * to work around bugs in some JS interpreters. 7.177 + */ 7.178 +function safeadd(x, y) 7.179 +{ 7.180 + var lsw = (x & 0xFFFF) + (y & 0xFFFF); 7.181 + var msw = (x >> 16) + (y >> 16) + (lsw >> 16); 7.182 + return (msw << 16) | (lsw & 0xFFFF); 7.183 +} 7.184 + 7.185 +/* 7.186 + * Bitwise rotate a 32-bit number to the left. 7.187 + */ 7.188 +function rol(num, cnt) 7.189 +{ 7.190 + return (num << cnt) | (num >>> (32 - cnt)); 7.191 +} 7.192 + 7.193 +/* 7.194 + * Convert a string to an array of little-endian words 7.195 + * If chrsz is ASCII, characters >255 have their hi-byte silently ignored. 7.196 + */ 7.197 +function str2binl(str) 7.198 +{ 7.199 + var bin = Array(); 7.200 + var mask = (1 << chrsz) - 1; 7.201 + for(var i = 0; i < str.length * chrsz; i += chrsz) 7.202 + bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (i%32); 7.203 + return bin; 7.204 +} 7.205 + 7.206 +/* 7.207 + * Convert an array of little-endian words to a string 7.208 + */ 7.209 +function binl2str(bin) 7.210 +{ 7.211 + var str = ""; 7.212 + var mask = (1 << chrsz) - 1; 7.213 + for(var i = 0; i < bin.length * 32; i += chrsz) 7.214 + str += String.fromCharCode((bin[i>>5] >>> (i % 32)) & mask); 7.215 + return str; 7.216 +} 7.217 + 7.218 +/* 7.219 + * Convert an array of little-endian words to a hex string. 7.220 + */ 7.221 +function binl2hex(binarray) 7.222 +{ 7.223 + var hextab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; 7.224 + var str = ""; 7.225 + for(var i = 0; i < binarray.length * 4; i++) 7.226 + { 7.227 + str += hextab.charAt((binarray[i>>2] >> ((i%4)*8+4)) & 0xF) + 7.228 + hextab.charAt((binarray[i>>2] >> ((i%4)*8 )) & 0xF); 7.229 + } 7.230 + return str; 7.231 +} 7.232 + 7.233 +/* 7.234 + * Convert an array of little-endian words to a base-64 string 7.235 + */ 7.236 +function binl2b64(binarray) 7.237 +{ 7.238 + var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; 7.239 + var str = ""; 7.240 + for(var i = 0; i < binarray.length * 4; i += 3) 7.241 + { 7.242 + var triplet = (((binarray[i >> 2] >> 8 * ( i %4)) & 0xFF) << 16) 7.243 + | (((binarray[i+1 >> 2] >> 8 * ((i+1)%4)) & 0xFF) << 8 ) 7.244 + | ((binarray[i+2 >> 2] >> 8 * ((i+2)%4)) & 0xFF); 7.245 + for(var j = 0; j < 4; j++) 7.246 + { 7.247 + if(i * 8 + j * 6 > binarray.length * 32) str += b64pad; 7.248 + else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F); 7.249 + } 7.250 + } 7.251 + return str; 7.252 +}
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/src/firefoxos/hashes/sha1.js Mon Apr 22 22:00:43 2013 +0200 8.3 @@ -0,0 +1,202 @@ 8.4 +/* 8.5 + * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined 8.6 + * in FIPS PUB 180-1 8.7 + * Version 2.1 Copyright Paul Johnston 2000 - 2002. 8.8 + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet 8.9 + * Distributed under the BSD License 8.10 + * See http://pajhome.org.uk/crypt/md5 for details. 8.11 + */ 8.12 + 8.13 +/* 8.14 + * Configurable variables. You may need to tweak these to be compatible with 8.15 + * the server-side, but the defaults work in most cases. 8.16 + */ 8.17 +var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */ 8.18 +var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */ 8.19 +var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */ 8.20 + 8.21 +/* 8.22 + * These are the functions you'll usually want to call 8.23 + * They take string arguments and return either hex or base-64 encoded strings 8.24 + */ 8.25 +function hexsha1(s){return binb2hex(coresha1(str2binb(s),s.length * chrsz));} 8.26 +function b64sha1(s){return binb2b64(coresha1(str2binb(s),s.length * chrsz));} 8.27 +function strsha1(s){return binb2str(coresha1(str2binb(s),s.length * chrsz));} 8.28 +function hexhmacsha1(key, data){ return binb2hex(corehmacsha1(key, data));} 8.29 +function b64hmacsha1(key, data){ return binb2b64(corehmacsha1(key, data));} 8.30 +function strhmacsha1(key, data){ return binb2str(corehmacsha1(key, data));} 8.31 + 8.32 +/* 8.33 + * Perform a simple self-test to see if the VM is working 8.34 + */ 8.35 +function sha1vmtest() 8.36 +{ 8.37 + return hexsha1("abc") == "a9993e364706816aba3e25717850c26c9cd0d89d"; 8.38 +} 8.39 + 8.40 +/* 8.41 + * Calculate the SHA-1 of an array of big-endian words, and a bit length 8.42 + */ 8.43 +function coresha1(x, len) 8.44 +{ 8.45 + /* append padding */ 8.46 + x[len >> 5] |= 0x80 << (24 - len % 32); 8.47 + x[((len + 64 >> 9) << 4) + 15] = len; 8.48 + 8.49 + var w = Array(80); 8.50 + var a = 1732584193; 8.51 + var b = -271733879; 8.52 + var c = -1732584194; 8.53 + var d = 271733878; 8.54 + var e = -1009589776; 8.55 + 8.56 + for(var i = 0; i < x.length; i += 16) 8.57 + { 8.58 + var olda = a; 8.59 + var oldb = b; 8.60 + var oldc = c; 8.61 + var oldd = d; 8.62 + var olde = e; 8.63 + 8.64 + for(var j = 0; j < 80; j++) 8.65 + { 8.66 + if(j < 16) w[j] = x[i + j]; 8.67 + else w[j] = rol(w[j-3] ^ w[j-8] ^ w[j-14] ^ w[j-16], 1); 8.68 + var t = safeadd(safeadd(rol(a, 5), sha1ft(j, b, c, d)), 8.69 + safeadd(safeadd(e, w[j]), sha1kt(j))); 8.70 + e = d; 8.71 + d = c; 8.72 + c = rol(b, 30); 8.73 + b = a; 8.74 + a = t; 8.75 + } 8.76 + 8.77 + a = safeadd(a, olda); 8.78 + b = safeadd(b, oldb); 8.79 + c = safeadd(c, oldc); 8.80 + d = safeadd(d, oldd); 8.81 + e = safeadd(e, olde); 8.82 + } 8.83 + return Array(a, b, c, d, e); 8.84 + 8.85 +} 8.86 + 8.87 +/* 8.88 + * Perform the appropriate triplet combination function for the current 8.89 + * iteration 8.90 + */ 8.91 +function sha1ft(t, b, c, d) 8.92 +{ 8.93 + if(t < 20) return (b & c) | ((~b) & d); 8.94 + if(t < 40) return b ^ c ^ d; 8.95 + if(t < 60) return (b & c) | (b & d) | (c & d); 8.96 + return b ^ c ^ d; 8.97 +} 8.98 + 8.99 +/* 8.100 + * Determine the appropriate additive constant for the current iteration 8.101 + */ 8.102 +function sha1kt(t) 8.103 +{ 8.104 + return (t < 20) ? 1518500249 : (t < 40) ? 1859775393 : 8.105 + (t < 60) ? -1894007588 : -899497514; 8.106 +} 8.107 + 8.108 +/* 8.109 + * Calculate the HMAC-SHA1 of a key and some data 8.110 + */ 8.111 +function corehmacsha1(key, data) 8.112 +{ 8.113 + var bkey = str2binb(key); 8.114 + if(bkey.length > 16) bkey = coresha1(bkey, key.length * chrsz); 8.115 + 8.116 + var ipad = Array(16), opad = Array(16); 8.117 + for(var i = 0; i < 16; i++) 8.118 + { 8.119 + ipad[i] = bkey[i] ^ 0x36363636; 8.120 + opad[i] = bkey[i] ^ 0x5C5C5C5C; 8.121 + } 8.122 + 8.123 + var hash = coresha1(ipad.concat(str2binb(data)), 512 + data.length * chrsz); 8.124 + return coresha1(opad.concat(hash), 512 + 160); 8.125 +} 8.126 + 8.127 +/* 8.128 + * Add integers, wrapping at 2^32. This uses 16-bit operations internally 8.129 + * to work around bugs in some JS interpreters. 8.130 + */ 8.131 +function safeadd(x, y) 8.132 +{ 8.133 + var lsw = (x & 0xFFFF) + (y & 0xFFFF); 8.134 + var msw = (x >> 16) + (y >> 16) + (lsw >> 16); 8.135 + return (msw << 16) | (lsw & 0xFFFF); 8.136 +} 8.137 + 8.138 +/* 8.139 + * Bitwise rotate a 32-bit number to the left. 8.140 + */ 8.141 +function rol(num, cnt) 8.142 +{ 8.143 + return (num << cnt) | (num >>> (32 - cnt)); 8.144 +} 8.145 + 8.146 +/* 8.147 + * Convert an 8-bit or 16-bit string to an array of big-endian words 8.148 + * In 8-bit function, characters >255 have their hi-byte silently ignored. 8.149 + */ 8.150 +function str2binb(str) 8.151 +{ 8.152 + var bin = Array(); 8.153 + var mask = (1 << chrsz) - 1; 8.154 + for(var i = 0; i < str.length * chrsz; i += chrsz) 8.155 + bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (24 - i%32); 8.156 + return bin; 8.157 +} 8.158 + 8.159 +/* 8.160 + * Convert an array of big-endian words to a string 8.161 + */ 8.162 +function binb2str(bin) 8.163 +{ 8.164 + var str = ""; 8.165 + var mask = (1 << chrsz) - 1; 8.166 + for(var i = 0; i < bin.length * 32; i += chrsz) 8.167 + str += String.fromCharCode((bin[i>>5] >>> (24 - i%32)) & mask); 8.168 + return str; 8.169 +} 8.170 + 8.171 +/* 8.172 + * Convert an array of big-endian words to a hex string. 8.173 + */ 8.174 +function binb2hex(binarray) 8.175 +{ 8.176 + var hextab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; 8.177 + var str = ""; 8.178 + for(var i = 0; i < binarray.length * 4; i++) 8.179 + { 8.180 + str += hextab.charAt((binarray[i>>2] >> ((3 - i%4)*8+4)) & 0xF) + 8.181 + hextab.charAt((binarray[i>>2] >> ((3 - i%4)*8 )) & 0xF); 8.182 + } 8.183 + return str; 8.184 +} 8.185 + 8.186 +/* 8.187 + * Convert an array of big-endian words to a base-64 string 8.188 + */ 8.189 +function binb2b64(binarray) 8.190 +{ 8.191 + var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; 8.192 + var str = ""; 8.193 + for(var i = 0; i < binarray.length * 4; i += 3) 8.194 + { 8.195 + var triplet = (((binarray[i >> 2] >> 8 * (3 - i %4)) & 0xFF) << 16) 8.196 + | (((binarray[i+1 >> 2] >> 8 * (3 - (i+1)%4)) & 0xFF) << 8 ) 8.197 + | ((binarray[i+2 >> 2] >> 8 * (3 - (i+2)%4)) & 0xFF); 8.198 + for(var j = 0; j < 4; j++) 8.199 + { 8.200 + if(i * 8 + j * 6 > binarray.length * 32) str += b64pad; 8.201 + else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F); 8.202 + } 8.203 + } 8.204 + return str; 8.205 +}
9.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 9.2 +++ b/src/firefoxos/help.html Mon Apr 22 22:00:43 2013 +0200 9.3 @@ -0,0 +1,358 @@ 9.4 +<!DOCTYPE html> 9.5 +<!-- 9.6 +OTPWCalc - One time password challenge response calculator client 9.7 +Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> 9.8 + 9.9 +OTPWCalc is free software: you can redistribute it and/or modify 9.10 +it under the terms of the European Union Public Licence, either 9.11 +version 1.1 of the license, or (at your option) any later version. 9.12 + 9.13 +OTPWCalc is distributed in the hope that it will be useful, 9.14 +but WITHOUT ANY WARRANTY; without even the implied warranty 9.15 +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 9.16 +the European Union Public License for more details. 9.17 + 9.18 +You should have received a copy of the European Union Public 9.19 +Licence along with OTPWCalc. If not, please refer to 9.20 +<http://joinup.ec.europa.eu/software/page/eupl/>. 9.21 + 9.22 +This file is part of project OTWPCalc, a one time password challenge 9.23 +response calculator client and is found at http://otpwcalc.europalab.com/ 9.24 + 9.25 +help.html: W3C HTML implementation 9.26 +--> 9.27 + 9.28 +<html> 9.29 + <head> 9.30 + <meta charset="utf-8"> 9.31 + <meta name="viewport" content="width=device-width, initial-scale=1"> 9.32 + <title>OTPWCalc</title> 9.33 + <link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.3.1.min.css" /> 9.34 + <link rel="stylesheet" href="main.css" /> 9.35 + <script src="jquery.core/jquery-1.9.1.js"></script> 9.36 + <script src="help.js"></script> 9.37 + <script src="jquery.mobile/jquery.mobile-1.3.1.min.js"></script> 9.38 +</head> 9.39 +<body> 9.40 + <!-- Data attributes reserved by JQuery Mobile: 9.41 + data-theme, data-ajax, data-filter, data-icon, data-grid, 9.42 + data-rel, data-icon, data-url, data-role, and data-type --> 9.43 + <div data-role="page" class="type-interior"> 9.44 + <!-- H1 header data-role good for Search Engine Optimization --> 9.45 + <!--<div data-role="header" data-position="inline">--> 9.46 + <div data-role="header" data-position="fixed" data-id="headhelp"> 9.47 + <h1>OTPWCalc</h1> 9.48 + </div><!-- /header --> 9.49 + <div data-role="content"> 9.50 + <div class="content-primary"> 9.51 + <h1 style="text-align: center; margin: 0;">Help</h1> 9.52 + <a href="#faq" data-role="button" data-theme="e" data-icon="otpwcalc-question" data-iconpos="right" data-transition="flow">F. A. Q.</a> 9.53 + <a href="#quickstart" data-role="button" data-theme="e" data-icon="otpwcalc-qstart" data-iconpos="right" data-transition="flow">Quickstart</a> 9.54 + <a href="#manpage" data-role="button" data-theme="e" data-icon="otpwcalc-manpage" data-iconpos="right" data-transition="flow">Manpage</a> 9.55 + <a href="//list.europalab.com/mailman/listinfo/otpwcalc/" data-role="button" data-theme="e" data-icon="otpwcalc-email" data-iconpos="right" data-transition="flow">Mailinglist</a> 9.56 + <a href="#security" data-role="button" data-theme="e" data-icon="otpwcalc-security" data-iconpos="right" data-transition="flow">Security</a> 9.57 + <a href="#standrfc" data-role="button" data-theme="e" data-icon="otpwcalc-document" data-iconpos="right" data-transition="flow">Standards</a> 9.58 + </div><!-- /content-primary --> 9.59 + </div><!-- /content --> 9.60 + </div><!-- /page --> 9.61 + 9.62 + <div data-role="page" class="type-interior" id="faq"> 9.63 + <div data-role="header" data-id="headfaq"> 9.64 + <h1>OTPWCalc</h1> 9.65 + </div><!-- /header --> 9.66 + <div data-role="content"> 9.67 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d" data-inset="false" data-theme="c" data-content-theme="c"> 9.68 + <h3 style="margin-top: 0; margin-bottom: 0;">What is a One Time Password?</h3> 9.69 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">A One Time Password (OTP) is a password valid only for a <strong>single use</strong> and, once used, cannot be used again for authentication. OTPs avoid a number of shortcomings that are associated with traditional (static) passwords.</p> 9.70 + </div> 9.71 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.72 + <h3>What can I do with this app?</h3> 9.73 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">This application serves one purpose only. It calculates and prints a OTP.</p> 9.74 + </div> 9.75 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.76 + <h3>What can I do with OTPs?</h3> 9.77 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">Most people use OTPs to log in to their website administration, CMS, or remote console.</p> 9.78 + </div> 9.79 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.80 + <h3>Can I log into my Google account?</h3> 9.81 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">No. Google uses OTPs, but in a slightly nonstandard way. OTPWCalc cannot calculate OTPs useful for Google authentication yet.</p> 9.82 + </div> 9.83 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.84 + <h3>Can I log in to Win/OSX/Oracle?</h3> 9.85 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">Yes, but some work is needed on the Windows/OSX/Oracle computer to configure the authentication subsystem.</p> 9.86 + </div> 9.87 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.88 + <h3>Can I log in to Unix/Linux?</h3> 9.89 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">Yes, by using PAM and it's quite easy.</p> 9.90 + </div> 9.91 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.92 + <h3>What else can I do with it?</h3> 9.93 + <ol style="margin-top: 0.5em;"> 9.94 + <li>Impress your friends</li> 9.95 + <li>VPN authentication</li> 9.96 + <li>Single sign on</li> 9.97 + <li>Remote access</li> 9.98 + <li>Computer login</li> 9.99 + <li>Disk encryption</li> 9.100 + <li>Internet services</li> 9.101 + <li>Systems integration</li> 9.102 + <li>CMS authentication</li> 9.103 + <li>Password management</li> 9.104 + <li>Email and money transfer</li> 9.105 + <li>Bank transaction validation</li> 9.106 + </ol> 9.107 + </div> 9.108 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.109 + <h3>Can I install OTPWCalc on …?</h3> 9.110 + <ul style="margin-top: 0.5em;"> 9.111 + <li>FirefoxOS: <strong>Yes</strong></li> 9.112 + <li>Sailfish: No</li> 9.113 + <li>Android: No</li> 9.114 + <li>Tizen: <strong>Yes</strong></li> 9.115 + <li>MeeGo: No</li> 9.116 + <li>Bada: No</li> 9.117 + <li>iOS: No</li> 9.118 + <li>Unix: No</li> 9.119 + <li>Linux: No</li> 9.120 + <li>Mac OSX: No</li> 9.121 + <li>BlackBerry QNX: No</li> 9.122 + <li>Windows Phone: <strong>Yes</strong></li> 9.123 + <li>Windows Store: <strong>Yes</strong></li> 9.124 + </ul> 9.125 + </div> 9.126 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.127 + <h3>Why isn't OTPWCalc compatible?</h3> 9.128 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">OTPWCalc might not be compatible with your platform of choice, usually because the necessary hardware isn't available to the author for development.</p> 9.129 + </div> 9.130 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.131 + <h3>What happens to my password?</h3> 9.132 + <p style="margin-top: 0.25em;">Take a look at the entry point in 9.133 + <strong>main.js</strong>:</p> 9.134 + <code style="margin-left: 2em; display:inline-block; line-height: 120%;"> 9.135 + var secr = $('#paswrd').val();<br /> 9.136 + var resp = hash(secr, user, iter); 9.137 + </code> 9.138 + <p style="margin-bottom: 0.25em;">In other words, the password you enter is neither stored nor transmitted. In fact, OTPWCalc doesn't store or transmit any data input <strong>at all</strong> (see James Bond question later.) It's a <em>calculator</em> in the true sense, just like a pocket calculator that adds numbers.</p> 9.139 + </div> 9.140 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.141 + <h3>Is OTPWCalc safe and secure?</h3> 9.142 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">The algorithms of OTP have proven worthy of <strong>high security applications</strong>. OTPWCalc has been carefully designed and is tested thoroughly. It's both secure and safe to use.</p> 9.143 + </div> 9.144 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.145 + <h3>Is it useful in a corporate setting?</h3> 9.146 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">Yes. Custom built enterprise versions are available accompanied with commercial support. Visit the <a href="//otpwcalc.europalab.com/">OTPWCalc homepage</a> for information.</p> 9.147 + </div> 9.148 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.149 + <h3>Does James Bond use OTPWCalc?</h3> 9.150 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">Maybe, but spies probably just look over shoulders or use cameras to steal the static passwords used in OTP systems.</p> 9.151 + </div> 9.152 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.153 + <h3>Same as Yubikey or RSA SecurID?</h3> 9.154 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">Yubikey, RSA SecurID, and OTPWCalc use similar technologies for similar applications, but OTPWCalc is strictly software and doesn't depend on the time or date.</p> 9.155 + </div> 9.156 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.157 + <h3>How can I upgrade my OTPWCalc?</h3> 9.158 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">This varies according to the operating system used so there's no single answer.</p> 9.159 + </div> 9.160 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.161 + <h3>Who owns OTPWCalc?</h3> 9.162 + <p style="margin-top: 0.25em; margin-bottom: 0;">OTPWCalc is the property of the copyright holder, Michael Schloh von Bennewitz.</p> 9.163 + </div> 9.164 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.165 + <h3>Is OTPWCalc licensed?</h3> 9.166 + <p style="margin-top: 0.25em; margin-bottom: 0;">OTPWCalc is distributed under the terms of the <a href="//joinup.ec.europa.eu/software/page/eupl/">European Union Public Licence</a>. This liberal license grants you freedom to use the software and much more.</p> 9.167 + </div> 9.168 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.169 + <h3>Which programming language?</h3> 9.170 + <p style="margin-top: 0.25em; margin-bottom: 0;">OTPWCalc is built using the HTML, CSS, and JavaScript languages.</p> 9.171 + <p style="margin-top: 0.5em; margin-bottom: 0.25em;">The jQuery Mobile and Apache Cordova development frameworks provide important additional features.</p> 9.172 + </div> 9.173 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.174 + <h3>What are ongoing developments?</h3> 9.175 + <p style="margin-top: 0.25em;">OTPWCalc is both active and stable, and follows a project management plan.</p> 9.176 + <ul> 9.177 + <li>It is undergoing nationalization to several european languages.</li> 9.178 + <li style="margin-top: 0.5em;"><strong>HMAC</strong>-based RFC 4226 (HOTP) is being implemented.</li> 9.179 + <li style="margin-top: 0.5em;">Features like QR and OpenID integration are being explored.</li> 9.180 + <li style="margin-top: 0.5em;">Most of all, OTPWCalc is being <em>ported to new platforms</em>.</li> 9.181 + </ul> 9.182 + <p style="margin-top: 0.5em; margin-bottom: 0.25em;">To request features or pose questions please write to the <a href="//list.europalab.com/mailman/listinfo/otpwcalc/">mailing list</a>.</p> 9.183 + </div> 9.184 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.185 + <h3>How can I report a bogue (bug)?</h3> 9.186 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">Please write to the <a href="//list.europalab.com/mailman/listinfo/otpwcalc/">mailing list</a> stating the OTPWCalc version and platform. Thanks for every bug report!</p> 9.187 + </div> 9.188 + <div data-role="collapsible" data-inset="false" data-theme="c" data-content-theme="d"> 9.189 + <h3>My question isn't answered,<br />or this is just not working!</h3> 9.190 + <p style="margin-top: 0.25em; margin-bottom: 0.25em;">Please turn to the <a href="//list.europalab.com/mailman/listinfo/otpwcalc/">mailing list</a> and ask for help there. Answers appear in a day.</p> 9.191 + </div> 9.192 + </div><!-- /content --> 9.193 + </div><!-- /page --> 9.194 + 9.195 + <div data-role="page" class="type-interior" id="quickstart"> 9.196 + <div data-role="header" data-position="fixed" data-id="headquick"> 9.197 + <h1>OTPWCalc</h1> 9.198 + </div><!-- /header --> 9.199 + <div data-role="content"> 9.200 + <h3 style="margin-top: 0; margin-bottom: 0;"> 9.201 + To start using OTPWCalc now… 9.202 + </h3> 9.203 + <ol style="margin-top: 0.5em; margin-bottom: 0;"> 9.204 + <li style="margin-bottom: 0.5em;">Install and configure a OTP authentication server on the <strong>host computer</strong>.</li> 9.205 + <li style="margin-bottom: 0.5em;">Add a username, seed ID, and password to the OTP <strong>authentication server</strong>.</li> 9.206 + <li style="margin-bottom: 0.5em;">Log in to the host computer providing the recently added username. The host computer will reply with a challange including the appropriate <strong>seed ID</strong> and a new <strong>counter number</strong>.</li> 9.207 + <li style="margin-bottom: 0.5em;">Type the seed ID and counter number along with the corresponding password into OTPWCalc. Click <strong>Submit</strong>.</li> 9.208 + <li style="margin-bottom: 0.5em;">Read the resulting OTP in <div style="display: inline-block; color: rgb(192,0,0); text-transform: normal;">red uppercase characters</div>.</li> 9.209 + <li style="margin-bottom: 0.5em;">Type the OTP into the host computer console and…<br /><em>Enjoy <strong>secure</strong> access!</em></li> 9.210 + </ol> 9.211 + </div><!-- /content --> 9.212 + </div><!-- /page --> 9.213 + 9.214 + <div data-role="page" class="type-interior" id="manpage"> 9.215 + <div data-role="header" data-position="fixed" data-id="headman"> 9.216 + <h1>OTPWCalc</h1> 9.217 + </div><!-- /header --> 9.218 + <div data-role="content"> 9.219 + <div style="float: left;">User Commands</div> 9.220 + <div style="float: right;">OTPWCalc(1)</div> 9.221 + <div style="clear: both;"></div> 9.222 + <div style="margin-top: 1.5em; text-transform: uppercase; font-size: 0.75em;">Name</div> 9.223 + <div style="margin-left: 2em; font-size: 0.75em;">OTPWCalc - Client application for calculating responses to OTP challenges.</div> 9.224 + <div style="margin-top: 1.5em; text-transform: uppercase; font-size: 0.75em;">Synopsis</div> 9.225 + <div style="margin-left: 2em; font-size: 0.75em;">OTPWCalc [-h] [-v] [-V]</div> 9.226 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Description</div> 9.227 + <div style="margin-left: 2em; font-size: 0.75em;">Playing the role of a hardware 9.228 + token in a client server authentication system as described 9.229 + in RFC 2289, OTPWCalc calculates responses to incoming 9.230 + authentication challenges as typed in by the user.</div> 9.231 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Options</div> 9.232 + <div style="margin-left: 2em; font-size: 0.75em;"> 9.233 + -h Display a brief help message and exit.<br /> 9.234 + -v Print verbose text to the calling terminal.<br /> 9.235 + -V Print the version number and exit. 9.236 + </div> 9.237 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Terms</div> 9.238 + <div style="margin-left: 2em; font-size: 0.75em;">Username</div> 9.239 + <div style="margin-left: 4em; font-size: 0.75em;"> 9.240 + The name that the server knows. For example, 'albertc'. 9.241 + </div> 9.242 + <div style="margin-left: 2em; font-size: 0.75em;">Secret</div> 9.243 + <div style="margin-left: 4em; font-size: 0.75em;"> 9.244 + A password, usually selected by the user, that is 9.245 + needed to gain access to the server. For example, 9.246 + 'Mysec2-pw'. 9.247 + </div> 9.248 + <div style="margin-left: 2em; font-size: 0.75em;">Challenge</div> 9.249 + <div style="margin-left: 4em; font-size: 0.75em;"> 9.250 + Information printed by the server when it tries to 9.251 + authenticate a user. This information is needed by 9.252 + OTPWCalc to generate a proper response. For example, 9.253 + 'otp-md5 820 dinw23612'. 9.254 + </div> 9.255 + <div style="margin-left: 2em; font-size: 0.75em;">Response</div> 9.256 + <div style="margin-left: 4em; font-size: 0.75em;"> 9.257 + Information generated from a challenge that is used 9.258 + by the server to authenticate the user. For example, 9.259 + 'BIEM ROSE JINX HARD BALL SKY NEW'. 9.260 + </div> 9.261 + <div style="margin-left: 2em; font-size: 0.75em;">Seed</div> 9.262 + <div style="margin-left: 4em; font-size: 0.75em;"> 9.263 + Information used in conjunction with the secret and 9.264 + sequence number to compute the response. It allows 9.265 + the same secret to be used for multiple sequences 9.266 + by changing the seed, or for authentication to 9.267 + multiple servers by using different seeds. 9.268 + </div> 9.269 + <div style="margin-left: 2em; font-size: 0.75em;">Sequence #</div> 9.270 + <div style="margin-left: 4em; font-size: 0.75em;"> 9.271 + A counter used to track key iterations. Each time 9.272 + a successful response is received by the server the 9.273 + sequence number is decremented. For example, 71. 9.274 + </div> 9.275 + <div style="margin-left: 2em; font-size: 0.75em;">Hash ID</div> 9.276 + <div style="margin-left: 4em; font-size: 0.75em;"> 9.277 + Text that identifies the cryptographical algorithm 9.278 + used. The valid hash identifiers are 'otpmd4' 9.279 + corresponding to MD4, and 'otp-md5' corresponding 9.280 + to MD5. 9.281 + </div> 9.282 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Files</div> 9.283 + <div style="margin-left: 2em; font-size: 0.75em;"> 9.284 + The application may store a cookie in a file used to 9.285 + restore the most recent settings. The location of this 9.286 + file (or arbitrary data structure) varies according to 9.287 + the operating system. 9.288 + </div> 9.289 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Bugs</div> 9.290 + <div style="margin-left: 2em; font-size: 0.75em;">This manual.</div> 9.291 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Security</div> 9.292 + <div style="margin-left: 2em; font-size: 0.75em;"> 9.293 + All of the authentication strategies covered in the 9.294 + standards implemented by this application are vulnerable 9.295 + to man in the middle (MITM) attacks. The strategies can 9.296 + be combined with public key logic to defeat such attacks. 9.297 + </div> 9.298 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Standards</div> 9.299 + <div style="margin-left: 2em; font-size: 0.75em;"> 9.300 + The IETF standards RFC 1760 (The S/KEY One-Time Password 9.301 + System) and RFC 2289 (A One-Time Password System) are 9.302 + implemented. 9.303 + </div> 9.304 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">See also</div> 9.305 + <div style="margin-left: 2em; font-size: 0.75em;"> 9.306 + None. This is a self contained, stand alone application with 9.307 + no alias commands. It is unique in that it leverages open 9.308 + technologies like Javascript to run unmodified on a variety 9.309 + of operating systems. 9.310 + </div> 9.311 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Author</div> 9.312 + <div style="margin-left: 2em; font-size: 0.75em;"> 9.313 + This application was written by <a href="//michael.schloh.com/"> 9.314 + Michael Schloh von Bennewitz</a>. 9.315 + </div> 9.316 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Contact</div> 9.317 + <div style="margin-left: 2em; font-size: 0.75em;"> 9.318 + Please refer to the <a href="//otpwcalc.europalab.com/"> 9.319 + OTPWCalc homepage</a> for contact information. 9.320 + </div> 9.321 + <div style="margin-top: 1.25em; text-transform: uppercase; font-size: 0.75em;">Support</div> 9.322 + <div style="margin-left: 2em; font-size: 0.75em;"> 9.323 + The <a href="//list.europalab.com/mailman/listinfo/otpwcalc/"> 9.324 + OTPWCalc mailing list</a> provides information and answers to 9.325 + questions. Commercial support is provided by the 9.326 + <a href="mailto:michael@schloh.com">author</a>. 9.327 + </div> 9.328 + </div><!-- /content --> 9.329 + </div><!-- /page --> 9.330 + 9.331 + <div data-role="page" class="type-interior" id="security"> 9.332 + <div data-role="header" data-position="fixed" data-id="headsecurity"> 9.333 + <h1>OTPWCalc</h1> 9.334 + </div><!-- /header --> 9.335 + <div data-role="content"> 9.336 + <div data-role="collapsible" data-allow-collapse="false" data-collapsed="false" data-expanded-icon="otpwcalc-security" data-theme="c" data-content-theme="d"> 9.337 + <h1>Security</h1> 9.338 + <p style="margin-top: 0; margin-bottom: 0; font-size: 1.1em; line-height: 125%;">General <strong>security concerns</strong> should be directed to the <a href="//list.europalab.com/mailman/listinfo/otpwcalc/">mailing list</a>, while those of a private nature should be sent directly to the <a href="mailto:michael@schloh.com">author</a>. X.509 certificates (for exchanging S/MIME encrypted email) and GnuPG keys (to verify released software signatures) reside on the <a href="//michael.schloh.com/">author's website</a>.</p> 9.339 + <p style="margin-top: 0.5em; margin-bottom: 0; font-size: 1.1em; line-height: 125%;">Please monitor the mailing list and keep your installation of OTPWCalc <strong>up to date</strong>!</p> 9.340 + </div><!-- /collapsible --> 9.341 + </div><!-- /content --> 9.342 + </div><!-- /page --> 9.343 + 9.344 + <div data-role="page" class="type-interior" id="standrfc"> 9.345 + <div data-role="header" data-position="fixed" data-id="headrfc"> 9.346 + <h1>OTPWCalc</h1> 9.347 + </div><!-- /header --> 9.348 + <div data-role="content"> 9.349 + <div data-role="collapsible" data-allow-collapse="false" data-collapsed="false" data-expanded-icon="otpwcalc-document" data-theme="c" data-content-theme="d"> 9.350 + <h1>Standards</h1> 9.351 + <p style="font-size: 1.1em; line-height: 125%;">This application implements<br />the following <strong>standards</strong>:</p> 9.352 + <ul> 9.353 + <li> 9.354 + <a href="//tools.ietf.org/html/rfc2289/">RFC 2289, A One-Time Password System</a> 9.355 + </li> 9.356 + </ul> 9.357 + </div><!-- /collapsible --> 9.358 + </div><!-- /content --> 9.359 + </div><!-- /page --> 9.360 +</body> 9.361 +</html>
10.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 10.2 +++ b/src/firefoxos/help.js Mon Apr 22 22:00:43 2013 +0200 10.3 @@ -0,0 +1,39 @@ 10.4 +/* 10.5 + * OTPWCalc - One time password challenge response calculator client 10.6 + * Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> 10.7 + * 10.8 + * OTPWCalc is free software: you can redistribute it and/or modify 10.9 + * it under the terms of the European Union Public Licence, either 10.10 + * version 1.1 of the license, or (at your option) any later version. 10.11 + * 10.12 + * OTPWCalc is distributed in the hope that it will be useful, 10.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty 10.14 + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 10.15 + * the European Union Public License for more details. 10.16 + * 10.17 + * You should have received a copy of the European Union Public 10.18 + * Licence along with OTPWCalc. If not, please refer to 10.19 + * <http://joinup.ec.europa.eu/software/page/eupl/>. 10.20 + * 10.21 + * This file is part of project OTWPCalc, a one time password challenge 10.22 + * response calculator client and is found at http://otpwcalc.europalab.com/ 10.23 + * 10.24 + * help.js: ECMA JavaScript implementation 10.25 + */ 10.26 + 10.27 +// <![CDATA[ 10.28 +//// This doesn't work with AJAX (use pageinit instead) 10.29 +//// That means JavaScript in the head of any other HTML 10.30 +//// will be ignored, only the data-role="page" is parsed 10.31 +//$(document).ready(function() { 10.32 + //$.mobile.ajaxLinksEnabled = false; 10.33 +//}); 10.34 +//$(document).on("mobileinit", function() { 10.35 +// $.extend( $.mobile , { 10.36 +// pageLoadErrorMessage: 'Either the page cannot be found or it cannot be loaded.' 10.37 +// }); 10.38 +//}); 10.39 +$(document).on("pageinit", function(event) { 10.40 + $(".ui-collapsible[data-allow-collapse=false]").off("expand collapse"); 10.41 +}); 10.42 +// ]]>
11.1 Binary file src/firefoxos/img/compute-hd.png has changed
12.1 Binary file src/firefoxos/img/compute-sd.png has changed
13.1 Binary file src/firefoxos/img/datahost.png has changed
14.1 Binary file src/firefoxos/img/datahost.xcf has changed
15.1 Binary file src/firefoxos/img/document-hd.png has changed
16.1 Binary file src/firefoxos/img/document-sd.png has changed
17.1 Binary file src/firefoxos/img/email-hd.png has changed
18.1 Binary file src/firefoxos/img/email-sd.png has changed
19.1 Binary file src/firefoxos/img/keonmobile.png has changed
20.1 Binary file src/firefoxos/img/manpage-hd.png has changed
21.1 Binary file src/firefoxos/img/manpage-sd.png has changed
22.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 22.2 +++ b/src/firefoxos/img/manpage.svg Mon Apr 22 22:00:43 2013 +0200 22.3 @@ -0,0 +1,125 @@ 22.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?> 22.5 +<svg 22.6 + xmlns:dc="http://purl.org/dc/elements/1.1/" 22.7 + xmlns:cc="http://creativecommons.org/ns#" 22.8 + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 22.9 + xmlns:svg="http://www.w3.org/2000/svg" 22.10 + xmlns="http://www.w3.org/2000/svg" 22.11 + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 22.12 + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" 22.13 + version="1.1" 22.14 + x="0px" 22.15 + y="0px" 22.16 + width="32" 22.17 + height="32" 22.18 + viewBox="0 0 32 32" 22.19 + enable-background="new 0 0 32 32" 22.20 + xml:space="preserve" 22.21 + id="svg2" 22.22 + inkscape:version="0.48.3.1 r9886" 22.23 + sodipodi:docname="manpage.svg"><defs 22.24 + id="defs3011" /><sodipodi:namedview 22.25 + pagecolor="#ffffff" 22.26 + bordercolor="#666666" 22.27 + borderopacity="1" 22.28 + objecttolerance="10" 22.29 + gridtolerance="10" 22.30 + guidetolerance="10" 22.31 + inkscape:pageopacity="0" 22.32 + inkscape:pageshadow="2" 22.33 + inkscape:window-width="640" 22.34 + inkscape:window-height="480" 22.35 + id="namedview3009" 22.36 + showgrid="false" 22.37 + fit-margin-top="0" 22.38 + fit-margin-left="0" 22.39 + fit-margin-right="0" 22.40 + fit-margin-bottom="0" 22.41 + inkscape:zoom="7.375" 22.42 + inkscape:cx="12" 22.43 + inkscape:cy="16" 22.44 + inkscape:window-x="217" 22.45 + inkscape:window-y="174" 22.46 + inkscape:window-maximized="0" 22.47 + inkscape:current-layer="svg2" /> 22.48 + 22.49 +<metadata 22.50 + id="metadata2993"><rdf:RDF> 22.51 + 22.52 + <cc:Work 22.53 + rdf:about=""> 22.54 + <dc:format>image/svg+xml</dc:format> 22.55 + <dc:type 22.56 + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 22.57 + <dc:title>PICOL Icon</dc:title> 22.58 + <dc:date>2009-03-15</dc:date> 22.59 + <dc:creator><cc:Agent><dc:title>Melih Bilgil</dc:title></cc:Agent></dc:creator> 22.60 + <dc:rights><cc:Agent><dc:title>Creative Commons BY-SA</dc:title></cc:Agent></dc:rights> 22.61 + <dc:publisher><cc:Agent><dc:title>PICOL - Pictorial Communication Language</dc:title></cc:Agent></dc:publisher> 22.62 + <dc:identifier>http://blog.picol.org</dc:identifier> 22.63 + <dc:source>http://blog.picol.org</dc:source> 22.64 + <dc:language>en</dc:language> 22.65 + <dc:subject> 22.66 + <rdf:Bag> 22.67 + <rdf:li>PICOL</rdf:li> 22.68 + <rdf:li>icon</rdf:li> 22.69 + <rdf:li>icons</rdf:li> 22.70 + <rdf:li>sign</rdf:li> 22.71 + <rdf:li>GUI</rdf:li> 22.72 + <rdf:li>vector</rdf:li> 22.73 + <rdf:li>interface</rdf:li> 22.74 + </rdf:Bag> 22.75 + </dc:subject> 22.76 + <dc:description>This is one icon out of all PICOL icons</dc:description> 22.77 + <dc:contributor> 22.78 + <cc:Agent><dc:title>Melih Bilgil (www.lonja.de), Christopher Adjei (www.boffer.net)</dc:title></cc:Agent></dc:contributor> 22.79 + <cc:license 22.80 + rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" /></cc:Work> 22.81 + <cc:License 22.82 + rdf:about="http://creativecommons.org/licenses/by-sa/3.0/"> 22.83 + <cc:permits 22.84 + rdf:resource="http://creativecommons.org/ns#Reproduction" /> 22.85 + <cc:permits 22.86 + rdf:resource="http://creativecommons.org/ns#Distribution" /> 22.87 + <cc:requires 22.88 + rdf:resource="http://creativecommons.org/ns#Notice" /> 22.89 + <cc:requires 22.90 + rdf:resource="http://creativecommons.org/ns#Attribution" /> 22.91 + <cc:permits 22.92 + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> 22.93 + <cc:requires 22.94 + rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License> 22.95 + 22.96 + </rdf:RDF> 22.97 +</metadata> 22.98 + 22.99 + 22.100 +<g 22.101 + id="user_x5F_profile" 22.102 + transform="translate(4,0)"> 22.103 + <g 22.104 + id="g2999"> 22.105 + <path 22.106 + d="m 4,28 h 16 v -6 c 0,0 0,-2 -2,-2 -1,0 -12,0 -12,0 0,0 -2,0 -2,2 0,1 0,6 0,6 z" 22.107 + id="path3001" 22.108 + inkscape:connector-curvature="0" /> 22.109 + </g> 22.110 + <g 22.111 + id="g3003"> 22.112 + <circle 22.113 + cx="12" 22.114 + cy="14" 22.115 + r="4" 22.116 + id="circle3005" 22.117 + sodipodi:cx="12" 22.118 + sodipodi:cy="14" 22.119 + sodipodi:rx="4" 22.120 + sodipodi:ry="4" 22.121 + d="m 16,14 c 0,2.209139 -1.790861,4 -4,4 -2.209139,0 -4,-1.790861 -4,-4 0,-2.209139 1.790861,-4 4,-4 2.209139,0 4,1.790861 4,4 z" /> 22.122 + </g> 22.123 + <path 22.124 + d="M 18.414,0 H 0 V 32 H 24 V 5.584 L 18.414,0 z M 17.998,2.413 21.586,6 H 17.998 V 2.413 z M 2,30 V 1.998 h 14 v 6.001 h 6 V 30 H 2 z" 22.125 + id="path3007" 22.126 + inkscape:connector-curvature="0" /> 22.127 +</g> 22.128 +</svg> 22.129 \ No newline at end of file
23.1 Binary file src/firefoxos/img/otpwcalc-128px.png has changed
24.1 Binary file src/firefoxos/img/otpwcalc-16px.png has changed
25.1 Binary file src/firefoxos/img/otpwcalc-256px.png has changed
26.1 Binary file src/firefoxos/img/otpwcalc-30px.png has changed
27.1 Binary file src/firefoxos/img/otpwcalc-32px.png has changed
28.1 Binary file src/firefoxos/img/otpwcalc-48px.png has changed
29.1 Binary file src/firefoxos/img/otpwcalc-60px.png has changed
30.1 Binary file src/firefoxos/img/otpwcalc-64px.png has changed
31.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 31.2 +++ b/src/firefoxos/img/otpwcalc-ico.svg Mon Apr 22 22:00:43 2013 +0200 31.3 @@ -0,0 +1,59 @@ 31.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?> 31.5 +<!-- Created with Inkscape (http://www.inkscape.org/) --> 31.6 + 31.7 +<svg 31.8 + xmlns:dc="http://purl.org/dc/elements/1.1/" 31.9 + xmlns:cc="http://creativecommons.org/ns#" 31.10 + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 31.11 + xmlns:svg="http://www.w3.org/2000/svg" 31.12 + xmlns="http://www.w3.org/2000/svg" 31.13 + version="1.1" 31.14 + width="114.23945" 31.15 + height="89.92881" 31.16 + id="svg5004"> 31.17 + <metadata 31.18 + id="metadata11"> 31.19 + <rdf:RDF> 31.20 + <cc:Work 31.21 + rdf:about=""> 31.22 + <dc:format>image/svg+xml</dc:format> 31.23 + <dc:type 31.24 + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 31.25 + <dc:title></dc:title> 31.26 + </cc:Work> 31.27 + </rdf:RDF> 31.28 + </metadata> 31.29 + <defs 31.30 + id="defs5006" /> 31.31 + <path 31.32 + d="m 92.903322,52.648305 c -2.480475,-1.542963 -4.750975,-5.18555 -5.04395,-8.0957 L 83.894535,4.8895175 C 83.60156,1.9842425 80.979497,-0.21302 78.06446,0.0164675 L 4.0312475,5.7635425 C 1.11621,5.99303 -0.607415,8.473505 0.1982475,11.286005 l 15.5273375,54.21875 c 0.805662,2.8125 3.657225,6.069337 6.337887,7.231437 L 59.55371,89.069205 c 2.68555,1.166987 7.06055,1.142575 9.726562,-0.05375 L 112.13672,69.79183 c 2.66601,-1.1963 2.81738,-3.4375 0.33691,-4.980475 L 92.903322,52.648268 z m 0,0" 31.33 + id="path8310" 31.34 + style="fill:#54b87d;fill-opacity:1;fill-rule:nonzero;stroke:none" /> 31.35 + <path 31.36 + d="M 83.069335,46.969593 79.202147,5.2361925 6.848635,12.360218 22.639647,64.074092 83.069335,46.969592 z m 0,0" 31.37 + id="path8312" 31.38 + style="fill:#232323;fill-opacity:1;fill-rule:nonzero;stroke:none" /> 31.39 + <path 31.40 + d="m 36.096685,68.126818 49.8584,-13.911125 4.306637,1.967775 -49.321287,14.370112 -4.84375,-2.426762 z m 0,0" 31.41 + id="path8314" 31.42 + style="fill:#232323;fill-opacity:1;fill-rule:nonzero;stroke:none" /> 31.43 + <path 31.44 + d="m 47.42481,75.265493 46.914062,-16.376951 4.5459,2.353513 -45.297862,16.440437 -6.1621,-2.416999 z m 0,0" 31.45 + id="path8316" 31.46 + style="fill:#232323;fill-opacity:1;fill-rule:nonzero;stroke:none" /> 31.47 + <path 31.48 + d="m 69.563472,76.300655 23.569338,-8.8916 5.175787,2.109375 -23.56445,8.73535 -5.180675,-1.953125 z m 0,0" 31.49 + id="path8318" 31.50 + style="fill:#232323;fill-opacity:1;fill-rule:nonzero;stroke:none" /> 31.51 + <text 31.52 + x="11.861032" 31.53 + y="48.059319" 31.54 + transform="matrix(0.97683017,-0.21401593,0.21401593,0.97683017,0,0)" 31.55 + id="text2988" 31.56 + xml:space="preserve" 31.57 + style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan 31.58 + x="11.861032" 31.59 + y="48.059319" 31.60 + id="tspan2990" 31.61 + style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif Bold">OTP</tspan></text> 31.62 +</svg>
32.1 Binary file src/firefoxos/img/question-hd.png has changed
33.1 Binary file src/firefoxos/img/question-sd.png has changed
34.1 Binary file src/firefoxos/img/quickstart-hd.png has changed
35.1 Binary file src/firefoxos/img/quickstart-sd.png has changed
36.1 Binary file src/firefoxos/img/security-hd.png has changed
37.1 Binary file src/firefoxos/img/security-sd.png has changed
38.1 Binary file src/firefoxos/img/seeye-hd.png has changed
39.1 Binary file src/firefoxos/img/seeye-sd.png has changed
40.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 40.2 +++ b/src/firefoxos/img/seeye.svg Mon Apr 22 22:00:43 2013 +0200 40.3 @@ -0,0 +1,111 @@ 40.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?> 40.5 +<svg 40.6 + xmlns:dc="http://purl.org/dc/elements/1.1/" 40.7 + xmlns:cc="http://creativecommons.org/ns#" 40.8 + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 40.9 + xmlns:svg="http://www.w3.org/2000/svg" 40.10 + xmlns="http://www.w3.org/2000/svg" 40.11 + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 40.12 + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" 40.13 + version="1.1" 40.14 + x="0px" 40.15 + y="0px" 40.16 + width="32" 40.17 + height="32" 40.18 + viewBox="0 0 32 32" 40.19 + enable-background="new 0 0 32 32" 40.20 + xml:space="preserve" 40.21 + id="svg2" 40.22 + inkscape:version="0.48.3.1 r9886" 40.23 + sodipodi:docname="seeye.svg"><defs 40.24 + id="defs15" /><sodipodi:namedview 40.25 + pagecolor="#ffffff" 40.26 + bordercolor="#666666" 40.27 + borderopacity="1" 40.28 + objecttolerance="10" 40.29 + gridtolerance="10" 40.30 + guidetolerance="10" 40.31 + inkscape:pageopacity="0" 40.32 + inkscape:pageshadow="2" 40.33 + inkscape:window-width="608" 40.34 + inkscape:window-height="561" 40.35 + id="namedview13" 40.36 + showgrid="false" 40.37 + fit-margin-top="0" 40.38 + fit-margin-left="0" 40.39 + fit-margin-right="0" 40.40 + fit-margin-bottom="0" 40.41 + inkscape:zoom="10.15625" 40.42 + inkscape:cx="16" 40.43 + inkscape:cy="16" 40.44 + inkscape:window-x="134" 40.45 + inkscape:window-y="44" 40.46 + inkscape:window-maximized="0" 40.47 + inkscape:current-layer="svg2" /> 40.48 + 40.49 +<metadata 40.50 + id="metadata3"><rdf:RDF> 40.51 + 40.52 + <cc:Work 40.53 + rdf:about=""> 40.54 + <dc:format>image/svg+xml</dc:format> 40.55 + <dc:type 40.56 + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 40.57 + <dc:title>PICOL Icon</dc:title> 40.58 + <dc:date>2009-03-15</dc:date> 40.59 + <dc:creator><cc:Agent><dc:title>Melih Bilgil</dc:title></cc:Agent></dc:creator> 40.60 + <dc:rights><cc:Agent><dc:title>Creative Commons BY-SA</dc:title></cc:Agent></dc:rights> 40.61 + <dc:publisher><cc:Agent><dc:title>PICOL - Pictorial Communication Language</dc:title></cc:Agent></dc:publisher> 40.62 + <dc:identifier>http://blog.picol.org</dc:identifier> 40.63 + <dc:source>http://blog.picol.org</dc:source> 40.64 + <dc:language>en</dc:language> 40.65 + <dc:subject> 40.66 + <rdf:Bag> 40.67 + <rdf:li>PICOL</rdf:li> 40.68 + <rdf:li>icon</rdf:li> 40.69 + <rdf:li>icons</rdf:li> 40.70 + <rdf:li>sign</rdf:li> 40.71 + <rdf:li>GUI</rdf:li> 40.72 + <rdf:li>vector</rdf:li> 40.73 + <rdf:li>interface</rdf:li> 40.74 + </rdf:Bag> 40.75 + </dc:subject> 40.76 + <dc:description>This is one icon out of all PICOL icons</dc:description> 40.77 + <dc:contributor> 40.78 + <cc:Agent><dc:title>Melih Bilgil (www.lonja.de), Christopher Adjei (www.boffer.net)</dc:title></cc:Agent></dc:contributor> 40.79 + <cc:license 40.80 + rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" /></cc:Work> 40.81 + <cc:License 40.82 + rdf:about="http://creativecommons.org/licenses/by-sa/3.0/"> 40.83 + <cc:permits 40.84 + rdf:resource="http://creativecommons.org/ns#Reproduction" /> 40.85 + <cc:permits 40.86 + rdf:resource="http://creativecommons.org/ns#Distribution" /> 40.87 + <cc:requires 40.88 + rdf:resource="http://creativecommons.org/ns#Notice" /> 40.89 + <cc:requires 40.90 + rdf:resource="http://creativecommons.org/ns#Attribution" /> 40.91 + <cc:permits 40.92 + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> 40.93 + <cc:requires 40.94 + rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License> 40.95 + 40.96 + </rdf:RDF> 40.97 +</metadata> 40.98 + 40.99 + 40.100 +<g 40.101 + id="g3016"><circle 40.102 + cx="16" 40.103 + cy="16" 40.104 + r="6" 40.105 + id="circle9" 40.106 + sodipodi:cx="16" 40.107 + sodipodi:cy="16" 40.108 + sodipodi:rx="6" 40.109 + sodipodi:ry="6" 40.110 + d="m 22,16 c 0,3.313708 -2.686292,6 -6,6 -3.313708,0 -6,-2.686292 -6,-6 0,-3.313708 2.686292,-6 6,-6 3.313708,0 6,2.686292 6,6 z" /><path 40.111 + d="M 16,6 C 6,6 0,15.938 0,15.938 0,15.938 6,26 16,26 26,26 32,16 32,16 32,16 26,6 16,6 z m 0,18 C 7.25,24 2.5,16 2.5,16 2.5,16 7.25,8 16,8 c 8.75,0 13.5,8 13.5,8 0,0 -4.75,8 -13.5,8 z" 40.112 + id="path11" 40.113 + inkscape:connector-curvature="0" /></g> 40.114 +</svg> 40.115 \ No newline at end of file
41.1 Binary file src/firefoxos/img/tastatur.png has changed
42.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 42.2 +++ b/src/firefoxos/img/tastatur.svg Mon Apr 22 22:00:43 2013 +0200 42.3 @@ -0,0 +1,17345 @@ 42.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?> 42.5 +<!-- Created with Inkscape (http://www.inkscape.org/) --> 42.6 + 42.7 +<svg 42.8 + xmlns:dc="http://purl.org/dc/elements/1.1/" 42.9 + xmlns:cc="http://creativecommons.org/ns#" 42.10 + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 42.11 + xmlns:svg="http://www.w3.org/2000/svg" 42.12 + xmlns="http://www.w3.org/2000/svg" 42.13 + xmlns:xlink="http://www.w3.org/1999/xlink" 42.14 + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 42.15 + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" 42.16 + version="1.0" 42.17 + width="1335.1447" 42.18 + height="652.49725" 42.19 + id="svg1901" 42.20 + inkscape:version="0.48.3.1 r9886" 42.21 + sodipodi:docname="tastatur.svg"> 42.22 + <metadata 42.23 + id="metadata1771"> 42.24 + <rdf:RDF> 42.25 + <cc:Work 42.26 + rdf:about=""> 42.27 + <dc:format>image/svg+xml</dc:format> 42.28 + <dc:type 42.29 + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 42.30 + </cc:Work> 42.31 + </rdf:RDF> 42.32 + </metadata> 42.33 + <sodipodi:namedview 42.34 + pagecolor="#ffffff" 42.35 + bordercolor="#666666" 42.36 + borderopacity="1" 42.37 + objecttolerance="10" 42.38 + gridtolerance="10" 42.39 + guidetolerance="10" 42.40 + inkscape:pageopacity="0" 42.41 + inkscape:pageshadow="2" 42.42 + inkscape:window-width="608" 42.43 + inkscape:window-height="476" 42.44 + id="namedview1769" 42.45 + showgrid="false" 42.46 + inkscape:snap-grids="true" 42.47 + inkscape:zoom="0.314" 42.48 + inkscape:cx="666.18833" 42.49 + inkscape:cy="266.18357" 42.50 + inkscape:window-x="138" 42.51 + inkscape:window-y="71" 42.52 + inkscape:window-maximized="0" 42.53 + inkscape:current-layer="layer2" 42.54 + fit-margin-top="0" 42.55 + fit-margin-left="0" 42.56 + fit-margin-right="0" 42.57 + fit-margin-bottom="0"> 42.58 + <inkscape:grid 42.59 + type="xygrid" 42.60 + id="grid4583" 42.61 + empspacing="5" 42.62 + visible="true" 42.63 + enabled="true" 42.64 + snapvisiblegridlinesonly="true" 42.65 + originx="-83.81167px" 42.66 + originy="-108.81643px" /> 42.67 + </sodipodi:namedview> 42.68 + <defs 42.69 + id="defs1903"> 42.70 + <linearGradient 42.71 + id="linearGradient7778"> 42.72 + <stop 42.73 + id="stop7780" 42.74 + style="stop-color:#000000;stop-opacity:0" 42.75 + offset="0" /> 42.76 + <stop 42.77 + id="stop7782" 42.78 + style="stop-color:#000000;stop-opacity:0.33620688" 42.79 + offset="1" /> 42.80 + </linearGradient> 42.81 + <linearGradient 42.82 + id="linearGradient7587"> 42.83 + <stop 42.84 + id="stop7589" 42.85 + style="stop-color:#777777;stop-opacity:1" 42.86 + offset="0" /> 42.87 + <stop 42.88 + id="stop7591" 42.89 + style="stop-color:#aeaeae;stop-opacity:1" 42.90 + offset="1" /> 42.91 + </linearGradient> 42.92 + <linearGradient 42.93 + id="linearGradient3296"> 42.94 + <stop 42.95 + id="stop3298" 42.96 + style="stop-color:#d6d6d6;stop-opacity:1" 42.97 + offset="0" /> 42.98 + <stop 42.99 + id="stop3300" 42.100 + style="stop-color:#656565;stop-opacity:1" 42.101 + offset="1" /> 42.102 + </linearGradient> 42.103 + <linearGradient 42.104 + id="linearGradient3276"> 42.105 + <stop 42.106 + id="stop3278" 42.107 + style="stop-color:#d6d6d6;stop-opacity:1" 42.108 + offset="0" /> 42.109 + <stop 42.110 + id="stop3280" 42.111 + style="stop-color:#939393;stop-opacity:1" 42.112 + offset="1" /> 42.113 + </linearGradient> 42.114 + <linearGradient 42.115 + id="linearGradient3262"> 42.116 + <stop 42.117 + id="stop3264" 42.118 + style="stop-color:#656565;stop-opacity:1" 42.119 + offset="0" /> 42.120 + <stop 42.121 + id="stop3266" 42.122 + style="stop-color:#939393;stop-opacity:1" 42.123 + offset="1" /> 42.124 + </linearGradient> 42.125 + <linearGradient 42.126 + id="linearGradient3248"> 42.127 + <stop 42.128 + id="stop3250" 42.129 + style="stop-color:#d8d8d8;stop-opacity:1" 42.130 + offset="0" /> 42.131 + <stop 42.132 + id="stop3252" 42.133 + style="stop-color:#b1b1b1;stop-opacity:1" 42.134 + offset="1" /> 42.135 + </linearGradient> 42.136 + <linearGradient 42.137 + x1="275.72681" 42.138 + y1="571.90552" 42.139 + x2="352.27246" 42.140 + y2="571.90552" 42.141 + id="linearGradient4314" 42.142 + xlink:href="#linearGradient3248" 42.143 + gradientUnits="userSpaceOnUse" 42.144 + gradientTransform="matrix(0.2087115,0,0,0.2080024,253.11063,67.069259)" /> 42.145 + <linearGradient 42.146 + x1="332.91602" 42.147 + y1="520.33307" 42.148 + x2="355.81863" 42.149 + y2="535.99042" 42.150 + id="linearGradient4318" 42.151 + xlink:href="#linearGradient3262" 42.152 + gradientUnits="userSpaceOnUse" 42.153 + gradientTransform="matrix(0.2087115,0,0,0.2080024,226.38064,99.830692)" /> 42.154 + <linearGradient 42.155 + x1="338.63031" 42.156 + y1="522.47595" 42.157 + x2="358.67578" 42.158 + y2="538.1333" 42.159 + id="linearGradient4321" 42.160 + xlink:href="#linearGradient3276" 42.161 + gradientUnits="userSpaceOnUse" 42.162 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,411.26583,99.830692)" /> 42.163 + <linearGradient 42.164 + x1="529.11237" 42.165 + y1="333.99472" 42.166 + x2="526.08197" 42.167 + y2="321.36786" 42.168 + id="linearGradient4325" 42.169 + xlink:href="#linearGradient3296" 42.170 + gradientUnits="userSpaceOnUse" 42.171 + gradientTransform="matrix(0.2087115,0,0,0.2080024,226.38064,99.830692)" /> 42.172 + <linearGradient 42.173 + x1="275.72681" 42.174 + y1="571.90552" 42.175 + x2="352.27246" 42.176 + y2="571.90552" 42.177 + id="linearGradient4341" 42.178 + xlink:href="#linearGradient3248" 42.179 + gradientUnits="userSpaceOnUse" 42.180 + gradientTransform="matrix(0.2087115,0,0,0.2080024,197.29442,67.069259)" /> 42.181 + <linearGradient 42.182 + x1="332.91602" 42.183 + y1="520.33307" 42.184 + x2="355.81863" 42.185 + y2="535.99042" 42.186 + id="linearGradient4345" 42.187 + xlink:href="#linearGradient3262" 42.188 + gradientUnits="userSpaceOnUse" 42.189 + gradientTransform="matrix(0.2087115,0,0,0.2080024,170.56443,99.830692)" /> 42.190 + <linearGradient 42.191 + x1="338.63031" 42.192 + y1="522.47595" 42.193 + x2="358.67578" 42.194 + y2="538.1333" 42.195 + id="linearGradient4348" 42.196 + xlink:href="#linearGradient3276" 42.197 + gradientUnits="userSpaceOnUse" 42.198 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,355.44962,99.830692)" /> 42.199 + <linearGradient 42.200 + x1="529.11237" 42.201 + y1="333.99472" 42.202 + x2="526.08197" 42.203 + y2="321.36786" 42.204 + id="linearGradient4352" 42.205 + xlink:href="#linearGradient3296" 42.206 + gradientUnits="userSpaceOnUse" 42.207 + gradientTransform="matrix(0.2087115,0,0,0.2080024,170.56443,99.830692)" /> 42.208 + <linearGradient 42.209 + x1="275.72681" 42.210 + y1="571.90552" 42.211 + x2="352.27246" 42.212 + y2="571.90552" 42.213 + id="linearGradient4368" 42.214 + xlink:href="#linearGradient3248" 42.215 + gradientUnits="userSpaceOnUse" 42.216 + gradientTransform="matrix(0.2087115,0,0,0.2080024,141.47816,67.069259)" /> 42.217 + <linearGradient 42.218 + x1="332.91602" 42.219 + y1="520.33307" 42.220 + x2="355.81863" 42.221 + y2="535.99042" 42.222 + id="linearGradient4372" 42.223 + xlink:href="#linearGradient3262" 42.224 + gradientUnits="userSpaceOnUse" 42.225 + gradientTransform="matrix(0.2087115,0,0,0.2080024,114.74817,99.830692)" /> 42.226 + <linearGradient 42.227 + x1="338.63031" 42.228 + y1="522.47595" 42.229 + x2="358.67578" 42.230 + y2="538.1333" 42.231 + id="linearGradient4375" 42.232 + xlink:href="#linearGradient3276" 42.233 + gradientUnits="userSpaceOnUse" 42.234 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,299.63336,99.830692)" /> 42.235 + <linearGradient 42.236 + x1="529.11237" 42.237 + y1="333.99472" 42.238 + x2="526.08197" 42.239 + y2="321.36786" 42.240 + id="linearGradient4379" 42.241 + xlink:href="#linearGradient3296" 42.242 + gradientUnits="userSpaceOnUse" 42.243 + gradientTransform="matrix(0.2087115,0,0,0.2080024,114.74817,99.830692)" /> 42.244 + <linearGradient 42.245 + x1="275.72681" 42.246 + y1="571.90552" 42.247 + x2="352.27246" 42.248 + y2="571.90552" 42.249 + id="linearGradient4395" 42.250 + xlink:href="#linearGradient3248" 42.251 + gradientUnits="userSpaceOnUse" 42.252 + gradientTransform="matrix(0.2087115,0,0,0.2080024,85.661916,67.069259)" /> 42.253 + <linearGradient 42.254 + x1="332.91602" 42.255 + y1="520.33307" 42.256 + x2="355.81863" 42.257 + y2="535.99042" 42.258 + id="linearGradient4399" 42.259 + xlink:href="#linearGradient3262" 42.260 + gradientUnits="userSpaceOnUse" 42.261 + gradientTransform="matrix(0.2087115,0,0,0.2080024,58.931929,99.830692)" /> 42.262 + <linearGradient 42.263 + x1="338.63031" 42.264 + y1="522.47595" 42.265 + x2="358.67578" 42.266 + y2="538.1333" 42.267 + id="linearGradient4402" 42.268 + xlink:href="#linearGradient3276" 42.269 + gradientUnits="userSpaceOnUse" 42.270 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,243.81712,99.830692)" /> 42.271 + <linearGradient 42.272 + x1="529.11237" 42.273 + y1="333.99472" 42.274 + x2="526.08197" 42.275 + y2="321.36786" 42.276 + id="linearGradient4406" 42.277 + xlink:href="#linearGradient3296" 42.278 + gradientUnits="userSpaceOnUse" 42.279 + gradientTransform="matrix(0.2087115,0,0,0.2080024,58.931929,99.830692)" /> 42.280 + <linearGradient 42.281 + x1="529.11237" 42.282 + y1="333.99472" 42.283 + x2="526.08197" 42.284 + y2="321.36786" 42.285 + id="linearGradient4518" 42.286 + xlink:href="#linearGradient3296" 42.287 + gradientUnits="userSpaceOnUse" 42.288 + gradientTransform="matrix(0.2087115,0,0,0.2080024,311.78907,99.830692)" /> 42.289 + <linearGradient 42.290 + x1="338.63031" 42.291 + y1="522.47595" 42.292 + x2="358.67578" 42.293 + y2="538.1333" 42.294 + id="linearGradient4520" 42.295 + xlink:href="#linearGradient3276" 42.296 + gradientUnits="userSpaceOnUse" 42.297 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,496.67426,99.830692)" /> 42.298 + <linearGradient 42.299 + x1="332.91602" 42.300 + y1="520.33307" 42.301 + x2="355.81863" 42.302 + y2="535.99042" 42.303 + id="linearGradient4522" 42.304 + xlink:href="#linearGradient3262" 42.305 + gradientUnits="userSpaceOnUse" 42.306 + gradientTransform="matrix(0.2087115,0,0,0.2080024,311.78907,99.830692)" /> 42.307 + <linearGradient 42.308 + x1="275.72681" 42.309 + y1="571.90552" 42.310 + x2="352.27246" 42.311 + y2="571.90552" 42.312 + id="linearGradient4524" 42.313 + xlink:href="#linearGradient3248" 42.314 + gradientUnits="userSpaceOnUse" 42.315 + gradientTransform="matrix(0.2087115,0,0,0.2080024,338.51906,67.069259)" /> 42.316 + <linearGradient 42.317 + x1="529.11237" 42.318 + y1="333.99472" 42.319 + x2="526.08197" 42.320 + y2="321.36786" 42.321 + id="linearGradient4526" 42.322 + xlink:href="#linearGradient3296" 42.323 + gradientUnits="userSpaceOnUse" 42.324 + gradientTransform="matrix(0.2087115,0,0,0.2080024,367.60531,99.830692)" /> 42.325 + <linearGradient 42.326 + x1="338.63031" 42.327 + y1="522.47595" 42.328 + x2="358.67578" 42.329 + y2="538.1333" 42.330 + id="linearGradient4528" 42.331 + xlink:href="#linearGradient3276" 42.332 + gradientUnits="userSpaceOnUse" 42.333 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,552.4905,99.830692)" /> 42.334 + <linearGradient 42.335 + x1="332.91602" 42.336 + y1="520.33307" 42.337 + x2="355.81863" 42.338 + y2="535.99042" 42.339 + id="linearGradient4530" 42.340 + xlink:href="#linearGradient3262" 42.341 + gradientUnits="userSpaceOnUse" 42.342 + gradientTransform="matrix(0.2087115,0,0,0.2080024,367.60531,99.830692)" /> 42.343 + <linearGradient 42.344 + x1="275.72681" 42.345 + y1="571.90552" 42.346 + x2="352.27246" 42.347 + y2="571.90552" 42.348 + id="linearGradient4532" 42.349 + xlink:href="#linearGradient3248" 42.350 + gradientUnits="userSpaceOnUse" 42.351 + gradientTransform="matrix(0.2087115,0,0,0.2080024,394.3353,67.069259)" /> 42.352 + <linearGradient 42.353 + x1="529.11237" 42.354 + y1="333.99472" 42.355 + x2="526.08197" 42.356 + y2="321.36786" 42.357 + id="linearGradient4534" 42.358 + xlink:href="#linearGradient3296" 42.359 + gradientUnits="userSpaceOnUse" 42.360 + gradientTransform="matrix(0.2087115,0,0,0.2080024,423.42157,99.830692)" /> 42.361 + <linearGradient 42.362 + x1="338.63031" 42.363 + y1="522.47595" 42.364 + x2="358.67578" 42.365 + y2="538.1333" 42.366 + id="linearGradient4536" 42.367 + xlink:href="#linearGradient3276" 42.368 + gradientUnits="userSpaceOnUse" 42.369 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,608.30676,99.830692)" /> 42.370 + <linearGradient 42.371 + x1="332.91602" 42.372 + y1="520.33307" 42.373 + x2="355.81863" 42.374 + y2="535.99042" 42.375 + id="linearGradient4538" 42.376 + xlink:href="#linearGradient3262" 42.377 + gradientUnits="userSpaceOnUse" 42.378 + gradientTransform="matrix(0.2087115,0,0,0.2080024,423.42157,99.830692)" /> 42.379 + <linearGradient 42.380 + x1="275.72681" 42.381 + y1="571.90552" 42.382 + x2="352.27246" 42.383 + y2="571.90552" 42.384 + id="linearGradient4540" 42.385 + xlink:href="#linearGradient3248" 42.386 + gradientUnits="userSpaceOnUse" 42.387 + gradientTransform="matrix(0.2087115,0,0,0.2080024,450.15156,67.069259)" /> 42.388 + <linearGradient 42.389 + x1="529.11237" 42.390 + y1="333.99472" 42.391 + x2="526.08197" 42.392 + y2="321.36786" 42.393 + id="linearGradient4542" 42.394 + xlink:href="#linearGradient3296" 42.395 + gradientUnits="userSpaceOnUse" 42.396 + gradientTransform="matrix(0.2087115,0,0,0.2080024,479.23778,99.830692)" /> 42.397 + <linearGradient 42.398 + x1="338.63031" 42.399 + y1="522.47595" 42.400 + x2="358.67578" 42.401 + y2="538.1333" 42.402 + id="linearGradient4544" 42.403 + xlink:href="#linearGradient3276" 42.404 + gradientUnits="userSpaceOnUse" 42.405 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,664.12297,99.830692)" /> 42.406 + <linearGradient 42.407 + x1="332.91602" 42.408 + y1="520.33307" 42.409 + x2="355.81863" 42.410 + y2="535.99042" 42.411 + id="linearGradient4546" 42.412 + xlink:href="#linearGradient3262" 42.413 + gradientUnits="userSpaceOnUse" 42.414 + gradientTransform="matrix(0.2087115,0,0,0.2080024,479.23778,99.830692)" /> 42.415 + <linearGradient 42.416 + x1="275.72681" 42.417 + y1="571.90552" 42.418 + x2="352.27246" 42.419 + y2="571.90552" 42.420 + id="linearGradient4548" 42.421 + xlink:href="#linearGradient3248" 42.422 + gradientUnits="userSpaceOnUse" 42.423 + gradientTransform="matrix(0.2087115,0,0,0.2080024,505.96777,67.069259)" /> 42.424 + <linearGradient 42.425 + x1="529.11237" 42.426 + y1="333.99472" 42.427 + x2="526.08197" 42.428 + y2="321.36786" 42.429 + id="linearGradient4638" 42.430 + xlink:href="#linearGradient3296" 42.431 + gradientUnits="userSpaceOnUse" 42.432 + gradientTransform="matrix(0.2087115,0,0,0.2080024,560.3605,99.830692)" /> 42.433 + <linearGradient 42.434 + x1="338.63031" 42.435 + y1="522.47595" 42.436 + x2="358.67578" 42.437 + y2="538.1333" 42.438 + id="linearGradient4640" 42.439 + xlink:href="#linearGradient3276" 42.440 + gradientUnits="userSpaceOnUse" 42.441 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,745.24569,99.830692)" /> 42.442 + <linearGradient 42.443 + x1="332.91602" 42.444 + y1="520.33307" 42.445 + x2="355.81863" 42.446 + y2="535.99042" 42.447 + id="linearGradient4642" 42.448 + xlink:href="#linearGradient3262" 42.449 + gradientUnits="userSpaceOnUse" 42.450 + gradientTransform="matrix(0.2087115,0,0,0.2080024,560.3605,99.830692)" /> 42.451 + <linearGradient 42.452 + x1="275.72681" 42.453 + y1="571.90552" 42.454 + x2="352.27246" 42.455 + y2="571.90552" 42.456 + id="linearGradient4644" 42.457 + xlink:href="#linearGradient3248" 42.458 + gradientUnits="userSpaceOnUse" 42.459 + gradientTransform="matrix(0.2087115,0,0,0.2080024,587.09049,67.069259)" /> 42.460 + <linearGradient 42.461 + x1="529.11237" 42.462 + y1="333.99472" 42.463 + x2="526.08197" 42.464 + y2="321.36786" 42.465 + id="linearGradient4646" 42.466 + xlink:href="#linearGradient3296" 42.467 + gradientUnits="userSpaceOnUse" 42.468 + gradientTransform="matrix(0.2087115,0,0,0.2080024,616.17674,99.830692)" /> 42.469 + <linearGradient 42.470 + x1="338.63031" 42.471 + y1="522.47595" 42.472 + x2="358.67578" 42.473 + y2="538.1333" 42.474 + id="linearGradient4648" 42.475 + xlink:href="#linearGradient3276" 42.476 + gradientUnits="userSpaceOnUse" 42.477 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,801.06193,99.830692)" /> 42.478 + <linearGradient 42.479 + x1="332.91602" 42.480 + y1="520.33307" 42.481 + x2="355.81863" 42.482 + y2="535.99042" 42.483 + id="linearGradient4650" 42.484 + xlink:href="#linearGradient3262" 42.485 + gradientUnits="userSpaceOnUse" 42.486 + gradientTransform="matrix(0.2087115,0,0,0.2080024,616.17674,99.830692)" /> 42.487 + <linearGradient 42.488 + x1="275.72681" 42.489 + y1="571.90552" 42.490 + x2="352.27246" 42.491 + y2="571.90552" 42.492 + id="linearGradient4652" 42.493 + xlink:href="#linearGradient3248" 42.494 + gradientUnits="userSpaceOnUse" 42.495 + gradientTransform="matrix(0.2087115,0,0,0.2080024,642.90673,67.069259)" /> 42.496 + <linearGradient 42.497 + x1="529.11237" 42.498 + y1="333.99472" 42.499 + x2="526.08197" 42.500 + y2="321.36786" 42.501 + id="linearGradient4654" 42.502 + xlink:href="#linearGradient3296" 42.503 + gradientUnits="userSpaceOnUse" 42.504 + gradientTransform="matrix(0.2087115,0,0,0.2080024,671.993,99.830692)" /> 42.505 + <linearGradient 42.506 + x1="338.63031" 42.507 + y1="522.47595" 42.508 + x2="358.67578" 42.509 + y2="538.1333" 42.510 + id="linearGradient4656" 42.511 + xlink:href="#linearGradient3276" 42.512 + gradientUnits="userSpaceOnUse" 42.513 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,856.87819,99.830692)" /> 42.514 + <linearGradient 42.515 + x1="332.91602" 42.516 + y1="520.33307" 42.517 + x2="355.81863" 42.518 + y2="535.99042" 42.519 + id="linearGradient4658" 42.520 + xlink:href="#linearGradient3262" 42.521 + gradientUnits="userSpaceOnUse" 42.522 + gradientTransform="matrix(0.2087115,0,0,0.2080024,671.993,99.830692)" /> 42.523 + <linearGradient 42.524 + x1="275.72681" 42.525 + y1="571.90552" 42.526 + x2="352.27246" 42.527 + y2="571.90552" 42.528 + id="linearGradient4660" 42.529 + xlink:href="#linearGradient3248" 42.530 + gradientUnits="userSpaceOnUse" 42.531 + gradientTransform="matrix(0.2087115,0,0,0.2080024,698.72299,67.069259)" /> 42.532 + <linearGradient 42.533 + x1="529.11237" 42.534 + y1="333.99472" 42.535 + x2="526.08197" 42.536 + y2="321.36786" 42.537 + id="linearGradient4662" 42.538 + xlink:href="#linearGradient3296" 42.539 + gradientUnits="userSpaceOnUse" 42.540 + gradientTransform="matrix(0.2087115,0,0,0.2080024,727.80921,99.830692)" /> 42.541 + <linearGradient 42.542 + x1="338.63031" 42.543 + y1="522.47595" 42.544 + x2="358.67578" 42.545 + y2="538.1333" 42.546 + id="linearGradient4664" 42.547 + xlink:href="#linearGradient3276" 42.548 + gradientUnits="userSpaceOnUse" 42.549 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,912.6944,99.830692)" /> 42.550 + <linearGradient 42.551 + x1="332.91602" 42.552 + y1="520.33307" 42.553 + x2="355.81863" 42.554 + y2="535.99042" 42.555 + id="linearGradient4666" 42.556 + xlink:href="#linearGradient3262" 42.557 + gradientUnits="userSpaceOnUse" 42.558 + gradientTransform="matrix(0.2087115,0,0,0.2080024,727.80921,99.830692)" /> 42.559 + <linearGradient 42.560 + x1="275.72681" 42.561 + y1="571.90552" 42.562 + x2="352.27246" 42.563 + y2="571.90552" 42.564 + id="linearGradient4668" 42.565 + xlink:href="#linearGradient3248" 42.566 + gradientUnits="userSpaceOnUse" 42.567 + gradientTransform="matrix(0.2087115,0,0,0.2080024,754.5392,67.069259)" /> 42.568 + <linearGradient 42.569 + x1="529.11237" 42.570 + y1="333.99472" 42.571 + x2="526.08197" 42.572 + y2="321.36786" 42.573 + id="linearGradient4692" 42.574 + xlink:href="#linearGradient3296" 42.575 + gradientUnits="userSpaceOnUse" 42.576 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-51.174699,99.830692)" /> 42.577 + <linearGradient 42.578 + x1="338.63031" 42.579 + y1="522.47595" 42.580 + x2="358.67578" 42.581 + y2="538.1333" 42.582 + id="linearGradient4694" 42.583 + xlink:href="#linearGradient3276" 42.584 + gradientUnits="userSpaceOnUse" 42.585 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,133.71049,99.830692)" /> 42.586 + <linearGradient 42.587 + x1="332.91602" 42.588 + y1="520.33307" 42.589 + x2="355.81863" 42.590 + y2="535.99042" 42.591 + id="linearGradient4696" 42.592 + xlink:href="#linearGradient3262" 42.593 + gradientUnits="userSpaceOnUse" 42.594 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-51.174699,99.830692)" /> 42.595 + <linearGradient 42.596 + x1="275.72681" 42.597 + y1="571.90552" 42.598 + x2="352.27246" 42.599 + y2="571.90552" 42.600 + id="linearGradient4698" 42.601 + xlink:href="#linearGradient3248" 42.602 + gradientUnits="userSpaceOnUse" 42.603 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-24.444712,67.069259)" /> 42.604 + <linearGradient 42.605 + x1="529.11237" 42.606 + y1="333.99472" 42.607 + x2="526.08197" 42.608 + y2="321.36786" 42.609 + id="linearGradient4766" 42.610 + xlink:href="#linearGradient3296" 42.611 + gradientUnits="userSpaceOnUse" 42.612 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.74817,99.830692)" /> 42.613 + <linearGradient 42.614 + x1="338.63031" 42.615 + y1="522.47595" 42.616 + x2="358.67578" 42.617 + y2="538.1333" 42.618 + id="linearGradient4768" 42.619 + xlink:href="#linearGradient3276" 42.620 + gradientUnits="userSpaceOnUse" 42.621 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,979.63336,99.830692)" /> 42.622 + <linearGradient 42.623 + x1="332.91602" 42.624 + y1="520.33307" 42.625 + x2="355.81863" 42.626 + y2="535.99042" 42.627 + id="linearGradient4770" 42.628 + xlink:href="#linearGradient3262" 42.629 + gradientUnits="userSpaceOnUse" 42.630 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.74817,99.830692)" /> 42.631 + <linearGradient 42.632 + x1="275.72681" 42.633 + y1="571.90552" 42.634 + x2="352.27246" 42.635 + y2="571.90552" 42.636 + id="linearGradient4772" 42.637 + xlink:href="#linearGradient3248" 42.638 + gradientUnits="userSpaceOnUse" 42.639 + gradientTransform="matrix(0.2087115,0,0,0.2080024,821.47816,67.069259)" /> 42.640 + <linearGradient 42.641 + x1="529.11237" 42.642 + y1="333.99472" 42.643 + x2="526.08197" 42.644 + y2="321.36786" 42.645 + id="linearGradient4774" 42.646 + xlink:href="#linearGradient3296" 42.647 + gradientUnits="userSpaceOnUse" 42.648 + gradientTransform="matrix(0.2087115,0,0,0.2080024,850.56443,99.830692)" /> 42.649 + <linearGradient 42.650 + x1="338.63031" 42.651 + y1="522.47595" 42.652 + x2="358.67578" 42.653 + y2="538.1333" 42.654 + id="linearGradient4776" 42.655 + xlink:href="#linearGradient3276" 42.656 + gradientUnits="userSpaceOnUse" 42.657 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1035.4496,99.830692)" /> 42.658 + <linearGradient 42.659 + x1="332.91602" 42.660 + y1="520.33307" 42.661 + x2="355.81863" 42.662 + y2="535.99042" 42.663 + id="linearGradient4778" 42.664 + xlink:href="#linearGradient3262" 42.665 + gradientUnits="userSpaceOnUse" 42.666 + gradientTransform="matrix(0.2087115,0,0,0.2080024,850.56443,99.830692)" /> 42.667 + <linearGradient 42.668 + x1="275.72681" 42.669 + y1="571.90552" 42.670 + x2="352.27246" 42.671 + y2="571.90552" 42.672 + id="linearGradient4780" 42.673 + xlink:href="#linearGradient3248" 42.674 + gradientUnits="userSpaceOnUse" 42.675 + gradientTransform="matrix(0.2087115,0,0,0.2080024,877.29442,67.069259)" /> 42.676 + <linearGradient 42.677 + x1="529.11237" 42.678 + y1="333.99472" 42.679 + x2="526.08197" 42.680 + y2="321.36786" 42.681 + id="linearGradient4782" 42.682 + xlink:href="#linearGradient3296" 42.683 + gradientUnits="userSpaceOnUse" 42.684 + gradientTransform="matrix(0.2087115,0,0,0.2080024,906.38064,99.830692)" /> 42.685 + <linearGradient 42.686 + x1="338.63031" 42.687 + y1="522.47595" 42.688 + x2="358.67578" 42.689 + y2="538.1333" 42.690 + id="linearGradient4784" 42.691 + xlink:href="#linearGradient3276" 42.692 + gradientUnits="userSpaceOnUse" 42.693 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1091.2658,99.830692)" /> 42.694 + <linearGradient 42.695 + x1="332.91602" 42.696 + y1="520.33307" 42.697 + x2="355.81863" 42.698 + y2="535.99042" 42.699 + id="linearGradient4786" 42.700 + xlink:href="#linearGradient3262" 42.701 + gradientUnits="userSpaceOnUse" 42.702 + gradientTransform="matrix(0.2087115,0,0,0.2080024,906.38064,99.830692)" /> 42.703 + <linearGradient 42.704 + x1="275.72681" 42.705 + y1="571.90552" 42.706 + x2="352.27246" 42.707 + y2="571.90552" 42.708 + id="linearGradient4788" 42.709 + xlink:href="#linearGradient3248" 42.710 + gradientUnits="userSpaceOnUse" 42.711 + gradientTransform="matrix(0.2087115,0,0,0.2080024,933.11063,67.069259)" /> 42.712 + <linearGradient 42.713 + x1="275.72681" 42.714 + y1="571.90552" 42.715 + x2="352.27246" 42.716 + y2="571.90552" 42.717 + id="linearGradient5263" 42.718 + xlink:href="#linearGradient3248" 42.719 + gradientUnits="userSpaceOnUse" 42.720 + gradientTransform="matrix(0.2087115,0,0,0.2080024,932.39634,189.9264)" /> 42.721 + <linearGradient 42.722 + x1="332.91602" 42.723 + y1="520.33307" 42.724 + x2="355.81863" 42.725 + y2="535.99042" 42.726 + id="linearGradient5267" 42.727 + xlink:href="#linearGradient3262" 42.728 + gradientUnits="userSpaceOnUse" 42.729 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,222.68784)" /> 42.730 + <linearGradient 42.731 + x1="338.63031" 42.732 + y1="522.47595" 42.733 + x2="358.67578" 42.734 + y2="538.1333" 42.735 + id="linearGradient5270" 42.736 + xlink:href="#linearGradient3276" 42.737 + gradientUnits="userSpaceOnUse" 42.738 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1090.5515,222.68784)" /> 42.739 + <linearGradient 42.740 + x1="529.11237" 42.741 + y1="333.99472" 42.742 + x2="526.08197" 42.743 + y2="321.36786" 42.744 + id="linearGradient5274" 42.745 + xlink:href="#linearGradient3296" 42.746 + gradientUnits="userSpaceOnUse" 42.747 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,222.68784)" /> 42.748 + <linearGradient 42.749 + x1="275.72681" 42.750 + y1="571.90552" 42.751 + x2="352.27246" 42.752 + y2="571.90552" 42.753 + id="linearGradient5282" 42.754 + xlink:href="#linearGradient3248" 42.755 + gradientUnits="userSpaceOnUse" 42.756 + gradientTransform="matrix(0.2087115,0,0,0.2080024,876.58013,189.9264)" /> 42.757 + <linearGradient 42.758 + x1="332.91602" 42.759 + y1="520.33307" 42.760 + x2="355.81863" 42.761 + y2="535.99042" 42.762 + id="linearGradient5286" 42.763 + xlink:href="#linearGradient3262" 42.764 + gradientUnits="userSpaceOnUse" 42.765 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,222.68784)" /> 42.766 + <linearGradient 42.767 + x1="338.63031" 42.768 + y1="522.47595" 42.769 + x2="358.67578" 42.770 + y2="538.1333" 42.771 + id="linearGradient5289" 42.772 + xlink:href="#linearGradient3276" 42.773 + gradientUnits="userSpaceOnUse" 42.774 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1034.7353,222.68784)" /> 42.775 + <linearGradient 42.776 + x1="529.11237" 42.777 + y1="333.99472" 42.778 + x2="526.08197" 42.779 + y2="321.36786" 42.780 + id="linearGradient5293" 42.781 + xlink:href="#linearGradient3296" 42.782 + gradientUnits="userSpaceOnUse" 42.783 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,222.68784)" /> 42.784 + <linearGradient 42.785 + x1="275.72681" 42.786 + y1="571.90552" 42.787 + x2="352.27246" 42.788 + y2="571.90552" 42.789 + id="linearGradient5301" 42.790 + xlink:href="#linearGradient3248" 42.791 + gradientUnits="userSpaceOnUse" 42.792 + gradientTransform="matrix(0.2087115,0,0,0.2080024,820.76387,189.9264)" /> 42.793 + <linearGradient 42.794 + x1="332.91602" 42.795 + y1="520.33307" 42.796 + x2="355.81863" 42.797 + y2="535.99042" 42.798 + id="linearGradient5305" 42.799 + xlink:href="#linearGradient3262" 42.800 + gradientUnits="userSpaceOnUse" 42.801 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,222.68784)" /> 42.802 + <linearGradient 42.803 + x1="338.63031" 42.804 + y1="522.47595" 42.805 + x2="358.67578" 42.806 + y2="538.1333" 42.807 + id="linearGradient5308" 42.808 + xlink:href="#linearGradient3276" 42.809 + gradientUnits="userSpaceOnUse" 42.810 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,978.91907,222.68784)" /> 42.811 + <linearGradient 42.812 + x1="529.11237" 42.813 + y1="333.99472" 42.814 + x2="526.08197" 42.815 + y2="321.36786" 42.816 + id="linearGradient5312" 42.817 + xlink:href="#linearGradient3296" 42.818 + gradientUnits="userSpaceOnUse" 42.819 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,222.68784)" /> 42.820 + <linearGradient 42.821 + x1="275.72681" 42.822 + y1="571.90552" 42.823 + x2="352.27246" 42.824 + y2="571.90552" 42.825 + id="linearGradient5321" 42.826 + xlink:href="#linearGradient3248" 42.827 + gradientUnits="userSpaceOnUse" 42.828 + gradientTransform="matrix(0.2087115,0,0,0.2080024,932.39634,134.21211)" /> 42.829 + <linearGradient 42.830 + x1="332.91602" 42.831 + y1="520.33307" 42.832 + x2="355.81863" 42.833 + y2="535.99042" 42.834 + id="linearGradient5325" 42.835 + xlink:href="#linearGradient3262" 42.836 + gradientUnits="userSpaceOnUse" 42.837 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,166.97355)" /> 42.838 + <linearGradient 42.839 + x1="338.63031" 42.840 + y1="522.47595" 42.841 + x2="358.67578" 42.842 + y2="538.1333" 42.843 + id="linearGradient5328" 42.844 + xlink:href="#linearGradient3276" 42.845 + gradientUnits="userSpaceOnUse" 42.846 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1090.5515,166.97355)" /> 42.847 + <linearGradient 42.848 + x1="529.11237" 42.849 + y1="333.99472" 42.850 + x2="526.08197" 42.851 + y2="321.36786" 42.852 + id="linearGradient5332" 42.853 + xlink:href="#linearGradient3296" 42.854 + gradientUnits="userSpaceOnUse" 42.855 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,166.97355)" /> 42.856 + <linearGradient 42.857 + x1="275.72681" 42.858 + y1="571.90552" 42.859 + x2="352.27246" 42.860 + y2="571.90552" 42.861 + id="linearGradient5340" 42.862 + xlink:href="#linearGradient3248" 42.863 + gradientUnits="userSpaceOnUse" 42.864 + gradientTransform="matrix(0.2087115,0,0,0.2080024,876.58013,134.21211)" /> 42.865 + <linearGradient 42.866 + x1="332.91602" 42.867 + y1="520.33307" 42.868 + x2="355.81863" 42.869 + y2="535.99042" 42.870 + id="linearGradient5344" 42.871 + xlink:href="#linearGradient3262" 42.872 + gradientUnits="userSpaceOnUse" 42.873 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,166.97355)" /> 42.874 + <linearGradient 42.875 + x1="338.63031" 42.876 + y1="522.47595" 42.877 + x2="358.67578" 42.878 + y2="538.1333" 42.879 + id="linearGradient5347" 42.880 + xlink:href="#linearGradient3276" 42.881 + gradientUnits="userSpaceOnUse" 42.882 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1034.7353,166.97355)" /> 42.883 + <linearGradient 42.884 + x1="529.11237" 42.885 + y1="333.99472" 42.886 + x2="526.08197" 42.887 + y2="321.36786" 42.888 + id="linearGradient5351" 42.889 + xlink:href="#linearGradient3296" 42.890 + gradientUnits="userSpaceOnUse" 42.891 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,166.97355)" /> 42.892 + <linearGradient 42.893 + x1="275.72681" 42.894 + y1="571.90552" 42.895 + x2="352.27246" 42.896 + y2="571.90552" 42.897 + id="linearGradient5359" 42.898 + xlink:href="#linearGradient3248" 42.899 + gradientUnits="userSpaceOnUse" 42.900 + gradientTransform="matrix(0.2087115,0,0,0.2080024,820.76387,134.21211)" /> 42.901 + <linearGradient 42.902 + x1="332.91602" 42.903 + y1="520.33307" 42.904 + x2="355.81863" 42.905 + y2="535.99042" 42.906 + id="linearGradient5363" 42.907 + xlink:href="#linearGradient3262" 42.908 + gradientUnits="userSpaceOnUse" 42.909 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,166.97355)" /> 42.910 + <linearGradient 42.911 + x1="338.63031" 42.912 + y1="522.47595" 42.913 + x2="358.67578" 42.914 + y2="538.1333" 42.915 + id="linearGradient5366" 42.916 + xlink:href="#linearGradient3276" 42.917 + gradientUnits="userSpaceOnUse" 42.918 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,978.91907,166.97355)" /> 42.919 + <linearGradient 42.920 + x1="529.11237" 42.921 + y1="333.99472" 42.922 + x2="526.08197" 42.923 + y2="321.36786" 42.924 + id="linearGradient5370" 42.925 + xlink:href="#linearGradient3296" 42.926 + gradientUnits="userSpaceOnUse" 42.927 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,166.97355)" /> 42.928 + <linearGradient 42.929 + x1="529.11237" 42.930 + y1="333.99472" 42.931 + x2="526.08197" 42.932 + y2="321.36786" 42.933 + id="linearGradient5442" 42.934 + xlink:href="#linearGradient3296" 42.935 + gradientUnits="userSpaceOnUse" 42.936 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,390.54498)" /> 42.937 + <linearGradient 42.938 + x1="338.63031" 42.939 + y1="522.47595" 42.940 + x2="358.67578" 42.941 + y2="538.1333" 42.942 + id="linearGradient5444" 42.943 + xlink:href="#linearGradient3276" 42.944 + gradientUnits="userSpaceOnUse" 42.945 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,978.91907,390.54498)" /> 42.946 + <linearGradient 42.947 + x1="332.91602" 42.948 + y1="520.33307" 42.949 + x2="355.81863" 42.950 + y2="535.99042" 42.951 + id="linearGradient5446" 42.952 + xlink:href="#linearGradient3262" 42.953 + gradientUnits="userSpaceOnUse" 42.954 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,390.54498)" /> 42.955 + <linearGradient 42.956 + x1="275.72681" 42.957 + y1="571.90552" 42.958 + x2="352.27246" 42.959 + y2="571.90552" 42.960 + id="linearGradient5448" 42.961 + xlink:href="#linearGradient3248" 42.962 + gradientUnits="userSpaceOnUse" 42.963 + gradientTransform="matrix(0.2087115,0,0,0.2080024,820.76387,357.78354)" /> 42.964 + <linearGradient 42.965 + x1="529.11237" 42.966 + y1="333.99472" 42.967 + x2="526.08197" 42.968 + y2="321.36786" 42.969 + id="linearGradient5450" 42.970 + xlink:href="#linearGradient3296" 42.971 + gradientUnits="userSpaceOnUse" 42.972 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,390.54498)" /> 42.973 + <linearGradient 42.974 + x1="338.63031" 42.975 + y1="522.47595" 42.976 + x2="358.67578" 42.977 + y2="538.1333" 42.978 + id="linearGradient5452" 42.979 + xlink:href="#linearGradient3276" 42.980 + gradientUnits="userSpaceOnUse" 42.981 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1034.7353,390.54498)" /> 42.982 + <linearGradient 42.983 + x1="332.91602" 42.984 + y1="520.33307" 42.985 + x2="355.81863" 42.986 + y2="535.99042" 42.987 + id="linearGradient5454" 42.988 + xlink:href="#linearGradient3262" 42.989 + gradientUnits="userSpaceOnUse" 42.990 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,390.54498)" /> 42.991 + <linearGradient 42.992 + x1="275.72681" 42.993 + y1="571.90552" 42.994 + x2="352.27246" 42.995 + y2="571.90552" 42.996 + id="linearGradient5456" 42.997 + xlink:href="#linearGradient3248" 42.998 + gradientUnits="userSpaceOnUse" 42.999 + gradientTransform="matrix(0.2087115,0,0,0.2080024,876.58013,357.78354)" /> 42.1000 + <linearGradient 42.1001 + x1="529.11237" 42.1002 + y1="333.99472" 42.1003 + x2="526.08197" 42.1004 + y2="321.36786" 42.1005 + id="linearGradient5458" 42.1006 + xlink:href="#linearGradient3296" 42.1007 + gradientUnits="userSpaceOnUse" 42.1008 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,390.54498)" /> 42.1009 + <linearGradient 42.1010 + x1="338.63031" 42.1011 + y1="522.47595" 42.1012 + x2="358.67578" 42.1013 + y2="538.1333" 42.1014 + id="linearGradient5460" 42.1015 + xlink:href="#linearGradient3276" 42.1016 + gradientUnits="userSpaceOnUse" 42.1017 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1090.5515,390.54498)" /> 42.1018 + <linearGradient 42.1019 + x1="332.91602" 42.1020 + y1="520.33307" 42.1021 + x2="355.81863" 42.1022 + y2="535.99042" 42.1023 + id="linearGradient5462" 42.1024 + xlink:href="#linearGradient3262" 42.1025 + gradientUnits="userSpaceOnUse" 42.1026 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,390.54498)" /> 42.1027 + <linearGradient 42.1028 + x1="275.72681" 42.1029 + y1="571.90552" 42.1030 + x2="352.27246" 42.1031 + y2="571.90552" 42.1032 + id="linearGradient5464" 42.1033 + xlink:href="#linearGradient3248" 42.1034 + gradientUnits="userSpaceOnUse" 42.1035 + gradientTransform="matrix(0.2087115,0,0,0.2080024,932.39634,357.78354)" /> 42.1036 + <linearGradient 42.1037 + x1="529.11237" 42.1038 + y1="333.99472" 42.1039 + x2="526.08197" 42.1040 + y2="321.36786" 42.1041 + id="linearGradient5542" 42.1042 + xlink:href="#linearGradient3296" 42.1043 + gradientUnits="userSpaceOnUse" 42.1044 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,333.40212)" /> 42.1045 + <linearGradient 42.1046 + x1="338.63031" 42.1047 + y1="522.47595" 42.1048 + x2="358.67578" 42.1049 + y2="538.1333" 42.1050 + id="linearGradient5544" 42.1051 + xlink:href="#linearGradient3276" 42.1052 + gradientUnits="userSpaceOnUse" 42.1053 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1034.7353,333.40212)" /> 42.1054 + <linearGradient 42.1055 + x1="332.91602" 42.1056 + y1="520.33307" 42.1057 + x2="355.81863" 42.1058 + y2="535.99042" 42.1059 + id="linearGradient5546" 42.1060 + xlink:href="#linearGradient3262" 42.1061 + gradientUnits="userSpaceOnUse" 42.1062 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,333.40212)" /> 42.1063 + <linearGradient 42.1064 + x1="275.72681" 42.1065 + y1="571.90552" 42.1066 + x2="352.27246" 42.1067 + y2="571.90552" 42.1068 + id="linearGradient5548" 42.1069 + xlink:href="#linearGradient3248" 42.1070 + gradientUnits="userSpaceOnUse" 42.1071 + gradientTransform="matrix(0.2087115,0,0,0.2080024,876.58013,300.64068)" /> 42.1072 + <linearGradient 42.1073 + x1="275.72681" 42.1074 + y1="571.90552" 42.1075 + x2="352.27246" 42.1076 + y2="571.90552" 42.1077 + id="linearGradient6937" 42.1078 + xlink:href="#linearGradient3248" 42.1079 + gradientUnits="userSpaceOnUse" 42.1080 + gradientTransform="matrix(0.2087115,0,0,0.2080024,29.941587,134.21211)" /> 42.1081 + <linearGradient 42.1082 + x1="332.91602" 42.1083 + y1="520.33307" 42.1084 + x2="355.81863" 42.1085 + y2="535.99042" 42.1086 + id="linearGradient6941" 42.1087 + xlink:href="#linearGradient3262" 42.1088 + gradientUnits="userSpaceOnUse" 42.1089 + gradientTransform="matrix(0.2087115,0,0,0.2080024,3.2115965,166.97355)" /> 42.1090 + <linearGradient 42.1091 + x1="338.63031" 42.1092 + y1="522.47595" 42.1093 + x2="358.67578" 42.1094 + y2="538.1333" 42.1095 + id="linearGradient6944" 42.1096 + xlink:href="#linearGradient3276" 42.1097 + gradientUnits="userSpaceOnUse" 42.1098 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,188.09676,166.97355)" /> 42.1099 + <linearGradient 42.1100 + x1="529.11237" 42.1101 + y1="333.99472" 42.1102 + x2="526.08197" 42.1103 + y2="321.36786" 42.1104 + id="linearGradient6948" 42.1105 + xlink:href="#linearGradient3296" 42.1106 + gradientUnits="userSpaceOnUse" 42.1107 + gradientTransform="matrix(0.2087115,0,0,0.2080024,3.2115965,166.97355)" /> 42.1108 + <linearGradient 42.1109 + x1="275.72681" 42.1110 + y1="571.90552" 42.1111 + x2="352.27246" 42.1112 + y2="571.90552" 42.1113 + id="linearGradient6959" 42.1114 + xlink:href="#linearGradient3248" 42.1115 + gradientUnits="userSpaceOnUse" 42.1116 + gradientTransform="matrix(0.2087115,0,0,0.2080024,85.62717,134.21211)" /> 42.1117 + <linearGradient 42.1118 + x1="332.91602" 42.1119 + y1="520.33307" 42.1120 + x2="355.81863" 42.1121 + y2="535.99042" 42.1122 + id="linearGradient6963" 42.1123 + xlink:href="#linearGradient3262" 42.1124 + gradientUnits="userSpaceOnUse" 42.1125 + gradientTransform="matrix(0.2087115,0,0,0.2080024,58.89718,166.97355)" /> 42.1126 + <linearGradient 42.1127 + x1="338.63031" 42.1128 + y1="522.47595" 42.1129 + x2="358.67578" 42.1130 + y2="538.1333" 42.1131 + id="linearGradient6966" 42.1132 + xlink:href="#linearGradient3276" 42.1133 + gradientUnits="userSpaceOnUse" 42.1134 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,243.78233,166.97355)" /> 42.1135 + <linearGradient 42.1136 + x1="529.11237" 42.1137 + y1="333.99472" 42.1138 + x2="526.08197" 42.1139 + y2="321.36786" 42.1140 + id="linearGradient6970" 42.1141 + xlink:href="#linearGradient3296" 42.1142 + gradientUnits="userSpaceOnUse" 42.1143 + gradientTransform="matrix(0.2087115,0,0,0.2080024,58.89718,166.97355)" /> 42.1144 + <linearGradient 42.1145 + x1="529.11237" 42.1146 + y1="333.99472" 42.1147 + x2="526.08197" 42.1148 + y2="321.36786" 42.1149 + id="linearGradient3413" 42.1150 + xlink:href="#linearGradient3296" 42.1151 + gradientUnits="userSpaceOnUse" 42.1152 + gradientTransform="matrix(0.2087115,0,0,0.2080024,33.211596,222.53194)" /> 42.1153 + <linearGradient 42.1154 + x1="338.63031" 42.1155 + y1="522.47595" 42.1156 + x2="358.67578" 42.1157 + y2="538.1333" 42.1158 + id="linearGradient3415" 42.1159 + xlink:href="#linearGradient3276" 42.1160 + gradientUnits="userSpaceOnUse" 42.1161 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,218.09676,222.53194)" /> 42.1162 + <linearGradient 42.1163 + x1="332.91602" 42.1164 + y1="520.33307" 42.1165 + x2="355.81863" 42.1166 + y2="535.99042" 42.1167 + id="linearGradient3417" 42.1168 + xlink:href="#linearGradient3262" 42.1169 + gradientUnits="userSpaceOnUse" 42.1170 + gradientTransform="matrix(0.2087115,0,0,0.2080024,33.211596,222.53194)" /> 42.1171 + <linearGradient 42.1172 + x1="275.72681" 42.1173 + y1="571.90552" 42.1174 + x2="352.27246" 42.1175 + y2="571.90552" 42.1176 + id="linearGradient3419" 42.1177 + xlink:href="#linearGradient3248" 42.1178 + gradientUnits="userSpaceOnUse" 42.1179 + gradientTransform="matrix(0.2087115,0,0,0.2080024,59.941587,189.7705)" /> 42.1180 + <linearGradient 42.1181 + x1="529.11237" 42.1182 + y1="333.99472" 42.1183 + x2="526.08197" 42.1184 + y2="321.36786" 42.1185 + id="linearGradient3421" 42.1186 + xlink:href="#linearGradient3296" 42.1187 + gradientUnits="userSpaceOnUse" 42.1188 + gradientTransform="matrix(0.2087115,0,0,0.2080024,88.89718,222.53194)" /> 42.1189 + <linearGradient 42.1190 + x1="338.63031" 42.1191 + y1="522.47595" 42.1192 + x2="358.67578" 42.1193 + y2="538.1333" 42.1194 + id="linearGradient3423" 42.1195 + xlink:href="#linearGradient3276" 42.1196 + gradientUnits="userSpaceOnUse" 42.1197 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,273.78233,222.53194)" /> 42.1198 + <linearGradient 42.1199 + x1="332.91602" 42.1200 + y1="520.33307" 42.1201 + x2="355.81863" 42.1202 + y2="535.99042" 42.1203 + id="linearGradient3425" 42.1204 + xlink:href="#linearGradient3262" 42.1205 + gradientUnits="userSpaceOnUse" 42.1206 + gradientTransform="matrix(0.2087115,0,0,0.2080024,88.89718,222.53194)" /> 42.1207 + <linearGradient 42.1208 + x1="275.72681" 42.1209 + y1="571.90552" 42.1210 + x2="352.27246" 42.1211 + y2="571.90552" 42.1212 + id="linearGradient3427" 42.1213 + xlink:href="#linearGradient3248" 42.1214 + gradientUnits="userSpaceOnUse" 42.1215 + gradientTransform="matrix(0.2087115,0,0,0.2080024,115.62717,189.7705)" /> 42.1216 + <linearGradient 42.1217 + x1="275.72681" 42.1218 + y1="571.90552" 42.1219 + x2="352.27246" 42.1220 + y2="571.90552" 42.1221 + id="linearGradient3513" 42.1222 + xlink:href="#linearGradient3248" 42.1223 + gradientUnits="userSpaceOnUse" 42.1224 + gradientTransform="matrix(0.2087115,0,0,0.2080024,672.48252,189.7705)" /> 42.1225 + <linearGradient 42.1226 + x1="332.91602" 42.1227 + y1="520.33307" 42.1228 + x2="355.81863" 42.1229 + y2="535.99042" 42.1230 + id="linearGradient3517" 42.1231 + xlink:href="#linearGradient3262" 42.1232 + gradientUnits="userSpaceOnUse" 42.1233 + gradientTransform="matrix(0.2087115,0,0,0.2080024,645.75253,222.53194)" /> 42.1234 + <linearGradient 42.1235 + x1="338.63031" 42.1236 + y1="522.47595" 42.1237 + x2="358.67578" 42.1238 + y2="538.1333" 42.1239 + id="linearGradient3520" 42.1240 + xlink:href="#linearGradient3276" 42.1241 + gradientUnits="userSpaceOnUse" 42.1242 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,830.63768,222.53194)" /> 42.1243 + <linearGradient 42.1244 + x1="529.11237" 42.1245 + y1="333.99472" 42.1246 + x2="526.08197" 42.1247 + y2="321.36786" 42.1248 + id="linearGradient3524" 42.1249 + xlink:href="#linearGradient3296" 42.1250 + gradientUnits="userSpaceOnUse" 42.1251 + gradientTransform="matrix(0.2087115,0,0,0.2080024,645.75253,222.53194)" /> 42.1252 + <linearGradient 42.1253 + x1="275.72681" 42.1254 + y1="571.90552" 42.1255 + x2="352.27246" 42.1256 + y2="571.90552" 42.1257 + id="linearGradient3532" 42.1258 + xlink:href="#linearGradient3248" 42.1259 + gradientUnits="userSpaceOnUse" 42.1260 + gradientTransform="matrix(0.2087115,0,0,0.2080024,616.797,189.7705)" /> 42.1261 + <linearGradient 42.1262 + x1="332.91602" 42.1263 + y1="520.33307" 42.1264 + x2="355.81863" 42.1265 + y2="535.99042" 42.1266 + id="linearGradient3536" 42.1267 + xlink:href="#linearGradient3262" 42.1268 + gradientUnits="userSpaceOnUse" 42.1269 + gradientTransform="matrix(0.2087115,0,0,0.2080024,590.06701,222.53194)" /> 42.1270 + <linearGradient 42.1271 + x1="338.63031" 42.1272 + y1="522.47595" 42.1273 + x2="358.67578" 42.1274 + y2="538.1333" 42.1275 + id="linearGradient3539" 42.1276 + xlink:href="#linearGradient3276" 42.1277 + gradientUnits="userSpaceOnUse" 42.1278 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,774.95216,222.53194)" /> 42.1279 + <linearGradient 42.1280 + x1="529.11237" 42.1281 + y1="333.99472" 42.1282 + x2="526.08197" 42.1283 + y2="321.36786" 42.1284 + id="linearGradient3543" 42.1285 + xlink:href="#linearGradient3296" 42.1286 + gradientUnits="userSpaceOnUse" 42.1287 + gradientTransform="matrix(0.2087115,0,0,0.2080024,590.06701,222.53194)" /> 42.1288 + <linearGradient 42.1289 + x1="275.72681" 42.1290 + y1="571.90552" 42.1291 + x2="352.27246" 42.1292 + y2="571.90552" 42.1293 + id="linearGradient3551" 42.1294 + xlink:href="#linearGradient3248" 42.1295 + gradientUnits="userSpaceOnUse" 42.1296 + gradientTransform="matrix(0.2087115,0,0,0.2080024,561.11147,189.7705)" /> 42.1297 + <linearGradient 42.1298 + x1="332.91602" 42.1299 + y1="520.33307" 42.1300 + x2="355.81863" 42.1301 + y2="535.99042" 42.1302 + id="linearGradient3555" 42.1303 + xlink:href="#linearGradient3262" 42.1304 + gradientUnits="userSpaceOnUse" 42.1305 + gradientTransform="matrix(0.2087115,0,0,0.2080024,534.38148,222.53194)" /> 42.1306 + <linearGradient 42.1307 + x1="338.63031" 42.1308 + y1="522.47595" 42.1309 + x2="358.67578" 42.1310 + y2="538.1333" 42.1311 + id="linearGradient3558" 42.1312 + xlink:href="#linearGradient3276" 42.1313 + gradientUnits="userSpaceOnUse" 42.1314 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,719.26663,222.53194)" /> 42.1315 + <linearGradient 42.1316 + x1="529.11237" 42.1317 + y1="333.99472" 42.1318 + x2="526.08197" 42.1319 + y2="321.36786" 42.1320 + id="linearGradient3562" 42.1321 + xlink:href="#linearGradient3296" 42.1322 + gradientUnits="userSpaceOnUse" 42.1323 + gradientTransform="matrix(0.2087115,0,0,0.2080024,534.38148,222.53194)" /> 42.1324 + <linearGradient 42.1325 + x1="275.72681" 42.1326 + y1="571.90552" 42.1327 + x2="352.27246" 42.1328 + y2="571.90552" 42.1329 + id="linearGradient3570" 42.1330 + xlink:href="#linearGradient3248" 42.1331 + gradientUnits="userSpaceOnUse" 42.1332 + gradientTransform="matrix(0.2087115,0,0,0.2080024,505.42591,189.7705)" /> 42.1333 + <linearGradient 42.1334 + x1="332.91602" 42.1335 + y1="520.33307" 42.1336 + x2="355.81863" 42.1337 + y2="535.99042" 42.1338 + id="linearGradient3574" 42.1339 + xlink:href="#linearGradient3262" 42.1340 + gradientUnits="userSpaceOnUse" 42.1341 + gradientTransform="matrix(0.2087115,0,0,0.2080024,478.69592,222.53194)" /> 42.1342 + <linearGradient 42.1343 + x1="338.63031" 42.1344 + y1="522.47595" 42.1345 + x2="358.67578" 42.1346 + y2="538.1333" 42.1347 + id="linearGradient3577" 42.1348 + xlink:href="#linearGradient3276" 42.1349 + gradientUnits="userSpaceOnUse" 42.1350 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,663.58107,222.53194)" /> 42.1351 + <linearGradient 42.1352 + x1="529.11237" 42.1353 + y1="333.99472" 42.1354 + x2="526.08197" 42.1355 + y2="321.36786" 42.1356 + id="linearGradient3581" 42.1357 + xlink:href="#linearGradient3296" 42.1358 + gradientUnits="userSpaceOnUse" 42.1359 + gradientTransform="matrix(0.2087115,0,0,0.2080024,478.69592,222.53194)" /> 42.1360 + <linearGradient 42.1361 + x1="275.72681" 42.1362 + y1="571.90552" 42.1363 + x2="352.27246" 42.1364 + y2="571.90552" 42.1365 + id="linearGradient3589" 42.1366 + xlink:href="#linearGradient3248" 42.1367 + gradientUnits="userSpaceOnUse" 42.1368 + gradientTransform="matrix(0.2087115,0,0,0.2080024,449.74037,189.7705)" /> 42.1369 + <linearGradient 42.1370 + x1="332.91602" 42.1371 + y1="520.33307" 42.1372 + x2="355.81863" 42.1373 + y2="535.99042" 42.1374 + id="linearGradient3593" 42.1375 + xlink:href="#linearGradient3262" 42.1376 + gradientUnits="userSpaceOnUse" 42.1377 + gradientTransform="matrix(0.2087115,0,0,0.2080024,423.01038,222.53194)" /> 42.1378 + <linearGradient 42.1379 + x1="338.63031" 42.1380 + y1="522.47595" 42.1381 + x2="358.67578" 42.1382 + y2="538.1333" 42.1383 + id="linearGradient3596" 42.1384 + xlink:href="#linearGradient3276" 42.1385 + gradientUnits="userSpaceOnUse" 42.1386 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,607.89553,222.53194)" /> 42.1387 + <linearGradient 42.1388 + x1="529.11237" 42.1389 + y1="333.99472" 42.1390 + x2="526.08197" 42.1391 + y2="321.36786" 42.1392 + id="linearGradient3600" 42.1393 + xlink:href="#linearGradient3296" 42.1394 + gradientUnits="userSpaceOnUse" 42.1395 + gradientTransform="matrix(0.2087115,0,0,0.2080024,423.01038,222.53194)" /> 42.1396 + <linearGradient 42.1397 + x1="275.72681" 42.1398 + y1="571.90552" 42.1399 + x2="352.27246" 42.1400 + y2="571.90552" 42.1401 + id="linearGradient3608" 42.1402 + xlink:href="#linearGradient3248" 42.1403 + gradientUnits="userSpaceOnUse" 42.1404 + gradientTransform="matrix(0.2087115,0,0,0.2080024,394.05485,189.7705)" /> 42.1405 + <linearGradient 42.1406 + x1="332.91602" 42.1407 + y1="520.33307" 42.1408 + x2="355.81863" 42.1409 + y2="535.99042" 42.1410 + id="linearGradient3612" 42.1411 + xlink:href="#linearGradient3262" 42.1412 + gradientUnits="userSpaceOnUse" 42.1413 + gradientTransform="matrix(0.2087115,0,0,0.2080024,367.32486,222.53194)" /> 42.1414 + <linearGradient 42.1415 + x1="338.63031" 42.1416 + y1="522.47595" 42.1417 + x2="358.67578" 42.1418 + y2="538.1333" 42.1419 + id="linearGradient3615" 42.1420 + xlink:href="#linearGradient3276" 42.1421 + gradientUnits="userSpaceOnUse" 42.1422 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,552.21001,222.53194)" /> 42.1423 + <linearGradient 42.1424 + x1="529.11237" 42.1425 + y1="333.99472" 42.1426 + x2="526.08197" 42.1427 + y2="321.36786" 42.1428 + id="linearGradient3619" 42.1429 + xlink:href="#linearGradient3296" 42.1430 + gradientUnits="userSpaceOnUse" 42.1431 + gradientTransform="matrix(0.2087115,0,0,0.2080024,367.32486,222.53194)" /> 42.1432 + <linearGradient 42.1433 + x1="275.72681" 42.1434 + y1="571.90552" 42.1435 + x2="352.27246" 42.1436 + y2="571.90552" 42.1437 + id="linearGradient3627" 42.1438 + xlink:href="#linearGradient3248" 42.1439 + gradientUnits="userSpaceOnUse" 42.1440 + gradientTransform="matrix(0.2087115,0,0,0.2080024,338.36932,189.7705)" /> 42.1441 + <linearGradient 42.1442 + x1="332.91602" 42.1443 + y1="520.33307" 42.1444 + x2="355.81863" 42.1445 + y2="535.99042" 42.1446 + id="linearGradient3631" 42.1447 + xlink:href="#linearGradient3262" 42.1448 + gradientUnits="userSpaceOnUse" 42.1449 + gradientTransform="matrix(0.2087115,0,0,0.2080024,311.63933,222.53194)" /> 42.1450 + <linearGradient 42.1451 + x1="338.63031" 42.1452 + y1="522.47595" 42.1453 + x2="358.67578" 42.1454 + y2="538.1333" 42.1455 + id="linearGradient3634" 42.1456 + xlink:href="#linearGradient3276" 42.1457 + gradientUnits="userSpaceOnUse" 42.1458 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,496.52448,222.53194)" /> 42.1459 + <linearGradient 42.1460 + x1="529.11237" 42.1461 + y1="333.99472" 42.1462 + x2="526.08197" 42.1463 + y2="321.36786" 42.1464 + id="linearGradient3638" 42.1465 + xlink:href="#linearGradient3296" 42.1466 + gradientUnits="userSpaceOnUse" 42.1467 + gradientTransform="matrix(0.2087115,0,0,0.2080024,311.63933,222.53194)" /> 42.1468 + <linearGradient 42.1469 + x1="275.72681" 42.1470 + y1="571.90552" 42.1471 + x2="352.27246" 42.1472 + y2="571.90552" 42.1473 + id="linearGradient3646" 42.1474 + xlink:href="#linearGradient3248" 42.1475 + gradientUnits="userSpaceOnUse" 42.1476 + gradientTransform="matrix(0.2087115,0,0,0.2080024,282.68378,189.7705)" /> 42.1477 + <linearGradient 42.1478 + x1="332.91602" 42.1479 + y1="520.33307" 42.1480 + x2="355.81863" 42.1481 + y2="535.99042" 42.1482 + id="linearGradient3650" 42.1483 + xlink:href="#linearGradient3262" 42.1484 + gradientUnits="userSpaceOnUse" 42.1485 + gradientTransform="matrix(0.2087115,0,0,0.2080024,255.95379,222.53194)" /> 42.1486 + <linearGradient 42.1487 + x1="338.63031" 42.1488 + y1="522.47595" 42.1489 + x2="358.67578" 42.1490 + y2="538.1333" 42.1491 + id="linearGradient3653" 42.1492 + xlink:href="#linearGradient3276" 42.1493 + gradientUnits="userSpaceOnUse" 42.1494 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,440.83894,222.53194)" /> 42.1495 + <linearGradient 42.1496 + x1="529.11237" 42.1497 + y1="333.99472" 42.1498 + x2="526.08197" 42.1499 + y2="321.36786" 42.1500 + id="linearGradient3657" 42.1501 + xlink:href="#linearGradient3296" 42.1502 + gradientUnits="userSpaceOnUse" 42.1503 + gradientTransform="matrix(0.2087115,0,0,0.2080024,255.95379,222.53194)" /> 42.1504 + <linearGradient 42.1505 + x1="275.72681" 42.1506 + y1="571.90552" 42.1507 + x2="352.27246" 42.1508 + y2="571.90552" 42.1509 + id="linearGradient3665" 42.1510 + xlink:href="#linearGradient3248" 42.1511 + gradientUnits="userSpaceOnUse" 42.1512 + gradientTransform="matrix(0.2087115,0,0,0.2080024,226.99825,189.7705)" /> 42.1513 + <linearGradient 42.1514 + x1="332.91602" 42.1515 + y1="520.33307" 42.1516 + x2="355.81863" 42.1517 + y2="535.99042" 42.1518 + id="linearGradient3669" 42.1519 + xlink:href="#linearGradient3262" 42.1520 + gradientUnits="userSpaceOnUse" 42.1521 + gradientTransform="matrix(0.2087115,0,0,0.2080024,200.26826,222.53194)" /> 42.1522 + <linearGradient 42.1523 + x1="338.63031" 42.1524 + y1="522.47595" 42.1525 + x2="358.67578" 42.1526 + y2="538.1333" 42.1527 + id="linearGradient3672" 42.1528 + xlink:href="#linearGradient3276" 42.1529 + gradientUnits="userSpaceOnUse" 42.1530 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,385.15341,222.53194)" /> 42.1531 + <linearGradient 42.1532 + x1="529.11237" 42.1533 + y1="333.99472" 42.1534 + x2="526.08197" 42.1535 + y2="321.36786" 42.1536 + id="linearGradient3676" 42.1537 + xlink:href="#linearGradient3296" 42.1538 + gradientUnits="userSpaceOnUse" 42.1539 + gradientTransform="matrix(0.2087115,0,0,0.2080024,200.26826,222.53194)" /> 42.1540 + <linearGradient 42.1541 + x1="275.72681" 42.1542 + y1="571.90552" 42.1543 + x2="352.27246" 42.1544 + y2="571.90552" 42.1545 + id="linearGradient3684" 42.1546 + xlink:href="#linearGradient3248" 42.1547 + gradientUnits="userSpaceOnUse" 42.1548 + gradientTransform="matrix(0.2087115,0,0,0.2080024,171.31271,189.7705)" /> 42.1549 + <linearGradient 42.1550 + x1="332.91602" 42.1551 + y1="520.33307" 42.1552 + x2="355.81863" 42.1553 + y2="535.99042" 42.1554 + id="linearGradient3688" 42.1555 + xlink:href="#linearGradient3262" 42.1556 + gradientUnits="userSpaceOnUse" 42.1557 + gradientTransform="matrix(0.2087115,0,0,0.2080024,144.58272,222.53194)" /> 42.1558 + <linearGradient 42.1559 + x1="338.63031" 42.1560 + y1="522.47595" 42.1561 + x2="358.67578" 42.1562 + y2="538.1333" 42.1563 + id="linearGradient3691" 42.1564 + xlink:href="#linearGradient3276" 42.1565 + gradientUnits="userSpaceOnUse" 42.1566 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,329.46787,222.53194)" /> 42.1567 + <linearGradient 42.1568 + x1="529.11237" 42.1569 + y1="333.99472" 42.1570 + x2="526.08197" 42.1571 + y2="321.36786" 42.1572 + id="linearGradient3695" 42.1573 + xlink:href="#linearGradient3296" 42.1574 + gradientUnits="userSpaceOnUse" 42.1575 + gradientTransform="matrix(0.2087115,0,0,0.2080024,144.58272,222.53194)" /> 42.1576 + <linearGradient 42.1577 + x1="529.11237" 42.1578 + y1="333.99472" 42.1579 + x2="526.08197" 42.1580 + y2="321.36786" 42.1581 + id="linearGradient4733" 42.1582 + xlink:href="#linearGradient3296" 42.1583 + gradientUnits="userSpaceOnUse" 42.1584 + gradientTransform="matrix(0.2087115,0,0,0.2080024,43.925882,278.60337)" /> 42.1585 + <linearGradient 42.1586 + x1="338.63031" 42.1587 + y1="522.47595" 42.1588 + x2="358.67578" 42.1589 + y2="538.1333" 42.1590 + id="linearGradient4735" 42.1591 + xlink:href="#linearGradient3276" 42.1592 + gradientUnits="userSpaceOnUse" 42.1593 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,228.81105,278.60337)" /> 42.1594 + <linearGradient 42.1595 + x1="332.91602" 42.1596 + y1="520.33307" 42.1597 + x2="355.81863" 42.1598 + y2="535.99042" 42.1599 + id="linearGradient4737" 42.1600 + xlink:href="#linearGradient3262" 42.1601 + gradientUnits="userSpaceOnUse" 42.1602 + gradientTransform="matrix(0.2087115,0,0,0.2080024,43.925882,278.60337)" /> 42.1603 + <linearGradient 42.1604 + x1="275.72681" 42.1605 + y1="571.90552" 42.1606 + x2="352.27246" 42.1607 + y2="571.90552" 42.1608 + id="linearGradient4739" 42.1609 + xlink:href="#linearGradient3248" 42.1610 + gradientUnits="userSpaceOnUse" 42.1611 + gradientTransform="matrix(0.2087115,0,0,0.2080024,70.655873,245.84193)" /> 42.1612 + <linearGradient 42.1613 + x1="529.11237" 42.1614 + y1="333.99472" 42.1615 + x2="526.08197" 42.1616 + y2="321.36786" 42.1617 + id="linearGradient4741" 42.1618 + xlink:href="#linearGradient3296" 42.1619 + gradientUnits="userSpaceOnUse" 42.1620 + gradientTransform="matrix(0.2087115,0,0,0.2080024,99.611466,278.60337)" /> 42.1621 + <linearGradient 42.1622 + x1="338.63031" 42.1623 + y1="522.47595" 42.1624 + x2="358.67578" 42.1625 + y2="538.1333" 42.1626 + id="linearGradient4743" 42.1627 + xlink:href="#linearGradient3276" 42.1628 + gradientUnits="userSpaceOnUse" 42.1629 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,284.49662,278.60337)" /> 42.1630 + <linearGradient 42.1631 + x1="332.91602" 42.1632 + y1="520.33307" 42.1633 + x2="355.81863" 42.1634 + y2="535.99042" 42.1635 + id="linearGradient4745" 42.1636 + xlink:href="#linearGradient3262" 42.1637 + gradientUnits="userSpaceOnUse" 42.1638 + gradientTransform="matrix(0.2087115,0,0,0.2080024,99.611466,278.60337)" /> 42.1639 + <linearGradient 42.1640 + x1="275.72681" 42.1641 + y1="571.90552" 42.1642 + x2="352.27246" 42.1643 + y2="571.90552" 42.1644 + id="linearGradient4747" 42.1645 + xlink:href="#linearGradient3248" 42.1646 + gradientUnits="userSpaceOnUse" 42.1647 + gradientTransform="matrix(0.2087115,0,0,0.2080024,126.34146,245.84193)" /> 42.1648 + <linearGradient 42.1649 + x1="529.11237" 42.1650 + y1="333.99472" 42.1651 + x2="526.08197" 42.1652 + y2="321.36786" 42.1653 + id="linearGradient4749" 42.1654 + xlink:href="#linearGradient3296" 42.1655 + gradientUnits="userSpaceOnUse" 42.1656 + gradientTransform="matrix(0.2087115,0,0,0.2080024,155.29701,278.60337)" /> 42.1657 + <linearGradient 42.1658 + x1="338.63031" 42.1659 + y1="522.47595" 42.1660 + x2="358.67578" 42.1661 + y2="538.1333" 42.1662 + id="linearGradient4751" 42.1663 + xlink:href="#linearGradient3276" 42.1664 + gradientUnits="userSpaceOnUse" 42.1665 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,340.18216,278.60337)" /> 42.1666 + <linearGradient 42.1667 + x1="332.91602" 42.1668 + y1="520.33307" 42.1669 + x2="355.81863" 42.1670 + y2="535.99042" 42.1671 + id="linearGradient4753" 42.1672 + xlink:href="#linearGradient3262" 42.1673 + gradientUnits="userSpaceOnUse" 42.1674 + gradientTransform="matrix(0.2087115,0,0,0.2080024,155.29701,278.60337)" /> 42.1675 + <linearGradient 42.1676 + x1="275.72681" 42.1677 + y1="571.90552" 42.1678 + x2="352.27246" 42.1679 + y2="571.90552" 42.1680 + id="linearGradient4755" 42.1681 + xlink:href="#linearGradient3248" 42.1682 + gradientUnits="userSpaceOnUse" 42.1683 + gradientTransform="matrix(0.2087115,0,0,0.2080024,182.027,245.84193)" /> 42.1684 + <linearGradient 42.1685 + x1="529.11237" 42.1686 + y1="333.99472" 42.1687 + x2="526.08197" 42.1688 + y2="321.36786" 42.1689 + id="linearGradient4757" 42.1690 + xlink:href="#linearGradient3296" 42.1691 + gradientUnits="userSpaceOnUse" 42.1692 + gradientTransform="matrix(0.2087115,0,0,0.2080024,210.98255,278.60337)" /> 42.1693 + <linearGradient 42.1694 + x1="338.63031" 42.1695 + y1="522.47595" 42.1696 + x2="358.67578" 42.1697 + y2="538.1333" 42.1698 + id="linearGradient4759" 42.1699 + xlink:href="#linearGradient3276" 42.1700 + gradientUnits="userSpaceOnUse" 42.1701 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,395.8677,278.60337)" /> 42.1702 + <linearGradient 42.1703 + x1="332.91602" 42.1704 + y1="520.33307" 42.1705 + x2="355.81863" 42.1706 + y2="535.99042" 42.1707 + id="linearGradient4761" 42.1708 + xlink:href="#linearGradient3262" 42.1709 + gradientUnits="userSpaceOnUse" 42.1710 + gradientTransform="matrix(0.2087115,0,0,0.2080024,210.98255,278.60337)" /> 42.1711 + <linearGradient 42.1712 + x1="275.72681" 42.1713 + y1="571.90552" 42.1714 + x2="352.27246" 42.1715 + y2="571.90552" 42.1716 + id="linearGradient4763" 42.1717 + xlink:href="#linearGradient3248" 42.1718 + gradientUnits="userSpaceOnUse" 42.1719 + gradientTransform="matrix(0.2087115,0,0,0.2080024,237.71254,245.84193)" /> 42.1720 + <linearGradient 42.1721 + x1="529.11237" 42.1722 + y1="333.99472" 42.1723 + x2="526.08197" 42.1724 + y2="321.36786" 42.1725 + id="linearGradient4765" 42.1726 + xlink:href="#linearGradient3296" 42.1727 + gradientUnits="userSpaceOnUse" 42.1728 + gradientTransform="matrix(0.2087115,0,0,0.2080024,266.66808,278.60337)" /> 42.1729 + <linearGradient 42.1730 + x1="338.63031" 42.1731 + y1="522.47595" 42.1732 + x2="358.67578" 42.1733 + y2="538.1333" 42.1734 + id="linearGradient4767" 42.1735 + xlink:href="#linearGradient3276" 42.1736 + gradientUnits="userSpaceOnUse" 42.1737 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,451.55323,278.60337)" /> 42.1738 + <linearGradient 42.1739 + x1="332.91602" 42.1740 + y1="520.33307" 42.1741 + x2="355.81863" 42.1742 + y2="535.99042" 42.1743 + id="linearGradient4769" 42.1744 + xlink:href="#linearGradient3262" 42.1745 + gradientUnits="userSpaceOnUse" 42.1746 + gradientTransform="matrix(0.2087115,0,0,0.2080024,266.66808,278.60337)" /> 42.1747 + <linearGradient 42.1748 + x1="275.72681" 42.1749 + y1="571.90552" 42.1750 + x2="352.27246" 42.1751 + y2="571.90552" 42.1752 + id="linearGradient4771" 42.1753 + xlink:href="#linearGradient3248" 42.1754 + gradientUnits="userSpaceOnUse" 42.1755 + gradientTransform="matrix(0.2087115,0,0,0.2080024,293.39807,245.84193)" /> 42.1756 + <linearGradient 42.1757 + x1="529.11237" 42.1758 + y1="333.99472" 42.1759 + x2="526.08197" 42.1760 + y2="321.36786" 42.1761 + id="linearGradient4773" 42.1762 + xlink:href="#linearGradient3296" 42.1763 + gradientUnits="userSpaceOnUse" 42.1764 + gradientTransform="matrix(0.2087115,0,0,0.2080024,322.35362,278.60337)" /> 42.1765 + <linearGradient 42.1766 + x1="338.63031" 42.1767 + y1="522.47595" 42.1768 + x2="358.67578" 42.1769 + y2="538.1333" 42.1770 + id="linearGradient4775" 42.1771 + xlink:href="#linearGradient3276" 42.1772 + gradientUnits="userSpaceOnUse" 42.1773 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,507.23877,278.60337)" /> 42.1774 + <linearGradient 42.1775 + x1="332.91602" 42.1776 + y1="520.33307" 42.1777 + x2="355.81863" 42.1778 + y2="535.99042" 42.1779 + id="linearGradient4777" 42.1780 + xlink:href="#linearGradient3262" 42.1781 + gradientUnits="userSpaceOnUse" 42.1782 + gradientTransform="matrix(0.2087115,0,0,0.2080024,322.35362,278.60337)" /> 42.1783 + <linearGradient 42.1784 + x1="275.72681" 42.1785 + y1="571.90552" 42.1786 + x2="352.27246" 42.1787 + y2="571.90552" 42.1788 + id="linearGradient4779" 42.1789 + xlink:href="#linearGradient3248" 42.1790 + gradientUnits="userSpaceOnUse" 42.1791 + gradientTransform="matrix(0.2087115,0,0,0.2080024,349.08361,245.84193)" /> 42.1792 + <linearGradient 42.1793 + x1="529.11237" 42.1794 + y1="333.99472" 42.1795 + x2="526.08197" 42.1796 + y2="321.36786" 42.1797 + id="linearGradient4781" 42.1798 + xlink:href="#linearGradient3296" 42.1799 + gradientUnits="userSpaceOnUse" 42.1800 + gradientTransform="matrix(0.2087115,0,0,0.2080024,378.03915,278.60337)" /> 42.1801 + <linearGradient 42.1802 + x1="338.63031" 42.1803 + y1="522.47595" 42.1804 + x2="358.67578" 42.1805 + y2="538.1333" 42.1806 + id="linearGradient4783" 42.1807 + xlink:href="#linearGradient3276" 42.1808 + gradientUnits="userSpaceOnUse" 42.1809 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,562.9243,278.60337)" /> 42.1810 + <linearGradient 42.1811 + x1="332.91602" 42.1812 + y1="520.33307" 42.1813 + x2="355.81863" 42.1814 + y2="535.99042" 42.1815 + id="linearGradient4785" 42.1816 + xlink:href="#linearGradient3262" 42.1817 + gradientUnits="userSpaceOnUse" 42.1818 + gradientTransform="matrix(0.2087115,0,0,0.2080024,378.03915,278.60337)" /> 42.1819 + <linearGradient 42.1820 + x1="275.72681" 42.1821 + y1="571.90552" 42.1822 + x2="352.27246" 42.1823 + y2="571.90552" 42.1824 + id="linearGradient4787" 42.1825 + xlink:href="#linearGradient3248" 42.1826 + gradientUnits="userSpaceOnUse" 42.1827 + gradientTransform="matrix(0.2087115,0,0,0.2080024,404.76914,245.84193)" /> 42.1828 + <linearGradient 42.1829 + x1="529.11237" 42.1830 + y1="333.99472" 42.1831 + x2="526.08197" 42.1832 + y2="321.36786" 42.1833 + id="linearGradient4789" 42.1834 + xlink:href="#linearGradient3296" 42.1835 + gradientUnits="userSpaceOnUse" 42.1836 + gradientTransform="matrix(0.2087115,0,0,0.2080024,433.72467,278.60337)" /> 42.1837 + <linearGradient 42.1838 + x1="338.63031" 42.1839 + y1="522.47595" 42.1840 + x2="358.67578" 42.1841 + y2="538.1333" 42.1842 + id="linearGradient4791" 42.1843 + xlink:href="#linearGradient3276" 42.1844 + gradientUnits="userSpaceOnUse" 42.1845 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,618.60982,278.60337)" /> 42.1846 + <linearGradient 42.1847 + x1="332.91602" 42.1848 + y1="520.33307" 42.1849 + x2="355.81863" 42.1850 + y2="535.99042" 42.1851 + id="linearGradient4793" 42.1852 + xlink:href="#linearGradient3262" 42.1853 + gradientUnits="userSpaceOnUse" 42.1854 + gradientTransform="matrix(0.2087115,0,0,0.2080024,433.72467,278.60337)" /> 42.1855 + <linearGradient 42.1856 + x1="275.72681" 42.1857 + y1="571.90552" 42.1858 + x2="352.27246" 42.1859 + y2="571.90552" 42.1860 + id="linearGradient4795" 42.1861 + xlink:href="#linearGradient3248" 42.1862 + gradientUnits="userSpaceOnUse" 42.1863 + gradientTransform="matrix(0.2087115,0,0,0.2080024,460.45466,245.84193)" /> 42.1864 + <linearGradient 42.1865 + x1="529.11237" 42.1866 + y1="333.99472" 42.1867 + x2="526.08197" 42.1868 + y2="321.36786" 42.1869 + id="linearGradient4797" 42.1870 + xlink:href="#linearGradient3296" 42.1871 + gradientUnits="userSpaceOnUse" 42.1872 + gradientTransform="matrix(0.2087115,0,0,0.2080024,489.41021,278.60337)" /> 42.1873 + <linearGradient 42.1874 + x1="338.63031" 42.1875 + y1="522.47595" 42.1876 + x2="358.67578" 42.1877 + y2="538.1333" 42.1878 + id="linearGradient4799" 42.1879 + xlink:href="#linearGradient3276" 42.1880 + gradientUnits="userSpaceOnUse" 42.1881 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,674.29536,278.60337)" /> 42.1882 + <linearGradient 42.1883 + x1="332.91602" 42.1884 + y1="520.33307" 42.1885 + x2="355.81863" 42.1886 + y2="535.99042" 42.1887 + id="linearGradient4801" 42.1888 + xlink:href="#linearGradient3262" 42.1889 + gradientUnits="userSpaceOnUse" 42.1890 + gradientTransform="matrix(0.2087115,0,0,0.2080024,489.41021,278.60337)" /> 42.1891 + <linearGradient 42.1892 + x1="275.72681" 42.1893 + y1="571.90552" 42.1894 + x2="352.27246" 42.1895 + y2="571.90552" 42.1896 + id="linearGradient4803" 42.1897 + xlink:href="#linearGradient3248" 42.1898 + gradientUnits="userSpaceOnUse" 42.1899 + gradientTransform="matrix(0.2087115,0,0,0.2080024,516.1402,245.84193)" /> 42.1900 + <linearGradient 42.1901 + x1="529.11237" 42.1902 + y1="333.99472" 42.1903 + x2="526.08197" 42.1904 + y2="321.36786" 42.1905 + id="linearGradient4805" 42.1906 + xlink:href="#linearGradient3296" 42.1907 + gradientUnits="userSpaceOnUse" 42.1908 + gradientTransform="matrix(0.2087115,0,0,0.2080024,545.09577,278.60337)" /> 42.1909 + <linearGradient 42.1910 + x1="338.63031" 42.1911 + y1="522.47595" 42.1912 + x2="358.67578" 42.1913 + y2="538.1333" 42.1914 + id="linearGradient4807" 42.1915 + xlink:href="#linearGradient3276" 42.1916 + gradientUnits="userSpaceOnUse" 42.1917 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,729.98092,278.60337)" /> 42.1918 + <linearGradient 42.1919 + x1="332.91602" 42.1920 + y1="520.33307" 42.1921 + x2="355.81863" 42.1922 + y2="535.99042" 42.1923 + id="linearGradient4809" 42.1924 + xlink:href="#linearGradient3262" 42.1925 + gradientUnits="userSpaceOnUse" 42.1926 + gradientTransform="matrix(0.2087115,0,0,0.2080024,545.09577,278.60337)" /> 42.1927 + <linearGradient 42.1928 + x1="275.72681" 42.1929 + y1="571.90552" 42.1930 + x2="352.27246" 42.1931 + y2="571.90552" 42.1932 + id="linearGradient4811" 42.1933 + xlink:href="#linearGradient3248" 42.1934 + gradientUnits="userSpaceOnUse" 42.1935 + gradientTransform="matrix(0.2087115,0,0,0.2080024,571.82576,245.84193)" /> 42.1936 + <linearGradient 42.1937 + x1="529.11237" 42.1938 + y1="333.99472" 42.1939 + x2="526.08197" 42.1940 + y2="321.36786" 42.1941 + id="linearGradient4813" 42.1942 + xlink:href="#linearGradient3296" 42.1943 + gradientUnits="userSpaceOnUse" 42.1944 + gradientTransform="matrix(0.2087115,0,0,0.2080024,600.7813,278.60337)" /> 42.1945 + <linearGradient 42.1946 + x1="338.63031" 42.1947 + y1="522.47595" 42.1948 + x2="358.67578" 42.1949 + y2="538.1333" 42.1950 + id="linearGradient4815" 42.1951 + xlink:href="#linearGradient3276" 42.1952 + gradientUnits="userSpaceOnUse" 42.1953 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,785.66645,278.60337)" /> 42.1954 + <linearGradient 42.1955 + x1="332.91602" 42.1956 + y1="520.33307" 42.1957 + x2="355.81863" 42.1958 + y2="535.99042" 42.1959 + id="linearGradient4817" 42.1960 + xlink:href="#linearGradient3262" 42.1961 + gradientUnits="userSpaceOnUse" 42.1962 + gradientTransform="matrix(0.2087115,0,0,0.2080024,600.7813,278.60337)" /> 42.1963 + <linearGradient 42.1964 + x1="275.72681" 42.1965 + y1="571.90552" 42.1966 + x2="352.27246" 42.1967 + y2="571.90552" 42.1968 + id="linearGradient4819" 42.1969 + xlink:href="#linearGradient3248" 42.1970 + gradientUnits="userSpaceOnUse" 42.1971 + gradientTransform="matrix(0.2087115,0,0,0.2080024,627.51129,245.84193)" /> 42.1972 + <linearGradient 42.1973 + x1="529.11237" 42.1974 + y1="333.99472" 42.1975 + x2="526.08197" 42.1976 + y2="321.36786" 42.1977 + id="linearGradient4821" 42.1978 + xlink:href="#linearGradient3296" 42.1979 + gradientUnits="userSpaceOnUse" 42.1980 + gradientTransform="matrix(0.2087115,0,0,0.2080024,656.46682,278.60337)" /> 42.1981 + <linearGradient 42.1982 + x1="338.63031" 42.1983 + y1="522.47595" 42.1984 + x2="358.67578" 42.1985 + y2="538.1333" 42.1986 + id="linearGradient4823" 42.1987 + xlink:href="#linearGradient3276" 42.1988 + gradientUnits="userSpaceOnUse" 42.1989 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,841.35197,278.60337)" /> 42.1990 + <linearGradient 42.1991 + x1="332.91602" 42.1992 + y1="520.33307" 42.1993 + x2="355.81863" 42.1994 + y2="535.99042" 42.1995 + id="linearGradient4825" 42.1996 + xlink:href="#linearGradient3262" 42.1997 + gradientUnits="userSpaceOnUse" 42.1998 + gradientTransform="matrix(0.2087115,0,0,0.2080024,656.46682,278.60337)" /> 42.1999 + <linearGradient 42.2000 + x1="275.72681" 42.2001 + y1="571.90552" 42.2002 + x2="352.27246" 42.2003 + y2="571.90552" 42.2004 + id="linearGradient4827" 42.2005 + xlink:href="#linearGradient3248" 42.2006 + gradientUnits="userSpaceOnUse" 42.2007 + gradientTransform="matrix(0.2087115,0,0,0.2080024,683.19681,245.84193)" /> 42.2008 + <linearGradient 42.2009 + x1="529.11237" 42.2010 + y1="333.99472" 42.2011 + x2="526.08197" 42.2012 + y2="321.36786" 42.2013 + id="linearGradient5093" 42.2014 + xlink:href="#linearGradient3296" 42.2015 + gradientUnits="userSpaceOnUse" 42.2016 + gradientTransform="matrix(0.2087115,0,0,0.2080024,14.126382,335.17192)" /> 42.2017 + <linearGradient 42.2018 + x1="338.63031" 42.2019 + y1="522.47595" 42.2020 + x2="358.67578" 42.2021 + y2="538.1333" 42.2022 + id="linearGradient5095" 42.2023 + xlink:href="#linearGradient3276" 42.2024 + gradientUnits="userSpaceOnUse" 42.2025 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,199.01155,335.17192)" /> 42.2026 + <linearGradient 42.2027 + x1="332.91602" 42.2028 + y1="520.33307" 42.2029 + x2="355.81863" 42.2030 + y2="535.99042" 42.2031 + id="linearGradient5097" 42.2032 + xlink:href="#linearGradient3262" 42.2033 + gradientUnits="userSpaceOnUse" 42.2034 + gradientTransform="matrix(0.2087115,0,0,0.2080024,14.126382,335.17192)" /> 42.2035 + <linearGradient 42.2036 + x1="275.72681" 42.2037 + y1="571.90552" 42.2038 + x2="352.27246" 42.2039 + y2="571.90552" 42.2040 + id="linearGradient5099" 42.2041 + xlink:href="#linearGradient3248" 42.2042 + gradientUnits="userSpaceOnUse" 42.2043 + gradientTransform="matrix(0.2087115,0,0,0.2080024,40.856373,302.41048)" /> 42.2044 + <linearGradient 42.2045 + x1="529.11237" 42.2046 + y1="333.99472" 42.2047 + x2="526.08197" 42.2048 + y2="321.36786" 42.2049 + id="linearGradient5101" 42.2050 + xlink:href="#linearGradient3296" 42.2051 + gradientUnits="userSpaceOnUse" 42.2052 + gradientTransform="matrix(0.2087115,0,0,0.2080024,69.811966,335.17192)" /> 42.2053 + <linearGradient 42.2054 + x1="338.63031" 42.2055 + y1="522.47595" 42.2056 + x2="358.67578" 42.2057 + y2="538.1333" 42.2058 + id="linearGradient5103" 42.2059 + xlink:href="#linearGradient3276" 42.2060 + gradientUnits="userSpaceOnUse" 42.2061 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,254.69712,335.17192)" /> 42.2062 + <linearGradient 42.2063 + x1="332.91602" 42.2064 + y1="520.33307" 42.2065 + x2="355.81863" 42.2066 + y2="535.99042" 42.2067 + id="linearGradient5105" 42.2068 + xlink:href="#linearGradient3262" 42.2069 + gradientUnits="userSpaceOnUse" 42.2070 + gradientTransform="matrix(0.2087115,0,0,0.2080024,69.811966,335.17192)" /> 42.2071 + <linearGradient 42.2072 + x1="275.72681" 42.2073 + y1="571.90552" 42.2074 + x2="352.27246" 42.2075 + y2="571.90552" 42.2076 + id="linearGradient5107" 42.2077 + xlink:href="#linearGradient3248" 42.2078 + gradientUnits="userSpaceOnUse" 42.2079 + gradientTransform="matrix(0.2087115,0,0,0.2080024,96.54196,302.41048)" /> 42.2080 + <linearGradient 42.2081 + x1="529.11237" 42.2082 + y1="333.99472" 42.2083 + x2="526.08197" 42.2084 + y2="321.36786" 42.2085 + id="linearGradient5109" 42.2086 + xlink:href="#linearGradient3296" 42.2087 + gradientUnits="userSpaceOnUse" 42.2088 + gradientTransform="matrix(0.2087115,0,0,0.2080024,125.49751,335.17192)" /> 42.2089 + <linearGradient 42.2090 + x1="338.63031" 42.2091 + y1="522.47595" 42.2092 + x2="358.67578" 42.2093 + y2="538.1333" 42.2094 + id="linearGradient5111" 42.2095 + xlink:href="#linearGradient3276" 42.2096 + gradientUnits="userSpaceOnUse" 42.2097 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,310.38266,335.17192)" /> 42.2098 + <linearGradient 42.2099 + x1="332.91602" 42.2100 + y1="520.33307" 42.2101 + x2="355.81863" 42.2102 + y2="535.99042" 42.2103 + id="linearGradient5113" 42.2104 + xlink:href="#linearGradient3262" 42.2105 + gradientUnits="userSpaceOnUse" 42.2106 + gradientTransform="matrix(0.2087115,0,0,0.2080024,125.49751,335.17192)" /> 42.2107 + <linearGradient 42.2108 + x1="275.72681" 42.2109 + y1="571.90552" 42.2110 + x2="352.27246" 42.2111 + y2="571.90552" 42.2112 + id="linearGradient5115" 42.2113 + xlink:href="#linearGradient3248" 42.2114 + gradientUnits="userSpaceOnUse" 42.2115 + gradientTransform="matrix(0.2087115,0,0,0.2080024,152.2275,302.41048)" /> 42.2116 + <linearGradient 42.2117 + x1="529.11237" 42.2118 + y1="333.99472" 42.2119 + x2="526.08197" 42.2120 + y2="321.36786" 42.2121 + id="linearGradient5117" 42.2122 + xlink:href="#linearGradient3296" 42.2123 + gradientUnits="userSpaceOnUse" 42.2124 + gradientTransform="matrix(0.2087115,0,0,0.2080024,181.18305,335.17192)" /> 42.2125 + <linearGradient 42.2126 + x1="338.63031" 42.2127 + y1="522.47595" 42.2128 + x2="358.67578" 42.2129 + y2="538.1333" 42.2130 + id="linearGradient5119" 42.2131 + xlink:href="#linearGradient3276" 42.2132 + gradientUnits="userSpaceOnUse" 42.2133 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,366.0682,335.17192)" /> 42.2134 + <linearGradient 42.2135 + x1="332.91602" 42.2136 + y1="520.33307" 42.2137 + x2="355.81863" 42.2138 + y2="535.99042" 42.2139 + id="linearGradient5121" 42.2140 + xlink:href="#linearGradient3262" 42.2141 + gradientUnits="userSpaceOnUse" 42.2142 + gradientTransform="matrix(0.2087115,0,0,0.2080024,181.18305,335.17192)" /> 42.2143 + <linearGradient 42.2144 + x1="275.72681" 42.2145 + y1="571.90552" 42.2146 + x2="352.27246" 42.2147 + y2="571.90552" 42.2148 + id="linearGradient5123" 42.2149 + xlink:href="#linearGradient3248" 42.2150 + gradientUnits="userSpaceOnUse" 42.2151 + gradientTransform="matrix(0.2087115,0,0,0.2080024,207.91304,302.41048)" /> 42.2152 + <linearGradient 42.2153 + x1="529.11237" 42.2154 + y1="333.99472" 42.2155 + x2="526.08197" 42.2156 + y2="321.36786" 42.2157 + id="linearGradient5125" 42.2158 + xlink:href="#linearGradient3296" 42.2159 + gradientUnits="userSpaceOnUse" 42.2160 + gradientTransform="matrix(0.2087115,0,0,0.2080024,236.86858,335.17192)" /> 42.2161 + <linearGradient 42.2162 + x1="338.63031" 42.2163 + y1="522.47595" 42.2164 + x2="358.67578" 42.2165 + y2="538.1333" 42.2166 + id="linearGradient5127" 42.2167 + xlink:href="#linearGradient3276" 42.2168 + gradientUnits="userSpaceOnUse" 42.2169 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,421.75373,335.17192)" /> 42.2170 + <linearGradient 42.2171 + x1="332.91602" 42.2172 + y1="520.33307" 42.2173 + x2="355.81863" 42.2174 + y2="535.99042" 42.2175 + id="linearGradient5129" 42.2176 + xlink:href="#linearGradient3262" 42.2177 + gradientUnits="userSpaceOnUse" 42.2178 + gradientTransform="matrix(0.2087115,0,0,0.2080024,236.86858,335.17192)" /> 42.2179 + <linearGradient 42.2180 + x1="275.72681" 42.2181 + y1="571.90552" 42.2182 + x2="352.27246" 42.2183 + y2="571.90552" 42.2184 + id="linearGradient5131" 42.2185 + xlink:href="#linearGradient3248" 42.2186 + gradientUnits="userSpaceOnUse" 42.2187 + gradientTransform="matrix(0.2087115,0,0,0.2080024,263.59857,302.41048)" /> 42.2188 + <linearGradient 42.2189 + x1="529.11237" 42.2190 + y1="333.99472" 42.2191 + x2="526.08197" 42.2192 + y2="321.36786" 42.2193 + id="linearGradient5133" 42.2194 + xlink:href="#linearGradient3296" 42.2195 + gradientUnits="userSpaceOnUse" 42.2196 + gradientTransform="matrix(0.2087115,0,0,0.2080024,292.55412,335.17192)" /> 42.2197 + <linearGradient 42.2198 + x1="338.63031" 42.2199 + y1="522.47595" 42.2200 + x2="358.67578" 42.2201 + y2="538.1333" 42.2202 + id="linearGradient5135" 42.2203 + xlink:href="#linearGradient3276" 42.2204 + gradientUnits="userSpaceOnUse" 42.2205 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,477.43927,335.17192)" /> 42.2206 + <linearGradient 42.2207 + x1="332.91602" 42.2208 + y1="520.33307" 42.2209 + x2="355.81863" 42.2210 + y2="535.99042" 42.2211 + id="linearGradient5137" 42.2212 + xlink:href="#linearGradient3262" 42.2213 + gradientUnits="userSpaceOnUse" 42.2214 + gradientTransform="matrix(0.2087115,0,0,0.2080024,292.55412,335.17192)" /> 42.2215 + <linearGradient 42.2216 + x1="275.72681" 42.2217 + y1="571.90552" 42.2218 + x2="352.27246" 42.2219 + y2="571.90552" 42.2220 + id="linearGradient5139" 42.2221 + xlink:href="#linearGradient3248" 42.2222 + gradientUnits="userSpaceOnUse" 42.2223 + gradientTransform="matrix(0.2087115,0,0,0.2080024,319.28411,302.41048)" /> 42.2224 + <linearGradient 42.2225 + x1="529.11237" 42.2226 + y1="333.99472" 42.2227 + x2="526.08197" 42.2228 + y2="321.36786" 42.2229 + id="linearGradient5141" 42.2230 + xlink:href="#linearGradient3296" 42.2231 + gradientUnits="userSpaceOnUse" 42.2232 + gradientTransform="matrix(0.2087115,0,0,0.2080024,348.23965,335.17192)" /> 42.2233 + <linearGradient 42.2234 + x1="338.63031" 42.2235 + y1="522.47595" 42.2236 + x2="358.67578" 42.2237 + y2="538.1333" 42.2238 + id="linearGradient5143" 42.2239 + xlink:href="#linearGradient3276" 42.2240 + gradientUnits="userSpaceOnUse" 42.2241 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,533.1248,335.17192)" /> 42.2242 + <linearGradient 42.2243 + x1="332.91602" 42.2244 + y1="520.33307" 42.2245 + x2="355.81863" 42.2246 + y2="535.99042" 42.2247 + id="linearGradient5145" 42.2248 + xlink:href="#linearGradient3262" 42.2249 + gradientUnits="userSpaceOnUse" 42.2250 + gradientTransform="matrix(0.2087115,0,0,0.2080024,348.23965,335.17192)" /> 42.2251 + <linearGradient 42.2252 + x1="275.72681" 42.2253 + y1="571.90552" 42.2254 + x2="352.27246" 42.2255 + y2="571.90552" 42.2256 + id="linearGradient5147" 42.2257 + xlink:href="#linearGradient3248" 42.2258 + gradientUnits="userSpaceOnUse" 42.2259 + gradientTransform="matrix(0.2087115,0,0,0.2080024,374.96964,302.41048)" /> 42.2260 + <linearGradient 42.2261 + x1="529.11237" 42.2262 + y1="333.99472" 42.2263 + x2="526.08197" 42.2264 + y2="321.36786" 42.2265 + id="linearGradient5149" 42.2266 + xlink:href="#linearGradient3296" 42.2267 + gradientUnits="userSpaceOnUse" 42.2268 + gradientTransform="matrix(0.2087115,0,0,0.2080024,403.92517,335.17192)" /> 42.2269 + <linearGradient 42.2270 + x1="338.63031" 42.2271 + y1="522.47595" 42.2272 + x2="358.67578" 42.2273 + y2="538.1333" 42.2274 + id="linearGradient5151" 42.2275 + xlink:href="#linearGradient3276" 42.2276 + gradientUnits="userSpaceOnUse" 42.2277 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,588.81032,335.17192)" /> 42.2278 + <linearGradient 42.2279 + x1="332.91602" 42.2280 + y1="520.33307" 42.2281 + x2="355.81863" 42.2282 + y2="535.99042" 42.2283 + id="linearGradient5153" 42.2284 + xlink:href="#linearGradient3262" 42.2285 + gradientUnits="userSpaceOnUse" 42.2286 + gradientTransform="matrix(0.2087115,0,0,0.2080024,403.92517,335.17192)" /> 42.2287 + <linearGradient 42.2288 + x1="275.72681" 42.2289 + y1="571.90552" 42.2290 + x2="352.27246" 42.2291 + y2="571.90552" 42.2292 + id="linearGradient5155" 42.2293 + xlink:href="#linearGradient3248" 42.2294 + gradientUnits="userSpaceOnUse" 42.2295 + gradientTransform="matrix(0.2087115,0,0,0.2080024,430.65516,302.41048)" /> 42.2296 + <linearGradient 42.2297 + x1="529.11237" 42.2298 + y1="333.99472" 42.2299 + x2="526.08197" 42.2300 + y2="321.36786" 42.2301 + id="linearGradient5157" 42.2302 + xlink:href="#linearGradient3296" 42.2303 + gradientUnits="userSpaceOnUse" 42.2304 + gradientTransform="matrix(0.2087115,0,0,0.2080024,459.61071,335.17192)" /> 42.2305 + <linearGradient 42.2306 + x1="338.63031" 42.2307 + y1="522.47595" 42.2308 + x2="358.67578" 42.2309 + y2="538.1333" 42.2310 + id="linearGradient5159" 42.2311 + xlink:href="#linearGradient3276" 42.2312 + gradientUnits="userSpaceOnUse" 42.2313 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,644.49586,335.17192)" /> 42.2314 + <linearGradient 42.2315 + x1="332.91602" 42.2316 + y1="520.33307" 42.2317 + x2="355.81863" 42.2318 + y2="535.99042" 42.2319 + id="linearGradient5161" 42.2320 + xlink:href="#linearGradient3262" 42.2321 + gradientUnits="userSpaceOnUse" 42.2322 + gradientTransform="matrix(0.2087115,0,0,0.2080024,459.61071,335.17192)" /> 42.2323 + <linearGradient 42.2324 + x1="275.72681" 42.2325 + y1="571.90552" 42.2326 + x2="352.27246" 42.2327 + y2="571.90552" 42.2328 + id="linearGradient5163" 42.2329 + xlink:href="#linearGradient3248" 42.2330 + gradientUnits="userSpaceOnUse" 42.2331 + gradientTransform="matrix(0.2087115,0,0,0.2080024,486.3407,302.41048)" /> 42.2332 + <linearGradient 42.2333 + x1="529.11237" 42.2334 + y1="333.99472" 42.2335 + x2="526.08197" 42.2336 + y2="321.36786" 42.2337 + id="linearGradient5165" 42.2338 + xlink:href="#linearGradient3296" 42.2339 + gradientUnits="userSpaceOnUse" 42.2340 + gradientTransform="matrix(0.2087115,0,0,0.2080024,515.29627,335.17192)" /> 42.2341 + <linearGradient 42.2342 + x1="338.63031" 42.2343 + y1="522.47595" 42.2344 + x2="358.67578" 42.2345 + y2="538.1333" 42.2346 + id="linearGradient5167" 42.2347 + xlink:href="#linearGradient3276" 42.2348 + gradientUnits="userSpaceOnUse" 42.2349 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,700.18142,335.17192)" /> 42.2350 + <linearGradient 42.2351 + x1="332.91602" 42.2352 + y1="520.33307" 42.2353 + x2="355.81863" 42.2354 + y2="535.99042" 42.2355 + id="linearGradient5169" 42.2356 + xlink:href="#linearGradient3262" 42.2357 + gradientUnits="userSpaceOnUse" 42.2358 + gradientTransform="matrix(0.2087115,0,0,0.2080024,515.29627,335.17192)" /> 42.2359 + <linearGradient 42.2360 + x1="275.72681" 42.2361 + y1="571.90552" 42.2362 + x2="352.27246" 42.2363 + y2="571.90552" 42.2364 + id="linearGradient5171" 42.2365 + xlink:href="#linearGradient3248" 42.2366 + gradientUnits="userSpaceOnUse" 42.2367 + gradientTransform="matrix(0.2087115,0,0,0.2080024,542.02626,302.41048)" /> 42.2368 + <linearGradient 42.2369 + x1="529.11237" 42.2370 + y1="333.99472" 42.2371 + x2="526.08197" 42.2372 + y2="321.36786" 42.2373 + id="linearGradient5173" 42.2374 + xlink:href="#linearGradient3296" 42.2375 + gradientUnits="userSpaceOnUse" 42.2376 + gradientTransform="matrix(0.2087115,0,0,0.2080024,570.9818,335.17192)" /> 42.2377 + <linearGradient 42.2378 + x1="338.63031" 42.2379 + y1="522.47595" 42.2380 + x2="358.67578" 42.2381 + y2="538.1333" 42.2382 + id="linearGradient5175" 42.2383 + xlink:href="#linearGradient3276" 42.2384 + gradientUnits="userSpaceOnUse" 42.2385 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,755.86695,335.17192)" /> 42.2386 + <linearGradient 42.2387 + x1="332.91602" 42.2388 + y1="520.33307" 42.2389 + x2="355.81863" 42.2390 + y2="535.99042" 42.2391 + id="linearGradient5177" 42.2392 + xlink:href="#linearGradient3262" 42.2393 + gradientUnits="userSpaceOnUse" 42.2394 + gradientTransform="matrix(0.2087115,0,0,0.2080024,570.9818,335.17192)" /> 42.2395 + <linearGradient 42.2396 + x1="275.72681" 42.2397 + y1="571.90552" 42.2398 + x2="352.27246" 42.2399 + y2="571.90552" 42.2400 + id="linearGradient5179" 42.2401 + xlink:href="#linearGradient3248" 42.2402 + gradientUnits="userSpaceOnUse" 42.2403 + gradientTransform="matrix(0.2087115,0,0,0.2080024,597.71179,302.41048)" /> 42.2404 + <linearGradient 42.2405 + x1="529.11237" 42.2406 + y1="333.99472" 42.2407 + x2="526.08197" 42.2408 + y2="321.36786" 42.2409 + id="linearGradient5181" 42.2410 + xlink:href="#linearGradient3296" 42.2411 + gradientUnits="userSpaceOnUse" 42.2412 + gradientTransform="matrix(0.2087115,0,0,0.2080024,727.56018,335.17192)" /> 42.2413 + <linearGradient 42.2414 + x1="338.63031" 42.2415 + y1="522.47595" 42.2416 + x2="358.67578" 42.2417 + y2="538.1333" 42.2418 + id="linearGradient5183" 42.2419 + xlink:href="#linearGradient3276" 42.2420 + gradientUnits="userSpaceOnUse" 42.2421 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,912.44533,335.17192)" /> 42.2422 + <linearGradient 42.2423 + x1="332.91602" 42.2424 + y1="520.33307" 42.2425 + x2="355.81863" 42.2426 + y2="535.99042" 42.2427 + id="linearGradient5185" 42.2428 + xlink:href="#linearGradient3262" 42.2429 + gradientUnits="userSpaceOnUse" 42.2430 + gradientTransform="matrix(0.2087115,0,0,0.2080024,626.66732,335.17192)" /> 42.2431 + <linearGradient 42.2432 + x1="275.72681" 42.2433 + y1="571.90552" 42.2434 + x2="352.27246" 42.2435 + y2="571.90552" 42.2436 + id="linearGradient5187" 42.2437 + xlink:href="#linearGradient3248" 42.2438 + gradientUnits="userSpaceOnUse" 42.2439 + gradientTransform="matrix(0.7999477,0,0,0.2080024,520.99067,302.41048)" /> 42.2440 + <linearGradient 42.2441 + x1="275.72681" 42.2442 + y1="571.90552" 42.2443 + x2="352.27246" 42.2444 + y2="571.90552" 42.2445 + id="linearGradient6464" 42.2446 + xlink:href="#linearGradient3248" 42.2447 + gradientUnits="userSpaceOnUse" 42.2448 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1166.682,134.21211)" /> 42.2449 + <linearGradient 42.2450 + x1="332.91602" 42.2451 + y1="520.33307" 42.2452 + x2="355.81863" 42.2453 + y2="535.99042" 42.2454 + id="linearGradient6468" 42.2455 + xlink:href="#linearGradient3262" 42.2456 + gradientUnits="userSpaceOnUse" 42.2457 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,166.97355)" /> 42.2458 + <linearGradient 42.2459 + x1="338.63031" 42.2460 + y1="522.47595" 42.2461 + x2="358.67578" 42.2462 + y2="538.1333" 42.2463 + id="linearGradient6471" 42.2464 + xlink:href="#linearGradient3276" 42.2465 + gradientUnits="userSpaceOnUse" 42.2466 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1324.8372,166.97355)" /> 42.2467 + <linearGradient 42.2468 + x1="529.11237" 42.2469 + y1="333.99472" 42.2470 + x2="526.08197" 42.2471 + y2="321.36786" 42.2472 + id="linearGradient6475" 42.2473 + xlink:href="#linearGradient3296" 42.2474 + gradientUnits="userSpaceOnUse" 42.2475 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,166.97355)" /> 42.2476 + <linearGradient 42.2477 + x1="275.72681" 42.2478 + y1="571.90552" 42.2479 + x2="352.27246" 42.2480 + y2="571.90552" 42.2481 + id="linearGradient6492" 42.2482 + xlink:href="#linearGradient3248" 42.2483 + gradientUnits="userSpaceOnUse" 42.2484 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,134.21211)" /> 42.2485 + <linearGradient 42.2486 + x1="332.91602" 42.2487 + y1="520.33307" 42.2488 + x2="355.81863" 42.2489 + y2="535.99042" 42.2490 + id="linearGradient6496" 42.2491 + xlink:href="#linearGradient3262" 42.2492 + gradientUnits="userSpaceOnUse" 42.2493 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,166.97355)" /> 42.2494 + <linearGradient 42.2495 + x1="338.63031" 42.2496 + y1="522.47595" 42.2497 + x2="358.67578" 42.2498 + y2="538.1333" 42.2499 + id="linearGradient6499" 42.2500 + xlink:href="#linearGradient3276" 42.2501 + gradientUnits="userSpaceOnUse" 42.2502 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,166.97355)" /> 42.2503 + <linearGradient 42.2504 + x1="529.11237" 42.2505 + y1="333.99472" 42.2506 + x2="526.08197" 42.2507 + y2="321.36786" 42.2508 + id="linearGradient6503" 42.2509 + xlink:href="#linearGradient3296" 42.2510 + gradientUnits="userSpaceOnUse" 42.2511 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,166.97355)" /> 42.2512 + <linearGradient 42.2513 + x1="275.72681" 42.2514 + y1="571.90552" 42.2515 + x2="352.27246" 42.2516 + y2="571.90552" 42.2517 + id="linearGradient6520" 42.2518 + xlink:href="#linearGradient3248" 42.2519 + gradientUnits="userSpaceOnUse" 42.2520 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1056.5461,134.21211)" /> 42.2521 + <linearGradient 42.2522 + x1="332.91602" 42.2523 + y1="520.33307" 42.2524 + x2="355.81863" 42.2525 + y2="535.99042" 42.2526 + id="linearGradient6524" 42.2527 + xlink:href="#linearGradient3262" 42.2528 + gradientUnits="userSpaceOnUse" 42.2529 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,166.97355)" /> 42.2530 + <linearGradient 42.2531 + x1="338.63031" 42.2532 + y1="522.47595" 42.2533 + x2="358.67578" 42.2534 + y2="538.1333" 42.2535 + id="linearGradient6527" 42.2536 + xlink:href="#linearGradient3276" 42.2537 + gradientUnits="userSpaceOnUse" 42.2538 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.7013,166.97355)" /> 42.2539 + <linearGradient 42.2540 + x1="529.11237" 42.2541 + y1="333.99472" 42.2542 + x2="526.08197" 42.2543 + y2="321.36786" 42.2544 + id="linearGradient6531" 42.2545 + xlink:href="#linearGradient3296" 42.2546 + gradientUnits="userSpaceOnUse" 42.2547 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,166.97355)" /> 42.2548 + <linearGradient 42.2549 + x1="275.72681" 42.2550 + y1="571.90552" 42.2551 + x2="352.27246" 42.2552 + y2="571.90552" 42.2553 + id="linearGradient6549" 42.2554 + xlink:href="#linearGradient3248" 42.2555 + gradientUnits="userSpaceOnUse" 42.2556 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1001.4782,134.21211)" /> 42.2557 + <linearGradient 42.2558 + x1="332.91602" 42.2559 + y1="520.33307" 42.2560 + x2="355.81863" 42.2561 + y2="535.99042" 42.2562 + id="linearGradient6553" 42.2563 + xlink:href="#linearGradient3262" 42.2564 + gradientUnits="userSpaceOnUse" 42.2565 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,166.97355)" /> 42.2566 + <linearGradient 42.2567 + x1="338.63031" 42.2568 + y1="522.47595" 42.2569 + x2="358.67578" 42.2570 + y2="538.1333" 42.2571 + id="linearGradient6556" 42.2572 + xlink:href="#linearGradient3276" 42.2573 + gradientUnits="userSpaceOnUse" 42.2574 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1159.6334,166.97355)" /> 42.2575 + <linearGradient 42.2576 + x1="529.11237" 42.2577 + y1="333.99472" 42.2578 + x2="526.08197" 42.2579 + y2="321.36786" 42.2580 + id="linearGradient6560" 42.2581 + xlink:href="#linearGradient3296" 42.2582 + gradientUnits="userSpaceOnUse" 42.2583 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,166.97355)" /> 42.2584 + <linearGradient 42.2585 + x1="275.72681" 42.2586 + y1="571.90552" 42.2587 + x2="352.27246" 42.2588 + y2="571.90552" 42.2589 + id="linearGradient6605" 42.2590 + xlink:href="#linearGradient3248" 42.2591 + gradientUnits="userSpaceOnUse" 42.2592 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,190.10497)" /> 42.2593 + <linearGradient 42.2594 + x1="332.91602" 42.2595 + y1="520.33307" 42.2596 + x2="355.81863" 42.2597 + y2="535.99042" 42.2598 + id="linearGradient6609" 42.2599 + xlink:href="#linearGradient3262" 42.2600 + gradientUnits="userSpaceOnUse" 42.2601 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,222.86641)" /> 42.2602 + <linearGradient 42.2603 + x1="338.63031" 42.2604 + y1="522.47595" 42.2605 + x2="358.67578" 42.2606 + y2="538.1333" 42.2607 + id="linearGradient6612" 42.2608 + xlink:href="#linearGradient3276" 42.2609 + gradientUnits="userSpaceOnUse" 42.2610 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,222.86641)" /> 42.2611 + <linearGradient 42.2612 + x1="529.11237" 42.2613 + y1="333.99472" 42.2614 + x2="526.08197" 42.2615 + y2="321.36786" 42.2616 + id="linearGradient6616" 42.2617 + xlink:href="#linearGradient3296" 42.2618 + gradientUnits="userSpaceOnUse" 42.2619 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,222.86641)" /> 42.2620 + <linearGradient 42.2621 + x1="275.72681" 42.2622 + y1="571.90552" 42.2623 + x2="352.27246" 42.2624 + y2="571.90552" 42.2625 + id="linearGradient6633" 42.2626 + xlink:href="#linearGradient3248" 42.2627 + gradientUnits="userSpaceOnUse" 42.2628 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1056.5461,190.10497)" /> 42.2629 + <linearGradient 42.2630 + x1="332.91602" 42.2631 + y1="520.33307" 42.2632 + x2="355.81863" 42.2633 + y2="535.99042" 42.2634 + id="linearGradient6637" 42.2635 + xlink:href="#linearGradient3262" 42.2636 + gradientUnits="userSpaceOnUse" 42.2637 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,222.86641)" /> 42.2638 + <linearGradient 42.2639 + x1="338.63031" 42.2640 + y1="522.47595" 42.2641 + x2="358.67578" 42.2642 + y2="538.1333" 42.2643 + id="linearGradient6640" 42.2644 + xlink:href="#linearGradient3276" 42.2645 + gradientUnits="userSpaceOnUse" 42.2646 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.7013,222.86641)" /> 42.2647 + <linearGradient 42.2648 + x1="529.11237" 42.2649 + y1="333.99472" 42.2650 + x2="526.08197" 42.2651 + y2="321.36786" 42.2652 + id="linearGradient6644" 42.2653 + xlink:href="#linearGradient3296" 42.2654 + gradientUnits="userSpaceOnUse" 42.2655 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,222.86641)" /> 42.2656 + <linearGradient 42.2657 + x1="275.72681" 42.2658 + y1="571.90552" 42.2659 + x2="352.27246" 42.2660 + y2="571.90552" 42.2661 + id="linearGradient6662" 42.2662 + xlink:href="#linearGradient3248" 42.2663 + gradientUnits="userSpaceOnUse" 42.2664 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1001.4782,190.10497)" /> 42.2665 + <linearGradient 42.2666 + x1="332.91602" 42.2667 + y1="520.33307" 42.2668 + x2="355.81863" 42.2669 + y2="535.99042" 42.2670 + id="linearGradient6666" 42.2671 + xlink:href="#linearGradient3262" 42.2672 + gradientUnits="userSpaceOnUse" 42.2673 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,222.86641)" /> 42.2674 + <linearGradient 42.2675 + x1="338.63031" 42.2676 + y1="522.47595" 42.2677 + x2="358.67578" 42.2678 + y2="538.1333" 42.2679 + id="linearGradient6669" 42.2680 + xlink:href="#linearGradient3276" 42.2681 + gradientUnits="userSpaceOnUse" 42.2682 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1159.6334,222.86641)" /> 42.2683 + <linearGradient 42.2684 + x1="529.11237" 42.2685 + y1="333.99472" 42.2686 + x2="526.08197" 42.2687 + y2="321.36786" 42.2688 + id="linearGradient6673" 42.2689 + xlink:href="#linearGradient3296" 42.2690 + gradientUnits="userSpaceOnUse" 42.2691 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,222.86641)" /> 42.2692 + <linearGradient 42.2693 + x1="275.72681" 42.2694 + y1="571.90552" 42.2695 + x2="352.27246" 42.2696 + y2="571.90552" 42.2697 + id="linearGradient6690" 42.2698 + xlink:href="#linearGradient3248" 42.2699 + gradientUnits="userSpaceOnUse" 42.2700 + gradientTransform="matrix(0.2087115,0,0,0.4968771,1166.682,52.842408)" /> 42.2701 + <linearGradient 42.2702 + x1="332.91602" 42.2703 + y1="520.33307" 42.2704 + x2="355.81863" 42.2705 + y2="535.99042" 42.2706 + id="linearGradient6694" 42.2707 + xlink:href="#linearGradient3262" 42.2708 + gradientUnits="userSpaceOnUse" 42.2709 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,278.75927)" /> 42.2710 + <linearGradient 42.2711 + x1="338.63031" 42.2712 + y1="522.47595" 42.2713 + x2="358.67578" 42.2714 + y2="538.1333" 42.2715 + id="linearGradient6697" 42.2716 + xlink:href="#linearGradient3276" 42.2717 + gradientUnits="userSpaceOnUse" 42.2718 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1324.8372,278.75927)" /> 42.2719 + <linearGradient 42.2720 + x1="529.11237" 42.2721 + y1="333.99472" 42.2722 + x2="526.08197" 42.2723 + y2="321.36786" 42.2724 + id="linearGradient6701" 42.2725 + xlink:href="#linearGradient3296" 42.2726 + gradientUnits="userSpaceOnUse" 42.2727 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,222.86641)" /> 42.2728 + <linearGradient 42.2729 + x1="275.72681" 42.2730 + y1="571.90552" 42.2731 + x2="352.27246" 42.2732 + y2="571.90552" 42.2733 + id="linearGradient6718" 42.2734 + xlink:href="#linearGradient3248" 42.2735 + gradientUnits="userSpaceOnUse" 42.2736 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,245.99783)" /> 42.2737 + <linearGradient 42.2738 + x1="332.91602" 42.2739 + y1="520.33307" 42.2740 + x2="355.81863" 42.2741 + y2="535.99042" 42.2742 + id="linearGradient6722" 42.2743 + xlink:href="#linearGradient3262" 42.2744 + gradientUnits="userSpaceOnUse" 42.2745 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,278.75927)" /> 42.2746 + <linearGradient 42.2747 + x1="338.63031" 42.2748 + y1="522.47595" 42.2749 + x2="358.67578" 42.2750 + y2="538.1333" 42.2751 + id="linearGradient6725" 42.2752 + xlink:href="#linearGradient3276" 42.2753 + gradientUnits="userSpaceOnUse" 42.2754 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,278.75927)" /> 42.2755 + <linearGradient 42.2756 + x1="529.11237" 42.2757 + y1="333.99472" 42.2758 + x2="526.08197" 42.2759 + y2="321.36786" 42.2760 + id="linearGradient6729" 42.2761 + xlink:href="#linearGradient3296" 42.2762 + gradientUnits="userSpaceOnUse" 42.2763 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,278.75927)" /> 42.2764 + <linearGradient 42.2765 + x1="275.72681" 42.2766 + y1="571.90552" 42.2767 + x2="352.27246" 42.2768 + y2="571.90552" 42.2769 + id="linearGradient6746" 42.2770 + xlink:href="#linearGradient3248" 42.2771 + gradientUnits="userSpaceOnUse" 42.2772 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1056.5461,245.99783)" /> 42.2773 + <linearGradient 42.2774 + x1="332.91602" 42.2775 + y1="520.33307" 42.2776 + x2="355.81863" 42.2777 + y2="535.99042" 42.2778 + id="linearGradient6750" 42.2779 + xlink:href="#linearGradient3262" 42.2780 + gradientUnits="userSpaceOnUse" 42.2781 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,278.75927)" /> 42.2782 + <linearGradient 42.2783 + x1="338.63031" 42.2784 + y1="522.47595" 42.2785 + x2="358.67578" 42.2786 + y2="538.1333" 42.2787 + id="linearGradient6753" 42.2788 + xlink:href="#linearGradient3276" 42.2789 + gradientUnits="userSpaceOnUse" 42.2790 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.7013,278.75927)" /> 42.2791 + <linearGradient 42.2792 + x1="529.11237" 42.2793 + y1="333.99472" 42.2794 + x2="526.08197" 42.2795 + y2="321.36786" 42.2796 + id="linearGradient6757" 42.2797 + xlink:href="#linearGradient3296" 42.2798 + gradientUnits="userSpaceOnUse" 42.2799 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,278.75927)" /> 42.2800 + <linearGradient 42.2801 + x1="275.72681" 42.2802 + y1="571.90552" 42.2803 + x2="352.27246" 42.2804 + y2="571.90552" 42.2805 + id="linearGradient6775" 42.2806 + xlink:href="#linearGradient3248" 42.2807 + gradientUnits="userSpaceOnUse" 42.2808 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1001.4782,245.99783)" /> 42.2809 + <linearGradient 42.2810 + x1="332.91602" 42.2811 + y1="520.33307" 42.2812 + x2="355.81863" 42.2813 + y2="535.99042" 42.2814 + id="linearGradient6779" 42.2815 + xlink:href="#linearGradient3262" 42.2816 + gradientUnits="userSpaceOnUse" 42.2817 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,278.75927)" /> 42.2818 + <linearGradient 42.2819 + x1="338.63031" 42.2820 + y1="522.47595" 42.2821 + x2="358.67578" 42.2822 + y2="538.1333" 42.2823 + id="linearGradient6782" 42.2824 + xlink:href="#linearGradient3276" 42.2825 + gradientUnits="userSpaceOnUse" 42.2826 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1159.6334,278.75927)" /> 42.2827 + <linearGradient 42.2828 + x1="529.11237" 42.2829 + y1="333.99472" 42.2830 + x2="526.08197" 42.2831 + y2="321.36786" 42.2832 + id="linearGradient6786" 42.2833 + xlink:href="#linearGradient3296" 42.2834 + gradientUnits="userSpaceOnUse" 42.2835 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,278.75927)" /> 42.2836 + <linearGradient 42.2837 + x1="275.72681" 42.2838 + y1="571.90552" 42.2839 + x2="352.27246" 42.2840 + y2="571.90552" 42.2841 + id="linearGradient6831" 42.2842 + xlink:href="#linearGradient3248" 42.2843 + gradientUnits="userSpaceOnUse" 42.2844 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,301.89068)" /> 42.2845 + <linearGradient 42.2846 + x1="332.91602" 42.2847 + y1="520.33307" 42.2848 + x2="355.81863" 42.2849 + y2="535.99042" 42.2850 + id="linearGradient6835" 42.2851 + xlink:href="#linearGradient3262" 42.2852 + gradientUnits="userSpaceOnUse" 42.2853 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,334.65212)" /> 42.2854 + <linearGradient 42.2855 + x1="338.63031" 42.2856 + y1="522.47595" 42.2857 + x2="358.67578" 42.2858 + y2="538.1333" 42.2859 + id="linearGradient6838" 42.2860 + xlink:href="#linearGradient3276" 42.2861 + gradientUnits="userSpaceOnUse" 42.2862 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,334.65212)" /> 42.2863 + <linearGradient 42.2864 + x1="529.11237" 42.2865 + y1="333.99472" 42.2866 + x2="526.08197" 42.2867 + y2="321.36786" 42.2868 + id="linearGradient6842" 42.2869 + xlink:href="#linearGradient3296" 42.2870 + gradientUnits="userSpaceOnUse" 42.2871 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,334.65212)" /> 42.2872 + <linearGradient 42.2873 + x1="275.72681" 42.2874 + y1="571.90552" 42.2875 + x2="352.27246" 42.2876 + y2="571.90552" 42.2877 + id="linearGradient6859" 42.2878 + xlink:href="#linearGradient3248" 42.2879 + gradientUnits="userSpaceOnUse" 42.2880 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1056.5461,301.89068)" /> 42.2881 + <linearGradient 42.2882 + x1="332.91602" 42.2883 + y1="520.33307" 42.2884 + x2="355.81863" 42.2885 + y2="535.99042" 42.2886 + id="linearGradient6863" 42.2887 + xlink:href="#linearGradient3262" 42.2888 + gradientUnits="userSpaceOnUse" 42.2889 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,334.65212)" /> 42.2890 + <linearGradient 42.2891 + x1="338.63031" 42.2892 + y1="522.47595" 42.2893 + x2="358.67578" 42.2894 + y2="538.1333" 42.2895 + id="linearGradient6866" 42.2896 + xlink:href="#linearGradient3276" 42.2897 + gradientUnits="userSpaceOnUse" 42.2898 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.7013,334.65212)" /> 42.2899 + <linearGradient 42.2900 + x1="529.11237" 42.2901 + y1="333.99472" 42.2902 + x2="526.08197" 42.2903 + y2="321.36786" 42.2904 + id="linearGradient6870" 42.2905 + xlink:href="#linearGradient3296" 42.2906 + gradientUnits="userSpaceOnUse" 42.2907 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,334.65212)" /> 42.2908 + <linearGradient 42.2909 + x1="275.72681" 42.2910 + y1="571.90552" 42.2911 + x2="352.27246" 42.2912 + y2="571.90552" 42.2913 + id="linearGradient6888" 42.2914 + xlink:href="#linearGradient3248" 42.2915 + gradientUnits="userSpaceOnUse" 42.2916 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1001.4782,301.89068)" /> 42.2917 + <linearGradient 42.2918 + x1="332.91602" 42.2919 + y1="520.33307" 42.2920 + x2="355.81863" 42.2921 + y2="535.99042" 42.2922 + id="linearGradient6892" 42.2923 + xlink:href="#linearGradient3262" 42.2924 + gradientUnits="userSpaceOnUse" 42.2925 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,334.65212)" /> 42.2926 + <linearGradient 42.2927 + x1="338.63031" 42.2928 + y1="522.47595" 42.2929 + x2="358.67578" 42.2930 + y2="538.1333" 42.2931 + id="linearGradient6895" 42.2932 + xlink:href="#linearGradient3276" 42.2933 + gradientUnits="userSpaceOnUse" 42.2934 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1159.6334,334.65212)" /> 42.2935 + <linearGradient 42.2936 + x1="529.11237" 42.2937 + y1="333.99472" 42.2938 + x2="526.08197" 42.2939 + y2="321.36786" 42.2940 + id="linearGradient6899" 42.2941 + xlink:href="#linearGradient3296" 42.2942 + gradientUnits="userSpaceOnUse" 42.2943 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,334.65212)" /> 42.2944 + <linearGradient 42.2945 + x1="275.72681" 42.2946 + y1="571.90552" 42.2947 + x2="352.27246" 42.2948 + y2="571.90552" 42.2949 + id="linearGradient6916" 42.2950 + xlink:href="#linearGradient3248" 42.2951 + gradientUnits="userSpaceOnUse" 42.2952 + gradientTransform="matrix(0.2087115,0,0,0.4959541,1166.682,165.24519)" /> 42.2953 + <linearGradient 42.2954 + x1="332.91602" 42.2955 + y1="520.33307" 42.2956 + x2="355.81863" 42.2957 + y2="535.99042" 42.2958 + id="linearGradient6920" 42.2959 + xlink:href="#linearGradient3262" 42.2960 + gradientUnits="userSpaceOnUse" 42.2961 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,390.54498)" /> 42.2962 + <linearGradient 42.2963 + x1="338.63031" 42.2964 + y1="522.47595" 42.2965 + x2="358.67578" 42.2966 + y2="538.1333" 42.2967 + id="linearGradient6923" 42.2968 + xlink:href="#linearGradient3276" 42.2969 + gradientUnits="userSpaceOnUse" 42.2970 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1324.8372,390.54498)" /> 42.2971 + <linearGradient 42.2972 + x1="275.72681" 42.2973 + y1="571.90552" 42.2974 + x2="352.27246" 42.2975 + y2="571.90552" 42.2976 + id="linearGradient6945" 42.2977 + xlink:href="#linearGradient3248" 42.2978 + gradientUnits="userSpaceOnUse" 42.2979 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,357.78354)" /> 42.2980 + <linearGradient 42.2981 + x1="332.91602" 42.2982 + y1="520.33307" 42.2983 + x2="355.81863" 42.2984 + y2="535.99042" 42.2985 + id="linearGradient6949" 42.2986 + xlink:href="#linearGradient3262" 42.2987 + gradientUnits="userSpaceOnUse" 42.2988 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,390.54498)" /> 42.2989 + <linearGradient 42.2990 + x1="338.63031" 42.2991 + y1="522.47595" 42.2992 + x2="358.67578" 42.2993 + y2="538.1333" 42.2994 + id="linearGradient6952" 42.2995 + xlink:href="#linearGradient3276" 42.2996 + gradientUnits="userSpaceOnUse" 42.2997 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,390.54498)" /> 42.2998 + <linearGradient 42.2999 + x1="529.11237" 42.3000 + y1="333.99472" 42.3001 + x2="526.08197" 42.3002 + y2="321.36786" 42.3003 + id="linearGradient6956" 42.3004 + xlink:href="#linearGradient3296" 42.3005 + gradientUnits="userSpaceOnUse" 42.3006 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,390.54498)" /> 42.3007 + <linearGradient 42.3008 + x1="275.72681" 42.3009 + y1="571.90552" 42.3010 + x2="352.27246" 42.3011 + y2="571.90552" 42.3012 + id="linearGradient7003" 42.3013 + xlink:href="#linearGradient3248" 42.3014 + gradientUnits="userSpaceOnUse" 42.3015 + gradientTransform="matrix(0.5259383,0,0,0.2080024,930.43566,357.78354)" /> 42.3016 + <linearGradient 42.3017 + x1="332.91602" 42.3018 + y1="520.33307" 42.3019 + x2="355.81863" 42.3020 + y2="535.99042" 42.3021 + id="linearGradient7007" 42.3022 + xlink:href="#linearGradient3262" 42.3023 + gradientUnits="userSpaceOnUse" 42.3024 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,390.54498)" /> 42.3025 + <linearGradient 42.3026 + x1="338.63031" 42.3027 + y1="522.47595" 42.3028 + x2="358.67578" 42.3029 + y2="538.1333" 42.3030 + id="linearGradient7010" 42.3031 + xlink:href="#linearGradient3276" 42.3032 + gradientUnits="userSpaceOnUse" 42.3033 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.2763,390.54498)" /> 42.3034 + <linearGradient 42.3035 + x1="529.11237" 42.3036 + y1="333.99472" 42.3037 + x2="526.08197" 42.3038 + y2="321.36786" 42.3039 + id="linearGradient7014" 42.3040 + xlink:href="#linearGradient3296" 42.3041 + gradientUnits="userSpaceOnUse" 42.3042 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.391,390.54498)" /> 42.3043 + <linearGradient 42.3044 + x1="529.11237" 42.3045 + y1="333.99472" 42.3046 + x2="526.08197" 42.3047 + y2="321.36786" 42.3048 + id="linearGradient7038" 42.3049 + xlink:href="#linearGradient3296" 42.3050 + gradientUnits="userSpaceOnUse" 42.3051 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,334.83069)" /> 42.3052 + <linearGradient 42.3053 + x1="529.11237" 42.3054 + y1="333.99472" 42.3055 + x2="526.08197" 42.3056 + y2="321.36786" 42.3057 + id="linearGradient7068" 42.3058 + xlink:href="#linearGradient3296" 42.3059 + gradientUnits="userSpaceOnUse" 42.3060 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-24.772563,222.53194)" /> 42.3061 + <linearGradient 42.3062 + x1="338.63031" 42.3063 + y1="522.47595" 42.3064 + x2="358.67578" 42.3065 + y2="538.1333" 42.3066 + id="linearGradient7070" 42.3067 + xlink:href="#linearGradient3276" 42.3068 + gradientUnits="userSpaceOnUse" 42.3069 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,160.1126,222.53194)" /> 42.3070 + <linearGradient 42.3071 + x1="332.91602" 42.3072 + y1="520.33307" 42.3073 + x2="355.81863" 42.3074 + y2="535.99042" 42.3075 + id="linearGradient7072" 42.3076 + xlink:href="#linearGradient3262" 42.3077 + gradientUnits="userSpaceOnUse" 42.3078 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.272563,222.53194)" /> 42.3079 + <linearGradient 42.3080 + x1="275.72681" 42.3081 + y1="571.90552" 42.3082 + x2="352.27246" 42.3083 + y2="571.90552" 42.3084 + id="linearGradient7074" 42.3085 + xlink:href="#linearGradient3248" 42.3086 + gradientUnits="userSpaceOnUse" 42.3087 + gradientTransform="matrix(0.3683753,0,0,0.2080024,-61.29905,189.7705)" /> 42.3088 + <linearGradient 42.3089 + x1="332.91602" 42.3090 + y1="520.33307" 42.3091 + x2="355.81863" 42.3092 + y2="535.99042" 42.3093 + id="linearGradient7102" 42.3094 + xlink:href="#linearGradient3262" 42.3095 + gradientUnits="userSpaceOnUse" 42.3096 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.373,278.60337)" /> 42.3097 + <linearGradient 42.3098 + x1="275.72681" 42.3099 + y1="571.90552" 42.3100 + x2="352.27246" 42.3101 + y2="571.90552" 42.3102 + id="linearGradient7104" 42.3103 + xlink:href="#linearGradient3248" 42.3104 + gradientUnits="userSpaceOnUse" 42.3105 + gradientTransform="matrix(0.3253081,0,0,0.2080024,-51.754649,245.84193)" /> 42.3106 + <linearGradient 42.3107 + x1="529.11237" 42.3108 + y1="333.99472" 42.3109 + x2="526.08197" 42.3110 + y2="321.36786" 42.3111 + id="linearGradient7128" 42.3112 + xlink:href="#linearGradient3296" 42.3113 + gradientUnits="userSpaceOnUse" 42.3114 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-41.302548,335.17192)" /> 42.3115 + <linearGradient 42.3116 + x1="338.63031" 42.3117 + y1="522.47595" 42.3118 + x2="358.67578" 42.3119 + y2="538.1333" 42.3120 + id="linearGradient7130" 42.3121 + xlink:href="#linearGradient3276" 42.3122 + gradientUnits="userSpaceOnUse" 42.3123 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,143.58262,335.17192)" /> 42.3124 + <linearGradient 42.3125 + x1="332.91602" 42.3126 + y1="520.33307" 42.3127 + x2="355.81863" 42.3128 + y2="535.99042" 42.3129 + id="linearGradient7132" 42.3130 + xlink:href="#linearGradient3262" 42.3131 + gradientUnits="userSpaceOnUse" 42.3132 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.373977,335.17192)" /> 42.3133 + <linearGradient 42.3134 + x1="275.72681" 42.3135 + y1="571.90552" 42.3136 + x2="352.27246" 42.3137 + y2="571.90552" 42.3138 + id="linearGradient7134" 42.3139 + xlink:href="#linearGradient3248" 42.3140 + gradientUnits="userSpaceOnUse" 42.3141 + gradientTransform="matrix(0.2722619,0,0,0.2080024,-39.876006,302.41048)" /> 42.3142 + <linearGradient 42.3143 + x1="529.11237" 42.3144 + y1="333.99472" 42.3145 + x2="526.08197" 42.3146 + y2="321.36786" 42.3147 + id="linearGradient7244" 42.3148 + xlink:href="#linearGradient3296" 42.3149 + gradientUnits="userSpaceOnUse" 42.3150 + gradientTransform="matrix(0.2087115,0,0,0.2080024,727.57489,222.53194)" /> 42.3151 + <linearGradient 42.3152 + x1="338.63031" 42.3153 + y1="522.47595" 42.3154 + x2="358.67578" 42.3155 + y2="538.1333" 42.3156 + id="linearGradient7246" 42.3157 + xlink:href="#linearGradient3276" 42.3158 + gradientUnits="userSpaceOnUse" 42.3159 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,912.46004,278.36081)" /> 42.3160 + <linearGradient 42.3161 + x1="332.91602" 42.3162 + y1="520.33307" 42.3163 + x2="355.81863" 42.3164 + y2="535.99042" 42.3165 + id="linearGradient7248" 42.3166 + xlink:href="#linearGradient3262" 42.3167 + gradientUnits="userSpaceOnUse" 42.3168 + gradientTransform="matrix(0.2087115,0,0,0.2080024,715.78918,278.36081)" /> 42.3169 + <linearGradient 42.3170 + x1="529.11237" 42.3171 + y1="333.99472" 42.3172 + x2="526.08197" 42.3173 + y2="321.36786" 42.3174 + id="linearGradient7258" 42.3175 + xlink:href="#linearGradient3296" 42.3176 + gradientUnits="userSpaceOnUse" 42.3177 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-29.644568,278.60337)" /> 42.3178 + <linearGradient 42.3179 + x1="338.63031" 42.3180 + y1="522.47595" 42.3181 + x2="358.67578" 42.3182 + y2="538.1333" 42.3183 + id="linearGradient7260" 42.3184 + xlink:href="#linearGradient3276" 42.3185 + gradientUnits="userSpaceOnUse" 42.3186 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,155.2406,278.60337)" /> 42.3187 + <linearGradient 42.3188 + x1="529.11237" 42.3189 + y1="333.99472" 42.3190 + x2="526.08197" 42.3191 + y2="321.36786" 42.3192 + id="linearGradient7268" 42.3193 + xlink:href="#linearGradient3296" 42.3194 + gradientUnits="userSpaceOnUse" 42.3195 + gradientTransform="matrix(0.1035438,0,0,0.2080024,45.066,278.60337)" /> 42.3196 + <linearGradient 42.3197 + x1="338.63031" 42.3198 + y1="522.47595" 42.3199 + x2="358.67578" 42.3200 + y2="538.1333" 42.3201 + id="linearGradient7270" 42.3202 + xlink:href="#linearGradient3276" 42.3203 + gradientUnits="userSpaceOnUse" 42.3204 + gradientTransform="matrix(-0.1035438,0,0,0.1080024,136.78929,335.06871)" /> 42.3205 + <linearGradient 42.3206 + x1="275.72681" 42.3207 + y1="571.90552" 42.3208 + x2="352.27246" 42.3209 + y2="571.90552" 42.3210 + id="linearGradient7276" 42.3211 + xlink:href="#linearGradient3248" 42.3212 + gradientUnits="userSpaceOnUse" 42.3213 + gradientTransform="matrix(0.1036159,0,0,0.243243,56.229312,229.09687)" /> 42.3214 + <linearGradient 42.3215 + x1="275.72681" 42.3216 + y1="571.90552" 42.3217 + x2="352.27246" 42.3218 + y2="571.90552" 42.3219 + id="linearGradient7282" 42.3220 + xlink:href="#linearGradient3248" 42.3221 + gradientUnits="userSpaceOnUse" 42.3222 + gradientTransform="matrix(0.53404,0,0,0.2080024,626.61798,134.21211)" /> 42.3223 + <linearGradient 42.3224 + x1="332.91602" 42.3225 + y1="520.33307" 42.3226 + x2="355.81863" 42.3227 + y2="535.99042" 42.3228 + id="linearGradient7286" 42.3229 + xlink:href="#linearGradient3262" 42.3230 + gradientUnits="userSpaceOnUse" 42.3231 + gradientTransform="matrix(0.2087115,0,0,0.2080024,672.23982,166.97355)" /> 42.3232 + <linearGradient 42.3233 + x1="338.63031" 42.3234 + y1="522.47595" 42.3235 + x2="358.67578" 42.3236 + y2="538.1333" 42.3237 + id="linearGradient7289" 42.3238 + xlink:href="#linearGradient3276" 42.3239 + gradientUnits="userSpaceOnUse" 42.3240 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,912.9359,166.97355)" /> 42.3241 + <linearGradient 42.3242 + x1="529.11237" 42.3243 + y1="333.99472" 42.3244 + x2="526.08197" 42.3245 + y2="321.36786" 42.3246 + id="linearGradient7293" 42.3247 + xlink:href="#linearGradient3296" 42.3248 + gradientUnits="userSpaceOnUse" 42.3249 + gradientTransform="matrix(0.2087115,0,0,0.2080024,728.05075,166.97355)" /> 42.3250 + <linearGradient 42.3251 + x1="529.11237" 42.3252 + y1="333.99472" 42.3253 + x2="526.08197" 42.3254 + y2="321.36786" 42.3255 + id="linearGradient7319" 42.3256 + xlink:href="#linearGradient3296" 42.3257 + gradientUnits="userSpaceOnUse" 42.3258 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-40.341344,391.72016)" /> 42.3259 + <linearGradient 42.3260 + x1="338.63031" 42.3261 + y1="522.47595" 42.3262 + x2="358.67578" 42.3263 + y2="538.1333" 42.3264 + id="linearGradient7321" 42.3265 + xlink:href="#linearGradient3276" 42.3266 + gradientUnits="userSpaceOnUse" 42.3267 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,144.54382,390.73031)" /> 42.3268 + <linearGradient 42.3269 + x1="332.91602" 42.3270 + y1="520.33307" 42.3271 + x2="355.81863" 42.3272 + y2="535.99042" 42.3273 + id="linearGradient7323" 42.3274 + xlink:href="#linearGradient3262" 42.3275 + gradientUnits="userSpaceOnUse" 42.3276 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.598958,390.73031)" /> 42.3277 + <linearGradient 42.3278 + x1="275.72681" 42.3279 + y1="571.90552" 42.3280 + x2="352.27246" 42.3281 + y2="571.90552" 42.3282 + id="linearGradient7325" 42.3283 + xlink:href="#linearGradient3248" 42.3284 + gradientUnits="userSpaceOnUse" 42.3285 + gradientTransform="matrix(0.2688275,0,0,0.2080024,-38.617572,357.96887)" /> 42.3286 + <linearGradient 42.3287 + x1="529.11237" 42.3288 + y1="333.99472" 42.3289 + x2="526.08197" 42.3290 + y2="321.36786" 42.3291 + id="linearGradient7349" 42.3292 + xlink:href="#linearGradient3296" 42.3293 + gradientUnits="userSpaceOnUse" 42.3294 + gradientTransform="matrix(0.2087115,0,0,0.2080024,27.158656,391.72016)" /> 42.3295 + <linearGradient 42.3296 + x1="338.63031" 42.3297 + y1="522.47595" 42.3298 + x2="358.67578" 42.3299 + y2="538.1333" 42.3300 + id="linearGradient7351" 42.3301 + xlink:href="#linearGradient3276" 42.3302 + gradientUnits="userSpaceOnUse" 42.3303 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,212.04382,390.73031)" /> 42.3304 + <linearGradient 42.3305 + x1="332.91602" 42.3306 + y1="520.33307" 42.3307 + x2="355.81863" 42.3308 + y2="535.99042" 42.3309 + id="linearGradient7353" 42.3310 + xlink:href="#linearGradient3262" 42.3311 + gradientUnits="userSpaceOnUse" 42.3312 + gradientTransform="matrix(0.2087115,0,0,0.2080024,14.901042,390.73031)" /> 42.3313 + <linearGradient 42.3314 + x1="275.72681" 42.3315 + y1="571.90552" 42.3316 + x2="352.27246" 42.3317 + y2="571.90552" 42.3318 + id="linearGradient7355" 42.3319 + xlink:href="#linearGradient3248" 42.3320 + gradientUnits="userSpaceOnUse" 42.3321 + gradientTransform="matrix(0.2688275,0,0,0.2080024,28.882428,357.96887)" /> 42.3322 + <linearGradient 42.3323 + x1="529.11237" 42.3324 + y1="333.99472" 42.3325 + x2="526.08197" 42.3326 + y2="321.36786" 42.3327 + id="linearGradient7379" 42.3328 + xlink:href="#linearGradient3296" 42.3329 + gradientUnits="userSpaceOnUse" 42.3330 + gradientTransform="matrix(0.2087115,0,0,0.2080024,95.372942,391.72016)" /> 42.3331 + <linearGradient 42.3332 + x1="338.63031" 42.3333 + y1="522.47595" 42.3334 + x2="358.67578" 42.3335 + y2="538.1333" 42.3336 + id="linearGradient7381" 42.3337 + xlink:href="#linearGradient3276" 42.3338 + gradientUnits="userSpaceOnUse" 42.3339 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,280.25811,390.73031)" /> 42.3340 + <linearGradient 42.3341 + x1="332.91602" 42.3342 + y1="520.33307" 42.3343 + x2="355.81863" 42.3344 + y2="535.99042" 42.3345 + id="linearGradient7383" 42.3346 + xlink:href="#linearGradient3262" 42.3347 + gradientUnits="userSpaceOnUse" 42.3348 + gradientTransform="matrix(0.2087115,0,0,0.2080024,83.115328,390.73031)" /> 42.3349 + <linearGradient 42.3350 + x1="275.72681" 42.3351 + y1="571.90552" 42.3352 + x2="352.27246" 42.3353 + y2="571.90552" 42.3354 + id="linearGradient7385" 42.3355 + xlink:href="#linearGradient3248" 42.3356 + gradientUnits="userSpaceOnUse" 42.3357 + gradientTransform="matrix(0.2688275,0,0,0.2080024,97.096714,357.96887)" /> 42.3358 + <linearGradient 42.3359 + x1="529.11237" 42.3360 + y1="333.99472" 42.3361 + x2="526.08197" 42.3362 + y2="321.36786" 42.3363 + id="linearGradient7409" 42.3364 + xlink:href="#linearGradient3296" 42.3365 + gradientUnits="userSpaceOnUse" 42.3366 + gradientTransform="matrix(0.2087115,0,0,0.2080024,457.33723,391.00587)" /> 42.3367 + <linearGradient 42.3368 + x1="338.63031" 42.3369 + y1="522.47595" 42.3370 + x2="358.67578" 42.3371 + y2="538.1333" 42.3372 + id="linearGradient7411" 42.3373 + xlink:href="#linearGradient3276" 42.3374 + gradientUnits="userSpaceOnUse" 42.3375 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,642.2224,390.01602)" /> 42.3376 + <linearGradient 42.3377 + x1="332.91602" 42.3378 + y1="520.33307" 42.3379 + x2="355.81863" 42.3380 + y2="535.99042" 42.3381 + id="linearGradient7413" 42.3382 + xlink:href="#linearGradient3262" 42.3383 + gradientUnits="userSpaceOnUse" 42.3384 + gradientTransform="matrix(0.2087115,0,0,0.2080024,150.97247,390.73031)" /> 42.3385 + <linearGradient 42.3386 + x1="275.72681" 42.3387 + y1="571.90552" 42.3388 + x2="352.27246" 42.3389 + y2="571.90552" 42.3390 + id="linearGradient7415" 42.3391 + xlink:href="#linearGradient3248" 42.3392 + gradientUnits="userSpaceOnUse" 42.3393 + gradientTransform="matrix(1.996292,0,0,0.2080024,-221.90924,357.96887)" /> 42.3394 + <linearGradient 42.3395 + x1="529.11237" 42.3396 + y1="333.99472" 42.3397 + x2="526.08197" 42.3398 + y2="321.36786" 42.3399 + id="linearGradient7463" 42.3400 + xlink:href="#linearGradient3296" 42.3401 + gradientUnits="userSpaceOnUse" 42.3402 + gradientTransform="matrix(0.2087115,0,0,0.2080024,524.65866,391.72016)" /> 42.3403 + <linearGradient 42.3404 + x1="338.63031" 42.3405 + y1="522.47595" 42.3406 + x2="358.67578" 42.3407 + y2="538.1333" 42.3408 + id="linearGradient7465" 42.3409 + xlink:href="#linearGradient3276" 42.3410 + gradientUnits="userSpaceOnUse" 42.3411 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,709.54383,390.73031)" /> 42.3412 + <linearGradient 42.3413 + x1="332.91602" 42.3414 + y1="520.33307" 42.3415 + x2="355.81863" 42.3416 + y2="535.99042" 42.3417 + id="linearGradient7467" 42.3418 + xlink:href="#linearGradient3262" 42.3419 + gradientUnits="userSpaceOnUse" 42.3420 + gradientTransform="matrix(0.2087115,0,0,0.2080024,512.40105,390.73031)" /> 42.3421 + <linearGradient 42.3422 + x1="275.72681" 42.3423 + y1="571.90552" 42.3424 + x2="352.27246" 42.3425 + y2="571.90552" 42.3426 + id="linearGradient7469" 42.3427 + xlink:href="#linearGradient3248" 42.3428 + gradientUnits="userSpaceOnUse" 42.3429 + gradientTransform="matrix(0.2688275,0,0,0.2080024,526.38243,357.96887)" /> 42.3430 + <linearGradient 42.3431 + x1="529.11237" 42.3432 + y1="333.99472" 42.3433 + x2="526.08197" 42.3434 + y2="321.36786" 42.3435 + id="linearGradient7493" 42.3436 + xlink:href="#linearGradient3296" 42.3437 + gradientUnits="userSpaceOnUse" 42.3438 + gradientTransform="matrix(0.2087115,0,0,0.2080024,728.11496,391.72016)" /> 42.3439 + <linearGradient 42.3440 + x1="338.63031" 42.3441 + y1="522.47595" 42.3442 + x2="358.67578" 42.3443 + y2="538.1333" 42.3444 + id="linearGradient7495" 42.3445 + xlink:href="#linearGradient3276" 42.3446 + gradientUnits="userSpaceOnUse" 42.3447 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,913.00013,390.73031)" /> 42.3448 + <linearGradient 42.3449 + x1="332.91602" 42.3450 + y1="520.33307" 42.3451 + x2="355.81863" 42.3452 + y2="535.99042" 42.3453 + id="linearGradient7497" 42.3454 + xlink:href="#linearGradient3262" 42.3455 + gradientUnits="userSpaceOnUse" 42.3456 + gradientTransform="matrix(0.2087115,0,0,0.2080024,715.85735,390.73031)" /> 42.3457 + <linearGradient 42.3458 + x1="275.72681" 42.3459 + y1="571.90552" 42.3460 + x2="352.27246" 42.3461 + y2="571.90552" 42.3462 + id="linearGradient7499" 42.3463 + xlink:href="#linearGradient3248" 42.3464 + gradientUnits="userSpaceOnUse" 42.3465 + gradientTransform="matrix(0.2688275,0,0,0.2080024,729.83873,357.96887)" /> 42.3466 + <linearGradient 42.3467 + x1="529.11237" 42.3468 + y1="333.99472" 42.3469 + x2="526.08197" 42.3470 + y2="321.36786" 42.3471 + id="linearGradient7523" 42.3472 + xlink:href="#linearGradient3296" 42.3473 + gradientUnits="userSpaceOnUse" 42.3474 + gradientTransform="matrix(0.2087115,0,0,0.2080024,660.20014,391.72016)" /> 42.3475 + <linearGradient 42.3476 + x1="338.63031" 42.3477 + y1="522.47595" 42.3478 + x2="358.67578" 42.3479 + y2="538.1333" 42.3480 + id="linearGradient7525" 42.3481 + xlink:href="#linearGradient3276" 42.3482 + gradientUnits="userSpaceOnUse" 42.3483 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,845.08531,390.73031)" /> 42.3484 + <linearGradient 42.3485 + x1="332.91602" 42.3486 + y1="520.33307" 42.3487 + x2="355.81863" 42.3488 + y2="535.99042" 42.3489 + id="linearGradient7527" 42.3490 + xlink:href="#linearGradient3262" 42.3491 + gradientUnits="userSpaceOnUse" 42.3492 + gradientTransform="matrix(0.2087115,0,0,0.2080024,647.94253,390.73031)" /> 42.3493 + <linearGradient 42.3494 + x1="275.72681" 42.3495 + y1="571.90552" 42.3496 + x2="352.27246" 42.3497 + y2="571.90552" 42.3498 + id="linearGradient7529" 42.3499 + xlink:href="#linearGradient3248" 42.3500 + gradientUnits="userSpaceOnUse" 42.3501 + gradientTransform="matrix(0.2688275,0,0,0.2080024,661.92391,357.96887)" /> 42.3502 + <linearGradient 42.3503 + x1="529.11237" 42.3504 + y1="333.99472" 42.3505 + x2="526.08197" 42.3506 + y2="321.36786" 42.3507 + id="linearGradient7553" 42.3508 + xlink:href="#linearGradient3296" 42.3509 + gradientUnits="userSpaceOnUse" 42.3510 + gradientTransform="matrix(0.2087115,0,0,0.2080024,592.28533,391.72016)" /> 42.3511 + <linearGradient 42.3512 + x1="338.63031" 42.3513 + y1="522.47595" 42.3514 + x2="358.67578" 42.3515 + y2="538.1333" 42.3516 + id="linearGradient7555" 42.3517 + xlink:href="#linearGradient3276" 42.3518 + gradientUnits="userSpaceOnUse" 42.3519 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,777.1705,390.73031)" /> 42.3520 + <linearGradient 42.3521 + x1="332.91602" 42.3522 + y1="520.33307" 42.3523 + x2="355.81863" 42.3524 + y2="535.99042" 42.3525 + id="linearGradient7557" 42.3526 + xlink:href="#linearGradient3262" 42.3527 + gradientUnits="userSpaceOnUse" 42.3528 + gradientTransform="matrix(0.2087115,0,0,0.2080024,580.02772,390.73031)" /> 42.3529 + <linearGradient 42.3530 + x1="275.72681" 42.3531 + y1="571.90552" 42.3532 + x2="352.27246" 42.3533 + y2="571.90552" 42.3534 + id="linearGradient7559" 42.3535 + xlink:href="#linearGradient3248" 42.3536 + gradientUnits="userSpaceOnUse" 42.3537 + gradientTransform="matrix(0.2688275,0,0,0.2080024,594.0091,357.96887)" /> 42.3538 + <linearGradient 42.3539 + x1="922.37616" 42.3540 + y1="80.363686" 42.3541 + x2="965.76581" 42.3542 + y2="-63.077972" 42.3543 + id="linearGradient7593" 42.3544 + xlink:href="#linearGradient7587" 42.3545 + gradientUnits="userSpaceOnUse" 42.3546 + gradientTransform="matrix(0.9507468,0,0,0.9709903,47.993979,-2.6547568)" /> 42.3547 + <linearGradient 42.3548 + x1="332.91602" 42.3549 + y1="520.33307" 42.3550 + x2="355.81863" 42.3551 + y2="535.99042" 42.3552 + id="linearGradient7604" 42.3553 + xlink:href="#linearGradient3262" 42.3554 + gradientUnits="userSpaceOnUse" 42.3555 + gradientTransform="matrix(0.2087115,0,0,0.1005106,701.53936,283.33101)" /> 42.3556 + <linearGradient 42.3557 + x1="275.72681" 42.3558 + y1="571.90552" 42.3559 + x2="352.27246" 42.3560 + y2="571.90552" 42.3561 + id="linearGradient7617" 42.3562 + xlink:href="#linearGradient3248" 42.3563 + gradientUnits="userSpaceOnUse" 42.3564 + gradientTransform="matrix(0.2780392,0,0,0.4959541,842.61747,127.19528)" /> 42.3565 + <linearGradient 42.3566 + x1="332.91602" 42.3567 + y1="520.33307" 42.3568 + x2="355.81863" 42.3569 + y2="535.99042" 42.3570 + id="linearGradient7622" 42.3571 + xlink:href="#linearGradient3262" 42.3572 + gradientUnits="userSpaceOnUse" 42.3573 + gradientTransform="matrix(-0.2087115,0,0,-0.1005106,856.41992,391.19243)" /> 42.3574 + <linearGradient 42.3575 + x1="580.34277" 42.3576 + y1="524.00671" 42.3577 + x2="580.08392" 42.3578 + y2="565.93982" 42.3579 + id="linearGradient7784" 42.3580 + xlink:href="#linearGradient7778" 42.3581 + gradientUnits="userSpaceOnUse" /> 42.3582 + <linearGradient 42.3583 + x1="275.72681" 42.3584 + y1="571.90552" 42.3585 + x2="352.27246" 42.3586 + y2="571.90552" 42.3587 + id="linearGradient7810" 42.3588 + xlink:href="#linearGradient3248" 42.3589 + gradientUnits="userSpaceOnUse" 42.3590 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-25.743959,134.21211)" /> 42.3591 + <linearGradient 42.3592 + x1="332.91602" 42.3593 + y1="520.33307" 42.3594 + x2="355.81863" 42.3595 + y2="535.99042" 42.3596 + id="linearGradient7814" 42.3597 + xlink:href="#linearGradient3262" 42.3598 + gradientUnits="userSpaceOnUse" 42.3599 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.473949,166.97355)" /> 42.3600 + <linearGradient 42.3601 + x1="338.63031" 42.3602 + y1="522.47595" 42.3603 + x2="358.67578" 42.3604 + y2="538.1333" 42.3605 + id="linearGradient7817" 42.3606 + xlink:href="#linearGradient3276" 42.3607 + gradientUnits="userSpaceOnUse" 42.3608 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,132.41124,166.97355)" /> 42.3609 + <linearGradient 42.3610 + x1="529.11237" 42.3611 + y1="333.99472" 42.3612 + x2="526.08197" 42.3613 + y2="321.36786" 42.3614 + id="linearGradient7821" 42.3615 + xlink:href="#linearGradient3296" 42.3616 + gradientUnits="userSpaceOnUse" 42.3617 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.473949,166.97355)" /> 42.3618 + <linearGradient 42.3619 + x1="275.72681" 42.3620 + y1="571.90552" 42.3621 + x2="352.27246" 42.3622 + y2="571.90552" 42.3623 + id="linearGradient7829" 42.3624 + xlink:href="#linearGradient3248" 42.3625 + gradientUnits="userSpaceOnUse" 42.3626 + gradientTransform="matrix(0.2087115,0,0,0.2080024,141.31271,134.21211)" /> 42.3627 + <linearGradient 42.3628 + x1="332.91602" 42.3629 + y1="520.33307" 42.3630 + x2="355.81863" 42.3631 + y2="535.99042" 42.3632 + id="linearGradient7833" 42.3633 + xlink:href="#linearGradient3262" 42.3634 + gradientUnits="userSpaceOnUse" 42.3635 + gradientTransform="matrix(0.2087115,0,0,0.2080024,114.58272,166.97355)" /> 42.3636 + <linearGradient 42.3637 + x1="338.63031" 42.3638 + y1="522.47595" 42.3639 + x2="358.67578" 42.3640 + y2="538.1333" 42.3641 + id="linearGradient7836" 42.3642 + xlink:href="#linearGradient3276" 42.3643 + gradientUnits="userSpaceOnUse" 42.3644 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,299.46787,166.97355)" /> 42.3645 + <linearGradient 42.3646 + x1="529.11237" 42.3647 + y1="333.99472" 42.3648 + x2="526.08197" 42.3649 + y2="321.36786" 42.3650 + id="linearGradient7840" 42.3651 + xlink:href="#linearGradient3296" 42.3652 + gradientUnits="userSpaceOnUse" 42.3653 + gradientTransform="matrix(0.2087115,0,0,0.2080024,114.58272,166.97355)" /> 42.3654 + <linearGradient 42.3655 + x1="275.72681" 42.3656 + y1="571.90552" 42.3657 + x2="352.27246" 42.3658 + y2="571.90552" 42.3659 + id="linearGradient7848" 42.3660 + xlink:href="#linearGradient3248" 42.3661 + gradientUnits="userSpaceOnUse" 42.3662 + gradientTransform="matrix(0.2087115,0,0,0.2080024,196.99825,134.21211)" /> 42.3663 + <linearGradient 42.3664 + x1="332.91602" 42.3665 + y1="520.33307" 42.3666 + x2="355.81863" 42.3667 + y2="535.99042" 42.3668 + id="linearGradient7852" 42.3669 + xlink:href="#linearGradient3262" 42.3670 + gradientUnits="userSpaceOnUse" 42.3671 + gradientTransform="matrix(0.2087115,0,0,0.2080024,170.26826,166.97355)" /> 42.3672 + <linearGradient 42.3673 + x1="338.63031" 42.3674 + y1="522.47595" 42.3675 + x2="358.67578" 42.3676 + y2="538.1333" 42.3677 + id="linearGradient7855" 42.3678 + xlink:href="#linearGradient3276" 42.3679 + gradientUnits="userSpaceOnUse" 42.3680 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,355.15341,166.97355)" /> 42.3681 + <linearGradient 42.3682 + x1="529.11237" 42.3683 + y1="333.99472" 42.3684 + x2="526.08197" 42.3685 + y2="321.36786" 42.3686 + id="linearGradient7859" 42.3687 + xlink:href="#linearGradient3296" 42.3688 + gradientUnits="userSpaceOnUse" 42.3689 + gradientTransform="matrix(0.2087115,0,0,0.2080024,170.26826,166.97355)" /> 42.3690 + <linearGradient 42.3691 + x1="275.72681" 42.3692 + y1="571.90552" 42.3693 + x2="352.27246" 42.3694 + y2="571.90552" 42.3695 + id="linearGradient7867" 42.3696 + xlink:href="#linearGradient3248" 42.3697 + gradientUnits="userSpaceOnUse" 42.3698 + gradientTransform="matrix(0.2087115,0,0,0.2080024,252.68378,134.21211)" /> 42.3699 + <linearGradient 42.3700 + x1="332.91602" 42.3701 + y1="520.33307" 42.3702 + x2="355.81863" 42.3703 + y2="535.99042" 42.3704 + id="linearGradient7871" 42.3705 + xlink:href="#linearGradient3262" 42.3706 + gradientUnits="userSpaceOnUse" 42.3707 + gradientTransform="matrix(0.2087115,0,0,0.2080024,225.95379,166.97355)" /> 42.3708 + <linearGradient 42.3709 + x1="338.63031" 42.3710 + y1="522.47595" 42.3711 + x2="358.67578" 42.3712 + y2="538.1333" 42.3713 + id="linearGradient7874" 42.3714 + xlink:href="#linearGradient3276" 42.3715 + gradientUnits="userSpaceOnUse" 42.3716 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,410.83894,166.97355)" /> 42.3717 + <linearGradient 42.3718 + x1="529.11237" 42.3719 + y1="333.99472" 42.3720 + x2="526.08197" 42.3721 + y2="321.36786" 42.3722 + id="linearGradient7878" 42.3723 + xlink:href="#linearGradient3296" 42.3724 + gradientUnits="userSpaceOnUse" 42.3725 + gradientTransform="matrix(0.2087115,0,0,0.2080024,225.95379,166.97355)" /> 42.3726 + <linearGradient 42.3727 + x1="275.72681" 42.3728 + y1="571.90552" 42.3729 + x2="352.27246" 42.3730 + y2="571.90552" 42.3731 + id="linearGradient7886" 42.3732 + xlink:href="#linearGradient3248" 42.3733 + gradientUnits="userSpaceOnUse" 42.3734 + gradientTransform="matrix(0.2087115,0,0,0.2080024,308.36932,134.21211)" /> 42.3735 + <linearGradient 42.3736 + x1="332.91602" 42.3737 + y1="520.33307" 42.3738 + x2="355.81863" 42.3739 + y2="535.99042" 42.3740 + id="linearGradient7890" 42.3741 + xlink:href="#linearGradient3262" 42.3742 + gradientUnits="userSpaceOnUse" 42.3743 + gradientTransform="matrix(0.2087115,0,0,0.2080024,281.63933,166.97355)" /> 42.3744 + <linearGradient 42.3745 + x1="338.63031" 42.3746 + y1="522.47595" 42.3747 + x2="358.67578" 42.3748 + y2="538.1333" 42.3749 + id="linearGradient7893" 42.3750 + xlink:href="#linearGradient3276" 42.3751 + gradientUnits="userSpaceOnUse" 42.3752 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,466.52448,166.97355)" /> 42.3753 + <linearGradient 42.3754 + x1="529.11237" 42.3755 + y1="333.99472" 42.3756 + x2="526.08197" 42.3757 + y2="321.36786" 42.3758 + id="linearGradient7897" 42.3759 + xlink:href="#linearGradient3296" 42.3760 + gradientUnits="userSpaceOnUse" 42.3761 + gradientTransform="matrix(0.2087115,0,0,0.2080024,281.63933,166.97355)" /> 42.3762 + <linearGradient 42.3763 + x1="275.72681" 42.3764 + y1="571.90552" 42.3765 + x2="352.27246" 42.3766 + y2="571.90552" 42.3767 + id="linearGradient7905" 42.3768 + xlink:href="#linearGradient3248" 42.3769 + gradientUnits="userSpaceOnUse" 42.3770 + gradientTransform="matrix(0.2087115,0,0,0.2080024,364.05485,134.21211)" /> 42.3771 + <linearGradient 42.3772 + x1="332.91602" 42.3773 + y1="520.33307" 42.3774 + x2="355.81863" 42.3775 + y2="535.99042" 42.3776 + id="linearGradient7909" 42.3777 + xlink:href="#linearGradient3262" 42.3778 + gradientUnits="userSpaceOnUse" 42.3779 + gradientTransform="matrix(0.2087115,0,0,0.2080024,337.32486,166.97355)" /> 42.3780 + <linearGradient 42.3781 + x1="338.63031" 42.3782 + y1="522.47595" 42.3783 + x2="358.67578" 42.3784 + y2="538.1333" 42.3785 + id="linearGradient7912" 42.3786 + xlink:href="#linearGradient3276" 42.3787 + gradientUnits="userSpaceOnUse" 42.3788 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,522.21001,166.97355)" /> 42.3789 + <linearGradient 42.3790 + x1="529.11237" 42.3791 + y1="333.99472" 42.3792 + x2="526.08197" 42.3793 + y2="321.36786" 42.3794 + id="linearGradient7916" 42.3795 + xlink:href="#linearGradient3296" 42.3796 + gradientUnits="userSpaceOnUse" 42.3797 + gradientTransform="matrix(0.2087115,0,0,0.2080024,337.32486,166.97355)" /> 42.3798 + <linearGradient 42.3799 + x1="275.72681" 42.3800 + y1="571.90552" 42.3801 + x2="352.27246" 42.3802 + y2="571.90552" 42.3803 + id="linearGradient7924" 42.3804 + xlink:href="#linearGradient3248" 42.3805 + gradientUnits="userSpaceOnUse" 42.3806 + gradientTransform="matrix(0.2087115,0,0,0.2080024,419.74037,134.21211)" /> 42.3807 + <linearGradient 42.3808 + x1="332.91602" 42.3809 + y1="520.33307" 42.3810 + x2="355.81863" 42.3811 + y2="535.99042" 42.3812 + id="linearGradient7928" 42.3813 + xlink:href="#linearGradient3262" 42.3814 + gradientUnits="userSpaceOnUse" 42.3815 + gradientTransform="matrix(0.2087115,0,0,0.2080024,393.01038,166.97355)" /> 42.3816 + <linearGradient 42.3817 + x1="338.63031" 42.3818 + y1="522.47595" 42.3819 + x2="358.67578" 42.3820 + y2="538.1333" 42.3821 + id="linearGradient7931" 42.3822 + xlink:href="#linearGradient3276" 42.3823 + gradientUnits="userSpaceOnUse" 42.3824 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,577.89553,166.97355)" /> 42.3825 + <linearGradient 42.3826 + x1="529.11237" 42.3827 + y1="333.99472" 42.3828 + x2="526.08197" 42.3829 + y2="321.36786" 42.3830 + id="linearGradient7935" 42.3831 + xlink:href="#linearGradient3296" 42.3832 + gradientUnits="userSpaceOnUse" 42.3833 + gradientTransform="matrix(0.2087115,0,0,0.2080024,393.01038,166.97355)" /> 42.3834 + <linearGradient 42.3835 + x1="275.72681" 42.3836 + y1="571.90552" 42.3837 + x2="352.27246" 42.3838 + y2="571.90552" 42.3839 + id="linearGradient7943" 42.3840 + xlink:href="#linearGradient3248" 42.3841 + gradientUnits="userSpaceOnUse" 42.3842 + gradientTransform="matrix(0.2087115,0,0,0.2080024,475.42591,134.21211)" /> 42.3843 + <linearGradient 42.3844 + x1="332.91602" 42.3845 + y1="520.33307" 42.3846 + x2="355.81863" 42.3847 + y2="535.99042" 42.3848 + id="linearGradient7947" 42.3849 + xlink:href="#linearGradient3262" 42.3850 + gradientUnits="userSpaceOnUse" 42.3851 + gradientTransform="matrix(0.2087115,0,0,0.2080024,448.69592,166.97355)" /> 42.3852 + <linearGradient 42.3853 + x1="338.63031" 42.3854 + y1="522.47595" 42.3855 + x2="358.67578" 42.3856 + y2="538.1333" 42.3857 + id="linearGradient7950" 42.3858 + xlink:href="#linearGradient3276" 42.3859 + gradientUnits="userSpaceOnUse" 42.3860 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,633.58107,166.97355)" /> 42.3861 + <linearGradient 42.3862 + x1="529.11237" 42.3863 + y1="333.99472" 42.3864 + x2="526.08197" 42.3865 + y2="321.36786" 42.3866 + id="linearGradient7954" 42.3867 + xlink:href="#linearGradient3296" 42.3868 + gradientUnits="userSpaceOnUse" 42.3869 + gradientTransform="matrix(0.2087115,0,0,0.2080024,448.69592,166.97355)" /> 42.3870 + <linearGradient 42.3871 + x1="275.72681" 42.3872 + y1="571.90552" 42.3873 + x2="352.27246" 42.3874 + y2="571.90552" 42.3875 + id="linearGradient7962" 42.3876 + xlink:href="#linearGradient3248" 42.3877 + gradientUnits="userSpaceOnUse" 42.3878 + gradientTransform="matrix(0.2087115,0,0,0.2080024,531.11147,134.21211)" /> 42.3879 + <linearGradient 42.3880 + x1="332.91602" 42.3881 + y1="520.33307" 42.3882 + x2="355.81863" 42.3883 + y2="535.99042" 42.3884 + id="linearGradient7966" 42.3885 + xlink:href="#linearGradient3262" 42.3886 + gradientUnits="userSpaceOnUse" 42.3887 + gradientTransform="matrix(0.2087115,0,0,0.2080024,504.38148,166.97355)" /> 42.3888 + <linearGradient 42.3889 + x1="338.63031" 42.3890 + y1="522.47595" 42.3891 + x2="358.67578" 42.3892 + y2="538.1333" 42.3893 + id="linearGradient7969" 42.3894 + xlink:href="#linearGradient3276" 42.3895 + gradientUnits="userSpaceOnUse" 42.3896 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,689.26663,166.97355)" /> 42.3897 + <linearGradient 42.3898 + x1="529.11237" 42.3899 + y1="333.99472" 42.3900 + x2="526.08197" 42.3901 + y2="321.36786" 42.3902 + id="linearGradient7973" 42.3903 + xlink:href="#linearGradient3296" 42.3904 + gradientUnits="userSpaceOnUse" 42.3905 + gradientTransform="matrix(0.2087115,0,0,0.2080024,504.38148,166.97355)" /> 42.3906 + <linearGradient 42.3907 + x1="275.72681" 42.3908 + y1="571.90552" 42.3909 + x2="352.27246" 42.3910 + y2="571.90552" 42.3911 + id="linearGradient7981" 42.3912 + xlink:href="#linearGradient3248" 42.3913 + gradientUnits="userSpaceOnUse" 42.3914 + gradientTransform="matrix(0.2087115,0,0,0.2080024,586.797,134.21211)" /> 42.3915 + <linearGradient 42.3916 + x1="332.91602" 42.3917 + y1="520.33307" 42.3918 + x2="355.81863" 42.3919 + y2="535.99042" 42.3920 + id="linearGradient7985" 42.3921 + xlink:href="#linearGradient3262" 42.3922 + gradientUnits="userSpaceOnUse" 42.3923 + gradientTransform="matrix(0.2087115,0,0,0.2080024,560.06701,166.97355)" /> 42.3924 + <linearGradient 42.3925 + x1="338.63031" 42.3926 + y1="522.47595" 42.3927 + x2="358.67578" 42.3928 + y2="538.1333" 42.3929 + id="linearGradient7988" 42.3930 + xlink:href="#linearGradient3276" 42.3931 + gradientUnits="userSpaceOnUse" 42.3932 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,744.95216,166.97355)" /> 42.3933 + <linearGradient 42.3934 + x1="529.11237" 42.3935 + y1="333.99472" 42.3936 + x2="526.08197" 42.3937 + y2="321.36786" 42.3938 + id="linearGradient7992" 42.3939 + xlink:href="#linearGradient3296" 42.3940 + gradientUnits="userSpaceOnUse" 42.3941 + gradientTransform="matrix(0.2087115,0,0,0.2080024,560.06701,166.97355)" /> 42.3942 + <linearGradient 42.3943 + x1="275.72681" 42.3944 + y1="571.90552" 42.3945 + x2="352.27246" 42.3946 + y2="571.90552" 42.3947 + id="linearGradient8000" 42.3948 + xlink:href="#linearGradient3248" 42.3949 + gradientUnits="userSpaceOnUse" 42.3950 + gradientTransform="matrix(0.2087115,0,0,0.2080024,642.48252,134.21211)" /> 42.3951 + <linearGradient 42.3952 + x1="332.91602" 42.3953 + y1="520.33307" 42.3954 + x2="355.81863" 42.3955 + y2="535.99042" 42.3956 + id="linearGradient8004" 42.3957 + xlink:href="#linearGradient3262" 42.3958 + gradientUnits="userSpaceOnUse" 42.3959 + gradientTransform="matrix(0.2087115,0,0,0.2080024,615.75253,166.97355)" /> 42.3960 + <linearGradient 42.3961 + x1="338.63031" 42.3962 + y1="522.47595" 42.3963 + x2="358.67578" 42.3964 + y2="538.1333" 42.3965 + id="linearGradient8007" 42.3966 + xlink:href="#linearGradient3276" 42.3967 + gradientUnits="userSpaceOnUse" 42.3968 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,800.63768,166.97355)" /> 42.3969 + <linearGradient 42.3970 + x1="529.11237" 42.3971 + y1="333.99472" 42.3972 + x2="526.08197" 42.3973 + y2="321.36786" 42.3974 + id="linearGradient8011" 42.3975 + xlink:href="#linearGradient3296" 42.3976 + gradientUnits="userSpaceOnUse" 42.3977 + gradientTransform="matrix(0.2087115,0,0,0.2080024,615.75253,166.97355)" /> 42.3978 + <linearGradient 42.3979 + inkscape:collect="always" 42.3980 + xlink:href="#linearGradient7778" 42.3981 + id="linearGradient6241" 42.3982 + gradientUnits="userSpaceOnUse" 42.3983 + x1="580.34277" 42.3984 + y1="524.00671" 42.3985 + x2="580.08392" 42.3986 + y2="565.93982" /> 42.3987 + <linearGradient 42.3988 + inkscape:collect="always" 42.3989 + xlink:href="#linearGradient3248" 42.3990 + id="linearGradient6251" 42.3991 + gradientUnits="userSpaceOnUse" 42.3992 + gradientTransform="matrix(0.2688275,0,0,0.2080024,594.0091,357.96887)" 42.3993 + x1="275.72681" 42.3994 + y1="571.90552" 42.3995 + x2="352.27246" 42.3996 + y2="571.90552" /> 42.3997 + <linearGradient 42.3998 + inkscape:collect="always" 42.3999 + xlink:href="#linearGradient3262" 42.4000 + id="linearGradient6255" 42.4001 + gradientUnits="userSpaceOnUse" 42.4002 + gradientTransform="matrix(0.2087115,0,0,0.2080024,580.02772,390.73031)" 42.4003 + x1="332.91602" 42.4004 + y1="520.33307" 42.4005 + x2="355.81863" 42.4006 + y2="535.99042" /> 42.4007 + <linearGradient 42.4008 + inkscape:collect="always" 42.4009 + xlink:href="#linearGradient3276" 42.4010 + id="linearGradient6258" 42.4011 + gradientUnits="userSpaceOnUse" 42.4012 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,777.1705,390.73031)" 42.4013 + x1="338.63031" 42.4014 + y1="522.47595" 42.4015 + x2="358.67578" 42.4016 + y2="538.1333" /> 42.4017 + <linearGradient 42.4018 + inkscape:collect="always" 42.4019 + xlink:href="#linearGradient3296" 42.4020 + id="linearGradient6262" 42.4021 + gradientUnits="userSpaceOnUse" 42.4022 + gradientTransform="matrix(0.2087115,0,0,0.2080024,592.28533,391.72016)" 42.4023 + x1="529.11237" 42.4024 + y1="333.99472" 42.4025 + x2="526.08197" 42.4026 + y2="321.36786" /> 42.4027 + <linearGradient 42.4028 + inkscape:collect="always" 42.4029 + xlink:href="#linearGradient3248" 42.4030 + id="linearGradient6268" 42.4031 + gradientUnits="userSpaceOnUse" 42.4032 + gradientTransform="matrix(0.2688275,0,0,0.2080024,661.92391,357.96887)" 42.4033 + x1="275.72681" 42.4034 + y1="571.90552" 42.4035 + x2="352.27246" 42.4036 + y2="571.90552" /> 42.4037 + <linearGradient 42.4038 + inkscape:collect="always" 42.4039 + xlink:href="#linearGradient3262" 42.4040 + id="linearGradient6272" 42.4041 + gradientUnits="userSpaceOnUse" 42.4042 + gradientTransform="matrix(0.2087115,0,0,0.2080024,647.94253,390.73031)" 42.4043 + x1="332.91602" 42.4044 + y1="520.33307" 42.4045 + x2="355.81863" 42.4046 + y2="535.99042" /> 42.4047 + <linearGradient 42.4048 + inkscape:collect="always" 42.4049 + xlink:href="#linearGradient3276" 42.4050 + id="linearGradient6275" 42.4051 + gradientUnits="userSpaceOnUse" 42.4052 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,845.08531,390.73031)" 42.4053 + x1="338.63031" 42.4054 + y1="522.47595" 42.4055 + x2="358.67578" 42.4056 + y2="538.1333" /> 42.4057 + <linearGradient 42.4058 + inkscape:collect="always" 42.4059 + xlink:href="#linearGradient3296" 42.4060 + id="linearGradient6279" 42.4061 + gradientUnits="userSpaceOnUse" 42.4062 + gradientTransform="matrix(0.2087115,0,0,0.2080024,660.20014,391.72016)" 42.4063 + x1="529.11237" 42.4064 + y1="333.99472" 42.4065 + x2="526.08197" 42.4066 + y2="321.36786" /> 42.4067 + <linearGradient 42.4068 + inkscape:collect="always" 42.4069 + xlink:href="#linearGradient3248" 42.4070 + id="linearGradient6285" 42.4071 + gradientUnits="userSpaceOnUse" 42.4072 + gradientTransform="matrix(0.2688275,0,0,0.2080024,729.83873,357.96887)" 42.4073 + x1="275.72681" 42.4074 + y1="571.90552" 42.4075 + x2="352.27246" 42.4076 + y2="571.90552" /> 42.4077 + <linearGradient 42.4078 + inkscape:collect="always" 42.4079 + xlink:href="#linearGradient3262" 42.4080 + id="linearGradient6289" 42.4081 + gradientUnits="userSpaceOnUse" 42.4082 + gradientTransform="matrix(0.2087115,0,0,0.2080024,715.85735,390.73031)" 42.4083 + x1="332.91602" 42.4084 + y1="520.33307" 42.4085 + x2="355.81863" 42.4086 + y2="535.99042" /> 42.4087 + <linearGradient 42.4088 + inkscape:collect="always" 42.4089 + xlink:href="#linearGradient3276" 42.4090 + id="linearGradient6292" 42.4091 + gradientUnits="userSpaceOnUse" 42.4092 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,913.00013,390.73031)" 42.4093 + x1="338.63031" 42.4094 + y1="522.47595" 42.4095 + x2="358.67578" 42.4096 + y2="538.1333" /> 42.4097 + <linearGradient 42.4098 + inkscape:collect="always" 42.4099 + xlink:href="#linearGradient3296" 42.4100 + id="linearGradient6296" 42.4101 + gradientUnits="userSpaceOnUse" 42.4102 + gradientTransform="matrix(0.2087115,0,0,0.2080024,728.11496,391.72016)" 42.4103 + x1="529.11237" 42.4104 + y1="333.99472" 42.4105 + x2="526.08197" 42.4106 + y2="321.36786" /> 42.4107 + <linearGradient 42.4108 + inkscape:collect="always" 42.4109 + xlink:href="#linearGradient3248" 42.4110 + id="linearGradient6302" 42.4111 + gradientUnits="userSpaceOnUse" 42.4112 + gradientTransform="matrix(0.2688275,0,0,0.2080024,526.38243,357.96887)" 42.4113 + x1="275.72681" 42.4114 + y1="571.90552" 42.4115 + x2="352.27246" 42.4116 + y2="571.90552" /> 42.4117 + <linearGradient 42.4118 + inkscape:collect="always" 42.4119 + xlink:href="#linearGradient3262" 42.4120 + id="linearGradient6306" 42.4121 + gradientUnits="userSpaceOnUse" 42.4122 + gradientTransform="matrix(0.2087115,0,0,0.2080024,512.40105,390.73031)" 42.4123 + x1="332.91602" 42.4124 + y1="520.33307" 42.4125 + x2="355.81863" 42.4126 + y2="535.99042" /> 42.4127 + <linearGradient 42.4128 + inkscape:collect="always" 42.4129 + xlink:href="#linearGradient3276" 42.4130 + id="linearGradient6309" 42.4131 + gradientUnits="userSpaceOnUse" 42.4132 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,709.54383,390.73031)" 42.4133 + x1="338.63031" 42.4134 + y1="522.47595" 42.4135 + x2="358.67578" 42.4136 + y2="538.1333" /> 42.4137 + <linearGradient 42.4138 + inkscape:collect="always" 42.4139 + xlink:href="#linearGradient3296" 42.4140 + id="linearGradient6313" 42.4141 + gradientUnits="userSpaceOnUse" 42.4142 + gradientTransform="matrix(0.2087115,0,0,0.2080024,524.65866,391.72016)" 42.4143 + x1="529.11237" 42.4144 + y1="333.99472" 42.4145 + x2="526.08197" 42.4146 + y2="321.36786" /> 42.4147 + <linearGradient 42.4148 + inkscape:collect="always" 42.4149 + xlink:href="#linearGradient3248" 42.4150 + id="linearGradient6319" 42.4151 + gradientUnits="userSpaceOnUse" 42.4152 + gradientTransform="matrix(1.996292,0,0,0.2080024,-221.90924,357.96887)" 42.4153 + x1="275.72681" 42.4154 + y1="571.90552" 42.4155 + x2="352.27246" 42.4156 + y2="571.90552" /> 42.4157 + <linearGradient 42.4158 + inkscape:collect="always" 42.4159 + xlink:href="#linearGradient3262" 42.4160 + id="linearGradient6323" 42.4161 + gradientUnits="userSpaceOnUse" 42.4162 + gradientTransform="matrix(0.2087115,0,0,0.2080024,150.97247,390.73031)" 42.4163 + x1="332.91602" 42.4164 + y1="520.33307" 42.4165 + x2="355.81863" 42.4166 + y2="535.99042" /> 42.4167 + <linearGradient 42.4168 + inkscape:collect="always" 42.4169 + xlink:href="#linearGradient3276" 42.4170 + id="linearGradient6326" 42.4171 + gradientUnits="userSpaceOnUse" 42.4172 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,642.2224,390.01602)" 42.4173 + x1="338.63031" 42.4174 + y1="522.47595" 42.4175 + x2="358.67578" 42.4176 + y2="538.1333" /> 42.4177 + <linearGradient 42.4178 + inkscape:collect="always" 42.4179 + xlink:href="#linearGradient3296" 42.4180 + id="linearGradient6330" 42.4181 + gradientUnits="userSpaceOnUse" 42.4182 + gradientTransform="matrix(0.2087115,0,0,0.2080024,457.33723,391.00587)" 42.4183 + x1="529.11237" 42.4184 + y1="333.99472" 42.4185 + x2="526.08197" 42.4186 + y2="321.36786" /> 42.4187 + <linearGradient 42.4188 + inkscape:collect="always" 42.4189 + xlink:href="#linearGradient3248" 42.4190 + id="linearGradient6336" 42.4191 + gradientUnits="userSpaceOnUse" 42.4192 + gradientTransform="matrix(0.2688275,0,0,0.2080024,97.096714,357.96887)" 42.4193 + x1="275.72681" 42.4194 + y1="571.90552" 42.4195 + x2="352.27246" 42.4196 + y2="571.90552" /> 42.4197 + <linearGradient 42.4198 + inkscape:collect="always" 42.4199 + xlink:href="#linearGradient3262" 42.4200 + id="linearGradient6340" 42.4201 + gradientUnits="userSpaceOnUse" 42.4202 + gradientTransform="matrix(0.2087115,0,0,0.2080024,83.115328,390.73031)" 42.4203 + x1="332.91602" 42.4204 + y1="520.33307" 42.4205 + x2="355.81863" 42.4206 + y2="535.99042" /> 42.4207 + <linearGradient 42.4208 + inkscape:collect="always" 42.4209 + xlink:href="#linearGradient3276" 42.4210 + id="linearGradient6343" 42.4211 + gradientUnits="userSpaceOnUse" 42.4212 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,280.25811,390.73031)" 42.4213 + x1="338.63031" 42.4214 + y1="522.47595" 42.4215 + x2="358.67578" 42.4216 + y2="538.1333" /> 42.4217 + <linearGradient 42.4218 + inkscape:collect="always" 42.4219 + xlink:href="#linearGradient3296" 42.4220 + id="linearGradient6347" 42.4221 + gradientUnits="userSpaceOnUse" 42.4222 + gradientTransform="matrix(0.2087115,0,0,0.2080024,95.372942,391.72016)" 42.4223 + x1="529.11237" 42.4224 + y1="333.99472" 42.4225 + x2="526.08197" 42.4226 + y2="321.36786" /> 42.4227 + <linearGradient 42.4228 + inkscape:collect="always" 42.4229 + xlink:href="#linearGradient3248" 42.4230 + id="linearGradient6353" 42.4231 + gradientUnits="userSpaceOnUse" 42.4232 + gradientTransform="matrix(0.2688275,0,0,0.2080024,28.882428,357.96887)" 42.4233 + x1="275.72681" 42.4234 + y1="571.90552" 42.4235 + x2="352.27246" 42.4236 + y2="571.90552" /> 42.4237 + <linearGradient 42.4238 + inkscape:collect="always" 42.4239 + xlink:href="#linearGradient3262" 42.4240 + id="linearGradient6357" 42.4241 + gradientUnits="userSpaceOnUse" 42.4242 + gradientTransform="matrix(0.2087115,0,0,0.2080024,14.901042,390.73031)" 42.4243 + x1="332.91602" 42.4244 + y1="520.33307" 42.4245 + x2="355.81863" 42.4246 + y2="535.99042" /> 42.4247 + <linearGradient 42.4248 + inkscape:collect="always" 42.4249 + xlink:href="#linearGradient3276" 42.4250 + id="linearGradient6360" 42.4251 + gradientUnits="userSpaceOnUse" 42.4252 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,212.04382,390.73031)" 42.4253 + x1="338.63031" 42.4254 + y1="522.47595" 42.4255 + x2="358.67578" 42.4256 + y2="538.1333" /> 42.4257 + <linearGradient 42.4258 + inkscape:collect="always" 42.4259 + xlink:href="#linearGradient3296" 42.4260 + id="linearGradient6364" 42.4261 + gradientUnits="userSpaceOnUse" 42.4262 + gradientTransform="matrix(0.2087115,0,0,0.2080024,27.158656,391.72016)" 42.4263 + x1="529.11237" 42.4264 + y1="333.99472" 42.4265 + x2="526.08197" 42.4266 + y2="321.36786" /> 42.4267 + <linearGradient 42.4268 + inkscape:collect="always" 42.4269 + xlink:href="#linearGradient3248" 42.4270 + id="linearGradient6372" 42.4271 + gradientUnits="userSpaceOnUse" 42.4272 + gradientTransform="matrix(0.2688275,0,0,0.2080024,-38.617572,357.96887)" 42.4273 + x1="275.72681" 42.4274 + y1="571.90552" 42.4275 + x2="352.27246" 42.4276 + y2="571.90552" /> 42.4277 + <linearGradient 42.4278 + inkscape:collect="always" 42.4279 + xlink:href="#linearGradient3262" 42.4280 + id="linearGradient6376" 42.4281 + gradientUnits="userSpaceOnUse" 42.4282 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.598958,390.73031)" 42.4283 + x1="332.91602" 42.4284 + y1="520.33307" 42.4285 + x2="355.81863" 42.4286 + y2="535.99042" /> 42.4287 + <linearGradient 42.4288 + inkscape:collect="always" 42.4289 + xlink:href="#linearGradient3276" 42.4290 + id="linearGradient6379" 42.4291 + gradientUnits="userSpaceOnUse" 42.4292 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,144.54382,390.73031)" 42.4293 + x1="338.63031" 42.4294 + y1="522.47595" 42.4295 + x2="358.67578" 42.4296 + y2="538.1333" /> 42.4297 + <linearGradient 42.4298 + inkscape:collect="always" 42.4299 + xlink:href="#linearGradient3296" 42.4300 + id="linearGradient6383" 42.4301 + gradientUnits="userSpaceOnUse" 42.4302 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-40.341344,391.72016)" 42.4303 + x1="529.11237" 42.4304 + y1="333.99472" 42.4305 + x2="526.08197" 42.4306 + y2="321.36786" /> 42.4307 + <linearGradient 42.4308 + inkscape:collect="always" 42.4309 + xlink:href="#linearGradient3248" 42.4310 + id="linearGradient6388" 42.4311 + gradientUnits="userSpaceOnUse" 42.4312 + gradientTransform="matrix(0.3253081,0,0,0.2080024,-51.754649,245.84193)" 42.4313 + x1="275.72681" 42.4314 + y1="571.90552" 42.4315 + x2="352.27246" 42.4316 + y2="571.90552" /> 42.4317 + <linearGradient 42.4318 + inkscape:collect="always" 42.4319 + xlink:href="#linearGradient3276" 42.4320 + id="linearGradient6393" 42.4321 + gradientUnits="userSpaceOnUse" 42.4322 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,155.2406,278.60337)" 42.4323 + x1="338.63031" 42.4324 + y1="522.47595" 42.4325 + x2="358.67578" 42.4326 + y2="538.1333" /> 42.4327 + <linearGradient 42.4328 + inkscape:collect="always" 42.4329 + xlink:href="#linearGradient3296" 42.4330 + id="linearGradient6396" 42.4331 + gradientUnits="userSpaceOnUse" 42.4332 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-29.644568,278.60337)" 42.4333 + x1="529.11237" 42.4334 + y1="333.99472" 42.4335 + x2="526.08197" 42.4336 + y2="321.36786" /> 42.4337 + <linearGradient 42.4338 + inkscape:collect="always" 42.4339 + xlink:href="#linearGradient3248" 42.4340 + id="linearGradient6400" 42.4341 + gradientUnits="userSpaceOnUse" 42.4342 + gradientTransform="matrix(0.1036159,0,0,0.243243,56.229312,229.09687)" 42.4343 + x1="275.72681" 42.4344 + y1="571.90552" 42.4345 + x2="352.27246" 42.4346 + y2="571.90552" /> 42.4347 + <linearGradient 42.4348 + inkscape:collect="always" 42.4349 + xlink:href="#linearGradient3248" 42.4350 + id="linearGradient6404" 42.4351 + gradientUnits="userSpaceOnUse" 42.4352 + gradientTransform="matrix(0.2780392,0,0,0.4959541,726.9933,52.946465)" 42.4353 + x1="275.72681" 42.4354 + y1="571.90552" 42.4355 + x2="352.27246" 42.4356 + y2="571.90552" /> 42.4357 + <linearGradient 42.4358 + inkscape:collect="always" 42.4359 + xlink:href="#linearGradient3262" 42.4360 + id="linearGradient6408" 42.4361 + gradientUnits="userSpaceOnUse" 42.4362 + gradientTransform="matrix(0.2087115,0,0,0.2080024,715.78918,278.36081)" 42.4363 + x1="332.91602" 42.4364 + y1="520.33307" 42.4365 + x2="355.81863" 42.4366 + y2="535.99042" /> 42.4367 + <linearGradient 42.4368 + inkscape:collect="always" 42.4369 + xlink:href="#linearGradient3276" 42.4370 + id="linearGradient6411" 42.4371 + gradientUnits="userSpaceOnUse" 42.4372 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,912.46004,278.36081)" 42.4373 + x1="338.63031" 42.4374 + y1="522.47595" 42.4375 + x2="358.67578" 42.4376 + y2="538.1333" /> 42.4377 + <linearGradient 42.4378 + inkscape:collect="always" 42.4379 + xlink:href="#linearGradient3296" 42.4380 + id="linearGradient6415" 42.4381 + gradientUnits="userSpaceOnUse" 42.4382 + gradientTransform="matrix(0.2087115,0,0,0.2080024,727.57489,222.53194)" 42.4383 + x1="529.11237" 42.4384 + y1="333.99472" 42.4385 + x2="526.08197" 42.4386 + y2="321.36786" /> 42.4387 + <linearGradient 42.4388 + inkscape:collect="always" 42.4389 + xlink:href="#linearGradient3262" 42.4390 + id="linearGradient6419" 42.4391 + gradientUnits="userSpaceOnUse" 42.4392 + gradientTransform="matrix(-0.2087115,0,0,-0.1005106,856.41992,391.19243)" 42.4393 + x1="332.91602" 42.4394 + y1="520.33307" 42.4395 + x2="355.81863" 42.4396 + y2="535.99042" /> 42.4397 + <linearGradient 42.4398 + inkscape:collect="always" 42.4399 + xlink:href="#linearGradient3248" 42.4400 + id="linearGradient6424" 42.4401 + gradientUnits="userSpaceOnUse" 42.4402 + gradientTransform="matrix(0.53404,0,0,0.2080024,626.61798,134.21211)" 42.4403 + x1="275.72681" 42.4404 + y1="571.90552" 42.4405 + x2="352.27246" 42.4406 + y2="571.90552" /> 42.4407 + <linearGradient 42.4408 + inkscape:collect="always" 42.4409 + xlink:href="#linearGradient3262" 42.4410 + id="linearGradient6428" 42.4411 + gradientUnits="userSpaceOnUse" 42.4412 + gradientTransform="matrix(0.2087115,0,0,0.2080024,672.23982,166.97355)" 42.4413 + x1="332.91602" 42.4414 + y1="520.33307" 42.4415 + x2="355.81863" 42.4416 + y2="535.99042" /> 42.4417 + <linearGradient 42.4418 + inkscape:collect="always" 42.4419 + xlink:href="#linearGradient3276" 42.4420 + id="linearGradient6431" 42.4421 + gradientUnits="userSpaceOnUse" 42.4422 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,912.9359,166.97355)" 42.4423 + x1="338.63031" 42.4424 + y1="522.47595" 42.4425 + x2="358.67578" 42.4426 + y2="538.1333" /> 42.4427 + <linearGradient 42.4428 + inkscape:collect="always" 42.4429 + xlink:href="#linearGradient3296" 42.4430 + id="linearGradient6435" 42.4431 + gradientUnits="userSpaceOnUse" 42.4432 + gradientTransform="matrix(0.2087115,0,0,0.2080024,728.05075,166.97355)" 42.4433 + x1="529.11237" 42.4434 + y1="333.99472" 42.4435 + x2="526.08197" 42.4436 + y2="321.36786" /> 42.4437 + <linearGradient 42.4438 + inkscape:collect="always" 42.4439 + xlink:href="#linearGradient3248" 42.4440 + id="linearGradient6441" 42.4441 + gradientUnits="userSpaceOnUse" 42.4442 + gradientTransform="matrix(0.2722619,0,0,0.2080024,-39.876006,302.41048)" 42.4443 + x1="275.72681" 42.4444 + y1="571.90552" 42.4445 + x2="352.27246" 42.4446 + y2="571.90552" /> 42.4447 + <linearGradient 42.4448 + inkscape:collect="always" 42.4449 + xlink:href="#linearGradient3262" 42.4450 + id="linearGradient6445" 42.4451 + gradientUnits="userSpaceOnUse" 42.4452 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.373977,335.17192)" 42.4453 + x1="332.91602" 42.4454 + y1="520.33307" 42.4455 + x2="355.81863" 42.4456 + y2="535.99042" /> 42.4457 + <linearGradient 42.4458 + inkscape:collect="always" 42.4459 + xlink:href="#linearGradient3276" 42.4460 + id="linearGradient6448" 42.4461 + gradientUnits="userSpaceOnUse" 42.4462 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,143.58262,335.17192)" 42.4463 + x1="338.63031" 42.4464 + y1="522.47595" 42.4465 + x2="358.67578" 42.4466 + y2="538.1333" /> 42.4467 + <linearGradient 42.4468 + inkscape:collect="always" 42.4469 + xlink:href="#linearGradient3296" 42.4470 + id="linearGradient6452" 42.4471 + gradientUnits="userSpaceOnUse" 42.4472 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-41.302548,335.17192)" 42.4473 + x1="529.11237" 42.4474 + y1="333.99472" 42.4475 + x2="526.08197" 42.4476 + y2="321.36786" /> 42.4477 + <linearGradient 42.4478 + inkscape:collect="always" 42.4479 + xlink:href="#linearGradient3262" 42.4480 + id="linearGradient6457" 42.4481 + gradientUnits="userSpaceOnUse" 42.4482 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.373,278.60337)" 42.4483 + x1="332.91602" 42.4484 + y1="520.33307" 42.4485 + x2="355.81863" 42.4486 + y2="535.99042" /> 42.4487 + <linearGradient 42.4488 + inkscape:collect="always" 42.4489 + xlink:href="#linearGradient3248" 42.4490 + id="linearGradient6461" 42.4491 + gradientUnits="userSpaceOnUse" 42.4492 + gradientTransform="matrix(0.3683753,0,0,0.2080024,-61.29905,189.7705)" 42.4493 + x1="275.72681" 42.4494 + y1="571.90552" 42.4495 + x2="352.27246" 42.4496 + y2="571.90552" /> 42.4497 + <linearGradient 42.4498 + inkscape:collect="always" 42.4499 + xlink:href="#linearGradient3262" 42.4500 + id="linearGradient6465" 42.4501 + gradientUnits="userSpaceOnUse" 42.4502 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.272563,222.53194)" 42.4503 + x1="332.91602" 42.4504 + y1="520.33307" 42.4505 + x2="355.81863" 42.4506 + y2="535.99042" /> 42.4507 + <linearGradient 42.4508 + inkscape:collect="always" 42.4509 + xlink:href="#linearGradient3276" 42.4510 + id="linearGradient6469" 42.4511 + gradientUnits="userSpaceOnUse" 42.4512 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,160.1126,222.53194)" 42.4513 + x1="338.63031" 42.4514 + y1="522.47595" 42.4515 + x2="358.67578" 42.4516 + y2="538.1333" /> 42.4517 + <linearGradient 42.4518 + inkscape:collect="always" 42.4519 + xlink:href="#linearGradient3296" 42.4520 + id="linearGradient6473" 42.4521 + gradientUnits="userSpaceOnUse" 42.4522 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-24.772563,222.53194)" 42.4523 + x1="529.11237" 42.4524 + y1="333.99472" 42.4525 + x2="526.08197" 42.4526 + y2="321.36786" /> 42.4527 + <linearGradient 42.4528 + inkscape:collect="always" 42.4529 + xlink:href="#linearGradient3248" 42.4530 + id="linearGradient6481" 42.4531 + gradientUnits="userSpaceOnUse" 42.4532 + gradientTransform="matrix(0.2087115,0,0,0.4959541,1166.682,165.24519)" 42.4533 + x1="275.72681" 42.4534 + y1="571.90552" 42.4535 + x2="352.27246" 42.4536 + y2="571.90552" /> 42.4537 + <linearGradient 42.4538 + inkscape:collect="always" 42.4539 + xlink:href="#linearGradient3262" 42.4540 + id="linearGradient6485" 42.4541 + gradientUnits="userSpaceOnUse" 42.4542 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,390.54498)" 42.4543 + x1="332.91602" 42.4544 + y1="520.33307" 42.4545 + x2="355.81863" 42.4546 + y2="535.99042" /> 42.4547 + <linearGradient 42.4548 + inkscape:collect="always" 42.4549 + xlink:href="#linearGradient3276" 42.4550 + id="linearGradient6488" 42.4551 + gradientUnits="userSpaceOnUse" 42.4552 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1324.8372,390.54498)" 42.4553 + x1="338.63031" 42.4554 + y1="522.47595" 42.4555 + x2="358.67578" 42.4556 + y2="538.1333" /> 42.4557 + <linearGradient 42.4558 + inkscape:collect="always" 42.4559 + xlink:href="#linearGradient3296" 42.4560 + id="linearGradient6493" 42.4561 + gradientUnits="userSpaceOnUse" 42.4562 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,334.83069)" 42.4563 + x1="529.11237" 42.4564 + y1="333.99472" 42.4565 + x2="526.08197" 42.4566 + y2="321.36786" /> 42.4567 + <linearGradient 42.4568 + inkscape:collect="always" 42.4569 + xlink:href="#linearGradient3248" 42.4570 + id="linearGradient6500" 42.4571 + gradientUnits="userSpaceOnUse" 42.4572 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,357.78354)" 42.4573 + x1="275.72681" 42.4574 + y1="571.90552" 42.4575 + x2="352.27246" 42.4576 + y2="571.90552" /> 42.4577 + <linearGradient 42.4578 + inkscape:collect="always" 42.4579 + xlink:href="#linearGradient3262" 42.4580 + id="linearGradient6504" 42.4581 + gradientUnits="userSpaceOnUse" 42.4582 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,390.54498)" 42.4583 + x1="332.91602" 42.4584 + y1="520.33307" 42.4585 + x2="355.81863" 42.4586 + y2="535.99042" /> 42.4587 + <linearGradient 42.4588 + inkscape:collect="always" 42.4589 + xlink:href="#linearGradient3276" 42.4590 + id="linearGradient6507" 42.4591 + gradientUnits="userSpaceOnUse" 42.4592 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,390.54498)" 42.4593 + x1="338.63031" 42.4594 + y1="522.47595" 42.4595 + x2="358.67578" 42.4596 + y2="538.1333" /> 42.4597 + <linearGradient 42.4598 + inkscape:collect="always" 42.4599 + xlink:href="#linearGradient3296" 42.4600 + id="linearGradient6511" 42.4601 + gradientUnits="userSpaceOnUse" 42.4602 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,390.54498)" 42.4603 + x1="529.11237" 42.4604 + y1="333.99472" 42.4605 + x2="526.08197" 42.4606 + y2="321.36786" /> 42.4607 + <linearGradient 42.4608 + inkscape:collect="always" 42.4609 + xlink:href="#linearGradient3248" 42.4610 + id="linearGradient6517" 42.4611 + gradientUnits="userSpaceOnUse" 42.4612 + gradientTransform="matrix(0.5259383,0,0,0.2080024,930.43566,357.78354)" 42.4613 + x1="275.72681" 42.4614 + y1="571.90552" 42.4615 + x2="352.27246" 42.4616 + y2="571.90552" /> 42.4617 + <linearGradient 42.4618 + inkscape:collect="always" 42.4619 + xlink:href="#linearGradient3262" 42.4620 + id="linearGradient6521" 42.4621 + gradientUnits="userSpaceOnUse" 42.4622 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,390.54498)" 42.4623 + x1="332.91602" 42.4624 + y1="520.33307" 42.4625 + x2="355.81863" 42.4626 + y2="535.99042" /> 42.4627 + <linearGradient 42.4628 + inkscape:collect="always" 42.4629 + xlink:href="#linearGradient3276" 42.4630 + id="linearGradient6525" 42.4631 + gradientUnits="userSpaceOnUse" 42.4632 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.2763,390.54498)" 42.4633 + x1="338.63031" 42.4634 + y1="522.47595" 42.4635 + x2="358.67578" 42.4636 + y2="538.1333" /> 42.4637 + <linearGradient 42.4638 + inkscape:collect="always" 42.4639 + xlink:href="#linearGradient3296" 42.4640 + id="linearGradient6529" 42.4641 + gradientUnits="userSpaceOnUse" 42.4642 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.391,390.54498)" 42.4643 + x1="529.11237" 42.4644 + y1="333.99472" 42.4645 + x2="526.08197" 42.4646 + y2="321.36786" /> 42.4647 + <linearGradient 42.4648 + inkscape:collect="always" 42.4649 + xlink:href="#linearGradient3248" 42.4650 + id="linearGradient6535" 42.4651 + gradientUnits="userSpaceOnUse" 42.4652 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,301.89068)" 42.4653 + x1="275.72681" 42.4654 + y1="571.90552" 42.4655 + x2="352.27246" 42.4656 + y2="571.90552" /> 42.4657 + <linearGradient 42.4658 + inkscape:collect="always" 42.4659 + xlink:href="#linearGradient3262" 42.4660 + id="linearGradient6539" 42.4661 + gradientUnits="userSpaceOnUse" 42.4662 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,334.65212)" 42.4663 + x1="332.91602" 42.4664 + y1="520.33307" 42.4665 + x2="355.81863" 42.4666 + y2="535.99042" /> 42.4667 + <linearGradient 42.4668 + inkscape:collect="always" 42.4669 + xlink:href="#linearGradient3276" 42.4670 + id="linearGradient6542" 42.4671 + gradientUnits="userSpaceOnUse" 42.4672 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,334.65212)" 42.4673 + x1="338.63031" 42.4674 + y1="522.47595" 42.4675 + x2="358.67578" 42.4676 + y2="538.1333" /> 42.4677 + <linearGradient 42.4678 + inkscape:collect="always" 42.4679 + xlink:href="#linearGradient3296" 42.4680 + id="linearGradient6546" 42.4681 + gradientUnits="userSpaceOnUse" 42.4682 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,334.65212)" 42.4683 + x1="529.11237" 42.4684 + y1="333.99472" 42.4685 + x2="526.08197" 42.4686 + y2="321.36786" /> 42.4687 + <linearGradient 42.4688 + inkscape:collect="always" 42.4689 + xlink:href="#linearGradient3248" 42.4690 + id="linearGradient6552" 42.4691 + gradientUnits="userSpaceOnUse" 42.4692 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1056.5461,301.89068)" 42.4693 + x1="275.72681" 42.4694 + y1="571.90552" 42.4695 + x2="352.27246" 42.4696 + y2="571.90552" /> 42.4697 + <linearGradient 42.4698 + inkscape:collect="always" 42.4699 + xlink:href="#linearGradient3262" 42.4700 + id="linearGradient6557" 42.4701 + gradientUnits="userSpaceOnUse" 42.4702 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,334.65212)" 42.4703 + x1="332.91602" 42.4704 + y1="520.33307" 42.4705 + x2="355.81863" 42.4706 + y2="535.99042" /> 42.4707 + <linearGradient 42.4708 + inkscape:collect="always" 42.4709 + xlink:href="#linearGradient3276" 42.4710 + id="linearGradient6561" 42.4711 + gradientUnits="userSpaceOnUse" 42.4712 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.7013,334.65212)" 42.4713 + x1="338.63031" 42.4714 + y1="522.47595" 42.4715 + x2="358.67578" 42.4716 + y2="538.1333" /> 42.4717 + <linearGradient 42.4718 + inkscape:collect="always" 42.4719 + xlink:href="#linearGradient3296" 42.4720 + id="linearGradient6565" 42.4721 + gradientUnits="userSpaceOnUse" 42.4722 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,334.65212)" 42.4723 + x1="529.11237" 42.4724 + y1="333.99472" 42.4725 + x2="526.08197" 42.4726 + y2="321.36786" /> 42.4727 + <linearGradient 42.4728 + inkscape:collect="always" 42.4729 + xlink:href="#linearGradient3248" 42.4730 + id="linearGradient6571" 42.4731 + gradientUnits="userSpaceOnUse" 42.4732 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1001.4782,301.89068)" 42.4733 + x1="275.72681" 42.4734 + y1="571.90552" 42.4735 + x2="352.27246" 42.4736 + y2="571.90552" /> 42.4737 + <linearGradient 42.4738 + inkscape:collect="always" 42.4739 + xlink:href="#linearGradient3262" 42.4740 + id="linearGradient6575" 42.4741 + gradientUnits="userSpaceOnUse" 42.4742 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,334.65212)" 42.4743 + x1="332.91602" 42.4744 + y1="520.33307" 42.4745 + x2="355.81863" 42.4746 + y2="535.99042" /> 42.4747 + <linearGradient 42.4748 + inkscape:collect="always" 42.4749 + xlink:href="#linearGradient3276" 42.4750 + id="linearGradient6578" 42.4751 + gradientUnits="userSpaceOnUse" 42.4752 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1159.6334,334.65212)" 42.4753 + x1="338.63031" 42.4754 + y1="522.47595" 42.4755 + x2="358.67578" 42.4756 + y2="538.1333" /> 42.4757 + <linearGradient 42.4758 + inkscape:collect="always" 42.4759 + xlink:href="#linearGradient3296" 42.4760 + id="linearGradient6582" 42.4761 + gradientUnits="userSpaceOnUse" 42.4762 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,334.65212)" 42.4763 + x1="529.11237" 42.4764 + y1="333.99472" 42.4765 + x2="526.08197" 42.4766 + y2="321.36786" /> 42.4767 + <linearGradient 42.4768 + inkscape:collect="always" 42.4769 + xlink:href="#linearGradient3248" 42.4770 + id="linearGradient6590" 42.4771 + gradientUnits="userSpaceOnUse" 42.4772 + gradientTransform="matrix(0.2087115,0,0,0.4968771,1166.682,52.842408)" 42.4773 + x1="275.72681" 42.4774 + y1="571.90552" 42.4775 + x2="352.27246" 42.4776 + y2="571.90552" /> 42.4777 + <linearGradient 42.4778 + inkscape:collect="always" 42.4779 + xlink:href="#linearGradient3262" 42.4780 + id="linearGradient6594" 42.4781 + gradientUnits="userSpaceOnUse" 42.4782 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,278.75927)" 42.4783 + x1="332.91602" 42.4784 + y1="520.33307" 42.4785 + x2="355.81863" 42.4786 + y2="535.99042" /> 42.4787 + <linearGradient 42.4788 + inkscape:collect="always" 42.4789 + xlink:href="#linearGradient3276" 42.4790 + id="linearGradient6597" 42.4791 + gradientUnits="userSpaceOnUse" 42.4792 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1324.8372,278.75927)" 42.4793 + x1="338.63031" 42.4794 + y1="522.47595" 42.4795 + x2="358.67578" 42.4796 + y2="538.1333" /> 42.4797 + <linearGradient 42.4798 + inkscape:collect="always" 42.4799 + xlink:href="#linearGradient3296" 42.4800 + id="linearGradient6601" 42.4801 + gradientUnits="userSpaceOnUse" 42.4802 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,222.86641)" 42.4803 + x1="529.11237" 42.4804 + y1="333.99472" 42.4805 + x2="526.08197" 42.4806 + y2="321.36786" /> 42.4807 + <linearGradient 42.4808 + inkscape:collect="always" 42.4809 + xlink:href="#linearGradient3248" 42.4810 + id="linearGradient6607" 42.4811 + gradientUnits="userSpaceOnUse" 42.4812 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,245.99783)" 42.4813 + x1="275.72681" 42.4814 + y1="571.90552" 42.4815 + x2="352.27246" 42.4816 + y2="571.90552" /> 42.4817 + <linearGradient 42.4818 + inkscape:collect="always" 42.4819 + xlink:href="#linearGradient3262" 42.4820 + id="linearGradient6611" 42.4821 + gradientUnits="userSpaceOnUse" 42.4822 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,278.75927)" 42.4823 + x1="332.91602" 42.4824 + y1="520.33307" 42.4825 + x2="355.81863" 42.4826 + y2="535.99042" /> 42.4827 + <linearGradient 42.4828 + inkscape:collect="always" 42.4829 + xlink:href="#linearGradient3276" 42.4830 + id="linearGradient6614" 42.4831 + gradientUnits="userSpaceOnUse" 42.4832 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,278.75927)" 42.4833 + x1="338.63031" 42.4834 + y1="522.47595" 42.4835 + x2="358.67578" 42.4836 + y2="538.1333" /> 42.4837 + <linearGradient 42.4838 + inkscape:collect="always" 42.4839 + xlink:href="#linearGradient3296" 42.4840 + id="linearGradient6618" 42.4841 + gradientUnits="userSpaceOnUse" 42.4842 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,278.75927)" 42.4843 + x1="529.11237" 42.4844 + y1="333.99472" 42.4845 + x2="526.08197" 42.4846 + y2="321.36786" /> 42.4847 + <linearGradient 42.4848 + inkscape:collect="always" 42.4849 + xlink:href="#linearGradient3248" 42.4850 + id="linearGradient6624" 42.4851 + gradientUnits="userSpaceOnUse" 42.4852 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1056.5461,245.99783)" 42.4853 + x1="275.72681" 42.4854 + y1="571.90552" 42.4855 + x2="352.27246" 42.4856 + y2="571.90552" /> 42.4857 + <linearGradient 42.4858 + inkscape:collect="always" 42.4859 + xlink:href="#linearGradient3262" 42.4860 + id="linearGradient6628" 42.4861 + gradientUnits="userSpaceOnUse" 42.4862 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,278.75927)" 42.4863 + x1="332.91602" 42.4864 + y1="520.33307" 42.4865 + x2="355.81863" 42.4866 + y2="535.99042" /> 42.4867 + <linearGradient 42.4868 + inkscape:collect="always" 42.4869 + xlink:href="#linearGradient3276" 42.4870 + id="linearGradient6631" 42.4871 + gradientUnits="userSpaceOnUse" 42.4872 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.7013,278.75927)" 42.4873 + x1="338.63031" 42.4874 + y1="522.47595" 42.4875 + x2="358.67578" 42.4876 + y2="538.1333" /> 42.4877 + <linearGradient 42.4878 + inkscape:collect="always" 42.4879 + xlink:href="#linearGradient3296" 42.4880 + id="linearGradient6635" 42.4881 + gradientUnits="userSpaceOnUse" 42.4882 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,278.75927)" 42.4883 + x1="529.11237" 42.4884 + y1="333.99472" 42.4885 + x2="526.08197" 42.4886 + y2="321.36786" /> 42.4887 + <linearGradient 42.4888 + inkscape:collect="always" 42.4889 + xlink:href="#linearGradient3248" 42.4890 + id="linearGradient6641" 42.4891 + gradientUnits="userSpaceOnUse" 42.4892 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1001.4782,245.99783)" 42.4893 + x1="275.72681" 42.4894 + y1="571.90552" 42.4895 + x2="352.27246" 42.4896 + y2="571.90552" /> 42.4897 + <linearGradient 42.4898 + inkscape:collect="always" 42.4899 + xlink:href="#linearGradient3262" 42.4900 + id="linearGradient6645" 42.4901 + gradientUnits="userSpaceOnUse" 42.4902 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,278.75927)" 42.4903 + x1="332.91602" 42.4904 + y1="520.33307" 42.4905 + x2="355.81863" 42.4906 + y2="535.99042" /> 42.4907 + <linearGradient 42.4908 + inkscape:collect="always" 42.4909 + xlink:href="#linearGradient3276" 42.4910 + id="linearGradient6648" 42.4911 + gradientUnits="userSpaceOnUse" 42.4912 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1159.6334,278.75927)" 42.4913 + x1="338.63031" 42.4914 + y1="522.47595" 42.4915 + x2="358.67578" 42.4916 + y2="538.1333" /> 42.4917 + <linearGradient 42.4918 + inkscape:collect="always" 42.4919 + xlink:href="#linearGradient3296" 42.4920 + id="linearGradient6652" 42.4921 + gradientUnits="userSpaceOnUse" 42.4922 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,278.75927)" 42.4923 + x1="529.11237" 42.4924 + y1="333.99472" 42.4925 + x2="526.08197" 42.4926 + y2="321.36786" /> 42.4927 + <linearGradient 42.4928 + inkscape:collect="always" 42.4929 + xlink:href="#linearGradient3248" 42.4930 + id="linearGradient6658" 42.4931 + gradientUnits="userSpaceOnUse" 42.4932 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,190.10497)" 42.4933 + x1="275.72681" 42.4934 + y1="571.90552" 42.4935 + x2="352.27246" 42.4936 + y2="571.90552" /> 42.4937 + <linearGradient 42.4938 + inkscape:collect="always" 42.4939 + xlink:href="#linearGradient3262" 42.4940 + id="linearGradient6663" 42.4941 + gradientUnits="userSpaceOnUse" 42.4942 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,222.86641)" 42.4943 + x1="332.91602" 42.4944 + y1="520.33307" 42.4945 + x2="355.81863" 42.4946 + y2="535.99042" /> 42.4947 + <linearGradient 42.4948 + inkscape:collect="always" 42.4949 + xlink:href="#linearGradient3276" 42.4950 + id="linearGradient6667" 42.4951 + gradientUnits="userSpaceOnUse" 42.4952 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,222.86641)" 42.4953 + x1="338.63031" 42.4954 + y1="522.47595" 42.4955 + x2="358.67578" 42.4956 + y2="538.1333" /> 42.4957 + <linearGradient 42.4958 + inkscape:collect="always" 42.4959 + xlink:href="#linearGradient3296" 42.4960 + id="linearGradient6671" 42.4961 + gradientUnits="userSpaceOnUse" 42.4962 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,222.86641)" 42.4963 + x1="529.11237" 42.4964 + y1="333.99472" 42.4965 + x2="526.08197" 42.4966 + y2="321.36786" /> 42.4967 + <linearGradient 42.4968 + inkscape:collect="always" 42.4969 + xlink:href="#linearGradient3248" 42.4970 + id="linearGradient6677" 42.4971 + gradientUnits="userSpaceOnUse" 42.4972 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1056.5461,190.10497)" 42.4973 + x1="275.72681" 42.4974 + y1="571.90552" 42.4975 + x2="352.27246" 42.4976 + y2="571.90552" /> 42.4977 + <linearGradient 42.4978 + inkscape:collect="always" 42.4979 + xlink:href="#linearGradient3262" 42.4980 + id="linearGradient6681" 42.4981 + gradientUnits="userSpaceOnUse" 42.4982 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,222.86641)" 42.4983 + x1="332.91602" 42.4984 + y1="520.33307" 42.4985 + x2="355.81863" 42.4986 + y2="535.99042" /> 42.4987 + <linearGradient 42.4988 + inkscape:collect="always" 42.4989 + xlink:href="#linearGradient3276" 42.4990 + id="linearGradient6684" 42.4991 + gradientUnits="userSpaceOnUse" 42.4992 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.7013,222.86641)" 42.4993 + x1="338.63031" 42.4994 + y1="522.47595" 42.4995 + x2="358.67578" 42.4996 + y2="538.1333" /> 42.4997 + <linearGradient 42.4998 + inkscape:collect="always" 42.4999 + xlink:href="#linearGradient3296" 42.5000 + id="linearGradient6688" 42.5001 + gradientUnits="userSpaceOnUse" 42.5002 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,222.86641)" 42.5003 + x1="529.11237" 42.5004 + y1="333.99472" 42.5005 + x2="526.08197" 42.5006 + y2="321.36786" /> 42.5007 + <linearGradient 42.5008 + inkscape:collect="always" 42.5009 + xlink:href="#linearGradient3248" 42.5010 + id="linearGradient6695" 42.5011 + gradientUnits="userSpaceOnUse" 42.5012 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1001.4782,190.10497)" 42.5013 + x1="275.72681" 42.5014 + y1="571.90552" 42.5015 + x2="352.27246" 42.5016 + y2="571.90552" /> 42.5017 + <linearGradient 42.5018 + inkscape:collect="always" 42.5019 + xlink:href="#linearGradient3262" 42.5020 + id="linearGradient6699" 42.5021 + gradientUnits="userSpaceOnUse" 42.5022 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,222.86641)" 42.5023 + x1="332.91602" 42.5024 + y1="520.33307" 42.5025 + x2="355.81863" 42.5026 + y2="535.99042" /> 42.5027 + <linearGradient 42.5028 + inkscape:collect="always" 42.5029 + xlink:href="#linearGradient3276" 42.5030 + id="linearGradient6702" 42.5031 + gradientUnits="userSpaceOnUse" 42.5032 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1159.6334,222.86641)" 42.5033 + x1="338.63031" 42.5034 + y1="522.47595" 42.5035 + x2="358.67578" 42.5036 + y2="538.1333" /> 42.5037 + <linearGradient 42.5038 + inkscape:collect="always" 42.5039 + xlink:href="#linearGradient3296" 42.5040 + id="linearGradient6706" 42.5041 + gradientUnits="userSpaceOnUse" 42.5042 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,222.86641)" 42.5043 + x1="529.11237" 42.5044 + y1="333.99472" 42.5045 + x2="526.08197" 42.5046 + y2="321.36786" /> 42.5047 + <linearGradient 42.5048 + inkscape:collect="always" 42.5049 + xlink:href="#linearGradient3248" 42.5050 + id="linearGradient6712" 42.5051 + gradientUnits="userSpaceOnUse" 42.5052 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1166.682,134.21211)" 42.5053 + x1="275.72681" 42.5054 + y1="571.90552" 42.5055 + x2="352.27246" 42.5056 + y2="571.90552" /> 42.5057 + <linearGradient 42.5058 + inkscape:collect="always" 42.5059 + xlink:href="#linearGradient3262" 42.5060 + id="linearGradient6716" 42.5061 + gradientUnits="userSpaceOnUse" 42.5062 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,166.97355)" 42.5063 + x1="332.91602" 42.5064 + y1="520.33307" 42.5065 + x2="355.81863" 42.5066 + y2="535.99042" /> 42.5067 + <linearGradient 42.5068 + inkscape:collect="always" 42.5069 + xlink:href="#linearGradient3276" 42.5070 + id="linearGradient6719" 42.5071 + gradientUnits="userSpaceOnUse" 42.5072 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1324.8372,166.97355)" 42.5073 + x1="338.63031" 42.5074 + y1="522.47595" 42.5075 + x2="358.67578" 42.5076 + y2="538.1333" /> 42.5077 + <linearGradient 42.5078 + inkscape:collect="always" 42.5079 + xlink:href="#linearGradient3296" 42.5080 + id="linearGradient6723" 42.5081 + gradientUnits="userSpaceOnUse" 42.5082 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1139.952,166.97355)" 42.5083 + x1="529.11237" 42.5084 + y1="333.99472" 42.5085 + x2="526.08197" 42.5086 + y2="321.36786" /> 42.5087 + <linearGradient 42.5088 + inkscape:collect="always" 42.5089 + xlink:href="#linearGradient3248" 42.5090 + id="linearGradient6731" 42.5091 + gradientUnits="userSpaceOnUse" 42.5092 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1111.6141,134.21211)" 42.5093 + x1="275.72681" 42.5094 + y1="571.90552" 42.5095 + x2="352.27246" 42.5096 + y2="571.90552" /> 42.5097 + <linearGradient 42.5098 + inkscape:collect="always" 42.5099 + xlink:href="#linearGradient3262" 42.5100 + id="linearGradient6735" 42.5101 + gradientUnits="userSpaceOnUse" 42.5102 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,166.97355)" 42.5103 + x1="332.91602" 42.5104 + y1="520.33307" 42.5105 + x2="355.81863" 42.5106 + y2="535.99042" /> 42.5107 + <linearGradient 42.5108 + inkscape:collect="always" 42.5109 + xlink:href="#linearGradient3276" 42.5110 + id="linearGradient6738" 42.5111 + gradientUnits="userSpaceOnUse" 42.5112 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1269.7693,166.97355)" 42.5113 + x1="338.63031" 42.5114 + y1="522.47595" 42.5115 + x2="358.67578" 42.5116 + y2="538.1333" /> 42.5117 + <linearGradient 42.5118 + inkscape:collect="always" 42.5119 + xlink:href="#linearGradient3296" 42.5120 + id="linearGradient6742" 42.5121 + gradientUnits="userSpaceOnUse" 42.5122 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1084.8841,166.97355)" 42.5123 + x1="529.11237" 42.5124 + y1="333.99472" 42.5125 + x2="526.08197" 42.5126 + y2="321.36786" /> 42.5127 + <linearGradient 42.5128 + inkscape:collect="always" 42.5129 + xlink:href="#linearGradient3248" 42.5130 + id="linearGradient6748" 42.5131 + gradientUnits="userSpaceOnUse" 42.5132 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1056.5461,134.21211)" 42.5133 + x1="275.72681" 42.5134 + y1="571.90552" 42.5135 + x2="352.27246" 42.5136 + y2="571.90552" /> 42.5137 + <linearGradient 42.5138 + inkscape:collect="always" 42.5139 + xlink:href="#linearGradient3262" 42.5140 + id="linearGradient6752" 42.5141 + gradientUnits="userSpaceOnUse" 42.5142 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,166.97355)" 42.5143 + x1="332.91602" 42.5144 + y1="520.33307" 42.5145 + x2="355.81863" 42.5146 + y2="535.99042" /> 42.5147 + <linearGradient 42.5148 + inkscape:collect="always" 42.5149 + xlink:href="#linearGradient3276" 42.5150 + id="linearGradient6755" 42.5151 + gradientUnits="userSpaceOnUse" 42.5152 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1214.7013,166.97355)" 42.5153 + x1="338.63031" 42.5154 + y1="522.47595" 42.5155 + x2="358.67578" 42.5156 + y2="538.1333" /> 42.5157 + <linearGradient 42.5158 + inkscape:collect="always" 42.5159 + xlink:href="#linearGradient3296" 42.5160 + id="linearGradient6759" 42.5161 + gradientUnits="userSpaceOnUse" 42.5162 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1029.8161,166.97355)" 42.5163 + x1="529.11237" 42.5164 + y1="333.99472" 42.5165 + x2="526.08197" 42.5166 + y2="321.36786" /> 42.5167 + <linearGradient 42.5168 + inkscape:collect="always" 42.5169 + xlink:href="#linearGradient3248" 42.5170 + id="linearGradient6767" 42.5171 + gradientUnits="userSpaceOnUse" 42.5172 + gradientTransform="matrix(0.2087115,0,0,0.2080024,1001.4782,134.21211)" 42.5173 + x1="275.72681" 42.5174 + y1="571.90552" 42.5175 + x2="352.27246" 42.5176 + y2="571.90552" /> 42.5177 + <linearGradient 42.5178 + inkscape:collect="always" 42.5179 + xlink:href="#linearGradient3262" 42.5180 + id="linearGradient6771" 42.5181 + gradientUnits="userSpaceOnUse" 42.5182 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,166.97355)" 42.5183 + x1="332.91602" 42.5184 + y1="520.33307" 42.5185 + x2="355.81863" 42.5186 + y2="535.99042" /> 42.5187 + <linearGradient 42.5188 + inkscape:collect="always" 42.5189 + xlink:href="#linearGradient3276" 42.5190 + id="linearGradient6774" 42.5191 + gradientUnits="userSpaceOnUse" 42.5192 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1159.6334,166.97355)" 42.5193 + x1="338.63031" 42.5194 + y1="522.47595" 42.5195 + x2="358.67578" 42.5196 + y2="538.1333" /> 42.5197 + <linearGradient 42.5198 + inkscape:collect="always" 42.5199 + xlink:href="#linearGradient3296" 42.5200 + id="linearGradient6778" 42.5201 + gradientUnits="userSpaceOnUse" 42.5202 + gradientTransform="matrix(0.2087115,0,0,0.2080024,974.74817,166.97355)" 42.5203 + x1="529.11237" 42.5204 + y1="333.99472" 42.5205 + x2="526.08197" 42.5206 + y2="321.36786" /> 42.5207 + <linearGradient 42.5208 + inkscape:collect="always" 42.5209 + xlink:href="#linearGradient3248" 42.5210 + id="linearGradient6797" 42.5211 + gradientUnits="userSpaceOnUse" 42.5212 + gradientTransform="matrix(0.7999477,0,0,0.2080024,520.99067,302.41048)" 42.5213 + x1="275.72681" 42.5214 + y1="571.90552" 42.5215 + x2="352.27246" 42.5216 + y2="571.90552" /> 42.5217 + <linearGradient 42.5218 + inkscape:collect="always" 42.5219 + xlink:href="#linearGradient3262" 42.5220 + id="linearGradient6801" 42.5221 + gradientUnits="userSpaceOnUse" 42.5222 + gradientTransform="matrix(0.2087115,0,0,0.2080024,626.66732,335.17192)" 42.5223 + x1="332.91602" 42.5224 + y1="520.33307" 42.5225 + x2="355.81863" 42.5226 + y2="535.99042" /> 42.5227 + <linearGradient 42.5228 + inkscape:collect="always" 42.5229 + xlink:href="#linearGradient3276" 42.5230 + id="linearGradient6804" 42.5231 + gradientUnits="userSpaceOnUse" 42.5232 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,912.44533,335.17192)" 42.5233 + x1="338.63031" 42.5234 + y1="522.47595" 42.5235 + x2="358.67578" 42.5236 + y2="538.1333" /> 42.5237 + <linearGradient 42.5238 + inkscape:collect="always" 42.5239 + xlink:href="#linearGradient3296" 42.5240 + id="linearGradient6808" 42.5241 + gradientUnits="userSpaceOnUse" 42.5242 + gradientTransform="matrix(0.2087115,0,0,0.2080024,727.56018,335.17192)" 42.5243 + x1="529.11237" 42.5244 + y1="333.99472" 42.5245 + x2="526.08197" 42.5246 + y2="321.36786" /> 42.5247 + <linearGradient 42.5248 + inkscape:collect="always" 42.5249 + xlink:href="#linearGradient3248" 42.5250 + id="linearGradient6816" 42.5251 + gradientUnits="userSpaceOnUse" 42.5252 + gradientTransform="matrix(0.2087115,0,0,0.2080024,597.71179,302.41048)" 42.5253 + x1="275.72681" 42.5254 + y1="571.90552" 42.5255 + x2="352.27246" 42.5256 + y2="571.90552" /> 42.5257 + <linearGradient 42.5258 + inkscape:collect="always" 42.5259 + xlink:href="#linearGradient3262" 42.5260 + id="linearGradient6820" 42.5261 + gradientUnits="userSpaceOnUse" 42.5262 + gradientTransform="matrix(0.2087115,0,0,0.2080024,570.9818,335.17192)" 42.5263 + x1="332.91602" 42.5264 + y1="520.33307" 42.5265 + x2="355.81863" 42.5266 + y2="535.99042" /> 42.5267 + <linearGradient 42.5268 + inkscape:collect="always" 42.5269 + xlink:href="#linearGradient3276" 42.5270 + id="linearGradient6823" 42.5271 + gradientUnits="userSpaceOnUse" 42.5272 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,755.86695,335.17192)" 42.5273 + x1="338.63031" 42.5274 + y1="522.47595" 42.5275 + x2="358.67578" 42.5276 + y2="538.1333" /> 42.5277 + <linearGradient 42.5278 + inkscape:collect="always" 42.5279 + xlink:href="#linearGradient3296" 42.5280 + id="linearGradient6827" 42.5281 + gradientUnits="userSpaceOnUse" 42.5282 + gradientTransform="matrix(0.2087115,0,0,0.2080024,570.9818,335.17192)" 42.5283 + x1="529.11237" 42.5284 + y1="333.99472" 42.5285 + x2="526.08197" 42.5286 + y2="321.36786" /> 42.5287 + <linearGradient 42.5288 + inkscape:collect="always" 42.5289 + xlink:href="#linearGradient3248" 42.5290 + id="linearGradient6836" 42.5291 + gradientUnits="userSpaceOnUse" 42.5292 + gradientTransform="matrix(0.2087115,0,0,0.2080024,542.02626,302.41048)" 42.5293 + x1="275.72681" 42.5294 + y1="571.90552" 42.5295 + x2="352.27246" 42.5296 + y2="571.90552" /> 42.5297 + <linearGradient 42.5298 + inkscape:collect="always" 42.5299 + xlink:href="#linearGradient3262" 42.5300 + id="linearGradient6840" 42.5301 + gradientUnits="userSpaceOnUse" 42.5302 + gradientTransform="matrix(0.2087115,0,0,0.2080024,515.29627,335.17192)" 42.5303 + x1="332.91602" 42.5304 + y1="520.33307" 42.5305 + x2="355.81863" 42.5306 + y2="535.99042" /> 42.5307 + <linearGradient 42.5308 + inkscape:collect="always" 42.5309 + xlink:href="#linearGradient3276" 42.5310 + id="linearGradient6843" 42.5311 + gradientUnits="userSpaceOnUse" 42.5312 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,700.18142,335.17192)" 42.5313 + x1="338.63031" 42.5314 + y1="522.47595" 42.5315 + x2="358.67578" 42.5316 + y2="538.1333" /> 42.5317 + <linearGradient 42.5318 + inkscape:collect="always" 42.5319 + xlink:href="#linearGradient3296" 42.5320 + id="linearGradient6847" 42.5321 + gradientUnits="userSpaceOnUse" 42.5322 + gradientTransform="matrix(0.2087115,0,0,0.2080024,515.29627,335.17192)" 42.5323 + x1="529.11237" 42.5324 + y1="333.99472" 42.5325 + x2="526.08197" 42.5326 + y2="321.36786" /> 42.5327 + <linearGradient 42.5328 + inkscape:collect="always" 42.5329 + xlink:href="#linearGradient3248" 42.5330 + id="linearGradient6855" 42.5331 + gradientUnits="userSpaceOnUse" 42.5332 + gradientTransform="matrix(0.2087115,0,0,0.2080024,486.3407,302.41048)" 42.5333 + x1="275.72681" 42.5334 + y1="571.90552" 42.5335 + x2="352.27246" 42.5336 + y2="571.90552" /> 42.5337 + <linearGradient 42.5338 + inkscape:collect="always" 42.5339 + xlink:href="#linearGradient3262" 42.5340 + id="linearGradient6860" 42.5341 + gradientUnits="userSpaceOnUse" 42.5342 + gradientTransform="matrix(0.2087115,0,0,0.2080024,459.61071,335.17192)" 42.5343 + x1="332.91602" 42.5344 + y1="520.33307" 42.5345 + x2="355.81863" 42.5346 + y2="535.99042" /> 42.5347 + <linearGradient 42.5348 + inkscape:collect="always" 42.5349 + xlink:href="#linearGradient3276" 42.5350 + id="linearGradient6864" 42.5351 + gradientUnits="userSpaceOnUse" 42.5352 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,644.49586,335.17192)" 42.5353 + x1="338.63031" 42.5354 + y1="522.47595" 42.5355 + x2="358.67578" 42.5356 + y2="538.1333" /> 42.5357 + <linearGradient 42.5358 + inkscape:collect="always" 42.5359 + xlink:href="#linearGradient3296" 42.5360 + id="linearGradient6868" 42.5361 + gradientUnits="userSpaceOnUse" 42.5362 + gradientTransform="matrix(0.2087115,0,0,0.2080024,459.61071,335.17192)" 42.5363 + x1="529.11237" 42.5364 + y1="333.99472" 42.5365 + x2="526.08197" 42.5366 + y2="321.36786" /> 42.5367 + <linearGradient 42.5368 + inkscape:collect="always" 42.5369 + xlink:href="#linearGradient3248" 42.5370 + id="linearGradient6876" 42.5371 + gradientUnits="userSpaceOnUse" 42.5372 + gradientTransform="matrix(0.2087115,0,0,0.2080024,430.65516,302.41048)" 42.5373 + x1="275.72681" 42.5374 + y1="571.90552" 42.5375 + x2="352.27246" 42.5376 + y2="571.90552" /> 42.5377 + <linearGradient 42.5378 + inkscape:collect="always" 42.5379 + xlink:href="#linearGradient3262" 42.5380 + id="linearGradient6880" 42.5381 + gradientUnits="userSpaceOnUse" 42.5382 + gradientTransform="matrix(0.2087115,0,0,0.2080024,403.92517,335.17192)" 42.5383 + x1="332.91602" 42.5384 + y1="520.33307" 42.5385 + x2="355.81863" 42.5386 + y2="535.99042" /> 42.5387 + <linearGradient 42.5388 + inkscape:collect="always" 42.5389 + xlink:href="#linearGradient3276" 42.5390 + id="linearGradient6883" 42.5391 + gradientUnits="userSpaceOnUse" 42.5392 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,588.81032,335.17192)" 42.5393 + x1="338.63031" 42.5394 + y1="522.47595" 42.5395 + x2="358.67578" 42.5396 + y2="538.1333" /> 42.5397 + <linearGradient 42.5398 + inkscape:collect="always" 42.5399 + xlink:href="#linearGradient3296" 42.5400 + id="linearGradient6887" 42.5401 + gradientUnits="userSpaceOnUse" 42.5402 + gradientTransform="matrix(0.2087115,0,0,0.2080024,403.92517,335.17192)" 42.5403 + x1="529.11237" 42.5404 + y1="333.99472" 42.5405 + x2="526.08197" 42.5406 + y2="321.36786" /> 42.5407 + <linearGradient 42.5408 + inkscape:collect="always" 42.5409 + xlink:href="#linearGradient3248" 42.5410 + id="linearGradient6896" 42.5411 + gradientUnits="userSpaceOnUse" 42.5412 + gradientTransform="matrix(0.2087115,0,0,0.2080024,374.96964,302.41048)" 42.5413 + x1="275.72681" 42.5414 + y1="571.90552" 42.5415 + x2="352.27246" 42.5416 + y2="571.90552" /> 42.5417 + <linearGradient 42.5418 + inkscape:collect="always" 42.5419 + xlink:href="#linearGradient3262" 42.5420 + id="linearGradient6900" 42.5421 + gradientUnits="userSpaceOnUse" 42.5422 + gradientTransform="matrix(0.2087115,0,0,0.2080024,348.23965,335.17192)" 42.5423 + x1="332.91602" 42.5424 + y1="520.33307" 42.5425 + x2="355.81863" 42.5426 + y2="535.99042" /> 42.5427 + <linearGradient 42.5428 + inkscape:collect="always" 42.5429 + xlink:href="#linearGradient3276" 42.5430 + id="linearGradient6903" 42.5431 + gradientUnits="userSpaceOnUse" 42.5432 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,533.1248,335.17192)" 42.5433 + x1="338.63031" 42.5434 + y1="522.47595" 42.5435 + x2="358.67578" 42.5436 + y2="538.1333" /> 42.5437 + <linearGradient 42.5438 + inkscape:collect="always" 42.5439 + xlink:href="#linearGradient3296" 42.5440 + id="linearGradient6907" 42.5441 + gradientUnits="userSpaceOnUse" 42.5442 + gradientTransform="matrix(0.2087115,0,0,0.2080024,348.23965,335.17192)" 42.5443 + x1="529.11237" 42.5444 + y1="333.99472" 42.5445 + x2="526.08197" 42.5446 + y2="321.36786" /> 42.5447 + <linearGradient 42.5448 + inkscape:collect="always" 42.5449 + xlink:href="#linearGradient3248" 42.5450 + id="linearGradient6915" 42.5451 + gradientUnits="userSpaceOnUse" 42.5452 + gradientTransform="matrix(0.2087115,0,0,0.2080024,319.28411,302.41048)" 42.5453 + x1="275.72681" 42.5454 + y1="571.90552" 42.5455 + x2="352.27246" 42.5456 + y2="571.90552" /> 42.5457 + <linearGradient 42.5458 + inkscape:collect="always" 42.5459 + xlink:href="#linearGradient3262" 42.5460 + id="linearGradient6919" 42.5461 + gradientUnits="userSpaceOnUse" 42.5462 + gradientTransform="matrix(0.2087115,0,0,0.2080024,292.55412,335.17192)" 42.5463 + x1="332.91602" 42.5464 + y1="520.33307" 42.5465 + x2="355.81863" 42.5466 + y2="535.99042" /> 42.5467 + <linearGradient 42.5468 + inkscape:collect="always" 42.5469 + xlink:href="#linearGradient3276" 42.5470 + id="linearGradient6922" 42.5471 + gradientUnits="userSpaceOnUse" 42.5472 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,477.43927,335.17192)" 42.5473 + x1="338.63031" 42.5474 + y1="522.47595" 42.5475 + x2="358.67578" 42.5476 + y2="538.1333" /> 42.5477 + <linearGradient 42.5478 + inkscape:collect="always" 42.5479 + xlink:href="#linearGradient3296" 42.5480 + id="linearGradient6926" 42.5481 + gradientUnits="userSpaceOnUse" 42.5482 + gradientTransform="matrix(0.2087115,0,0,0.2080024,292.55412,335.17192)" 42.5483 + x1="529.11237" 42.5484 + y1="333.99472" 42.5485 + x2="526.08197" 42.5486 + y2="321.36786" /> 42.5487 + <linearGradient 42.5488 + inkscape:collect="always" 42.5489 + xlink:href="#linearGradient3248" 42.5490 + id="linearGradient6934" 42.5491 + gradientUnits="userSpaceOnUse" 42.5492 + gradientTransform="matrix(0.2087115,0,0,0.2080024,263.59857,302.41048)" 42.5493 + x1="275.72681" 42.5494 + y1="571.90552" 42.5495 + x2="352.27246" 42.5496 + y2="571.90552" /> 42.5497 + <linearGradient 42.5498 + inkscape:collect="always" 42.5499 + xlink:href="#linearGradient3262" 42.5500 + id="linearGradient6938" 42.5501 + gradientUnits="userSpaceOnUse" 42.5502 + gradientTransform="matrix(0.2087115,0,0,0.2080024,236.86858,335.17192)" 42.5503 + x1="332.91602" 42.5504 + y1="520.33307" 42.5505 + x2="355.81863" 42.5506 + y2="535.99042" /> 42.5507 + <linearGradient 42.5508 + inkscape:collect="always" 42.5509 + xlink:href="#linearGradient3276" 42.5510 + id="linearGradient6942" 42.5511 + gradientUnits="userSpaceOnUse" 42.5512 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,421.75373,335.17192)" 42.5513 + x1="338.63031" 42.5514 + y1="522.47595" 42.5515 + x2="358.67578" 42.5516 + y2="538.1333" /> 42.5517 + <linearGradient 42.5518 + inkscape:collect="always" 42.5519 + xlink:href="#linearGradient3296" 42.5520 + id="linearGradient6946" 42.5521 + gradientUnits="userSpaceOnUse" 42.5522 + gradientTransform="matrix(0.2087115,0,0,0.2080024,236.86858,335.17192)" 42.5523 + x1="529.11237" 42.5524 + y1="333.99472" 42.5525 + x2="526.08197" 42.5526 + y2="321.36786" /> 42.5527 + <linearGradient 42.5528 + inkscape:collect="always" 42.5529 + xlink:href="#linearGradient3248" 42.5530 + id="linearGradient6954" 42.5531 + gradientUnits="userSpaceOnUse" 42.5532 + gradientTransform="matrix(0.2087115,0,0,0.2080024,207.91304,302.41048)" 42.5533 + x1="275.72681" 42.5534 + y1="571.90552" 42.5535 + x2="352.27246" 42.5536 + y2="571.90552" /> 42.5537 + <linearGradient 42.5538 + inkscape:collect="always" 42.5539 + xlink:href="#linearGradient3262" 42.5540 + id="linearGradient6958" 42.5541 + gradientUnits="userSpaceOnUse" 42.5542 + gradientTransform="matrix(0.2087115,0,0,0.2080024,181.18305,335.17192)" 42.5543 + x1="332.91602" 42.5544 + y1="520.33307" 42.5545 + x2="355.81863" 42.5546 + y2="535.99042" /> 42.5547 + <linearGradient 42.5548 + inkscape:collect="always" 42.5549 + xlink:href="#linearGradient3276" 42.5550 + id="linearGradient6961" 42.5551 + gradientUnits="userSpaceOnUse" 42.5552 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,366.0682,335.17192)" 42.5553 + x1="338.63031" 42.5554 + y1="522.47595" 42.5555 + x2="358.67578" 42.5556 + y2="538.1333" /> 42.5557 + <linearGradient 42.5558 + inkscape:collect="always" 42.5559 + xlink:href="#linearGradient3296" 42.5560 + id="linearGradient6965" 42.5561 + gradientUnits="userSpaceOnUse" 42.5562 + gradientTransform="matrix(0.2087115,0,0,0.2080024,181.18305,335.17192)" 42.5563 + x1="529.11237" 42.5564 + y1="333.99472" 42.5565 + x2="526.08197" 42.5566 + y2="321.36786" /> 42.5567 + <linearGradient 42.5568 + inkscape:collect="always" 42.5569 + xlink:href="#linearGradient3248" 42.5570 + id="linearGradient6973" 42.5571 + gradientUnits="userSpaceOnUse" 42.5572 + gradientTransform="matrix(0.2087115,0,0,0.2080024,152.2275,302.41048)" 42.5573 + x1="275.72681" 42.5574 + y1="571.90552" 42.5575 + x2="352.27246" 42.5576 + y2="571.90552" /> 42.5577 + <linearGradient 42.5578 + inkscape:collect="always" 42.5579 + xlink:href="#linearGradient3262" 42.5580 + id="linearGradient6977" 42.5581 + gradientUnits="userSpaceOnUse" 42.5582 + gradientTransform="matrix(0.2087115,0,0,0.2080024,125.49751,335.17192)" 42.5583 + x1="332.91602" 42.5584 + y1="520.33307" 42.5585 + x2="355.81863" 42.5586 + y2="535.99042" /> 42.5587 + <linearGradient 42.5588 + inkscape:collect="always" 42.5589 + xlink:href="#linearGradient3276" 42.5590 + id="linearGradient6980" 42.5591 + gradientUnits="userSpaceOnUse" 42.5592 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,310.38266,335.17192)" 42.5593 + x1="338.63031" 42.5594 + y1="522.47595" 42.5595 + x2="358.67578" 42.5596 + y2="538.1333" /> 42.5597 + <linearGradient 42.5598 + inkscape:collect="always" 42.5599 + xlink:href="#linearGradient3296" 42.5600 + id="linearGradient6984" 42.5601 + gradientUnits="userSpaceOnUse" 42.5602 + gradientTransform="matrix(0.2087115,0,0,0.2080024,125.49751,335.17192)" 42.5603 + x1="529.11237" 42.5604 + y1="333.99472" 42.5605 + x2="526.08197" 42.5606 + y2="321.36786" /> 42.5607 + <linearGradient 42.5608 + inkscape:collect="always" 42.5609 + xlink:href="#linearGradient3248" 42.5610 + id="linearGradient6992" 42.5611 + gradientUnits="userSpaceOnUse" 42.5612 + gradientTransform="matrix(0.2087115,0,0,0.2080024,96.54196,302.41048)" 42.5613 + x1="275.72681" 42.5614 + y1="571.90552" 42.5615 + x2="352.27246" 42.5616 + y2="571.90552" /> 42.5617 + <linearGradient 42.5618 + inkscape:collect="always" 42.5619 + xlink:href="#linearGradient3262" 42.5620 + id="linearGradient6996" 42.5621 + gradientUnits="userSpaceOnUse" 42.5622 + gradientTransform="matrix(0.2087115,0,0,0.2080024,69.811966,335.17192)" 42.5623 + x1="332.91602" 42.5624 + y1="520.33307" 42.5625 + x2="355.81863" 42.5626 + y2="535.99042" /> 42.5627 + <linearGradient 42.5628 + inkscape:collect="always" 42.5629 + xlink:href="#linearGradient3276" 42.5630 + id="linearGradient6999" 42.5631 + gradientUnits="userSpaceOnUse" 42.5632 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,254.69712,335.17192)" 42.5633 + x1="338.63031" 42.5634 + y1="522.47595" 42.5635 + x2="358.67578" 42.5636 + y2="538.1333" /> 42.5637 + <linearGradient 42.5638 + inkscape:collect="always" 42.5639 + xlink:href="#linearGradient3296" 42.5640 + id="linearGradient7004" 42.5641 + gradientUnits="userSpaceOnUse" 42.5642 + gradientTransform="matrix(0.2087115,0,0,0.2080024,69.811966,335.17192)" 42.5643 + x1="529.11237" 42.5644 + y1="333.99472" 42.5645 + x2="526.08197" 42.5646 + y2="321.36786" /> 42.5647 + <linearGradient 42.5648 + inkscape:collect="always" 42.5649 + xlink:href="#linearGradient3248" 42.5650 + id="linearGradient7012" 42.5651 + gradientUnits="userSpaceOnUse" 42.5652 + gradientTransform="matrix(0.2087115,0,0,0.2080024,40.856373,302.41048)" 42.5653 + x1="275.72681" 42.5654 + y1="571.90552" 42.5655 + x2="352.27246" 42.5656 + y2="571.90552" /> 42.5657 + <linearGradient 42.5658 + inkscape:collect="always" 42.5659 + xlink:href="#linearGradient3262" 42.5660 + id="linearGradient7016" 42.5661 + gradientUnits="userSpaceOnUse" 42.5662 + gradientTransform="matrix(0.2087115,0,0,0.2080024,14.126382,335.17192)" 42.5663 + x1="332.91602" 42.5664 + y1="520.33307" 42.5665 + x2="355.81863" 42.5666 + y2="535.99042" /> 42.5667 + <linearGradient 42.5668 + inkscape:collect="always" 42.5669 + xlink:href="#linearGradient3276" 42.5670 + id="linearGradient7019" 42.5671 + gradientUnits="userSpaceOnUse" 42.5672 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,199.01155,335.17192)" 42.5673 + x1="338.63031" 42.5674 + y1="522.47595" 42.5675 + x2="358.67578" 42.5676 + y2="538.1333" /> 42.5677 + <linearGradient 42.5678 + inkscape:collect="always" 42.5679 + xlink:href="#linearGradient3296" 42.5680 + id="linearGradient7023" 42.5681 + gradientUnits="userSpaceOnUse" 42.5682 + gradientTransform="matrix(0.2087115,0,0,0.2080024,14.126382,335.17192)" 42.5683 + x1="529.11237" 42.5684 + y1="333.99472" 42.5685 + x2="526.08197" 42.5686 + y2="321.36786" /> 42.5687 + <linearGradient 42.5688 + inkscape:collect="always" 42.5689 + xlink:href="#linearGradient3248" 42.5690 + id="linearGradient7031" 42.5691 + gradientUnits="userSpaceOnUse" 42.5692 + gradientTransform="matrix(0.2087115,0,0,0.2080024,683.19681,245.84193)" 42.5693 + x1="275.72681" 42.5694 + y1="571.90552" 42.5695 + x2="352.27246" 42.5696 + y2="571.90552" /> 42.5697 + <linearGradient 42.5698 + inkscape:collect="always" 42.5699 + xlink:href="#linearGradient3262" 42.5700 + id="linearGradient7035" 42.5701 + gradientUnits="userSpaceOnUse" 42.5702 + gradientTransform="matrix(0.2087115,0,0,0.2080024,656.46682,278.60337)" 42.5703 + x1="332.91602" 42.5704 + y1="520.33307" 42.5705 + x2="355.81863" 42.5706 + y2="535.99042" /> 42.5707 + <linearGradient 42.5708 + inkscape:collect="always" 42.5709 + xlink:href="#linearGradient3276" 42.5710 + id="linearGradient7039" 42.5711 + gradientUnits="userSpaceOnUse" 42.5712 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,841.35197,278.60337)" 42.5713 + x1="338.63031" 42.5714 + y1="522.47595" 42.5715 + x2="358.67578" 42.5716 + y2="538.1333" /> 42.5717 + <linearGradient 42.5718 + inkscape:collect="always" 42.5719 + xlink:href="#linearGradient3296" 42.5720 + id="linearGradient7043" 42.5721 + gradientUnits="userSpaceOnUse" 42.5722 + gradientTransform="matrix(0.2087115,0,0,0.2080024,656.46682,278.60337)" 42.5723 + x1="529.11237" 42.5724 + y1="333.99472" 42.5725 + x2="526.08197" 42.5726 + y2="321.36786" /> 42.5727 + <linearGradient 42.5728 + inkscape:collect="always" 42.5729 + xlink:href="#linearGradient3248" 42.5730 + id="linearGradient7051" 42.5731 + gradientUnits="userSpaceOnUse" 42.5732 + gradientTransform="matrix(0.2087115,0,0,0.2080024,627.51129,245.84193)" 42.5733 + x1="275.72681" 42.5734 + y1="571.90552" 42.5735 + x2="352.27246" 42.5736 + y2="571.90552" /> 42.5737 + <linearGradient 42.5738 + inkscape:collect="always" 42.5739 + xlink:href="#linearGradient3262" 42.5740 + id="linearGradient7055" 42.5741 + gradientUnits="userSpaceOnUse" 42.5742 + gradientTransform="matrix(0.2087115,0,0,0.2080024,600.7813,278.60337)" 42.5743 + x1="332.91602" 42.5744 + y1="520.33307" 42.5745 + x2="355.81863" 42.5746 + y2="535.99042" /> 42.5747 + <linearGradient 42.5748 + inkscape:collect="always" 42.5749 + xlink:href="#linearGradient3276" 42.5750 + id="linearGradient7058" 42.5751 + gradientUnits="userSpaceOnUse" 42.5752 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,785.66645,278.60337)" 42.5753 + x1="338.63031" 42.5754 + y1="522.47595" 42.5755 + x2="358.67578" 42.5756 + y2="538.1333" /> 42.5757 + <linearGradient 42.5758 + inkscape:collect="always" 42.5759 + xlink:href="#linearGradient3296" 42.5760 + id="linearGradient7062" 42.5761 + gradientUnits="userSpaceOnUse" 42.5762 + gradientTransform="matrix(0.2087115,0,0,0.2080024,600.7813,278.60337)" 42.5763 + x1="529.11237" 42.5764 + y1="333.99472" 42.5765 + x2="526.08197" 42.5766 + y2="321.36786" /> 42.5767 + <linearGradient 42.5768 + inkscape:collect="always" 42.5769 + xlink:href="#linearGradient3248" 42.5770 + id="linearGradient7071" 42.5771 + gradientUnits="userSpaceOnUse" 42.5772 + gradientTransform="matrix(0.2087115,0,0,0.2080024,571.82576,245.84193)" 42.5773 + x1="275.72681" 42.5774 + y1="571.90552" 42.5775 + x2="352.27246" 42.5776 + y2="571.90552" /> 42.5777 + <linearGradient 42.5778 + inkscape:collect="always" 42.5779 + xlink:href="#linearGradient3262" 42.5780 + id="linearGradient7075" 42.5781 + gradientUnits="userSpaceOnUse" 42.5782 + gradientTransform="matrix(0.2087115,0,0,0.2080024,545.09577,278.60337)" 42.5783 + x1="332.91602" 42.5784 + y1="520.33307" 42.5785 + x2="355.81863" 42.5786 + y2="535.99042" /> 42.5787 + <linearGradient 42.5788 + inkscape:collect="always" 42.5789 + xlink:href="#linearGradient3276" 42.5790 + id="linearGradient7078" 42.5791 + gradientUnits="userSpaceOnUse" 42.5792 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,729.98092,278.60337)" 42.5793 + x1="338.63031" 42.5794 + y1="522.47595" 42.5795 + x2="358.67578" 42.5796 + y2="538.1333" /> 42.5797 + <linearGradient 42.5798 + inkscape:collect="always" 42.5799 + xlink:href="#linearGradient3296" 42.5800 + id="linearGradient7082" 42.5801 + gradientUnits="userSpaceOnUse" 42.5802 + gradientTransform="matrix(0.2087115,0,0,0.2080024,545.09577,278.60337)" 42.5803 + x1="529.11237" 42.5804 + y1="333.99472" 42.5805 + x2="526.08197" 42.5806 + y2="321.36786" /> 42.5807 + <linearGradient 42.5808 + inkscape:collect="always" 42.5809 + xlink:href="#linearGradient3248" 42.5810 + id="linearGradient7090" 42.5811 + gradientUnits="userSpaceOnUse" 42.5812 + gradientTransform="matrix(0.2087115,0,0,0.2080024,516.1402,245.84193)" 42.5813 + x1="275.72681" 42.5814 + y1="571.90552" 42.5815 + x2="352.27246" 42.5816 + y2="571.90552" /> 42.5817 + <linearGradient 42.5818 + inkscape:collect="always" 42.5819 + xlink:href="#linearGradient3262" 42.5820 + id="linearGradient7094" 42.5821 + gradientUnits="userSpaceOnUse" 42.5822 + gradientTransform="matrix(0.2087115,0,0,0.2080024,489.41021,278.60337)" 42.5823 + x1="332.91602" 42.5824 + y1="520.33307" 42.5825 + x2="355.81863" 42.5826 + y2="535.99042" /> 42.5827 + <linearGradient 42.5828 + inkscape:collect="always" 42.5829 + xlink:href="#linearGradient3276" 42.5830 + id="linearGradient7097" 42.5831 + gradientUnits="userSpaceOnUse" 42.5832 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,674.29536,278.60337)" 42.5833 + x1="338.63031" 42.5834 + y1="522.47595" 42.5835 + x2="358.67578" 42.5836 + y2="538.1333" /> 42.5837 + <linearGradient 42.5838 + inkscape:collect="always" 42.5839 + xlink:href="#linearGradient3296" 42.5840 + id="linearGradient7101" 42.5841 + gradientUnits="userSpaceOnUse" 42.5842 + gradientTransform="matrix(0.2087115,0,0,0.2080024,489.41021,278.60337)" 42.5843 + x1="529.11237" 42.5844 + y1="333.99472" 42.5845 + x2="526.08197" 42.5846 + y2="321.36786" /> 42.5847 + <linearGradient 42.5848 + inkscape:collect="always" 42.5849 + xlink:href="#linearGradient3248" 42.5850 + id="linearGradient7109" 42.5851 + gradientUnits="userSpaceOnUse" 42.5852 + gradientTransform="matrix(0.2087115,0,0,0.2080024,460.45466,245.84193)" 42.5853 + x1="275.72681" 42.5854 + y1="571.90552" 42.5855 + x2="352.27246" 42.5856 + y2="571.90552" /> 42.5857 + <linearGradient 42.5858 + inkscape:collect="always" 42.5859 + xlink:href="#linearGradient3262" 42.5860 + id="linearGradient7113" 42.5861 + gradientUnits="userSpaceOnUse" 42.5862 + gradientTransform="matrix(0.2087115,0,0,0.2080024,433.72467,278.60337)" 42.5863 + x1="332.91602" 42.5864 + y1="520.33307" 42.5865 + x2="355.81863" 42.5866 + y2="535.99042" /> 42.5867 + <linearGradient 42.5868 + inkscape:collect="always" 42.5869 + xlink:href="#linearGradient3276" 42.5870 + id="linearGradient7116" 42.5871 + gradientUnits="userSpaceOnUse" 42.5872 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,618.60982,278.60337)" 42.5873 + x1="338.63031" 42.5874 + y1="522.47595" 42.5875 + x2="358.67578" 42.5876 + y2="538.1333" /> 42.5877 + <linearGradient 42.5878 + inkscape:collect="always" 42.5879 + xlink:href="#linearGradient3296" 42.5880 + id="linearGradient7120" 42.5881 + gradientUnits="userSpaceOnUse" 42.5882 + gradientTransform="matrix(0.2087115,0,0,0.2080024,433.72467,278.60337)" 42.5883 + x1="529.11237" 42.5884 + y1="333.99472" 42.5885 + x2="526.08197" 42.5886 + y2="321.36786" /> 42.5887 + <linearGradient 42.5888 + inkscape:collect="always" 42.5889 + xlink:href="#linearGradient3248" 42.5890 + id="linearGradient7129" 42.5891 + gradientUnits="userSpaceOnUse" 42.5892 + gradientTransform="matrix(0.2087115,0,0,0.2080024,404.76914,245.84193)" 42.5893 + x1="275.72681" 42.5894 + y1="571.90552" 42.5895 + x2="352.27246" 42.5896 + y2="571.90552" /> 42.5897 + <linearGradient 42.5898 + inkscape:collect="always" 42.5899 + xlink:href="#linearGradient3262" 42.5900 + id="linearGradient7133" 42.5901 + gradientUnits="userSpaceOnUse" 42.5902 + gradientTransform="matrix(0.2087115,0,0,0.2080024,378.03915,278.60337)" 42.5903 + x1="332.91602" 42.5904 + y1="520.33307" 42.5905 + x2="355.81863" 42.5906 + y2="535.99042" /> 42.5907 + <linearGradient 42.5908 + inkscape:collect="always" 42.5909 + xlink:href="#linearGradient3276" 42.5910 + id="linearGradient7136" 42.5911 + gradientUnits="userSpaceOnUse" 42.5912 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,562.9243,278.60337)" 42.5913 + x1="338.63031" 42.5914 + y1="522.47595" 42.5915 + x2="358.67578" 42.5916 + y2="538.1333" /> 42.5917 + <linearGradient 42.5918 + inkscape:collect="always" 42.5919 + xlink:href="#linearGradient3296" 42.5920 + id="linearGradient7140" 42.5921 + gradientUnits="userSpaceOnUse" 42.5922 + gradientTransform="matrix(0.2087115,0,0,0.2080024,378.03915,278.60337)" 42.5923 + x1="529.11237" 42.5924 + y1="333.99472" 42.5925 + x2="526.08197" 42.5926 + y2="321.36786" /> 42.5927 + <linearGradient 42.5928 + inkscape:collect="always" 42.5929 + xlink:href="#linearGradient3248" 42.5930 + id="linearGradient7148" 42.5931 + gradientUnits="userSpaceOnUse" 42.5932 + gradientTransform="matrix(0.2087115,0,0,0.2080024,349.08361,245.84193)" 42.5933 + x1="275.72681" 42.5934 + y1="571.90552" 42.5935 + x2="352.27246" 42.5936 + y2="571.90552" /> 42.5937 + <linearGradient 42.5938 + inkscape:collect="always" 42.5939 + xlink:href="#linearGradient3262" 42.5940 + id="linearGradient7152" 42.5941 + gradientUnits="userSpaceOnUse" 42.5942 + gradientTransform="matrix(0.2087115,0,0,0.2080024,322.35362,278.60337)" 42.5943 + x1="332.91602" 42.5944 + y1="520.33307" 42.5945 + x2="355.81863" 42.5946 + y2="535.99042" /> 42.5947 + <linearGradient 42.5948 + inkscape:collect="always" 42.5949 + xlink:href="#linearGradient3276" 42.5950 + id="linearGradient7155" 42.5951 + gradientUnits="userSpaceOnUse" 42.5952 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,507.23877,278.60337)" 42.5953 + x1="338.63031" 42.5954 + y1="522.47595" 42.5955 + x2="358.67578" 42.5956 + y2="538.1333" /> 42.5957 + <linearGradient 42.5958 + inkscape:collect="always" 42.5959 + xlink:href="#linearGradient3296" 42.5960 + id="linearGradient7159" 42.5961 + gradientUnits="userSpaceOnUse" 42.5962 + gradientTransform="matrix(0.2087115,0,0,0.2080024,322.35362,278.60337)" 42.5963 + x1="529.11237" 42.5964 + y1="333.99472" 42.5965 + x2="526.08197" 42.5966 + y2="321.36786" /> 42.5967 + <linearGradient 42.5968 + inkscape:collect="always" 42.5969 + xlink:href="#linearGradient3248" 42.5970 + id="linearGradient7167" 42.5971 + gradientUnits="userSpaceOnUse" 42.5972 + gradientTransform="matrix(0.2087115,0,0,0.2080024,293.39807,245.84193)" 42.5973 + x1="275.72681" 42.5974 + y1="571.90552" 42.5975 + x2="352.27246" 42.5976 + y2="571.90552" /> 42.5977 + <linearGradient 42.5978 + inkscape:collect="always" 42.5979 + xlink:href="#linearGradient3262" 42.5980 + id="linearGradient7171" 42.5981 + gradientUnits="userSpaceOnUse" 42.5982 + gradientTransform="matrix(0.2087115,0,0,0.2080024,266.66808,278.60337)" 42.5983 + x1="332.91602" 42.5984 + y1="520.33307" 42.5985 + x2="355.81863" 42.5986 + y2="535.99042" /> 42.5987 + <linearGradient 42.5988 + inkscape:collect="always" 42.5989 + xlink:href="#linearGradient3276" 42.5990 + id="linearGradient7174" 42.5991 + gradientUnits="userSpaceOnUse" 42.5992 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,451.55323,278.60337)" 42.5993 + x1="338.63031" 42.5994 + y1="522.47595" 42.5995 + x2="358.67578" 42.5996 + y2="538.1333" /> 42.5997 + <linearGradient 42.5998 + inkscape:collect="always" 42.5999 + xlink:href="#linearGradient3296" 42.6000 + id="linearGradient7178" 42.6001 + gradientUnits="userSpaceOnUse" 42.6002 + gradientTransform="matrix(0.2087115,0,0,0.2080024,266.66808,278.60337)" 42.6003 + x1="529.11237" 42.6004 + y1="333.99472" 42.6005 + x2="526.08197" 42.6006 + y2="321.36786" /> 42.6007 + <linearGradient 42.6008 + inkscape:collect="always" 42.6009 + xlink:href="#linearGradient3248" 42.6010 + id="linearGradient7186" 42.6011 + gradientUnits="userSpaceOnUse" 42.6012 + gradientTransform="matrix(0.2087115,0,0,0.2080024,237.71254,245.84193)" 42.6013 + x1="275.72681" 42.6014 + y1="571.90552" 42.6015 + x2="352.27246" 42.6016 + y2="571.90552" /> 42.6017 + <linearGradient 42.6018 + inkscape:collect="always" 42.6019 + xlink:href="#linearGradient3262" 42.6020 + id="linearGradient7190" 42.6021 + gradientUnits="userSpaceOnUse" 42.6022 + gradientTransform="matrix(0.2087115,0,0,0.2080024,210.98255,278.60337)" 42.6023 + x1="332.91602" 42.6024 + y1="520.33307" 42.6025 + x2="355.81863" 42.6026 + y2="535.99042" /> 42.6027 + <linearGradient 42.6028 + inkscape:collect="always" 42.6029 + xlink:href="#linearGradient3276" 42.6030 + id="linearGradient7193" 42.6031 + gradientUnits="userSpaceOnUse" 42.6032 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,395.8677,278.60337)" 42.6033 + x1="338.63031" 42.6034 + y1="522.47595" 42.6035 + x2="358.67578" 42.6036 + y2="538.1333" /> 42.6037 + <linearGradient 42.6038 + inkscape:collect="always" 42.6039 + xlink:href="#linearGradient3296" 42.6040 + id="linearGradient7197" 42.6041 + gradientUnits="userSpaceOnUse" 42.6042 + gradientTransform="matrix(0.2087115,0,0,0.2080024,210.98255,278.60337)" 42.6043 + x1="529.11237" 42.6044 + y1="333.99472" 42.6045 + x2="526.08197" 42.6046 + y2="321.36786" /> 42.6047 + <linearGradient 42.6048 + inkscape:collect="always" 42.6049 + xlink:href="#linearGradient3248" 42.6050 + id="linearGradient7205" 42.6051 + gradientUnits="userSpaceOnUse" 42.6052 + gradientTransform="matrix(0.2087115,0,0,0.2080024,182.027,245.84193)" 42.6053 + x1="275.72681" 42.6054 + y1="571.90552" 42.6055 + x2="352.27246" 42.6056 + y2="571.90552" /> 42.6057 + <linearGradient 42.6058 + inkscape:collect="always" 42.6059 + xlink:href="#linearGradient3262" 42.6060 + id="linearGradient7209" 42.6061 + gradientUnits="userSpaceOnUse" 42.6062 + gradientTransform="matrix(0.2087115,0,0,0.2080024,155.29701,278.60337)" 42.6063 + x1="332.91602" 42.6064 + y1="520.33307" 42.6065 + x2="355.81863" 42.6066 + y2="535.99042" /> 42.6067 + <linearGradient 42.6068 + inkscape:collect="always" 42.6069 + xlink:href="#linearGradient3276" 42.6070 + id="linearGradient7212" 42.6071 + gradientUnits="userSpaceOnUse" 42.6072 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,340.18216,278.60337)" 42.6073 + x1="338.63031" 42.6074 + y1="522.47595" 42.6075 + x2="358.67578" 42.6076 + y2="538.1333" /> 42.6077 + <linearGradient 42.6078 + inkscape:collect="always" 42.6079 + xlink:href="#linearGradient3296" 42.6080 + id="linearGradient7216" 42.6081 + gradientUnits="userSpaceOnUse" 42.6082 + gradientTransform="matrix(0.2087115,0,0,0.2080024,155.29701,278.60337)" 42.6083 + x1="529.11237" 42.6084 + y1="333.99472" 42.6085 + x2="526.08197" 42.6086 + y2="321.36786" /> 42.6087 + <linearGradient 42.6088 + inkscape:collect="always" 42.6089 + xlink:href="#linearGradient3248" 42.6090 + id="linearGradient7224" 42.6091 + gradientUnits="userSpaceOnUse" 42.6092 + gradientTransform="matrix(0.2087115,0,0,0.2080024,126.34146,245.84193)" 42.6093 + x1="275.72681" 42.6094 + y1="571.90552" 42.6095 + x2="352.27246" 42.6096 + y2="571.90552" /> 42.6097 + <linearGradient 42.6098 + inkscape:collect="always" 42.6099 + xlink:href="#linearGradient3262" 42.6100 + id="linearGradient7228" 42.6101 + gradientUnits="userSpaceOnUse" 42.6102 + gradientTransform="matrix(0.2087115,0,0,0.2080024,99.611466,278.60337)" 42.6103 + x1="332.91602" 42.6104 + y1="520.33307" 42.6105 + x2="355.81863" 42.6106 + y2="535.99042" /> 42.6107 + <linearGradient 42.6108 + inkscape:collect="always" 42.6109 + xlink:href="#linearGradient3276" 42.6110 + id="linearGradient7231" 42.6111 + gradientUnits="userSpaceOnUse" 42.6112 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,284.49662,278.60337)" 42.6113 + x1="338.63031" 42.6114 + y1="522.47595" 42.6115 + x2="358.67578" 42.6116 + y2="538.1333" /> 42.6117 + <linearGradient 42.6118 + inkscape:collect="always" 42.6119 + xlink:href="#linearGradient3296" 42.6120 + id="linearGradient7235" 42.6121 + gradientUnits="userSpaceOnUse" 42.6122 + gradientTransform="matrix(0.2087115,0,0,0.2080024,99.611466,278.60337)" 42.6123 + x1="529.11237" 42.6124 + y1="333.99472" 42.6125 + x2="526.08197" 42.6126 + y2="321.36786" /> 42.6127 + <linearGradient 42.6128 + inkscape:collect="always" 42.6129 + xlink:href="#linearGradient3248" 42.6130 + id="linearGradient7243" 42.6131 + gradientUnits="userSpaceOnUse" 42.6132 + gradientTransform="matrix(0.2087115,0,0,0.2080024,70.655873,245.84193)" 42.6133 + x1="275.72681" 42.6134 + y1="571.90552" 42.6135 + x2="352.27246" 42.6136 + y2="571.90552" /> 42.6137 + <linearGradient 42.6138 + inkscape:collect="always" 42.6139 + xlink:href="#linearGradient3262" 42.6140 + id="linearGradient7247" 42.6141 + gradientUnits="userSpaceOnUse" 42.6142 + gradientTransform="matrix(0.2087115,0,0,0.2080024,43.925882,278.60337)" 42.6143 + x1="332.91602" 42.6144 + y1="520.33307" 42.6145 + x2="355.81863" 42.6146 + y2="535.99042" /> 42.6147 + <linearGradient 42.6148 + inkscape:collect="always" 42.6149 + xlink:href="#linearGradient3276" 42.6150 + id="linearGradient7250" 42.6151 + gradientUnits="userSpaceOnUse" 42.6152 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,228.81105,278.60337)" 42.6153 + x1="338.63031" 42.6154 + y1="522.47595" 42.6155 + x2="358.67578" 42.6156 + y2="538.1333" /> 42.6157 + <linearGradient 42.6158 + inkscape:collect="always" 42.6159 + xlink:href="#linearGradient3296" 42.6160 + id="linearGradient7254" 42.6161 + gradientUnits="userSpaceOnUse" 42.6162 + gradientTransform="matrix(0.2087115,0,0,0.2080024,43.925882,278.60337)" 42.6163 + x1="529.11237" 42.6164 + y1="333.99472" 42.6165 + x2="526.08197" 42.6166 + y2="321.36786" /> 42.6167 + <linearGradient 42.6168 + inkscape:collect="always" 42.6169 + xlink:href="#linearGradient3248" 42.6170 + id="linearGradient7262" 42.6171 + gradientUnits="userSpaceOnUse" 42.6172 + gradientTransform="matrix(0.2087115,0,0,0.2080024,672.48252,189.7705)" 42.6173 + x1="275.72681" 42.6174 + y1="571.90552" 42.6175 + x2="352.27246" 42.6176 + y2="571.90552" /> 42.6177 + <linearGradient 42.6178 + inkscape:collect="always" 42.6179 + xlink:href="#linearGradient3262" 42.6180 + id="linearGradient7266" 42.6181 + gradientUnits="userSpaceOnUse" 42.6182 + gradientTransform="matrix(0.2087115,0,0,0.2080024,645.75253,222.53194)" 42.6183 + x1="332.91602" 42.6184 + y1="520.33307" 42.6185 + x2="355.81863" 42.6186 + y2="535.99042" /> 42.6187 + <linearGradient 42.6188 + inkscape:collect="always" 42.6189 + xlink:href="#linearGradient3276" 42.6190 + id="linearGradient7269" 42.6191 + gradientUnits="userSpaceOnUse" 42.6192 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,830.63768,222.53194)" 42.6193 + x1="338.63031" 42.6194 + y1="522.47595" 42.6195 + x2="358.67578" 42.6196 + y2="538.1333" /> 42.6197 + <linearGradient 42.6198 + inkscape:collect="always" 42.6199 + xlink:href="#linearGradient3296" 42.6200 + id="linearGradient7273" 42.6201 + gradientUnits="userSpaceOnUse" 42.6202 + gradientTransform="matrix(0.2087115,0,0,0.2080024,645.75253,222.53194)" 42.6203 + x1="529.11237" 42.6204 + y1="333.99472" 42.6205 + x2="526.08197" 42.6206 + y2="321.36786" /> 42.6207 + <linearGradient 42.6208 + inkscape:collect="always" 42.6209 + xlink:href="#linearGradient3248" 42.6210 + id="linearGradient7281" 42.6211 + gradientUnits="userSpaceOnUse" 42.6212 + gradientTransform="matrix(0.2087115,0,0,0.2080024,616.797,189.7705)" 42.6213 + x1="275.72681" 42.6214 + y1="571.90552" 42.6215 + x2="352.27246" 42.6216 + y2="571.90552" /> 42.6217 + <linearGradient 42.6218 + inkscape:collect="always" 42.6219 + xlink:href="#linearGradient3262" 42.6220 + id="linearGradient7285" 42.6221 + gradientUnits="userSpaceOnUse" 42.6222 + gradientTransform="matrix(0.2087115,0,0,0.2080024,590.06701,222.53194)" 42.6223 + x1="332.91602" 42.6224 + y1="520.33307" 42.6225 + x2="355.81863" 42.6226 + y2="535.99042" /> 42.6227 + <linearGradient 42.6228 + inkscape:collect="always" 42.6229 + xlink:href="#linearGradient3276" 42.6230 + id="linearGradient7288" 42.6231 + gradientUnits="userSpaceOnUse" 42.6232 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,774.95216,222.53194)" 42.6233 + x1="338.63031" 42.6234 + y1="522.47595" 42.6235 + x2="358.67578" 42.6236 + y2="538.1333" /> 42.6237 + <linearGradient 42.6238 + inkscape:collect="always" 42.6239 + xlink:href="#linearGradient3296" 42.6240 + id="linearGradient7292" 42.6241 + gradientUnits="userSpaceOnUse" 42.6242 + gradientTransform="matrix(0.2087115,0,0,0.2080024,590.06701,222.53194)" 42.6243 + x1="529.11237" 42.6244 + y1="333.99472" 42.6245 + x2="526.08197" 42.6246 + y2="321.36786" /> 42.6247 + <linearGradient 42.6248 + inkscape:collect="always" 42.6249 + xlink:href="#linearGradient3248" 42.6250 + id="linearGradient7300" 42.6251 + gradientUnits="userSpaceOnUse" 42.6252 + gradientTransform="matrix(0.2087115,0,0,0.2080024,561.11147,189.7705)" 42.6253 + x1="275.72681" 42.6254 + y1="571.90552" 42.6255 + x2="352.27246" 42.6256 + y2="571.90552" /> 42.6257 + <linearGradient 42.6258 + inkscape:collect="always" 42.6259 + xlink:href="#linearGradient3262" 42.6260 + id="linearGradient7304" 42.6261 + gradientUnits="userSpaceOnUse" 42.6262 + gradientTransform="matrix(0.2087115,0,0,0.2080024,534.38148,222.53194)" 42.6263 + x1="332.91602" 42.6264 + y1="520.33307" 42.6265 + x2="355.81863" 42.6266 + y2="535.99042" /> 42.6267 + <linearGradient 42.6268 + inkscape:collect="always" 42.6269 + xlink:href="#linearGradient3276" 42.6270 + id="linearGradient7307" 42.6271 + gradientUnits="userSpaceOnUse" 42.6272 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,719.26663,222.53194)" 42.6273 + x1="338.63031" 42.6274 + y1="522.47595" 42.6275 + x2="358.67578" 42.6276 + y2="538.1333" /> 42.6277 + <linearGradient 42.6278 + inkscape:collect="always" 42.6279 + xlink:href="#linearGradient3296" 42.6280 + id="linearGradient7311" 42.6281 + gradientUnits="userSpaceOnUse" 42.6282 + gradientTransform="matrix(0.2087115,0,0,0.2080024,534.38148,222.53194)" 42.6283 + x1="529.11237" 42.6284 + y1="333.99472" 42.6285 + x2="526.08197" 42.6286 + y2="321.36786" /> 42.6287 + <linearGradient 42.6288 + inkscape:collect="always" 42.6289 + xlink:href="#linearGradient3248" 42.6290 + id="linearGradient7320" 42.6291 + gradientUnits="userSpaceOnUse" 42.6292 + gradientTransform="matrix(0.2087115,0,0,0.2080024,505.42591,189.7705)" 42.6293 + x1="275.72681" 42.6294 + y1="571.90552" 42.6295 + x2="352.27246" 42.6296 + y2="571.90552" /> 42.6297 + <linearGradient 42.6298 + inkscape:collect="always" 42.6299 + xlink:href="#linearGradient3262" 42.6300 + id="linearGradient7324" 42.6301 + gradientUnits="userSpaceOnUse" 42.6302 + gradientTransform="matrix(0.2087115,0,0,0.2080024,478.69592,222.53194)" 42.6303 + x1="332.91602" 42.6304 + y1="520.33307" 42.6305 + x2="355.81863" 42.6306 + y2="535.99042" /> 42.6307 + <linearGradient 42.6308 + inkscape:collect="always" 42.6309 + xlink:href="#linearGradient3276" 42.6310 + id="linearGradient7327" 42.6311 + gradientUnits="userSpaceOnUse" 42.6312 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,663.58107,222.53194)" 42.6313 + x1="338.63031" 42.6314 + y1="522.47595" 42.6315 + x2="358.67578" 42.6316 + y2="538.1333" /> 42.6317 + <linearGradient 42.6318 + inkscape:collect="always" 42.6319 + xlink:href="#linearGradient3296" 42.6320 + id="linearGradient7331" 42.6321 + gradientUnits="userSpaceOnUse" 42.6322 + gradientTransform="matrix(0.2087115,0,0,0.2080024,478.69592,222.53194)" 42.6323 + x1="529.11237" 42.6324 + y1="333.99472" 42.6325 + x2="526.08197" 42.6326 + y2="321.36786" /> 42.6327 + <linearGradient 42.6328 + inkscape:collect="always" 42.6329 + xlink:href="#linearGradient3248" 42.6330 + id="linearGradient7339" 42.6331 + gradientUnits="userSpaceOnUse" 42.6332 + gradientTransform="matrix(0.2087115,0,0,0.2080024,449.74037,189.7705)" 42.6333 + x1="275.72681" 42.6334 + y1="571.90552" 42.6335 + x2="352.27246" 42.6336 + y2="571.90552" /> 42.6337 + <linearGradient 42.6338 + inkscape:collect="always" 42.6339 + xlink:href="#linearGradient3262" 42.6340 + id="linearGradient7343" 42.6341 + gradientUnits="userSpaceOnUse" 42.6342 + gradientTransform="matrix(0.2087115,0,0,0.2080024,423.01038,222.53194)" 42.6343 + x1="332.91602" 42.6344 + y1="520.33307" 42.6345 + x2="355.81863" 42.6346 + y2="535.99042" /> 42.6347 + <linearGradient 42.6348 + inkscape:collect="always" 42.6349 + xlink:href="#linearGradient3276" 42.6350 + id="linearGradient7346" 42.6351 + gradientUnits="userSpaceOnUse" 42.6352 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,607.89553,222.53194)" 42.6353 + x1="338.63031" 42.6354 + y1="522.47595" 42.6355 + x2="358.67578" 42.6356 + y2="538.1333" /> 42.6357 + <linearGradient 42.6358 + inkscape:collect="always" 42.6359 + xlink:href="#linearGradient3296" 42.6360 + id="linearGradient7350" 42.6361 + gradientUnits="userSpaceOnUse" 42.6362 + gradientTransform="matrix(0.2087115,0,0,0.2080024,423.01038,222.53194)" 42.6363 + x1="529.11237" 42.6364 + y1="333.99472" 42.6365 + x2="526.08197" 42.6366 + y2="321.36786" /> 42.6367 + <linearGradient 42.6368 + inkscape:collect="always" 42.6369 + xlink:href="#linearGradient3248" 42.6370 + id="linearGradient7358" 42.6371 + gradientUnits="userSpaceOnUse" 42.6372 + gradientTransform="matrix(0.2087115,0,0,0.2080024,394.05485,189.7705)" 42.6373 + x1="275.72681" 42.6374 + y1="571.90552" 42.6375 + x2="352.27246" 42.6376 + y2="571.90552" /> 42.6377 + <linearGradient 42.6378 + inkscape:collect="always" 42.6379 + xlink:href="#linearGradient3262" 42.6380 + id="linearGradient7362" 42.6381 + gradientUnits="userSpaceOnUse" 42.6382 + gradientTransform="matrix(0.2087115,0,0,0.2080024,367.32486,222.53194)" 42.6383 + x1="332.91602" 42.6384 + y1="520.33307" 42.6385 + x2="355.81863" 42.6386 + y2="535.99042" /> 42.6387 + <linearGradient 42.6388 + inkscape:collect="always" 42.6389 + xlink:href="#linearGradient3276" 42.6390 + id="linearGradient7365" 42.6391 + gradientUnits="userSpaceOnUse" 42.6392 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,552.21001,222.53194)" 42.6393 + x1="338.63031" 42.6394 + y1="522.47595" 42.6395 + x2="358.67578" 42.6396 + y2="538.1333" /> 42.6397 + <linearGradient 42.6398 + inkscape:collect="always" 42.6399 + xlink:href="#linearGradient3296" 42.6400 + id="linearGradient7369" 42.6401 + gradientUnits="userSpaceOnUse" 42.6402 + gradientTransform="matrix(0.2087115,0,0,0.2080024,367.32486,222.53194)" 42.6403 + x1="529.11237" 42.6404 + y1="333.99472" 42.6405 + x2="526.08197" 42.6406 + y2="321.36786" /> 42.6407 + <linearGradient 42.6408 + inkscape:collect="always" 42.6409 + xlink:href="#linearGradient3248" 42.6410 + id="linearGradient7377" 42.6411 + gradientUnits="userSpaceOnUse" 42.6412 + gradientTransform="matrix(0.2087115,0,0,0.2080024,338.36932,189.7705)" 42.6413 + x1="275.72681" 42.6414 + y1="571.90552" 42.6415 + x2="352.27246" 42.6416 + y2="571.90552" /> 42.6417 + <linearGradient 42.6418 + inkscape:collect="always" 42.6419 + xlink:href="#linearGradient3262" 42.6420 + id="linearGradient7382" 42.6421 + gradientUnits="userSpaceOnUse" 42.6422 + gradientTransform="matrix(0.2087115,0,0,0.2080024,311.63933,222.53194)" 42.6423 + x1="332.91602" 42.6424 + y1="520.33307" 42.6425 + x2="355.81863" 42.6426 + y2="535.99042" /> 42.6427 + <linearGradient 42.6428 + inkscape:collect="always" 42.6429 + xlink:href="#linearGradient3276" 42.6430 + id="linearGradient7386" 42.6431 + gradientUnits="userSpaceOnUse" 42.6432 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,496.52448,222.53194)" 42.6433 + x1="338.63031" 42.6434 + y1="522.47595" 42.6435 + x2="358.67578" 42.6436 + y2="538.1333" /> 42.6437 + <linearGradient 42.6438 + inkscape:collect="always" 42.6439 + xlink:href="#linearGradient3296" 42.6440 + id="linearGradient7390" 42.6441 + gradientUnits="userSpaceOnUse" 42.6442 + gradientTransform="matrix(0.2087115,0,0,0.2080024,311.63933,222.53194)" 42.6443 + x1="529.11237" 42.6444 + y1="333.99472" 42.6445 + x2="526.08197" 42.6446 + y2="321.36786" /> 42.6447 + <linearGradient 42.6448 + inkscape:collect="always" 42.6449 + xlink:href="#linearGradient3248" 42.6450 + id="linearGradient7398" 42.6451 + gradientUnits="userSpaceOnUse" 42.6452 + gradientTransform="matrix(0.2087115,0,0,0.2080024,282.68378,189.7705)" 42.6453 + x1="275.72681" 42.6454 + y1="571.90552" 42.6455 + x2="352.27246" 42.6456 + y2="571.90552" /> 42.6457 + <linearGradient 42.6458 + inkscape:collect="always" 42.6459 + xlink:href="#linearGradient3262" 42.6460 + id="linearGradient7402" 42.6461 + gradientUnits="userSpaceOnUse" 42.6462 + gradientTransform="matrix(0.2087115,0,0,0.2080024,255.95379,222.53194)" 42.6463 + x1="332.91602" 42.6464 + y1="520.33307" 42.6465 + x2="355.81863" 42.6466 + y2="535.99042" /> 42.6467 + <linearGradient 42.6468 + inkscape:collect="always" 42.6469 + xlink:href="#linearGradient3276" 42.6470 + id="linearGradient7405" 42.6471 + gradientUnits="userSpaceOnUse" 42.6472 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,440.83894,222.53194)" 42.6473 + x1="338.63031" 42.6474 + y1="522.47595" 42.6475 + x2="358.67578" 42.6476 + y2="538.1333" /> 42.6477 + <linearGradient 42.6478 + inkscape:collect="always" 42.6479 + xlink:href="#linearGradient3296" 42.6480 + id="linearGradient7410" 42.6481 + gradientUnits="userSpaceOnUse" 42.6482 + gradientTransform="matrix(0.2087115,0,0,0.2080024,255.95379,222.53194)" 42.6483 + x1="529.11237" 42.6484 + y1="333.99472" 42.6485 + x2="526.08197" 42.6486 + y2="321.36786" /> 42.6487 + <linearGradient 42.6488 + inkscape:collect="always" 42.6489 + xlink:href="#linearGradient3248" 42.6490 + id="linearGradient7418" 42.6491 + gradientUnits="userSpaceOnUse" 42.6492 + gradientTransform="matrix(0.2087115,0,0,0.2080024,226.99825,189.7705)" 42.6493 + x1="275.72681" 42.6494 + y1="571.90552" 42.6495 + x2="352.27246" 42.6496 + y2="571.90552" /> 42.6497 + <linearGradient 42.6498 + inkscape:collect="always" 42.6499 + xlink:href="#linearGradient3262" 42.6500 + id="linearGradient7422" 42.6501 + gradientUnits="userSpaceOnUse" 42.6502 + gradientTransform="matrix(0.2087115,0,0,0.2080024,200.26826,222.53194)" 42.6503 + x1="332.91602" 42.6504 + y1="520.33307" 42.6505 + x2="355.81863" 42.6506 + y2="535.99042" /> 42.6507 + <linearGradient 42.6508 + inkscape:collect="always" 42.6509 + xlink:href="#linearGradient3276" 42.6510 + id="linearGradient7425" 42.6511 + gradientUnits="userSpaceOnUse" 42.6512 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,385.15341,222.53194)" 42.6513 + x1="338.63031" 42.6514 + y1="522.47595" 42.6515 + x2="358.67578" 42.6516 + y2="538.1333" /> 42.6517 + <linearGradient 42.6518 + inkscape:collect="always" 42.6519 + xlink:href="#linearGradient3296" 42.6520 + id="linearGradient7429" 42.6521 + gradientUnits="userSpaceOnUse" 42.6522 + gradientTransform="matrix(0.2087115,0,0,0.2080024,200.26826,222.53194)" 42.6523 + x1="529.11237" 42.6524 + y1="333.99472" 42.6525 + x2="526.08197" 42.6526 + y2="321.36786" /> 42.6527 + <linearGradient 42.6528 + inkscape:collect="always" 42.6529 + xlink:href="#linearGradient3248" 42.6530 + id="linearGradient7437" 42.6531 + gradientUnits="userSpaceOnUse" 42.6532 + gradientTransform="matrix(0.2087115,0,0,0.2080024,171.31271,189.7705)" 42.6533 + x1="275.72681" 42.6534 + y1="571.90552" 42.6535 + x2="352.27246" 42.6536 + y2="571.90552" /> 42.6537 + <linearGradient 42.6538 + inkscape:collect="always" 42.6539 + xlink:href="#linearGradient3262" 42.6540 + id="linearGradient7441" 42.6541 + gradientUnits="userSpaceOnUse" 42.6542 + gradientTransform="matrix(0.2087115,0,0,0.2080024,144.58272,222.53194)" 42.6543 + x1="332.91602" 42.6544 + y1="520.33307" 42.6545 + x2="355.81863" 42.6546 + y2="535.99042" /> 42.6547 + <linearGradient 42.6548 + inkscape:collect="always" 42.6549 + xlink:href="#linearGradient3276" 42.6550 + id="linearGradient7444" 42.6551 + gradientUnits="userSpaceOnUse" 42.6552 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,329.46787,222.53194)" 42.6553 + x1="338.63031" 42.6554 + y1="522.47595" 42.6555 + x2="358.67578" 42.6556 + y2="538.1333" /> 42.6557 + <linearGradient 42.6558 + inkscape:collect="always" 42.6559 + xlink:href="#linearGradient3296" 42.6560 + id="linearGradient7448" 42.6561 + gradientUnits="userSpaceOnUse" 42.6562 + gradientTransform="matrix(0.2087115,0,0,0.2080024,144.58272,222.53194)" 42.6563 + x1="529.11237" 42.6564 + y1="333.99472" 42.6565 + x2="526.08197" 42.6566 + y2="321.36786" /> 42.6567 + <linearGradient 42.6568 + inkscape:collect="always" 42.6569 + xlink:href="#linearGradient3248" 42.6570 + id="linearGradient7456" 42.6571 + gradientUnits="userSpaceOnUse" 42.6572 + gradientTransform="matrix(0.2087115,0,0,0.2080024,115.62717,189.7705)" 42.6573 + x1="275.72681" 42.6574 + y1="571.90552" 42.6575 + x2="352.27246" 42.6576 + y2="571.90552" /> 42.6577 + <linearGradient 42.6578 + inkscape:collect="always" 42.6579 + xlink:href="#linearGradient3262" 42.6580 + id="linearGradient7460" 42.6581 + gradientUnits="userSpaceOnUse" 42.6582 + gradientTransform="matrix(0.2087115,0,0,0.2080024,88.89718,222.53194)" 42.6583 + x1="332.91602" 42.6584 + y1="520.33307" 42.6585 + x2="355.81863" 42.6586 + y2="535.99042" /> 42.6587 + <linearGradient 42.6588 + inkscape:collect="always" 42.6589 + xlink:href="#linearGradient3276" 42.6590 + id="linearGradient7464" 42.6591 + gradientUnits="userSpaceOnUse" 42.6592 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,273.78233,222.53194)" 42.6593 + x1="338.63031" 42.6594 + y1="522.47595" 42.6595 + x2="358.67578" 42.6596 + y2="538.1333" /> 42.6597 + <linearGradient 42.6598 + inkscape:collect="always" 42.6599 + xlink:href="#linearGradient3296" 42.6600 + id="linearGradient7468" 42.6601 + gradientUnits="userSpaceOnUse" 42.6602 + gradientTransform="matrix(0.2087115,0,0,0.2080024,88.89718,222.53194)" 42.6603 + x1="529.11237" 42.6604 + y1="333.99472" 42.6605 + x2="526.08197" 42.6606 + y2="321.36786" /> 42.6607 + <linearGradient 42.6608 + inkscape:collect="always" 42.6609 + xlink:href="#linearGradient3248" 42.6610 + id="linearGradient7476" 42.6611 + gradientUnits="userSpaceOnUse" 42.6612 + gradientTransform="matrix(0.2087115,0,0,0.2080024,59.941587,189.7705)" 42.6613 + x1="275.72681" 42.6614 + y1="571.90552" 42.6615 + x2="352.27246" 42.6616 + y2="571.90552" /> 42.6617 + <linearGradient 42.6618 + inkscape:collect="always" 42.6619 + xlink:href="#linearGradient3262" 42.6620 + id="linearGradient7480" 42.6621 + gradientUnits="userSpaceOnUse" 42.6622 + gradientTransform="matrix(0.2087115,0,0,0.2080024,33.211596,222.53194)" 42.6623 + x1="332.91602" 42.6624 + y1="520.33307" 42.6625 + x2="355.81863" 42.6626 + y2="535.99042" /> 42.6627 + <linearGradient 42.6628 + inkscape:collect="always" 42.6629 + xlink:href="#linearGradient3276" 42.6630 + id="linearGradient7483" 42.6631 + gradientUnits="userSpaceOnUse" 42.6632 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,218.09676,222.53194)" 42.6633 + x1="338.63031" 42.6634 + y1="522.47595" 42.6635 + x2="358.67578" 42.6636 + y2="538.1333" /> 42.6637 + <linearGradient 42.6638 + inkscape:collect="always" 42.6639 + xlink:href="#linearGradient3296" 42.6640 + id="linearGradient7487" 42.6641 + gradientUnits="userSpaceOnUse" 42.6642 + gradientTransform="matrix(0.2087115,0,0,0.2080024,33.211596,222.53194)" 42.6643 + x1="529.11237" 42.6644 + y1="333.99472" 42.6645 + x2="526.08197" 42.6646 + y2="321.36786" /> 42.6647 + <linearGradient 42.6648 + inkscape:collect="always" 42.6649 + xlink:href="#linearGradient3262" 42.6650 + id="linearGradient7492" 42.6651 + gradientUnits="userSpaceOnUse" 42.6652 + gradientTransform="matrix(0.2087115,0,0,0.1005106,701.53936,283.33101)" 42.6653 + x1="332.91602" 42.6654 + y1="520.33307" 42.6655 + x2="355.81863" 42.6656 + y2="535.99042" /> 42.6657 + <linearGradient 42.6658 + inkscape:collect="always" 42.6659 + xlink:href="#linearGradient3248" 42.6660 + id="linearGradient7502" 42.6661 + gradientUnits="userSpaceOnUse" 42.6662 + gradientTransform="matrix(0.2087115,0,0,0.2080024,642.48252,134.21211)" 42.6663 + x1="275.72681" 42.6664 + y1="571.90552" 42.6665 + x2="352.27246" 42.6666 + y2="571.90552" /> 42.6667 + <linearGradient 42.6668 + inkscape:collect="always" 42.6669 + xlink:href="#linearGradient3262" 42.6670 + id="linearGradient7506" 42.6671 + gradientUnits="userSpaceOnUse" 42.6672 + gradientTransform="matrix(0.2087115,0,0,0.2080024,615.75253,166.97355)" 42.6673 + x1="332.91602" 42.6674 + y1="520.33307" 42.6675 + x2="355.81863" 42.6676 + y2="535.99042" /> 42.6677 + <linearGradient 42.6678 + inkscape:collect="always" 42.6679 + xlink:href="#linearGradient3276" 42.6680 + id="linearGradient7509" 42.6681 + gradientUnits="userSpaceOnUse" 42.6682 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,800.63768,166.97355)" 42.6683 + x1="338.63031" 42.6684 + y1="522.47595" 42.6685 + x2="358.67578" 42.6686 + y2="538.1333" /> 42.6687 + <linearGradient 42.6688 + inkscape:collect="always" 42.6689 + xlink:href="#linearGradient3296" 42.6690 + id="linearGradient7513" 42.6691 + gradientUnits="userSpaceOnUse" 42.6692 + gradientTransform="matrix(0.2087115,0,0,0.2080024,615.75253,166.97355)" 42.6693 + x1="529.11237" 42.6694 + y1="333.99472" 42.6695 + x2="526.08197" 42.6696 + y2="321.36786" /> 42.6697 + <linearGradient 42.6698 + inkscape:collect="always" 42.6699 + xlink:href="#linearGradient3248" 42.6700 + id="linearGradient7521" 42.6701 + gradientUnits="userSpaceOnUse" 42.6702 + gradientTransform="matrix(0.2087115,0,0,0.2080024,586.797,134.21211)" 42.6703 + x1="275.72681" 42.6704 + y1="571.90552" 42.6705 + x2="352.27246" 42.6706 + y2="571.90552" /> 42.6707 + <linearGradient 42.6708 + inkscape:collect="always" 42.6709 + xlink:href="#linearGradient3262" 42.6710 + id="linearGradient7526" 42.6711 + gradientUnits="userSpaceOnUse" 42.6712 + gradientTransform="matrix(0.2087115,0,0,0.2080024,560.06701,166.97355)" 42.6713 + x1="332.91602" 42.6714 + y1="520.33307" 42.6715 + x2="355.81863" 42.6716 + y2="535.99042" /> 42.6717 + <linearGradient 42.6718 + inkscape:collect="always" 42.6719 + xlink:href="#linearGradient3276" 42.6720 + id="linearGradient7530" 42.6721 + gradientUnits="userSpaceOnUse" 42.6722 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,744.95216,166.97355)" 42.6723 + x1="338.63031" 42.6724 + y1="522.47595" 42.6725 + x2="358.67578" 42.6726 + y2="538.1333" /> 42.6727 + <linearGradient 42.6728 + inkscape:collect="always" 42.6729 + xlink:href="#linearGradient3296" 42.6730 + id="linearGradient7534" 42.6731 + gradientUnits="userSpaceOnUse" 42.6732 + gradientTransform="matrix(0.2087115,0,0,0.2080024,560.06701,166.97355)" 42.6733 + x1="529.11237" 42.6734 + y1="333.99472" 42.6735 + x2="526.08197" 42.6736 + y2="321.36786" /> 42.6737 + <linearGradient 42.6738 + inkscape:collect="always" 42.6739 + xlink:href="#linearGradient3248" 42.6740 + id="linearGradient7542" 42.6741 + gradientUnits="userSpaceOnUse" 42.6742 + gradientTransform="matrix(0.2087115,0,0,0.2080024,531.11147,134.21211)" 42.6743 + x1="275.72681" 42.6744 + y1="571.90552" 42.6745 + x2="352.27246" 42.6746 + y2="571.90552" /> 42.6747 + <linearGradient 42.6748 + inkscape:collect="always" 42.6749 + xlink:href="#linearGradient3262" 42.6750 + id="linearGradient7546" 42.6751 + gradientUnits="userSpaceOnUse" 42.6752 + gradientTransform="matrix(0.2087115,0,0,0.2080024,504.38148,166.97355)" 42.6753 + x1="332.91602" 42.6754 + y1="520.33307" 42.6755 + x2="355.81863" 42.6756 + y2="535.99042" /> 42.6757 + <linearGradient 42.6758 + inkscape:collect="always" 42.6759 + xlink:href="#linearGradient3276" 42.6760 + id="linearGradient7549" 42.6761 + gradientUnits="userSpaceOnUse" 42.6762 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,689.26663,166.97355)" 42.6763 + x1="338.63031" 42.6764 + y1="522.47595" 42.6765 + x2="358.67578" 42.6766 + y2="538.1333" /> 42.6767 + <linearGradient 42.6768 + inkscape:collect="always" 42.6769 + xlink:href="#linearGradient3296" 42.6770 + id="linearGradient7554" 42.6771 + gradientUnits="userSpaceOnUse" 42.6772 + gradientTransform="matrix(0.2087115,0,0,0.2080024,504.38148,166.97355)" 42.6773 + x1="529.11237" 42.6774 + y1="333.99472" 42.6775 + x2="526.08197" 42.6776 + y2="321.36786" /> 42.6777 + <linearGradient 42.6778 + inkscape:collect="always" 42.6779 + xlink:href="#linearGradient3248" 42.6780 + id="linearGradient7562" 42.6781 + gradientUnits="userSpaceOnUse" 42.6782 + gradientTransform="matrix(0.2087115,0,0,0.2080024,475.42591,134.21211)" 42.6783 + x1="275.72681" 42.6784 + y1="571.90552" 42.6785 + x2="352.27246" 42.6786 + y2="571.90552" /> 42.6787 + <linearGradient 42.6788 + inkscape:collect="always" 42.6789 + xlink:href="#linearGradient3262" 42.6790 + id="linearGradient7566" 42.6791 + gradientUnits="userSpaceOnUse" 42.6792 + gradientTransform="matrix(0.2087115,0,0,0.2080024,448.69592,166.97355)" 42.6793 + x1="332.91602" 42.6794 + y1="520.33307" 42.6795 + x2="355.81863" 42.6796 + y2="535.99042" /> 42.6797 + <linearGradient 42.6798 + inkscape:collect="always" 42.6799 + xlink:href="#linearGradient3276" 42.6800 + id="linearGradient7569" 42.6801 + gradientUnits="userSpaceOnUse" 42.6802 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,633.58107,166.97355)" 42.6803 + x1="338.63031" 42.6804 + y1="522.47595" 42.6805 + x2="358.67578" 42.6806 + y2="538.1333" /> 42.6807 + <linearGradient 42.6808 + inkscape:collect="always" 42.6809 + xlink:href="#linearGradient3296" 42.6810 + id="linearGradient7573" 42.6811 + gradientUnits="userSpaceOnUse" 42.6812 + gradientTransform="matrix(0.2087115,0,0,0.2080024,448.69592,166.97355)" 42.6813 + x1="529.11237" 42.6814 + y1="333.99472" 42.6815 + x2="526.08197" 42.6816 + y2="321.36786" /> 42.6817 + <linearGradient 42.6818 + inkscape:collect="always" 42.6819 + xlink:href="#linearGradient3248" 42.6820 + id="linearGradient7581" 42.6821 + gradientUnits="userSpaceOnUse" 42.6822 + gradientTransform="matrix(0.2087115,0,0,0.2080024,419.74037,134.21211)" 42.6823 + x1="275.72681" 42.6824 + y1="571.90552" 42.6825 + x2="352.27246" 42.6826 + y2="571.90552" /> 42.6827 + <linearGradient 42.6828 + inkscape:collect="always" 42.6829 + xlink:href="#linearGradient3262" 42.6830 + id="linearGradient7585" 42.6831 + gradientUnits="userSpaceOnUse" 42.6832 + gradientTransform="matrix(0.2087115,0,0,0.2080024,393.01038,166.97355)" 42.6833 + x1="332.91602" 42.6834 + y1="520.33307" 42.6835 + x2="355.81863" 42.6836 + y2="535.99042" /> 42.6837 + <linearGradient 42.6838 + inkscape:collect="always" 42.6839 + xlink:href="#linearGradient3276" 42.6840 + id="linearGradient7588" 42.6841 + gradientUnits="userSpaceOnUse" 42.6842 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,577.89553,166.97355)" 42.6843 + x1="338.63031" 42.6844 + y1="522.47595" 42.6845 + x2="358.67578" 42.6846 + y2="538.1333" /> 42.6847 + <linearGradient 42.6848 + inkscape:collect="always" 42.6849 + xlink:href="#linearGradient3296" 42.6850 + id="linearGradient7592" 42.6851 + gradientUnits="userSpaceOnUse" 42.6852 + gradientTransform="matrix(0.2087115,0,0,0.2080024,393.01038,166.97355)" 42.6853 + x1="529.11237" 42.6854 + y1="333.99472" 42.6855 + x2="526.08197" 42.6856 + y2="321.36786" /> 42.6857 + <linearGradient 42.6858 + inkscape:collect="always" 42.6859 + xlink:href="#linearGradient3248" 42.6860 + id="linearGradient7600" 42.6861 + gradientUnits="userSpaceOnUse" 42.6862 + gradientTransform="matrix(0.2087115,0,0,0.2080024,364.05485,134.21211)" 42.6863 + x1="275.72681" 42.6864 + y1="571.90552" 42.6865 + x2="352.27246" 42.6866 + y2="571.90552" /> 42.6867 + <linearGradient 42.6868 + inkscape:collect="always" 42.6869 + xlink:href="#linearGradient3262" 42.6870 + id="linearGradient7605" 42.6871 + gradientUnits="userSpaceOnUse" 42.6872 + gradientTransform="matrix(0.2087115,0,0,0.2080024,337.32486,166.97355)" 42.6873 + x1="332.91602" 42.6874 + y1="520.33307" 42.6875 + x2="355.81863" 42.6876 + y2="535.99042" /> 42.6877 + <linearGradient 42.6878 + inkscape:collect="always" 42.6879 + xlink:href="#linearGradient3276" 42.6880 + id="linearGradient7608" 42.6881 + gradientUnits="userSpaceOnUse" 42.6882 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,522.21001,166.97355)" 42.6883 + x1="338.63031" 42.6884 + y1="522.47595" 42.6885 + x2="358.67578" 42.6886 + y2="538.1333" /> 42.6887 + <linearGradient 42.6888 + inkscape:collect="always" 42.6889 + xlink:href="#linearGradient3296" 42.6890 + id="linearGradient7612" 42.6891 + gradientUnits="userSpaceOnUse" 42.6892 + gradientTransform="matrix(0.2087115,0,0,0.2080024,337.32486,166.97355)" 42.6893 + x1="529.11237" 42.6894 + y1="333.99472" 42.6895 + x2="526.08197" 42.6896 + y2="321.36786" /> 42.6897 + <linearGradient 42.6898 + inkscape:collect="always" 42.6899 + xlink:href="#linearGradient3248" 42.6900 + id="linearGradient7620" 42.6901 + gradientUnits="userSpaceOnUse" 42.6902 + gradientTransform="matrix(0.2087115,0,0,0.2080024,308.36932,134.21211)" 42.6903 + x1="275.72681" 42.6904 + y1="571.90552" 42.6905 + x2="352.27246" 42.6906 + y2="571.90552" /> 42.6907 + <linearGradient 42.6908 + inkscape:collect="always" 42.6909 + xlink:href="#linearGradient3262" 42.6910 + id="linearGradient7624" 42.6911 + gradientUnits="userSpaceOnUse" 42.6912 + gradientTransform="matrix(0.2087115,0,0,0.2080024,281.63933,166.97355)" 42.6913 + x1="332.91602" 42.6914 + y1="520.33307" 42.6915 + x2="355.81863" 42.6916 + y2="535.99042" /> 42.6917 + <linearGradient 42.6918 + inkscape:collect="always" 42.6919 + xlink:href="#linearGradient3276" 42.6920 + id="linearGradient7627" 42.6921 + gradientUnits="userSpaceOnUse" 42.6922 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,466.52448,166.97355)" 42.6923 + x1="338.63031" 42.6924 + y1="522.47595" 42.6925 + x2="358.67578" 42.6926 + y2="538.1333" /> 42.6927 + <linearGradient 42.6928 + inkscape:collect="always" 42.6929 + xlink:href="#linearGradient3296" 42.6930 + id="linearGradient7631" 42.6931 + gradientUnits="userSpaceOnUse" 42.6932 + gradientTransform="matrix(0.2087115,0,0,0.2080024,281.63933,166.97355)" 42.6933 + x1="529.11237" 42.6934 + y1="333.99472" 42.6935 + x2="526.08197" 42.6936 + y2="321.36786" /> 42.6937 + <linearGradient 42.6938 + inkscape:collect="always" 42.6939 + xlink:href="#linearGradient3248" 42.6940 + id="linearGradient7639" 42.6941 + gradientUnits="userSpaceOnUse" 42.6942 + gradientTransform="matrix(0.2087115,0,0,0.2080024,252.68378,134.21211)" 42.6943 + x1="275.72681" 42.6944 + y1="571.90552" 42.6945 + x2="352.27246" 42.6946 + y2="571.90552" /> 42.6947 + <linearGradient 42.6948 + inkscape:collect="always" 42.6949 + xlink:href="#linearGradient3262" 42.6950 + id="linearGradient7643" 42.6951 + gradientUnits="userSpaceOnUse" 42.6952 + gradientTransform="matrix(0.2087115,0,0,0.2080024,225.95379,166.97355)" 42.6953 + x1="332.91602" 42.6954 + y1="520.33307" 42.6955 + x2="355.81863" 42.6956 + y2="535.99042" /> 42.6957 + <linearGradient 42.6958 + inkscape:collect="always" 42.6959 + xlink:href="#linearGradient3276" 42.6960 + id="linearGradient7646" 42.6961 + gradientUnits="userSpaceOnUse" 42.6962 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,410.83894,166.97355)" 42.6963 + x1="338.63031" 42.6964 + y1="522.47595" 42.6965 + x2="358.67578" 42.6966 + y2="538.1333" /> 42.6967 + <linearGradient 42.6968 + inkscape:collect="always" 42.6969 + xlink:href="#linearGradient3296" 42.6970 + id="linearGradient7650" 42.6971 + gradientUnits="userSpaceOnUse" 42.6972 + gradientTransform="matrix(0.2087115,0,0,0.2080024,225.95379,166.97355)" 42.6973 + x1="529.11237" 42.6974 + y1="333.99472" 42.6975 + x2="526.08197" 42.6976 + y2="321.36786" /> 42.6977 + <linearGradient 42.6978 + inkscape:collect="always" 42.6979 + xlink:href="#linearGradient3248" 42.6980 + id="linearGradient7658" 42.6981 + gradientUnits="userSpaceOnUse" 42.6982 + gradientTransform="matrix(0.2087115,0,0,0.2080024,196.99825,134.21211)" 42.6983 + x1="275.72681" 42.6984 + y1="571.90552" 42.6985 + x2="352.27246" 42.6986 + y2="571.90552" /> 42.6987 + <linearGradient 42.6988 + inkscape:collect="always" 42.6989 + xlink:href="#linearGradient3262" 42.6990 + id="linearGradient7662" 42.6991 + gradientUnits="userSpaceOnUse" 42.6992 + gradientTransform="matrix(0.2087115,0,0,0.2080024,170.26826,166.97355)" 42.6993 + x1="332.91602" 42.6994 + y1="520.33307" 42.6995 + x2="355.81863" 42.6996 + y2="535.99042" /> 42.6997 + <linearGradient 42.6998 + inkscape:collect="always" 42.6999 + xlink:href="#linearGradient3276" 42.7000 + id="linearGradient7665" 42.7001 + gradientUnits="userSpaceOnUse" 42.7002 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,355.15341,166.97355)" 42.7003 + x1="338.63031" 42.7004 + y1="522.47595" 42.7005 + x2="358.67578" 42.7006 + y2="538.1333" /> 42.7007 + <linearGradient 42.7008 + inkscape:collect="always" 42.7009 + xlink:href="#linearGradient3296" 42.7010 + id="linearGradient7669" 42.7011 + gradientUnits="userSpaceOnUse" 42.7012 + gradientTransform="matrix(0.2087115,0,0,0.2080024,170.26826,166.97355)" 42.7013 + x1="529.11237" 42.7014 + y1="333.99472" 42.7015 + x2="526.08197" 42.7016 + y2="321.36786" /> 42.7017 + <linearGradient 42.7018 + inkscape:collect="always" 42.7019 + xlink:href="#linearGradient3248" 42.7020 + id="linearGradient7677" 42.7021 + gradientUnits="userSpaceOnUse" 42.7022 + gradientTransform="matrix(0.2087115,0,0,0.2080024,141.31271,134.21211)" 42.7023 + x1="275.72681" 42.7024 + y1="571.90552" 42.7025 + x2="352.27246" 42.7026 + y2="571.90552" /> 42.7027 + <linearGradient 42.7028 + inkscape:collect="always" 42.7029 + xlink:href="#linearGradient3262" 42.7030 + id="linearGradient7681" 42.7031 + gradientUnits="userSpaceOnUse" 42.7032 + gradientTransform="matrix(0.2087115,0,0,0.2080024,114.58272,166.97355)" 42.7033 + x1="332.91602" 42.7034 + y1="520.33307" 42.7035 + x2="355.81863" 42.7036 + y2="535.99042" /> 42.7037 + <linearGradient 42.7038 + inkscape:collect="always" 42.7039 + xlink:href="#linearGradient3276" 42.7040 + id="linearGradient7684" 42.7041 + gradientUnits="userSpaceOnUse" 42.7042 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,299.46787,166.97355)" 42.7043 + x1="338.63031" 42.7044 + y1="522.47595" 42.7045 + x2="358.67578" 42.7046 + y2="538.1333" /> 42.7047 + <linearGradient 42.7048 + inkscape:collect="always" 42.7049 + xlink:href="#linearGradient3296" 42.7050 + id="linearGradient7688" 42.7051 + gradientUnits="userSpaceOnUse" 42.7052 + gradientTransform="matrix(0.2087115,0,0,0.2080024,114.58272,166.97355)" 42.7053 + x1="529.11237" 42.7054 + y1="333.99472" 42.7055 + x2="526.08197" 42.7056 + y2="321.36786" /> 42.7057 + <linearGradient 42.7058 + inkscape:collect="always" 42.7059 + xlink:href="#linearGradient3248" 42.7060 + id="linearGradient7696" 42.7061 + gradientUnits="userSpaceOnUse" 42.7062 + gradientTransform="matrix(0.2087115,0,0,0.2080024,85.62717,134.21211)" 42.7063 + x1="275.72681" 42.7064 + y1="571.90552" 42.7065 + x2="352.27246" 42.7066 + y2="571.90552" /> 42.7067 + <linearGradient 42.7068 + inkscape:collect="always" 42.7069 + xlink:href="#linearGradient3262" 42.7070 + id="linearGradient7700" 42.7071 + gradientUnits="userSpaceOnUse" 42.7072 + gradientTransform="matrix(0.2087115,0,0,0.2080024,58.89718,166.97355)" 42.7073 + x1="332.91602" 42.7074 + y1="520.33307" 42.7075 + x2="355.81863" 42.7076 + y2="535.99042" /> 42.7077 + <linearGradient 42.7078 + inkscape:collect="always" 42.7079 + xlink:href="#linearGradient3276" 42.7080 + id="linearGradient7703" 42.7081 + gradientUnits="userSpaceOnUse" 42.7082 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,243.78233,166.97355)" 42.7083 + x1="338.63031" 42.7084 + y1="522.47595" 42.7085 + x2="358.67578" 42.7086 + y2="538.1333" /> 42.7087 + <linearGradient 42.7088 + inkscape:collect="always" 42.7089 + xlink:href="#linearGradient3296" 42.7090 + id="linearGradient7707" 42.7091 + gradientUnits="userSpaceOnUse" 42.7092 + gradientTransform="matrix(0.2087115,0,0,0.2080024,58.89718,166.97355)" 42.7093 + x1="529.11237" 42.7094 + y1="333.99472" 42.7095 + x2="526.08197" 42.7096 + y2="321.36786" /> 42.7097 + <linearGradient 42.7098 + inkscape:collect="always" 42.7099 + xlink:href="#linearGradient3248" 42.7100 + id="linearGradient7715" 42.7101 + gradientUnits="userSpaceOnUse" 42.7102 + gradientTransform="matrix(0.2087115,0,0,0.2080024,29.941587,134.21211)" 42.7103 + x1="275.72681" 42.7104 + y1="571.90552" 42.7105 + x2="352.27246" 42.7106 + y2="571.90552" /> 42.7107 + <linearGradient 42.7108 + inkscape:collect="always" 42.7109 + xlink:href="#linearGradient3262" 42.7110 + id="linearGradient7719" 42.7111 + gradientUnits="userSpaceOnUse" 42.7112 + gradientTransform="matrix(0.2087115,0,0,0.2080024,3.2115965,166.97355)" 42.7113 + x1="332.91602" 42.7114 + y1="520.33307" 42.7115 + x2="355.81863" 42.7116 + y2="535.99042" /> 42.7117 + <linearGradient 42.7118 + inkscape:collect="always" 42.7119 + xlink:href="#linearGradient3276" 42.7120 + id="linearGradient7722" 42.7121 + gradientUnits="userSpaceOnUse" 42.7122 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,188.09676,166.97355)" 42.7123 + x1="338.63031" 42.7124 + y1="522.47595" 42.7125 + x2="358.67578" 42.7126 + y2="538.1333" /> 42.7127 + <linearGradient 42.7128 + inkscape:collect="always" 42.7129 + xlink:href="#linearGradient3296" 42.7130 + id="linearGradient7726" 42.7131 + gradientUnits="userSpaceOnUse" 42.7132 + gradientTransform="matrix(0.2087115,0,0,0.2080024,3.2115965,166.97355)" 42.7133 + x1="529.11237" 42.7134 + y1="333.99472" 42.7135 + x2="526.08197" 42.7136 + y2="321.36786" /> 42.7137 + <linearGradient 42.7138 + inkscape:collect="always" 42.7139 + xlink:href="#linearGradient3248" 42.7140 + id="linearGradient7734" 42.7141 + gradientUnits="userSpaceOnUse" 42.7142 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-25.743959,134.21211)" 42.7143 + x1="275.72681" 42.7144 + y1="571.90552" 42.7145 + x2="352.27246" 42.7146 + y2="571.90552" /> 42.7147 + <linearGradient 42.7148 + inkscape:collect="always" 42.7149 + xlink:href="#linearGradient3262" 42.7150 + id="linearGradient7738" 42.7151 + gradientUnits="userSpaceOnUse" 42.7152 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.473949,166.97355)" 42.7153 + x1="332.91602" 42.7154 + y1="520.33307" 42.7155 + x2="355.81863" 42.7156 + y2="535.99042" /> 42.7157 + <linearGradient 42.7158 + inkscape:collect="always" 42.7159 + xlink:href="#linearGradient3276" 42.7160 + id="linearGradient7741" 42.7161 + gradientUnits="userSpaceOnUse" 42.7162 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,132.41124,166.97355)" 42.7163 + x1="338.63031" 42.7164 + y1="522.47595" 42.7165 + x2="358.67578" 42.7166 + y2="538.1333" /> 42.7167 + <linearGradient 42.7168 + inkscape:collect="always" 42.7169 + xlink:href="#linearGradient3296" 42.7170 + id="linearGradient7745" 42.7171 + gradientUnits="userSpaceOnUse" 42.7172 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-52.473949,166.97355)" 42.7173 + x1="529.11237" 42.7174 + y1="333.99472" 42.7175 + x2="526.08197" 42.7176 + y2="321.36786" /> 42.7177 + <linearGradient 42.7178 + inkscape:collect="always" 42.7179 + xlink:href="#linearGradient3248" 42.7180 + id="linearGradient7751" 42.7181 + gradientUnits="userSpaceOnUse" 42.7182 + gradientTransform="matrix(0.2087115,0,0,0.2080024,876.58013,300.64068)" 42.7183 + x1="275.72681" 42.7184 + y1="571.90552" 42.7185 + x2="352.27246" 42.7186 + y2="571.90552" /> 42.7187 + <linearGradient 42.7188 + inkscape:collect="always" 42.7189 + xlink:href="#linearGradient3262" 42.7190 + id="linearGradient7755" 42.7191 + gradientUnits="userSpaceOnUse" 42.7192 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,333.40212)" 42.7193 + x1="332.91602" 42.7194 + y1="520.33307" 42.7195 + x2="355.81863" 42.7196 + y2="535.99042" /> 42.7197 + <linearGradient 42.7198 + inkscape:collect="always" 42.7199 + xlink:href="#linearGradient3276" 42.7200 + id="linearGradient7758" 42.7201 + gradientUnits="userSpaceOnUse" 42.7202 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1034.7353,333.40212)" 42.7203 + x1="338.63031" 42.7204 + y1="522.47595" 42.7205 + x2="358.67578" 42.7206 + y2="538.1333" /> 42.7207 + <linearGradient 42.7208 + inkscape:collect="always" 42.7209 + xlink:href="#linearGradient3296" 42.7210 + id="linearGradient7762" 42.7211 + gradientUnits="userSpaceOnUse" 42.7212 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,333.40212)" 42.7213 + x1="529.11237" 42.7214 + y1="333.99472" 42.7215 + x2="526.08197" 42.7216 + y2="321.36786" /> 42.7217 + <linearGradient 42.7218 + inkscape:collect="always" 42.7219 + xlink:href="#linearGradient3248" 42.7220 + id="linearGradient7768" 42.7221 + gradientUnits="userSpaceOnUse" 42.7222 + gradientTransform="matrix(0.2087115,0,0,0.2080024,932.39634,357.78354)" 42.7223 + x1="275.72681" 42.7224 + y1="571.90552" 42.7225 + x2="352.27246" 42.7226 + y2="571.90552" /> 42.7227 + <linearGradient 42.7228 + inkscape:collect="always" 42.7229 + xlink:href="#linearGradient3262" 42.7230 + id="linearGradient7772" 42.7231 + gradientUnits="userSpaceOnUse" 42.7232 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,390.54498)" 42.7233 + x1="332.91602" 42.7234 + y1="520.33307" 42.7235 + x2="355.81863" 42.7236 + y2="535.99042" /> 42.7237 + <linearGradient 42.7238 + inkscape:collect="always" 42.7239 + xlink:href="#linearGradient3276" 42.7240 + id="linearGradient7775" 42.7241 + gradientUnits="userSpaceOnUse" 42.7242 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1090.5515,390.54498)" 42.7243 + x1="338.63031" 42.7244 + y1="522.47595" 42.7245 + x2="358.67578" 42.7246 + y2="538.1333" /> 42.7247 + <linearGradient 42.7248 + inkscape:collect="always" 42.7249 + xlink:href="#linearGradient3296" 42.7250 + id="linearGradient7779" 42.7251 + gradientUnits="userSpaceOnUse" 42.7252 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,390.54498)" 42.7253 + x1="529.11237" 42.7254 + y1="333.99472" 42.7255 + x2="526.08197" 42.7256 + y2="321.36786" /> 42.7257 + <linearGradient 42.7258 + inkscape:collect="always" 42.7259 + xlink:href="#linearGradient3248" 42.7260 + id="linearGradient7785" 42.7261 + gradientUnits="userSpaceOnUse" 42.7262 + gradientTransform="matrix(0.2087115,0,0,0.2080024,876.58013,357.78354)" 42.7263 + x1="275.72681" 42.7264 + y1="571.90552" 42.7265 + x2="352.27246" 42.7266 + y2="571.90552" /> 42.7267 + <linearGradient 42.7268 + inkscape:collect="always" 42.7269 + xlink:href="#linearGradient3262" 42.7270 + id="linearGradient7789" 42.7271 + gradientUnits="userSpaceOnUse" 42.7272 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,390.54498)" 42.7273 + x1="332.91602" 42.7274 + y1="520.33307" 42.7275 + x2="355.81863" 42.7276 + y2="535.99042" /> 42.7277 + <linearGradient 42.7278 + inkscape:collect="always" 42.7279 + xlink:href="#linearGradient3276" 42.7280 + id="linearGradient7792" 42.7281 + gradientUnits="userSpaceOnUse" 42.7282 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1034.7353,390.54498)" 42.7283 + x1="338.63031" 42.7284 + y1="522.47595" 42.7285 + x2="358.67578" 42.7286 + y2="538.1333" /> 42.7287 + <linearGradient 42.7288 + inkscape:collect="always" 42.7289 + xlink:href="#linearGradient3296" 42.7290 + id="linearGradient7796" 42.7291 + gradientUnits="userSpaceOnUse" 42.7292 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,390.54498)" 42.7293 + x1="529.11237" 42.7294 + y1="333.99472" 42.7295 + x2="526.08197" 42.7296 + y2="321.36786" /> 42.7297 + <linearGradient 42.7298 + inkscape:collect="always" 42.7299 + xlink:href="#linearGradient3248" 42.7300 + id="linearGradient7802" 42.7301 + gradientUnits="userSpaceOnUse" 42.7302 + gradientTransform="matrix(0.2087115,0,0,0.2080024,820.76387,357.78354)" 42.7303 + x1="275.72681" 42.7304 + y1="571.90552" 42.7305 + x2="352.27246" 42.7306 + y2="571.90552" /> 42.7307 + <linearGradient 42.7308 + inkscape:collect="always" 42.7309 + xlink:href="#linearGradient3262" 42.7310 + id="linearGradient7806" 42.7311 + gradientUnits="userSpaceOnUse" 42.7312 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,390.54498)" 42.7313 + x1="332.91602" 42.7314 + y1="520.33307" 42.7315 + x2="355.81863" 42.7316 + y2="535.99042" /> 42.7317 + <linearGradient 42.7318 + inkscape:collect="always" 42.7319 + xlink:href="#linearGradient3276" 42.7320 + id="linearGradient7809" 42.7321 + gradientUnits="userSpaceOnUse" 42.7322 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,978.91907,390.54498)" 42.7323 + x1="338.63031" 42.7324 + y1="522.47595" 42.7325 + x2="358.67578" 42.7326 + y2="538.1333" /> 42.7327 + <linearGradient 42.7328 + inkscape:collect="always" 42.7329 + xlink:href="#linearGradient3296" 42.7330 + id="linearGradient7813" 42.7331 + gradientUnits="userSpaceOnUse" 42.7332 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,390.54498)" 42.7333 + x1="529.11237" 42.7334 + y1="333.99472" 42.7335 + x2="526.08197" 42.7336 + y2="321.36786" /> 42.7337 + <linearGradient 42.7338 + inkscape:collect="always" 42.7339 + xlink:href="#linearGradient3248" 42.7340 + id="linearGradient7827" 42.7341 + gradientUnits="userSpaceOnUse" 42.7342 + gradientTransform="matrix(0.2087115,0,0,0.2080024,932.39634,189.9264)" 42.7343 + x1="275.72681" 42.7344 + y1="571.90552" 42.7345 + x2="352.27246" 42.7346 + y2="571.90552" /> 42.7347 + <linearGradient 42.7348 + inkscape:collect="always" 42.7349 + xlink:href="#linearGradient3262" 42.7350 + id="linearGradient7831" 42.7351 + gradientUnits="userSpaceOnUse" 42.7352 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,222.68784)" 42.7353 + x1="332.91602" 42.7354 + y1="520.33307" 42.7355 + x2="355.81863" 42.7356 + y2="535.99042" /> 42.7357 + <linearGradient 42.7358 + inkscape:collect="always" 42.7359 + xlink:href="#linearGradient3276" 42.7360 + id="linearGradient7834" 42.7361 + gradientUnits="userSpaceOnUse" 42.7362 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1090.5515,222.68784)" 42.7363 + x1="338.63031" 42.7364 + y1="522.47595" 42.7365 + x2="358.67578" 42.7366 + y2="538.1333" /> 42.7367 + <linearGradient 42.7368 + inkscape:collect="always" 42.7369 + xlink:href="#linearGradient3296" 42.7370 + id="linearGradient7838" 42.7371 + gradientUnits="userSpaceOnUse" 42.7372 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,222.68784)" 42.7373 + x1="529.11237" 42.7374 + y1="333.99472" 42.7375 + x2="526.08197" 42.7376 + y2="321.36786" /> 42.7377 + <linearGradient 42.7378 + inkscape:collect="always" 42.7379 + xlink:href="#linearGradient3248" 42.7380 + id="linearGradient7846" 42.7381 + gradientUnits="userSpaceOnUse" 42.7382 + gradientTransform="matrix(0.2087115,0,0,0.2080024,876.58013,189.9264)" 42.7383 + x1="275.72681" 42.7384 + y1="571.90552" 42.7385 + x2="352.27246" 42.7386 + y2="571.90552" /> 42.7387 + <linearGradient 42.7388 + inkscape:collect="always" 42.7389 + xlink:href="#linearGradient3262" 42.7390 + id="linearGradient7850" 42.7391 + gradientUnits="userSpaceOnUse" 42.7392 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,222.68784)" 42.7393 + x1="332.91602" 42.7394 + y1="520.33307" 42.7395 + x2="355.81863" 42.7396 + y2="535.99042" /> 42.7397 + <linearGradient 42.7398 + inkscape:collect="always" 42.7399 + xlink:href="#linearGradient3276" 42.7400 + id="linearGradient7853" 42.7401 + gradientUnits="userSpaceOnUse" 42.7402 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1034.7353,222.68784)" 42.7403 + x1="338.63031" 42.7404 + y1="522.47595" 42.7405 + x2="358.67578" 42.7406 + y2="538.1333" /> 42.7407 + <linearGradient 42.7408 + inkscape:collect="always" 42.7409 + xlink:href="#linearGradient3296" 42.7410 + id="linearGradient7857" 42.7411 + gradientUnits="userSpaceOnUse" 42.7412 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,222.68784)" 42.7413 + x1="529.11237" 42.7414 + y1="333.99472" 42.7415 + x2="526.08197" 42.7416 + y2="321.36786" /> 42.7417 + <linearGradient 42.7418 + inkscape:collect="always" 42.7419 + xlink:href="#linearGradient3248" 42.7420 + id="linearGradient7865" 42.7421 + gradientUnits="userSpaceOnUse" 42.7422 + gradientTransform="matrix(0.2087115,0,0,0.2080024,820.76387,189.9264)" 42.7423 + x1="275.72681" 42.7424 + y1="571.90552" 42.7425 + x2="352.27246" 42.7426 + y2="571.90552" /> 42.7427 + <linearGradient 42.7428 + inkscape:collect="always" 42.7429 + xlink:href="#linearGradient3262" 42.7430 + id="linearGradient7869" 42.7431 + gradientUnits="userSpaceOnUse" 42.7432 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,222.68784)" 42.7433 + x1="332.91602" 42.7434 + y1="520.33307" 42.7435 + x2="355.81863" 42.7436 + y2="535.99042" /> 42.7437 + <linearGradient 42.7438 + inkscape:collect="always" 42.7439 + xlink:href="#linearGradient3276" 42.7440 + id="linearGradient7872" 42.7441 + gradientUnits="userSpaceOnUse" 42.7442 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,978.91907,222.68784)" 42.7443 + x1="338.63031" 42.7444 + y1="522.47595" 42.7445 + x2="358.67578" 42.7446 + y2="538.1333" /> 42.7447 + <linearGradient 42.7448 + inkscape:collect="always" 42.7449 + xlink:href="#linearGradient3296" 42.7450 + id="linearGradient7876" 42.7451 + gradientUnits="userSpaceOnUse" 42.7452 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,222.68784)" 42.7453 + x1="529.11237" 42.7454 + y1="333.99472" 42.7455 + x2="526.08197" 42.7456 + y2="321.36786" /> 42.7457 + <linearGradient 42.7458 + inkscape:collect="always" 42.7459 + xlink:href="#linearGradient3248" 42.7460 + id="linearGradient7884" 42.7461 + gradientUnits="userSpaceOnUse" 42.7462 + gradientTransform="matrix(0.2087115,0,0,0.2080024,932.39634,134.21211)" 42.7463 + x1="275.72681" 42.7464 + y1="571.90552" 42.7465 + x2="352.27246" 42.7466 + y2="571.90552" /> 42.7467 + <linearGradient 42.7468 + inkscape:collect="always" 42.7469 + xlink:href="#linearGradient3262" 42.7470 + id="linearGradient7888" 42.7471 + gradientUnits="userSpaceOnUse" 42.7472 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,166.97355)" 42.7473 + x1="332.91602" 42.7474 + y1="520.33307" 42.7475 + x2="355.81863" 42.7476 + y2="535.99042" /> 42.7477 + <linearGradient 42.7478 + inkscape:collect="always" 42.7479 + xlink:href="#linearGradient3276" 42.7480 + id="linearGradient7891" 42.7481 + gradientUnits="userSpaceOnUse" 42.7482 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1090.5515,166.97355)" 42.7483 + x1="338.63031" 42.7484 + y1="522.47595" 42.7485 + x2="358.67578" 42.7486 + y2="538.1333" /> 42.7487 + <linearGradient 42.7488 + inkscape:collect="always" 42.7489 + xlink:href="#linearGradient3296" 42.7490 + id="linearGradient7895" 42.7491 + gradientUnits="userSpaceOnUse" 42.7492 + gradientTransform="matrix(0.2087115,0,0,0.2080024,905.66635,166.97355)" 42.7493 + x1="529.11237" 42.7494 + y1="333.99472" 42.7495 + x2="526.08197" 42.7496 + y2="321.36786" /> 42.7497 + <linearGradient 42.7498 + inkscape:collect="always" 42.7499 + xlink:href="#linearGradient3248" 42.7500 + id="linearGradient7903" 42.7501 + gradientUnits="userSpaceOnUse" 42.7502 + gradientTransform="matrix(0.2087115,0,0,0.2080024,876.58013,134.21211)" 42.7503 + x1="275.72681" 42.7504 + y1="571.90552" 42.7505 + x2="352.27246" 42.7506 + y2="571.90552" /> 42.7507 + <linearGradient 42.7508 + inkscape:collect="always" 42.7509 + xlink:href="#linearGradient3262" 42.7510 + id="linearGradient7907" 42.7511 + gradientUnits="userSpaceOnUse" 42.7512 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,166.97355)" 42.7513 + x1="332.91602" 42.7514 + y1="520.33307" 42.7515 + x2="355.81863" 42.7516 + y2="535.99042" /> 42.7517 + <linearGradient 42.7518 + inkscape:collect="always" 42.7519 + xlink:href="#linearGradient3276" 42.7520 + id="linearGradient7910" 42.7521 + gradientUnits="userSpaceOnUse" 42.7522 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1034.7353,166.97355)" 42.7523 + x1="338.63031" 42.7524 + y1="522.47595" 42.7525 + x2="358.67578" 42.7526 + y2="538.1333" /> 42.7527 + <linearGradient 42.7528 + inkscape:collect="always" 42.7529 + xlink:href="#linearGradient3296" 42.7530 + id="linearGradient7914" 42.7531 + gradientUnits="userSpaceOnUse" 42.7532 + gradientTransform="matrix(0.2087115,0,0,0.2080024,849.85014,166.97355)" 42.7533 + x1="529.11237" 42.7534 + y1="333.99472" 42.7535 + x2="526.08197" 42.7536 + y2="321.36786" /> 42.7537 + <linearGradient 42.7538 + inkscape:collect="always" 42.7539 + xlink:href="#linearGradient3248" 42.7540 + id="linearGradient7920" 42.7541 + gradientUnits="userSpaceOnUse" 42.7542 + gradientTransform="matrix(0.2087115,0,0,0.2080024,820.76387,134.21211)" 42.7543 + x1="275.72681" 42.7544 + y1="571.90552" 42.7545 + x2="352.27246" 42.7546 + y2="571.90552" /> 42.7547 + <linearGradient 42.7548 + inkscape:collect="always" 42.7549 + xlink:href="#linearGradient3262" 42.7550 + id="linearGradient7925" 42.7551 + gradientUnits="userSpaceOnUse" 42.7552 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,166.97355)" 42.7553 + x1="332.91602" 42.7554 + y1="520.33307" 42.7555 + x2="355.81863" 42.7556 + y2="535.99042" /> 42.7557 + <linearGradient 42.7558 + inkscape:collect="always" 42.7559 + xlink:href="#linearGradient3276" 42.7560 + id="linearGradient7929" 42.7561 + gradientUnits="userSpaceOnUse" 42.7562 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,978.91907,166.97355)" 42.7563 + x1="338.63031" 42.7564 + y1="522.47595" 42.7565 + x2="358.67578" 42.7566 + y2="538.1333" /> 42.7567 + <linearGradient 42.7568 + inkscape:collect="always" 42.7569 + xlink:href="#linearGradient3296" 42.7570 + id="linearGradient7933" 42.7571 + gradientUnits="userSpaceOnUse" 42.7572 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.03388,166.97355)" 42.7573 + x1="529.11237" 42.7574 + y1="333.99472" 42.7575 + x2="526.08197" 42.7576 + y2="321.36786" /> 42.7577 + <linearGradient 42.7578 + inkscape:collect="always" 42.7579 + xlink:href="#linearGradient3248" 42.7580 + id="linearGradient7939" 42.7581 + gradientUnits="userSpaceOnUse" 42.7582 + gradientTransform="matrix(0.2087115,0,0,0.2080024,933.11063,67.069259)" 42.7583 + x1="275.72681" 42.7584 + y1="571.90552" 42.7585 + x2="352.27246" 42.7586 + y2="571.90552" /> 42.7587 + <linearGradient 42.7588 + inkscape:collect="always" 42.7589 + xlink:href="#linearGradient3262" 42.7590 + id="linearGradient7944" 42.7591 + gradientUnits="userSpaceOnUse" 42.7592 + gradientTransform="matrix(0.2087115,0,0,0.2080024,906.38064,99.830692)" 42.7593 + x1="332.91602" 42.7594 + y1="520.33307" 42.7595 + x2="355.81863" 42.7596 + y2="535.99042" /> 42.7597 + <linearGradient 42.7598 + inkscape:collect="always" 42.7599 + xlink:href="#linearGradient3276" 42.7600 + id="linearGradient7948" 42.7601 + gradientUnits="userSpaceOnUse" 42.7602 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1091.2658,99.830692)" 42.7603 + x1="338.63031" 42.7604 + y1="522.47595" 42.7605 + x2="358.67578" 42.7606 + y2="538.1333" /> 42.7607 + <linearGradient 42.7608 + inkscape:collect="always" 42.7609 + xlink:href="#linearGradient3296" 42.7610 + id="linearGradient7952" 42.7611 + gradientUnits="userSpaceOnUse" 42.7612 + gradientTransform="matrix(0.2087115,0,0,0.2080024,906.38064,99.830692)" 42.7613 + x1="529.11237" 42.7614 + y1="333.99472" 42.7615 + x2="526.08197" 42.7616 + y2="321.36786" /> 42.7617 + <linearGradient 42.7618 + inkscape:collect="always" 42.7619 + xlink:href="#linearGradient3248" 42.7620 + id="linearGradient7958" 42.7621 + gradientUnits="userSpaceOnUse" 42.7622 + gradientTransform="matrix(0.2087115,0,0,0.2080024,877.29442,67.069259)" 42.7623 + x1="275.72681" 42.7624 + y1="571.90552" 42.7625 + x2="352.27246" 42.7626 + y2="571.90552" /> 42.7627 + <linearGradient 42.7628 + inkscape:collect="always" 42.7629 + xlink:href="#linearGradient3262" 42.7630 + id="linearGradient7963" 42.7631 + gradientUnits="userSpaceOnUse" 42.7632 + gradientTransform="matrix(0.2087115,0,0,0.2080024,850.56443,99.830692)" 42.7633 + x1="332.91602" 42.7634 + y1="520.33307" 42.7635 + x2="355.81863" 42.7636 + y2="535.99042" /> 42.7637 + <linearGradient 42.7638 + inkscape:collect="always" 42.7639 + xlink:href="#linearGradient3276" 42.7640 + id="linearGradient7967" 42.7641 + gradientUnits="userSpaceOnUse" 42.7642 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,1035.4496,99.830692)" 42.7643 + x1="338.63031" 42.7644 + y1="522.47595" 42.7645 + x2="358.67578" 42.7646 + y2="538.1333" /> 42.7647 + <linearGradient 42.7648 + inkscape:collect="always" 42.7649 + xlink:href="#linearGradient3296" 42.7650 + id="linearGradient7971" 42.7651 + gradientUnits="userSpaceOnUse" 42.7652 + gradientTransform="matrix(0.2087115,0,0,0.2080024,850.56443,99.830692)" 42.7653 + x1="529.11237" 42.7654 + y1="333.99472" 42.7655 + x2="526.08197" 42.7656 + y2="321.36786" /> 42.7657 + <linearGradient 42.7658 + inkscape:collect="always" 42.7659 + xlink:href="#linearGradient3248" 42.7660 + id="linearGradient7977" 42.7661 + gradientUnits="userSpaceOnUse" 42.7662 + gradientTransform="matrix(0.2087115,0,0,0.2080024,821.47816,67.069259)" 42.7663 + x1="275.72681" 42.7664 + y1="571.90552" 42.7665 + x2="352.27246" 42.7666 + y2="571.90552" /> 42.7667 + <linearGradient 42.7668 + inkscape:collect="always" 42.7669 + xlink:href="#linearGradient3262" 42.7670 + id="linearGradient7982" 42.7671 + gradientUnits="userSpaceOnUse" 42.7672 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.74817,99.830692)" 42.7673 + x1="332.91602" 42.7674 + y1="520.33307" 42.7675 + x2="355.81863" 42.7676 + y2="535.99042" /> 42.7677 + <linearGradient 42.7678 + inkscape:collect="always" 42.7679 + xlink:href="#linearGradient3276" 42.7680 + id="linearGradient7986" 42.7681 + gradientUnits="userSpaceOnUse" 42.7682 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,979.63336,99.830692)" 42.7683 + x1="338.63031" 42.7684 + y1="522.47595" 42.7685 + x2="358.67578" 42.7686 + y2="538.1333" /> 42.7687 + <linearGradient 42.7688 + inkscape:collect="always" 42.7689 + xlink:href="#linearGradient3296" 42.7690 + id="linearGradient7990" 42.7691 + gradientUnits="userSpaceOnUse" 42.7692 + gradientTransform="matrix(0.2087115,0,0,0.2080024,794.74817,99.830692)" 42.7693 + x1="529.11237" 42.7694 + y1="333.99472" 42.7695 + x2="526.08197" 42.7696 + y2="321.36786" /> 42.7697 + <linearGradient 42.7698 + inkscape:collect="always" 42.7699 + xlink:href="#linearGradient3248" 42.7700 + id="linearGradient7998" 42.7701 + gradientUnits="userSpaceOnUse" 42.7702 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-24.444712,67.069259)" 42.7703 + x1="275.72681" 42.7704 + y1="571.90552" 42.7705 + x2="352.27246" 42.7706 + y2="571.90552" /> 42.7707 + <linearGradient 42.7708 + inkscape:collect="always" 42.7709 + xlink:href="#linearGradient3262" 42.7710 + id="linearGradient8002" 42.7711 + gradientUnits="userSpaceOnUse" 42.7712 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-51.174699,99.830692)" 42.7713 + x1="332.91602" 42.7714 + y1="520.33307" 42.7715 + x2="355.81863" 42.7716 + y2="535.99042" /> 42.7717 + <linearGradient 42.7718 + inkscape:collect="always" 42.7719 + xlink:href="#linearGradient3276" 42.7720 + id="linearGradient8005" 42.7721 + gradientUnits="userSpaceOnUse" 42.7722 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,133.71049,99.830692)" 42.7723 + x1="338.63031" 42.7724 + y1="522.47595" 42.7725 + x2="358.67578" 42.7726 + y2="538.1333" /> 42.7727 + <linearGradient 42.7728 + inkscape:collect="always" 42.7729 + xlink:href="#linearGradient3296" 42.7730 + id="linearGradient8009" 42.7731 + gradientUnits="userSpaceOnUse" 42.7732 + gradientTransform="matrix(0.2087115,0,0,0.2080024,-51.174699,99.830692)" 42.7733 + x1="529.11237" 42.7734 + y1="333.99472" 42.7735 + x2="526.08197" 42.7736 + y2="321.36786" /> 42.7737 + <linearGradient 42.7738 + inkscape:collect="always" 42.7739 + xlink:href="#linearGradient3248" 42.7740 + id="linearGradient8017" 42.7741 + gradientUnits="userSpaceOnUse" 42.7742 + gradientTransform="matrix(0.2087115,0,0,0.2080024,754.5392,67.069259)" 42.7743 + x1="275.72681" 42.7744 + y1="571.90552" 42.7745 + x2="352.27246" 42.7746 + y2="571.90552" /> 42.7747 + <linearGradient 42.7748 + inkscape:collect="always" 42.7749 + xlink:href="#linearGradient3262" 42.7750 + id="linearGradient8021" 42.7751 + gradientUnits="userSpaceOnUse" 42.7752 + gradientTransform="matrix(0.2087115,0,0,0.2080024,727.80921,99.830692)" 42.7753 + x1="332.91602" 42.7754 + y1="520.33307" 42.7755 + x2="355.81863" 42.7756 + y2="535.99042" /> 42.7757 + <linearGradient 42.7758 + inkscape:collect="always" 42.7759 + xlink:href="#linearGradient3276" 42.7760 + id="linearGradient8024" 42.7761 + gradientUnits="userSpaceOnUse" 42.7762 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,912.6944,99.830692)" 42.7763 + x1="338.63031" 42.7764 + y1="522.47595" 42.7765 + x2="358.67578" 42.7766 + y2="538.1333" /> 42.7767 + <linearGradient 42.7768 + inkscape:collect="always" 42.7769 + xlink:href="#linearGradient3296" 42.7770 + id="linearGradient8028" 42.7771 + gradientUnits="userSpaceOnUse" 42.7772 + gradientTransform="matrix(0.2087115,0,0,0.2080024,727.80921,99.830692)" 42.7773 + x1="529.11237" 42.7774 + y1="333.99472" 42.7775 + x2="526.08197" 42.7776 + y2="321.36786" /> 42.7777 + <linearGradient 42.7778 + inkscape:collect="always" 42.7779 + xlink:href="#linearGradient3248" 42.7780 + id="linearGradient8036" 42.7781 + gradientUnits="userSpaceOnUse" 42.7782 + gradientTransform="matrix(0.2087115,0,0,0.2080024,698.72299,67.069259)" 42.7783 + x1="275.72681" 42.7784 + y1="571.90552" 42.7785 + x2="352.27246" 42.7786 + y2="571.90552" /> 42.7787 + <linearGradient 42.7788 + inkscape:collect="always" 42.7789 + xlink:href="#linearGradient3262" 42.7790 + id="linearGradient8040" 42.7791 + gradientUnits="userSpaceOnUse" 42.7792 + gradientTransform="matrix(0.2087115,0,0,0.2080024,671.993,99.830692)" 42.7793 + x1="332.91602" 42.7794 + y1="520.33307" 42.7795 + x2="355.81863" 42.7796 + y2="535.99042" /> 42.7797 + <linearGradient 42.7798 + inkscape:collect="always" 42.7799 + xlink:href="#linearGradient3276" 42.7800 + id="linearGradient8043" 42.7801 + gradientUnits="userSpaceOnUse" 42.7802 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,856.87819,99.830692)" 42.7803 + x1="338.63031" 42.7804 + y1="522.47595" 42.7805 + x2="358.67578" 42.7806 + y2="538.1333" /> 42.7807 + <linearGradient 42.7808 + inkscape:collect="always" 42.7809 + xlink:href="#linearGradient3296" 42.7810 + id="linearGradient8047" 42.7811 + gradientUnits="userSpaceOnUse" 42.7812 + gradientTransform="matrix(0.2087115,0,0,0.2080024,671.993,99.830692)" 42.7813 + x1="529.11237" 42.7814 + y1="333.99472" 42.7815 + x2="526.08197" 42.7816 + y2="321.36786" /> 42.7817 + <linearGradient 42.7818 + inkscape:collect="always" 42.7819 + xlink:href="#linearGradient3248" 42.7820 + id="linearGradient8055" 42.7821 + gradientUnits="userSpaceOnUse" 42.7822 + gradientTransform="matrix(0.2087115,0,0,0.2080024,642.90673,67.069259)" 42.7823 + x1="275.72681" 42.7824 + y1="571.90552" 42.7825 + x2="352.27246" 42.7826 + y2="571.90552" /> 42.7827 + <linearGradient 42.7828 + inkscape:collect="always" 42.7829 + xlink:href="#linearGradient3262" 42.7830 + id="linearGradient8059" 42.7831 + gradientUnits="userSpaceOnUse" 42.7832 + gradientTransform="matrix(0.2087115,0,0,0.2080024,616.17674,99.830692)" 42.7833 + x1="332.91602" 42.7834 + y1="520.33307" 42.7835 + x2="355.81863" 42.7836 + y2="535.99042" /> 42.7837 + <linearGradient 42.7838 + inkscape:collect="always" 42.7839 + xlink:href="#linearGradient3276" 42.7840 + id="linearGradient8062" 42.7841 + gradientUnits="userSpaceOnUse" 42.7842 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,801.06193,99.830692)" 42.7843 + x1="338.63031" 42.7844 + y1="522.47595" 42.7845 + x2="358.67578" 42.7846 + y2="538.1333" /> 42.7847 + <linearGradient 42.7848 + inkscape:collect="always" 42.7849 + xlink:href="#linearGradient3296" 42.7850 + id="linearGradient8066" 42.7851 + gradientUnits="userSpaceOnUse" 42.7852 + gradientTransform="matrix(0.2087115,0,0,0.2080024,616.17674,99.830692)" 42.7853 + x1="529.11237" 42.7854 + y1="333.99472" 42.7855 + x2="526.08197" 42.7856 + y2="321.36786" /> 42.7857 + <linearGradient 42.7858 + inkscape:collect="always" 42.7859 + xlink:href="#linearGradient3248" 42.7860 + id="linearGradient8074" 42.7861 + gradientUnits="userSpaceOnUse" 42.7862 + gradientTransform="matrix(0.2087115,0,0,0.2080024,587.09049,67.069259)" 42.7863 + x1="275.72681" 42.7864 + y1="571.90552" 42.7865 + x2="352.27246" 42.7866 + y2="571.90552" /> 42.7867 + <linearGradient 42.7868 + inkscape:collect="always" 42.7869 + xlink:href="#linearGradient3262" 42.7870 + id="linearGradient8078" 42.7871 + gradientUnits="userSpaceOnUse" 42.7872 + gradientTransform="matrix(0.2087115,0,0,0.2080024,560.3605,99.830692)" 42.7873 + x1="332.91602" 42.7874 + y1="520.33307" 42.7875 + x2="355.81863" 42.7876 + y2="535.99042" /> 42.7877 + <linearGradient 42.7878 + inkscape:collect="always" 42.7879 + xlink:href="#linearGradient3276" 42.7880 + id="linearGradient8081" 42.7881 + gradientUnits="userSpaceOnUse" 42.7882 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,745.24569,99.830692)" 42.7883 + x1="338.63031" 42.7884 + y1="522.47595" 42.7885 + x2="358.67578" 42.7886 + y2="538.1333" /> 42.7887 + <linearGradient 42.7888 + inkscape:collect="always" 42.7889 + xlink:href="#linearGradient3296" 42.7890 + id="linearGradient8085" 42.7891 + gradientUnits="userSpaceOnUse" 42.7892 + gradientTransform="matrix(0.2087115,0,0,0.2080024,560.3605,99.830692)" 42.7893 + x1="529.11237" 42.7894 + y1="333.99472" 42.7895 + x2="526.08197" 42.7896 + y2="321.36786" /> 42.7897 + <linearGradient 42.7898 + inkscape:collect="always" 42.7899 + xlink:href="#linearGradient3248" 42.7900 + id="linearGradient8093" 42.7901 + gradientUnits="userSpaceOnUse" 42.7902 + gradientTransform="matrix(0.2087115,0,0,0.2080024,505.96777,67.069259)" 42.7903 + x1="275.72681" 42.7904 + y1="571.90552" 42.7905 + x2="352.27246" 42.7906 + y2="571.90552" /> 42.7907 + <linearGradient 42.7908 + inkscape:collect="always" 42.7909 + xlink:href="#linearGradient3262" 42.7910 + id="linearGradient8097" 42.7911 + gradientUnits="userSpaceOnUse" 42.7912 + gradientTransform="matrix(0.2087115,0,0,0.2080024,479.23778,99.830692)" 42.7913 + x1="332.91602" 42.7914 + y1="520.33307" 42.7915 + x2="355.81863" 42.7916 + y2="535.99042" /> 42.7917 + <linearGradient 42.7918 + inkscape:collect="always" 42.7919 + xlink:href="#linearGradient3276" 42.7920 + id="linearGradient8100" 42.7921 + gradientUnits="userSpaceOnUse" 42.7922 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,664.12297,99.830692)" 42.7923 + x1="338.63031" 42.7924 + y1="522.47595" 42.7925 + x2="358.67578" 42.7926 + y2="538.1333" /> 42.7927 + <linearGradient 42.7928 + inkscape:collect="always" 42.7929 + xlink:href="#linearGradient3296" 42.7930 + id="linearGradient8104" 42.7931 + gradientUnits="userSpaceOnUse" 42.7932 + gradientTransform="matrix(0.2087115,0,0,0.2080024,479.23778,99.830692)" 42.7933 + x1="529.11237" 42.7934 + y1="333.99472" 42.7935 + x2="526.08197" 42.7936 + y2="321.36786" /> 42.7937 + <linearGradient 42.7938 + inkscape:collect="always" 42.7939 + xlink:href="#linearGradient3248" 42.7940 + id="linearGradient8112" 42.7941 + gradientUnits="userSpaceOnUse" 42.7942 + gradientTransform="matrix(0.2087115,0,0,0.2080024,450.15156,67.069259)" 42.7943 + x1="275.72681" 42.7944 + y1="571.90552" 42.7945 + x2="352.27246" 42.7946 + y2="571.90552" /> 42.7947 + <linearGradient 42.7948 + inkscape:collect="always" 42.7949 + xlink:href="#linearGradient3262" 42.7950 + id="linearGradient8116" 42.7951 + gradientUnits="userSpaceOnUse" 42.7952 + gradientTransform="matrix(0.2087115,0,0,0.2080024,423.42157,99.830692)" 42.7953 + x1="332.91602" 42.7954 + y1="520.33307" 42.7955 + x2="355.81863" 42.7956 + y2="535.99042" /> 42.7957 + <linearGradient 42.7958 + inkscape:collect="always" 42.7959 + xlink:href="#linearGradient3276" 42.7960 + id="linearGradient8119" 42.7961 + gradientUnits="userSpaceOnUse" 42.7962 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,608.30676,99.830692)" 42.7963 + x1="338.63031" 42.7964 + y1="522.47595" 42.7965 + x2="358.67578" 42.7966 + y2="538.1333" /> 42.7967 + <linearGradient 42.7968 + inkscape:collect="always" 42.7969 + xlink:href="#linearGradient3296" 42.7970 + id="linearGradient8123" 42.7971 + gradientUnits="userSpaceOnUse" 42.7972 + gradientTransform="matrix(0.2087115,0,0,0.2080024,423.42157,99.830692)" 42.7973 + x1="529.11237" 42.7974 + y1="333.99472" 42.7975 + x2="526.08197" 42.7976 + y2="321.36786" /> 42.7977 + <linearGradient 42.7978 + inkscape:collect="always" 42.7979 + xlink:href="#linearGradient3248" 42.7980 + id="linearGradient8131" 42.7981 + gradientUnits="userSpaceOnUse" 42.7982 + gradientTransform="matrix(0.2087115,0,0,0.2080024,394.3353,67.069259)" 42.7983 + x1="275.72681" 42.7984 + y1="571.90552" 42.7985 + x2="352.27246" 42.7986 + y2="571.90552" /> 42.7987 + <linearGradient 42.7988 + inkscape:collect="always" 42.7989 + xlink:href="#linearGradient3262" 42.7990 + id="linearGradient8135" 42.7991 + gradientUnits="userSpaceOnUse" 42.7992 + gradientTransform="matrix(0.2087115,0,0,0.2080024,367.60531,99.830692)" 42.7993 + x1="332.91602" 42.7994 + y1="520.33307" 42.7995 + x2="355.81863" 42.7996 + y2="535.99042" /> 42.7997 + <linearGradient 42.7998 + inkscape:collect="always" 42.7999 + xlink:href="#linearGradient3276" 42.8000 + id="linearGradient8138" 42.8001 + gradientUnits="userSpaceOnUse" 42.8002 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,552.4905,99.830692)" 42.8003 + x1="338.63031" 42.8004 + y1="522.47595" 42.8005 + x2="358.67578" 42.8006 + y2="538.1333" /> 42.8007 + <linearGradient 42.8008 + inkscape:collect="always" 42.8009 + xlink:href="#linearGradient3296" 42.8010 + id="linearGradient8142" 42.8011 + gradientUnits="userSpaceOnUse" 42.8012 + gradientTransform="matrix(0.2087115,0,0,0.2080024,367.60531,99.830692)" 42.8013 + x1="529.11237" 42.8014 + y1="333.99472" 42.8015 + x2="526.08197" 42.8016 + y2="321.36786" /> 42.8017 + <linearGradient 42.8018 + inkscape:collect="always" 42.8019 + xlink:href="#linearGradient3248" 42.8020 + id="linearGradient8150" 42.8021 + gradientUnits="userSpaceOnUse" 42.8022 + gradientTransform="matrix(0.2087115,0,0,0.2080024,338.51906,67.069259)" 42.8023 + x1="275.72681" 42.8024 + y1="571.90552" 42.8025 + x2="352.27246" 42.8026 + y2="571.90552" /> 42.8027 + <linearGradient 42.8028 + inkscape:collect="always" 42.8029 + xlink:href="#linearGradient3262" 42.8030 + id="linearGradient8154" 42.8031 + gradientUnits="userSpaceOnUse" 42.8032 + gradientTransform="matrix(0.2087115,0,0,0.2080024,311.78907,99.830692)" 42.8033 + x1="332.91602" 42.8034 + y1="520.33307" 42.8035 + x2="355.81863" 42.8036 + y2="535.99042" /> 42.8037 + <linearGradient 42.8038 + inkscape:collect="always" 42.8039 + xlink:href="#linearGradient3276" 42.8040 + id="linearGradient8157" 42.8041 + gradientUnits="userSpaceOnUse" 42.8042 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,496.67426,99.830692)" 42.8043 + x1="338.63031" 42.8044 + y1="522.47595" 42.8045 + x2="358.67578" 42.8046 + y2="538.1333" /> 42.8047 + <linearGradient 42.8048 + inkscape:collect="always" 42.8049 + xlink:href="#linearGradient3296" 42.8050 + id="linearGradient8161" 42.8051 + gradientUnits="userSpaceOnUse" 42.8052 + gradientTransform="matrix(0.2087115,0,0,0.2080024,311.78907,99.830692)" 42.8053 + x1="529.11237" 42.8054 + y1="333.99472" 42.8055 + x2="526.08197" 42.8056 + y2="321.36786" /> 42.8057 + <linearGradient 42.8058 + inkscape:collect="always" 42.8059 + xlink:href="#linearGradient3248" 42.8060 + id="linearGradient8169" 42.8061 + gradientUnits="userSpaceOnUse" 42.8062 + gradientTransform="matrix(0.2087115,0,0,0.2080024,253.11063,67.069259)" 42.8063 + x1="275.72681" 42.8064 + y1="571.90552" 42.8065 + x2="352.27246" 42.8066 + y2="571.90552" /> 42.8067 + <linearGradient 42.8068 + inkscape:collect="always" 42.8069 + xlink:href="#linearGradient3262" 42.8070 + id="linearGradient8173" 42.8071 + gradientUnits="userSpaceOnUse" 42.8072 + gradientTransform="matrix(0.2087115,0,0,0.2080024,226.38064,99.830692)" 42.8073 + x1="332.91602" 42.8074 + y1="520.33307" 42.8075 + x2="355.81863" 42.8076 + y2="535.99042" /> 42.8077 + <linearGradient 42.8078 + inkscape:collect="always" 42.8079 + xlink:href="#linearGradient3276" 42.8080 + id="linearGradient8176" 42.8081 + gradientUnits="userSpaceOnUse" 42.8082 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,411.26583,99.830692)" 42.8083 + x1="338.63031" 42.8084 + y1="522.47595" 42.8085 + x2="358.67578" 42.8086 + y2="538.1333" /> 42.8087 + <linearGradient 42.8088 + inkscape:collect="always" 42.8089 + xlink:href="#linearGradient3296" 42.8090 + id="linearGradient8180" 42.8091 + gradientUnits="userSpaceOnUse" 42.8092 + gradientTransform="matrix(0.2087115,0,0,0.2080024,226.38064,99.830692)" 42.8093 + x1="529.11237" 42.8094 + y1="333.99472" 42.8095 + x2="526.08197" 42.8096 + y2="321.36786" /> 42.8097 + <linearGradient 42.8098 + inkscape:collect="always" 42.8099 + xlink:href="#linearGradient3248" 42.8100 + id="linearGradient8188" 42.8101 + gradientUnits="userSpaceOnUse" 42.8102 + gradientTransform="matrix(0.2087115,0,0,0.2080024,197.29442,67.069259)" 42.8103 + x1="275.72681" 42.8104 + y1="571.90552" 42.8105 + x2="352.27246" 42.8106 + y2="571.90552" /> 42.8107 + <linearGradient 42.8108 + inkscape:collect="always" 42.8109 + xlink:href="#linearGradient3262" 42.8110 + id="linearGradient8192" 42.8111 + gradientUnits="userSpaceOnUse" 42.8112 + gradientTransform="matrix(0.2087115,0,0,0.2080024,170.56443,99.830692)" 42.8113 + x1="332.91602" 42.8114 + y1="520.33307" 42.8115 + x2="355.81863" 42.8116 + y2="535.99042" /> 42.8117 + <linearGradient 42.8118 + inkscape:collect="always" 42.8119 + xlink:href="#linearGradient3276" 42.8120 + id="linearGradient8195" 42.8121 + gradientUnits="userSpaceOnUse" 42.8122 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,355.44962,99.830692)" 42.8123 + x1="338.63031" 42.8124 + y1="522.47595" 42.8125 + x2="358.67578" 42.8126 + y2="538.1333" /> 42.8127 + <linearGradient 42.8128 + inkscape:collect="always" 42.8129 + xlink:href="#linearGradient3296" 42.8130 + id="linearGradient8199" 42.8131 + gradientUnits="userSpaceOnUse" 42.8132 + gradientTransform="matrix(0.2087115,0,0,0.2080024,170.56443,99.830692)" 42.8133 + x1="529.11237" 42.8134 + y1="333.99472" 42.8135 + x2="526.08197" 42.8136 + y2="321.36786" /> 42.8137 + <linearGradient 42.8138 + inkscape:collect="always" 42.8139 + xlink:href="#linearGradient3248" 42.8140 + id="linearGradient8207" 42.8141 + gradientUnits="userSpaceOnUse" 42.8142 + gradientTransform="matrix(0.2087115,0,0,0.2080024,141.47816,67.069259)" 42.8143 + x1="275.72681" 42.8144 + y1="571.90552" 42.8145 + x2="352.27246" 42.8146 + y2="571.90552" /> 42.8147 + <linearGradient 42.8148 + inkscape:collect="always" 42.8149 + xlink:href="#linearGradient3262" 42.8150 + id="linearGradient8211" 42.8151 + gradientUnits="userSpaceOnUse" 42.8152 + gradientTransform="matrix(0.2087115,0,0,0.2080024,114.74817,99.830692)" 42.8153 + x1="332.91602" 42.8154 + y1="520.33307" 42.8155 + x2="355.81863" 42.8156 + y2="535.99042" /> 42.8157 + <linearGradient 42.8158 + inkscape:collect="always" 42.8159 + xlink:href="#linearGradient3276" 42.8160 + id="linearGradient8214" 42.8161 + gradientUnits="userSpaceOnUse" 42.8162 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,299.63336,99.830692)" 42.8163 + x1="338.63031" 42.8164 + y1="522.47595" 42.8165 + x2="358.67578" 42.8166 + y2="538.1333" /> 42.8167 + <linearGradient 42.8168 + inkscape:collect="always" 42.8169 + xlink:href="#linearGradient3296" 42.8170 + id="linearGradient8218" 42.8171 + gradientUnits="userSpaceOnUse" 42.8172 + gradientTransform="matrix(0.2087115,0,0,0.2080024,114.74817,99.830692)" 42.8173 + x1="529.11237" 42.8174 + y1="333.99472" 42.8175 + x2="526.08197" 42.8176 + y2="321.36786" /> 42.8177 + <linearGradient 42.8178 + inkscape:collect="always" 42.8179 + xlink:href="#linearGradient3248" 42.8180 + id="linearGradient8226" 42.8181 + gradientUnits="userSpaceOnUse" 42.8182 + gradientTransform="matrix(0.2087115,0,0,0.2080024,85.661916,67.069259)" 42.8183 + x1="275.72681" 42.8184 + y1="571.90552" 42.8185 + x2="352.27246" 42.8186 + y2="571.90552" /> 42.8187 + <linearGradient 42.8188 + inkscape:collect="always" 42.8189 + xlink:href="#linearGradient3262" 42.8190 + id="linearGradient8230" 42.8191 + gradientUnits="userSpaceOnUse" 42.8192 + gradientTransform="matrix(0.2087115,0,0,0.2080024,58.931929,99.830692)" 42.8193 + x1="332.91602" 42.8194 + y1="520.33307" 42.8195 + x2="355.81863" 42.8196 + y2="535.99042" /> 42.8197 + <linearGradient 42.8198 + inkscape:collect="always" 42.8199 + xlink:href="#linearGradient3276" 42.8200 + id="linearGradient8233" 42.8201 + gradientUnits="userSpaceOnUse" 42.8202 + gradientTransform="matrix(-0.2087115,0,0,0.2080024,243.81712,99.830692)" 42.8203 + x1="338.63031" 42.8204 + y1="522.47595" 42.8205 + x2="358.67578" 42.8206 + y2="538.1333" /> 42.8207 + <linearGradient 42.8208 + inkscape:collect="always" 42.8209 + xlink:href="#linearGradient3296" 42.8210 + id="linearGradient8237" 42.8211 + gradientUnits="userSpaceOnUse" 42.8212 + gradientTransform="matrix(0.2087115,0,0,0.2080024,58.931929,99.830692)" 42.8213 + x1="529.11237" 42.8214 + y1="333.99472" 42.8215 + x2="526.08197" 42.8216 + y2="321.36786" /> 42.8217 + <linearGradient 42.8218 + inkscape:collect="always" 42.8219 + xlink:href="#linearGradient3276" 42.8220 + id="linearGradient8243" 42.8221 + gradientUnits="userSpaceOnUse" 42.8222 + gradientTransform="matrix(-0.1035438,0,0,0.1080024,136.78929,335.06871)" 42.8223 + x1="338.63031" 42.8224 + y1="522.47595" 42.8225 + x2="358.67578" 42.8226 + y2="538.1333" /> 42.8227 + <linearGradient 42.8228 + inkscape:collect="always" 42.8229 + xlink:href="#linearGradient3296" 42.8230 + id="linearGradient8246" 42.8231 + gradientUnits="userSpaceOnUse" 42.8232 + gradientTransform="matrix(0.1035438,0,0,0.2080024,45.066,278.60337)" 42.8233 + x1="529.11237" 42.8234 + y1="333.99472" 42.8235 + x2="526.08197" 42.8236 + y2="321.36786" /> 42.8237 + <linearGradient 42.8238 + inkscape:collect="always" 42.8239 + xlink:href="#linearGradient7587" 42.8240 + id="linearGradient8253" 42.8241 + gradientUnits="userSpaceOnUse" 42.8242 + gradientTransform="matrix(0.9507468,0,0,0.9709903,47.993979,-2.6547568)" 42.8243 + x1="922.37616" 42.8244 + y1="80.363686" 42.8245 + x2="965.76581" 42.8246 + y2="-63.077972" /> 42.8247 + </defs> 42.8248 + <g 42.8249 + transform="translate(31.8125,85.5625)" 42.8250 + id="layer2" 42.8251 + style="display:inline"> 42.8252 + <path 42.8253 + inkscape:connector-curvature="0" 42.8254 + d="m -27.274119,174.48212 -3.535534,331.83511 c 0.271782,23.59781 8.69508,40.00311 31.8198055,43.43656 427.2144975,25.29379 846.7904175,18.12366 1263.2755475,-2.18236 24.3584,-0.99354 40.0885,-11.2318 37.8572,-40.71429 L 1297.8571,184 c -3.7283,-38.94351 -24.1538,-61.98505 -67.8571,-62.85714 -408.00558,-43.747783 -809.36963,-47.64638 -1202.142857,0 -25.7869048,5.6546 -49.941382,13.98044 -55.131262,53.33926 z" 42.8255 + id="path7740" 42.8256 + style="fill:#c9c9c9;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8257 + <path 42.8258 + inkscape:connector-curvature="0" 42.8259 + d="m 860.59458,228.56369 c -2.64286,0 -4.78123,1.77762 -4.78125,4 l 0,115.78124 0.1875,-8.84374 c 2e-5,2.22236 2.13837,4.03123 4.78125,4.03124 l 160.68752,0.125 c 2.1696,-0.25008 3.841,-1.7179 4.0624,-3.56249 l 0,-107.53125 c 10e-5,-2.22236 -2.107,-4.00001 -4.75,-4 l -160.18742,0 z" 42.8260 + id="path7943" 42.8261 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8262 + <path 42.8263 + inkscape:connector-curvature="0" 42.8264 + d="m 914.68833,394.73556 c -2.6429,0 -4.75,1.8089 -4.75,4.03125 l 0,30.20313 0,15.65233 c 0,2.22235 -2.1072,4.03125 -4.75,4.03125 l -2.4687,0 -41.93755,0.004 c -2.64286,0 -4.78125,1.77765 -4.78125,4 l 0,44.03125 -0.1875,0 0,9.21875 c 2e-5,2.22235 2.13837,3.99999 4.78125,4 l 160.18742,0 c 2.6431,-4e-5 4.7502,-1.77765 4.75,-4 l 0,-9.21875 -0.031,0 0,-44.03125 c 0,-2.22239 -2.1384,-3.99999 -4.7812,-4 l -41.93757,0 -3.9413,0 c -2.2025,-2e-5 -4.0376,-1.26395 -4.5938,-2.96875 l 0,-46.92188 c 0,-2.22235 -2.1071,-4.03125 -4.75,-4.03125 l -50.8125,0 z" 42.8265 + id="path7362" 42.8266 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8267 + <rect 42.8268 + width="224.98793" 42.8269 + height="283.0871" 42.8270 + rx="4.7705503" 42.8271 + ry="4.0114756" 42.8272 + x="1036.3074" 42.8273 + y="228.34903" 42.8274 + id="rect7772" 42.8275 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8276 + <path 42.8277 + inkscape:connector-curvature="0" 42.8278 + d="m 862.75083,230.87619 c -2.64288,0 -4.78123,1.77763 -4.78125,4 l 0.1875,104.6875 c 0,2.22237 2.13837,4.03124 4.78125,4.03125 l 160.68747,0.12499 c 2.1696,-0.25006 3.8411,-1.71789 4.0625,-3.5625 l 0,-105.28124 c 0,-2.22236 -2.1071,-4.00001 -4.75,-4 l -160.18747,0 z" 42.8279 + id="path7937" 42.8280 + style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8281 + <path 42.8282 + inkscape:connector-curvature="0" 42.8283 + d="m 916.84463,397.28244 c -2.6429,0 -4.7813,1.80889 -4.7813,4.03125 l 0,45.90233 c -0.1715,2.08952 -2.1902,3.75 -4.7187,3.75 l -2.4688,0 -41.9375,0.004 c -2.64288,3e-5 -4.78125,1.77764 -4.78125,4 l 0,44.03125 -0.1875,0 0,9.21875 c 0,2.22235 2.13837,3.99998 4.78125,3.99999 l 160.18747,0 c 2.6429,0 4.7501,-1.77764 4.75,-3.99999 l 0,-9.21875 -0.031,0 0,-44.03125 c 10e-5,-2.22235 -2.1383,-3.99999 -4.7812,-4 l -41.81247,0 -3.9375,-0.004 c -2.6429,0 -4.7812,-1.8089 -4.7812,-4.03125 l 0.0309,-45.62108 c 0,-2.22236 -2.1384,-4.03125 -4.7812,-4.03125 l -50.75,0 z" 42.8284 + id="rect7768" 42.8285 + style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8286 + <rect 42.8287 + width="171.70238" 42.8288 + height="59.872803" 42.8289 + rx="4.7705503" 42.8290 + ry="4.0114756" 42.8291 + x="856.20709" 42.8292 + y="161.20618" 42.8293 + id="rect7762" 42.8294 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8295 + <rect 42.8296 + width="169.93463" 42.8297 + height="57.34742" 42.8298 + rx="4.7705503" 42.8299 + ry="4.0114756" 42.8300 + x="858.47986" 42.8301 + y="163.73155" 42.8302 + id="rect7764" 42.8303 + style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8304 + <rect 42.8305 + width="840.15448" 42.8306 + height="283.51389" 42.8307 + rx="4.7705503" 42.8308 + ry="4.0114756" 42.8309 + x="9.91364" 42.8310 + y="228.27725" 42.8311 + id="rect7758" 42.8312 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8313 + <rect 42.8314 + width="838.40308" 42.8315 + height="281.63315" 42.8316 + rx="4.7705503" 42.8317 + ry="4.0114756" 42.8318 + x="11.742687" 42.8319 + y="230.29755" 42.8320 + id="rect7760" 42.8321 + style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8322 + <rect 42.8323 + width="60.333069" 42.8324 + height="59.872803" 42.8325 + rx="4.7705503" 42.8326 + ry="4.0114756" 42.8327 + x="10.985068" 42.8328 + y="161.20618" 42.8329 + id="rect7754" 42.8330 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8331 + <rect 42.8332 + width="58.312775" 42.8333 + height="57.34742" 42.8334 + rx="4.7705503" 42.8335 + ry="4.0114756" 42.8336 + x="13.005378" 42.8337 + y="163.73155" 42.8338 + id="rect7756" 42.8339 + style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8340 + <rect 42.8341 + width="228.52347" 42.8342 + height="59.872803" 42.8343 + rx="4.7705503" 42.8344 + ry="4.0114756" 42.8345 + x="622.26056" 42.8346 + y="161.20618" 42.8347 + id="rect7750" 42.8348 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8349 + <rect 42.8350 + width="226.50317" 42.8351 + height="57.34742" 42.8352 + rx="4.7705503" 42.8353 + ry="4.0114756" 42.8354 + x="624.28082" 42.8355 + y="163.73155" 42.8356 + id="rect7752" 42.8357 + style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8358 + <rect 42.8359 + width="228.52347" 42.8360 + height="59.872803" 42.8361 + rx="4.7705503" 42.8362 + ry="4.0114756" 42.8363 + x="373.62473" 42.8364 + y="161.20618" 42.8365 + id="rect7746" 42.8366 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8367 + <rect 42.8368 + width="226.50317" 42.8369 + height="57.34742" 42.8370 + rx="4.7705503" 42.8371 + ry="4.0114756" 42.8372 + x="375.64505" 42.8373 + y="163.73155" 42.8374 + id="rect7748" 42.8375 + style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8376 + <rect 42.8377 + width="228.52347" 42.8378 + height="59.872803" 42.8379 + rx="4.7705503" 42.8380 + ry="4.0114756" 42.8381 + x="121.08659" 42.8382 + y="161.20618" 42.8383 + id="rect7744" 42.8384 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8385 + <rect 42.8386 + width="226.50317" 42.8387 + height="57.34742" 42.8388 + rx="4.7705503" 42.8389 + ry="4.0114756" 42.8390 + x="123.1069" 42.8391 + y="163.73155" 42.8392 + id="rect7742" 42.8393 + style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8394 + <path 42.8395 + inkscape:connector-curvature="0" 42.8396 + d="M 920.2617,95.857412 C 918.82604,62.506616 940.25585,19.908049 948.7841,-9.9111759 958.45288,-43.718287 968.28181,-75.581218 970.17591,-84.469358" 42.8397 + id="path7579" 42.8398 + style="fill:none;stroke:#575757;stroke-width:10.56896782;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.8399 + <path 42.8400 + inkscape:connector-curvature="0" 42.8401 + d="M 920.6437,95.900757 C 919.20804,62.549964 940.63785,19.951397 949.1661,-9.8678281 958.83488,-43.674939 968.66381,-75.53787 970.55791,-84.42601" 42.8402 + id="path7577" 42.8403 + style="fill:none;stroke:url(#linearGradient8253);stroke-width:8.64733696;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.8404 + <rect 42.8405 + width="76.736275" 42.8406 + height="48.115559" 42.8407 + rx="4.7705498" 42.8408 + ry="4.011476" 42.8409 + x="769.03308" 42.8410 + y="287.94803" 42.8411 + id="rect7609" 42.8412 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8413 + <rect 42.8414 + width="88.869888" 42.8415 + height="52.044125" 42.8416 + rx="4.7705498" 42.8417 + ry="4.011476" 42.8418 + x="14.327309" 42.8419 + y="344.01947" 42.8420 + id="rect7076" 42.8421 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8422 + <rect 42.8423 + width="78.168594" 42.8424 + height="11.459319" 42.8425 + rx="0" 42.8426 + ry="0" 42.8427 + x="23.420502" 42.8428 + y="384.59332" 42.8429 + id="rect7082" 42.8430 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8431 + <rect 42.8432 + width="5.5958333" 42.8433 + height="40.877235" 42.8434 + x="98.095627" 42.8435 + y="347.884" 42.8436 + id="rect7262" 42.8437 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8438 + <path 42.8439 + inkscape:connector-curvature="0" 42.8440 + d="m 99.167633,350.89908 4.511547,-2.97148 c -0.17922,-2.85683 -1.15547,-3.84571 -2.51463,-3.93718 -1.8085,0.10572 -3.57335,0.26014 -4.511552,1.33715 l 2.514635,5.57151 z" 42.8441 + id="path7264" 42.8442 + style="fill:url(#linearGradient8246);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8443 + <path 42.8444 + inkscape:connector-curvature="0" 42.8445 + d="m 98.324485,387.73388 5.360495,0.60004 0.0196,5.45495 c -0.003,1.40684 -1.07496,2.21512 -2.18342,2.26381 l -2.386072,-0.0273 -2.641024,-6.40956 1.830411,-1.88196 z" 42.8446 + id="path7266" 42.8447 + style="fill:url(#linearGradient8243);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8448 + <rect 42.8449 + width="15.476008" 42.8450 + height="47.063831" 42.8451 + rx="4.7705498" 42.8452 + ry="4.7543411" 42.8453 + x="82.716934" 42.8454 + y="344.677" 42.8455 + id="rect7272" 42.8456 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8457 + <rect 42.8458 + width="51.494247" 42.8459 + height="52.044125" 42.8460 + rx="4.7705498" 42.8461 + ry="4.011476" 42.8462 + x="125.6323" 42.8463 + y="165.24678" 42.8464 + id="rect3400" 42.8465 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8466 + <rect 42.8467 + width="11.279431" 42.8468 + height="34.563782" 42.8469 + x="165.82301" 42.8470 + y="169.11133" 42.8471 + id="rect3402" 42.8472 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8473 + <path 42.8474 + inkscape:connector-curvature="0" 42.8475 + d="m 167.98372,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.8476 + id="path3404" 42.8477 + style="fill:url(#linearGradient8237);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8478 + <rect 42.8479 + width="33.469341" 42.8480 + height="12.974548" 42.8481 + rx="0" 42.8482 + ry="0" 42.8483 + x="134.72549" 42.8484 + y="204.30544" 42.8485 + id="rect3406" 42.8486 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8487 + <path 42.8488 + inkscape:connector-curvature="0" 42.8489 + d="m 166.2842,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.8490 + id="path3408" 42.8491 + style="fill:url(#linearGradient8233);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8492 + <path 42.8493 + inkscape:connector-curvature="0" 42.8494 + d="m 133.14427,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.8495 + id="path3410" 42.8496 + style="fill:url(#linearGradient8230);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8497 + <rect 42.8498 + width="36.535122" 42.8499 + height="40.245304" 42.8500 + rx="4.7705498" 42.8501 + ry="4.7543411" 42.8502 + x="132.40265" 42.8503 + y="165.90433" 42.8504 + id="rect3412" 42.8505 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8506 + <rect 42.8507 + width="35.480965" 42.8508 + height="40.245304" 42.8509 + rx="4.7705498" 42.8510 + ry="4.7543411" 42.8511 + x="132.40265" 42.8512 + y="165.90433" 42.8513 + id="rect3414" 42.8514 + style="fill:url(#linearGradient8226);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8515 + <text 42.8516 + sodipodi:linespacing="100%" 42.8517 + x="136.91684" 42.8518 + y="190.0256" 42.8519 + transform="scale(1.0017033,0.9982996)" 42.8520 + id="text3416" 42.8521 + xml:space="preserve" 42.8522 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.8523 + x="136.91684" 42.8524 + y="190.0256" 42.8525 + id="tspan3418">F1</tspan></text> 42.8526 + <rect 42.8527 + width="51.494247" 42.8528 + height="52.044121" 42.8529 + rx="4.7705503" 42.8530 + ry="4.0114756" 42.8531 + x="125.63229" 42.8532 + y="165.24678" 42.8533 + id="rect3420" 42.8534 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.8535 + <rect 42.8536 + width="51.494247" 42.8537 + height="52.044125" 42.8538 + rx="4.7705498" 42.8539 + ry="4.011476" 42.8540 + x="181.44855" 42.8541 + y="165.24678" 42.8542 + id="rect4052" 42.8543 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8544 + <rect 42.8545 + width="11.279431" 42.8546 + height="34.563782" 42.8547 + x="221.63925" 42.8548 + y="169.11133" 42.8549 + id="rect4054" 42.8550 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8551 + <path 42.8552 + inkscape:connector-curvature="0" 42.8553 + d="m 223.79996,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.8554 + id="path4056" 42.8555 + style="fill:url(#linearGradient8218);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8556 + <rect 42.8557 + width="33.469341" 42.8558 + height="12.974548" 42.8559 + rx="0" 42.8560 + ry="0" 42.8561 + x="190.54173" 42.8562 + y="204.30544" 42.8563 + id="rect4058" 42.8564 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8565 + <path 42.8566 + inkscape:connector-curvature="0" 42.8567 + d="m 222.10044,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.8568 + id="path4060" 42.8569 + style="fill:url(#linearGradient8214);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8570 + <path 42.8571 + inkscape:connector-curvature="0" 42.8572 + d="m 188.96051,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.8573 + id="path4062" 42.8574 + style="fill:url(#linearGradient8211);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8575 + <rect 42.8576 + width="36.535122" 42.8577 + height="40.245304" 42.8578 + rx="4.7705498" 42.8579 + ry="4.7543411" 42.8580 + x="188.21889" 42.8581 + y="165.90433" 42.8582 + id="rect4064" 42.8583 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8584 + <rect 42.8585 + width="35.480965" 42.8586 + height="40.245304" 42.8587 + rx="4.7705498" 42.8588 + ry="4.7543411" 42.8589 + x="188.21889" 42.8590 + y="165.90433" 42.8591 + id="rect4066" 42.8592 + style="fill:url(#linearGradient8207);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8593 + <text 42.8594 + sodipodi:linespacing="100%" 42.8595 + x="192.63817" 42.8596 + y="190.0256" 42.8597 + transform="scale(1.0017033,0.9982996)" 42.8598 + id="text4068" 42.8599 + xml:space="preserve" 42.8600 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.8601 + x="192.63817" 42.8602 + y="190.0256" 42.8603 + id="tspan4070">F2</tspan></text> 42.8604 + <rect 42.8605 + width="51.494247" 42.8606 + height="52.044121" 42.8607 + rx="4.7705503" 42.8608 + ry="4.0114756" 42.8609 + x="181.44853" 42.8610 + y="165.24678" 42.8611 + id="rect4072" 42.8612 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.8613 + <rect 42.8614 + width="51.494247" 42.8615 + height="52.044125" 42.8616 + rx="4.7705498" 42.8617 + ry="4.011476" 42.8618 + x="237.2648" 42.8619 + y="165.24678" 42.8620 + id="rect4082" 42.8621 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8622 + <rect 42.8623 + width="11.279431" 42.8624 + height="34.563782" 42.8625 + x="277.45551" 42.8626 + y="169.11133" 42.8627 + id="rect4084" 42.8628 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8629 + <path 42.8630 + inkscape:connector-curvature="0" 42.8631 + d="m 279.61622,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.8632 + id="path4086" 42.8633 + style="fill:url(#linearGradient8199);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8634 + <rect 42.8635 + width="33.469341" 42.8636 + height="12.974548" 42.8637 + rx="0" 42.8638 + ry="0" 42.8639 + x="246.35799" 42.8640 + y="204.30544" 42.8641 + id="rect4088" 42.8642 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8643 + <path 42.8644 + inkscape:connector-curvature="0" 42.8645 + d="m 277.9167,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.8646 + id="path4090" 42.8647 + style="fill:url(#linearGradient8195);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8648 + <path 42.8649 + inkscape:connector-curvature="0" 42.8650 + d="m 244.77677,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.8651 + id="path4092" 42.8652 + style="fill:url(#linearGradient8192);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8653 + <rect 42.8654 + width="36.535122" 42.8655 + height="40.245304" 42.8656 + rx="4.7705498" 42.8657 + ry="4.7543411" 42.8658 + x="244.03514" 42.8659 + y="165.90433" 42.8660 + id="rect4094" 42.8661 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8662 + <rect 42.8663 + width="35.480965" 42.8664 + height="40.245304" 42.8665 + rx="4.7705498" 42.8666 + ry="4.7543411" 42.8667 + x="244.03514" 42.8668 + y="165.90433" 42.8669 + id="rect4096" 42.8670 + style="fill:url(#linearGradient8188);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8671 + <text 42.8672 + sodipodi:linespacing="100%" 42.8673 + x="248.35951" 42.8674 + y="190.0256" 42.8675 + transform="scale(1.0017033,0.9982996)" 42.8676 + id="text4098" 42.8677 + xml:space="preserve" 42.8678 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.8679 + x="248.35951" 42.8680 + y="190.0256" 42.8681 + id="tspan4100">F3</tspan></text> 42.8682 + <rect 42.8683 + width="51.494247" 42.8684 + height="52.044121" 42.8685 + rx="4.7705503" 42.8686 + ry="4.0114756" 42.8687 + x="237.26479" 42.8688 + y="165.24678" 42.8689 + id="rect4102" 42.8690 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.8691 + <rect 42.8692 + width="51.494247" 42.8693 + height="52.044125" 42.8694 + rx="4.7705498" 42.8695 + ry="4.011476" 42.8696 + x="293.08099" 42.8697 + y="165.24678" 42.8698 + id="rect4112" 42.8699 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8700 + <rect 42.8701 + width="11.279431" 42.8702 + height="34.563782" 42.8703 + x="333.2717" 42.8704 + y="169.11133" 42.8705 + id="rect4114" 42.8706 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8707 + <path 42.8708 + inkscape:connector-curvature="0" 42.8709 + d="m 335.43243,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.8710 + id="path4116" 42.8711 + style="fill:url(#linearGradient8180);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8712 + <rect 42.8713 + width="33.469341" 42.8714 + height="12.974548" 42.8715 + rx="0" 42.8716 + ry="0" 42.8717 + x="302.17419" 42.8718 + y="204.30544" 42.8719 + id="rect4118" 42.8720 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8721 + <path 42.8722 + inkscape:connector-curvature="0" 42.8723 + d="m 333.73291,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.8724 + id="path4120" 42.8725 + style="fill:url(#linearGradient8176);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8726 + <path 42.8727 + inkscape:connector-curvature="0" 42.8728 + d="m 300.59298,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.8729 + id="path4122" 42.8730 + style="fill:url(#linearGradient8173);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8731 + <rect 42.8732 + width="36.535122" 42.8733 + height="40.245304" 42.8734 + rx="4.7705498" 42.8735 + ry="4.7543411" 42.8736 + x="299.85135" 42.8737 + y="165.90433" 42.8738 + id="rect4124" 42.8739 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8740 + <rect 42.8741 + width="35.480965" 42.8742 + height="40.245304" 42.8743 + rx="4.7705498" 42.8744 + ry="4.7543411" 42.8745 + x="299.85135" 42.8746 + y="165.90433" 42.8747 + id="rect4126" 42.8748 + style="fill:url(#linearGradient8169);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8749 + <text 42.8750 + sodipodi:linespacing="100%" 42.8751 + x="304.08081" 42.8752 + y="190.0256" 42.8753 + transform="scale(1.0017033,0.9982996)" 42.8754 + id="text4128" 42.8755 + xml:space="preserve" 42.8756 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.8757 + x="304.08081" 42.8758 + y="190.0256" 42.8759 + id="tspan4130">F4</tspan></text> 42.8760 + <rect 42.8761 + width="51.494247" 42.8762 + height="52.044121" 42.8763 + rx="4.7705503" 42.8764 + ry="4.0114756" 42.8765 + x="293.08099" 42.8766 + y="165.24678" 42.8767 + id="rect4132" 42.8768 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.8769 + <rect 42.8770 + width="51.494247" 42.8771 + height="52.044125" 42.8772 + rx="4.7705498" 42.8773 + ry="4.011476" 42.8774 + x="378.48944" 42.8775 + y="165.24678" 42.8776 + id="rect4430" 42.8777 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8778 + <rect 42.8779 + width="11.279431" 42.8780 + height="34.563782" 42.8781 + x="418.68015" 42.8782 + y="169.11133" 42.8783 + id="rect4432" 42.8784 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8785 + <path 42.8786 + inkscape:connector-curvature="0" 42.8787 + d="m 420.84086,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.8788 + id="path4434" 42.8789 + style="fill:url(#linearGradient8161);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8790 + <rect 42.8791 + width="33.469341" 42.8792 + height="12.974548" 42.8793 + rx="0" 42.8794 + ry="0" 42.8795 + x="387.58264" 42.8796 + y="204.30544" 42.8797 + id="rect4436" 42.8798 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8799 + <path 42.8800 + inkscape:connector-curvature="0" 42.8801 + d="m 419.14134,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.8802 + id="path4438" 42.8803 + style="fill:url(#linearGradient8157);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8804 + <path 42.8805 + inkscape:connector-curvature="0" 42.8806 + d="m 386.00141,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.8807 + id="path4440" 42.8808 + style="fill:url(#linearGradient8154);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8809 + <rect 42.8810 + width="36.535122" 42.8811 + height="40.245304" 42.8812 + rx="4.7705498" 42.8813 + ry="4.7543411" 42.8814 + x="385.2598" 42.8815 + y="165.90433" 42.8816 + id="rect4442" 42.8817 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8818 + <rect 42.8819 + width="35.480965" 42.8820 + height="40.245304" 42.8821 + rx="4.7705498" 42.8822 + ry="4.7543411" 42.8823 + x="385.2598" 42.8824 + y="165.90433" 42.8825 + id="rect4444" 42.8826 + style="fill:url(#linearGradient8150);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8827 + <text 42.8828 + sodipodi:linespacing="100%" 42.8829 + x="389.34402" 42.8830 + y="190.0256" 42.8831 + transform="scale(1.0017033,0.9982996)" 42.8832 + id="text4446" 42.8833 + xml:space="preserve" 42.8834 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.8835 + x="389.34402" 42.8836 + y="190.0256" 42.8837 + id="tspan4448">F5</tspan></text> 42.8838 + <rect 42.8839 + width="51.494247" 42.8840 + height="52.044121" 42.8841 + rx="4.7705503" 42.8842 + ry="4.0114756" 42.8843 + x="378.48944" 42.8844 + y="165.24678" 42.8845 + id="rect4450" 42.8846 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.8847 + <rect 42.8848 + width="51.494247" 42.8849 + height="52.044125" 42.8850 + rx="4.7705498" 42.8851 + ry="4.011476" 42.8852 + x="434.30569" 42.8853 + y="165.24678" 42.8854 + id="rect4452" 42.8855 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8856 + <rect 42.8857 + width="11.279431" 42.8858 + height="34.563782" 42.8859 + x="474.4964" 42.8860 + y="169.11133" 42.8861 + id="rect4454" 42.8862 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8863 + <path 42.8864 + inkscape:connector-curvature="0" 42.8865 + d="m 476.6571,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.8866 + id="path4456" 42.8867 + style="fill:url(#linearGradient8142);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8868 + <rect 42.8869 + width="33.469341" 42.8870 + height="12.974548" 42.8871 + rx="0" 42.8872 + ry="0" 42.8873 + x="443.39886" 42.8874 + y="204.30544" 42.8875 + id="rect4458" 42.8876 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8877 + <path 42.8878 + inkscape:connector-curvature="0" 42.8879 + d="m 474.95758,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.8880 + id="path4460" 42.8881 + style="fill:url(#linearGradient8138);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8882 + <path 42.8883 + inkscape:connector-curvature="0" 42.8884 + d="m 441.81765,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.8885 + id="path4462" 42.8886 + style="fill:url(#linearGradient8135);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8887 + <rect 42.8888 + width="36.535122" 42.8889 + height="40.245304" 42.8890 + rx="4.7705498" 42.8891 + ry="4.7543411" 42.8892 + x="441.07602" 42.8893 + y="165.90433" 42.8894 + id="rect4464" 42.8895 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8896 + <rect 42.8897 + width="35.480965" 42.8898 + height="40.245304" 42.8899 + rx="4.7705498" 42.8900 + ry="4.7543411" 42.8901 + x="441.07602" 42.8902 + y="165.90433" 42.8903 + id="rect4466" 42.8904 + style="fill:url(#linearGradient8131);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8905 + <text 42.8906 + sodipodi:linespacing="100%" 42.8907 + x="445.06534" 42.8908 + y="190.0256" 42.8909 + transform="scale(1.0017033,0.9982996)" 42.8910 + id="text4468" 42.8911 + xml:space="preserve" 42.8912 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.8913 + x="445.06534" 42.8914 + y="190.0256" 42.8915 + id="tspan4470">F6</tspan></text> 42.8916 + <rect 42.8917 + width="51.494247" 42.8918 + height="52.044121" 42.8919 + rx="4.7705503" 42.8920 + ry="4.0114756" 42.8921 + x="434.30566" 42.8922 + y="165.24678" 42.8923 + id="rect4472" 42.8924 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.8925 + <rect 42.8926 + width="51.494247" 42.8927 + height="52.044125" 42.8928 + rx="4.7705498" 42.8929 + ry="4.011476" 42.8930 + x="490.12195" 42.8931 + y="165.24678" 42.8932 + id="rect4474" 42.8933 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8934 + <rect 42.8935 + width="11.279431" 42.8936 + height="34.563782" 42.8937 + x="530.31262" 42.8938 + y="169.11133" 42.8939 + id="rect4476" 42.8940 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8941 + <path 42.8942 + inkscape:connector-curvature="0" 42.8943 + d="m 532.47336,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.8944 + id="path4478" 42.8945 + style="fill:url(#linearGradient8123);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8946 + <rect 42.8947 + width="33.469341" 42.8948 + height="12.974548" 42.8949 + rx="0" 42.8950 + ry="0" 42.8951 + x="499.21512" 42.8952 + y="204.30544" 42.8953 + id="rect4480" 42.8954 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8955 + <path 42.8956 + inkscape:connector-curvature="0" 42.8957 + d="m 530.77384,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.8958 + id="path4482" 42.8959 + style="fill:url(#linearGradient8119);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8960 + <path 42.8961 + inkscape:connector-curvature="0" 42.8962 + d="m 497.63391,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.8963 + id="path4484" 42.8964 + style="fill:url(#linearGradient8116);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8965 + <rect 42.8966 + width="36.535122" 42.8967 + height="40.245304" 42.8968 + rx="4.7705498" 42.8969 + ry="4.7543411" 42.8970 + x="496.89227" 42.8971 + y="165.90433" 42.8972 + id="rect4486" 42.8973 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8974 + <rect 42.8975 + width="35.480965" 42.8976 + height="40.245304" 42.8977 + rx="4.7705498" 42.8978 + ry="4.7543411" 42.8979 + x="496.89227" 42.8980 + y="165.90433" 42.8981 + id="rect4488" 42.8982 + style="fill:url(#linearGradient8112);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.8983 + <text 42.8984 + sodipodi:linespacing="100%" 42.8985 + x="500.78668" 42.8986 + y="190.0256" 42.8987 + transform="scale(1.0017033,0.9982996)" 42.8988 + id="text4490" 42.8989 + xml:space="preserve" 42.8990 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.8991 + x="500.78668" 42.8992 + y="190.0256" 42.8993 + id="tspan4492">F7</tspan></text> 42.8994 + <rect 42.8995 + width="51.494247" 42.8996 + height="52.044121" 42.8997 + rx="4.7705503" 42.8998 + ry="4.0114756" 42.8999 + x="490.12192" 42.9000 + y="165.24678" 42.9001 + id="rect4494" 42.9002 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9003 + <rect 42.9004 + width="51.494247" 42.9005 + height="52.044125" 42.9006 + rx="4.7705498" 42.9007 + ry="4.011476" 42.9008 + x="545.93811" 42.9009 + y="165.24678" 42.9010 + id="rect4496" 42.9011 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9012 + <rect 42.9013 + width="11.279431" 42.9014 + height="34.563782" 42.9015 + x="586.12885" 42.9016 + y="169.11133" 42.9017 + id="rect4498" 42.9018 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9019 + <path 42.9020 + inkscape:connector-curvature="0" 42.9021 + d="m 588.28957,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9022 + id="path4500" 42.9023 + style="fill:url(#linearGradient8104);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9024 + <rect 42.9025 + width="33.469341" 42.9026 + height="12.974548" 42.9027 + rx="0" 42.9028 + ry="0" 42.9029 + x="555.03131" 42.9030 + y="204.30544" 42.9031 + id="rect4502" 42.9032 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9033 + <path 42.9034 + inkscape:connector-curvature="0" 42.9035 + d="m 586.59005,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9036 + id="path4504" 42.9037 + style="fill:url(#linearGradient8100);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9038 + <path 42.9039 + inkscape:connector-curvature="0" 42.9040 + d="m 553.45012,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9041 + id="path4506" 42.9042 + style="fill:url(#linearGradient8097);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9043 + <rect 42.9044 + width="36.535122" 42.9045 + height="40.245304" 42.9046 + rx="4.7705498" 42.9047 + ry="4.7543411" 42.9048 + x="552.7085" 42.9049 + y="165.90433" 42.9050 + id="rect4508" 42.9051 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9052 + <rect 42.9053 + width="35.480965" 42.9054 + height="40.245304" 42.9055 + rx="4.7705498" 42.9056 + ry="4.7543411" 42.9057 + x="552.7085" 42.9058 + y="165.90433" 42.9059 + id="rect4510" 42.9060 + style="fill:url(#linearGradient8093);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9061 + <text 42.9062 + sodipodi:linespacing="100%" 42.9063 + x="556.508" 42.9064 + y="190.0256" 42.9065 + transform="scale(1.0017033,0.9982996)" 42.9066 + id="text4512" 42.9067 + xml:space="preserve" 42.9068 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.9069 + x="556.508" 42.9070 + y="190.0256" 42.9071 + id="tspan4514">F8</tspan></text> 42.9072 + <rect 42.9073 + width="51.494247" 42.9074 + height="52.044121" 42.9075 + rx="4.7705503" 42.9076 + ry="4.0114756" 42.9077 + x="545.93811" 42.9078 + y="165.24678" 42.9079 + id="rect4516" 42.9080 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9081 + <rect 42.9082 + width="51.494247" 42.9083 + height="52.044125" 42.9084 + rx="4.7705498" 42.9085 + ry="4.011476" 42.9086 + x="627.06085" 42.9087 + y="165.24678" 42.9088 + id="rect4550" 42.9089 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9090 + <rect 42.9091 + width="11.279431" 42.9092 + height="34.563782" 42.9093 + x="667.25159" 42.9094 + y="169.11133" 42.9095 + id="rect4552" 42.9096 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9097 + <path 42.9098 + inkscape:connector-curvature="0" 42.9099 + d="m 669.41229,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9100 + id="path4554" 42.9101 + style="fill:url(#linearGradient8085);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9102 + <rect 42.9103 + width="33.469341" 42.9104 + height="12.974548" 42.9105 + rx="0" 42.9106 + ry="0" 42.9107 + x="636.15405" 42.9108 + y="204.30544" 42.9109 + id="rect4556" 42.9110 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9111 + <path 42.9112 + inkscape:connector-curvature="0" 42.9113 + d="m 667.71277,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9114 + id="path4558" 42.9115 + style="fill:url(#linearGradient8081);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9116 + <path 42.9117 + inkscape:connector-curvature="0" 42.9118 + d="m 634.57284,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9119 + id="path4560" 42.9120 + style="fill:url(#linearGradient8078);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9121 + <rect 42.9122 + width="36.535122" 42.9123 + height="40.245304" 42.9124 + rx="4.7705498" 42.9125 + ry="4.7543411" 42.9126 + x="633.83124" 42.9127 + y="165.90433" 42.9128 + id="rect4562" 42.9129 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9130 + <rect 42.9131 + width="35.480965" 42.9132 + height="40.245304" 42.9133 + rx="4.7705498" 42.9134 + ry="4.7543411" 42.9135 + x="633.83124" 42.9136 + y="165.90433" 42.9137 + id="rect4564" 42.9138 + style="fill:url(#linearGradient8074);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9139 + <text 42.9140 + sodipodi:linespacing="100%" 42.9141 + x="637.4928" 42.9142 + y="190.0256" 42.9143 + transform="scale(1.0017033,0.9982996)" 42.9144 + id="text4566" 42.9145 + xml:space="preserve" 42.9146 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.9147 + x="637.4928" 42.9148 + y="190.0256" 42.9149 + id="tspan4568">F9</tspan></text> 42.9150 + <rect 42.9151 + width="51.494247" 42.9152 + height="52.044121" 42.9153 + rx="4.7705503" 42.9154 + ry="4.0114756" 42.9155 + x="627.06085" 42.9156 + y="165.24678" 42.9157 + id="rect4570" 42.9158 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9159 + <rect 42.9160 + width="51.494247" 42.9161 + height="52.044125" 42.9162 + rx="4.7705498" 42.9163 + ry="4.011476" 42.9164 + x="682.87714" 42.9165 + y="165.24678" 42.9166 + id="rect4572" 42.9167 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9168 + <rect 42.9169 + width="11.279431" 42.9170 + height="34.563782" 42.9171 + x="723.06781" 42.9172 + y="169.11133" 42.9173 + id="rect4574" 42.9174 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9175 + <path 42.9176 + inkscape:connector-curvature="0" 42.9177 + d="m 725.22853,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9178 + id="path4576" 42.9179 + style="fill:url(#linearGradient8066);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9180 + <rect 42.9181 + width="33.469341" 42.9182 + height="12.974548" 42.9183 + rx="0" 42.9184 + ry="0" 42.9185 + x="691.97028" 42.9186 + y="204.30544" 42.9187 + id="rect4578" 42.9188 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9189 + <path 42.9190 + inkscape:connector-curvature="0" 42.9191 + d="m 723.52901,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9192 + id="path4580" 42.9193 + style="fill:url(#linearGradient8062);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9194 + <path 42.9195 + inkscape:connector-curvature="0" 42.9196 + d="m 690.38908,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9197 + id="path4582" 42.9198 + style="fill:url(#linearGradient8059);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9199 + <rect 42.9200 + width="36.535122" 42.9201 + height="40.245304" 42.9202 + rx="4.7705498" 42.9203 + ry="4.7543411" 42.9204 + x="689.64746" 42.9205 + y="165.90433" 42.9206 + id="rect4584" 42.9207 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9208 + <rect 42.9209 + width="35.480965" 42.9210 + height="40.245304" 42.9211 + rx="4.7705498" 42.9212 + ry="4.7543411" 42.9213 + x="689.64746" 42.9214 + y="165.90433" 42.9215 + id="rect4586" 42.9216 + style="fill:url(#linearGradient8055);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9217 + <text 42.9218 + sodipodi:linespacing="100%" 42.9219 + x="693.21411" 42.9220 + y="190.0256" 42.9221 + transform="scale(1.0017033,0.9982996)" 42.9222 + id="text4588" 42.9223 + xml:space="preserve" 42.9224 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.9225 + x="693.21411" 42.9226 + y="190.0256" 42.9227 + id="tspan4590">F10</tspan></text> 42.9228 + <rect 42.9229 + width="51.494247" 42.9230 + height="52.044121" 42.9231 + rx="4.7705503" 42.9232 + ry="4.0114756" 42.9233 + x="682.87708" 42.9234 + y="165.24678" 42.9235 + id="rect4592" 42.9236 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9237 + <rect 42.9238 + width="51.494247" 42.9239 + height="52.044125" 42.9240 + rx="4.7705498" 42.9241 + ry="4.011476" 42.9242 + x="738.69336" 42.9243 + y="165.24678" 42.9244 + id="rect4594" 42.9245 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9246 + <rect 42.9247 + width="11.279431" 42.9248 + height="34.563782" 42.9249 + x="778.88403" 42.9250 + y="169.11133" 42.9251 + id="rect4596" 42.9252 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9253 + <path 42.9254 + inkscape:connector-curvature="0" 42.9255 + d="m 781.04479,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9256 + id="path4598" 42.9257 + style="fill:url(#linearGradient8047);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9258 + <rect 42.9259 + width="33.469341" 42.9260 + height="12.974548" 42.9261 + rx="0" 42.9262 + ry="0" 42.9263 + x="747.78656" 42.9264 + y="204.30544" 42.9265 + id="rect4600" 42.9266 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9267 + <path 42.9268 + inkscape:connector-curvature="0" 42.9269 + d="m 779.34527,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9270 + id="path4602" 42.9271 + style="fill:url(#linearGradient8043);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9272 + <path 42.9273 + inkscape:connector-curvature="0" 42.9274 + d="m 746.20534,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9275 + id="path4604" 42.9276 + style="fill:url(#linearGradient8040);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9277 + <rect 42.9278 + width="36.535122" 42.9279 + height="40.245304" 42.9280 + rx="4.7705498" 42.9281 + ry="4.7543411" 42.9282 + x="745.46368" 42.9283 + y="165.90433" 42.9284 + id="rect4606" 42.9285 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9286 + <rect 42.9287 + width="35.480965" 42.9288 + height="40.245304" 42.9289 + rx="4.7705498" 42.9290 + ry="4.7543411" 42.9291 + x="745.46368" 42.9292 + y="165.90433" 42.9293 + id="rect4608" 42.9294 + style="fill:url(#linearGradient8036);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9295 + <text 42.9296 + sodipodi:linespacing="100%" 42.9297 + x="748.93542" 42.9298 + y="190.0256" 42.9299 + transform="scale(1.0017033,0.9982996)" 42.9300 + id="text4610" 42.9301 + xml:space="preserve" 42.9302 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.9303 + x="748.93542" 42.9304 + y="190.0256" 42.9305 + id="tspan4612">F11</tspan></text> 42.9306 + <rect 42.9307 + width="51.494247" 42.9308 + height="52.044121" 42.9309 + rx="4.7705503" 42.9310 + ry="4.0114756" 42.9311 + x="738.69336" 42.9312 + y="165.24678" 42.9313 + id="rect4614" 42.9314 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9315 + <rect 42.9316 + width="51.494247" 42.9317 + height="52.044125" 42.9318 + rx="4.7705498" 42.9319 + ry="4.011476" 42.9320 + x="794.50952" 42.9321 + y="165.24678" 42.9322 + id="rect4616" 42.9323 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9324 + <rect 42.9325 + width="11.279431" 42.9326 + height="34.563782" 42.9327 + x="834.70026" 42.9328 + y="169.11133" 42.9329 + id="rect4618" 42.9330 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9331 + <path 42.9332 + inkscape:connector-curvature="0" 42.9333 + d="m 836.861,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9334 + id="path4620" 42.9335 + style="fill:url(#linearGradient8028);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9336 + <rect 42.9337 + width="33.469341" 42.9338 + height="12.974548" 42.9339 + rx="0" 42.9340 + ry="0" 42.9341 + x="803.60272" 42.9342 + y="204.30544" 42.9343 + id="rect4622" 42.9344 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9345 + <path 42.9346 + inkscape:connector-curvature="0" 42.9347 + d="m 835.16148,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9348 + id="path4624" 42.9349 + style="fill:url(#linearGradient8024);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9350 + <path 42.9351 + inkscape:connector-curvature="0" 42.9352 + d="m 802.02155,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9353 + id="path4626" 42.9354 + style="fill:url(#linearGradient8021);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9355 + <rect 42.9356 + width="36.535122" 42.9357 + height="40.245304" 42.9358 + rx="4.7705498" 42.9359 + ry="4.7543411" 42.9360 + x="801.27991" 42.9361 + y="165.90433" 42.9362 + id="rect4628" 42.9363 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9364 + <rect 42.9365 + width="35.480965" 42.9366 + height="40.245304" 42.9367 + rx="4.7705498" 42.9368 + ry="4.7543411" 42.9369 + x="801.27991" 42.9370 + y="165.90433" 42.9371 + id="rect4630" 42.9372 + style="fill:url(#linearGradient8017);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9373 + <text 42.9374 + sodipodi:linespacing="100%" 42.9375 + x="804.65674" 42.9376 + y="190.0256" 42.9377 + transform="scale(1.0017033,0.9982996)" 42.9378 + id="text4632" 42.9379 + xml:space="preserve" 42.9380 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.9381 + x="804.65674" 42.9382 + y="190.0256" 42.9383 + id="tspan4634">F12</tspan></text> 42.9384 + <rect 42.9385 + width="51.494247" 42.9386 + height="52.044121" 42.9387 + rx="4.7705503" 42.9388 + ry="4.0114756" 42.9389 + x="794.50952" 42.9390 + y="165.24678" 42.9391 + id="rect4636" 42.9392 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9393 + <rect 42.9394 + width="51.494247" 42.9395 + height="52.044125" 42.9396 + rx="4.7705498" 42.9397 + ry="4.011476" 42.9398 + x="15.525674" 42.9399 + y="165.24678" 42.9400 + id="rect4670" 42.9401 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9402 + <rect 42.9403 + width="11.279431" 42.9404 + height="34.563782" 42.9405 + x="55.716385" 42.9406 + y="169.11133" 42.9407 + id="rect4672" 42.9408 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9409 + <path 42.9410 + inkscape:connector-curvature="0" 42.9411 + d="m 57.877092,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9412 + id="path4674" 42.9413 + style="fill:url(#linearGradient8009);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9414 + <rect 42.9415 + width="33.469341" 42.9416 + height="12.974548" 42.9417 + rx="0" 42.9418 + ry="0" 42.9419 + x="24.618866" 42.9420 + y="204.30544" 42.9421 + id="rect4676" 42.9422 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9423 + <path 42.9424 + inkscape:connector-curvature="0" 42.9425 + d="m 56.177572,201.25879 10.80506,1.15562 0.03953,10.50571 c -0.0056,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9426 + id="path4678" 42.9427 + style="fill:url(#linearGradient8005);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9428 + <path 42.9429 + inkscape:connector-curvature="0" 42.9430 + d="m 23.037642,201.15373 -7.48448,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9431 + id="path4680" 42.9432 + style="fill:url(#linearGradient8002);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9433 + <rect 42.9434 + width="36.535122" 42.9435 + height="40.245304" 42.9436 + rx="4.7705498" 42.9437 + ry="4.7543411" 42.9438 + x="22.296021" 42.9439 + y="165.90433" 42.9440 + id="rect4682" 42.9441 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9442 + <rect 42.9443 + width="35.480965" 42.9444 + height="40.245304" 42.9445 + rx="4.7705498" 42.9446 + ry="4.7543411" 42.9447 + x="22.296021" 42.9448 + y="165.90433" 42.9449 + id="rect4684" 42.9450 + style="fill:url(#linearGradient7998);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9451 + <text 42.9452 + sodipodi:linespacing="100%" 42.9453 + x="26.997438" 42.9454 + y="190.0256" 42.9455 + transform="scale(1.0017033,0.9982996)" 42.9456 + id="text4686" 42.9457 + xml:space="preserve" 42.9458 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.9459 + x="26.997438" 42.9460 + y="190.0256" 42.9461 + id="tspan4688">Esc</tspan></text> 42.9462 + <rect 42.9463 + width="51.494247" 42.9464 + height="52.044121" 42.9465 + rx="4.7705503" 42.9466 + ry="4.0114756" 42.9467 + x="15.525666" 42.9468 + y="165.24678" 42.9469 + id="rect4690" 42.9470 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9471 + <rect 42.9472 + width="51.494247" 42.9473 + height="52.044125" 42.9474 + rx="4.7705498" 42.9475 + ry="4.011476" 42.9476 + x="861.44855" 42.9477 + y="165.24678" 42.9478 + id="rect4700" 42.9479 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9480 + <rect 42.9481 + width="11.279431" 42.9482 + height="34.563782" 42.9483 + x="901.63922" 42.9484 + y="169.11133" 42.9485 + id="rect4702" 42.9486 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9487 + <path 42.9488 + inkscape:connector-curvature="0" 42.9489 + d="m 903.79996,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9490 + id="path4704" 42.9491 + style="fill:url(#linearGradient7990);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9492 + <rect 42.9493 + width="33.469341" 42.9494 + height="12.974548" 42.9495 + rx="0" 42.9496 + ry="0" 42.9497 + x="870.54169" 42.9498 + y="204.30544" 42.9499 + id="rect4706" 42.9500 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9501 + <path 42.9502 + inkscape:connector-curvature="0" 42.9503 + d="m 902.10044,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9504 + id="path4708" 42.9505 + style="fill:url(#linearGradient7986);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9506 + <path 42.9507 + inkscape:connector-curvature="0" 42.9508 + d="m 868.96051,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9509 + id="path4710" 42.9510 + style="fill:url(#linearGradient7982);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9511 + <rect 42.9512 + width="36.535122" 42.9513 + height="40.245304" 42.9514 + rx="4.7705498" 42.9515 + ry="4.7543411" 42.9516 + x="868.21887" 42.9517 + y="165.90433" 42.9518 + id="rect4712" 42.9519 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9520 + <rect 42.9521 + width="35.480965" 42.9522 + height="40.245304" 42.9523 + rx="4.7705498" 42.9524 + ry="4.7543411" 42.9525 + x="868.21887" 42.9526 + y="165.90433" 42.9527 + id="rect4714" 42.9528 + style="fill:url(#linearGradient7977);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9529 + <rect 42.9530 + width="51.494247" 42.9531 + height="52.044121" 42.9532 + rx="4.7705503" 42.9533 + ry="4.0114756" 42.9534 + x="861.44849" 42.9535 + y="165.24678" 42.9536 + id="rect4720" 42.9537 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9538 + <rect 42.9539 + width="51.494247" 42.9540 + height="52.044125" 42.9541 + rx="4.7705498" 42.9542 + ry="4.011476" 42.9543 + x="917.26477" 42.9544 + y="165.24678" 42.9545 + id="rect4722" 42.9546 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9547 + <rect 42.9548 + width="11.279431" 42.9549 + height="34.563782" 42.9550 + x="957.45544" 42.9551 + y="169.11133" 42.9552 + id="rect4724" 42.9553 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9554 + <path 42.9555 + inkscape:connector-curvature="0" 42.9556 + d="m 959.61622,172.1264 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9557 + id="path4726" 42.9558 + style="fill:url(#linearGradient7971);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9559 + <rect 42.9560 + width="33.469341" 42.9561 + height="12.974548" 42.9562 + rx="0" 42.9563 + ry="0" 42.9564 + x="926.35797" 42.9565 + y="204.30544" 42.9566 + id="rect4728" 42.9567 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9568 + <path 42.9569 + inkscape:connector-curvature="0" 42.9570 + d="m 957.9167,201.25879 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9571 + id="path4730" 42.9572 + style="fill:url(#linearGradient7967);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9573 + <path 42.9574 + inkscape:connector-curvature="0" 42.9575 + d="m 924.77677,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9576 + id="path4732" 42.9577 + style="fill:url(#linearGradient7963);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9578 + <rect 42.9579 + width="36.535122" 42.9580 + height="40.245304" 42.9581 + rx="4.7705498" 42.9582 + ry="4.7543411" 42.9583 + x="924.0351" 42.9584 + y="165.90433" 42.9585 + id="rect4734" 42.9586 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9587 + <rect 42.9588 + width="35.480965" 42.9589 + height="40.245304" 42.9590 + rx="4.7705498" 42.9591 + ry="4.7543411" 42.9592 + x="924.0351" 42.9593 + y="165.90433" 42.9594 + id="rect4736" 42.9595 + style="fill:url(#linearGradient7958);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9596 + <rect 42.9597 + width="51.494247" 42.9598 + height="52.044121" 42.9599 + rx="4.7705503" 42.9600 + ry="4.0114756" 42.9601 + x="917.26477" 42.9602 + y="165.24678" 42.9603 + id="rect4742" 42.9604 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9605 + <rect 42.9606 + width="51.494247" 42.9607 + height="52.044125" 42.9608 + rx="4.7705498" 42.9609 + ry="4.011476" 42.9610 + x="973.08093" 42.9611 + y="165.24678" 42.9612 + id="rect4744" 42.9613 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9614 + <rect 42.9615 + width="11.279431" 42.9616 + height="34.563782" 42.9617 + x="1013.2717" 42.9618 + y="169.11133" 42.9619 + id="rect4746" 42.9620 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9621 + <path 42.9622 + inkscape:connector-curvature="0" 42.9623 + d="m 1015.4324,172.1264 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.9624 + id="path4748" 42.9625 + style="fill:url(#linearGradient7952);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9626 + <rect 42.9627 + width="33.469341" 42.9628 + height="12.974548" 42.9629 + rx="0" 42.9630 + ry="0" 42.9631 + x="982.17413" 42.9632 + y="204.30544" 42.9633 + id="rect4750" 42.9634 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9635 + <path 42.9636 + inkscape:connector-curvature="0" 42.9637 + d="m 1013.7329,201.25879 10.8051,1.15562 0.04,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.9638 + id="path4752" 42.9639 + style="fill:url(#linearGradient7948);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9640 + <path 42.9641 + inkscape:connector-curvature="0" 42.9642 + d="m 980.59298,201.15373 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9643 + id="path4754" 42.9644 + style="fill:url(#linearGradient7944);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9645 + <rect 42.9646 + width="36.535122" 42.9647 + height="40.245304" 42.9648 + rx="4.7705498" 42.9649 + ry="4.7543411" 42.9650 + x="979.85132" 42.9651 + y="165.90433" 42.9652 + id="rect4756" 42.9653 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9654 + <rect 42.9655 + width="35.480965" 42.9656 + height="40.245304" 42.9657 + rx="4.7705498" 42.9658 + ry="4.7543411" 42.9659 + x="979.85132" 42.9660 + y="165.90433" 42.9661 + id="rect4758" 42.9662 + style="fill:url(#linearGradient7939);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9663 + <rect 42.9664 + width="51.494247" 42.9665 + height="52.044121" 42.9666 + rx="4.7705503" 42.9667 + ry="4.0114756" 42.9668 + x="973.08093" 42.9669 + y="165.24678" 42.9670 + id="rect4764" 42.9671 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9672 + <rect 42.9673 + width="51.494247" 42.9674 + height="52.044125" 42.9675 + rx="4.7705498" 42.9676 + ry="4.011476" 42.9677 + x="860.73425" 42.9678 + y="232.38963" 42.9679 + id="rect4792" 42.9680 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9681 + <rect 42.9682 + width="11.279431" 42.9683 + height="34.563782" 42.9684 + x="900.92493" 42.9685 + y="236.25418" 42.9686 + id="rect4794" 42.9687 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9688 + <path 42.9689 + inkscape:connector-curvature="0" 42.9690 + d="m 903.08567,239.26926 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9691 + id="path4796" 42.9692 + style="fill:url(#linearGradient7933);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9693 + <rect 42.9694 + width="33.469341" 42.9695 + height="12.974548" 42.9696 + rx="0" 42.9697 + ry="0" 42.9698 + x="869.82739" 42.9699 + y="271.44827" 42.9700 + id="rect4798" 42.9701 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9702 + <path 42.9703 + inkscape:connector-curvature="0" 42.9704 + d="m 901.38615,268.40165 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9705 + id="path4800" 42.9706 + style="fill:url(#linearGradient7929);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9707 + <path 42.9708 + inkscape:connector-curvature="0" 42.9709 + d="m 868.24622,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9710 + id="path4802" 42.9711 + style="fill:url(#linearGradient7925);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9712 + <rect 42.9713 + width="36.535122" 42.9714 + height="40.245304" 42.9715 + rx="4.7705498" 42.9716 + ry="4.7543411" 42.9717 + x="867.50458" 42.9718 + y="233.04718" 42.9719 + id="rect4804" 42.9720 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9721 + <rect 42.9722 + width="35.480965" 42.9723 + height="40.245304" 42.9724 + rx="4.7705498" 42.9725 + ry="4.7543411" 42.9726 + x="867.50458" 42.9727 + y="233.04718" 42.9728 + id="rect4806" 42.9729 + style="fill:url(#linearGradient7920);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9730 + <rect 42.9731 + width="51.494247" 42.9732 + height="52.044121" 42.9733 + rx="4.7705503" 42.9734 + ry="4.0114756" 42.9735 + x="860.73419" 42.9736 + y="232.38963" 42.9737 + id="rect4812" 42.9738 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9739 + <rect 42.9740 + width="51.494247" 42.9741 + height="52.044125" 42.9742 + rx="4.7705498" 42.9743 + ry="4.011476" 42.9744 + x="916.55048" 42.9745 + y="232.38963" 42.9746 + id="rect4814" 42.9747 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9748 + <rect 42.9749 + width="11.279431" 42.9750 + height="34.563782" 42.9751 + x="956.74115" 42.9752 + y="236.25418" 42.9753 + id="rect4816" 42.9754 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9755 + <path 42.9756 + inkscape:connector-curvature="0" 42.9757 + d="m 958.90193,239.26926 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9758 + id="path4818" 42.9759 + style="fill:url(#linearGradient7914);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9760 + <rect 42.9761 + width="33.469341" 42.9762 + height="12.974548" 42.9763 + rx="0" 42.9764 + ry="0" 42.9765 + x="925.64368" 42.9766 + y="271.44827" 42.9767 + id="rect4820" 42.9768 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9769 + <path 42.9770 + inkscape:connector-curvature="0" 42.9771 + d="m 957.20241,268.40165 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9772 + id="path4822" 42.9773 + style="fill:url(#linearGradient7910);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9774 + <path 42.9775 + inkscape:connector-curvature="0" 42.9776 + d="m 924.06248,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9777 + id="path4824" 42.9778 + style="fill:url(#linearGradient7907);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9779 + <rect 42.9780 + width="36.535122" 42.9781 + height="40.245304" 42.9782 + rx="4.7705498" 42.9783 + ry="4.7543411" 42.9784 + x="923.3208" 42.9785 + y="233.04718" 42.9786 + id="rect4826" 42.9787 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9788 + <rect 42.9789 + width="35.480965" 42.9790 + height="40.245304" 42.9791 + rx="4.7705498" 42.9792 + ry="4.7543411" 42.9793 + x="923.3208" 42.9794 + y="233.04718" 42.9795 + id="rect4828" 42.9796 + style="fill:url(#linearGradient7903);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9797 + <rect 42.9798 + width="51.494247" 42.9799 + height="52.044121" 42.9800 + rx="4.7705503" 42.9801 + ry="4.0114756" 42.9802 + x="916.55048" 42.9803 + y="232.38963" 42.9804 + id="rect4834" 42.9805 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9806 + <text 42.9807 + x="925.43842" 42.9808 + y="189.45633" 42.9809 + transform="scale(1.0017033,0.9982996)" 42.9810 + id="text4738" 42.9811 + xml:space="preserve" 42.9812 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.9813 + sodipodi:linespacing="100%"><tspan 42.9814 + x="925.43842" 42.9815 + y="189.45633" 42.9816 + id="tspan4740">Rollen</tspan></text> 42.9817 + <rect 42.9818 + width="51.494247" 42.9819 + height="52.044125" 42.9820 + rx="4.7705498" 42.9821 + ry="4.011476" 42.9822 + x="972.36664" 42.9823 + y="232.38963" 42.9824 + id="rect4836" 42.9825 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9826 + <rect 42.9827 + width="11.279431" 42.9828 + height="34.563782" 42.9829 + x="1012.5574" 42.9830 + y="236.25418" 42.9831 + id="rect4838" 42.9832 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9833 + <path 42.9834 + inkscape:connector-curvature="0" 42.9835 + d="m 1014.7181,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.9836 + id="path4840" 42.9837 + style="fill:url(#linearGradient7895);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9838 + <rect 42.9839 + width="33.469341" 42.9840 + height="12.974548" 42.9841 + rx="0" 42.9842 + ry="0" 42.9843 + x="981.45984" 42.9844 + y="271.44827" 42.9845 + id="rect4842" 42.9846 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9847 + <path 42.9848 + inkscape:connector-curvature="0" 42.9849 + d="m 1013.0186,268.40165 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.9850 + id="path4844" 42.9851 + style="fill:url(#linearGradient7891);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9852 + <path 42.9853 + inkscape:connector-curvature="0" 42.9854 + d="m 979.87869,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9855 + id="path4846" 42.9856 + style="fill:url(#linearGradient7888);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9857 + <rect 42.9858 + width="36.535122" 42.9859 + height="40.245304" 42.9860 + rx="4.7705498" 42.9861 + ry="4.7543411" 42.9862 + x="979.13702" 42.9863 + y="233.04718" 42.9864 + id="rect4848" 42.9865 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9866 + <rect 42.9867 + width="35.480965" 42.9868 + height="40.245304" 42.9869 + rx="4.7705498" 42.9870 + ry="4.7543411" 42.9871 + x="979.13702" 42.9872 + y="233.04718" 42.9873 + id="rect4850" 42.9874 + style="fill:url(#linearGradient7884);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9875 + <text 42.9876 + x="981.93042" 42.9877 + y="180.94186" 42.9878 + transform="scale(1.0017033,0.9982996)" 42.9879 + id="text4760" 42.9880 + xml:space="preserve" 42.9881 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.9882 + sodipodi:linespacing="100%"><tspan 42.9883 + x="981.93042" 42.9884 + y="180.94186" 42.9885 + id="tspan4790">Pause</tspan></text> 42.9886 + <rect 42.9887 + width="51.494247" 42.9888 + height="52.044121" 42.9889 + rx="4.7705503" 42.9890 + ry="4.0114756" 42.9891 + x="972.36664" 42.9892 + y="232.38963" 42.9893 + id="rect4858" 42.9894 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9895 + <rect 42.9896 + width="51.494247" 42.9897 + height="52.044125" 42.9898 + rx="4.7705498" 42.9899 + ry="4.011476" 42.9900 + x="860.73425" 42.9901 + y="288.10391" 42.9902 + id="rect4884" 42.9903 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9904 + <rect 42.9905 + width="11.279431" 42.9906 + height="34.563782" 42.9907 + x="900.92493" 42.9908 + y="291.96844" 42.9909 + id="rect4886" 42.9910 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9911 + <path 42.9912 + inkscape:connector-curvature="0" 42.9913 + d="m 903.08567,294.98355 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9914 + id="path4888" 42.9915 + style="fill:url(#linearGradient7876);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9916 + <rect 42.9917 + width="33.469341" 42.9918 + height="12.974548" 42.9919 + rx="0" 42.9920 + ry="0" 42.9921 + x="869.82739" 42.9922 + y="327.16257" 42.9923 + id="rect4890" 42.9924 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9925 + <path 42.9926 + inkscape:connector-curvature="0" 42.9927 + d="m 901.38615,324.11594 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.9928 + id="path4892" 42.9929 + style="fill:url(#linearGradient7872);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9930 + <path 42.9931 + inkscape:connector-curvature="0" 42.9932 + d="m 868.24622,324.01088 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.9933 + id="path4894" 42.9934 + style="fill:url(#linearGradient7869);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9935 + <rect 42.9936 + width="36.535122" 42.9937 + height="40.245304" 42.9938 + rx="4.7705498" 42.9939 + ry="4.7543411" 42.9940 + x="867.50458" 42.9941 + y="288.76144" 42.9942 + id="rect4896" 42.9943 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9944 + <rect 42.9945 + width="35.480965" 42.9946 + height="40.245304" 42.9947 + rx="4.7705498" 42.9948 + ry="4.7543411" 42.9949 + x="867.50458" 42.9950 + y="288.76144" 42.9951 + id="rect4898" 42.9952 + style="fill:url(#linearGradient7865);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9953 + <text 42.9954 + x="872.59711" 42.9955 + y="256.58633" 42.9956 + transform="scale(1.0017033,0.9982996)" 42.9957 + id="text4900" 42.9958 + xml:space="preserve" 42.9959 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.9960 + sodipodi:linespacing="100%"><tspan 42.9961 + x="872.59711" 42.9962 + y="256.58633" 42.9963 + id="tspan4902">Einfg</tspan></text> 42.9964 + <rect 42.9965 + width="51.494247" 42.9966 + height="52.044121" 42.9967 + rx="4.7705503" 42.9968 + ry="4.0114756" 42.9969 + x="860.73419" 42.9970 + y="288.10391" 42.9971 + id="rect4904" 42.9972 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.9973 + <rect 42.9974 + width="51.494247" 42.9975 + height="52.044125" 42.9976 + rx="4.7705498" 42.9977 + ry="4.011476" 42.9978 + x="916.55048" 42.9979 + y="288.10391" 42.9980 + id="rect4906" 42.9981 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9982 + <rect 42.9983 + width="11.279431" 42.9984 + height="34.563782" 42.9985 + x="956.74115" 42.9986 + y="291.96844" 42.9987 + id="rect4908" 42.9988 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9989 + <path 42.9990 + inkscape:connector-curvature="0" 42.9991 + d="m 958.90193,294.98355 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.9992 + id="path4910" 42.9993 + style="fill:url(#linearGradient7857);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.9994 + <rect 42.9995 + width="33.469341" 42.9996 + height="12.974548" 42.9997 + rx="0" 42.9998 + ry="0" 42.9999 + x="925.64368" 42.10000 + y="327.16257" 42.10001 + id="rect4912" 42.10002 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10003 + <path 42.10004 + inkscape:connector-curvature="0" 42.10005 + d="m 957.20241,324.11594 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.10006 + id="path4914" 42.10007 + style="fill:url(#linearGradient7853);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10008 + <path 42.10009 + inkscape:connector-curvature="0" 42.10010 + d="m 924.06248,324.01088 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10011 + id="path4916" 42.10012 + style="fill:url(#linearGradient7850);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10013 + <rect 42.10014 + width="36.535122" 42.10015 + height="40.245304" 42.10016 + rx="4.7705498" 42.10017 + ry="4.7543411" 42.10018 + x="923.3208" 42.10019 + y="288.76144" 42.10020 + id="rect4918" 42.10021 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10022 + <rect 42.10023 + width="35.480965" 42.10024 + height="40.245304" 42.10025 + rx="4.7705498" 42.10026 + ry="4.7543411" 42.10027 + x="923.3208" 42.10028 + y="288.76144" 42.10029 + id="rect4920" 42.10030 + style="fill:url(#linearGradient7846);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10031 + <text 42.10032 + x="926.49011" 42.10033 + y="258.57385" 42.10034 + transform="scale(1.0017033,0.9982996)" 42.10035 + id="text4922" 42.10036 + xml:space="preserve" 42.10037 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.10038 + sodipodi:linespacing="100%"><tspan 42.10039 + x="926.49011" 42.10040 + y="258.57385" 42.10041 + id="tspan4924">Pos 1</tspan></text> 42.10042 + <rect 42.10043 + width="51.494247" 42.10044 + height="52.044121" 42.10045 + rx="4.7705503" 42.10046 + ry="4.0114756" 42.10047 + x="916.55048" 42.10048 + y="288.10391" 42.10049 + id="rect4926" 42.10050 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10051 + <rect 42.10052 + width="51.494247" 42.10053 + height="52.044125" 42.10054 + rx="4.7705498" 42.10055 + ry="4.011476" 42.10056 + x="972.36664" 42.10057 + y="288.10391" 42.10058 + id="rect4928" 42.10059 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10060 + <rect 42.10061 + width="11.279431" 42.10062 + height="34.563782" 42.10063 + x="1012.5574" 42.10064 + y="291.96844" 42.10065 + id="rect4930" 42.10066 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10067 + <path 42.10068 + inkscape:connector-curvature="0" 42.10069 + d="m 1014.7181,294.98355 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.10070 + id="path4932" 42.10071 + style="fill:url(#linearGradient7838);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10072 + <rect 42.10073 + width="33.469341" 42.10074 + height="12.974548" 42.10075 + rx="0" 42.10076 + ry="0" 42.10077 + x="981.45984" 42.10078 + y="327.16257" 42.10079 + id="rect4934" 42.10080 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10081 + <path 42.10082 + inkscape:connector-curvature="0" 42.10083 + d="m 1013.0186,324.11594 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.10084 + id="path4936" 42.10085 + style="fill:url(#linearGradient7834);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10086 + <path 42.10087 + inkscape:connector-curvature="0" 42.10088 + d="m 979.87869,324.01088 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10089 + id="path4938" 42.10090 + style="fill:url(#linearGradient7831);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10091 + <rect 42.10092 + width="36.535122" 42.10093 + height="40.245304" 42.10094 + rx="4.7705498" 42.10095 + ry="4.7543411" 42.10096 + x="979.13702" 42.10097 + y="288.76144" 42.10098 + id="rect4940" 42.10099 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10100 + <rect 42.10101 + width="35.480965" 42.10102 + height="40.245304" 42.10103 + rx="4.7705498" 42.10104 + ry="4.7543411" 42.10105 + x="979.13702" 42.10106 + y="288.76144" 42.10107 + id="rect4942" 42.10108 + style="fill:url(#linearGradient7827);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10109 + <text 42.10110 + sodipodi:linespacing="100%" 42.10111 + x="981.96948" 42.10112 + y="249.05759" 42.10113 + transform="scale(1.0017033,0.9982996)" 42.10114 + id="text4944" 42.10115 + xml:space="preserve" 42.10116 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10117 + x="981.96948" 42.10118 + y="249.05759" 42.10119 + id="tspan4948">Bild</tspan></text> 42.10120 + <rect 42.10121 + width="51.494247" 42.10122 + height="52.044121" 42.10123 + rx="4.7705503" 42.10124 + ry="4.0114756" 42.10125 + x="972.36664" 42.10126 + y="288.10391" 42.10127 + id="rect4950" 42.10128 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10129 + <text 42.10130 + sodipodi:linespacing="100%" 42.10131 + x="870.7688" 42.10132 + y="315.21884" 42.10133 + transform="scale(1.0017033,0.9982996)" 42.10134 + id="text4992" 42.10135 + xml:space="preserve" 42.10136 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10137 + x="870.7688" 42.10138 + y="315.21884" 42.10139 + id="tspan4994">Entf</tspan></text> 42.10140 + <text 42.10141 + sodipodi:linespacing="100%" 42.10142 + x="926.49011" 42.10143 + y="315.17001" 42.10144 + transform="scale(1.0017033,0.9982996)" 42.10145 + id="text5014" 42.10146 + xml:space="preserve" 42.10147 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10148 + x="926.49011" 42.10149 + y="315.17001" 42.10150 + id="tspan5016">Ende</tspan></text> 42.10151 + <text 42.10152 + sodipodi:linespacing="100%" 42.10153 + x="981.96948" 42.10154 + y="305.15292" 42.10155 + transform="scale(1.0017033,0.9982996)" 42.10156 + id="text5036" 42.10157 + xml:space="preserve" 42.10158 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10159 + x="981.96948" 42.10160 + y="305.15292" 42.10161 + id="tspan5560">Bild</tspan></text> 42.10162 + <rect 42.10163 + width="51.494247" 42.10164 + height="52.044125" 42.10165 + rx="4.7705498" 42.10166 + ry="4.011476" 42.10167 + x="860.73425" 42.10168 + y="455.96106" 42.10169 + id="rect5374" 42.10170 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10171 + <rect 42.10172 + width="11.279431" 42.10173 + height="34.563782" 42.10174 + x="900.92493" 42.10175 + y="459.82559" 42.10176 + id="rect5376" 42.10177 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10178 + <path 42.10179 + inkscape:connector-curvature="0" 42.10180 + d="m 903.08567,462.84069 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.10181 + id="path5378" 42.10182 + style="fill:url(#linearGradient7813);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10183 + <rect 42.10184 + width="33.469341" 42.10185 + height="12.974548" 42.10186 + rx="0" 42.10187 + ry="0" 42.10188 + x="869.82739" 42.10189 + y="495.01971" 42.10190 + id="rect5380" 42.10191 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10192 + <path 42.10193 + inkscape:connector-curvature="0" 42.10194 + d="m 901.38615,491.97308 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.10195 + id="path5382" 42.10196 + style="fill:url(#linearGradient7809);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10197 + <path 42.10198 + inkscape:connector-curvature="0" 42.10199 + d="m 868.24622,491.86802 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10200 + id="path5384" 42.10201 + style="fill:url(#linearGradient7806);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10202 + <rect 42.10203 + width="36.535122" 42.10204 + height="40.245304" 42.10205 + rx="4.7705498" 42.10206 + ry="4.7543411" 42.10207 + x="867.50458" 42.10208 + y="456.61859" 42.10209 + id="rect5386" 42.10210 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10211 + <rect 42.10212 + width="35.480965" 42.10213 + height="40.245304" 42.10214 + rx="4.7705498" 42.10215 + ry="4.7543411" 42.10216 + x="867.50458" 42.10217 + y="456.61859" 42.10218 + id="rect5388" 42.10219 + style="fill:url(#linearGradient7802);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10220 + <rect 42.10221 + width="51.494247" 42.10222 + height="52.044121" 42.10223 + rx="4.7705503" 42.10224 + ry="4.0114756" 42.10225 + x="860.73419" 42.10226 + y="455.96106" 42.10227 + id="rect5394" 42.10228 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10229 + <rect 42.10230 + width="51.494247" 42.10231 + height="52.044125" 42.10232 + rx="4.7705498" 42.10233 + ry="4.011476" 42.10234 + x="916.55048" 42.10235 + y="455.96106" 42.10236 + id="rect5396" 42.10237 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10238 + <rect 42.10239 + width="11.279431" 42.10240 + height="34.563782" 42.10241 + x="956.74115" 42.10242 + y="459.82559" 42.10243 + id="rect5398" 42.10244 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10245 + <path 42.10246 + inkscape:connector-curvature="0" 42.10247 + d="m 958.90193,462.84069 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.10248 + id="path5400" 42.10249 + style="fill:url(#linearGradient7796);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10250 + <rect 42.10251 + width="33.469341" 42.10252 + height="12.974548" 42.10253 + rx="0" 42.10254 + ry="0" 42.10255 + x="925.64368" 42.10256 + y="495.01971" 42.10257 + id="rect5402" 42.10258 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10259 + <path 42.10260 + inkscape:connector-curvature="0" 42.10261 + d="m 957.20241,491.97308 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.10262 + id="path5404" 42.10263 + style="fill:url(#linearGradient7792);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10264 + <path 42.10265 + inkscape:connector-curvature="0" 42.10266 + d="m 924.06248,491.86802 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10267 + id="path5406" 42.10268 + style="fill:url(#linearGradient7789);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10269 + <rect 42.10270 + width="36.535122" 42.10271 + height="40.245304" 42.10272 + rx="4.7705498" 42.10273 + ry="4.7543411" 42.10274 + x="923.3208" 42.10275 + y="456.61859" 42.10276 + id="rect5408" 42.10277 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10278 + <rect 42.10279 + width="35.480965" 42.10280 + height="40.245304" 42.10281 + rx="4.7705498" 42.10282 + ry="4.7543411" 42.10283 + x="923.3208" 42.10284 + y="456.61859" 42.10285 + id="rect5410" 42.10286 + style="fill:url(#linearGradient7785);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10287 + <rect 42.10288 + width="51.494247" 42.10289 + height="52.044121" 42.10290 + rx="4.7705503" 42.10291 + ry="4.0114756" 42.10292 + x="916.55048" 42.10293 + y="455.96106" 42.10294 + id="rect5416" 42.10295 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10296 + <rect 42.10297 + width="51.494247" 42.10298 + height="52.044125" 42.10299 + rx="4.7705498" 42.10300 + ry="4.011476" 42.10301 + x="972.36664" 42.10302 + y="455.96106" 42.10303 + id="rect5418" 42.10304 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10305 + <rect 42.10306 + width="11.279431" 42.10307 + height="34.563782" 42.10308 + x="1012.5574" 42.10309 + y="459.82559" 42.10310 + id="rect5420" 42.10311 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10312 + <path 42.10313 + inkscape:connector-curvature="0" 42.10314 + d="m 1014.7181,462.84069 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.10315 + id="path5422" 42.10316 + style="fill:url(#linearGradient7779);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10317 + <rect 42.10318 + width="33.469341" 42.10319 + height="12.974548" 42.10320 + rx="0" 42.10321 + ry="0" 42.10322 + x="981.45984" 42.10323 + y="495.01971" 42.10324 + id="rect5424" 42.10325 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10326 + <path 42.10327 + inkscape:connector-curvature="0" 42.10328 + d="m 1013.0186,491.97308 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.10329 + id="path5426" 42.10330 + style="fill:url(#linearGradient7775);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10331 + <path 42.10332 + inkscape:connector-curvature="0" 42.10333 + d="m 979.87869,491.86802 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10334 + id="path5428" 42.10335 + style="fill:url(#linearGradient7772);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10336 + <rect 42.10337 + width="36.535122" 42.10338 + height="40.245304" 42.10339 + rx="4.7705498" 42.10340 + ry="4.7543411" 42.10341 + x="979.13702" 42.10342 + y="456.61859" 42.10343 + id="rect5430" 42.10344 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10345 + <rect 42.10346 + width="35.480965" 42.10347 + height="40.245304" 42.10348 + rx="4.7705498" 42.10349 + ry="4.7543411" 42.10350 + x="979.13702" 42.10351 + y="456.61859" 42.10352 + id="rect5432" 42.10353 + style="fill:url(#linearGradient7768);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10354 + <rect 42.10355 + width="51.494247" 42.10356 + height="52.044121" 42.10357 + rx="4.7705503" 42.10358 + ry="4.0114756" 42.10359 + x="972.36664" 42.10360 + y="455.96106" 42.10361 + id="rect5440" 42.10362 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10363 + <rect 42.10364 + width="51.494247" 42.10365 + height="52.044125" 42.10366 + rx="4.7705498" 42.10367 + ry="4.011476" 42.10368 + x="916.55048" 42.10369 + y="398.81821" 42.10370 + id="rect5488" 42.10371 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10372 + <rect 42.10373 + width="11.279431" 42.10374 + height="34.563782" 42.10375 + x="956.74115" 42.10376 + y="402.68274" 42.10377 + id="rect5490" 42.10378 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10379 + <path 42.10380 + inkscape:connector-curvature="0" 42.10381 + d="m 958.90193,405.69783 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.10382 + id="path5492" 42.10383 + style="fill:url(#linearGradient7762);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10384 + <rect 42.10385 + width="33.469341" 42.10386 + height="12.974548" 42.10387 + rx="0" 42.10388 + ry="0" 42.10389 + x="925.64368" 42.10390 + y="437.87686" 42.10391 + id="rect5494" 42.10392 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10393 + <path 42.10394 + inkscape:connector-curvature="0" 42.10395 + d="m 957.20241,434.83022 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.10396 + id="path5496" 42.10397 + style="fill:url(#linearGradient7758);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10398 + <path 42.10399 + inkscape:connector-curvature="0" 42.10400 + d="m 924.06248,434.72516 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10401 + id="path5498" 42.10402 + style="fill:url(#linearGradient7755);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10403 + <rect 42.10404 + width="36.535122" 42.10405 + height="40.245304" 42.10406 + rx="4.7705498" 42.10407 + ry="4.7543411" 42.10408 + x="923.3208" 42.10409 + y="399.47574" 42.10410 + id="rect5500" 42.10411 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10412 + <rect 42.10413 + width="35.480965" 42.10414 + height="40.245304" 42.10415 + rx="4.7705498" 42.10416 + ry="4.7543411" 42.10417 + x="923.3208" 42.10418 + y="399.47574" 42.10419 + id="rect5502" 42.10420 + style="fill:url(#linearGradient7751);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10421 + <rect 42.10422 + width="51.494247" 42.10423 + height="52.044121" 42.10424 + rx="4.7705503" 42.10425 + ry="4.0114756" 42.10426 + x="916.55048" 42.10427 + y="398.81821" 42.10428 + id="rect5508" 42.10429 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10430 + <rect 42.10431 + width="51.494247" 42.10432 + height="52.044125" 42.10433 + rx="4.7705498" 42.10434 + ry="4.011476" 42.10435 + x="14.226421" 42.10436 + y="232.38963" 42.10437 + id="rect5572" 42.10438 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10439 + <rect 42.10440 + width="11.279431" 42.10441 + height="34.563782" 42.10442 + x="54.417065" 42.10443 + y="236.25418" 42.10444 + id="rect5574" 42.10445 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10446 + <path 42.10447 + inkscape:connector-curvature="0" 42.10448 + d="m 56.577841,239.26926 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.10449 + id="path5576" 42.10450 + style="fill:url(#linearGradient7745);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10451 + <rect 42.10452 + width="33.469341" 42.10453 + height="12.974548" 42.10454 + rx="0" 42.10455 + ry="0" 42.10456 + x="23.319561" 42.10457 + y="271.44827" 42.10458 + id="rect5578" 42.10459 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10460 + <path 42.10461 + inkscape:connector-curvature="0" 42.10462 + d="m 54.878321,268.40165 10.80506,1.15562 0.03953,10.50571 c -0.0056,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.10463 + id="path5580" 42.10464 + style="fill:url(#linearGradient7741);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10465 + <path 42.10466 + inkscape:connector-curvature="0" 42.10467 + d="m 21.738391,268.29659 -7.48448,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10468 + id="path5582" 42.10469 + style="fill:url(#linearGradient7738);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10470 + <rect 42.10471 + width="36.535122" 42.10472 + height="40.245304" 42.10473 + rx="4.7705498" 42.10474 + ry="4.7543411" 42.10475 + x="20.996746" 42.10476 + y="233.04718" 42.10477 + id="rect5584" 42.10478 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10479 + <rect 42.10480 + width="35.480965" 42.10481 + height="40.245304" 42.10482 + rx="4.7705498" 42.10483 + ry="4.7543411" 42.10484 + x="20.996746" 42.10485 + y="233.04718" 42.10486 + id="rect5586" 42.10487 + style="fill:url(#linearGradient7734);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10488 + <text 42.10489 + sodipodi:linespacing="100%" 42.10490 + x="18.263954" 42.10491 + y="374.24701" 42.10492 + transform="scale(1.3920529,0.7183635)" 42.10493 + id="text5588" 42.10494 + xml:space="preserve" 42.10495 + style="font-size:18.06591606px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10496 + x="18.263954" 42.10497 + y="374.24701" 42.10498 + id="tspan5594">^</tspan></text> 42.10499 + <rect 42.10500 + width="51.494247" 42.10501 + height="52.044121" 42.10502 + rx="4.7705503" 42.10503 + ry="4.0114756" 42.10504 + x="14.22636" 42.10505 + y="232.38963" 42.10506 + id="rect5596" 42.10507 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10508 + <rect 42.10509 + width="51.494247" 42.10510 + height="52.044125" 42.10511 + rx="4.7705498" 42.10512 + ry="4.011476" 42.10513 + x="69.911896" 42.10514 + y="232.38963" 42.10515 + id="rect5598" 42.10516 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10517 + <rect 42.10518 + width="11.279431" 42.10519 + height="34.563782" 42.10520 + x="110.10256" 42.10521 + y="236.25418" 42.10522 + id="rect5600" 42.10523 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10524 + <path 42.10525 + inkscape:connector-curvature="0" 42.10526 + d="m 112.26339,239.26926 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.10527 + id="path5602" 42.10528 + style="fill:url(#linearGradient7726);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10529 + <rect 42.10530 + width="33.469341" 42.10531 + height="12.974548" 42.10532 + rx="0" 42.10533 + ry="0" 42.10534 + x="79.005096" 42.10535 + y="271.44827" 42.10536 + id="rect5604" 42.10537 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10538 + <path 42.10539 + inkscape:connector-curvature="0" 42.10540 + d="m 110.56387,268.40165 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.10541 + id="path5606" 42.10542 + style="fill:url(#linearGradient7722);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10543 + <path 42.10544 + inkscape:connector-curvature="0" 42.10545 + d="m 77.423937,268.29659 -7.48448,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10546 + id="path5608" 42.10547 + style="fill:url(#linearGradient7719);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10548 + <rect 42.10549 + width="36.535122" 42.10550 + height="40.245304" 42.10551 + rx="4.7705498" 42.10552 + ry="4.7543411" 42.10553 + x="76.68222" 42.10554 + y="233.04718" 42.10555 + id="rect5610" 42.10556 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10557 + <rect 42.10558 + width="35.480965" 42.10559 + height="40.245304" 42.10560 + rx="4.7705498" 42.10561 + ry="4.7543411" 42.10562 + x="76.68222" 42.10563 + y="233.04718" 42.10564 + id="rect5612" 42.10565 + style="fill:url(#linearGradient7715);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10566 + <text 42.10567 + sodipodi:linespacing="100%" 42.10568 + x="79.294617" 42.10569 + y="269.30328" 42.10570 + transform="scale(1.0017033,0.9982996)" 42.10571 + id="text5614" 42.10572 + xml:space="preserve" 42.10573 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10574 + x="79.294617" 42.10575 + y="269.30328" 42.10576 + id="tspan5618">1</tspan></text> 42.10577 + <rect 42.10578 + width="51.494247" 42.10579 + height="52.044121" 42.10580 + rx="4.7705503" 42.10581 + ry="4.0114756" 42.10582 + x="69.911896" 42.10583 + y="232.38963" 42.10584 + id="rect5620" 42.10585 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10586 + <rect 42.10587 + width="51.494247" 42.10588 + height="52.044125" 42.10589 + rx="4.7705498" 42.10590 + ry="4.011476" 42.10591 + x="125.59743" 42.10592 + y="232.38963" 42.10593 + id="rect5622" 42.10594 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10595 + <rect 42.10596 + width="11.279431" 42.10597 + height="34.563782" 42.10598 + x="165.78818" 42.10599 + y="236.25418" 42.10600 + id="rect5624" 42.10601 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10602 + <path 42.10603 + inkscape:connector-curvature="0" 42.10604 + d="m 167.94893,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.10605 + id="path5626" 42.10606 + style="fill:url(#linearGradient7707);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10607 + <rect 42.10608 + width="33.469341" 42.10609 + height="12.974548" 42.10610 + rx="0" 42.10611 + ry="0" 42.10612 + x="134.69064" 42.10613 + y="271.44827" 42.10614 + id="rect5628" 42.10615 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10616 + <path 42.10617 + inkscape:connector-curvature="0" 42.10618 + d="m 166.24943,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.10619 + id="path5630" 42.10620 + style="fill:url(#linearGradient7703);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10621 + <path 42.10622 + inkscape:connector-curvature="0" 42.10623 + d="m 133.10952,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10624 + id="path5632" 42.10625 + style="fill:url(#linearGradient7700);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10626 + <rect 42.10627 + width="36.535122" 42.10628 + height="40.245304" 42.10629 + rx="4.7705498" 42.10630 + ry="4.7543411" 42.10631 + x="132.36783" 42.10632 + y="233.04718" 42.10633 + id="rect5634" 42.10634 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10635 + <rect 42.10636 + width="35.480965" 42.10637 + height="40.245304" 42.10638 + rx="4.7705498" 42.10639 + ry="4.7543411" 42.10640 + x="132.36783" 42.10641 + y="233.04718" 42.10642 + id="rect5636" 42.10643 + style="fill:url(#linearGradient7696);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10644 + <text 42.10645 + sodipodi:linespacing="100%" 42.10646 + x="134.88553" 42.10647 + y="269.30325" 42.10648 + transform="scale(1.0017033,0.9982996)" 42.10649 + id="text5638" 42.10650 + xml:space="preserve" 42.10651 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10652 + x="134.88553" 42.10653 + y="269.30325" 42.10654 + id="tspan5642">2</tspan></text> 42.10655 + <rect 42.10656 + width="51.494247" 42.10657 + height="52.044121" 42.10658 + rx="4.7705503" 42.10659 + ry="4.0114756" 42.10660 + x="125.59743" 42.10661 + y="232.38963" 42.10662 + id="rect5644" 42.10663 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10664 + <rect 42.10665 + width="51.494247" 42.10666 + height="52.044125" 42.10667 + rx="4.7705498" 42.10668 + ry="4.011476" 42.10669 + x="181.28297" 42.10670 + y="232.38963" 42.10671 + id="rect5813" 42.10672 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10673 + <rect 42.10674 + width="11.279431" 42.10675 + height="34.563782" 42.10676 + x="221.47371" 42.10677 + y="236.25418" 42.10678 + id="rect5815" 42.10679 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10680 + <path 42.10681 + inkscape:connector-curvature="0" 42.10682 + d="m 223.63447,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.10683 + id="path5817" 42.10684 + style="fill:url(#linearGradient7688);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10685 + <rect 42.10686 + width="33.469341" 42.10687 + height="12.974548" 42.10688 + rx="0" 42.10689 + ry="0" 42.10690 + x="190.37617" 42.10691 + y="271.44827" 42.10692 + id="rect5819" 42.10693 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10694 + <path 42.10695 + inkscape:connector-curvature="0" 42.10696 + d="m 221.93497,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.10697 + id="path5821" 42.10698 + style="fill:url(#linearGradient7684);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10699 + <path 42.10700 + inkscape:connector-curvature="0" 42.10701 + d="m 188.79506,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10702 + id="path5823" 42.10703 + style="fill:url(#linearGradient7681);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10704 + <rect 42.10705 + width="36.535122" 42.10706 + height="40.245304" 42.10707 + rx="4.7705498" 42.10708 + ry="4.7543411" 42.10709 + x="188.05336" 42.10710 + y="233.04718" 42.10711 + id="rect5825" 42.10712 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10713 + <rect 42.10714 + width="35.480965" 42.10715 + height="40.245304" 42.10716 + rx="4.7705498" 42.10717 + ry="4.7543411" 42.10718 + x="188.05336" 42.10719 + y="233.04718" 42.10720 + id="rect5827" 42.10721 + style="fill:url(#linearGradient7677);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10722 + <text 42.10723 + sodipodi:linespacing="100%" 42.10724 + x="192.47298" 42.10725 + y="269.30334" 42.10726 + transform="scale(1.0017033,0.9982996)" 42.10727 + id="text5829" 42.10728 + xml:space="preserve" 42.10729 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10730 + x="192.47298" 42.10731 + y="269.30334" 42.10732 + id="tspan5833">3</tspan></text> 42.10733 + <rect 42.10734 + width="51.494247" 42.10735 + height="52.044121" 42.10736 + rx="4.7705503" 42.10737 + ry="4.0114756" 42.10738 + x="181.28297" 42.10739 + y="232.38963" 42.10740 + id="rect5835" 42.10741 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10742 + <rect 42.10743 + width="51.494247" 42.10744 + height="52.044125" 42.10745 + rx="4.7705498" 42.10746 + ry="4.011476" 42.10747 + x="236.96851" 42.10748 + y="232.38963" 42.10749 + id="rect5847" 42.10750 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10751 + <rect 42.10752 + width="11.279431" 42.10753 + height="34.563782" 42.10754 + x="277.15924" 42.10755 + y="236.25418" 42.10756 + id="rect5849" 42.10757 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10758 + <path 42.10759 + inkscape:connector-curvature="0" 42.10760 + d="m 279.32001,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.10761 + id="path5851" 42.10762 + style="fill:url(#linearGradient7669);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10763 + <rect 42.10764 + width="33.469341" 42.10765 + height="12.974548" 42.10766 + rx="0" 42.10767 + ry="0" 42.10768 + x="246.06172" 42.10769 + y="271.44827" 42.10770 + id="rect5853" 42.10771 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10772 + <path 42.10773 + inkscape:connector-curvature="0" 42.10774 + d="m 277.62051,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.10775 + id="path5855" 42.10776 + style="fill:url(#linearGradient7665);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10777 + <path 42.10778 + inkscape:connector-curvature="0" 42.10779 + d="m 244.4806,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10780 + id="path5857" 42.10781 + style="fill:url(#linearGradient7662);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10782 + <rect 42.10783 + width="36.535122" 42.10784 + height="40.245304" 42.10785 + rx="4.7705498" 42.10786 + ry="4.7543411" 42.10787 + x="243.73891" 42.10788 + y="233.04718" 42.10789 + id="rect5859" 42.10790 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10791 + <rect 42.10792 + width="35.480965" 42.10793 + height="40.245304" 42.10794 + rx="4.7705498" 42.10795 + ry="4.7543411" 42.10796 + x="243.73891" 42.10797 + y="233.04718" 42.10798 + id="rect5861" 42.10799 + style="fill:url(#linearGradient7658);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10800 + <text 42.10801 + sodipodi:linespacing="100%" 42.10802 + x="248.06383" 42.10803 + y="269.30334" 42.10804 + transform="scale(1.0017033,0.9982996)" 42.10805 + id="text5863" 42.10806 + xml:space="preserve" 42.10807 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10808 + x="248.06383" 42.10809 + y="269.30334" 42.10810 + id="tspan5867">4</tspan></text> 42.10811 + <rect 42.10812 + width="51.494247" 42.10813 + height="52.044121" 42.10814 + rx="4.7705503" 42.10815 + ry="4.0114756" 42.10816 + x="236.96851" 42.10817 + y="232.38963" 42.10818 + id="rect5869" 42.10819 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10820 + <rect 42.10821 + width="51.494247" 42.10822 + height="52.044125" 42.10823 + rx="4.7705498" 42.10824 + ry="4.011476" 42.10825 + x="292.65405" 42.10826 + y="232.38963" 42.10827 + id="rect5881" 42.10828 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10829 + <rect 42.10830 + width="11.279431" 42.10831 + height="34.563782" 42.10832 + x="332.84479" 42.10833 + y="236.25418" 42.10834 + id="rect5883" 42.10835 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10836 + <path 42.10837 + inkscape:connector-curvature="0" 42.10838 + d="m 335.00554,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.10839 + id="path5885" 42.10840 + style="fill:url(#linearGradient7650);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10841 + <rect 42.10842 + width="33.469341" 42.10843 + height="12.974548" 42.10844 + rx="0" 42.10845 + ry="0" 42.10846 + x="301.74725" 42.10847 + y="271.44827" 42.10848 + id="rect5887" 42.10849 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10850 + <path 42.10851 + inkscape:connector-curvature="0" 42.10852 + d="m 333.30604,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.10853 + id="path5889" 42.10854 + style="fill:url(#linearGradient7646);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10855 + <path 42.10856 + inkscape:connector-curvature="0" 42.10857 + d="m 300.16613,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10858 + id="path5891" 42.10859 + style="fill:url(#linearGradient7643);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10860 + <rect 42.10861 + width="36.535122" 42.10862 + height="40.245304" 42.10863 + rx="4.7705498" 42.10864 + ry="4.7543411" 42.10865 + x="299.42444" 42.10866 + y="233.04718" 42.10867 + id="rect5893" 42.10868 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10869 + <rect 42.10870 + width="35.480965" 42.10871 + height="40.245304" 42.10872 + rx="4.7705498" 42.10873 + ry="4.7543411" 42.10874 + x="299.42444" 42.10875 + y="233.04718" 42.10876 + id="rect5895" 42.10877 + style="fill:url(#linearGradient7639);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10878 + <text 42.10879 + sodipodi:linespacing="100%" 42.10880 + x="303.65466" 42.10881 + y="269.30334" 42.10882 + transform="scale(1.0017033,0.9982996)" 42.10883 + id="text5897" 42.10884 + xml:space="preserve" 42.10885 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10886 + x="303.65466" 42.10887 + y="269.30334" 42.10888 + id="tspan5901">5</tspan></text> 42.10889 + <rect 42.10890 + width="51.494247" 42.10891 + height="52.044121" 42.10892 + rx="4.7705503" 42.10893 + ry="4.0114756" 42.10894 + x="292.65405" 42.10895 + y="232.38963" 42.10896 + id="rect5903" 42.10897 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10898 + <rect 42.10899 + width="51.494247" 42.10900 + height="52.044125" 42.10901 + rx="4.7705498" 42.10902 + ry="4.011476" 42.10903 + x="348.33957" 42.10904 + y="232.38963" 42.10905 + id="rect5915" 42.10906 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10907 + <rect 42.10908 + width="11.279431" 42.10909 + height="34.563782" 42.10910 + x="388.53033" 42.10911 + y="236.25418" 42.10912 + id="rect5917" 42.10913 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10914 + <path 42.10915 + inkscape:connector-curvature="0" 42.10916 + d="m 390.69108,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.10917 + id="path5919" 42.10918 + style="fill:url(#linearGradient7631);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10919 + <rect 42.10920 + width="33.469341" 42.10921 + height="12.974548" 42.10922 + rx="0" 42.10923 + ry="0" 42.10924 + x="357.4328" 42.10925 + y="271.44827" 42.10926 + id="rect5921" 42.10927 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10928 + <path 42.10929 + inkscape:connector-curvature="0" 42.10930 + d="m 388.99158,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.10931 + id="path5923" 42.10932 + style="fill:url(#linearGradient7627);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10933 + <path 42.10934 + inkscape:connector-curvature="0" 42.10935 + d="m 355.85167,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.10936 + id="path5925" 42.10937 + style="fill:url(#linearGradient7624);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10938 + <rect 42.10939 + width="36.535122" 42.10940 + height="40.245304" 42.10941 + rx="4.7705498" 42.10942 + ry="4.7543411" 42.10943 + x="355.10999" 42.10944 + y="233.04718" 42.10945 + id="rect5927" 42.10946 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10947 + <rect 42.10948 + width="35.480965" 42.10949 + height="40.245304" 42.10950 + rx="4.7705498" 42.10951 + ry="4.7543411" 42.10952 + x="355.10999" 42.10953 + y="233.04718" 42.10954 + id="rect5929" 42.10955 + style="fill:url(#linearGradient7620);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10956 + <text 42.10957 + sodipodi:linespacing="100%" 42.10958 + x="359.24551" 42.10959 + y="269.30334" 42.10960 + transform="scale(1.0017033,0.9982996)" 42.10961 + id="text5931" 42.10962 + xml:space="preserve" 42.10963 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.10964 + x="359.24551" 42.10965 + y="269.30334" 42.10966 + id="tspan5935">6</tspan></text> 42.10967 + <rect 42.10968 + width="51.494247" 42.10969 + height="52.044121" 42.10970 + rx="4.7705503" 42.10971 + ry="4.0114756" 42.10972 + x="348.33957" 42.10973 + y="232.38963" 42.10974 + id="rect5937" 42.10975 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.10976 + <rect 42.10977 + width="51.494247" 42.10978 + height="52.044125" 42.10979 + rx="4.7705498" 42.10980 + ry="4.011476" 42.10981 + x="404.02512" 42.10982 + y="232.38963" 42.10983 + id="rect5949" 42.10984 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10985 + <rect 42.10986 + width="11.279431" 42.10987 + height="34.563782" 42.10988 + x="444.21585" 42.10989 + y="236.25418" 42.10990 + id="rect5951" 42.10991 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10992 + <path 42.10993 + inkscape:connector-curvature="0" 42.10994 + d="m 446.37661,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.10995 + id="path5953" 42.10996 + style="fill:url(#linearGradient7612);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.10997 + <rect 42.10998 + width="33.469341" 42.10999 + height="12.974548" 42.11000 + rx="0" 42.11001 + ry="0" 42.11002 + x="413.11832" 42.11003 + y="271.44827" 42.11004 + id="rect5955" 42.11005 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11006 + <path 42.11007 + inkscape:connector-curvature="0" 42.11008 + d="m 444.67711,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11009 + id="path5957" 42.11010 + style="fill:url(#linearGradient7608);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11011 + <path 42.11012 + inkscape:connector-curvature="0" 42.11013 + d="m 411.5372,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11014 + id="path5959" 42.11015 + style="fill:url(#linearGradient7605);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11016 + <rect 42.11017 + width="36.535122" 42.11018 + height="40.245304" 42.11019 + rx="4.7705498" 42.11020 + ry="4.7543411" 42.11021 + x="410.7955" 42.11022 + y="233.04718" 42.11023 + id="rect5961" 42.11024 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11025 + <rect 42.11026 + width="35.480965" 42.11027 + height="40.245304" 42.11028 + rx="4.7705498" 42.11029 + ry="4.7543411" 42.11030 + x="410.7955" 42.11031 + y="233.04718" 42.11032 + id="rect5963" 42.11033 + style="fill:url(#linearGradient7600);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11034 + <text 42.11035 + sodipodi:linespacing="100%" 42.11036 + x="414.83636" 42.11037 + y="269.30334" 42.11038 + transform="scale(1.0017033,0.9982996)" 42.11039 + id="text5965" 42.11040 + xml:space="preserve" 42.11041 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11042 + x="414.83636" 42.11043 + y="269.30334" 42.11044 + id="tspan5969">7</tspan></text> 42.11045 + <rect 42.11046 + width="51.494247" 42.11047 + height="52.044121" 42.11048 + rx="4.7705503" 42.11049 + ry="4.0114756" 42.11050 + x="404.02512" 42.11051 + y="232.38963" 42.11052 + id="rect5971" 42.11053 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11054 + <rect 42.11055 + width="51.494247" 42.11056 + height="52.044125" 42.11057 + rx="4.7705498" 42.11058 + ry="4.011476" 42.11059 + x="459.71063" 42.11060 + y="232.38963" 42.11061 + id="rect5983" 42.11062 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11063 + <rect 42.11064 + width="11.279431" 42.11065 + height="34.563782" 42.11066 + x="499.90137" 42.11067 + y="236.25418" 42.11068 + id="rect5985" 42.11069 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11070 + <path 42.11071 + inkscape:connector-curvature="0" 42.11072 + d="m 502.06213,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11073 + id="path5987" 42.11074 + style="fill:url(#linearGradient7592);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11075 + <rect 42.11076 + width="33.469341" 42.11077 + height="12.974548" 42.11078 + rx="0" 42.11079 + ry="0" 42.11080 + x="468.80383" 42.11081 + y="271.44827" 42.11082 + id="rect5989" 42.11083 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11084 + <path 42.11085 + inkscape:connector-curvature="0" 42.11086 + d="m 500.36263,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11087 + id="path5991" 42.11088 + style="fill:url(#linearGradient7588);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11089 + <path 42.11090 + inkscape:connector-curvature="0" 42.11091 + d="m 467.22272,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11092 + id="path5993" 42.11093 + style="fill:url(#linearGradient7585);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11094 + <rect 42.11095 + width="36.535122" 42.11096 + height="40.245304" 42.11097 + rx="4.7705498" 42.11098 + ry="4.7543411" 42.11099 + x="466.48102" 42.11100 + y="233.04718" 42.11101 + id="rect5995" 42.11102 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11103 + <rect 42.11104 + width="35.480965" 42.11105 + height="40.245304" 42.11106 + rx="4.7705498" 42.11107 + ry="4.7543411" 42.11108 + x="466.48102" 42.11109 + y="233.04718" 42.11110 + id="rect5997" 42.11111 + style="fill:url(#linearGradient7581);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11112 + <text 42.11113 + sodipodi:linespacing="100%" 42.11114 + x="470.42719" 42.11115 + y="269.30334" 42.11116 + transform="scale(1.0017033,0.9982996)" 42.11117 + id="text5999" 42.11118 + xml:space="preserve" 42.11119 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11120 + x="470.42719" 42.11121 + y="269.30334" 42.11122 + id="tspan6003">8</tspan></text> 42.11123 + <rect 42.11124 + width="51.494247" 42.11125 + height="52.044121" 42.11126 + rx="4.7705503" 42.11127 + ry="4.0114756" 42.11128 + x="459.71063" 42.11129 + y="232.38963" 42.11130 + id="rect6005" 42.11131 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11132 + <rect 42.11133 + width="51.494247" 42.11134 + height="52.044125" 42.11135 + rx="4.7705498" 42.11136 + ry="4.011476" 42.11137 + x="515.39618" 42.11138 + y="232.38963" 42.11139 + id="rect6017" 42.11140 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11141 + <rect 42.11142 + width="11.279431" 42.11143 + height="34.563782" 42.11144 + x="555.58691" 42.11145 + y="236.25418" 42.11146 + id="rect6019" 42.11147 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11148 + <path 42.11149 + inkscape:connector-curvature="0" 42.11150 + d="m 557.74767,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11151 + id="path6021" 42.11152 + style="fill:url(#linearGradient7573);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11153 + <rect 42.11154 + width="33.469341" 42.11155 + height="12.974548" 42.11156 + rx="0" 42.11157 + ry="0" 42.11158 + x="524.48938" 42.11159 + y="271.44827" 42.11160 + id="rect6023" 42.11161 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11162 + <path 42.11163 + inkscape:connector-curvature="0" 42.11164 + d="m 556.04817,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11165 + id="path6025" 42.11166 + style="fill:url(#linearGradient7569);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11167 + <path 42.11168 + inkscape:connector-curvature="0" 42.11169 + d="m 522.90826,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11170 + id="path6027" 42.11171 + style="fill:url(#linearGradient7566);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11172 + <rect 42.11173 + width="36.535122" 42.11174 + height="40.245304" 42.11175 + rx="4.7705498" 42.11176 + ry="4.7543411" 42.11177 + x="522.16656" 42.11178 + y="233.04718" 42.11179 + id="rect6029" 42.11180 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11181 + <rect 42.11182 + width="35.480965" 42.11183 + height="40.245304" 42.11184 + rx="4.7705498" 42.11185 + ry="4.7543411" 42.11186 + x="522.16656" 42.11187 + y="233.04718" 42.11188 + id="rect6031" 42.11189 + style="fill:url(#linearGradient7562);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11190 + <text 42.11191 + sodipodi:linespacing="100%" 42.11192 + x="526.01807" 42.11193 + y="269.30334" 42.11194 + transform="scale(1.0017033,0.9982996)" 42.11195 + id="text6033" 42.11196 + xml:space="preserve" 42.11197 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11198 + x="526.01807" 42.11199 + y="269.30334" 42.11200 + id="tspan6037">9</tspan></text> 42.11201 + <rect 42.11202 + width="51.494247" 42.11203 + height="52.044121" 42.11204 + rx="4.7705503" 42.11205 + ry="4.0114756" 42.11206 + x="515.39618" 42.11207 + y="232.38963" 42.11208 + id="rect6039" 42.11209 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11210 + <rect 42.11211 + width="51.494247" 42.11212 + height="52.044125" 42.11213 + rx="4.7705498" 42.11214 + ry="4.011476" 42.11215 + x="571.08173" 42.11216 + y="232.38963" 42.11217 + id="rect6051" 42.11218 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11219 + <rect 42.11220 + width="11.279431" 42.11221 + height="34.563782" 42.11222 + x="611.27246" 42.11223 + y="236.25418" 42.11224 + id="rect6053" 42.11225 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11226 + <path 42.11227 + inkscape:connector-curvature="0" 42.11228 + d="m 613.43323,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11229 + id="path6055" 42.11230 + style="fill:url(#linearGradient7554);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11231 + <rect 42.11232 + width="33.469341" 42.11233 + height="12.974548" 42.11234 + rx="0" 42.11235 + ry="0" 42.11236 + x="580.17493" 42.11237 + y="271.44827" 42.11238 + id="rect6057" 42.11239 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11240 + <path 42.11241 + inkscape:connector-curvature="0" 42.11242 + d="m 611.73373,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11243 + id="path6059" 42.11244 + style="fill:url(#linearGradient7549);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11245 + <path 42.11246 + inkscape:connector-curvature="0" 42.11247 + d="m 578.59382,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11248 + id="path6061" 42.11249 + style="fill:url(#linearGradient7546);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11250 + <rect 42.11251 + width="36.535122" 42.11252 + height="40.245304" 42.11253 + rx="4.7705498" 42.11254 + ry="4.7543411" 42.11255 + x="577.85211" 42.11256 + y="233.04718" 42.11257 + id="rect6063" 42.11258 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11259 + <rect 42.11260 + width="35.480965" 42.11261 + height="40.245304" 42.11262 + rx="4.7705498" 42.11263 + ry="4.7543411" 42.11264 + x="577.85211" 42.11265 + y="233.04718" 42.11266 + id="rect6065" 42.11267 + style="fill:url(#linearGradient7542);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11268 + <text 42.11269 + sodipodi:linespacing="100%" 42.11270 + x="581.60895" 42.11271 + y="269.30334" 42.11272 + transform="scale(1.0017033,0.9982996)" 42.11273 + id="text6067" 42.11274 + xml:space="preserve" 42.11275 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11276 + x="581.60895" 42.11277 + y="269.30334" 42.11278 + id="tspan6071">0</tspan></text> 42.11279 + <rect 42.11280 + width="51.494247" 42.11281 + height="52.044121" 42.11282 + rx="4.7705503" 42.11283 + ry="4.0114756" 42.11284 + x="571.08173" 42.11285 + y="232.38963" 42.11286 + id="rect6073" 42.11287 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11288 + <rect 42.11289 + width="51.494247" 42.11290 + height="52.044125" 42.11291 + rx="4.7705498" 42.11292 + ry="4.011476" 42.11293 + x="626.76727" 42.11294 + y="232.38963" 42.11295 + id="rect6085" 42.11296 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11297 + <rect 42.11298 + width="11.279431" 42.11299 + height="34.563782" 42.11300 + x="666.95801" 42.11301 + y="236.25418" 42.11302 + id="rect6087" 42.11303 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11304 + <path 42.11305 + inkscape:connector-curvature="0" 42.11306 + d="m 669.11876,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11307 + id="path6089" 42.11308 + style="fill:url(#linearGradient7534);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11309 + <rect 42.11310 + width="33.469341" 42.11311 + height="12.974548" 42.11312 + rx="0" 42.11313 + ry="0" 42.11314 + x="635.86047" 42.11315 + y="271.44827" 42.11316 + id="rect6091" 42.11317 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11318 + <path 42.11319 + inkscape:connector-curvature="0" 42.11320 + d="m 667.41926,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11321 + id="path6093" 42.11322 + style="fill:url(#linearGradient7530);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11323 + <path 42.11324 + inkscape:connector-curvature="0" 42.11325 + d="m 634.27935,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11326 + id="path6095" 42.11327 + style="fill:url(#linearGradient7526);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11328 + <rect 42.11329 + width="36.535122" 42.11330 + height="40.245304" 42.11331 + rx="4.7705498" 42.11332 + ry="4.7543411" 42.11333 + x="633.53766" 42.11334 + y="233.04718" 42.11335 + id="rect6097" 42.11336 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11337 + <rect 42.11338 + width="35.480965" 42.11339 + height="40.245304" 42.11340 + rx="4.7705498" 42.11341 + ry="4.7543411" 42.11342 + x="633.53766" 42.11343 + y="233.04718" 42.11344 + id="rect6099" 42.11345 + style="fill:url(#linearGradient7521);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11346 + <text 42.11347 + sodipodi:linespacing="100%" 42.11348 + x="739.16895" 42.11349 + y="304.36295" 42.11350 + transform="scale(1.0017033,0.9982996)" 42.11351 + id="text6101" 42.11352 + xml:space="preserve" 42.11353 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11354 + x="739.16895" 42.11355 + y="304.36295" 42.11356 + id="tspan6105">+</tspan></text> 42.11357 + <rect 42.11358 + width="51.494247" 42.11359 + height="52.044121" 42.11360 + rx="4.7705503" 42.11361 + ry="4.0114756" 42.11362 + x="626.76727" 42.11363 + y="232.38963" 42.11364 + id="rect6107" 42.11365 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11366 + <rect 42.11367 + width="51.494247" 42.11368 + height="52.044125" 42.11369 + rx="4.7705498" 42.11370 + ry="4.011476" 42.11371 + x="682.45276" 42.11372 + y="232.38963" 42.11373 + id="rect6119" 42.11374 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11375 + <rect 42.11376 + width="11.279431" 42.11377 + height="34.563782" 42.11378 + x="722.64355" 42.11379 + y="236.25418" 42.11380 + id="rect6121" 42.11381 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11382 + <path 42.11383 + inkscape:connector-curvature="0" 42.11384 + d="m 724.80428,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11385 + id="path6123" 42.11386 + style="fill:url(#linearGradient7513);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11387 + <rect 42.11388 + width="33.469341" 42.11389 + height="12.974548" 42.11390 + rx="0" 42.11391 + ry="0" 42.11392 + x="691.54602" 42.11393 + y="271.44827" 42.11394 + id="rect6125" 42.11395 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11396 + <path 42.11397 + inkscape:connector-curvature="0" 42.11398 + d="m 723.10478,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11399 + id="path6127" 42.11400 + style="fill:url(#linearGradient7509);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11401 + <path 42.11402 + inkscape:connector-curvature="0" 42.11403 + d="m 689.96487,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11404 + id="path6129" 42.11405 + style="fill:url(#linearGradient7506);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11406 + <rect 42.11407 + width="36.535122" 42.11408 + height="40.245304" 42.11409 + rx="4.7705498" 42.11410 + ry="4.7543411" 42.11411 + x="689.22321" 42.11412 + y="233.04718" 42.11413 + id="rect6131" 42.11414 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11415 + <rect 42.11416 + width="35.480965" 42.11417 + height="40.245304" 42.11418 + rx="4.7705498" 42.11419 + ry="4.7543411" 42.11420 + x="689.22321" 42.11421 + y="233.04718" 42.11422 + id="rect6133" 42.11423 + style="fill:url(#linearGradient7502);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11424 + <text 42.11425 + sodipodi:linespacing="100%" 42.11426 + x="692.79059" 42.11427 + y="269.30334" 42.11428 + transform="scale(1.0017033,0.9982996)" 42.11429 + id="text6135" 42.11430 + xml:space="preserve" 42.11431 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11432 + x="692.79059" 42.11433 + y="269.30334" 42.11434 + id="tspan6139" /><tspan 42.11435 + x="692.79059" 42.11436 + y="282.30334" 42.11437 + id="tspan4660" /><tspan 42.11438 + x="692.79059" 42.11439 + y="295.30334" 42.11440 + id="tspan4662" /><tspan 42.11441 + x="692.79059" 42.11442 + y="308.30334" 42.11443 + id="tspan4666" /></text> 42.11444 + <rect 42.11445 + width="51.494247" 42.11446 + height="52.044121" 42.11447 + rx="4.7705503" 42.11448 + ry="4.0114756" 42.11449 + x="682.45276" 42.11450 + y="232.38963" 42.11451 + id="rect6141" 42.11452 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11453 + <path 42.11454 + inkscape:connector-curvature="0" 42.11455 + d="m 776.93982,327.12122 8.46934,0 -3.03571,16.09954 c -1.98393,-2.25066 -3.67318,-2.43866 -5.43363,-3.125 l 0,-12.97454 z" 42.11456 + id="rect7606" 42.11457 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11458 + <path 42.11459 + inkscape:connector-curvature="0" 42.11460 + d="m 775.7517,332.29218 -7.48448,0.60918 -0.0395,5.07655 c 0.006,1.30926 2.16679,2.06147 4.40109,2.10678 l 4.80957,-0.0254 1.68664,-5.93956 -3.37329,-1.82756 z" 42.11461 + id="path7602" 42.11462 + style="fill:url(#linearGradient7492);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11463 + <rect 42.11464 + width="51.494247" 42.11465 + height="52.044125" 42.11466 + rx="4.7705498" 42.11467 + ry="4.011476" 42.11468 + x="99.911903" 42.11469 + y="287.94803" 42.11470 + id="rect3120" 42.11471 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11472 + <rect 42.11473 + width="11.279431" 42.11474 + height="34.563782" 42.11475 + x="140.10257" 42.11476 + y="291.81256" 42.11477 + id="rect3122" 42.11478 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11479 + <path 42.11480 + inkscape:connector-curvature="0" 42.11481 + d="m 142.26339,294.82765 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.11482 + id="path3124" 42.11483 + style="fill:url(#linearGradient7487);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11484 + <rect 42.11485 + width="33.469341" 42.11486 + height="12.974548" 42.11487 + rx="0" 42.11488 + ry="0" 42.11489 + x="109.0051" 42.11490 + y="327.00665" 42.11491 + id="rect3126" 42.11492 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11493 + <path 42.11494 + inkscape:connector-curvature="0" 42.11495 + d="m 140.56387,323.96004 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.11496 + id="path3128" 42.11497 + style="fill:url(#linearGradient7483);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11498 + <path 42.11499 + inkscape:connector-curvature="0" 42.11500 + d="m 107.42394,323.85498 -7.48448,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11501 + id="path3130" 42.11502 + style="fill:url(#linearGradient7480);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11503 + <rect 42.11504 + width="36.535122" 42.11505 + height="40.245304" 42.11506 + rx="4.7705498" 42.11507 + ry="4.7543411" 42.11508 + x="106.68222" 42.11509 + y="288.60556" 42.11510 + id="rect3132" 42.11511 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11512 + <rect 42.11513 + width="35.480965" 42.11514 + height="40.245304" 42.11515 + rx="4.7705498" 42.11516 + ry="4.7543411" 42.11517 + x="106.68222" 42.11518 + y="288.60556" 42.11519 + id="rect3134" 42.11520 + style="fill:url(#linearGradient7476);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11521 + <text 42.11522 + sodipodi:linespacing="100%" 42.11523 + x="109.24362" 42.11524 + y="306.92566" 42.11525 + transform="scale(1.0017033,0.9982996)" 42.11526 + id="text3136" 42.11527 + xml:space="preserve" 42.11528 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11529 + x="109.24362" 42.11530 + y="306.92566" 42.11531 + id="tspan3138">Q</tspan></text> 42.11532 + <rect 42.11533 + width="51.494247" 42.11534 + height="52.044121" 42.11535 + rx="4.7705503" 42.11536 + ry="4.0114756" 42.11537 + x="99.911903" 42.11538 + y="287.94803" 42.11539 + id="rect3140" 42.11540 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11541 + <rect 42.11542 + width="51.494247" 42.11543 + height="52.044125" 42.11544 + rx="4.7705498" 42.11545 + ry="4.011476" 42.11546 + x="155.59743" 42.11547 + y="287.94803" 42.11548 + id="rect3142" 42.11549 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11550 + <rect 42.11551 + width="11.279431" 42.11552 + height="34.563782" 42.11553 + x="195.78818" 42.11554 + y="291.81256" 42.11555 + id="rect3144" 42.11556 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11557 + <path 42.11558 + inkscape:connector-curvature="0" 42.11559 + d="m 197.94893,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11560 + id="path3146" 42.11561 + style="fill:url(#linearGradient7468);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11562 + <rect 42.11563 + width="33.469341" 42.11564 + height="12.974548" 42.11565 + rx="0" 42.11566 + ry="0" 42.11567 + x="164.69064" 42.11568 + y="327.00665" 42.11569 + id="rect3148" 42.11570 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11571 + <path 42.11572 + inkscape:connector-curvature="0" 42.11573 + d="m 196.24943,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11574 + id="path3150" 42.11575 + style="fill:url(#linearGradient7464);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11576 + <path 42.11577 + inkscape:connector-curvature="0" 42.11578 + d="m 163.10952,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11579 + id="path3152" 42.11580 + style="fill:url(#linearGradient7460);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11581 + <rect 42.11582 + width="36.535122" 42.11583 + height="40.245304" 42.11584 + rx="4.7705498" 42.11585 + ry="4.7543411" 42.11586 + x="162.36783" 42.11587 + y="288.60556" 42.11588 + id="rect3154" 42.11589 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11590 + <rect 42.11591 + width="35.480965" 42.11592 + height="40.245304" 42.11593 + rx="4.7705498" 42.11594 + ry="4.7543411" 42.11595 + x="162.36783" 42.11596 + y="288.60556" 42.11597 + id="rect3156" 42.11598 + style="fill:url(#linearGradient7456);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11599 + <text 42.11600 + sodipodi:linespacing="100%" 42.11601 + x="164.8345" 42.11602 + y="306.92563" 42.11603 + transform="scale(1.0017033,0.9982996)" 42.11604 + id="text3158" 42.11605 + xml:space="preserve" 42.11606 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11607 + x="164.8345" 42.11608 + y="306.92563" 42.11609 + id="tspan3160">W</tspan></text> 42.11610 + <rect 42.11611 + width="51.494247" 42.11612 + height="52.044121" 42.11613 + rx="4.7705503" 42.11614 + ry="4.0114756" 42.11615 + x="155.59743" 42.11616 + y="287.94803" 42.11617 + id="rect3162" 42.11618 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11619 + <rect 42.11620 + width="51.494247" 42.11621 + height="52.044125" 42.11622 + rx="4.7705498" 42.11623 + ry="4.011476" 42.11624 + x="211.28297" 42.11625 + y="287.94803" 42.11626 + id="rect3166" 42.11627 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11628 + <rect 42.11629 + width="11.279431" 42.11630 + height="34.563782" 42.11631 + x="251.47371" 42.11632 + y="291.81256" 42.11633 + id="rect3168" 42.11634 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11635 + <path 42.11636 + inkscape:connector-curvature="0" 42.11637 + d="m 253.63447,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11638 + id="path3170" 42.11639 + style="fill:url(#linearGradient7448);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11640 + <rect 42.11641 + width="33.469341" 42.11642 + height="12.974548" 42.11643 + rx="0" 42.11644 + ry="0" 42.11645 + x="220.37617" 42.11646 + y="327.00665" 42.11647 + id="rect3172" 42.11648 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11649 + <path 42.11650 + inkscape:connector-curvature="0" 42.11651 + d="m 251.93497,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11652 + id="path3174" 42.11653 + style="fill:url(#linearGradient7444);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11654 + <path 42.11655 + inkscape:connector-curvature="0" 42.11656 + d="m 218.79506,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11657 + id="path3176" 42.11658 + style="fill:url(#linearGradient7441);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11659 + <rect 42.11660 + width="36.535122" 42.11661 + height="40.245304" 42.11662 + rx="4.7705498" 42.11663 + ry="4.7543411" 42.11664 + x="218.05336" 42.11665 + y="288.60556" 42.11666 + id="rect3178" 42.11667 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11668 + <rect 42.11669 + width="35.480965" 42.11670 + height="40.245304" 42.11671 + rx="4.7705498" 42.11672 + ry="4.7543411" 42.11673 + x="218.05336" 42.11674 + y="288.60556" 42.11675 + id="rect3180" 42.11676 + style="fill:url(#linearGradient7437);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11677 + <text 42.11678 + sodipodi:linespacing="100%" 42.11679 + x="222.42197" 42.11680 + y="306.92572" 42.11681 + transform="scale(1.0017033,0.9982996)" 42.11682 + id="text3182" 42.11683 + xml:space="preserve" 42.11684 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11685 + x="222.42197" 42.11686 + y="306.92572" 42.11687 + id="tspan3184">E</tspan></text> 42.11688 + <rect 42.11689 + width="51.494247" 42.11690 + height="52.044121" 42.11691 + rx="4.7705503" 42.11692 + ry="4.0114756" 42.11693 + x="211.28297" 42.11694 + y="287.94803" 42.11695 + id="rect3186" 42.11696 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11697 + <rect 42.11698 + width="51.494247" 42.11699 + height="52.044125" 42.11700 + rx="4.7705498" 42.11701 + ry="4.011476" 42.11702 + x="266.96851" 42.11703 + y="287.94803" 42.11704 + id="rect3190" 42.11705 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11706 + <rect 42.11707 + width="11.279431" 42.11708 + height="34.563782" 42.11709 + x="307.15924" 42.11710 + y="291.81256" 42.11711 + id="rect3192" 42.11712 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11713 + <path 42.11714 + inkscape:connector-curvature="0" 42.11715 + d="m 309.32001,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11716 + id="path3194" 42.11717 + style="fill:url(#linearGradient7429);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11718 + <rect 42.11719 + width="33.469341" 42.11720 + height="12.974548" 42.11721 + rx="0" 42.11722 + ry="0" 42.11723 + x="276.06171" 42.11724 + y="327.00665" 42.11725 + id="rect3196" 42.11726 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11727 + <path 42.11728 + inkscape:connector-curvature="0" 42.11729 + d="m 307.62051,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11730 + id="path3198" 42.11731 + style="fill:url(#linearGradient7425);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11732 + <path 42.11733 + inkscape:connector-curvature="0" 42.11734 + d="m 274.4806,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11735 + id="path3200" 42.11736 + style="fill:url(#linearGradient7422);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11737 + <rect 42.11738 + width="36.535122" 42.11739 + height="40.245304" 42.11740 + rx="4.7705498" 42.11741 + ry="4.7543411" 42.11742 + x="273.73889" 42.11743 + y="288.60556" 42.11744 + id="rect3202" 42.11745 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11746 + <rect 42.11747 + width="35.480965" 42.11748 + height="40.245304" 42.11749 + rx="4.7705498" 42.11750 + ry="4.7543411" 42.11751 + x="273.73889" 42.11752 + y="288.60556" 42.11753 + id="rect3204" 42.11754 + style="fill:url(#linearGradient7418);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11755 + <text 42.11756 + sodipodi:linespacing="100%" 42.11757 + x="278.01282" 42.11758 + y="306.92572" 42.11759 + transform="scale(1.0017033,0.9982996)" 42.11760 + id="text3206" 42.11761 + xml:space="preserve" 42.11762 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11763 + x="278.01282" 42.11764 + y="306.92572" 42.11765 + id="tspan3208">R</tspan></text> 42.11766 + <rect 42.11767 + width="51.494247" 42.11768 + height="52.044121" 42.11769 + rx="4.7705503" 42.11770 + ry="4.0114756" 42.11771 + x="266.96851" 42.11772 + y="287.94803" 42.11773 + id="rect3210" 42.11774 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11775 + <rect 42.11776 + width="51.494247" 42.11777 + height="52.044125" 42.11778 + rx="4.7705498" 42.11779 + ry="4.011476" 42.11780 + x="322.65405" 42.11781 + y="287.94803" 42.11782 + id="rect3214" 42.11783 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11784 + <rect 42.11785 + width="11.279431" 42.11786 + height="34.563782" 42.11787 + x="362.84479" 42.11788 + y="291.81256" 42.11789 + id="rect3216" 42.11790 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11791 + <path 42.11792 + inkscape:connector-curvature="0" 42.11793 + d="m 365.00554,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11794 + id="path3218" 42.11795 + style="fill:url(#linearGradient7410);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11796 + <rect 42.11797 + width="33.469341" 42.11798 + height="12.974548" 42.11799 + rx="0" 42.11800 + ry="0" 42.11801 + x="331.74725" 42.11802 + y="327.00665" 42.11803 + id="rect3220" 42.11804 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11805 + <path 42.11806 + inkscape:connector-curvature="0" 42.11807 + d="m 363.30604,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11808 + id="path3222" 42.11809 + style="fill:url(#linearGradient7405);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11810 + <path 42.11811 + inkscape:connector-curvature="0" 42.11812 + d="m 330.16613,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11813 + id="path3224" 42.11814 + style="fill:url(#linearGradient7402);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11815 + <rect 42.11816 + width="36.535122" 42.11817 + height="40.245304" 42.11818 + rx="4.7705498" 42.11819 + ry="4.7543411" 42.11820 + x="329.42444" 42.11821 + y="288.60556" 42.11822 + id="rect3226" 42.11823 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11824 + <rect 42.11825 + width="35.480965" 42.11826 + height="40.245304" 42.11827 + rx="4.7705498" 42.11828 + ry="4.7543411" 42.11829 + x="329.42444" 42.11830 + y="288.60556" 42.11831 + id="rect3228" 42.11832 + style="fill:url(#linearGradient7398);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11833 + <text 42.11834 + sodipodi:linespacing="100%" 42.11835 + x="333.60367" 42.11836 + y="306.92572" 42.11837 + transform="scale(1.0017033,0.9982996)" 42.11838 + id="text3230" 42.11839 + xml:space="preserve" 42.11840 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11841 + x="333.60367" 42.11842 + y="306.92572" 42.11843 + id="tspan3232">T</tspan></text> 42.11844 + <rect 42.11845 + width="51.494247" 42.11846 + height="52.044121" 42.11847 + rx="4.7705503" 42.11848 + ry="4.0114756" 42.11849 + x="322.65405" 42.11850 + y="287.94803" 42.11851 + id="rect3234" 42.11852 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11853 + <rect 42.11854 + width="51.494247" 42.11855 + height="52.044125" 42.11856 + rx="4.7705498" 42.11857 + ry="4.011476" 42.11858 + x="378.33957" 42.11859 + y="287.94803" 42.11860 + id="rect3238" 42.11861 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11862 + <rect 42.11863 + width="11.279431" 42.11864 + height="34.563782" 42.11865 + x="418.53033" 42.11866 + y="291.81256" 42.11867 + id="rect3240" 42.11868 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11869 + <path 42.11870 + inkscape:connector-curvature="0" 42.11871 + d="m 420.69108,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11872 + id="path3242" 42.11873 + style="fill:url(#linearGradient7390);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11874 + <rect 42.11875 + width="33.469341" 42.11876 + height="12.974548" 42.11877 + rx="0" 42.11878 + ry="0" 42.11879 + x="387.4328" 42.11880 + y="327.00665" 42.11881 + id="rect3244" 42.11882 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11883 + <path 42.11884 + inkscape:connector-curvature="0" 42.11885 + d="m 418.99158,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11886 + id="path3246" 42.11887 + style="fill:url(#linearGradient7386);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11888 + <path 42.11889 + inkscape:connector-curvature="0" 42.11890 + d="m 385.85167,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11891 + id="path3248" 42.11892 + style="fill:url(#linearGradient7382);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11893 + <rect 42.11894 + width="36.535122" 42.11895 + height="40.245304" 42.11896 + rx="4.7705498" 42.11897 + ry="4.7543411" 42.11898 + x="385.10999" 42.11899 + y="288.60556" 42.11900 + id="rect3250" 42.11901 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11902 + <rect 42.11903 + width="35.480965" 42.11904 + height="40.245304" 42.11905 + rx="4.7705498" 42.11906 + ry="4.7543411" 42.11907 + x="385.10999" 42.11908 + y="288.60556" 42.11909 + id="rect3252" 42.11910 + style="fill:url(#linearGradient7377);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11911 + <text 42.11912 + sodipodi:linespacing="100%" 42.11913 + x="389.19452" 42.11914 + y="306.92572" 42.11915 + transform="scale(1.0017033,0.9982996)" 42.11916 + id="text3254" 42.11917 + xml:space="preserve" 42.11918 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11919 + x="389.19452" 42.11920 + y="306.92572" 42.11921 + id="tspan3256">Z</tspan></text> 42.11922 + <rect 42.11923 + width="51.494247" 42.11924 + height="52.044121" 42.11925 + rx="4.7705503" 42.11926 + ry="4.0114756" 42.11927 + x="378.33957" 42.11928 + y="287.94803" 42.11929 + id="rect3258" 42.11930 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.11931 + <rect 42.11932 + width="51.494247" 42.11933 + height="52.044125" 42.11934 + rx="4.7705498" 42.11935 + ry="4.011476" 42.11936 + x="434.02512" 42.11937 + y="287.94803" 42.11938 + id="rect3262" 42.11939 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11940 + <rect 42.11941 + width="11.279431" 42.11942 + height="34.563782" 42.11943 + x="474.21585" 42.11944 + y="291.81256" 42.11945 + id="rect3264" 42.11946 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11947 + <path 42.11948 + inkscape:connector-curvature="0" 42.11949 + d="m 476.37661,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.11950 + id="path3266" 42.11951 + style="fill:url(#linearGradient7369);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11952 + <rect 42.11953 + width="33.469341" 42.11954 + height="12.974548" 42.11955 + rx="0" 42.11956 + ry="0" 42.11957 + x="443.11832" 42.11958 + y="327.00665" 42.11959 + id="rect3268" 42.11960 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11961 + <path 42.11962 + inkscape:connector-curvature="0" 42.11963 + d="m 474.67711,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.11964 + id="path3270" 42.11965 + style="fill:url(#linearGradient7365);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11966 + <path 42.11967 + inkscape:connector-curvature="0" 42.11968 + d="m 441.5372,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.11969 + id="path3272" 42.11970 + style="fill:url(#linearGradient7362);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11971 + <rect 42.11972 + width="36.535122" 42.11973 + height="40.245304" 42.11974 + rx="4.7705498" 42.11975 + ry="4.7543411" 42.11976 + x="440.7955" 42.11977 + y="288.60556" 42.11978 + id="rect3274" 42.11979 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11980 + <rect 42.11981 + width="35.480965" 42.11982 + height="40.245304" 42.11983 + rx="4.7705498" 42.11984 + ry="4.7543411" 42.11985 + x="440.7955" 42.11986 + y="288.60556" 42.11987 + id="rect3276" 42.11988 + style="fill:url(#linearGradient7358);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.11989 + <text 42.11990 + sodipodi:linespacing="100%" 42.11991 + x="444.78534" 42.11992 + y="306.92572" 42.11993 + transform="scale(1.0017033,0.9982996)" 42.11994 + id="text3278" 42.11995 + xml:space="preserve" 42.11996 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.11997 + x="444.78534" 42.11998 + y="306.92572" 42.11999 + id="tspan3280">U</tspan></text> 42.12000 + <rect 42.12001 + width="51.494247" 42.12002 + height="52.044121" 42.12003 + rx="4.7705503" 42.12004 + ry="4.0114756" 42.12005 + x="434.02512" 42.12006 + y="287.94803" 42.12007 + id="rect3282" 42.12008 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12009 + <rect 42.12010 + width="51.494247" 42.12011 + height="52.044125" 42.12012 + rx="4.7705498" 42.12013 + ry="4.011476" 42.12014 + x="489.71063" 42.12015 + y="287.94803" 42.12016 + id="rect3286" 42.12017 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12018 + <rect 42.12019 + width="11.279431" 42.12020 + height="34.563782" 42.12021 + x="529.90137" 42.12022 + y="291.81256" 42.12023 + id="rect3288" 42.12024 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12025 + <path 42.12026 + inkscape:connector-curvature="0" 42.12027 + d="m 532.06213,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12028 + id="path3290" 42.12029 + style="fill:url(#linearGradient7350);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12030 + <rect 42.12031 + width="33.469341" 42.12032 + height="12.974548" 42.12033 + rx="0" 42.12034 + ry="0" 42.12035 + x="498.80383" 42.12036 + y="327.00665" 42.12037 + id="rect3292" 42.12038 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12039 + <path 42.12040 + inkscape:connector-curvature="0" 42.12041 + d="m 530.36263,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12042 + id="path3294" 42.12043 + style="fill:url(#linearGradient7346);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12044 + <path 42.12045 + inkscape:connector-curvature="0" 42.12046 + d="m 497.22272,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12047 + id="path3296" 42.12048 + style="fill:url(#linearGradient7343);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12049 + <rect 42.12050 + width="36.535122" 42.12051 + height="40.245304" 42.12052 + rx="4.7705498" 42.12053 + ry="4.7543411" 42.12054 + x="496.48102" 42.12055 + y="288.60556" 42.12056 + id="rect3298" 42.12057 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12058 + <rect 42.12059 + width="35.480965" 42.12060 + height="40.245304" 42.12061 + rx="4.7705498" 42.12062 + ry="4.7543411" 42.12063 + x="496.48102" 42.12064 + y="288.60556" 42.12065 + id="rect3300" 42.12066 + style="fill:url(#linearGradient7339);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12067 + <text 42.12068 + sodipodi:linespacing="100%" 42.12069 + x="500.37619" 42.12070 + y="306.92572" 42.12071 + transform="scale(1.0017033,0.9982996)" 42.12072 + id="text3302" 42.12073 + xml:space="preserve" 42.12074 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12075 + x="500.37619" 42.12076 + y="306.92572" 42.12077 + id="tspan3304">I</tspan></text> 42.12078 + <rect 42.12079 + width="51.494247" 42.12080 + height="52.044121" 42.12081 + rx="4.7705503" 42.12082 + ry="4.0114756" 42.12083 + x="489.71063" 42.12084 + y="287.94803" 42.12085 + id="rect3306" 42.12086 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12087 + <rect 42.12088 + width="51.494247" 42.12089 + height="52.044125" 42.12090 + rx="4.7705498" 42.12091 + ry="4.011476" 42.12092 + x="545.39618" 42.12093 + y="287.94803" 42.12094 + id="rect3310" 42.12095 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12096 + <rect 42.12097 + width="11.279431" 42.12098 + height="34.563782" 42.12099 + x="585.58691" 42.12100 + y="291.81256" 42.12101 + id="rect3312" 42.12102 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12103 + <path 42.12104 + inkscape:connector-curvature="0" 42.12105 + d="m 587.74767,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12106 + id="path3314" 42.12107 + style="fill:url(#linearGradient7331);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12108 + <rect 42.12109 + width="33.469341" 42.12110 + height="12.974548" 42.12111 + rx="0" 42.12112 + ry="0" 42.12113 + x="554.48938" 42.12114 + y="327.00665" 42.12115 + id="rect3316" 42.12116 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12117 + <path 42.12118 + inkscape:connector-curvature="0" 42.12119 + d="m 586.04817,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12120 + id="path3318" 42.12121 + style="fill:url(#linearGradient7327);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12122 + <path 42.12123 + inkscape:connector-curvature="0" 42.12124 + d="m 552.90826,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12125 + id="path3320" 42.12126 + style="fill:url(#linearGradient7324);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12127 + <rect 42.12128 + width="36.535122" 42.12129 + height="40.245304" 42.12130 + rx="4.7705498" 42.12131 + ry="4.7543411" 42.12132 + x="552.16656" 42.12133 + y="288.60556" 42.12134 + id="rect3322" 42.12135 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12136 + <rect 42.12137 + width="35.480965" 42.12138 + height="40.245304" 42.12139 + rx="4.7705498" 42.12140 + ry="4.7543411" 42.12141 + x="552.16656" 42.12142 + y="288.60556" 42.12143 + id="rect3324" 42.12144 + style="fill:url(#linearGradient7320);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12145 + <text 42.12146 + sodipodi:linespacing="100%" 42.12147 + x="555.96704" 42.12148 + y="306.92572" 42.12149 + transform="scale(1.0017033,0.9982996)" 42.12150 + id="text3326" 42.12151 + xml:space="preserve" 42.12152 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12153 + x="555.96704" 42.12154 + y="306.92572" 42.12155 + id="tspan3328">O</tspan></text> 42.12156 + <rect 42.12157 + width="51.494247" 42.12158 + height="52.044121" 42.12159 + rx="4.7705503" 42.12160 + ry="4.0114756" 42.12161 + x="545.39618" 42.12162 + y="287.94803" 42.12163 + id="rect3330" 42.12164 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12165 + <rect 42.12166 + width="51.494247" 42.12167 + height="52.044125" 42.12168 + rx="4.7705498" 42.12169 + ry="4.011476" 42.12170 + x="601.08173" 42.12171 + y="287.94803" 42.12172 + id="rect3334" 42.12173 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12174 + <rect 42.12175 + width="11.279431" 42.12176 + height="34.563782" 42.12177 + x="641.27246" 42.12178 + y="291.81256" 42.12179 + id="rect3336" 42.12180 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12181 + <path 42.12182 + inkscape:connector-curvature="0" 42.12183 + d="m 643.43323,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12184 + id="path3338" 42.12185 + style="fill:url(#linearGradient7311);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12186 + <rect 42.12187 + width="33.469341" 42.12188 + height="12.974548" 42.12189 + rx="0" 42.12190 + ry="0" 42.12191 + x="610.17493" 42.12192 + y="327.00665" 42.12193 + id="rect3340" 42.12194 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12195 + <path 42.12196 + inkscape:connector-curvature="0" 42.12197 + d="m 641.73373,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12198 + id="path3342" 42.12199 + style="fill:url(#linearGradient7307);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12200 + <path 42.12201 + inkscape:connector-curvature="0" 42.12202 + d="m 608.59382,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12203 + id="path3344" 42.12204 + style="fill:url(#linearGradient7304);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12205 + <rect 42.12206 + width="36.535122" 42.12207 + height="40.245304" 42.12208 + rx="4.7705498" 42.12209 + ry="4.7543411" 42.12210 + x="607.85211" 42.12211 + y="288.60556" 42.12212 + id="rect3346" 42.12213 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12214 + <rect 42.12215 + width="35.480965" 42.12216 + height="40.245304" 42.12217 + rx="4.7705498" 42.12218 + ry="4.7543411" 42.12219 + x="607.85211" 42.12220 + y="288.60556" 42.12221 + id="rect3348" 42.12222 + style="fill:url(#linearGradient7300);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12223 + <text 42.12224 + sodipodi:linespacing="100%" 42.12225 + x="611.55792" 42.12226 + y="306.92572" 42.12227 + transform="scale(1.0017033,0.9982996)" 42.12228 + id="text3350" 42.12229 + xml:space="preserve" 42.12230 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12231 + x="611.55792" 42.12232 + y="306.92572" 42.12233 + id="tspan3352">P</tspan></text> 42.12234 + <rect 42.12235 + width="51.494247" 42.12236 + height="52.044121" 42.12237 + rx="4.7705503" 42.12238 + ry="4.0114756" 42.12239 + x="601.08173" 42.12240 + y="287.94803" 42.12241 + id="rect3354" 42.12242 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12243 + <rect 42.12244 + width="51.494247" 42.12245 + height="52.044125" 42.12246 + rx="4.7705498" 42.12247 + ry="4.011476" 42.12248 + x="656.76727" 42.12249 + y="287.94803" 42.12250 + id="rect3358" 42.12251 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12252 + <rect 42.12253 + width="11.279431" 42.12254 + height="34.563782" 42.12255 + x="696.95801" 42.12256 + y="291.81256" 42.12257 + id="rect3360" 42.12258 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12259 + <path 42.12260 + inkscape:connector-curvature="0" 42.12261 + d="m 699.11876,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12262 + id="path3362" 42.12263 + style="fill:url(#linearGradient7292);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12264 + <rect 42.12265 + width="33.469341" 42.12266 + height="12.974548" 42.12267 + rx="0" 42.12268 + ry="0" 42.12269 + x="665.86047" 42.12270 + y="327.00665" 42.12271 + id="rect3364" 42.12272 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12273 + <path 42.12274 + inkscape:connector-curvature="0" 42.12275 + d="m 697.41926,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12276 + id="path3366" 42.12277 + style="fill:url(#linearGradient7288);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12278 + <path 42.12279 + inkscape:connector-curvature="0" 42.12280 + d="m 664.27935,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12281 + id="path3368" 42.12282 + style="fill:url(#linearGradient7285);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12283 + <rect 42.12284 + width="36.535122" 42.12285 + height="40.245304" 42.12286 + rx="4.7705498" 42.12287 + ry="4.7543411" 42.12288 + x="663.53766" 42.12289 + y="288.60556" 42.12290 + id="rect3370" 42.12291 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12292 + <rect 42.12293 + width="35.480965" 42.12294 + height="40.245304" 42.12295 + rx="4.7705498" 42.12296 + ry="4.7543411" 42.12297 + x="663.53766" 42.12298 + y="288.60556" 42.12299 + id="rect3372" 42.12300 + style="fill:url(#linearGradient7281);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12301 + <text 42.12302 + sodipodi:linespacing="100%" 42.12303 + x="667.14874" 42.12304 + y="306.92572" 42.12305 + transform="scale(1.0017033,0.9982996)" 42.12306 + id="text3374" 42.12307 + xml:space="preserve" 42.12308 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12309 + x="667.14874" 42.12310 + y="306.92572" 42.12311 + id="tspan3376">Ü</tspan></text> 42.12312 + <rect 42.12313 + width="51.494247" 42.12314 + height="52.044121" 42.12315 + rx="4.7705503" 42.12316 + ry="4.0114756" 42.12317 + x="656.76727" 42.12318 + y="287.94803" 42.12319 + id="rect3378" 42.12320 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12321 + <rect 42.12322 + width="51.494247" 42.12323 + height="52.044125" 42.12324 + rx="4.7705498" 42.12325 + ry="4.011476" 42.12326 + x="712.45276" 42.12327 + y="287.94803" 42.12328 + id="rect3382" 42.12329 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12330 + <rect 42.12331 + width="11.279431" 42.12332 + height="34.563782" 42.12333 + x="752.64355" 42.12334 + y="291.81256" 42.12335 + id="rect3384" 42.12336 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12337 + <path 42.12338 + inkscape:connector-curvature="0" 42.12339 + d="m 754.80428,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12340 + id="path3386" 42.12341 + style="fill:url(#linearGradient7273);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12342 + <rect 42.12343 + width="33.469341" 42.12344 + height="12.974548" 42.12345 + rx="0" 42.12346 + ry="0" 42.12347 + x="721.54602" 42.12348 + y="327.00665" 42.12349 + id="rect3388" 42.12350 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12351 + <path 42.12352 + inkscape:connector-curvature="0" 42.12353 + d="m 753.10478,323.96004 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12354 + id="path3390" 42.12355 + style="fill:url(#linearGradient7269);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12356 + <path 42.12357 + inkscape:connector-curvature="0" 42.12358 + d="m 719.96487,323.85498 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12359 + id="path3392" 42.12360 + style="fill:url(#linearGradient7266);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12361 + <rect 42.12362 + width="36.535122" 42.12363 + height="40.245304" 42.12364 + rx="4.7705498" 42.12365 + ry="4.7543411" 42.12366 + x="719.22321" 42.12367 + y="288.60556" 42.12368 + id="rect3394" 42.12369 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12370 + <rect 42.12371 + width="35.480965" 42.12372 + height="40.245304" 42.12373 + rx="4.7705498" 42.12374 + ry="4.7543411" 42.12375 + x="719.22321" 42.12376 + y="288.60556" 42.12377 + id="rect3396" 42.12378 + style="fill:url(#linearGradient7262);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12379 + <text 42.12380 + sodipodi:linespacing="100%" 42.12381 + x="724.73615" 42.12382 + y="306.92572" 42.12383 + transform="scale(1.0017033,0.9982996)" 42.12384 + id="text3398" 42.12385 + xml:space="preserve" 42.12386 + style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12387 + x="724.73615" 42.12388 + y="306.92572" 42.12389 + id="tspan3400">*</tspan></text> 42.12390 + <rect 42.12391 + width="51.494247" 42.12392 + height="52.044121" 42.12393 + rx="4.7705503" 42.12394 + ry="4.0114756" 42.12395 + x="712.45276" 42.12396 + y="287.94803" 42.12397 + id="rect3403" 42.12398 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12399 + <rect 42.12400 + width="51.494247" 42.12401 + height="52.044125" 42.12402 + rx="4.7705498" 42.12403 + ry="4.011476" 42.12404 + x="110.62619" 42.12405 + y="344.01947" 42.12406 + id="rect4469" 42.12407 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12408 + <rect 42.12409 + width="11.279431" 42.12410 + height="34.563782" 42.12411 + x="150.81685" 42.12412 + y="347.884" 42.12413 + id="rect4471" 42.12414 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12415 + <path 42.12416 + inkscape:connector-curvature="0" 42.12417 + d="m 152.97768,350.89908 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.12418 + id="path4473" 42.12419 + style="fill:url(#linearGradient7254);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12420 + <rect 42.12421 + width="33.469341" 42.12422 + height="12.974548" 42.12423 + rx="0" 42.12424 + ry="0" 42.12425 + x="119.71938" 42.12426 + y="383.07809" 42.12427 + id="rect4475" 42.12428 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12429 + <path 42.12430 + inkscape:connector-curvature="0" 42.12431 + d="m 151.27816,380.03147 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.12432 + id="path4477" 42.12433 + style="fill:url(#linearGradient7250);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12434 + <path 42.12435 + inkscape:connector-curvature="0" 42.12436 + d="m 118.13823,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12437 + id="path4479" 42.12438 + style="fill:url(#linearGradient7247);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12439 + <rect 42.12440 + width="36.535122" 42.12441 + height="40.245304" 42.12442 + rx="4.7705498" 42.12443 + ry="4.7543411" 42.12444 + x="117.39651" 42.12445 + y="344.677" 42.12446 + id="rect4481" 42.12447 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12448 + <rect 42.12449 + width="35.480965" 42.12450 + height="40.245304" 42.12451 + rx="4.7705498" 42.12452 + ry="4.7543411" 42.12453 + x="117.39651" 42.12454 + y="344.677" 42.12455 + id="rect4483" 42.12456 + style="fill:url(#linearGradient7243);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12457 + <text 42.12458 + sodipodi:linespacing="100%" 42.12459 + x="119.93969" 42.12460 + y="363.09259" 42.12461 + transform="scale(1.0017033,0.9982996)" 42.12462 + id="text4485" 42.12463 + xml:space="preserve" 42.12464 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12465 + x="119.93969" 42.12466 + y="363.09259" 42.12467 + id="tspan4487">A</tspan></text> 42.12468 + <rect 42.12469 + width="51.494247" 42.12470 + height="52.044121" 42.12471 + rx="4.7705503" 42.12472 + ry="4.0114756" 42.12473 + x="110.62619" 42.12474 + y="344.01947" 42.12475 + id="rect4489" 42.12476 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12477 + <rect 42.12478 + width="51.494247" 42.12479 + height="52.044125" 42.12480 + rx="4.7705498" 42.12481 + ry="4.011476" 42.12482 + x="166.31171" 42.12483 + y="344.01947" 42.12484 + id="rect4491" 42.12485 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12486 + <rect 42.12487 + width="11.279431" 42.12488 + height="34.563782" 42.12489 + x="206.50246" 42.12490 + y="347.884" 42.12491 + id="rect4493" 42.12492 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12493 + <path 42.12494 + inkscape:connector-curvature="0" 42.12495 + d="m 208.66322,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12496 + id="path4495" 42.12497 + style="fill:url(#linearGradient7235);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12498 + <rect 42.12499 + width="33.469341" 42.12500 + height="12.974548" 42.12501 + rx="0" 42.12502 + ry="0" 42.12503 + x="175.40492" 42.12504 + y="383.07809" 42.12505 + id="rect4497" 42.12506 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12507 + <path 42.12508 + inkscape:connector-curvature="0" 42.12509 + d="m 206.96372,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12510 + id="path4499" 42.12511 + style="fill:url(#linearGradient7231);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12512 + <path 42.12513 + inkscape:connector-curvature="0" 42.12514 + d="m 173.82381,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12515 + id="path4501" 42.12516 + style="fill:url(#linearGradient7228);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12517 + <rect 42.12518 + width="36.535122" 42.12519 + height="40.245304" 42.12520 + rx="4.7705498" 42.12521 + ry="4.7543411" 42.12522 + x="173.08211" 42.12523 + y="344.677" 42.12524 + id="rect4503" 42.12525 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12526 + <rect 42.12527 + width="35.480965" 42.12528 + height="40.245304" 42.12529 + rx="4.7705498" 42.12530 + ry="4.7543411" 42.12531 + x="173.08211" 42.12532 + y="344.677" 42.12533 + id="rect4505" 42.12534 + style="fill:url(#linearGradient7224);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12535 + <text 42.12536 + sodipodi:linespacing="100%" 42.12537 + x="175.53056" 42.12538 + y="363.09256" 42.12539 + transform="scale(1.0017033,0.9982996)" 42.12540 + id="text4507" 42.12541 + xml:space="preserve" 42.12542 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12543 + x="175.53056" 42.12544 + y="363.09256" 42.12545 + id="tspan4509">S</tspan></text> 42.12546 + <rect 42.12547 + width="51.494247" 42.12548 + height="52.044121" 42.12549 + rx="4.7705503" 42.12550 + ry="4.0114756" 42.12551 + x="166.31171" 42.12552 + y="344.01947" 42.12553 + id="rect4511" 42.12554 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12555 + <rect 42.12556 + width="51.494247" 42.12557 + height="52.044125" 42.12558 + rx="4.7705498" 42.12559 + ry="4.011476" 42.12560 + x="221.99725" 42.12561 + y="344.01947" 42.12562 + id="rect4513" 42.12563 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12564 + <rect 42.12565 + width="11.279431" 42.12566 + height="34.563782" 42.12567 + x="262.18799" 42.12568 + y="347.884" 42.12569 + id="rect4515" 42.12570 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12571 + <path 42.12572 + inkscape:connector-curvature="0" 42.12573 + d="m 264.34876,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12574 + id="path4517" 42.12575 + style="fill:url(#linearGradient7216);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12576 + <rect 42.12577 + width="33.469341" 42.12578 + height="12.974548" 42.12579 + rx="0" 42.12580 + ry="0" 42.12581 + x="231.09045" 42.12582 + y="383.07809" 42.12583 + id="rect4519" 42.12584 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12585 + <path 42.12586 + inkscape:connector-curvature="0" 42.12587 + d="m 262.64926,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12588 + id="path4521" 42.12589 + style="fill:url(#linearGradient7212);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12590 + <path 42.12591 + inkscape:connector-curvature="0" 42.12592 + d="m 229.50935,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12593 + id="path4523" 42.12594 + style="fill:url(#linearGradient7209);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12595 + <rect 42.12596 + width="36.535122" 42.12597 + height="40.245304" 42.12598 + rx="4.7705498" 42.12599 + ry="4.7543411" 42.12600 + x="228.76764" 42.12601 + y="344.677" 42.12602 + id="rect4525" 42.12603 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12604 + <rect 42.12605 + width="35.480965" 42.12606 + height="40.245304" 42.12607 + rx="4.7705498" 42.12608 + ry="4.7543411" 42.12609 + x="228.76764" 42.12610 + y="344.677" 42.12611 + id="rect4527" 42.12612 + style="fill:url(#linearGradient7205);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12613 + <text 42.12614 + sodipodi:linespacing="100%" 42.12615 + x="233.11803" 42.12616 + y="363.09265" 42.12617 + transform="scale(1.0017033,0.9982996)" 42.12618 + id="text4529" 42.12619 + xml:space="preserve" 42.12620 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12621 + x="233.11803" 42.12622 + y="363.09265" 42.12623 + id="tspan4531">D</tspan></text> 42.12624 + <rect 42.12625 + width="51.494247" 42.12626 + height="52.044121" 42.12627 + rx="4.7705503" 42.12628 + ry="4.0114756" 42.12629 + x="221.99725" 42.12630 + y="344.01947" 42.12631 + id="rect4533" 42.12632 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12633 + <rect 42.12634 + width="51.494247" 42.12635 + height="52.044125" 42.12636 + rx="4.7705498" 42.12637 + ry="4.011476" 42.12638 + x="277.6828" 42.12639 + y="344.01947" 42.12640 + id="rect4535" 42.12641 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12642 + <rect 42.12643 + width="11.279431" 42.12644 + height="34.563782" 42.12645 + x="317.87354" 42.12646 + y="347.884" 42.12647 + id="rect4537" 42.12648 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12649 + <path 42.12650 + inkscape:connector-curvature="0" 42.12651 + d="m 320.0343,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12652 + id="path4539" 42.12653 + style="fill:url(#linearGradient7197);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12654 + <rect 42.12655 + width="33.469341" 42.12656 + height="12.974548" 42.12657 + rx="0" 42.12658 + ry="0" 42.12659 + x="286.776" 42.12660 + y="383.07809" 42.12661 + id="rect4541" 42.12662 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12663 + <path 42.12664 + inkscape:connector-curvature="0" 42.12665 + d="m 318.3348,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12666 + id="path4543" 42.12667 + style="fill:url(#linearGradient7193);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12668 + <path 42.12669 + inkscape:connector-curvature="0" 42.12670 + d="m 285.19489,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12671 + id="path4545" 42.12672 + style="fill:url(#linearGradient7190);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12673 + <rect 42.12674 + width="36.535122" 42.12675 + height="40.245304" 42.12676 + rx="4.7705498" 42.12677 + ry="4.7543411" 42.12678 + x="284.45319" 42.12679 + y="344.677" 42.12680 + id="rect4547" 42.12681 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12682 + <rect 42.12683 + width="35.480965" 42.12684 + height="40.245304" 42.12685 + rx="4.7705498" 42.12686 + ry="4.7543411" 42.12687 + x="284.45319" 42.12688 + y="344.677" 42.12689 + id="rect4549" 42.12690 + style="fill:url(#linearGradient7186);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12691 + <text 42.12692 + sodipodi:linespacing="100%" 42.12693 + x="288.70889" 42.12694 + y="363.09265" 42.12695 + transform="scale(1.0017033,0.9982996)" 42.12696 + id="text4551" 42.12697 + xml:space="preserve" 42.12698 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12699 + x="288.70889" 42.12700 + y="363.09265" 42.12701 + id="tspan4553">F</tspan></text> 42.12702 + <rect 42.12703 + width="51.494247" 42.12704 + height="52.044121" 42.12705 + rx="4.7705503" 42.12706 + ry="4.0114756" 42.12707 + x="277.6828" 42.12708 + y="344.01947" 42.12709 + id="rect4555" 42.12710 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12711 + <rect 42.12712 + width="51.494247" 42.12713 + height="52.044125" 42.12714 + rx="4.7705498" 42.12715 + ry="4.011476" 42.12716 + x="333.36835" 42.12717 + y="344.01947" 42.12718 + id="rect4557" 42.12719 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12720 + <rect 42.12721 + width="11.279431" 42.12722 + height="34.563782" 42.12723 + x="373.55908" 42.12724 + y="347.884" 42.12725 + id="rect4559" 42.12726 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12727 + <path 42.12728 + inkscape:connector-curvature="0" 42.12729 + d="m 375.71983,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12730 + id="path4561" 42.12731 + style="fill:url(#linearGradient7178);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12732 + <rect 42.12733 + width="33.469341" 42.12734 + height="12.974548" 42.12735 + rx="0" 42.12736 + ry="0" 42.12737 + x="342.46155" 42.12738 + y="383.07809" 42.12739 + id="rect4563" 42.12740 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12741 + <path 42.12742 + inkscape:connector-curvature="0" 42.12743 + d="m 374.02033,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12744 + id="path4565" 42.12745 + style="fill:url(#linearGradient7174);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12746 + <path 42.12747 + inkscape:connector-curvature="0" 42.12748 + d="m 340.88042,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12749 + id="path4567" 42.12750 + style="fill:url(#linearGradient7171);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12751 + <rect 42.12752 + width="36.535122" 42.12753 + height="40.245304" 42.12754 + rx="4.7705498" 42.12755 + ry="4.7543411" 42.12756 + x="340.13873" 42.12757 + y="344.677" 42.12758 + id="rect4569" 42.12759 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12760 + <rect 42.12761 + width="35.480965" 42.12762 + height="40.245304" 42.12763 + rx="4.7705498" 42.12764 + ry="4.7543411" 42.12765 + x="340.13873" 42.12766 + y="344.677" 42.12767 + id="rect4571" 42.12768 + style="fill:url(#linearGradient7167);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12769 + <text 42.12770 + sodipodi:linespacing="100%" 42.12771 + x="344.29974" 42.12772 + y="363.09265" 42.12773 + transform="scale(1.0017033,0.9982996)" 42.12774 + id="text4573" 42.12775 + xml:space="preserve" 42.12776 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12777 + x="344.29974" 42.12778 + y="363.09265" 42.12779 + id="tspan4575">G</tspan></text> 42.12780 + <rect 42.12781 + width="51.494247" 42.12782 + height="52.044121" 42.12783 + rx="4.7705503" 42.12784 + ry="4.0114756" 42.12785 + x="333.36835" 42.12786 + y="344.01947" 42.12787 + id="rect4577" 42.12788 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12789 + <rect 42.12790 + width="51.494247" 42.12791 + height="52.044125" 42.12792 + rx="4.7705498" 42.12793 + ry="4.011476" 42.12794 + x="389.05386" 42.12795 + y="344.01947" 42.12796 + id="rect4579" 42.12797 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12798 + <rect 42.12799 + width="11.279431" 42.12800 + height="34.563782" 42.12801 + x="429.24463" 42.12802 + y="347.884" 42.12803 + id="rect4581" 42.12804 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12805 + <path 42.12806 + inkscape:connector-curvature="0" 42.12807 + d="m 431.40537,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12808 + id="path4583" 42.12809 + style="fill:url(#linearGradient7159);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12810 + <rect 42.12811 + width="33.469341" 42.12812 + height="12.974548" 42.12813 + rx="0" 42.12814 + ry="0" 42.12815 + x="398.14709" 42.12816 + y="383.07809" 42.12817 + id="rect4585" 42.12818 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12819 + <path 42.12820 + inkscape:connector-curvature="0" 42.12821 + d="m 429.70587,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12822 + id="path4587" 42.12823 + style="fill:url(#linearGradient7155);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12824 + <path 42.12825 + inkscape:connector-curvature="0" 42.12826 + d="m 396.56596,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12827 + id="path4589" 42.12828 + style="fill:url(#linearGradient7152);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12829 + <rect 42.12830 + width="36.535122" 42.12831 + height="40.245304" 42.12832 + rx="4.7705498" 42.12833 + ry="4.7543411" 42.12834 + x="395.82428" 42.12835 + y="344.677" 42.12836 + id="rect4591" 42.12837 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12838 + <rect 42.12839 + width="35.480965" 42.12840 + height="40.245304" 42.12841 + rx="4.7705498" 42.12842 + ry="4.7543411" 42.12843 + x="395.82428" 42.12844 + y="344.677" 42.12845 + id="rect4593" 42.12846 + style="fill:url(#linearGradient7148);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12847 + <text 42.12848 + sodipodi:linespacing="100%" 42.12849 + x="399.89059" 42.12850 + y="363.09265" 42.12851 + transform="scale(1.0017033,0.9982996)" 42.12852 + id="text4595" 42.12853 + xml:space="preserve" 42.12854 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12855 + x="399.89059" 42.12856 + y="363.09265" 42.12857 + id="tspan4597">H</tspan></text> 42.12858 + <rect 42.12859 + width="51.494247" 42.12860 + height="52.044121" 42.12861 + rx="4.7705503" 42.12862 + ry="4.0114756" 42.12863 + x="389.05386" 42.12864 + y="344.01947" 42.12865 + id="rect4599" 42.12866 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12867 + <rect 42.12868 + width="51.494247" 42.12869 + height="52.044125" 42.12870 + rx="4.7705498" 42.12871 + ry="4.011476" 42.12872 + x="444.73941" 42.12873 + y="344.01947" 42.12874 + id="rect4601" 42.12875 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12876 + <rect 42.12877 + width="11.279431" 42.12878 + height="34.563782" 42.12879 + x="484.93015" 42.12880 + y="347.884" 42.12881 + id="rect4603" 42.12882 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12883 + <path 42.12884 + inkscape:connector-curvature="0" 42.12885 + d="m 487.0909,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12886 + id="path4605" 42.12887 + style="fill:url(#linearGradient7140);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12888 + <rect 42.12889 + width="33.469341" 42.12890 + height="12.974548" 42.12891 + rx="0" 42.12892 + ry="0" 42.12893 + x="453.83261" 42.12894 + y="383.07809" 42.12895 + id="rect4607" 42.12896 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12897 + <path 42.12898 + inkscape:connector-curvature="0" 42.12899 + d="m 485.3914,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12900 + id="path4609" 42.12901 + style="fill:url(#linearGradient7136);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12902 + <path 42.12903 + inkscape:connector-curvature="0" 42.12904 + d="m 452.25149,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12905 + id="path4611" 42.12906 + style="fill:url(#linearGradient7133);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12907 + <rect 42.12908 + width="36.535122" 42.12909 + height="40.245304" 42.12910 + rx="4.7705498" 42.12911 + ry="4.7543411" 42.12912 + x="451.5098" 42.12913 + y="344.677" 42.12914 + id="rect4613" 42.12915 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12916 + <rect 42.12917 + width="35.480965" 42.12918 + height="40.245304" 42.12919 + rx="4.7705498" 42.12920 + ry="4.7543411" 42.12921 + x="451.5098" 42.12922 + y="344.677" 42.12923 + id="rect4615" 42.12924 + style="fill:url(#linearGradient7129);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12925 + <text 42.12926 + sodipodi:linespacing="100%" 42.12927 + x="455.48141" 42.12928 + y="363.09265" 42.12929 + transform="scale(1.0017033,0.9982996)" 42.12930 + id="text4617" 42.12931 + xml:space="preserve" 42.12932 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.12933 + x="455.48141" 42.12934 + y="363.09265" 42.12935 + id="tspan4619">J</tspan></text> 42.12936 + <rect 42.12937 + width="51.494247" 42.12938 + height="52.044121" 42.12939 + rx="4.7705503" 42.12940 + ry="4.0114756" 42.12941 + x="444.73941" 42.12942 + y="344.01947" 42.12943 + id="rect4621" 42.12944 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.12945 + <rect 42.12946 + width="51.494247" 42.12947 + height="52.044125" 42.12948 + rx="4.7705498" 42.12949 + ry="4.011476" 42.12950 + x="500.42493" 42.12951 + y="344.01947" 42.12952 + id="rect4623" 42.12953 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12954 + <rect 42.12955 + width="11.279431" 42.12956 + height="34.563782" 42.12957 + x="540.61566" 42.12958 + y="347.884" 42.12959 + id="rect4625" 42.12960 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12961 + <path 42.12962 + inkscape:connector-curvature="0" 42.12963 + d="m 542.77642,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.12964 + id="path4627" 42.12965 + style="fill:url(#linearGradient7120);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12966 + <rect 42.12967 + width="33.469341" 42.12968 + height="12.974548" 42.12969 + rx="0" 42.12970 + ry="0" 42.12971 + x="509.51813" 42.12972 + y="383.07809" 42.12973 + id="rect4629" 42.12974 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12975 + <path 42.12976 + inkscape:connector-curvature="0" 42.12977 + d="m 541.07692,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.12978 + id="path4631" 42.12979 + style="fill:url(#linearGradient7116);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12980 + <path 42.12981 + inkscape:connector-curvature="0" 42.12982 + d="m 507.93701,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.12983 + id="path4633" 42.12984 + style="fill:url(#linearGradient7113);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12985 + <rect 42.12986 + width="36.535122" 42.12987 + height="40.245304" 42.12988 + rx="4.7705498" 42.12989 + ry="4.7543411" 42.12990 + x="507.19531" 42.12991 + y="344.677" 42.12992 + id="rect4635" 42.12993 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.12994 + <rect 42.12995 + width="35.480965" 42.12996 + height="40.245304" 42.12997 + rx="4.7705498" 42.12998 + ry="4.7543411" 42.12999 + x="507.19531" 42.13000 + y="344.677" 42.13001 + id="rect4637" 42.13002 + style="fill:url(#linearGradient7109);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13003 + <text 42.13004 + sodipodi:linespacing="100%" 42.13005 + x="511.07227" 42.13006 + y="363.09265" 42.13007 + transform="scale(1.0017033,0.9982996)" 42.13008 + id="text4639" 42.13009 + xml:space="preserve" 42.13010 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13011 + x="511.07227" 42.13012 + y="363.09265" 42.13013 + id="tspan4641">K</tspan></text> 42.13014 + <rect 42.13015 + width="51.494247" 42.13016 + height="52.044121" 42.13017 + rx="4.7705503" 42.13018 + ry="4.0114756" 42.13019 + x="500.42493" 42.13020 + y="344.01947" 42.13021 + id="rect4643" 42.13022 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13023 + <rect 42.13024 + width="51.494247" 42.13025 + height="52.044125" 42.13026 + rx="4.7705498" 42.13027 + ry="4.011476" 42.13028 + x="556.11047" 42.13029 + y="344.01947" 42.13030 + id="rect4645" 42.13031 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13032 + <rect 42.13033 + width="11.279431" 42.13034 + height="34.563782" 42.13035 + x="596.30121" 42.13036 + y="347.884" 42.13037 + id="rect4647" 42.13038 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13039 + <path 42.13040 + inkscape:connector-curvature="0" 42.13041 + d="m 598.46196,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13042 + id="path4649" 42.13043 + style="fill:url(#linearGradient7101);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13044 + <rect 42.13045 + width="33.469341" 42.13046 + height="12.974548" 42.13047 + rx="0" 42.13048 + ry="0" 42.13049 + x="565.20367" 42.13050 + y="383.07809" 42.13051 + id="rect4651" 42.13052 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13053 + <path 42.13054 + inkscape:connector-curvature="0" 42.13055 + d="m 596.76246,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13056 + id="path4653" 42.13057 + style="fill:url(#linearGradient7097);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13058 + <path 42.13059 + inkscape:connector-curvature="0" 42.13060 + d="m 563.62255,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13061 + id="path4655" 42.13062 + style="fill:url(#linearGradient7094);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13063 + <rect 42.13064 + width="36.535122" 42.13065 + height="40.245304" 42.13066 + rx="4.7705498" 42.13067 + ry="4.7543411" 42.13068 + x="562.88086" 42.13069 + y="344.677" 42.13070 + id="rect4657" 42.13071 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13072 + <rect 42.13073 + width="35.480965" 42.13074 + height="40.245304" 42.13075 + rx="4.7705498" 42.13076 + ry="4.7543411" 42.13077 + x="562.88086" 42.13078 + y="344.677" 42.13079 + id="rect4659" 42.13080 + style="fill:url(#linearGradient7090);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13081 + <text 42.13082 + sodipodi:linespacing="100%" 42.13083 + x="566.66309" 42.13084 + y="363.09265" 42.13085 + transform="scale(1.0017033,0.9982996)" 42.13086 + id="text4661" 42.13087 + xml:space="preserve" 42.13088 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13089 + x="566.66309" 42.13090 + y="363.09265" 42.13091 + id="tspan4663">L</tspan></text> 42.13092 + <rect 42.13093 + width="51.494247" 42.13094 + height="52.044121" 42.13095 + rx="4.7705503" 42.13096 + ry="4.0114756" 42.13097 + x="556.11047" 42.13098 + y="344.01947" 42.13099 + id="rect4665" 42.13100 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13101 + <rect 42.13102 + width="51.494247" 42.13103 + height="52.044125" 42.13104 + rx="4.7705498" 42.13105 + ry="4.011476" 42.13106 + x="611.79602" 42.13107 + y="344.01947" 42.13108 + id="rect4667" 42.13109 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13110 + <rect 42.13111 + width="11.279431" 42.13112 + height="34.563782" 42.13113 + x="651.98676" 42.13114 + y="347.884" 42.13115 + id="rect4669" 42.13116 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13117 + <path 42.13118 + inkscape:connector-curvature="0" 42.13119 + d="m 654.14752,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13120 + id="path4671" 42.13121 + style="fill:url(#linearGradient7082);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13122 + <rect 42.13123 + width="33.469341" 42.13124 + height="12.974548" 42.13125 + rx="0" 42.13126 + ry="0" 42.13127 + x="620.88922" 42.13128 + y="383.07809" 42.13129 + id="rect4673" 42.13130 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13131 + <path 42.13132 + inkscape:connector-curvature="0" 42.13133 + d="m 652.44802,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13134 + id="path4675" 42.13135 + style="fill:url(#linearGradient7078);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13136 + <path 42.13137 + inkscape:connector-curvature="0" 42.13138 + d="m 619.30811,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13139 + id="path4677" 42.13140 + style="fill:url(#linearGradient7075);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13141 + <rect 42.13142 + width="36.535122" 42.13143 + height="40.245304" 42.13144 + rx="4.7705498" 42.13145 + ry="4.7543411" 42.13146 + x="618.56641" 42.13147 + y="344.677" 42.13148 + id="rect4679" 42.13149 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13150 + <rect 42.13151 + width="35.480965" 42.13152 + height="40.245304" 42.13153 + rx="4.7705498" 42.13154 + ry="4.7543411" 42.13155 + x="618.56641" 42.13156 + y="344.677" 42.13157 + id="rect4681" 42.13158 + style="fill:url(#linearGradient7071);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13159 + <text 42.13160 + sodipodi:linespacing="100%" 42.13161 + x="622.25397" 42.13162 + y="363.09265" 42.13163 + transform="scale(1.0017033,0.9982996)" 42.13164 + id="text4683" 42.13165 + xml:space="preserve" 42.13166 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13167 + x="622.25397" 42.13168 + y="363.09265" 42.13169 + id="tspan4685">Ö</tspan></text> 42.13170 + <rect 42.13171 + width="51.494247" 42.13172 + height="52.044121" 42.13173 + rx="4.7705503" 42.13174 + ry="4.0114756" 42.13175 + x="611.79602" 42.13176 + y="344.01947" 42.13177 + id="rect4687" 42.13178 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13179 + <rect 42.13180 + width="51.494247" 42.13181 + height="52.044125" 42.13182 + rx="4.7705498" 42.13183 + ry="4.011476" 42.13184 + x="667.48157" 42.13185 + y="344.01947" 42.13186 + id="rect4689" 42.13187 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13188 + <rect 42.13189 + width="11.279431" 42.13190 + height="34.563782" 42.13191 + x="707.6723" 42.13192 + y="347.884" 42.13193 + id="rect4691" 42.13194 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13195 + <path 42.13196 + inkscape:connector-curvature="0" 42.13197 + d="m 709.83305,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13198 + id="path4693" 42.13199 + style="fill:url(#linearGradient7062);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13200 + <rect 42.13201 + width="33.469341" 42.13202 + height="12.974548" 42.13203 + rx="0" 42.13204 + ry="0" 42.13205 + x="676.57477" 42.13206 + y="383.07809" 42.13207 + id="rect4695" 42.13208 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13209 + <path 42.13210 + inkscape:connector-curvature="0" 42.13211 + d="m 708.13355,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13212 + id="path4697" 42.13213 + style="fill:url(#linearGradient7058);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13214 + <path 42.13215 + inkscape:connector-curvature="0" 42.13216 + d="m 674.99364,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13217 + id="path4699" 42.13218 + style="fill:url(#linearGradient7055);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13219 + <rect 42.13220 + width="36.535122" 42.13221 + height="40.245304" 42.13222 + rx="4.7705498" 42.13223 + ry="4.7543411" 42.13224 + x="674.25195" 42.13225 + y="344.677" 42.13226 + id="rect4701" 42.13227 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13228 + <rect 42.13229 + width="35.480965" 42.13230 + height="40.245304" 42.13231 + rx="4.7705498" 42.13232 + ry="4.7543411" 42.13233 + x="674.25195" 42.13234 + y="344.677" 42.13235 + id="rect4703" 42.13236 + style="fill:url(#linearGradient7051);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13237 + <text 42.13238 + sodipodi:linespacing="100%" 42.13239 + x="677.84479" 42.13240 + y="363.09265" 42.13241 + transform="scale(1.0017033,0.9982996)" 42.13242 + id="text4705" 42.13243 + xml:space="preserve" 42.13244 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13245 + x="677.84479" 42.13246 + y="363.09265" 42.13247 + id="tspan4707">Ä</tspan></text> 42.13248 + <rect 42.13249 + width="51.494247" 42.13250 + height="52.044121" 42.13251 + rx="4.7705503" 42.13252 + ry="4.0114756" 42.13253 + x="667.48157" 42.13254 + y="344.01947" 42.13255 + id="rect4709" 42.13256 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13257 + <rect 42.13258 + width="51.494247" 42.13259 + height="52.044125" 42.13260 + rx="4.7705498" 42.13261 + ry="4.011476" 42.13262 + x="723.16705" 42.13263 + y="344.01947" 42.13264 + id="rect4711" 42.13265 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13266 + <rect 42.13267 + width="11.279431" 42.13268 + height="34.563782" 42.13269 + x="763.35785" 42.13270 + y="347.884" 42.13271 + id="rect4713" 42.13272 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13273 + <path 42.13274 + inkscape:connector-curvature="0" 42.13275 + d="m 765.51857,350.89908 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13276 + id="path4715" 42.13277 + style="fill:url(#linearGradient7043);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13278 + <rect 42.13279 + width="33.469341" 42.13280 + height="12.974548" 42.13281 + rx="0" 42.13282 + ry="0" 42.13283 + x="732.26031" 42.13284 + y="383.07809" 42.13285 + id="rect4717" 42.13286 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13287 + <path 42.13288 + inkscape:connector-curvature="0" 42.13289 + d="m 763.81907,380.03147 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13290 + id="path4719" 42.13291 + style="fill:url(#linearGradient7039);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13292 + <path 42.13293 + inkscape:connector-curvature="0" 42.13294 + d="m 730.67916,379.92641 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13295 + id="path4721" 42.13296 + style="fill:url(#linearGradient7035);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13297 + <rect 42.13298 + width="36.535122" 42.13299 + height="40.245304" 42.13300 + rx="4.7705498" 42.13301 + ry="4.7543411" 42.13302 + x="729.9375" 42.13303 + y="344.677" 42.13304 + id="rect4723" 42.13305 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13306 + <rect 42.13307 + width="35.480965" 42.13308 + height="40.245304" 42.13309 + rx="4.7705498" 42.13310 + ry="4.7543411" 42.13311 + x="729.9375" 42.13312 + y="344.677" 42.13313 + id="rect4725" 42.13314 + style="fill:url(#linearGradient7031);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13315 + <text 42.13316 + sodipodi:linespacing="100%" 42.13317 + x="733.43561" 42.13318 + y="363.09265" 42.13319 + transform="scale(1.0017033,0.9982996)" 42.13320 + id="text4727" 42.13321 + xml:space="preserve" 42.13322 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13323 + x="733.43561" 42.13324 + y="363.09265" 42.13325 + id="tspan4729" /></text> 42.13326 + <rect 42.13327 + width="51.494247" 42.13328 + height="52.044121" 42.13329 + rx="4.7705503" 42.13330 + ry="4.0114756" 42.13331 + x="723.16705" 42.13332 + y="344.01947" 42.13333 + id="rect4731" 42.13334 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13335 + <rect 42.13336 + width="51.494247" 42.13337 + height="52.044125" 42.13338 + rx="4.7705498" 42.13339 + ry="4.011476" 42.13340 + x="80.826691" 42.13341 + y="400.58801" 42.13342 + id="rect4829" 42.13343 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13344 + <rect 42.13345 + width="11.279431" 42.13346 + height="34.563782" 42.13347 + x="121.01735" 42.13348 + y="404.45255" 42.13349 + id="rect4831" 42.13350 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13351 + <path 42.13352 + inkscape:connector-curvature="0" 42.13353 + d="m 123.17818,407.46763 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.13354 + id="path4833" 42.13355 + style="fill:url(#linearGradient7023);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13356 + <rect 42.13357 + width="33.469341" 42.13358 + height="12.974548" 42.13359 + rx="0" 42.13360 + ry="0" 42.13361 + x="89.919884" 42.13362 + y="439.64664" 42.13363 + id="rect4835" 42.13364 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13365 + <path 42.13366 + inkscape:connector-curvature="0" 42.13367 + d="m 121.47866,436.60002 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.13368 + id="path4837" 42.13369 + style="fill:url(#linearGradient7019);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13370 + <path 42.13371 + inkscape:connector-curvature="0" 42.13372 + d="m 88.33873,436.49496 -7.48448,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13373 + id="path4839" 42.13374 + style="fill:url(#linearGradient7016);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13375 + <rect 42.13376 + width="36.535122" 42.13377 + height="40.245304" 42.13378 + rx="4.7705498" 42.13379 + ry="4.7543411" 42.13380 + x="87.597008" 42.13381 + y="401.24554" 42.13382 + id="rect4841" 42.13383 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13384 + <rect 42.13385 + width="35.480965" 42.13386 + height="40.245304" 42.13387 + rx="4.7705498" 42.13388 + ry="4.7543411" 42.13389 + x="87.597008" 42.13390 + y="401.24554" 42.13391 + id="rect4843" 42.13392 + style="fill:url(#linearGradient7012);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13393 + <text 42.13394 + sodipodi:linespacing="100%" 42.13395 + x="90.190865" 42.13396 + y="419.75751" 42.13397 + transform="scale(1.0017033,0.9982996)" 42.13398 + id="text4845" 42.13399 + xml:space="preserve" 42.13400 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13401 + x="90.190865" 42.13402 + y="419.75751" 42.13403 + id="tspan4847">></tspan></text> 42.13404 + <rect 42.13405 + width="51.494247" 42.13406 + height="52.044121" 42.13407 + rx="4.7705503" 42.13408 + ry="4.0114756" 42.13409 + x="80.826691" 42.13410 + y="400.58801" 42.13411 + id="rect4849" 42.13412 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13413 + <rect 42.13414 + width="51.494247" 42.13415 + height="52.044125" 42.13416 + rx="4.7705498" 42.13417 + ry="4.011476" 42.13418 + x="136.51221" 42.13419 + y="400.58801" 42.13420 + id="rect4851" 42.13421 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13422 + <rect 42.13423 + width="11.279431" 42.13424 + height="34.563782" 42.13425 + x="176.70296" 42.13426 + y="404.45255" 42.13427 + id="rect4853" 42.13428 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13429 + <path 42.13430 + inkscape:connector-curvature="0" 42.13431 + d="m 178.86372,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13432 + id="path4855" 42.13433 + style="fill:url(#linearGradient7004);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13434 + <rect 42.13435 + width="33.469341" 42.13436 + height="12.974548" 42.13437 + rx="0" 42.13438 + ry="0" 42.13439 + x="145.60542" 42.13440 + y="439.64664" 42.13441 + id="rect4857" 42.13442 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13443 + <path 42.13444 + inkscape:connector-curvature="0" 42.13445 + d="m 177.16422,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13446 + id="path4859" 42.13447 + style="fill:url(#linearGradient6999);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13448 + <path 42.13449 + inkscape:connector-curvature="0" 42.13450 + d="m 144.02431,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13451 + id="path4861" 42.13452 + style="fill:url(#linearGradient6996);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13453 + <rect 42.13454 + width="36.535122" 42.13455 + height="40.245304" 42.13456 + rx="4.7705498" 42.13457 + ry="4.7543411" 42.13458 + x="143.28261" 42.13459 + y="401.24554" 42.13460 + id="rect4863" 42.13461 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13462 + <rect 42.13463 + width="35.480965" 42.13464 + height="40.245304" 42.13465 + rx="4.7705498" 42.13466 + ry="4.7543411" 42.13467 + x="143.28261" 42.13468 + y="401.24554" 42.13469 + id="rect4865" 42.13470 + style="fill:url(#linearGradient6992);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13471 + <text 42.13472 + sodipodi:linespacing="100%" 42.13473 + x="145.78174" 42.13474 + y="419.75748" 42.13475 + transform="scale(1.0017033,0.9982996)" 42.13476 + id="text4867" 42.13477 + xml:space="preserve" 42.13478 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13479 + x="145.78174" 42.13480 + y="419.75748" 42.13481 + id="tspan4869">Y</tspan></text> 42.13482 + <rect 42.13483 + width="51.494247" 42.13484 + height="52.044121" 42.13485 + rx="4.7705503" 42.13486 + ry="4.0114756" 42.13487 + x="136.51221" 42.13488 + y="400.58801" 42.13489 + id="rect4871" 42.13490 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13491 + <rect 42.13492 + width="51.494247" 42.13493 + height="52.044125" 42.13494 + rx="4.7705498" 42.13495 + ry="4.011476" 42.13496 + x="192.19775" 42.13497 + y="400.58801" 42.13498 + id="rect4873" 42.13499 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13500 + <rect 42.13501 + width="11.279431" 42.13502 + height="34.563782" 42.13503 + x="232.38849" 42.13504 + y="404.45255" 42.13505 + id="rect4875" 42.13506 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13507 + <path 42.13508 + inkscape:connector-curvature="0" 42.13509 + d="m 234.54926,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13510 + id="path4877" 42.13511 + style="fill:url(#linearGradient6984);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13512 + <rect 42.13513 + width="33.469341" 42.13514 + height="12.974548" 42.13515 + rx="0" 42.13516 + ry="0" 42.13517 + x="201.29095" 42.13518 + y="439.64664" 42.13519 + id="rect4879" 42.13520 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13521 + <path 42.13522 + inkscape:connector-curvature="0" 42.13523 + d="m 232.84976,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13524 + id="path4881" 42.13525 + style="fill:url(#linearGradient6980);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13526 + <path 42.13527 + inkscape:connector-curvature="0" 42.13528 + d="m 199.70985,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13529 + id="path4883" 42.13530 + style="fill:url(#linearGradient6977);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13531 + <rect 42.13532 + width="36.535122" 42.13533 + height="40.245304" 42.13534 + rx="4.7705498" 42.13535 + ry="4.7543411" 42.13536 + x="198.96814" 42.13537 + y="401.24554" 42.13538 + id="rect4885" 42.13539 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13540 + <rect 42.13541 + width="35.480965" 42.13542 + height="40.245304" 42.13543 + rx="4.7705498" 42.13544 + ry="4.7543411" 42.13545 + x="198.96814" 42.13546 + y="401.24554" 42.13547 + id="rect4887" 42.13548 + style="fill:url(#linearGradient6973);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13549 + <text 42.13550 + sodipodi:linespacing="100%" 42.13551 + x="203.3692" 42.13552 + y="419.75757" 42.13553 + transform="scale(1.0017033,0.9982996)" 42.13554 + id="text4889" 42.13555 + xml:space="preserve" 42.13556 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13557 + x="203.3692" 42.13558 + y="419.75757" 42.13559 + id="tspan4891">X</tspan></text> 42.13560 + <rect 42.13561 + width="51.494247" 42.13562 + height="52.044121" 42.13563 + rx="4.7705503" 42.13564 + ry="4.0114756" 42.13565 + x="192.19775" 42.13566 + y="400.58801" 42.13567 + id="rect4893" 42.13568 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13569 + <rect 42.13570 + width="51.494247" 42.13571 + height="52.044125" 42.13572 + rx="4.7705498" 42.13573 + ry="4.011476" 42.13574 + x="247.8833" 42.13575 + y="400.58801" 42.13576 + id="rect4895" 42.13577 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13578 + <rect 42.13579 + width="11.279431" 42.13580 + height="34.563782" 42.13581 + x="288.07404" 42.13582 + y="404.45255" 42.13583 + id="rect4897" 42.13584 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13585 + <path 42.13586 + inkscape:connector-curvature="0" 42.13587 + d="m 290.2348,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13588 + id="path4899" 42.13589 + style="fill:url(#linearGradient6965);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13590 + <rect 42.13591 + width="33.469341" 42.13592 + height="12.974548" 42.13593 + rx="0" 42.13594 + ry="0" 42.13595 + x="256.9765" 42.13596 + y="439.64664" 42.13597 + id="rect4901" 42.13598 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13599 + <path 42.13600 + inkscape:connector-curvature="0" 42.13601 + d="m 288.5353,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13602 + id="path4903" 42.13603 + style="fill:url(#linearGradient6961);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13604 + <path 42.13605 + inkscape:connector-curvature="0" 42.13606 + d="m 255.39539,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13607 + id="path4905" 42.13608 + style="fill:url(#linearGradient6958);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13609 + <rect 42.13610 + width="36.535122" 42.13611 + height="40.245304" 42.13612 + rx="4.7705498" 42.13613 + ry="4.7543411" 42.13614 + x="254.65369" 42.13615 + y="401.24554" 42.13616 + id="rect4907" 42.13617 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13618 + <rect 42.13619 + width="35.480965" 42.13620 + height="40.245304" 42.13621 + rx="4.7705498" 42.13622 + ry="4.7543411" 42.13623 + x="254.65369" 42.13624 + y="401.24554" 42.13625 + id="rect4909" 42.13626 + style="fill:url(#linearGradient6954);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13627 + <text 42.13628 + sodipodi:linespacing="100%" 42.13629 + x="258.96005" 42.13630 + y="419.75757" 42.13631 + transform="scale(1.0017033,0.9982996)" 42.13632 + id="text4911" 42.13633 + xml:space="preserve" 42.13634 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13635 + x="258.96005" 42.13636 + y="419.75757" 42.13637 + id="tspan4913">C</tspan></text> 42.13638 + <rect 42.13639 + width="51.494247" 42.13640 + height="52.044121" 42.13641 + rx="4.7705503" 42.13642 + ry="4.0114756" 42.13643 + x="247.8833" 42.13644 + y="400.58801" 42.13645 + id="rect4915" 42.13646 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13647 + <rect 42.13648 + width="51.494247" 42.13649 + height="52.044125" 42.13650 + rx="4.7705498" 42.13651 + ry="4.011476" 42.13652 + x="303.56885" 42.13653 + y="400.58801" 42.13654 + id="rect4917" 42.13655 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13656 + <rect 42.13657 + width="11.279431" 42.13658 + height="34.563782" 42.13659 + x="343.75958" 42.13660 + y="404.45255" 42.13661 + id="rect4919" 42.13662 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13663 + <path 42.13664 + inkscape:connector-curvature="0" 42.13665 + d="m 345.92033,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13666 + id="path4921" 42.13667 + style="fill:url(#linearGradient6946);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13668 + <rect 42.13669 + width="33.469341" 42.13670 + height="12.974548" 42.13671 + rx="0" 42.13672 + ry="0" 42.13673 + x="312.66205" 42.13674 + y="439.64664" 42.13675 + id="rect4923" 42.13676 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13677 + <path 42.13678 + inkscape:connector-curvature="0" 42.13679 + d="m 344.22083,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13680 + id="path4925" 42.13681 + style="fill:url(#linearGradient6942);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13682 + <path 42.13683 + inkscape:connector-curvature="0" 42.13684 + d="m 311.08092,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13685 + id="path4927" 42.13686 + style="fill:url(#linearGradient6938);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13687 + <rect 42.13688 + width="36.535122" 42.13689 + height="40.245304" 42.13690 + rx="4.7705498" 42.13691 + ry="4.7543411" 42.13692 + x="310.33923" 42.13693 + y="401.24554" 42.13694 + id="rect4929" 42.13695 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13696 + <rect 42.13697 + width="35.480965" 42.13698 + height="40.245304" 42.13699 + rx="4.7705498" 42.13700 + ry="4.7543411" 42.13701 + x="310.33923" 42.13702 + y="401.24554" 42.13703 + id="rect4931" 42.13704 + style="fill:url(#linearGradient6934);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13705 + <text 42.13706 + sodipodi:linespacing="100%" 42.13707 + x="314.5509" 42.13708 + y="419.75757" 42.13709 + transform="scale(1.0017033,0.9982996)" 42.13710 + id="text4933" 42.13711 + xml:space="preserve" 42.13712 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13713 + x="314.5509" 42.13714 + y="419.75757" 42.13715 + id="tspan4935">V</tspan></text> 42.13716 + <rect 42.13717 + width="51.494247" 42.13718 + height="52.044121" 42.13719 + rx="4.7705503" 42.13720 + ry="4.0114756" 42.13721 + x="303.56885" 42.13722 + y="400.58801" 42.13723 + id="rect4937" 42.13724 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13725 + <rect 42.13726 + width="51.494247" 42.13727 + height="52.044125" 42.13728 + rx="4.7705498" 42.13729 + ry="4.011476" 42.13730 + x="359.25436" 42.13731 + y="400.58801" 42.13732 + id="rect4939" 42.13733 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13734 + <rect 42.13735 + width="11.279431" 42.13736 + height="34.563782" 42.13737 + x="399.44513" 42.13738 + y="404.45255" 42.13739 + id="rect4941" 42.13740 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13741 + <path 42.13742 + inkscape:connector-curvature="0" 42.13743 + d="m 401.60587,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13744 + id="path4943" 42.13745 + style="fill:url(#linearGradient6926);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13746 + <rect 42.13747 + width="33.469341" 42.13748 + height="12.974548" 42.13749 + rx="0" 42.13750 + ry="0" 42.13751 + x="368.3476" 42.13752 + y="439.64664" 42.13753 + id="rect4945" 42.13754 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13755 + <path 42.13756 + inkscape:connector-curvature="0" 42.13757 + d="m 399.90637,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13758 + id="path4947" 42.13759 + style="fill:url(#linearGradient6922);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13760 + <path 42.13761 + inkscape:connector-curvature="0" 42.13762 + d="m 366.76646,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13763 + id="path4949" 42.13764 + style="fill:url(#linearGradient6919);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13765 + <rect 42.13766 + width="36.535122" 42.13767 + height="40.245304" 42.13768 + rx="4.7705498" 42.13769 + ry="4.7543411" 42.13770 + x="366.02478" 42.13771 + y="401.24554" 42.13772 + id="rect4951" 42.13773 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13774 + <rect 42.13775 + width="35.480965" 42.13776 + height="40.245304" 42.13777 + rx="4.7705498" 42.13778 + ry="4.7543411" 42.13779 + x="366.02478" 42.13780 + y="401.24554" 42.13781 + id="rect4953" 42.13782 + style="fill:url(#linearGradient6915);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13783 + <text 42.13784 + sodipodi:linespacing="100%" 42.13785 + x="370.14175" 42.13786 + y="419.75757" 42.13787 + transform="scale(1.0017033,0.9982996)" 42.13788 + id="text4955" 42.13789 + xml:space="preserve" 42.13790 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13791 + x="370.14175" 42.13792 + y="419.75757" 42.13793 + id="tspan4957">B</tspan></text> 42.13794 + <rect 42.13795 + width="51.494247" 42.13796 + height="52.044121" 42.13797 + rx="4.7705503" 42.13798 + ry="4.0114756" 42.13799 + x="359.25436" 42.13800 + y="400.58801" 42.13801 + id="rect4959" 42.13802 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13803 + <rect 42.13804 + width="51.494247" 42.13805 + height="52.044125" 42.13806 + rx="4.7705498" 42.13807 + ry="4.011476" 42.13808 + x="414.93991" 42.13809 + y="400.58801" 42.13810 + id="rect4961" 42.13811 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13812 + <rect 42.13813 + width="11.279431" 42.13814 + height="34.563782" 42.13815 + x="455.13065" 42.13816 + y="404.45255" 42.13817 + id="rect4963" 42.13818 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13819 + <path 42.13820 + inkscape:connector-curvature="0" 42.13821 + d="m 457.2914,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13822 + id="path4965" 42.13823 + style="fill:url(#linearGradient6907);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13824 + <rect 42.13825 + width="33.469341" 42.13826 + height="12.974548" 42.13827 + rx="0" 42.13828 + ry="0" 42.13829 + x="424.03311" 42.13830 + y="439.64664" 42.13831 + id="rect4967" 42.13832 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13833 + <path 42.13834 + inkscape:connector-curvature="0" 42.13835 + d="m 455.5919,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13836 + id="path4969" 42.13837 + style="fill:url(#linearGradient6903);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13838 + <path 42.13839 + inkscape:connector-curvature="0" 42.13840 + d="m 422.45199,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13841 + id="path4971" 42.13842 + style="fill:url(#linearGradient6900);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13843 + <rect 42.13844 + width="36.535122" 42.13845 + height="40.245304" 42.13846 + rx="4.7705498" 42.13847 + ry="4.7543411" 42.13848 + x="421.7103" 42.13849 + y="401.24554" 42.13850 + id="rect4973" 42.13851 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13852 + <rect 42.13853 + width="35.480965" 42.13854 + height="40.245304" 42.13855 + rx="4.7705498" 42.13856 + ry="4.7543411" 42.13857 + x="421.7103" 42.13858 + y="401.24554" 42.13859 + id="rect4975" 42.13860 + style="fill:url(#linearGradient6896);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13861 + <text 42.13862 + sodipodi:linespacing="100%" 42.13863 + x="425.73257" 42.13864 + y="419.75757" 42.13865 + transform="scale(1.0017033,0.9982996)" 42.13866 + id="text4977" 42.13867 + xml:space="preserve" 42.13868 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13869 + x="425.73257" 42.13870 + y="419.75757" 42.13871 + id="tspan4979">N</tspan></text> 42.13872 + <rect 42.13873 + width="51.494247" 42.13874 + height="52.044121" 42.13875 + rx="4.7705503" 42.13876 + ry="4.0114756" 42.13877 + x="414.93991" 42.13878 + y="400.58801" 42.13879 + id="rect4981" 42.13880 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13881 + <rect 42.13882 + width="51.494247" 42.13883 + height="52.044125" 42.13884 + rx="4.7705498" 42.13885 + ry="4.011476" 42.13886 + x="470.62543" 42.13887 + y="400.58801" 42.13888 + id="rect4983" 42.13889 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13890 + <rect 42.13891 + width="11.279431" 42.13892 + height="34.563782" 42.13893 + x="510.81616" 42.13894 + y="404.45255" 42.13895 + id="rect4985" 42.13896 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13897 + <path 42.13898 + inkscape:connector-curvature="0" 42.13899 + d="m 512.97692,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13900 + id="path4987" 42.13901 + style="fill:url(#linearGradient6887);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13902 + <rect 42.13903 + width="33.469341" 42.13904 + height="12.974548" 42.13905 + rx="0" 42.13906 + ry="0" 42.13907 + x="479.71863" 42.13908 + y="439.64664" 42.13909 + id="rect4989" 42.13910 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13911 + <path 42.13912 + inkscape:connector-curvature="0" 42.13913 + d="m 511.27742,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13914 + id="path4991" 42.13915 + style="fill:url(#linearGradient6883);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13916 + <path 42.13917 + inkscape:connector-curvature="0" 42.13918 + d="m 478.13751,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13919 + id="path4993" 42.13920 + style="fill:url(#linearGradient6880);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13921 + <rect 42.13922 + width="36.535122" 42.13923 + height="40.245304" 42.13924 + rx="4.7705498" 42.13925 + ry="4.7543411" 42.13926 + x="477.39581" 42.13927 + y="401.24554" 42.13928 + id="rect4995" 42.13929 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13930 + <rect 42.13931 + width="35.480965" 42.13932 + height="40.245304" 42.13933 + rx="4.7705498" 42.13934 + ry="4.7543411" 42.13935 + x="477.39581" 42.13936 + y="401.24554" 42.13937 + id="rect4997" 42.13938 + style="fill:url(#linearGradient6876);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13939 + <text 42.13940 + sodipodi:linespacing="100%" 42.13941 + x="481.32343" 42.13942 + y="419.75757" 42.13943 + transform="scale(1.0017033,0.9982996)" 42.13944 + id="text4999" 42.13945 + xml:space="preserve" 42.13946 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.13947 + x="481.32343" 42.13948 + y="419.75757" 42.13949 + id="tspan5001">M</tspan></text> 42.13950 + <rect 42.13951 + width="51.494247" 42.13952 + height="52.044121" 42.13953 + rx="4.7705503" 42.13954 + ry="4.0114756" 42.13955 + x="470.62543" 42.13956 + y="400.58801" 42.13957 + id="rect5003" 42.13958 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.13959 + <rect 42.13960 + width="51.494247" 42.13961 + height="52.044125" 42.13962 + rx="4.7705498" 42.13963 + ry="4.011476" 42.13964 + x="526.31097" 42.13965 + y="400.58801" 42.13966 + id="rect5005" 42.13967 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13968 + <rect 42.13969 + width="11.279431" 42.13970 + height="34.563782" 42.13971 + x="566.50171" 42.13972 + y="404.45255" 42.13973 + id="rect5007" 42.13974 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13975 + <path 42.13976 + inkscape:connector-curvature="0" 42.13977 + d="m 568.66246,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.13978 + id="path5009" 42.13979 + style="fill:url(#linearGradient6868);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13980 + <rect 42.13981 + width="33.469341" 42.13982 + height="12.974548" 42.13983 + rx="0" 42.13984 + ry="0" 42.13985 + x="535.40417" 42.13986 + y="439.64664" 42.13987 + id="rect5011" 42.13988 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13989 + <path 42.13990 + inkscape:connector-curvature="0" 42.13991 + d="m 566.96296,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.13992 + id="path5013" 42.13993 + style="fill:url(#linearGradient6864);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13994 + <path 42.13995 + inkscape:connector-curvature="0" 42.13996 + d="m 533.82305,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.13997 + id="path5015" 42.13998 + style="fill:url(#linearGradient6860);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.13999 + <rect 42.14000 + width="36.535122" 42.14001 + height="40.245304" 42.14002 + rx="4.7705498" 42.14003 + ry="4.7543411" 42.14004 + x="533.08136" 42.14005 + y="401.24554" 42.14006 + id="rect5017" 42.14007 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14008 + <rect 42.14009 + width="35.480965" 42.14010 + height="40.245304" 42.14011 + rx="4.7705498" 42.14012 + ry="4.7543411" 42.14013 + x="533.08136" 42.14014 + y="401.24554" 42.14015 + id="rect5019" 42.14016 + style="fill:url(#linearGradient6855);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14017 + <text 42.14018 + x="536.91425" 42.14019 + y="417.82761" 42.14020 + transform="scale(1.0017033,0.9982996)" 42.14021 + id="text5021" 42.14022 + xml:space="preserve" 42.14023 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.14024 + sodipodi:linespacing="100%"><tspan 42.14025 + x="536.91425" 42.14026 + y="417.82761" 42.14027 + id="tspan5023">;</tspan></text> 42.14028 + <rect 42.14029 + width="51.494247" 42.14030 + height="52.044121" 42.14031 + rx="4.7705503" 42.14032 + ry="4.0114756" 42.14033 + x="526.31097" 42.14034 + y="400.58801" 42.14035 + id="rect5025" 42.14036 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14037 + <rect 42.14038 + width="51.494247" 42.14039 + height="52.044125" 42.14040 + rx="4.7705498" 42.14041 + ry="4.011476" 42.14042 + x="581.99652" 42.14043 + y="400.58801" 42.14044 + id="rect5027" 42.14045 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14046 + <rect 42.14047 + width="11.279431" 42.14048 + height="34.563782" 42.14049 + x="622.18726" 42.14050 + y="404.45255" 42.14051 + id="rect5029" 42.14052 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14053 + <path 42.14054 + inkscape:connector-curvature="0" 42.14055 + d="m 624.34802,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14056 + id="path5031" 42.14057 + style="fill:url(#linearGradient6847);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14058 + <rect 42.14059 + width="33.469341" 42.14060 + height="12.974548" 42.14061 + rx="0" 42.14062 + ry="0" 42.14063 + x="591.08972" 42.14064 + y="439.64664" 42.14065 + id="rect5033" 42.14066 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14067 + <path 42.14068 + inkscape:connector-curvature="0" 42.14069 + d="m 622.64852,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14070 + id="path5035" 42.14071 + style="fill:url(#linearGradient6843);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14072 + <path 42.14073 + inkscape:connector-curvature="0" 42.14074 + d="m 589.50861,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.14075 + id="path5037" 42.14076 + style="fill:url(#linearGradient6840);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14077 + <rect 42.14078 + width="36.535122" 42.14079 + height="40.245304" 42.14080 + rx="4.7705498" 42.14081 + ry="4.7543411" 42.14082 + x="588.76691" 42.14083 + y="401.24554" 42.14084 + id="rect5039" 42.14085 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14086 + <rect 42.14087 + width="35.480965" 42.14088 + height="40.245304" 42.14089 + rx="4.7705498" 42.14090 + ry="4.7543411" 42.14091 + x="588.76691" 42.14092 + y="401.24554" 42.14093 + id="rect5041" 42.14094 + style="fill:url(#linearGradient6836);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14095 + <text 42.14096 + x="592.10052" 42.14097 + y="417.73624" 42.14098 + transform="scale(1.0017033,0.9982996)" 42.14099 + id="text5043" 42.14100 + xml:space="preserve" 42.14101 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.14102 + sodipodi:linespacing="100%"><tspan 42.14103 + x="592.10052" 42.14104 + y="417.73624" 42.14105 + id="tspan5045">:</tspan></text> 42.14106 + <rect 42.14107 + width="51.494247" 42.14108 + height="52.044121" 42.14109 + rx="4.7705503" 42.14110 + ry="4.0114756" 42.14111 + x="581.99652" 42.14112 + y="400.58801" 42.14113 + id="rect5047" 42.14114 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14115 + <rect 42.14116 + width="51.494247" 42.14117 + height="52.044125" 42.14118 + rx="4.7705498" 42.14119 + ry="4.011476" 42.14120 + x="637.68207" 42.14121 + y="400.58801" 42.14122 + id="rect5049" 42.14123 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14124 + <rect 42.14125 + width="11.279431" 42.14126 + height="34.563782" 42.14127 + x="677.8728" 42.14128 + y="404.45255" 42.14129 + id="rect5051" 42.14130 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14131 + <path 42.14132 + inkscape:connector-curvature="0" 42.14133 + d="m 680.03355,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14134 + id="path5053" 42.14135 + style="fill:url(#linearGradient6827);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14136 + <rect 42.14137 + width="33.469341" 42.14138 + height="12.974548" 42.14139 + rx="0" 42.14140 + ry="0" 42.14141 + x="646.77527" 42.14142 + y="439.64664" 42.14143 + id="rect5055" 42.14144 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14145 + <path 42.14146 + inkscape:connector-curvature="0" 42.14147 + d="m 678.33405,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14148 + id="path5057" 42.14149 + style="fill:url(#linearGradient6823);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14150 + <path 42.14151 + inkscape:connector-curvature="0" 42.14152 + d="m 645.19414,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.14153 + id="path5059" 42.14154 + style="fill:url(#linearGradient6820);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14155 + <rect 42.14156 + width="36.535122" 42.14157 + height="40.245304" 42.14158 + rx="4.7705498" 42.14159 + ry="4.7543411" 42.14160 + x="644.45245" 42.14161 + y="401.24554" 42.14162 + id="rect5061" 42.14163 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14164 + <rect 42.14165 + width="35.480965" 42.14166 + height="40.245304" 42.14167 + rx="4.7705498" 42.14168 + ry="4.7543411" 42.14169 + x="644.45245" 42.14170 + y="401.24554" 42.14171 + id="rect5063" 42.14172 + style="fill:url(#linearGradient6816);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14173 + <text 42.14174 + x="648.09595" 42.14175 + y="408.66858" 42.14176 + transform="scale(1.0017033,0.9982996)" 42.14177 + id="text5065" 42.14178 + xml:space="preserve" 42.14179 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.14180 + sodipodi:linespacing="100%"><tspan 42.14181 + x="648.09595" 42.14182 + y="408.66858" 42.14183 + id="tspan5067">_</tspan></text> 42.14184 + <rect 42.14185 + width="51.494247" 42.14186 + height="52.044121" 42.14187 + rx="4.7705503" 42.14188 + ry="4.0114756" 42.14189 + x="637.68207" 42.14190 + y="400.58801" 42.14191 + id="rect5069" 42.14192 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14193 + <rect 42.14194 + width="152.50951" 42.14195 + height="52.044125" 42.14196 + rx="4.7705498" 42.14197 + ry="4.011476" 42.14198 + x="693.36755" 42.14199 + y="400.58801" 42.14200 + id="rect5071" 42.14201 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14202 + <rect 42.14203 + width="11.279431" 42.14204 + height="34.563782" 42.14205 + x="834.45123" 42.14206 + y="404.45255" 42.14207 + id="rect5073" 42.14208 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14209 + <path 42.14210 + inkscape:connector-curvature="0" 42.14211 + d="m 836.61193,407.46763 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14212 + id="path5075" 42.14213 + style="fill:url(#linearGradient6808);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14214 + <rect 42.14215 + width="140.29297" 42.14216 + height="12.974548" 42.14217 + rx="0" 42.14218 + ry="0" 42.14219 + x="702.46082" 42.14220 + y="439.64664" 42.14221 + id="rect5077" 42.14222 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14223 + <path 42.14224 + inkscape:connector-curvature="0" 42.14225 + d="m 834.91243,436.60002 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14226 + id="path5079" 42.14227 + style="fill:url(#linearGradient6804);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14228 + <path 42.14229 + inkscape:connector-curvature="0" 42.14230 + d="m 700.87966,436.49496 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.14231 + id="path5081" 42.14232 + style="fill:url(#linearGradient6801);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14233 + <rect 42.14234 + width="137.29784" 42.14235 + height="40.245304" 42.14236 + rx="4.7705498" 42.14237 + ry="4.7543411" 42.14238 + x="700.138" 42.14239 + y="401.24554" 42.14240 + id="rect5083" 42.14241 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14242 + <rect 42.14243 + width="135.99113" 42.14244 + height="40.245304" 42.14245 + rx="4.7705498" 42.14246 + ry="4.7543411" 42.14247 + x="700.138" 42.14248 + y="401.24554" 42.14249 + id="rect5085" 42.14250 + style="fill:url(#linearGradient6797);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14251 + <rect 42.14252 + width="152.63942" 42.14253 + height="52.044121" 42.14254 + rx="4.3194509" 42.14255 + ry="4.3194509" 42.14256 + x="693.36755" 42.14257 + y="400.58801" 42.14258 + id="rect5091" 42.14259 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14260 + <path 42.14261 + inkscape:connector-curvature="0" 42.14262 + d="m 1081.8733,178.649 c 0,2.37104 -1.922,4.29315 -4.2931,4.29315 -2.3711,0 -4.2932,-1.92211 -4.2932,-4.29315 0,-2.37105 1.9221,-4.29316 4.2932,-4.29316 2.3711,0 4.2931,1.92211 4.2931,4.29316 z" 42.14263 + id="path5191" 42.14264 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14265 + <path 42.14266 + inkscape:connector-curvature="0" 42.14267 + d="m 1078.2115,179.02781 c 0,0.7671 -0.6218,1.38896 -1.3889,1.38896 -0.7672,0 -1.389,-0.62186 -1.389,-1.38896 0,-0.76711 0.6218,-1.38897 1.389,-1.38897 0.7671,0 1.3889,0.62186 1.3889,1.38897 z" 42.14268 + id="path5193" 42.14269 + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14270 + <path 42.14271 + inkscape:connector-curvature="0" 42.14272 + d="m 1151.0688,178.649 c 0,2.37104 -1.9221,4.29315 -4.2932,4.29315 -2.3711,0 -4.2931,-1.92211 -4.2931,-4.29315 0,-2.37105 1.922,-4.29316 4.2931,-4.29316 2.3711,0 4.2932,1.92211 4.2932,4.29316 z" 42.14273 + id="path5195" 42.14274 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14275 + <path 42.14276 + inkscape:connector-curvature="0" 42.14277 + d="m 1147.407,179.02781 c 0,0.7671 -0.6219,1.38896 -1.389,1.38896 -0.7671,0 -1.3889,-0.62186 -1.3889,-1.38896 0,-0.76711 0.6218,-1.38897 1.3889,-1.38897 0.7671,0 1.389,0.62186 1.389,1.38897 z" 42.14278 + id="path5197" 42.14279 + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14280 + <path 42.14281 + inkscape:connector-curvature="0" 42.14282 + d="m 1220.2642,178.649 c 0,2.37104 -1.922,4.29315 -4.2931,4.29315 -2.3711,0 -4.2932,-1.92211 -4.2932,-4.29315 0,-2.37105 1.9221,-4.29316 4.2932,-4.29316 2.3711,0 4.2931,1.92211 4.2931,4.29316 z" 42.14283 + id="path5199" 42.14284 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14285 + <path 42.14286 + inkscape:connector-curvature="0" 42.14287 + d="m 1216.6024,179.02781 c 0,0.7671 -0.6218,1.38896 -1.3889,1.38896 -0.7672,0 -1.389,-0.62186 -1.389,-1.38896 0,-0.76711 0.6218,-1.38897 1.389,-1.38897 0.7671,0 1.3889,0.62186 1.3889,1.38897 z" 42.14288 + id="path5201" 42.14289 + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14290 + <text 42.14291 + sodipodi:linespacing="100%" 42.14292 + x="1056.9822" 42.14293 + y="198.96942" 42.14294 + transform="scale(1.0017033,0.9982996)" 42.14295 + id="text5203" 42.14296 + xml:space="preserve" 42.14297 + style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.14298 + x="1056.9822" 42.14299 + y="198.96942" 42.14300 + id="tspan5205">Num Lock</tspan></text> 42.14301 + <text 42.14302 + sodipodi:linespacing="100%" 42.14303 + x="1124.8663" 42.14304 + y="198.96942" 42.14305 + transform="scale(1.0017033,0.9982996)" 42.14306 + id="text5207" 42.14307 + xml:space="preserve" 42.14308 + style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.14309 + x="1124.8663" 42.14310 + y="198.96942" 42.14311 + id="tspan5209">Caps Lock</tspan></text> 42.14312 + <text 42.14313 + sodipodi:linespacing="100%" 42.14314 + x="1188.7573" 42.14315 + y="198.96942" 42.14316 + transform="scale(1.0017033,0.9982996)" 42.14317 + id="text5211" 42.14318 + xml:space="preserve" 42.14319 + style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.14320 + x="1188.7573" 42.14321 + y="198.96942" 42.14322 + id="tspan5213">Scroll Lock</tspan></text> 42.14323 + <rect 42.14324 + width="223.47272" 42.14325 + height="280.56171" 42.14326 + rx="4.7705503" 42.14327 + ry="4.0114756" 42.14328 + x="1038.3276" 42.14329 + y="230.8744" 42.14330 + id="rect7774" 42.14331 + style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14332 + <rect 42.14333 + width="51.494247" 42.14334 + height="52.044125" 42.14335 + rx="4.7705498" 42.14336 + ry="4.011476" 42.14337 + x="1041.4485" 42.14338 + y="232.38963" 42.14339 + id="rect5215" 42.14340 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14341 + <rect 42.14342 + width="11.279431" 42.14343 + height="34.563782" 42.14344 + x="1081.6392" 42.14345 + y="236.25418" 42.14346 + id="rect5217" 42.14347 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14348 + <path 42.14349 + inkscape:connector-curvature="0" 42.14350 + d="m 1083.8,239.26926 9.0938,-2.97148 c -0.3612,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2027,0.26014 -9.0939,1.33715 l 5.0688,5.57151 z" 42.14351 + id="path5219" 42.14352 + style="fill:url(#linearGradient6778);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14353 + <rect 42.14354 + width="33.469341" 42.14355 + height="12.974548" 42.14356 + rx="0" 42.14357 + ry="0" 42.14358 + x="1050.5416" 42.14359 + y="271.44827" 42.14360 + id="rect5221" 42.14361 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14362 + <path 42.14363 + inkscape:connector-curvature="0" 42.14364 + d="m 1082.1004,268.40165 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8095,-0.0525 -5.3235,-12.34421 3.6895,-3.62446 z" 42.14365 + id="path5223" 42.14366 + style="fill:url(#linearGradient6774);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14367 + <path 42.14368 + inkscape:connector-curvature="0" 42.14369 + d="m 1048.9605,268.29659 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8096,-0.0525 1.6866,-12.29168 -3.3733,-3.78205 z" 42.14370 + id="path5225" 42.14371 + style="fill:url(#linearGradient6771);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14372 + <rect 42.14373 + width="36.535122" 42.14374 + height="40.245304" 42.14375 + rx="4.7705498" 42.14376 + ry="4.7543411" 42.14377 + x="1048.2189" 42.14378 + y="233.04718" 42.14379 + id="rect5227" 42.14380 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14381 + <rect 42.14382 + width="35.480965" 42.14383 + height="40.245304" 42.14384 + rx="4.7705498" 42.14385 + ry="4.7543411" 42.14386 + x="1048.2189" 42.14387 + y="233.04718" 42.14388 + id="rect5229" 42.14389 + style="fill:url(#linearGradient6767);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14390 + <text 42.14391 + sodipodi:linespacing="100%" 42.14392 + x="1051.1758" 42.14393 + y="247.26582" 42.14394 + transform="scale(1.0017033,0.9982996)" 42.14395 + id="text5231" 42.14396 + xml:space="preserve" 42.14397 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.14398 + x="1051.1758" 42.14399 + y="247.26582" 42.14400 + id="tspan8120">Num</tspan></text> 42.14401 + <rect 42.14402 + width="51.494247" 42.14403 + height="52.044121" 42.14404 + rx="4.7705503" 42.14405 + ry="4.0114756" 42.14406 + x="1041.4485" 42.14407 + y="232.38963" 42.14408 + id="rect5239" 42.14409 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14410 + <rect 42.14411 + width="51.494247" 42.14412 + height="52.044125" 42.14413 + rx="4.7705498" 42.14414 + ry="4.011476" 42.14415 + x="1096.5165" 42.14416 + y="232.38963" 42.14417 + id="rect5241" 42.14418 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14419 + <rect 42.14420 + width="11.279431" 42.14421 + height="34.563782" 42.14422 + x="1136.7072" 42.14423 + y="236.25418" 42.14424 + id="rect5243" 42.14425 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14426 + <path 42.14427 + inkscape:connector-curvature="0" 42.14428 + d="m 1138.8679,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14429 + id="path5245" 42.14430 + style="fill:url(#linearGradient6759);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14431 + <rect 42.14432 + width="33.469341" 42.14433 + height="12.974548" 42.14434 + rx="0" 42.14435 + ry="0" 42.14436 + x="1105.6096" 42.14437 + y="271.44827" 42.14438 + id="rect5247" 42.14439 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14440 + <path 42.14441 + inkscape:connector-curvature="0" 42.14442 + d="m 1137.1684,268.40165 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14443 + id="path5249" 42.14444 + style="fill:url(#linearGradient6755);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14445 + <path 42.14446 + inkscape:connector-curvature="0" 42.14447 + d="m 1104.0285,268.29659 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1667,4.26611 4.401,4.35988 l 4.8096,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.14448 + id="path5251" 42.14449 + style="fill:url(#linearGradient6752);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14450 + <rect 42.14451 + width="36.535122" 42.14452 + height="40.245304" 42.14453 + rx="4.7705498" 42.14454 + ry="4.7543411" 42.14455 + x="1103.2867" 42.14456 + y="233.04718" 42.14457 + id="rect5253" 42.14458 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14459 + <rect 42.14460 + width="35.480965" 42.14461 + height="40.245304" 42.14462 + rx="4.7705498" 42.14463 + ry="4.7543411" 42.14464 + x="1103.2867" 42.14465 + y="233.04718" 42.14466 + id="rect5255" 42.14467 + style="fill:url(#linearGradient6748);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14468 + <rect 42.14469 + width="51.494247" 42.14470 + height="52.044121" 42.14471 + rx="4.7705503" 42.14472 + ry="4.0114756" 42.14473 + x="1096.5165" 42.14474 + y="232.38963" 42.14475 + id="rect5263" 42.14476 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14477 + <rect 42.14478 + width="51.494247" 42.14479 + height="52.044125" 42.14480 + rx="4.7705498" 42.14481 + ry="4.011476" 42.14482 + x="1151.5844" 42.14483 + y="232.38963" 42.14484 + id="rect5265" 42.14485 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14486 + <rect 42.14487 + width="11.279431" 42.14488 + height="34.563782" 42.14489 + x="1191.775" 42.14490 + y="236.25418" 42.14491 + id="rect5267" 42.14492 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14493 + <path 42.14494 + inkscape:connector-curvature="0" 42.14495 + d="m 1193.9359,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14496 + id="path5269" 42.14497 + style="fill:url(#linearGradient6742);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14498 + <rect 42.14499 + width="33.469341" 42.14500 + height="12.974548" 42.14501 + rx="0" 42.14502 + ry="0" 42.14503 + x="1160.6775" 42.14504 + y="271.44827" 42.14505 + id="rect5271" 42.14506 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14507 + <path 42.14508 + inkscape:connector-curvature="0" 42.14509 + d="m 1192.2364,268.40165 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14510 + id="path5273" 42.14511 + style="fill:url(#linearGradient6738);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14512 + <path 42.14513 + inkscape:connector-curvature="0" 42.14514 + d="m 1159.0965,268.29659 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8095,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.14515 + id="path5275" 42.14516 + style="fill:url(#linearGradient6735);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14517 + <rect 42.14518 + width="36.535122" 42.14519 + height="40.245304" 42.14520 + rx="4.7705498" 42.14521 + ry="4.7543411" 42.14522 + x="1158.3547" 42.14523 + y="233.04718" 42.14524 + id="rect5277" 42.14525 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14526 + <rect 42.14527 + width="35.480965" 42.14528 + height="40.245304" 42.14529 + rx="4.7705498" 42.14530 + ry="4.7543411" 42.14531 + x="1158.3547" 42.14532 + y="233.04718" 42.14533 + id="rect5279" 42.14534 + style="fill:url(#linearGradient6731);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14535 + <text 42.14536 + sodipodi:linespacing="100%" 42.14537 + x="1063.521" 42.14538 + y="268.8237" 42.14539 + transform="scale(1.0932183,0.91473039)" 42.14540 + id="text5281" 42.14541 + xml:space="preserve" 42.14542 + style="font-size:11.02264977px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.14543 + x="1063.521" 42.14544 + y="268.8237" 42.14545 + id="tspan5285">x</tspan></text> 42.14546 + <rect 42.14547 + width="51.494247" 42.14548 + height="52.044121" 42.14549 + rx="4.7705503" 42.14550 + ry="4.0114756" 42.14551 + x="1151.5844" 42.14552 + y="232.38963" 42.14553 + id="rect5287" 42.14554 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14555 + <rect 42.14556 + width="51.494247" 42.14557 + height="52.044125" 42.14558 + rx="4.7705498" 42.14559 + ry="4.011476" 42.14560 + x="1206.6523" 42.14561 + y="232.38963" 42.14562 + id="rect5315" 42.14563 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14564 + <rect 42.14565 + width="11.279431" 42.14566 + height="34.563782" 42.14567 + x="1246.843" 42.14568 + y="236.25418" 42.14569 + id="rect5317" 42.14570 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14571 + <path 42.14572 + inkscape:connector-curvature="0" 42.14573 + d="m 1249.0038,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14574 + id="path5319" 42.14575 + style="fill:url(#linearGradient6723);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14576 + <rect 42.14577 + width="33.469341" 42.14578 + height="12.974548" 42.14579 + rx="0" 42.14580 + ry="0" 42.14581 + x="1215.7455" 42.14582 + y="271.44827" 42.14583 + id="rect5321" 42.14584 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14585 + <path 42.14586 + inkscape:connector-curvature="0" 42.14587 + d="m 1247.3043,268.40165 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14588 + id="path5323" 42.14589 + style="fill:url(#linearGradient6719);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14590 + <path 42.14591 + inkscape:connector-curvature="0" 42.14592 + d="m 1214.1644,268.29659 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8095,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.14593 + id="path5325" 42.14594 + style="fill:url(#linearGradient6716);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14595 + <rect 42.14596 + width="36.535122" 42.14597 + height="40.245304" 42.14598 + rx="4.7705498" 42.14599 + ry="4.7543411" 42.14600 + x="1213.4227" 42.14601 + y="233.04718" 42.14602 + id="rect5327" 42.14603 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14604 + <rect 42.14605 + width="35.480965" 42.14606 + height="40.245304" 42.14607 + rx="4.7705498" 42.14608 + ry="4.7543411" 42.14609 + x="1213.4227" 42.14610 + y="233.04718" 42.14611 + id="rect5329" 42.14612 + style="fill:url(#linearGradient6712);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14613 + <rect 42.14614 + width="51.494247" 42.14615 + height="52.044121" 42.14616 + rx="4.7705503" 42.14617 + ry="4.0114756" 42.14618 + x="1206.6523" 42.14619 + y="232.38963" 42.14620 + id="rect5337" 42.14621 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14622 + <rect 42.14623 + width="51.494247" 42.14624 + height="52.044125" 42.14625 + rx="4.7705498" 42.14626 + ry="4.011476" 42.14627 + x="1041.4485" 42.14628 + y="288.2825" 42.14629 + id="rect5626" 42.14630 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14631 + <rect 42.14632 + width="11.279431" 42.14633 + height="34.563782" 42.14634 + x="1081.6392" 42.14635 + y="292.14703" 42.14636 + id="rect5629" 42.14637 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14638 + <path 42.14639 + inkscape:connector-curvature="0" 42.14640 + d="m 1083.8,295.16212 9.0938,-2.97148 c -0.3612,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2027,0.26014 -9.0939,1.33715 l 5.0688,5.57151 z" 42.14641 + id="path5631" 42.14642 + style="fill:url(#linearGradient6706);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14643 + <rect 42.14644 + width="33.469341" 42.14645 + height="12.974548" 42.14646 + rx="0" 42.14647 + ry="0" 42.14648 + x="1050.5416" 42.14649 + y="327.34113" 42.14650 + id="rect5633" 42.14651 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14652 + <path 42.14653 + inkscape:connector-curvature="0" 42.14654 + d="m 1082.1004,324.29451 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8095,-0.0525 -5.3235,-12.34421 3.6895,-3.62446 z" 42.14655 + id="path5635" 42.14656 + style="fill:url(#linearGradient6702);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14657 + <path 42.14658 + inkscape:connector-curvature="0" 42.14659 + d="m 1048.9605,324.18945 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8096,-0.0525 1.6866,-12.29168 -3.3733,-3.78205 z" 42.14660 + id="path5637" 42.14661 + style="fill:url(#linearGradient6699);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14662 + <rect 42.14663 + width="36.535122" 42.14664 + height="40.245304" 42.14665 + rx="4.7705498" 42.14666 + ry="4.7543411" 42.14667 + x="1048.2189" 42.14668 + y="288.94003" 42.14669 + id="rect5639" 42.14670 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14671 + <rect 42.14672 + width="35.480965" 42.14673 + height="40.245304" 42.14674 + rx="4.7705498" 42.14675 + ry="4.7543411" 42.14676 + x="1048.2189" 42.14677 + y="288.94003" 42.14678 + id="rect5641" 42.14679 + style="fill:url(#linearGradient6695);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14680 + <rect 42.14681 + width="51.494247" 42.14682 + height="52.044121" 42.14683 + rx="4.7705503" 42.14684 + ry="4.0114756" 42.14685 + x="1041.4485" 42.14686 + y="288.2825" 42.14687 + id="rect5651" 42.14688 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14689 + <rect 42.14690 + width="51.494247" 42.14691 + height="52.044125" 42.14692 + rx="4.7705498" 42.14693 + ry="4.011476" 42.14694 + x="1096.5165" 42.14695 + y="288.2825" 42.14696 + id="rect5655" 42.14697 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14698 + <rect 42.14699 + width="11.279431" 42.14700 + height="34.563782" 42.14701 + x="1136.7072" 42.14702 + y="292.14703" 42.14703 + id="rect5657" 42.14704 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14705 + <path 42.14706 + inkscape:connector-curvature="0" 42.14707 + d="m 1138.8679,295.16212 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14708 + id="path5659" 42.14709 + style="fill:url(#linearGradient6688);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14710 + <rect 42.14711 + width="33.469341" 42.14712 + height="12.974548" 42.14713 + rx="0" 42.14714 + ry="0" 42.14715 + x="1105.6096" 42.14716 + y="327.34113" 42.14717 + id="rect5661" 42.14718 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14719 + <path 42.14720 + inkscape:connector-curvature="0" 42.14721 + d="m 1137.1684,324.29451 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14722 + id="path5663" 42.14723 + style="fill:url(#linearGradient6684);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14724 + <path 42.14725 + inkscape:connector-curvature="0" 42.14726 + d="m 1104.0285,324.18945 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1667,4.26611 4.401,4.35988 l 4.8096,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.14727 + id="path5665" 42.14728 + style="fill:url(#linearGradient6681);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14729 + <rect 42.14730 + width="36.535122" 42.14731 + height="40.245304" 42.14732 + rx="4.7705498" 42.14733 + ry="4.7543411" 42.14734 + x="1103.2867" 42.14735 + y="288.94003" 42.14736 + id="rect5667" 42.14737 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14738 + <rect 42.14739 + width="35.480965" 42.14740 + height="40.245304" 42.14741 + rx="4.7705498" 42.14742 + ry="4.7543411" 42.14743 + x="1103.2867" 42.14744 + y="288.94003" 42.14745 + id="rect5669" 42.14746 + style="fill:url(#linearGradient6677);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14747 + <rect 42.14748 + width="51.494247" 42.14749 + height="52.044121" 42.14750 + rx="4.7705503" 42.14751 + ry="4.0114756" 42.14752 + x="1096.5165" 42.14753 + y="288.2825" 42.14754 + id="rect5677" 42.14755 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14756 + <rect 42.14757 + width="51.494247" 42.14758 + height="52.044125" 42.14759 + rx="4.7705498" 42.14760 + ry="4.011476" 42.14761 + x="1151.5844" 42.14762 + y="288.2825" 42.14763 + id="rect5681" 42.14764 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14765 + <rect 42.14766 + width="11.279431" 42.14767 + height="34.563782" 42.14768 + x="1191.775" 42.14769 + y="292.14703" 42.14770 + id="rect5683" 42.14771 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14772 + <path 42.14773 + inkscape:connector-curvature="0" 42.14774 + d="m 1193.9359,295.16212 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14775 + id="path5685" 42.14776 + style="fill:url(#linearGradient6671);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14777 + <rect 42.14778 + width="33.469341" 42.14779 + height="12.974548" 42.14780 + rx="0" 42.14781 + ry="0" 42.14782 + x="1160.6775" 42.14783 + y="327.34113" 42.14784 + id="rect5687" 42.14785 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14786 + <path 42.14787 + inkscape:connector-curvature="0" 42.14788 + d="m 1192.2364,324.29451 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14789 + id="path5689" 42.14790 + style="fill:url(#linearGradient6667);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14791 + <path 42.14792 + inkscape:connector-curvature="0" 42.14793 + d="m 1159.0965,324.18945 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8095,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.14794 + id="path5691" 42.14795 + style="fill:url(#linearGradient6663);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14796 + <rect 42.14797 + width="36.535122" 42.14798 + height="40.245304" 42.14799 + rx="4.7705498" 42.14800 + ry="4.7543411" 42.14801 + x="1158.3547" 42.14802 + y="288.94003" 42.14803 + id="rect5693" 42.14804 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14805 + <rect 42.14806 + width="35.480965" 42.14807 + height="40.245304" 42.14808 + rx="4.7705498" 42.14809 + ry="4.7543411" 42.14810 + x="1158.3547" 42.14811 + y="288.94003" 42.14812 + id="rect5695" 42.14813 + style="fill:url(#linearGradient6658);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14814 + <rect 42.14815 + width="51.494247" 42.14816 + height="52.044121" 42.14817 + rx="4.7705503" 42.14818 + ry="4.0114756" 42.14819 + x="1151.5844" 42.14820 + y="288.2825" 42.14821 + id="rect5703" 42.14822 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14823 + <rect 42.14824 + width="51.494247" 42.14825 + height="52.044125" 42.14826 + rx="4.7705498" 42.14827 + ry="4.011476" 42.14828 + x="1041.4485" 42.14829 + y="344.17535" 42.14830 + id="rect5767" 42.14831 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14832 + <rect 42.14833 + width="11.279431" 42.14834 + height="34.563782" 42.14835 + x="1081.6392" 42.14836 + y="348.03989" 42.14837 + id="rect5769" 42.14838 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14839 + <path 42.14840 + inkscape:connector-curvature="0" 42.14841 + d="m 1083.8,351.05498 9.0938,-2.97148 c -0.3612,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2027,0.26014 -9.0939,1.33715 l 5.0688,5.57151 z" 42.14842 + id="path5771" 42.14843 + style="fill:url(#linearGradient6652);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14844 + <rect 42.14845 + width="33.469341" 42.14846 + height="12.974548" 42.14847 + rx="0" 42.14848 + ry="0" 42.14849 + x="1050.5416" 42.14850 + y="383.23398" 42.14851 + id="rect5773" 42.14852 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14853 + <path 42.14854 + inkscape:connector-curvature="0" 42.14855 + d="m 1082.1004,380.18737 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8095,-0.0525 -5.3235,-12.34421 3.6895,-3.62446 z" 42.14856 + id="path5775" 42.14857 + style="fill:url(#linearGradient6648);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14858 + <path 42.14859 + inkscape:connector-curvature="0" 42.14860 + d="m 1048.9605,380.08231 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8096,-0.0525 1.6866,-12.29168 -3.3733,-3.78205 z" 42.14861 + id="path5777" 42.14862 + style="fill:url(#linearGradient6645);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14863 + <rect 42.14864 + width="36.535122" 42.14865 + height="40.245304" 42.14866 + rx="4.7705498" 42.14867 + ry="4.7543411" 42.14868 + x="1048.2189" 42.14869 + y="344.83289" 42.14870 + id="rect5779" 42.14871 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14872 + <rect 42.14873 + width="35.480965" 42.14874 + height="40.245304" 42.14875 + rx="4.7705498" 42.14876 + ry="4.7543411" 42.14877 + x="1048.2189" 42.14878 + y="344.83289" 42.14879 + id="rect5781" 42.14880 + style="fill:url(#linearGradient6641);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14881 + <rect 42.14882 + width="51.494247" 42.14883 + height="52.044121" 42.14884 + rx="4.7705503" 42.14885 + ry="4.0114756" 42.14886 + x="1041.4485" 42.14887 + y="344.17535" 42.14888 + id="rect5791" 42.14889 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14890 + <rect 42.14891 + width="51.494247" 42.14892 + height="52.044125" 42.14893 + rx="4.7705498" 42.14894 + ry="4.011476" 42.14895 + x="1096.5165" 42.14896 + y="344.17535" 42.14897 + id="rect5795" 42.14898 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14899 + <rect 42.14900 + width="11.279431" 42.14901 + height="34.563782" 42.14902 + x="1136.7072" 42.14903 + y="348.03989" 42.14904 + id="rect5797" 42.14905 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14906 + <path 42.14907 + inkscape:connector-curvature="0" 42.14908 + d="m 1138.8679,351.05498 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14909 + id="path5799" 42.14910 + style="fill:url(#linearGradient6635);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14911 + <rect 42.14912 + width="33.469341" 42.14913 + height="12.974548" 42.14914 + rx="0" 42.14915 + ry="0" 42.14916 + x="1105.6096" 42.14917 + y="383.23398" 42.14918 + id="rect5801" 42.14919 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14920 + <path 42.14921 + inkscape:connector-curvature="0" 42.14922 + d="m 1137.1684,380.18737 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14923 + id="path5803" 42.14924 + style="fill:url(#linearGradient6631);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14925 + <path 42.14926 + inkscape:connector-curvature="0" 42.14927 + d="m 1104.0285,380.08231 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1667,4.26611 4.401,4.35988 l 4.8096,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.14928 + id="path5805" 42.14929 + style="fill:url(#linearGradient6628);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14930 + <rect 42.14931 + width="36.535122" 42.14932 + height="40.245304" 42.14933 + rx="4.7705498" 42.14934 + ry="4.7543411" 42.14935 + x="1103.2867" 42.14936 + y="344.83289" 42.14937 + id="rect5807" 42.14938 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14939 + <rect 42.14940 + width="35.480965" 42.14941 + height="40.245304" 42.14942 + rx="4.7705498" 42.14943 + ry="4.7543411" 42.14944 + x="1103.2867" 42.14945 + y="344.83289" 42.14946 + id="rect5809" 42.14947 + style="fill:url(#linearGradient6624);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14948 + <rect 42.14949 + width="51.494247" 42.14950 + height="52.044121" 42.14951 + rx="4.7705503" 42.14952 + ry="4.0114756" 42.14953 + x="1096.5165" 42.14954 + y="344.17535" 42.14955 + id="rect5817" 42.14956 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.14957 + <rect 42.14958 + width="51.494247" 42.14959 + height="52.044125" 42.14960 + rx="4.7705498" 42.14961 + ry="4.011476" 42.14962 + x="1151.5844" 42.14963 + y="344.17535" 42.14964 + id="rect5821" 42.14965 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14966 + <rect 42.14967 + width="11.279431" 42.14968 + height="34.563782" 42.14969 + x="1191.775" 42.14970 + y="348.03989" 42.14971 + id="rect5823" 42.14972 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14973 + <path 42.14974 + inkscape:connector-curvature="0" 42.14975 + d="m 1193.9359,351.05498 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.14976 + id="path5825" 42.14977 + style="fill:url(#linearGradient6618);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14978 + <rect 42.14979 + width="33.469341" 42.14980 + height="12.974548" 42.14981 + rx="0" 42.14982 + ry="0" 42.14983 + x="1160.6775" 42.14984 + y="383.23398" 42.14985 + id="rect5828" 42.14986 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14987 + <path 42.14988 + inkscape:connector-curvature="0" 42.14989 + d="m 1192.2364,380.18737 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.14990 + id="path5830" 42.14991 + style="fill:url(#linearGradient6614);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14992 + <path 42.14993 + inkscape:connector-curvature="0" 42.14994 + d="m 1159.0965,380.08231 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8095,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.14995 + id="path5832" 42.14996 + style="fill:url(#linearGradient6611);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.14997 + <rect 42.14998 + width="36.535122" 42.14999 + height="40.245304" 42.15000 + rx="4.7705498" 42.15001 + ry="4.7543411" 42.15002 + x="1158.3547" 42.15003 + y="344.83289" 42.15004 + id="rect5834" 42.15005 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15006 + <rect 42.15007 + width="35.480965" 42.15008 + height="40.245304" 42.15009 + rx="4.7705498" 42.15010 + ry="4.7543411" 42.15011 + x="1158.3547" 42.15012 + y="344.83289" 42.15013 + id="rect5836" 42.15014 + style="fill:url(#linearGradient6607);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15015 + <rect 42.15016 + width="51.494247" 42.15017 + height="52.044121" 42.15018 + rx="4.7705503" 42.15019 + ry="4.0114756" 42.15020 + x="1151.5844" 42.15021 + y="344.17535" 42.15022 + id="rect5844" 42.15023 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15024 + <rect 42.15025 + width="51.494247" 42.15026 + height="107.57984" 42.15027 + rx="4.7705498" 42.15028 + ry="4.011476" 42.15029 + x="1206.6523" 42.15030 + y="288.63965" 42.15031 + id="rect5848" 42.15032 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15033 + <rect 42.15034 + width="11.279431" 42.15035 + height="91.706642" 42.15036 + x="1246.843" 42.15037 + y="290.89703" 42.15038 + id="rect5850" 42.15039 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15040 + <path 42.15041 + inkscape:connector-curvature="0" 42.15042 + d="m 1249.0038,295.16212 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.15043 + id="path5852" 42.15044 + style="fill:url(#linearGradient6601);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15045 + <rect 42.15046 + width="33.469341" 42.15047 + height="12.974548" 42.15048 + rx="0" 42.15049 + ry="0" 42.15050 + x="1215.7455" 42.15051 + y="383.23398" 42.15052 + id="rect5854" 42.15053 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15054 + <path 42.15055 + inkscape:connector-curvature="0" 42.15056 + d="m 1247.3043,380.18737 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.15057 + id="path5856" 42.15058 + style="fill:url(#linearGradient6597);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15059 + <path 42.15060 + inkscape:connector-curvature="0" 42.15061 + d="m 1214.1644,380.08231 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8095,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.15062 + id="path5858" 42.15063 + style="fill:url(#linearGradient6594);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15064 + <rect 42.15065 + width="36.535122" 42.15066 + height="96.138161" 42.15067 + rx="4.7705498" 42.15068 + ry="4.7543411" 42.15069 + x="1213.4227" 42.15070 + y="288.94" 42.15071 + id="rect5860" 42.15072 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15073 + <rect 42.15074 + width="35.480965" 42.15075 + height="96.138161" 42.15076 + rx="4.7705498" 42.15077 + ry="4.7543411" 42.15078 + x="1213.4227" 42.15079 + y="288.94003" 42.15080 + id="rect5862" 42.15081 + style="fill:url(#linearGradient6590);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15082 + <text 42.15083 + sodipodi:linespacing="100%" 42.15084 + x="1216.0988" 42.15085 + y="346.77658" 42.15086 + transform="scale(1.0017033,0.9982996)" 42.15087 + id="text5864" 42.15088 + xml:space="preserve" 42.15089 + style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.15090 + x="1216.0988" 42.15091 + y="346.77658" 42.15092 + id="tspan5868">+</tspan></text> 42.15093 + <rect 42.15094 + width="51.494247" 42.15095 + height="107.72878" 42.15096 + rx="4.7705503" 42.15097 + ry="4.0114756" 42.15098 + x="1206.6523" 42.15099 + y="288.49066" 42.15100 + id="rect5870" 42.15101 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15102 + <rect 42.15103 + width="51.494247" 42.15104 + height="52.044125" 42.15105 + rx="4.7705498" 42.15106 + ry="4.011476" 42.15107 + x="1041.4485" 42.15108 + y="400.06821" 42.15109 + id="rect5908" 42.15110 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15111 + <rect 42.15112 + width="11.279431" 42.15113 + height="34.563782" 42.15114 + x="1081.6392" 42.15115 + y="403.93274" 42.15116 + id="rect5910" 42.15117 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15118 + <path 42.15119 + inkscape:connector-curvature="0" 42.15120 + d="m 1083.8,406.94783 9.0938,-2.97148 c -0.3612,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2027,0.26014 -9.0939,1.33715 l 5.0688,5.57151 z" 42.15121 + id="path5912" 42.15122 + style="fill:url(#linearGradient6582);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15123 + <rect 42.15124 + width="33.469341" 42.15125 + height="12.974548" 42.15126 + rx="0" 42.15127 + ry="0" 42.15128 + x="1050.5416" 42.15129 + y="439.12683" 42.15130 + id="rect5914" 42.15131 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15132 + <path 42.15133 + inkscape:connector-curvature="0" 42.15134 + d="m 1082.1004,436.08022 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8095,-0.0525 -5.3235,-12.34421 3.6895,-3.62446 z" 42.15135 + id="path5916" 42.15136 + style="fill:url(#linearGradient6578);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15137 + <path 42.15138 + inkscape:connector-curvature="0" 42.15139 + d="m 1048.9605,435.97516 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8096,-0.0525 1.6866,-12.29168 -3.3733,-3.78205 z" 42.15140 + id="path5918" 42.15141 + style="fill:url(#linearGradient6575);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15142 + <rect 42.15143 + width="36.535122" 42.15144 + height="40.245304" 42.15145 + rx="4.7705498" 42.15146 + ry="4.7543411" 42.15147 + x="1048.2189" 42.15148 + y="400.72574" 42.15149 + id="rect5920" 42.15150 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15151 + <rect 42.15152 + width="35.480965" 42.15153 + height="40.245304" 42.15154 + rx="4.7705498" 42.15155 + ry="4.7543411" 42.15156 + x="1048.2189" 42.15157 + y="400.72574" 42.15158 + id="rect5922" 42.15159 + style="fill:url(#linearGradient6571);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15160 + <rect 42.15161 + width="51.494247" 42.15162 + height="52.044121" 42.15163 + rx="4.7705503" 42.15164 + ry="4.0114756" 42.15165 + x="1041.4485" 42.15166 + y="400.06821" 42.15167 + id="rect5932" 42.15168 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15169 + <rect 42.15170 + width="51.494247" 42.15171 + height="52.044125" 42.15172 + rx="4.7705498" 42.15173 + ry="4.011476" 42.15174 + x="1096.5165" 42.15175 + y="400.06821" 42.15176 + id="rect5936" 42.15177 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15178 + <rect 42.15179 + width="11.279431" 42.15180 + height="34.563782" 42.15181 + x="1136.7072" 42.15182 + y="403.93274" 42.15183 + id="rect5938" 42.15184 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15185 + <path 42.15186 + inkscape:connector-curvature="0" 42.15187 + d="m 1138.8679,406.94783 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.15188 + id="path5940" 42.15189 + style="fill:url(#linearGradient6565);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15190 + <rect 42.15191 + width="33.469341" 42.15192 + height="12.974548" 42.15193 + rx="0" 42.15194 + ry="0" 42.15195 + x="1105.6096" 42.15196 + y="439.12683" 42.15197 + id="rect5942" 42.15198 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15199 + <path 42.15200 + inkscape:connector-curvature="0" 42.15201 + d="m 1137.1684,436.08022 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.15202 + id="path5944" 42.15203 + style="fill:url(#linearGradient6561);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15204 + <path 42.15205 + inkscape:connector-curvature="0" 42.15206 + d="m 1104.0285,435.97516 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1667,4.26611 4.401,4.35988 l 4.8096,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.15207 + id="path5946" 42.15208 + style="fill:url(#linearGradient6557);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15209 + <rect 42.15210 + width="36.535122" 42.15211 + height="40.245304" 42.15212 + rx="4.7705498" 42.15213 + ry="4.7543411" 42.15214 + x="1103.2867" 42.15215 + y="400.72574" 42.15216 + id="rect5948" 42.15217 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15218 + <rect 42.15219 + width="35.480965" 42.15220 + height="40.245304" 42.15221 + rx="4.7705498" 42.15222 + ry="4.7543411" 42.15223 + x="1103.2867" 42.15224 + y="400.72574" 42.15225 + id="rect5950" 42.15226 + style="fill:url(#linearGradient6552);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15227 + <rect 42.15228 + width="51.494247" 42.15229 + height="52.044121" 42.15230 + rx="4.7705503" 42.15231 + ry="4.0114756" 42.15232 + x="1096.5165" 42.15233 + y="400.06821" 42.15234 + id="rect5958" 42.15235 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15236 + <rect 42.15237 + width="51.494247" 42.15238 + height="52.044125" 42.15239 + rx="4.7705498" 42.15240 + ry="4.011476" 42.15241 + x="1151.5844" 42.15242 + y="400.06821" 42.15243 + id="rect5962" 42.15244 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15245 + <rect 42.15246 + width="11.279431" 42.15247 + height="34.563782" 42.15248 + x="1191.775" 42.15249 + y="403.93274" 42.15250 + id="rect5964" 42.15251 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15252 + <path 42.15253 + inkscape:connector-curvature="0" 42.15254 + d="m 1193.9359,406.94783 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.15255 + id="path5966" 42.15256 + style="fill:url(#linearGradient6546);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15257 + <rect 42.15258 + width="33.469341" 42.15259 + height="12.974548" 42.15260 + rx="0" 42.15261 + ry="0" 42.15262 + x="1160.6775" 42.15263 + y="439.12683" 42.15264 + id="rect5968" 42.15265 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15266 + <path 42.15267 + inkscape:connector-curvature="0" 42.15268 + d="m 1192.2364,436.08022 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.15269 + id="path5970" 42.15270 + style="fill:url(#linearGradient6542);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15271 + <path 42.15272 + inkscape:connector-curvature="0" 42.15273 + d="m 1159.0965,435.97516 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8095,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.15274 + id="path5972" 42.15275 + style="fill:url(#linearGradient6539);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15276 + <rect 42.15277 + width="36.535122" 42.15278 + height="40.245304" 42.15279 + rx="4.7705498" 42.15280 + ry="4.7543411" 42.15281 + x="1158.3547" 42.15282 + y="400.72574" 42.15283 + id="rect5974" 42.15284 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15285 + <rect 42.15286 + width="35.480965" 42.15287 + height="40.245304" 42.15288 + rx="4.7705498" 42.15289 + ry="4.7543411" 42.15290 + x="1158.3547" 42.15291 + y="400.72574" 42.15292 + id="rect5976" 42.15293 + style="fill:url(#linearGradient6535);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15294 + <rect 42.15295 + width="51.494247" 42.15296 + height="52.044121" 42.15297 + rx="4.7705503" 42.15298 + ry="4.0114756" 42.15299 + x="1151.5844" 42.15300 + y="400.06821" 42.15301 + id="rect5984" 42.15302 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15303 + <rect 42.15304 + width="106.13711" 42.15305 + height="52.044125" 42.15306 + rx="4.7705498" 42.15307 + ry="4.011476" 42.15308 + x="1041.4485" 42.15309 + y="455.96106" 42.15310 + id="rect6048" 42.15311 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15312 + <rect 42.15313 + width="11.279431" 42.15314 + height="34.563782" 42.15315 + x="1136.282" 42.15316 + y="459.82562" 42.15317 + id="rect6050" 42.15318 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15319 + <path 42.15320 + inkscape:connector-curvature="0" 42.15321 + d="m 1138.4429,462.84069 9.0938,-2.97148 c -0.3612,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2027,0.26014 -9.0939,1.33715 l 5.0688,5.57151 z" 42.15322 + id="path6052" 42.15323 + style="fill:url(#linearGradient6529);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15324 + <rect 42.15325 + width="89.005058" 42.15326 + height="12.974548" 42.15327 + rx="0" 42.15328 + ry="0" 42.15329 + x="1050.5416" 42.15330 + y="495.01971" 42.15331 + id="rect6054" 42.15332 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15333 + <path 42.15334 + inkscape:connector-curvature="0" 42.15335 + d="m 1136.7433,491.97308 10.8051,1.15562 0.04,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8095,-0.0525 -5.3235,-12.34421 3.6895,-3.62446 z" 42.15336 + id="path6056" 42.15337 + style="fill:url(#linearGradient6525);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15338 + <path 42.15339 + inkscape:connector-curvature="0" 42.15340 + d="m 1048.9605,491.86802 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8096,-0.0525 1.6866,-12.29168 -3.3733,-3.78205 z" 42.15341 + id="path6058" 42.15342 + style="fill:url(#linearGradient6521);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15343 + <rect 42.15344 + width="90.642265" 42.15345 + height="40.245304" 42.15346 + rx="4.7705498" 42.15347 + ry="4.7543411" 42.15348 + x="1048.2189" 42.15349 + y="456.61862" 42.15350 + id="rect6060" 42.15351 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15352 + <rect 42.15353 + width="89.409538" 42.15354 + height="40.245304" 42.15355 + rx="4.7705498" 42.15356 + ry="4.7543411" 42.15357 + x="1048.2189" 42.15358 + y="456.61862" 42.15359 + id="rect6062" 42.15360 + style="fill:url(#linearGradient6517);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15361 + <rect 42.15362 + width="106.31567" 42.15363 + height="52.044121" 42.15364 + rx="4.7705503" 42.15365 + ry="4.0114756" 42.15366 + x="1041.4485" 42.15367 + y="455.96106" 42.15368 + id="rect6072" 42.15369 + style="fill:none;stroke:#000000;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15370 + <rect 42.15371 + width="51.494247" 42.15372 + height="52.044125" 42.15373 + rx="4.7705498" 42.15374 + ry="4.011476" 42.15375 + x="1151.5844" 42.15376 + y="455.96106" 42.15377 + id="rect6102" 42.15378 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15379 + <rect 42.15380 + width="11.279431" 42.15381 + height="34.563782" 42.15382 + x="1191.775" 42.15383 + y="459.82562" 42.15384 + id="rect6104" 42.15385 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15386 + <path 42.15387 + inkscape:connector-curvature="0" 42.15388 + d="m 1193.9359,462.84069 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.15389 + id="path6106" 42.15390 + style="fill:url(#linearGradient6511);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15391 + <rect 42.15392 + width="33.469341" 42.15393 + height="12.974548" 42.15394 + rx="0" 42.15395 + ry="0" 42.15396 + x="1160.6775" 42.15397 + y="495.01971" 42.15398 + id="rect6108" 42.15399 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15400 + <path 42.15401 + inkscape:connector-curvature="0" 42.15402 + d="m 1192.2364,491.97308 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.15403 + id="path6110" 42.15404 + style="fill:url(#linearGradient6507);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15405 + <path 42.15406 + inkscape:connector-curvature="0" 42.15407 + d="m 1159.0965,491.86802 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8095,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.15408 + id="path6112" 42.15409 + style="fill:url(#linearGradient6504);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15410 + <rect 42.15411 + width="36.535122" 42.15412 + height="40.245304" 42.15413 + rx="4.7705498" 42.15414 + ry="4.7543411" 42.15415 + x="1158.3547" 42.15416 + y="456.61862" 42.15417 + id="rect6114" 42.15418 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15419 + <rect 42.15420 + width="35.480965" 42.15421 + height="40.245304" 42.15422 + rx="4.7705498" 42.15423 + ry="4.7543411" 42.15424 + x="1158.3547" 42.15425 + y="456.61862" 42.15426 + id="rect6116" 42.15427 + style="fill:url(#linearGradient6500);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15428 + <rect 42.15429 + width="51.494247" 42.15430 + height="52.044121" 42.15431 + rx="4.7705503" 42.15432 + ry="4.0114756" 42.15433 + x="1151.5844" 42.15434 + y="455.96106" 42.15435 + id="rect6124" 42.15436 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15437 + <rect 42.15438 + width="51.494247" 42.15439 + height="107.75841" 42.15440 + rx="4.7705498" 42.15441 + ry="4.011476" 42.15442 + x="1206.6523" 42.15443 + y="400.24677" 42.15444 + id="rect6128" 42.15445 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15446 + <rect 42.15447 + width="11.279431" 42.15448 + height="90.813782" 42.15449 + x="1246.843" 42.15450 + y="403.57562" 42.15451 + id="rect6130" 42.15452 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15453 + <path 42.15454 + inkscape:connector-curvature="0" 42.15455 + d="m 1249.0038,407.1264 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.15456 + id="path6132" 42.15457 + style="fill:url(#linearGradient6493);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15458 + <rect 42.15459 + width="33.469341" 42.15460 + height="12.974548" 42.15461 + rx="0" 42.15462 + ry="0" 42.15463 + x="1215.7455" 42.15464 + y="495.01971" 42.15465 + id="rect6134" 42.15466 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15467 + <path 42.15468 + inkscape:connector-curvature="0" 42.15469 + d="m 1247.3043,491.97308 10.8051,1.15562 0.039,10.50571 c -0.01,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.15470 + id="path6136" 42.15471 + style="fill:url(#linearGradient6488);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15472 + <path 42.15473 + inkscape:connector-curvature="0" 42.15474 + d="m 1214.1644,491.86802 -7.4845,1.26068 -0.04,10.50571 c 0.01,2.70945 2.1668,4.26611 4.4011,4.35988 l 4.8095,-0.0525 1.6867,-12.29168 -3.3733,-3.78205 z" 42.15475 + id="path6138" 42.15476 + style="fill:url(#linearGradient6485);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15477 + <rect 42.15478 + width="36.535122" 42.15479 + height="95.959595" 42.15480 + rx="4.7705498" 42.15481 + ry="4.7543411" 42.15482 + x="1213.4227" 42.15483 + y="400.90433" 42.15484 + id="rect6140" 42.15485 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15486 + <rect 42.15487 + width="35.480965" 42.15488 + height="95.959587" 42.15489 + rx="4.7705498" 42.15490 + ry="4.7543411" 42.15491 + x="1213.4227" 42.15492 + y="400.90433" 42.15493 + id="rect6142" 42.15494 + style="fill:url(#linearGradient6481);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15495 + <text 42.15496 + sodipodi:linespacing="100%" 42.15497 + x="1216.0988" 42.15498 + y="451.18396" 42.15499 + transform="scale(1.0017033,0.9982996)" 42.15500 + id="text6144" 42.15501 + xml:space="preserve" 42.15502 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.15503 + x="1216.0988" 42.15504 + y="451.18396" 42.15505 + id="tspan6148">Enter</tspan></text> 42.15506 + <rect 42.15507 + width="51.494247" 42.15508 + height="107.84768" 42.15509 + rx="4.7705503" 42.15510 + ry="4.0114756" 42.15511 + x="1206.6523" 42.15512 + y="400.1575" 42.15513 + id="rect6150" 42.15514 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15515 + <rect 42.15516 + width="78.458534" 42.15517 + height="52.044125" 42.15518 + rx="4.7705498" 42.15519 + ry="4.011476" 42.15520 + x="14.427744" 42.15521 + y="287.94803" 42.15522 + id="rect7046" 42.15523 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15524 + <rect 42.15525 + width="11.279431" 42.15526 + height="34.563782" 42.15527 + x="82.118416" 42.15528 + y="291.81256" 42.15529 + id="rect7048" 42.15530 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15531 + <path 42.15532 + inkscape:connector-curvature="0" 42.15533 + d="m 84.279231,294.82765 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.15534 + id="path7050" 42.15535 + style="fill:url(#linearGradient6473);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15536 + <rect 42.15537 + width="63.112198" 42.15538 + height="12.974548" 42.15539 + rx="0" 42.15540 + ry="0" 42.15541 + x="23.520937" 42.15542 + y="327.00665" 42.15543 + id="rect7052" 42.15544 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15545 + <path 42.15546 + inkscape:connector-curvature="0" 42.15547 + d="m 82.579711,323.96004 10.80506,1.15562 0.03953,10.50571 c -0.0056,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.15548 + id="path7054" 42.15549 + style="fill:url(#linearGradient6469);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15550 + <path 42.15551 + inkscape:connector-curvature="0" 42.15552 + d="m 21.939781,323.85498 -7.48448,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.15553 + id="path7056" 42.15554 + style="fill:url(#linearGradient6465);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15555 + <rect 42.15556 + width="63.677979" 42.15557 + height="40.245304" 42.15558 + rx="4.7705498" 42.15559 + ry="4.7543411" 42.15560 + x="21.198061" 42.15561 + y="288.60556" 42.15562 + id="rect7058" 42.15563 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15564 + <rect 42.15565 + width="62.623821" 42.15566 + height="40.245304" 42.15567 + rx="4.7705498" 42.15568 + ry="4.7543411" 42.15569 + x="21.198061" 42.15570 + y="288.60556" 42.15571 + id="rect7060" 42.15572 + style="fill:url(#linearGradient6461);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15573 + <rect 42.15574 + width="78.815674" 42.15575 + height="52.044121" 42.15576 + rx="4.7705503" 42.15577 + ry="4.0114756" 42.15578 + x="14.427743" 42.15579 + y="287.94803" 42.15580 + id="rect7066" 42.15581 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15582 + <path 42.15583 + inkscape:connector-curvature="0" 42.15584 + d="m 21.839348,379.92641 -7.48448,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.15585 + id="path7086" 42.15586 + style="fill:url(#linearGradient6457);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15587 + <rect 42.15588 + width="51.494247" 42.15589 + height="52.044125" 42.15590 + rx="4.7705498" 42.15591 + ry="4.011476" 42.15592 + x="14.326332" 42.15593 + y="400.58801" 42.15594 + id="rect7106" 42.15595 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15596 + <rect 42.15597 + width="11.279431" 42.15598 + height="34.563782" 42.15599 + x="65.588417" 42.15600 + y="404.45255" 42.15601 + id="rect7108" 42.15602 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15603 + <path 42.15604 + inkscape:connector-curvature="0" 42.15605 + d="m 67.74925,407.46763 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.15606 + id="path7110" 42.15607 + style="fill:url(#linearGradient6452);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15608 + <rect 42.15609 + width="47.397911" 42.15610 + height="12.974548" 42.15611 + rx="0" 42.15612 + ry="0" 42.15613 + x="23.419525" 42.15614 + y="439.64664" 42.15615 + id="rect7112" 42.15616 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15617 + <path 42.15618 + inkscape:connector-curvature="0" 42.15619 + d="m 66.04973,436.60002 10.80506,1.15562 0.03953,10.50571 c -0.0056,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.15620 + id="path7114" 42.15621 + style="fill:url(#linearGradient6448);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15622 + <path 42.15623 + inkscape:connector-curvature="0" 42.15624 + d="m 21.838371,436.49496 -7.48448,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.15625 + id="path7116" 42.15626 + style="fill:url(#linearGradient6445);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15627 + <rect 42.15628 + width="47.427979" 42.15629 + height="40.245304" 42.15630 + rx="4.7705498" 42.15631 + ry="4.7543411" 42.15632 + x="21.096649" 42.15633 + y="401.24554" 42.15634 + id="rect7118" 42.15635 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15636 + <rect 42.15637 + width="46.284534" 42.15638 + height="40.245304" 42.15639 + rx="4.7705498" 42.15640 + ry="4.7543411" 42.15641 + x="21.096649" 42.15642 + y="401.24554" 42.15643 + id="rect7120" 42.15644 + style="fill:url(#linearGradient6441);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15645 + <rect 42.15646 + width="62.387104" 42.15647 + height="52.044121" 42.15648 + rx="4.7705503" 42.15649 + ry="4.0114756" 42.15650 + x="14.326332" 42.15651 + y="400.58801" 42.15652 + id="rect7126" 42.15653 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15654 + <rect 42.15655 + width="106.8001" 42.15656 + height="52.044125" 42.15657 + rx="4.7705503" 42.15658 + ry="4.011476" 42.15659 + x="739.44513" 42.15660 + y="232.38963" 42.15661 + id="rect7168" 42.15662 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15663 + <rect 42.15664 + width="11.279431" 42.15665 + height="34.563782" 42.15666 + x="834.94177" 42.15667 + y="236.25418" 42.15668 + id="rect7170" 42.15669 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15670 + <path 42.15671 + inkscape:connector-curvature="0" 42.15672 + d="m 837.1025,239.26926 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.15673 + id="path7172" 42.15674 + style="fill:url(#linearGradient6435);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15675 + <rect 42.15676 + width="90.037888" 42.15677 + height="12.974548" 42.15678 + rx="0" 42.15679 + ry="0" 42.15680 + x="747.2757" 42.15681 + y="271.44827" 42.15682 + id="rect7174" 42.15683 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15684 + <path 42.15685 + inkscape:connector-curvature="0" 42.15686 + d="m 835.403,268.40165 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.15687 + id="path7176" 42.15688 + style="fill:url(#linearGradient6431);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15689 + <path 42.15690 + inkscape:connector-curvature="0" 42.15691 + d="m 746.45216,268.29659 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.15692 + id="path7178" 42.15693 + style="fill:url(#linearGradient6428);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15694 + <rect 42.15695 + width="36.535122" 42.15696 + height="40.245304" 42.15697 + rx="4.7705498" 42.15698 + ry="4.7543411" 42.15699 + x="801.52142" 42.15700 + y="233.04718" 42.15701 + id="rect7180" 42.15702 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15703 + <rect 42.15704 + width="90.786819" 42.15705 + height="40.245304" 42.15706 + rx="4.7705498" 42.15707 + ry="4.7543411" 42.15708 + x="746.21558" 42.15709 + y="233.04718" 42.15710 + id="rect7182" 42.15711 + style="fill:url(#linearGradient6424);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15712 + <rect 42.15713 + width="107.17891" 42.15714 + height="52.044121" 42.15715 + rx="4.7705503" 42.15716 + ry="4.0114756" 42.15717 + x="739.06635" 42.15718 + y="232.38963" 42.15719 + id="rect7188" 42.15720 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15721 + <rect 42.15722 + width="63.279961" 42.15723 + height="107.04413" 42.15724 + rx="4.7705498" 42.15725 + ry="4.011476" 42.15726 + x="782.48944" 42.15727 + y="287.94803" 42.15728 + id="rect7222" 42.15729 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15730 + <path 42.15731 + inkscape:connector-curvature="0" 42.15732 + d="m 782.20758,342.23126 7.48448,-0.60918 0.0395,-5.07655 c 1.34991,-2.8455 -0.74732,-4.39414 -4.14855,-3.11693 l -5.06211,1.03554 -1.68664,5.93956 c 1.22062,0.22442 2.32024,0.93284 3.37329,1.82756 z" 42.15733 + id="path7620" 42.15734 + style="fill:url(#linearGradient6419);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15735 + <rect 42.15736 + width="11.279431" 42.15737 + height="90.992355" 42.15738 + x="834.46594" 42.15739 + y="291.81256" 42.15740 + id="rect7224" 42.15741 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15742 + <path 42.15743 + inkscape:connector-curvature="0" 42.15744 + d="m 836.62664,294.82765 9.0939,-2.97148 c -0.3613,-2.85683 -2.3291,-3.84571 -5.0687,-3.93718 -3.6454,0.10572 -7.2028,0.26014 -9.0939,1.33715 l 5.0687,5.57151 z" 42.15745 + id="path7226" 42.15746 + style="fill:url(#linearGradient6415);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15747 + <rect 42.15748 + width="47.397911" 42.15749 + height="12.974548" 42.15750 + rx="0" 42.15751 + ry="0" 42.15752 + x="789.43982" 42.15753 + y="382.83551" 42.15754 + id="rect7228" 42.15755 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15756 + <path 42.15757 + inkscape:connector-curvature="0" 42.15758 + d="m 834.92714,379.78891 10.8051,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.1668,4.26611 -4.4011,4.35988 l -4.8096,-0.0525 -5.3234,-12.34421 3.6895,-3.62446 z" 42.15759 + id="path7230" 42.15760 + style="fill:url(#linearGradient6411);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15761 + <path 42.15762 + inkscape:connector-curvature="0" 42.15763 + d="m 790.00152,379.68385 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.15764 + id="path7232" 42.15765 + style="fill:url(#linearGradient6408);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15766 + <rect 42.15767 + width="36.535122" 42.15768 + height="95.959587" 42.15769 + rx="4.7705498" 42.15770 + ry="4.7543411" 42.15771 + x="801.04559" 42.15772 + y="288.60556" 42.15773 + id="rect7234" 42.15774 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15775 + <path 42.15776 + inkscape:connector-curvature="0" 42.15777 + d="m 779.87583,288.59494 c -2.64288,0 -4.74998,2.11611 -4.75,4.75 l 0,36.21875 c 0,2.63389 2.10712,4.75 4.75,4.75 l 6.4375,0 c 1.54089,0 2.79268,1.18435 2.9375,2.6875 l 0,42.8125 c 0,2.63389 2.13837,4.75 4.78125,4.75 l 37.71875,0 c 2.64288,0 4.78123,-2.11611 4.78125,-4.75 l 0,-50.25 0,-36.21875 c 0,-2.6339 -2.13838,-4.75 -4.78125,-4.75 l -37.71875,0 -14.15625,0 z" 42.15778 + id="rect7236" 42.15779 + style="fill:url(#linearGradient6404);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15780 + <path 42.15781 + inkscape:connector-curvature="0" 42.15782 + d="m 773.15708,287.93869 c -2.64288,0 -4.78123,1.8089 -4.78125,4.03125 l 0,44.375 c 0,2.22235 2.13837,4 4.78125,4 l 0.375,0 3.8125,0 c 2.64292,-1e-5 4.75,1.8089 4.75,4.03125 l 0,24.9375 0.0312,0 0,22.71875 c 0,2.22235 2.13837,4.03124 4.78125,4.03125 l 54.09375,0 c 2.64288,0 4.78123,-1.8089 4.78125,-4.03125 l 0,-55.6875 0,-44.375 c 0,-2.22236 -2.13837,-4.03125 -4.78125,-4.03125 l -54.09375,0 -13.75,0 z" 42.15783 + id="rect7242" 42.15784 + style="fill:none;stroke:#000000;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15785 + <rect 42.15786 + width="17.614702" 42.15787 + height="47.063835" 42.15788 + rx="4.7705498" 42.15789 + ry="4.7543411" 42.15790 + x="79.433937" 42.15791 + y="344.677" 42.15792 + id="rect7274" 42.15793 + style="fill:url(#linearGradient6400);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15794 + <rect 42.15795 + width="11.279431" 42.15796 + height="34.563782" 42.15797 + x="77.246399" 42.15798 + y="347.884" 42.15799 + id="rect7252" 42.15800 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15801 + <path 42.15802 + inkscape:connector-curvature="0" 42.15803 + d="m 79.40723,350.89908 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.15804 + id="path7254" 42.15805 + style="fill:url(#linearGradient6396);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15806 + <path 42.15807 + inkscape:connector-curvature="0" 42.15808 + d="m 77.70771,380.03147 10.80506,1.15562 0.03953,10.50571 c -0.0056,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.15809 + id="path7256" 42.15810 + style="fill:url(#linearGradient6393);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15811 + <rect 42.15812 + width="56.892265" 42.15813 + height="40.245304" 42.15814 + rx="4.7705498" 42.15815 + ry="4.7543411" 42.15816 + x="21.097626" 42.15817 + y="344.677" 42.15818 + id="rect7088" 42.15819 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15820 + <rect 42.15821 + width="89.374969" 42.15822 + height="52.044121" 42.15823 + rx="4.7705498" 42.15824 + ry="4.0114756" 42.15825 + x="14.327308" 42.15826 + y="344.01947" 42.15827 + id="rect7096" 42.15828 + style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15829 + <rect 42.15830 + width="55.302391" 42.15831 + height="40.245304" 42.15832 + rx="4.7705498" 42.15833 + ry="4.7543411" 42.15834 + x="21.097626" 42.15835 + y="344.677" 42.15836 + id="rect7090" 42.15837 + style="fill:url(#linearGradient6388);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15838 + <rect 42.15839 + width="61.71397" 42.15840 + height="52.044125" 42.15841 + rx="4.7705498" 42.15842 + ry="4.011476" 42.15843 + x="14.815639" 42.15844 + y="456.14639" 42.15845 + id="rect7297" 42.15846 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15847 + <rect 42.15848 + width="11.279431" 42.15849 + height="36.331551" 42.15850 + x="66.549614" 42.15851 + y="460.24316" 42.15852 + id="rect7299" 42.15853 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15854 + <path 42.15855 + inkscape:connector-curvature="0" 42.15856 + d="m 68.710457,464.01587 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.15857 + id="path7301" 42.15858 + style="fill:url(#linearGradient6383);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15859 + <rect 42.15860 + width="51.683628" 42.15861 + height="12.974548" 42.15862 + rx="0" 42.15863 + ry="0" 42.15864 + x="22.480259" 42.15865 + y="495.20502" 42.15866 + id="rect7303" 42.15867 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15868 + <path 42.15869 + inkscape:connector-curvature="0" 42.15870 + d="m 67.010937,492.15841 10.80506,1.15562 0.03953,10.50571 c -0.0056,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.15871 + id="path7305" 42.15872 + style="fill:url(#linearGradient6379);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15873 + <path 42.15874 + inkscape:connector-curvature="0" 42.15875 + d="m 21.613393,492.05335 -7.484483,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.401093,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.15876 + id="path7307" 42.15877 + style="fill:url(#linearGradient6376);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15878 + <rect 42.15879 + width="30.221668" 42.15880 + height="40.245304" 42.15881 + rx="4.7705498" 42.15882 + ry="4.7543411" 42.15883 + x="38.37167" 42.15884 + y="456.80392" 42.15885 + id="rect7309" 42.15886 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15887 + <rect 42.15888 + width="45.700687" 42.15889 + height="40.245304" 42.15890 + rx="4.7705498" 42.15891 + ry="4.7543411" 42.15892 + x="21.585957" 42.15893 + y="456.80392" 42.15894 + id="rect7311" 42.15895 + style="fill:url(#linearGradient6372);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15896 + <text 42.15897 + x="25.07645" 42.15898 + y="474.45703" 42.15899 + transform="scale(1.0017033,0.9982996)" 42.15900 + id="text7313" 42.15901 + xml:space="preserve" 42.15902 + style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.15903 + sodipodi:linespacing="100%"><tspan 42.15904 + x="25.07645" 42.15905 + y="474.45703" 42.15906 + id="tspan7315">Strg</tspan></text> 42.15907 + <rect 42.15908 + width="63.333801" 42.15909 + height="52.044121" 42.15910 + rx="4.7705498" 42.15911 + ry="4.0114756" 42.15912 + x="14.45849" 42.15913 + y="456.14639" 42.15914 + id="rect7317" 42.15915 + style="fill:none;stroke:#000000;stroke-width:1.49999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15916 + <rect 42.15917 + width="61.71397" 42.15918 + height="52.044125" 42.15919 + rx="4.7705498" 42.15920 + ry="4.011476" 42.15921 + x="82.315636" 42.15922 + y="456.14639" 42.15923 + id="rect7327" 42.15924 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15925 + <rect 42.15926 + width="11.279431" 42.15927 + height="36.331551" 42.15928 + x="134.04962" 42.15929 + y="460.24316" 42.15930 + id="rect7329" 42.15931 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15932 + <path 42.15933 + inkscape:connector-curvature="0" 42.15934 + d="m 136.21046,464.01587 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.15935 + id="path7331" 42.15936 + style="fill:url(#linearGradient6364);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15937 + <rect 42.15938 + width="51.683628" 42.15939 + height="12.974548" 42.15940 + rx="0" 42.15941 + ry="0" 42.15942 + x="89.980263" 42.15943 + y="495.20502" 42.15944 + id="rect7333" 42.15945 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15946 + <path 42.15947 + inkscape:connector-curvature="0" 42.15948 + d="m 134.51094,492.15841 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.15949 + id="path7335" 42.15950 + style="fill:url(#linearGradient6360);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15951 + <path 42.15952 + inkscape:connector-curvature="0" 42.15953 + d="m 89.113393,492.05335 -7.484483,1.26068 -0.03953,10.50571 c 0.0056,2.70945 2.16679,4.26611 4.401093,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.15954 + id="path7337" 42.15955 + style="fill:url(#linearGradient6357);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15956 + <rect 42.15957 + width="30.221668" 42.15958 + height="40.245304" 42.15959 + rx="4.7705498" 42.15960 + ry="4.7543411" 42.15961 + x="105.87167" 42.15962 + y="456.80392" 42.15963 + id="rect7339" 42.15964 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15965 + <rect 42.15966 + width="45.700687" 42.15967 + height="40.245304" 42.15968 + rx="4.7705498" 42.15969 + ry="4.7543411" 42.15970 + x="89.08596" 42.15971 + y="456.80392" 42.15972 + id="rect7341" 42.15973 + style="fill:url(#linearGradient6353);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15974 + <rect 42.15975 + width="63.333801" 42.15976 + height="52.044121" 42.15977 + rx="4.7705498" 42.15978 + ry="4.0114756" 42.15979 + x="81.958488" 42.15980 + y="456.14639" 42.15981 + id="rect7347" 42.15982 + style="fill:none;stroke:#000000;stroke-width:1.49999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.15983 + <rect 42.15984 + width="61.71397" 42.15985 + height="52.044125" 42.15986 + rx="4.7705498" 42.15987 + ry="4.011476" 42.15988 + x="150.52992" 42.15989 + y="456.14639" 42.15990 + id="rect7357" 42.15991 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15992 + <rect 42.15993 + width="11.279431" 42.15994 + height="36.331551" 42.15995 + x="202.2639" 42.15996 + y="460.24316" 42.15997 + id="rect7359" 42.15998 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.15999 + <path 42.16000 + inkscape:connector-curvature="0" 42.16001 + d="m 204.42475,464.01587 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.16002 + id="path7361" 42.16003 + style="fill:url(#linearGradient6347);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16004 + <rect 42.16005 + width="51.683628" 42.16006 + height="12.974548" 42.16007 + rx="0" 42.16008 + ry="0" 42.16009 + x="158.19455" 42.16010 + y="495.20502" 42.16011 + id="rect7363" 42.16012 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16013 + <path 42.16014 + inkscape:connector-curvature="0" 42.16015 + d="m 202.72523,492.15841 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.16016 + id="path7365" 42.16017 + style="fill:url(#linearGradient6343);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16018 + <path 42.16019 + inkscape:connector-curvature="0" 42.16020 + d="m 157.32768,492.05335 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.16021 + id="path7367" 42.16022 + style="fill:url(#linearGradient6340);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16023 + <rect 42.16024 + width="30.221668" 42.16025 + height="40.245304" 42.16026 + rx="4.7705498" 42.16027 + ry="4.7543411" 42.16028 + x="174.08595" 42.16029 + y="456.80392" 42.16030 + id="rect7369" 42.16031 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16032 + <rect 42.16033 + width="45.700687" 42.16034 + height="40.245304" 42.16035 + rx="4.7705498" 42.16036 + ry="4.7543411" 42.16037 + x="157.30025" 42.16038 + y="456.80392" 42.16039 + id="rect7371" 42.16040 + style="fill:url(#linearGradient6336);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16041 + <rect 42.16042 + width="63.333801" 42.16043 + height="52.044121" 42.16044 + rx="4.7705498" 42.16045 + ry="4.0114756" 42.16046 + x="150.17278" 42.16047 + y="456.14639" 42.16048 + id="rect7377" 42.16049 + style="fill:none;stroke:#000000;stroke-width:1.49999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16050 + <rect 42.16051 + width="356.40106" 42.16052 + height="52.044125" 42.16053 + rx="4.7705498" 42.16054 + ry="4.011476" 42.16055 + x="218.38705" 42.16056 + y="456.14639" 42.16057 + id="rect7387" 42.16058 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16059 + <rect 42.16060 + width="11.279431" 42.16061 + height="36.331551" 42.16062 + x="564.22821" 42.16063 + y="459.52887" 42.16064 + id="rect7389" 42.16065 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16066 + <path 42.16067 + inkscape:connector-curvature="0" 42.16068 + d="m 566.38904,463.30158 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.16069 + id="path7391" 42.16070 + style="fill:url(#linearGradient6330);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16071 + <rect 42.16072 + width="344.00507" 42.16073 + height="12.974548" 42.16074 + rx="0" 42.16075 + ry="0" 42.16076 + x="226.05168" 42.16077 + y="495.20502" 42.16078 + id="rect7393" 42.16079 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16080 + <path 42.16081 + inkscape:connector-curvature="0" 42.16082 + d="m 564.68952,491.44412 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.16083 + id="path7395" 42.16084 + style="fill:url(#linearGradient6326);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16085 + <path 42.16086 + inkscape:connector-curvature="0" 42.16087 + d="m 225.18483,492.05335 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.16088 + id="path7397" 42.16089 + style="fill:url(#linearGradient6323);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16090 + <rect 42.16091 + width="324.06931" 42.16092 + height="40.245304" 42.16093 + rx="4.7705498" 42.16094 + ry="4.7543411" 42.16095 + x="241.94308" 42.16096 + y="456.80392" 42.16097 + id="rect7399" 42.16098 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16099 + <rect 42.16100 + width="339.36972" 42.16101 + height="40.245304" 42.16102 + rx="4.7705498" 42.16103 + ry="4.7543411" 42.16104 + x="225.15738" 42.16105 + y="456.80392" 42.16106 + id="rect7401" 42.16107 + style="fill:url(#linearGradient6319);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16108 + <rect 42.16109 + width="357.61957" 42.16110 + height="52.044121" 42.16111 + rx="4.7705503" 42.16112 + ry="4.0114756" 42.16113 + x="218.02994" 42.16114 + y="456.14639" 42.16115 + id="rect7407" 42.16116 + style="fill:none;stroke:#000000;stroke-width:1.49999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16117 + <rect 42.16118 + width="61.71397" 42.16119 + height="52.044125" 42.16120 + rx="4.7705498" 42.16121 + ry="4.011476" 42.16122 + x="579.81561" 42.16123 + y="456.14639" 42.16124 + id="rect7441" 42.16125 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16126 + <rect 42.16127 + width="11.279431" 42.16128 + height="36.331551" 42.16129 + x="631.54956" 42.16130 + y="460.24316" 42.16131 + id="rect7443" 42.16132 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16133 + <path 42.16134 + inkscape:connector-curvature="0" 42.16135 + d="m 633.71047,464.01587 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.16136 + id="path7445" 42.16137 + style="fill:url(#linearGradient6313);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16138 + <rect 42.16139 + width="51.683628" 42.16140 + height="12.974548" 42.16141 + rx="0" 42.16142 + ry="0" 42.16143 + x="587.48022" 42.16144 + y="495.20502" 42.16145 + id="rect7447" 42.16146 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16147 + <path 42.16148 + inkscape:connector-curvature="0" 42.16149 + d="m 632.01095,492.15841 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.16150 + id="path7449" 42.16151 + style="fill:url(#linearGradient6309);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16152 + <path 42.16153 + inkscape:connector-curvature="0" 42.16154 + d="m 586.6134,492.05335 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.16155 + id="path7451" 42.16156 + style="fill:url(#linearGradient6306);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16157 + <rect 42.16158 + width="30.221668" 42.16159 + height="40.245304" 42.16160 + rx="4.7705498" 42.16161 + ry="4.7543411" 42.16162 + x="603.37164" 42.16163 + y="456.80392" 42.16164 + id="rect7453" 42.16165 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16166 + <rect 42.16167 + width="45.700687" 42.16168 + height="40.245304" 42.16169 + rx="4.7705498" 42.16170 + ry="4.7543411" 42.16171 + x="586.58594" 42.16172 + y="456.80392" 42.16173 + id="rect7455" 42.16174 + style="fill:url(#linearGradient6302);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16175 + <rect 42.16176 + width="63.333801" 42.16177 + height="52.044121" 42.16178 + rx="4.7705498" 42.16179 + ry="4.0114756" 42.16180 + x="579.4585" 42.16181 + y="456.14639" 42.16182 + id="rect7461" 42.16183 + style="fill:none;stroke:#000000;stroke-width:1.49999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16184 + <rect 42.16185 + width="61.71397" 42.16186 + height="52.044125" 42.16187 + rx="4.7705498" 42.16188 + ry="4.011476" 42.16189 + x="783.27191" 42.16190 + y="456.14639" 42.16191 + id="rect7471" 42.16192 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16193 + <rect 42.16194 + width="11.279431" 42.16195 + height="36.331551" 42.16196 + x="835.00586" 42.16197 + y="460.24316" 42.16198 + id="rect7473" 42.16199 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16200 + <path 42.16201 + inkscape:connector-curvature="0" 42.16202 + d="m 837.16677,464.01587 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.16203 + id="path7475" 42.16204 + style="fill:url(#linearGradient6296);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16205 + <rect 42.16206 + width="51.683628" 42.16207 + height="12.974548" 42.16208 + rx="0" 42.16209 + ry="0" 42.16210 + x="790.93652" 42.16211 + y="495.20502" 42.16212 + id="rect7477" 42.16213 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16214 + <path 42.16215 + inkscape:connector-curvature="0" 42.16216 + d="m 835.46725,492.15841 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.16217 + id="path7479" 42.16218 + style="fill:url(#linearGradient6292);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16219 + <path 42.16220 + inkscape:connector-curvature="0" 42.16221 + d="m 790.0697,492.05335 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.16222 + id="path7481" 42.16223 + style="fill:url(#linearGradient6289);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16224 + <rect 42.16225 + width="30.221668" 42.16226 + height="40.245304" 42.16227 + rx="4.7705498" 42.16228 + ry="4.7543411" 42.16229 + x="806.82794" 42.16230 + y="456.80392" 42.16231 + id="rect7483" 42.16232 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16233 + <rect 42.16234 + width="45.700687" 42.16235 + height="40.245304" 42.16236 + rx="4.7705498" 42.16237 + ry="4.7543411" 42.16238 + x="790.04224" 42.16239 + y="456.80392" 42.16240 + id="rect7485" 42.16241 + style="fill:url(#linearGradient6285);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16242 + <rect 42.16243 + width="63.333801" 42.16244 + height="52.044121" 42.16245 + rx="4.7705498" 42.16246 + ry="4.0114756" 42.16247 + x="782.91479" 42.16248 + y="456.14639" 42.16249 + id="rect7491" 42.16250 + style="fill:none;stroke:#000000;stroke-width:1.49999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16251 + <rect 42.16252 + width="61.71397" 42.16253 + height="52.044125" 42.16254 + rx="4.7705498" 42.16255 + ry="4.011476" 42.16256 + x="715.35712" 42.16257 + y="456.14639" 42.16258 + id="rect7501" 42.16259 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16260 + <rect 42.16261 + width="11.279431" 42.16262 + height="36.331551" 42.16263 + x="767.09106" 42.16264 + y="460.24316" 42.16265 + id="rect7503" 42.16266 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16267 + <path 42.16268 + inkscape:connector-curvature="0" 42.16269 + d="m 769.25195,464.01587 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.16270 + id="path7505" 42.16271 + style="fill:url(#linearGradient6279);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16272 + <rect 42.16273 + width="51.683628" 42.16274 + height="12.974548" 42.16275 + rx="0" 42.16276 + ry="0" 42.16277 + x="723.02173" 42.16278 + y="495.20502" 42.16279 + id="rect7507" 42.16280 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16281 + <path 42.16282 + inkscape:connector-curvature="0" 42.16283 + d="m 767.55243,492.15841 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.16284 + id="path7509" 42.16285 + style="fill:url(#linearGradient6275);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16286 + <path 42.16287 + inkscape:connector-curvature="0" 42.16288 + d="m 722.15488,492.05335 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.16289 + id="path7511" 42.16290 + style="fill:url(#linearGradient6272);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16291 + <rect 42.16292 + width="30.221668" 42.16293 + height="40.245304" 42.16294 + rx="4.7705498" 42.16295 + ry="4.7543411" 42.16296 + x="738.91315" 42.16297 + y="456.80392" 42.16298 + id="rect7513" 42.16299 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16300 + <rect 42.16301 + width="45.700687" 42.16302 + height="40.245304" 42.16303 + rx="4.7705498" 42.16304 + ry="4.7543411" 42.16305 + x="722.12744" 42.16306 + y="456.80392" 42.16307 + id="rect7515" 42.16308 + style="fill:url(#linearGradient6268);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16309 + <rect 42.16310 + width="63.333801" 42.16311 + height="52.044121" 42.16312 + rx="4.7705498" 42.16313 + ry="4.0114756" 42.16314 + x="715" 42.16315 + y="456.14639" 42.16316 + id="rect7521" 42.16317 + style="fill:none;stroke:#000000;stroke-width:1.49999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16318 + <rect 42.16319 + width="61.71397" 42.16320 + height="52.044125" 42.16321 + rx="4.7705498" 42.16322 + ry="4.011476" 42.16323 + x="647.44232" 42.16324 + y="456.14639" 42.16325 + id="rect7531" 42.16326 + style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16327 + <rect 42.16328 + width="11.279431" 42.16329 + height="36.331551" 42.16330 + x="699.17627" 42.16331 + y="460.24316" 42.16332 + id="rect7533" 42.16333 + style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16334 + <path 42.16335 + inkscape:connector-curvature="0" 42.16336 + d="m 701.33714,464.01587 9.09386,-2.97148 c -0.36125,-2.85683 -2.32907,-3.84571 -5.0687,-3.93718 -3.64537,0.10572 -7.20275,0.26014 -9.09387,1.33715 l 5.06871,5.57151 z" 42.16337 + id="path7535" 42.16338 + style="fill:url(#linearGradient6262);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16339 + <rect 42.16340 + width="51.683628" 42.16341 + height="12.974548" 42.16342 + rx="0" 42.16343 + ry="0" 42.16344 + x="655.10693" 42.16345 + y="495.20502" 42.16346 + id="rect7537" 42.16347 + style="fill:#929292;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16348 + <path 42.16349 + inkscape:connector-curvature="0" 42.16350 + d="m 699.63762,492.15841 10.80506,1.15562 0.0395,10.50571 c -0.006,2.70945 -2.16678,4.26611 -4.40108,4.35988 l -4.80957,-0.0525 -5.32347,-12.34421 3.68953,-3.62446 z" 42.16351 + id="path7539" 42.16352 + style="fill:url(#linearGradient6258);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16353 + <path 42.16354 + inkscape:connector-curvature="0" 42.16355 + d="m 654.24007,492.05335 -7.48448,1.26068 -0.0395,10.50571 c 0.006,2.70945 2.16679,4.26611 4.40109,4.35988 l 4.80957,-0.0525 1.68664,-12.29168 -3.37329,-3.78205 z" 42.16356 + id="path7541" 42.16357 + style="fill:url(#linearGradient6255);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16358 + <rect 42.16359 + width="30.221668" 42.16360 + height="40.245304" 42.16361 + rx="4.7705498" 42.16362 + ry="4.7543411" 42.16363 + x="670.99835" 42.16364 + y="456.80392" 42.16365 + id="rect7543" 42.16366 + style="fill:#f1f1f1;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16367 + <rect 42.16368 + width="45.700687" 42.16369 + height="40.245304" 42.16370 + rx="4.7705498" 42.16371 + ry="4.7543411" 42.16372 + x="654.21265" 42.16373 + y="456.80392" 42.16374 + id="rect7545" 42.16375 + style="fill:url(#linearGradient6251);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16376 + <rect 42.16377 + width="63.333801" 42.16378 + height="52.044121" 42.16379 + rx="4.7705498" 42.16380 + ry="4.0114756" 42.16381 + x="647.08521" 42.16382 + y="456.14639" 42.16383 + id="rect7551" 42.16384 + style="fill:none;stroke:#000000;stroke-width:1.49999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16385 + <text 42.16386 + x="162.59506" 42.16387 + y="476.49316" 42.16388 + transform="scale(1.0017033,0.9982996)" 42.16389 + id="text7561" 42.16390 + xml:space="preserve" 42.16391 + style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.16392 + sodipodi:linespacing="100%"><tspan 42.16393 + x="162.59506" 42.16394 + y="476.49316" 42.16395 + id="tspan7563">Alt</tspan></text> 42.16396 + <text 42.16397 + x="587.95544" 42.16398 + y="476.43945" 42.16399 + transform="scale(1.0017033,0.9982996)" 42.16400 + id="text7569" 42.16401 + xml:space="preserve" 42.16402 + style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.16403 + sodipodi:linespacing="100%"><tspan 42.16404 + x="587.95544" 42.16405 + y="476.43945" 42.16406 + id="tspan7571">Alt Gr</tspan></text> 42.16407 + <text 42.16408 + x="794.34491" 42.16409 + y="474.45703" 42.16410 + transform="scale(1.0017033,0.9982996)" 42.16411 + id="text7573" 42.16412 + xml:space="preserve" 42.16413 + style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.16414 + sodipodi:linespacing="100%"><tspan 42.16415 + x="794.34491" 42.16416 + y="474.45703" 42.16417 + id="tspan7575">Strg</tspan></text> 42.16418 + <path 42.16419 + inkscape:connector-curvature="0" 42.16420 + d="m 1302.1429,506.85714 c -51.977,15.9689 -1297.8225672,20.47451 -1332.952553,-0.53991 0.04189,3.63718 0.277434,7.10349 0.730614,10.37777 2.487027,17.96904 11.528729,30.15454 31.0891915,33.05879 427.2144975,25.29379 846.7904175,18.12366 1263.2755475,-2.18236 24.3584,-0.99354 40.0885,-11.2318 37.8572,-40.71429 z" 42.16421 + id="path7776" 42.16422 + style="fill:url(#linearGradient6241);fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16423 + <text 42.16424 + sodipodi:linespacing="100%" 42.16425 + x="90.190865" 42.16426 + y="435.94748" 42.16427 + transform="scale(1.0017033,0.9982996)" 42.16428 + id="text7798" 42.16429 + xml:space="preserve" 42.16430 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16431 + x="90.190865" 42.16432 + y="435.94748" 42.16433 + id="tspan7800"><</tspan></text> 42.16434 + <text 42.16435 + sodipodi:linespacing="100%" 42.16436 + x="110.33929" 42.16437 + y="431.94064" 42.16438 + transform="scale(1.0017033,0.9982996)" 42.16439 + id="text7802" 42.16440 + xml:space="preserve" 42.16441 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16442 + x="110.33929" 42.16443 + y="431.94064" 42.16444 + id="tspan7804">|</tspan></text> 42.16445 + <text 42.16446 + sodipodi:linespacing="100%" 42.16447 + x="27.696959" 42.16448 + y="255.85185" 42.16449 + transform="scale(1.0017033,0.9982996)" 42.16450 + id="text8015" 42.16451 + xml:space="preserve" 42.16452 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16453 + x="27.696959" 42.16454 + y="255.85185" 42.16455 + id="tspan8017" 42.16456 + style="font-size:20px">°</tspan></text> 42.16457 + <text 42.16458 + sodipodi:linespacing="100%" 42.16459 + x="81.676445" 42.16460 + y="247.83824" 42.16461 + transform="scale(1.0017033,0.9982996)" 42.16462 + id="text8019" 42.16463 + xml:space="preserve" 42.16464 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16465 + x="81.676445" 42.16466 + y="247.83824" 42.16467 + id="tspan8021">!</tspan></text> 42.16468 + <text 42.16469 + sodipodi:linespacing="100%" 42.16470 + x="135.51332" 42.16471 + y="247.83824" 42.16472 + transform="scale(1.0017033,0.9982996)" 42.16473 + id="text8023" 42.16474 + xml:space="preserve" 42.16475 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16476 + x="135.51332" 42.16477 + y="247.83824" 42.16478 + id="tspan8025">"</tspan></text> 42.16479 + <text 42.16480 + sodipodi:linespacing="100%" 42.16481 + x="735.97845" 42.16482 + y="380.06235" 42.16483 + transform="scale(1.0017033,0.9982996)" 42.16484 + id="text8027" 42.16485 + xml:space="preserve" 42.16486 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16487 + x="735.97845" 42.16488 + y="380.06235" 42.16489 + id="tspan8029" 42.16490 + style="font-size:14px">#</tspan></text> 42.16491 + <text 42.16492 + sodipodi:linespacing="100%" 42.16493 + x="301.83716" 42.16494 + y="247.83824" 42.16495 + transform="scale(1.0017033,0.9982996)" 42.16496 + id="text8035" 42.16497 + xml:space="preserve" 42.16498 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16499 + x="301.83716" 42.16500 + y="247.83824" 42.16501 + id="tspan8037">%</tspan></text> 42.16502 + <text 42.16503 + sodipodi:linespacing="100%" 42.16504 + x="359.23938" 42.16505 + y="247.83824" 42.16506 + transform="scale(1.0017033,0.9982996)" 42.16507 + id="text8039" 42.16508 + xml:space="preserve" 42.16509 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16510 + x="359.23938" 42.16511 + y="247.83824" 42.16512 + id="tspan8041">&</tspan></text> 42.16513 + <text 42.16514 + sodipodi:linespacing="100%" 42.16515 + x="416.28506" 42.16516 + y="247.83824" 42.16517 + transform="scale(1.0017033,0.9982996)" 42.16518 + id="text8043" 42.16519 + xml:space="preserve" 42.16520 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16521 + x="416.28506" 42.16522 + y="247.83824" 42.16523 + id="tspan8045">/</tspan></text> 42.16524 + <text 42.16525 + sodipodi:linespacing="100%" 42.16526 + x="471.35715" 42.16527 + y="247.83824" 42.16528 + transform="scale(1.0017033,0.9982996)" 42.16529 + id="text8047" 42.16530 + xml:space="preserve" 42.16531 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16532 + x="471.35715" 42.16533 + y="247.83824" 42.16534 + id="tspan8049">(</tspan></text> 42.16535 + <text 42.16536 + sodipodi:linespacing="100%" 42.16537 + x="527.07318" 42.16538 + y="247.83824" 42.16539 + transform="scale(1.0017033,0.9982996)" 42.16540 + id="text8051" 42.16541 + xml:space="preserve" 42.16542 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16543 + x="527.07318" 42.16544 + y="247.83824" 42.16545 + id="tspan8053">)</tspan></text> 42.16546 + <text 42.16547 + sodipodi:linespacing="100%" 42.16548 + x="581.02448" 42.16549 + y="247.83824" 42.16550 + transform="scale(1.0017033,0.9982996)" 42.16551 + id="text8055" 42.16552 + xml:space="preserve" 42.16553 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16554 + x="581.02448" 42.16555 + y="247.83824" 42.16556 + id="tspan8057">=</tspan></text> 42.16557 + <text 42.16558 + sodipodi:linespacing="100%" 42.16559 + x="637.49683" 42.16560 + y="247.83824" 42.16561 + transform="scale(1.0017033,0.9982996)" 42.16562 + id="text8059" 42.16563 + xml:space="preserve" 42.16564 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16565 + x="637.49683" 42.16566 + y="247.83824" 42.16567 + id="tspan8061">?</tspan></text> 42.16568 + <text 42.16569 + sodipodi:linespacing="100%" 42.16570 + x="693.96918" 42.16571 + y="255.17433" 42.16572 + transform="scale(1.0017033,0.9982996)" 42.16573 + id="text8063" 42.16574 + xml:space="preserve" 42.16575 + style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16576 + x="693.96918" 42.16577 + y="255.17433" 42.16578 + id="tspan8065">`</tspan></text> 42.16579 + <text 42.16580 + sodipodi:linespacing="100%" 42.16581 + x="714.98492" 42.16582 + y="268.76672" 42.16583 + transform="scale(1.0017033,0.9982996)" 42.16584 + id="text8067" 42.16585 + xml:space="preserve" 42.16586 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16587 + x="714.98492" 42.16588 + y="268.76672" 42.16589 + id="tspan8069" /></text> 42.16590 + <text 42.16591 + sodipodi:linespacing="100%" 42.16592 + x="240.18758" 42.16593 + y="323.06793" 42.16594 + transform="scale(1.0017033,0.9982996)" 42.16595 + id="text8071" 42.16596 + xml:space="preserve" 42.16597 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16598 + x="240.18758" 42.16599 + y="323.06793" 42.16600 + id="tspan8073">€</tspan></text> 42.16601 + <text 42.16602 + sodipodi:linespacing="100%" 42.16603 + x="151.5247" 42.16604 + y="269.30325" 42.16605 + transform="scale(1.0017033,0.9982996)" 42.16606 + id="text8075" 42.16607 + xml:space="preserve" 42.16608 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16609 + x="151.5247" 42.16610 + y="269.30325" 42.16611 + id="tspan8077" /></text> 42.16612 + <text 42.16613 + sodipodi:linespacing="100%" 42.16614 + x="248.47095" 42.16615 + y="248.5537" 42.16616 + transform="scale(1.0017033,0.9982996)" 42.16617 + id="text8083" 42.16618 + xml:space="preserve" 42.16619 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16620 + x="248.47095" 42.16621 + y="248.5537" 42.16622 + id="tspan8085">$</tspan></text> 42.16623 + <text 42.16624 + sodipodi:linespacing="100%" 42.16625 + x="437.47055" 42.16626 + y="269.30325" 42.16627 + transform="scale(1.0017033,0.9982996)" 42.16628 + id="text8087" 42.16629 + xml:space="preserve" 42.16630 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16631 + x="437.47055" 42.16632 + y="269.30325" 42.16633 + id="tspan8089">{</tspan></text> 42.16634 + <text 42.16635 + sodipodi:linespacing="100%" 42.16636 + x="492.91183" 42.16637 + y="269.30325" 42.16638 + transform="scale(1.0017033,0.9982996)" 42.16639 + id="text8091" 42.16640 + xml:space="preserve" 42.16641 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16642 + x="492.91183" 42.16643 + y="269.30325" 42.16644 + id="tspan8093">[</tspan></text> 42.16645 + <text 42.16646 + sodipodi:linespacing="100%" 42.16647 + x="549.95752" 42.16648 + y="269.30325" 42.16649 + transform="scale(1.0017033,0.9982996)" 42.16650 + id="text8095" 42.16651 + xml:space="preserve" 42.16652 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16653 + x="549.95752" 42.16654 + y="269.30325" 42.16655 + id="tspan8097">]</tspan></text> 42.16656 + <text 42.16657 + sodipodi:linespacing="100%" 42.16658 + x="605.04224" 42.16659 + y="269.30325" 42.16660 + transform="scale(1.0017033,0.9982996)" 42.16661 + id="text8099" 42.16662 + xml:space="preserve" 42.16663 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16664 + x="605.04224" 42.16665 + y="269.30325" 42.16666 + id="tspan8101">}</tspan></text> 42.16667 + <text 42.16668 + sodipodi:linespacing="100%" 42.16669 + x="724.2522" 42.16670 + y="322.39743" 42.16671 + transform="scale(1.0017033,0.9982996)" 42.16672 + id="text8103" 42.16673 + xml:space="preserve" 42.16674 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16675 + x="724.2522" 42.16676 + y="322.39743" 42.16677 + id="tspan8105">+</tspan></text> 42.16678 + <text 42.16679 + sodipodi:linespacing="100%" 42.16680 + x="739.65112" 42.16681 + y="322.39743" 42.16682 + transform="scale(1.0017033,0.9982996)" 42.16683 + id="text8107" 42.16684 + xml:space="preserve" 42.16685 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16686 + x="739.65112" 42.16687 + y="322.39743" 42.16688 + id="tspan8109">~</tspan></text> 42.16689 + <text 42.16690 + sodipodi:linespacing="100%" 42.16691 + x="737.50336" 42.16692 + y="364.88376" 42.16693 + transform="scale(1.0017033,0.9982996)" 42.16694 + id="text8111" 42.16695 + xml:space="preserve" 42.16696 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16697 + x="737.50336" 42.16698 + y="364.88376" 42.16699 + id="tspan8113">'</tspan></text> 42.16700 + <text 42.16701 + x="499.9371" 42.16702 + y="565.05682" 42.16703 + transform="scale(1.297737,0.77057215)" 42.16704 + id="text8128" 42.16705 + xml:space="preserve" 42.16706 + style="font-size:14.01282024px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.16707 + sodipodi:linespacing="100%"><tspan 42.16708 + x="499.9371" 42.16709 + y="565.05682" 42.16710 + id="tspan8130">-</tspan></text> 42.16711 + <text 42.16712 + x="592.09369" 42.16713 + y="437.78821" 42.16714 + transform="scale(1.0017033,0.9982996)" 42.16715 + id="text8132" 42.16716 + xml:space="preserve" 42.16717 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.16718 + sodipodi:linespacing="100%"><tspan 42.16719 + x="592.09369" 42.16720 + y="437.78821" 42.16721 + id="tspan8134">.</tspan></text> 42.16722 + <text 42.16723 + x="537.46039" 42.16724 + y="437.49512" 42.16725 + transform="scale(1.0017033,0.9982996)" 42.16726 + id="text8136" 42.16727 + xml:space="preserve" 42.16728 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.16729 + sodipodi:linespacing="100%"><tspan 42.16730 + x="537.46039" 42.16731 + y="437.49512" 42.16732 + id="tspan8138">,</tspan></text> 42.16733 + <text 42.16734 + x="125.80441" 42.16735 + y="611.46545" 42.16736 + id="text8140" 42.16737 + xml:space="preserve" 42.16738 + style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16739 + x="125.80441" 42.16740 + y="611.46545" 42.16741 + id="tspan8142" /></text> 42.16742 + <path 42.16743 + inkscape:connector-curvature="0" 42.16744 + d="m 33.606568,414.86885 -6.6875,7.6875 2.9375,0 0,5 7.5,0 0,-5 2.9375,0 -6.6875,-7.6875 z" 42.16745 + id="path8144" 42.16746 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16747 + <path 42.16748 + inkscape:connector-curvature="0" 42.16749 + d="m 716.43398,412.84855 -6.6875,7.6875 2.9375,0 0,5 7.5,0 0,-5 2.9375,0 -6.6875,-7.6875 z" 42.16750 + id="path8152" 42.16751 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16752 + <g 42.16753 + transform="translate(132.11204,-842.00124)" 42.16754 + id="g8160" 42.16755 + style="display:inline"> 42.16756 + <path 42.16757 + inkscape:connector-curvature="0" 42.16758 + d="m -88.13211,1140.1625 -17.67767,0" 42.16759 + id="path8154" 42.16760 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16761 + <path 42.16762 + inkscape:connector-curvature="0" 42.16763 + d="m -105.62038,1135.8378 0,8.6494" 42.16764 + id="path8156" 42.16765 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16766 + <path 42.16767 + inkscape:connector-curvature="0" 42.16768 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16769 + transform="translate(-244.39009,23.287744)" 42.16770 + id="path8158" 42.16771 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16772 + </g> 42.16773 + <g 42.16774 + transform="matrix(-1,0,0,1,-61.82985,-823.56596)" 42.16775 + id="g8169" 42.16776 + style="display:inline"> 42.16777 + <path 42.16778 + inkscape:connector-curvature="0" 42.16779 + d="m -88.13211,1140.1625 -17.67767,0" 42.16780 + id="path8171" 42.16781 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16782 + <path 42.16783 + inkscape:connector-curvature="0" 42.16784 + d="m -105.62038,1135.8378 0,8.6494" 42.16785 + id="path8173" 42.16786 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16787 + <path 42.16788 + inkscape:connector-curvature="0" 42.16789 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16790 + transform="translate(-244.39009,23.287744)" 42.16791 + id="path8175" 42.16792 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16793 + </g> 42.16794 + <path 42.16795 + inkscape:connector-curvature="0" 42.16796 + d="m 784.74541,245.19697 -28.49436,0" 42.16797 + id="path8179" 42.16798 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16799 + <path 42.16800 + inkscape:connector-curvature="0" 42.16801 + d="m 755.81832,245.19701 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16802 + id="path8183" 42.16803 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16804 + <path 42.16805 + inkscape:connector-curvature="0" 42.16806 + d="m 801.66863,346.33151 14.09969,0 0,-37.9978" 42.16807 + id="path6445" 42.16808 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16809 + <path 42.16810 + inkscape:connector-curvature="0" 42.16811 + d="m 801.2359,346.33155 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16812 + id="path6447" 42.16813 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16814 + <g 42.16815 + id="g6475"> 42.16816 + <path 42.16817 + inkscape:connector-curvature="0" 42.16818 + d="m 891.54419,477.48869 -8.8515,0" 42.16819 + id="path6449" 42.16820 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16821 + <path 42.16822 + inkscape:connector-curvature="0" 42.16823 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16824 + transform="matrix(0.8393993,0,0,0.8393993,764.36325,-460.0152)" 42.16825 + id="path6451" 42.16826 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16827 + </g> 42.16828 + <g 42.16829 + id="g6471"> 42.16830 + <path 42.16831 + inkscape:connector-curvature="0" 42.16832 + d="m 994.5453,477.48869 8.8515,0" 42.16833 + id="path6453" 42.16834 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16835 + <path 42.16836 + inkscape:connector-curvature="0" 42.16837 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16838 + transform="matrix(-0.8393993,0,0,0.8393993,1121.7263,-460.0152)" 42.16839 + id="path6455" 42.16840 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16841 + </g> 42.16842 + <g 42.16843 + transform="matrix(0,1,-1,0,1848.337,-202.64536)" 42.16844 + id="g6461"> 42.16845 + <path 42.16846 + inkscape:connector-curvature="0" 42.16847 + d="m 676.50961,907.48869 8.8515,0" 42.16848 + id="path6457" 42.16849 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16850 + <path 42.16851 + inkscape:connector-curvature="0" 42.16852 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16853 + transform="matrix(-0.8393993,0,0,0.8393993,803.69055,-30.015197)" 42.16854 + id="path6459" 42.16855 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16856 + </g> 42.16857 + <g 42.16858 + transform="matrix(0,-1,-1,0,1848.337,1097.6227)" 42.16859 + id="g6465"> 42.16860 + <path 42.16861 + inkscape:connector-curvature="0" 42.16862 + d="m 676.50961,907.48869 8.8515,0" 42.16863 + id="path6467" 42.16864 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16865 + <path 42.16866 + inkscape:connector-curvature="0" 42.16867 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16868 + transform="matrix(-0.8393993,0,0,0.8393993,803.69055,-30.015197)" 42.16869 + id="path6469" 42.16870 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16871 + </g> 42.16872 + <g 42.16873 + transform="translate(172,-100)" 42.16874 + id="g6479"> 42.16875 + <path 42.16876 + inkscape:connector-curvature="0" 42.16877 + d="m 891.54419,477.48869 -8.8515,0" 42.16878 + id="path6481" 42.16879 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16880 + <path 42.16881 + inkscape:connector-curvature="0" 42.16882 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16883 + transform="matrix(0.8393993,0,0,0.8393993,764.36325,-460.0152)" 42.16884 + id="path6483" 42.16885 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16886 + </g> 42.16887 + <g 42.16888 + transform="translate(170,-100)" 42.16889 + id="g6485"> 42.16890 + <path 42.16891 + inkscape:connector-curvature="0" 42.16892 + d="m 994.5453,477.48869 8.8515,0" 42.16893 + id="path6487" 42.16894 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16895 + <path 42.16896 + inkscape:connector-curvature="0" 42.16897 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16898 + transform="matrix(-0.8393993,0,0,0.8393993,1121.7263,-460.0152)" 42.16899 + id="path6489" 42.16900 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16901 + </g> 42.16902 + <g 42.16903 + transform="matrix(0,1,-1,0,2018.337,-251.72158)" 42.16904 + id="g6491"> 42.16905 + <path 42.16906 + inkscape:connector-curvature="0" 42.16907 + d="m 676.50961,907.48869 8.8515,0" 42.16908 + id="path6493" 42.16909 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16910 + <path 42.16911 + inkscape:connector-curvature="0" 42.16912 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16913 + transform="matrix(-0.8393993,0,0,0.8393993,803.69055,-30.015197)" 42.16914 + id="path6495" 42.16915 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16916 + </g> 42.16917 + <g 42.16918 + transform="matrix(0,-1,-1,0,2018.337,999.76079)" 42.16919 + id="g6497"> 42.16920 + <path 42.16921 + inkscape:connector-curvature="0" 42.16922 + d="m 676.50961,907.48869 8.8515,0" 42.16923 + id="path6499" 42.16924 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.16925 + <path 42.16926 + inkscape:connector-curvature="0" 42.16927 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.16928 + transform="matrix(-0.8393993,0,0,0.8393993,803.69055,-30.015197)" 42.16929 + id="path6501" 42.16930 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.16931 + </g> 42.16932 + <text 42.16933 + sodipodi:linespacing="100%" 42.16934 + x="1050.4628" 42.16935 + y="303.33286" 42.16936 + transform="scale(1.0017033,0.9982996)" 42.16937 + id="text6503" 42.16938 + xml:space="preserve" 42.16939 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16940 + x="1050.4628" 42.16941 + y="303.33286" 42.16942 + id="tspan6505">7</tspan></text> 42.16943 + <text 42.16944 + sodipodi:linespacing="100%" 42.16945 + x="1104.9182" 42.16946 + y="303.33286" 42.16947 + transform="scale(1.0017033,0.9982996)" 42.16948 + id="text6507" 42.16949 + xml:space="preserve" 42.16950 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16951 + x="1104.9182" 42.16952 + y="303.33286" 42.16953 + id="tspan6509">8</tspan></text> 42.16954 + <text 42.16955 + sodipodi:linespacing="100%" 42.16956 + x="1160.3822" 42.16957 + y="303.33286" 42.16958 + transform="scale(1.0017033,0.9982996)" 42.16959 + id="text6511" 42.16960 + xml:space="preserve" 42.16961 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16962 + x="1160.3822" 42.16963 + y="303.33286" 42.16964 + id="tspan6513">9</tspan></text> 42.16965 + <text 42.16966 + sodipodi:linespacing="100%" 42.16967 + x="1050.4628" 42.16968 + y="359.49182" 42.16969 + transform="scale(1.0017033,0.9982996)" 42.16970 + id="text6515" 42.16971 + xml:space="preserve" 42.16972 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16973 + x="1050.4628" 42.16974 + y="359.49182" 42.16975 + id="tspan6517">4</tspan></text> 42.16976 + <text 42.16977 + sodipodi:linespacing="100%" 42.16978 + x="1104.9182" 42.16979 + y="359.49182" 42.16980 + transform="scale(1.0017033,0.9982996)" 42.16981 + id="text6519" 42.16982 + xml:space="preserve" 42.16983 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16984 + x="1104.9182" 42.16985 + y="359.49182" 42.16986 + id="tspan6521">5</tspan></text> 42.16987 + <text 42.16988 + sodipodi:linespacing="100%" 42.16989 + x="1160.3822" 42.16990 + y="359.49182" 42.16991 + transform="scale(1.0017033,0.9982996)" 42.16992 + id="text6523" 42.16993 + xml:space="preserve" 42.16994 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.16995 + x="1160.3822" 42.16996 + y="359.49182" 42.16997 + id="tspan6525">6</tspan></text> 42.16998 + <text 42.16999 + sodipodi:linespacing="100%" 42.17000 + x="1050.4628" 42.17001 + y="415.65079" 42.17002 + transform="scale(1.0017033,0.9982996)" 42.17003 + id="text6527" 42.17004 + xml:space="preserve" 42.17005 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17006 + x="1050.4628" 42.17007 + y="415.65079" 42.17008 + id="tspan6529">1</tspan></text> 42.17009 + <text 42.17010 + sodipodi:linespacing="100%" 42.17011 + x="1104.9182" 42.17012 + y="415.65079" 42.17013 + transform="scale(1.0017033,0.9982996)" 42.17014 + id="text6531" 42.17015 + xml:space="preserve" 42.17016 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17017 + x="1104.9182" 42.17018 + y="415.65079" 42.17019 + id="tspan6533">2</tspan></text> 42.17020 + <text 42.17021 + sodipodi:linespacing="100%" 42.17022 + x="1160.3822" 42.17023 + y="415.65079" 42.17024 + transform="scale(1.0017033,0.9982996)" 42.17025 + id="text6535" 42.17026 + xml:space="preserve" 42.17027 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17028 + x="1160.3822" 42.17029 + y="415.65079" 42.17030 + id="tspan6537">3</tspan></text> 42.17031 + <text 42.17032 + sodipodi:linespacing="100%" 42.17033 + x="1050.4628" 42.17034 + y="472.31567" 42.17035 + transform="scale(1.0017033,0.9982996)" 42.17036 + id="text6539" 42.17037 + xml:space="preserve" 42.17038 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17039 + x="1050.4628" 42.17040 + y="472.31567" 42.17041 + id="tspan6541">0</tspan></text> 42.17042 + <text 42.17043 + sodipodi:linespacing="100%" 42.17044 + x="1049.4949" 42.17045 + y="324.18542" 42.17046 + transform="scale(1.0017033,0.9982996)" 42.17047 + id="text6543" 42.17048 + xml:space="preserve" 42.17049 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17050 + x="1049.4949" 42.17051 + y="324.18542" 42.17052 + id="tspan6545">Pos 1</tspan></text> 42.17053 + <text 42.17054 + sodipodi:linespacing="100%" 42.17055 + x="1049.4949" 42.17056 + y="436.37619" 42.17057 + transform="scale(1.0017033,0.9982996)" 42.17058 + id="text6551" 42.17059 + xml:space="preserve" 42.17060 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17061 + x="1049.4949" 42.17062 + y="436.37619" 42.17063 + id="tspan6553">Ende</tspan></text> 42.17064 + <text 42.17065 + sodipodi:linespacing="100%" 42.17066 + x="1049.4949" 42.17067 + y="491.96759" 42.17068 + transform="scale(1.0017033,0.9982996)" 42.17069 + id="text6559" 42.17070 + xml:space="preserve" 42.17071 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17072 + x="1049.4949" 42.17073 + y="491.96759" 42.17074 + id="tspan6561">Einfg</tspan></text> 42.17075 + <text 42.17076 + sodipodi:linespacing="100%" 42.17077 + x="1158.9513" 42.17078 + y="491.96759" 42.17079 + transform="scale(1.0017033,0.9982996)" 42.17080 + id="text6563" 42.17081 + xml:space="preserve" 42.17082 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17083 + x="1158.9513" 42.17084 + y="491.96759" 42.17085 + id="tspan6565">Entf</tspan></text> 42.17086 + <text 42.17087 + sodipodi:linespacing="100%" 42.17088 + x="1160.2755" 42.17089 + y="472.31567" 42.17090 + transform="scale(1.0017033,0.9982996)" 42.17091 + id="text7337" 42.17092 + xml:space="preserve" 42.17093 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17094 + x="1160.2755" 42.17095 + y="472.31567" 42.17096 + id="tspan7339">,</tspan></text> 42.17097 + <path 42.17098 + inkscape:connector-curvature="0" 42.17099 + d="m -27.274119,174.48212 -3.535534,331.83511 c 0.271782,23.59781 8.69508,40.00311 31.8198055,43.43656 427.2144975,25.29379 846.7904175,18.12366 1263.2755475,-2.18236 24.3584,-0.99354 40.0885,-11.2318 37.8572,-40.71429 L 1297.8571,184 c -3.7283,-38.94351 -24.1538,-61.98505 -67.8571,-62.85714 -408.00558,-43.747783 -809.36963,-47.64638 -1202.142857,0 -25.7869048,5.6546 -49.941382,13.98044 -55.131262,53.33926 z" 42.17100 + id="path7770" 42.17101 + style="fill:none;stroke:#373737;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.17102 + <text 42.17103 + sodipodi:linespacing="100%" 42.17104 + x="159.84302" 42.17105 + y="265.01025" 42.17106 + transform="scale(1.0017033,0.9982996)" 42.17107 + id="text4644" 42.17108 + xml:space="preserve" 42.17109 + style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17110 + x="159.84302" 42.17111 + y="265.01025" 42.17112 + id="tspan4646">2</tspan></text> 42.17113 + <text 42.17114 + sodipodi:linespacing="100%" 42.17115 + x="215.46257" 42.17116 + y="265.01025" 42.17117 + transform="scale(1.0017033,0.9982996)" 42.17118 + id="text4648" 42.17119 + xml:space="preserve" 42.17120 + style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17121 + x="215.46257" 42.17122 + y="265.01025" 42.17123 + id="tspan4650">3</tspan></text> 42.17124 + <text 42.17125 + sodipodi:linespacing="100%" 42.17126 + x="636.74323" 42.17127 + y="265.85587" 42.17128 + transform="scale(1.0017033,0.9982996)" 42.17129 + id="text4656" 42.17130 + xml:space="preserve" 42.17131 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17132 + x="636.74323" 42.17133 + y="265.85587" 42.17134 + id="tspan4658">ß</tspan></text> 42.17135 + <text 42.17136 + sodipodi:linespacing="125%" 42.17137 + x="696.23297" 42.17138 + y="265.75119" 42.17139 + id="text4670" 42.17140 + xml:space="preserve" 42.17141 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:tb-rl;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17142 + x="265.75119" 42.17143 + y="696.23297" 42.17144 + id="tspan4672" /></text> 42.17145 + <text 42.17146 + sodipodi:linespacing="100%" 42.17147 + x="-707.77783" 42.17148 + y="272.39963" 42.17149 + transform="scale(-0.9885812,1.0115507)" 42.17150 + id="text4678" 42.17151 + xml:space="preserve" 42.17152 + style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17153 + x="-707.77783" 42.17154 + y="272.39963" 42.17155 + id="tspan4680">`</tspan></text> 42.17156 + <text 42.17157 + x="981.91577" 42.17158 + y="195.96252" 42.17159 + transform="scale(1.0017033,0.9982996)" 42.17160 + id="text4650" 42.17161 + xml:space="preserve" 42.17162 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.17163 + sodipodi:linespacing="100%"><tspan 42.17164 + x="981.91577" 42.17165 + y="195.96252" 42.17166 + id="tspan4652">Untbr</tspan></text> 42.17167 + <text 42.17168 + x="870.44318" 42.17169 + y="195.96252" 42.17170 + transform="scale(1.0017033,0.9982996)" 42.17171 + id="text4646" 42.17172 + xml:space="preserve" 42.17173 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed" 42.17174 + sodipodi:linespacing="100%"><tspan 42.17175 + x="870.44318" 42.17176 + y="195.96252" 42.17177 + id="tspan4651">S-Abf</tspan></text> 42.17178 + <text 42.17179 + x="871.60437" 42.17180 + y="180.634" 42.17181 + id="text4663" 42.17182 + xml:space="preserve" 42.17183 + style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"><tspan 42.17184 + x="871.60437" 42.17185 + y="180.634" 42.17186 + id="tspan4665" 42.17187 + style="font-size:10px;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed">Druck</tspan></text> 42.17188 + <g 42.17189 + transform="matrix(0,1,-1,0,1899.6645,-312.72158)" 42.17190 + id="g6491-9" 42.17191 + style="display:inline"> 42.17192 + <path 42.17193 + inkscape:connector-curvature="0" 42.17194 + d="m 622.50961,907.48869 8.8515,0" 42.17195 + id="path6493-4" 42.17196 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.17197 + <path 42.17198 + inkscape:connector-curvature="0" 42.17199 + d="m 633.47277,907.48873 -4.8497,-2.79999 0,5.59989 4.8497,-2.7999 z" 42.17200 + id="path6495-8" 42.17201 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.17202 + </g> 42.17203 + <g 42.17204 + transform="matrix(0,-1,-1,0,1899.6645,996.76079)" 42.17205 + id="g6497-8" 42.17206 + style="display:inline"> 42.17207 + <path 42.17208 + inkscape:connector-curvature="0" 42.17209 + d="m 730.50961,907.48869 8.8515,0" 42.17210 + id="path6499-2" 42.17211 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.17212 + <path 42.17213 + inkscape:connector-curvature="0" 42.17214 + d="m 741.47277,907.48873 -4.8497,-2.79999 0,5.59989 4.8497,-2.7999 z" 42.17215 + id="path6501-4" 42.17216 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.17217 + </g> 42.17218 + <path 42.17219 + inkscape:connector-curvature="0" 42.17220 + d="m 33.60633,364.38165 6.6875,-7.6875 -2.9375,0 0,-5 -7.5,0 0,5 -2.9375,0 6.6875,7.6875 z" 42.17221 + id="path8144-5" 42.17222 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> 42.17223 + <text 42.17224 + sodipodi:linespacing="100%" 42.17225 + x="1161.6635" 42.17226 + y="324.18542" 42.17227 + transform="scale(1.0017033,0.9982996)" 42.17228 + id="text4944-5" 42.17229 + xml:space="preserve" 42.17230 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17231 + x="1161.6635" 42.17232 + y="324.18542" 42.17233 + id="tspan4948-1">Bild</tspan></text> 42.17234 + <g 42.17235 + transform="matrix(0,-1,-1,0,2094.6645,999.76079)" 42.17236 + id="g6497-8-7" 42.17237 + style="display:inline"> 42.17238 + <path 42.17239 + inkscape:connector-curvature="0" 42.17240 + d="m 676.50961,907.48869 8.8515,0" 42.17241 + id="path6499-2-1" 42.17242 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.17243 + <path 42.17244 + inkscape:connector-curvature="0" 42.17245 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.17246 + transform="matrix(-0.8393993,0,0,0.8393993,803.69055,-30.015197)" 42.17247 + id="path6501-4-1" 42.17248 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.17249 + </g> 42.17250 + <text 42.17251 + sodipodi:linespacing="100%" 42.17252 + x="1161.6635" 42.17253 + y="436.37619" 42.17254 + transform="scale(1.0017033,0.9982996)" 42.17255 + id="text5036-5" 42.17256 + xml:space="preserve" 42.17257 + style="font-size:10.00112152px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17258 + x="1161.6635" 42.17259 + y="436.37619" 42.17260 + id="tspan5560-2">Bild</tspan></text> 42.17261 + <g 42.17262 + transform="matrix(0,1,-1,0,2094.6645,-251.72158)" 42.17263 + id="g6491-9-7" 42.17264 + style="display:inline"> 42.17265 + <path 42.17266 + inkscape:connector-curvature="0" 42.17267 + d="m 676.50961,907.48869 8.8515,0" 42.17268 + id="path6493-4-6" 42.17269 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> 42.17270 + <path 42.17271 + inkscape:connector-curvature="0" 42.17272 + d="m 138.45351,1116.8748 5.77759,-3.3357 0,6.6713 -5.77759,-3.3356 z" 42.17273 + transform="matrix(-0.8393993,0,0,0.8393993,803.69055,-30.015197)" 42.17274 + id="path6495-8-1" 42.17275 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> 42.17276 + </g> 42.17277 + <path 42.17278 + inkscape:connector-curvature="0" 42.17279 + d="m 1064.7391,264.39685 6.6875,-7.6875 -2.9375,0 0,-5 -7.5,0 0,5 -2.9375,0 6.6875,7.6875 z" 42.17280 + id="path8144-5-4" 42.17281 + style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> 42.17282 + <text 42.17283 + sodipodi:linespacing="100%" 42.17284 + x="1299.0917" 42.17285 + y="204.88979" 42.17286 + transform="scale(0.85266901,1.172788)" 42.17287 + id="text5065-5" 42.17288 + xml:space="preserve" 42.17289 + style="font-size:11.91706848px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17290 + x="1299.0917" 42.17291 + y="204.88979" 42.17292 + id="tspan5067-7">_</tspan></text> 42.17293 + <text 42.17294 + x="1108.3759" 42.17295 + y="246.50119" 42.17296 + id="text4958" 42.17297 + xml:space="preserve" 42.17298 + style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"><tspan 42.17299 + x="1108.3759" 42.17300 + y="246.50119" 42.17301 + id="tspan4960" 42.17302 + style="font-size:14px;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed">:</tspan></text> 42.17303 + <text 42.17304 + sodipodi:linespacing="100%" 42.17305 + x="1344.7998" 42.17306 + y="217.00731" 42.17307 + transform="scale(0.90592578,1.1038432)" 42.17308 + id="text5331-6" 42.17309 + xml:space="preserve" 42.17310 + style="font-size:18.08770752px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17311 + x="1344.7998" 42.17312 + y="217.00731" 42.17313 + id="tspan5335-1">_</tspan></text> 42.17314 + <text 42.17315 + sodipodi:linespacing="100%" 42.17316 + x="-462.68686" 42.17317 + y="379.76575" 42.17318 + transform="scale(-1.4352234,0.69675562)" 42.17319 + id="text6824" 42.17320 + xml:space="preserve" 42.17321 + style="font-size:18.62617874px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17322 + x="-462.68686" 42.17323 + y="379.76575" 42.17324 + id="tspan6826">/</tspan></text> 42.17325 + <text 42.17326 + sodipodi:linespacing="100%" 42.17327 + x="193.41429" 42.17328 + y="248.5537" 42.17329 + transform="scale(1.0017033,0.9982996)" 42.17330 + id="text7935" 42.17331 + xml:space="preserve" 42.17332 + style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17333 + x="193.41429" 42.17334 + y="248.5537" 42.17335 + id="tspan7937">§</tspan></text> 42.17336 + <text 42.17337 + sodipodi:linespacing="100%" 42.17338 + x="127.17659" 42.17339 + y="323.06793" 42.17340 + transform="scale(1.0017033,0.9982996)" 42.17341 + id="text7939" 42.17342 + xml:space="preserve" 42.17343 + style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans Condensed;-inkscape-font-specification:DejaVu Sans Condensed"><tspan 42.17344 + x="127.17659" 42.17345 + y="323.06793" 42.17346 + id="tspan7941">@</tspan></text> 42.17347 + </g> 42.17348 +</svg>
43.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 43.2 +++ b/src/firefoxos/main.css Mon Apr 22 22:00:43 2013 +0200 43.3 @@ -0,0 +1,116 @@ 43.4 +/* 43.5 + * OTPWCalc - One time password challenge response calculator client 43.6 + * Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> 43.7 + * 43.8 + * OTPWCalc is free software: you can redistribute it and/or modify 43.9 + * it under the terms of the European Union Public Licence, either 43.10 + * version 1.1 of the license, or (at your option) any later version. 43.11 + * 43.12 + * OTPWCalc is distributed in the hope that it will be useful, 43.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty 43.14 + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 43.15 + * the European Union Public License for more details. 43.16 + * 43.17 + * You should have received a copy of the European Union Public 43.18 + * Licence along with OTPWCalc. If not, please refer to 43.19 + * <http://joinup.ec.europa.eu/software/page/eupl/>. 43.20 + * 43.21 + * This file is part of project OTWPCalc, a one time password challenge 43.22 + * response calculator client and is found at http://otpwcalc.europalab.com/ 43.23 + * 43.24 + * main.css: W3C CSS design 43.25 + */ 43.26 + 43.27 +/* CSS media queries */ 43.28 + 43.29 +/* Basic desktop/screen width */ 43.30 +@media only screen and (min-width : 1224px) { 43.31 + /* placeholder */ 43.32 +} 43.33 +/* Traditional iPhone width */ 43.34 +@media 43.35 + only screen and (-webkit-min-device-pixel-ratio : 1.5), 43.36 + only screen and (min-device-pixel-ratio : 1.5) { 43.37 + /* placeholder */ 43.38 + } 43.39 +/* Diverse orientations */ 43.40 +@media screen and (orientation:portrait) { 43.41 + /* placeholder */ 43.42 +} 43.43 +@media screen and (orientation:landscape) { 43.44 + /* placeholder */ 43.45 +} 43.46 + 43.47 +/* Custom icons */ 43.48 + 43.49 +.ui-icon-otpwcalc-seepass { 43.50 + background-image: url("img/seeye-sd.png"); 43.51 +} 43.52 +.ui-icon-otpwcalc-email { 43.53 + background-image: url("img/email-sd.png"); 43.54 +} 43.55 +.ui-icon-otpwcalc-question { 43.56 + background-image: url("img/question-sd.png"); 43.57 +} 43.58 +.ui-icon-otpwcalc-document { 43.59 + background-image: url("img/document-sd.png"); 43.60 +} 43.61 +.ui-icon-otpwcalc-security { 43.62 + background-image: url("img/security-sd.png"); 43.63 +} 43.64 +.ui-icon-otpwcalc-manpage { 43.65 + background-image: url("img/manpage-sd.png"); 43.66 +} 43.67 +.ui-icon-otpwcalc-qstart { 43.68 + background-image: url("img/quickstart-sd.png"); 43.69 +} 43.70 +@media only screen and (-webkit-min-device-pixel-ratio: 2) { 43.71 + .ui-icon-otpwcalc-seepass { 43.72 + background-image: url("img/seeye-hd.png"); 43.73 + background-size: 18px 18px; 43.74 + } 43.75 + .ui-icon-otpwcalc-email { 43.76 + background-image: url("img/email-hd.png"); 43.77 + background-size: 18px 18px; 43.78 + } 43.79 + .ui-icon-otpwcalc-question { 43.80 + background-image: url("img/question-hd.png"); 43.81 + background-size: 18px 18px; 43.82 + } 43.83 + .ui-icon-otpwcalc-document { 43.84 + background-image: url("img/document-hd.png"); 43.85 + background-size: 18px 18px; 43.86 + } 43.87 + .ui-icon-otpwcalc-security { 43.88 + background-image: url("img/security-hd.png"); 43.89 + background-size: 18px 18px; 43.90 + } 43.91 + .ui-icon-otpwcalc-manpage { 43.92 + background-image: url("img/manpage-hd.png"); 43.93 + background-size: 18px 18px; 43.94 + } 43.95 + .ui-icon-otpwcalc-qstart { 43.96 + background-image: url("img/quickstart-hd.png"); 43.97 + background-size: 18px 18px; 43.98 + } 43.99 +} 43.100 +/* Trying to stretch buttons (not working) */ 43.101 +/*.ui-controlgroup-controls 43.102 +{ 43.103 + width:100%; 43.104 +} 43.105 +.ui-radio { 43.106 + width:33%; 43.107 +}*/ 43.108 +/* HTML5 validation */ 43.109 +/*input:required:invalid, input:focus:invalid { 43.110 + background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAeVJREFUeNqkU01oE1EQ/mazSTdRmqSxLVSJVKU9RYoHD8WfHr16kh5EFA8eSy6hXrwUPBSKZ6E9V1CU4tGf0DZWDEQrGkhprRDbCvlpavan3ezu+LLSUnADLZnHwHvzmJlvvpkhZkY7IqFNaTuAfPhhP/8Uo87SGSaDsP27hgYM/lUpy6lHdqsAtM+BPfvqKp3ufYKwcgmWCug6oKmrrG3PoaqngWjdd/922hOBs5C/jJA6x7AiUt8VYVUAVQXXShfIqCYRMZO8/N1N+B8H1sOUwivpSUSVCJ2MAjtVwBAIdv+AQkHQqbOgc+fBvorjyQENDcch16/BtkQdAlC4E6jrYHGgGU18Io3gmhzJuwub6/fQJYNi/YBpCifhbDaAPXFvCBVxXbvfbNGFeN8DkjogWAd8DljV3KRutcEAeHMN/HXZ4p9bhncJHCyhNx52R0Kv/XNuQvYBnM+CP7xddXL5KaJw0TMAF8qjnMvegeK/SLHubhpKDKIrJDlvXoMX3y9xcSMZyBQ+tpyk5hzsa2Ns7LGdfWdbL6fZvHn92d7dgROH/730YBLtiZmEdGPkFnhX4kxmjVe2xgPfCtrRd6GHRtEh9zsL8xVe+pwSzj+OtwvletZZ/wLeKD71L+ZeHHWZ/gowABkp7AwwnEjFAAAAAElFTkSuQmCC'); 43.111 + background-position: right top; 43.112 + background-repeat: no-repeat; 43.113 + -moz-box-shadow: none; 43.114 +}*/ 43.115 +/*input:required:valid { 43.116 + background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAepJREFUeNrEk79PFEEUx9/uDDd7v/AAQQnEQokmJCRGwc7/QeM/YGVxsZJQYI/EhCChICYmUJigNBSGzobQaI5SaYRw6imne0d2D/bYmZ3dGd+YQKEHYiyc5GUyb3Y+77vfeWNpreFfhvXfAWAAJtbKi7dff1rWK9vPHx3mThP2Iaipk5EzTg8Qmru38H7izmkFHAF4WH1R52654PR0Oamzj2dKxYt/Bbg1OPZuY3d9aU82VGem/5LtnJscLxWzfzRxaWNqWJP0XUadIbSzu5DuvUJpzq7sfYBKsP1GJeLB+PWpt8cCXm4+2+zLXx4guKiLXWA2Nc5ChOuacMEPv20FkT+dIawyenVi5VcAbcigWzXLeNiDRCdwId0LFm5IUMBIBgrp8wOEsFlfeCGm23/zoBZWn9a4C314A1nCoM1OAVccuGyCkPs/P+pIdVIOkG9pIh6YlyqCrwhRKD3GygK9PUBImIQQxRi4b2O+JcCLg8+e8NZiLVEygwCrWpYF0jQJziYU/ho2TUuCPTn8hHcQNuZy1/94sAMOzQHDeqaij7Cd8Dt8CatGhX3iWxgtFW/m29pnUjR7TSQcRCIAVW1FSr6KAVYdi+5Pj8yunviYHq7f72po3Y9dbi7CxzDO1+duzCXH9cEPAQYAhJELY/AqBtwAAAAASUVORK5CYII='); 43.117 + background-position: right top; 43.118 + background-repeat: no-repeat; 43.119 +}*/
44.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 44.2 +++ b/src/firefoxos/main.html Mon Apr 22 22:00:43 2013 +0200 44.3 @@ -0,0 +1,147 @@ 44.4 +<!DOCTYPE html> 44.5 +<!-- 44.6 +OTPWCalc - One time password challenge response calculator client 44.7 +Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> 44.8 + 44.9 +OTPWCalc is free software: you can redistribute it and/or modify 44.10 +it under the terms of the European Union Public Licence, either 44.11 +version 1.1 of the license, or (at your option) any later version. 44.12 + 44.13 +OTPWCalc is distributed in the hope that it will be useful, 44.14 +but WITHOUT ANY WARRANTY; without even the implied warranty 44.15 +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 44.16 +the European Union Public License for more details. 44.17 + 44.18 +You should have received a copy of the European Union Public 44.19 +Licence along with OTPWCalc. If not, please refer to 44.20 +<http://joinup.ec.europa.eu/software/page/eupl/>. 44.21 + 44.22 +This file is part of project OTWPCalc, a one time password challenge 44.23 +response calculator client and is found at http://otpwcalc.europalab.com/ 44.24 + 44.25 +main.html: W3C HTML implementation 44.26 +--> 44.27 + 44.28 +<html> 44.29 + <head> 44.30 + <meta charset="utf-8"> 44.31 + <!--<meta http-equiv="Content-Type" content="text/html;charset=utf-8">--> 44.32 + <meta name="viewport" content="width=device-width, initial-scale=1"> 44.33 + <title>OTPWCalc</title> 44.34 + <link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.3.1.min.css" /> 44.35 + <link rel="stylesheet" href="main.css" /> 44.36 + <!--<script src="sjcl-0.0/sjcl.js"></script>--> 44.37 + <script src="hashes/md5.js"></script> 44.38 + <script src="hashes/sha1.js"></script> 44.39 + <script src="hashes/rmd160.js"></script> 44.40 + <script src="otpalg/dict.js"></script> 44.41 + <script src="otpalg/otpalg.js"></script> 44.42 + <script src="jquery.core/jquery-1.9.1.js"></script> 44.43 + <script src="main.js"></script> 44.44 + <script src="jquery.mobile/jquery.mobile-1.3.1.min.js"></script> 44.45 +</head> 44.46 +<body> 44.47 + <!-- Data attributes reserved by JQuery Mobile: 44.48 + data-theme, data-ajax, data-filter, data-icon, data-grid, 44.49 + data-rel, data-icon, data-url, data-role, and data-type --> 44.50 + <!-- http://api.jquerymobile.com/data-attribute/ --> 44.51 + <!--<div data-role="page" data-fullscreen="true" class="type-interior">--> 44.52 + <div data-role="page" class="type-interior"> 44.53 + <!-- H1 header data-role good for Search Engine Optimization --> 44.54 + <!--<div data-role="header" data-position="inline">--> 44.55 + <div data-role="header" data-position="fixed" data-id="headmain"> 44.56 + <a href="about.html" data-prefetch="true" data-transition="turn" data-rel="dialog" style="margin-left: 8px; width: 5em">About</a> 44.57 + <h1>OTPWCalc</h1> 44.58 + <a href="help.html" data-prefetch="true" data-transition="flow" style="margin-right: 8px; width: 5em">Help</a> 44.59 + </div><!-- /header --> 44.60 + <div data-role="content"> 44.61 + <div class="content-primary"> 44.62 + 44.63 + <!-- This describes how to use AJAX without a server side script --> 44.64 + <!-- http://www.terminally-incoherent.com/blog/2011/12/05/making-ajax-driven-websites-without-server-side-scripting/ --> 44.65 + 44.66 + <form method="post" onsubmit="return dosubmit();" onreset="return doreset();" data-ajax="false"> 44.67 + <ul data-role="listview"> 44.68 + <!--<h2>OTPWCalc</h2>--> 44.69 + 44.70 + <!-- Implement embedded help system later 44.71 + <p>Type the given hash value and sequence number, your 44.72 + secret passphrase, and choose the encryption algorythm 44.73 + to receive a one time password (OTPW) for login.</p> 44.74 + --> 44.75 + 44.76 + <li> 44.77 + <div data-role="collapsible" data-collapsed="false" data-theme="e" data-content-theme="c"> 44.78 + <h3>Input Values</h3> 44.79 + <fieldset class="ui-grid-a"> 44.80 + <div class="ui-block-a" style="padding-right: 1em;"> 44.81 + <input type="text" name="seedid" id="seedid" value="" placeholder="Seed ID" pattern="[0-9A-Za-z]*" required /> 44.82 + </div> 44.83 + <div class="ui-block-b"> 44.84 + <input type="number" name="crement" id="crement" pattern="[0-9]*" value="" placeholder="Sequence #" min="1" required /> 44.85 + </div> 44.86 + </fieldset> 44.87 + 44.88 + <div data-role="fieldcontain" style="text-align: right; border: none;"> 44.89 + <label for="selectdecr" style="float: left; width: 40%;">Automatic<br />Decrement</label> 44.90 + <select name="selectdecr" id="selectdecr" data-iconpos="left" data-inline="true"> 44.91 + <option value="0">Disabled</option> 44.92 + <option value="1">Offset 1</option> 44.93 + <option value="2">Offset 2</option> 44.94 + <option value="3">Offset 3</option> 44.95 + <option value="4">Offset 4</option> 44.96 + </select> 44.97 + </div> 44.98 + 44.99 + <input type="password" data-clear-btn="true" name="paswrd" id="paswrd" value="" placeholder="Secret" /> 44.100 + 44.101 + <!-- JQM miscalculated spacing --> 44.102 + <div style="height: 0.25em;"></div> 44.103 + 44.104 + <a type=button name="viewpass" id="viewpass" data-theme="b" data-icon="otpwcalc-seepass" onmousedown="$('#paswrd').get(0).type='text'; return false;" onmouseup="$('#paswrd').get(0).type='password'; return false;">Press to Reveal Secret</a> 44.105 + </div> 44.106 + </li> 44.107 + 44.108 + <li> 44.109 + <div data-role="collapsible" data-collapsed="true" data-theme="e" data-content-theme="c"> 44.110 + <h3>Output Format</h3> 44.111 + <fieldset data-role="controlgroup" data-type="horizontal" style="width: 100%;"> 44.112 + <!--<input type="radio" name="radio-choice-b" id="radio-choice-a" value="off" /> 44.113 + <label for="radio-choice-a">MD4</label>--> 44.114 + <input type="radio" name="radiohash" id="hashmd5" value="on" checked="checked" style="width: 33%;" /> 44.115 + <label for="hashmd5">MD5</label> 44.116 + <input type="radio" name="radiohash" id="hashsha1" value="off" style="width: 33%;" /> 44.117 + <label for="hashsha1">SHA1</label> 44.118 + <input type="radio" name="radiohash" id="hashr160" value="off" style="width: 33%;" /> 44.119 + <label for="hashr160">R160</label> 44.120 + </fieldset> 44.121 + 44.122 + <!-- JQM miscalculated spacing --> 44.123 + <div style="height: 0.25em;"></div> 44.124 + 44.125 + <fieldset data-role="controlgroup"> 44.126 + <input type="radio" name="radiodisplay" id="displaysix" class="custom" value="on" checked="checked" /> 44.127 + <label for="displaysix">Display six words</label> 44.128 + <input type="radio" name="radiodisplay" id="displayhex" class="custom" value="off" /> 44.129 + <label for="displayhex">Display hexadecimal</label> 44.130 + </fieldset> 44.131 + </div> 44.132 + </li> 44.133 + 44.134 + <li> 44.135 + <div class="ui-body" style="text-align: center; height: 2em; padding-left: 0; padding-right: 0; padding-top: 0.5em; padding-bottom: 0.5em;"> 44.136 + <label><div id="outext" style="color: rgb(192,0,0); font-size: 1.125em;">Please Click Submit For A OTP</div></label> 44.137 + </div> 44.138 + 44.139 + <fieldset class="ui-grid-a"> 44.140 + <div class="ui-block-a"><button type="reset" data-theme="c" data-icon="delete">Reset</button></div> 44.141 + <div class="ui-block-b"><button type="submit" data-theme="b" data-icon="check">Submit</button></div> 44.142 + </fieldset> 44.143 + </li> 44.144 + </ul> 44.145 + </form> 44.146 + </div><!-- /content-primary --> 44.147 + </div><!-- /content --> 44.148 + </div><!-- /page --> 44.149 +</body> 44.150 +</html>
45.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 45.2 +++ b/src/firefoxos/main.js Mon Apr 22 22:00:43 2013 +0200 45.3 @@ -0,0 +1,79 @@ 45.4 +/* 45.5 + * OTPWCalc - One time password challenge response calculator client 45.6 + * Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> 45.7 + * 45.8 + * OTPWCalc is free software: you can redistribute it and/or modify 45.9 + * it under the terms of the European Union Public Licence, either 45.10 + * version 1.1 of the license, or (at your option) any later version. 45.11 + * 45.12 + * OTPWCalc is distributed in the hope that it will be useful, 45.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty 45.14 + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 45.15 + * the European Union Public License for more details. 45.16 + * 45.17 + * You should have received a copy of the European Union Public 45.18 + * Licence along with OTPWCalc. If not, please refer to 45.19 + * <http://joinup.ec.europa.eu/software/page/eupl/>. 45.20 + * 45.21 + * This file is part of project OTWPCalc, a one time password challenge 45.22 + * response calculator client and is found at http://otpwcalc.europalab.com/ 45.23 + * 45.24 + * main.js: ECMA JavaScript implementation 45.25 + */ 45.26 + 45.27 +// <![CDATA[ 45.28 +//// This doesn't work with AJAX (use pageinit instead) 45.29 +//// That means JavaScript in the head of any other HTML 45.30 +//// will be ignored, only the data-role="page" is parsed 45.31 +//$(document).ready(function() { 45.32 + //$.mobile.ajaxLinksEnabled = false; 45.33 +//}); 45.34 +$(document).on("mobileinit", function() { 45.35 + $.extend( $.mobile , { 45.36 + pageLoadErrorMessage: 'Either the page cannot be found or it cannot be loaded.' 45.37 + }); 45.38 +}); 45.39 +//$(document).on("pageinit", function() { 45.40 +//}); 45.41 + 45.42 +// the main logical entry point 45.43 +function otpwcalc() { 45.44 + var secr = $('#paswrd').val(); 45.45 + var user = $('#seedid').val(); 45.46 + var iter = parseInt($('#crement').val(), 10); 45.47 + var hash = genotpmd5; 45.48 + if ($('form input[name=radiohash]:checked').attr('id') == 'hashsha1') 45.49 + hash = genotpsha1; 45.50 + else if ($('form input[name=radiohash]:checked').attr('id') == 'hashr160') 45.51 + hash = genotprmd160; 45.52 + var form = arrtosix; 45.53 + if ($('form input[name=radiodisplay]:checked').attr('id') == 'displayhex') 45.54 + form = arrtohex; 45.55 + var resp = hash(secr, user, iter); 45.56 + //var resp = sjcl.random.randomWords(1,0); 45.57 + return form(resp); 45.58 +} 45.59 + 45.60 +// helper function 45.61 +function dosubmit() { 45.62 + if ($('#seedid').val().length == 0) { 45.63 + $('#outext').css({'font-size': '1.125em', 'padding-top': '0em'}).text('Please enter exactly one Seed ID'); 45.64 + return false; 45.65 + } 45.66 + else if ($('#crement').val().length == 0 || isNaN($('#crement').val())) { 45.67 + $('#outext').css({'font-size': '1.125em', 'padding-top': '0em'}).text('Please enter exactly one Sequence #'); 45.68 + return false; 45.69 + } 45.70 + else { 45.71 + $('#outext').css({'font-size': '0.9em', 'padding-top': '0.25em'}).text(otpwcalc()); 45.72 + $('#crement').val(parseInt($("#crement").val()) - $('#selectdecr').val()); 45.73 + return false; 45.74 + } 45.75 +} 45.76 + 45.77 +// helper function 45.78 +function doreset() { 45.79 + $('#outext').css({'font-size': '1.125em', 'padding-top': '0'}).text('Please Click Submit For A OTP'); 45.80 + return true; 45.81 +} 45.82 +// ]]>
46.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 46.2 +++ b/src/firefoxos/manifest.webapp Mon Apr 22 22:00:43 2013 +0200 46.3 @@ -0,0 +1,49 @@ 46.4 +{ 46.5 + "version": "0.7.1", 46.6 + "name": "OTPWCalc", 46.7 + "description": "One time password (OTP) challenge response calculator client", 46.8 + "type": "web", 46.9 + "csp": "default-src *.europalab.com; script-src 'self' 'unsafe-inline'; object-src 'none'; style-src 'self' 'unsafe-inline'", 46.10 + "launch_path": "/main.html", 46.11 + "icons": { 46.12 + "16": "/img/otpwcalc-16px.png", 46.13 + "30": "/img/otpwcalc-30px.png", 46.14 + "32": "/img/otpwcalc-32px.png", 46.15 + "48": "/img/otpwcalc-48px.png", 46.16 + "60": "/img/otpwcalc-60px.png", 46.17 + "64": "/img/otpwcalc-64px.png", 46.18 + "128": "/img/otpwcalc-128px.png", 46.19 + "256": "/img/otpwcalc-256px.png" 46.20 + }, 46.21 + "developer": { 46.22 + "name": "Michael Schloh von Bennewitz", 46.23 + "url": "http://michael.schloh.com/" 46.24 + }, 46.25 + "installs_allowed_from": ["*"], 46.26 + "locales": { 46.27 + "es": { 46.28 + "description": "Por una vez contraseña (OTP) demanda respuesta calculadora cliente", 46.29 + "developer": { 46.30 + "name": "Michael Schloh von Bennewitz", 46.31 + "url": "http://otpwcalc.europalab.com/" 46.32 + } 46.33 + }, 46.34 + "fr": { 46.35 + "description": "Client de calculatrice mot de passe seule fois (OTP) challenge réponse", 46.36 + "developer": { 46.37 + "name": "Michael Schloh von Bennewitz", 46.38 + "url": "http://otpwcalc.europalab.com/" 46.39 + } 46.40 + }, 46.41 + "de": { 46.42 + "description": "Einmalige Kennwort (OTP) Anfrage/Antwort Verfahren Klient", 46.43 + "developer": { 46.44 + "name": "Michael Schloh von Bennewitz", 46.45 + "url": "http://otpwcalc.europalab.com/" 46.46 + } 46.47 + } 46.48 + }, 46.49 + "default_locale": "en", 46.50 + "permissions": { 46.51 + } 46.52 +}
47.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 47.2 +++ b/src/firefoxos/otpalg/dict.js Mon Apr 22 22:00:43 2013 +0200 47.3 @@ -0,0 +1,260 @@ 47.4 +// Words as presented in RFC 2289 (http://www.ietf.org/rfc/rfc2289.txt) 47.5 +words = [ 47.6 + "A", "ABE", "ACE", "ACT", "AD", "ADA", "ADD", 47.7 + "AGO", "AID", "AIM", "AIR", "ALL", "ALP", "AM", "AMY", 47.8 + "AN", "ANA", "AND", "ANN", "ANT", "ANY", "APE", "APS", 47.9 + "APT", "ARC", "ARE", "ARK", "ARM", "ART", "AS", "ASH", 47.10 + "ASK", "AT", "ATE", "AUG", "AUK", "AVE", "AWE", "AWK", 47.11 + "AWL", "AWN", "AX", "AYE", "BAD", "BAG", "BAH", "BAM", 47.12 + "BAN", "BAR", "BAT", "BAY", "BE", "BED", "BEE", "BEG", 47.13 + "BEN", "BET", "BEY", "BIB", "BID", "BIG", "BIN", "BIT", 47.14 + "BOB", "BOG", "BON", "BOO", "BOP", "BOW", "BOY", "BUB", 47.15 + "BUD", "BUG", "BUM", "BUN", "BUS", "BUT", "BUY", "BY", 47.16 + "BYE", "CAB", "CAL", "CAM", "CAN", "CAP", "CAR", "CAT", 47.17 + "CAW", "COD", "COG", "COL", "CON", "COO", "COP", "COT", 47.18 + "COW", "COY", "CRY", "CUB", "CUE", "CUP", "CUR", "CUT", 47.19 + "DAB", "DAD", "DAM", "DAN", "DAR", "DAY", "DEE", "DEL", 47.20 + "DEN", "DES", "DEW", "DID", "DIE", "DIG", "DIN", "DIP", 47.21 + "DO", "DOE", "DOG", "DON", "DOT", "DOW", "DRY", "DUB", 47.22 + "DUD", "DUE", "DUG", "DUN", "EAR", "EAT", "ED", "EEL", 47.23 + "EGG", "EGO", "ELI", "ELK", "ELM", "ELY", "EM", "END", 47.24 + "EST", "ETC", "EVA", "EVE", "EWE", "EYE", "FAD", "FAN", 47.25 + "FAR", "FAT", "FAY", "FED", "FEE", "FEW", "FIB", "FIG", 47.26 + "FIN", "FIR", "FIT", "FLO", "FLY", "FOE", "FOG", "FOR", 47.27 + "FRY", "FUM", "FUN", "FUR", "GAB", "GAD", "GAG", "GAL", 47.28 + "GAM", "GAP", "GAS", "GAY", "GEE", "GEL", "GEM", "GET", 47.29 + "GIG", "GIL", "GIN", "GO", "GOT", "GUM", "GUN", "GUS", 47.30 + "GUT", "GUY", "GYM", "GYP", "HA", "HAD", "HAL", "HAM", 47.31 + "HAN", "HAP", "HAS", "HAT", "HAW", "HAY", "HE", "HEM", 47.32 + "HEN", "HER", "HEW", "HEY", "HI", "HID", "HIM", "HIP", 47.33 + "HIS", "HIT", "HO", "HOB", "HOC", "HOE", "HOG", "HOP", 47.34 + "HOT", "HOW", "HUB", "HUE", "HUG", "HUH", "HUM", "HUT", 47.35 + "I", "ICY", "IDA", "IF", "IKE", "ILL", "INK", "INN", 47.36 + "IO", "ION", "IQ", "IRA", "IRE", "IRK", "IS", "IT", 47.37 + "ITS", "IVY", "JAB", "JAG", "JAM", "JAN", "JAR", "JAW", 47.38 + "JAY", "JET", "JIG", "JIM", "JO", "JOB", "JOE", "JOG", 47.39 + "JOT", "JOY", "JUG", "JUT", "KAY", "KEG", "KEN", "KEY", 47.40 + "KID", "KIM", "KIN", "KIT", "LA", "LAB", "LAC", "LAD", 47.41 + "LAG", "LAM", "LAP", "LAW", "LAY", "LEA", "LED", "LEE", 47.42 + "LEG", "LEN", "LEO", "LET", "LEW", "LID", "LIE", "LIN", 47.43 + "LIP", "LIT", "LO", "LOB", "LOG", "LOP", "LOS", "LOT", 47.44 + "LOU", "LOW", "LOY", "LUG", "LYE", "MA", "MAC", "MAD", 47.45 + "MAE", "MAN", "MAO", "MAP", "MAT", "MAW", "MAY", "ME", 47.46 + "MEG", "MEL", "MEN", "MET", "MEW", "MID", "MIN", "MIT", 47.47 + "MOB", "MOD", "MOE", "MOO", "MOP", "MOS", "MOT", "MOW", 47.48 + "MUD", "MUG", "MUM", "MY", "NAB", "NAG", "NAN", "NAP", 47.49 + "NAT", "NAY", "NE", "NED", "NEE", "NET", "NEW", "NIB", 47.50 + "NIL", "NIP", "NIT", "NO", "NOB", "NOD", "NON", "NOR", 47.51 + "NOT", "NOV", "NOW", "NU", "NUN", "NUT", "O", "OAF", 47.52 + "OAK", "OAR", "OAT", "ODD", "ODE", "OF", "OFF", "OFT", 47.53 + "OH", "OIL", "OK", "OLD", "ON", "ONE", "OR", "ORB", 47.54 + "ORE", "ORR", "OS", "OTT", "OUR", "OUT", "OVA", "OW", 47.55 + "OWE", "OWL", "OWN", "OX", "PA", "PAD", "PAL", "PAM", 47.56 + "PAN", "PAP", "PAR", "PAT", "PAW", "PAY", "PEA", "PEG", 47.57 + "PEN", "PEP", "PER", "PET", "PEW", "PHI", "PI", "PIE", 47.58 + "PIN", "PIT", "PLY", "PO", "POD", "POE", "POP", "POT", 47.59 + "POW", "PRO", "PRY", "PUB", "PUG", "PUN", "PUP", "PUT", 47.60 + "QUO", "RAG", "RAM", "RAN", "RAP", "RAT", "RAW", "RAY", 47.61 + "REB", "RED", "REP", "RET", "RIB", "RID", "RIG", "RIM", 47.62 + "RIO", "RIP", "ROB", "ROD", "ROE", "RON", "ROT", "ROW", 47.63 + "ROY", "RUB", "RUE", "RUG", "RUM", "RUN", "RYE", "SAC", 47.64 + "SAD", "SAG", "SAL", "SAM", "SAN", "SAP", "SAT", "SAW", 47.65 + "SAY", "SEA", "SEC", "SEE", "SEN", "SET", "SEW", "SHE", 47.66 + "SHY", "SIN", "SIP", "SIR", "SIS", "SIT", "SKI", "SKY", 47.67 + "SLY", "SO", "SOB", "SOD", "SON", "SOP", "SOW", "SOY", 47.68 + "SPA", "SPY", "SUB", "SUD", "SUE", "SUM", "SUN", "SUP", 47.69 + "TAB", "TAD", "TAG", "TAN", "TAP", "TAR", "TEA", "TED", 47.70 + "TEE", "TEN", "THE", "THY", "TIC", "TIE", "TIM", "TIN", 47.71 + "TIP", "TO", "TOE", "TOG", "TOM", "TON", "TOO", "TOP", 47.72 + "TOW", "TOY", "TRY", "TUB", "TUG", "TUM", "TUN", "TWO", 47.73 + "UN", "UP", "US", "USE", "VAN", "VAT", "VET", "VIE", 47.74 + "WAD", "WAG", "WAR", "WAS", "WAY", "WE", "WEB", "WED", 47.75 + "WEE", "WET", "WHO", "WHY", "WIN", "WIT", "WOK", "WON", 47.76 + "WOO", "WOW", "WRY", "WU", "YAM", "YAP", "YAW", "YE", 47.77 + "YEA", "YES", "YET", "YOU", "ABED", "ABEL", "ABET", "ABLE", 47.78 + "ABUT", "ACHE", "ACID", "ACME", "ACRE", "ACTA", "ACTS", "ADAM", 47.79 + "ADDS", "ADEN", "AFAR", "AFRO", "AGEE", "AHEM", "AHOY", "AIDA", 47.80 + "AIDE", "AIDS", "AIRY", "AJAR", "AKIN", "ALAN", "ALEC", "ALGA", 47.81 + "ALIA", "ALLY", "ALMA", "ALOE", "ALSO", "ALTO", "ALUM", "ALVA", 47.82 + "AMEN", "AMES", "AMID", "AMMO", "AMOK", "AMOS", "AMRA", "ANDY", 47.83 + "ANEW", "ANNA", "ANNE", "ANTE", "ANTI", "AQUA", "ARAB", "ARCH", 47.84 + "AREA", "ARGO", "ARID", "ARMY", "ARTS", "ARTY", "ASIA", "ASKS", 47.85 + "ATOM", "AUNT", "AURA", "AUTO", "AVER", "AVID", "AVIS", "AVON", 47.86 + "AVOW", "AWAY", "AWRY", "BABE", "BABY", "BACH", "BACK", "BADE", 47.87 + "BAIL", "BAIT", "BAKE", "BALD", "BALE", "BALI", "BALK", "BALL", 47.88 + "BALM", "BAND", "BANE", "BANG", "BANK", "BARB", "BARD", "BARE", 47.89 + "BARK", "BARN", "BARR", "BASE", "BASH", "BASK", "BASS", "BATE", 47.90 + "BATH", "BAWD", "BAWL", "BEAD", "BEAK", "BEAM", "BEAN", "BEAR", 47.91 + "BEAT", "BEAU", "BECK", "BEEF", "BEEN", "BEER", "BEET", "BELA", 47.92 + "BELL", "BELT", "BEND", "BENT", "BERG", "BERN", "BERT", "BESS", 47.93 + "BEST", "BETA", "BETH", "BHOY", "BIAS", "BIDE", "BIEN", "BILE", 47.94 + "BILK", "BILL", "BIND", "BING", "BIRD", "BITE", "BITS", "BLAB", 47.95 + "BLAT", "BLED", "BLEW", "BLOB", "BLOC", "BLOT", "BLOW", "BLUE", 47.96 + "BLUM", "BLUR", "BOAR", "BOAT", "BOCA", "BOCK", "BODE", "BODY", 47.97 + "BOGY", "BOHR", "BOIL", "BOLD", "BOLO", "BOLT", "BOMB", "BONA", 47.98 + "BOND", "BONE", "BONG", "BONN", "BONY", "BOOK", "BOOM", "BOON", 47.99 + "BOOT", "BORE", "BORG", "BORN", "BOSE", "BOSS", "BOTH", "BOUT", 47.100 + "BOWL", "BOYD", "BRAD", "BRAE", "BRAG", "BRAN", "BRAY", "BRED", 47.101 + "BREW", "BRIG", "BRIM", "BROW", "BUCK", "BUDD", "BUFF", "BULB", 47.102 + "BULK", "BULL", "BUNK", "BUNT", "BUOY", "BURG", "BURL", "BURN", 47.103 + "BURR", "BURT", "BURY", "BUSH", "BUSS", "BUST", "BUSY", "BYTE", 47.104 + "CADY", "CAFE", "CAGE", "CAIN", "CAKE", "CALF", "CALL", "CALM", 47.105 + "CAME", "CANE", "CANT", "CARD", "CARE", "CARL", "CARR", "CART", 47.106 + "CASE", "CASH", "CASK", "CAST", "CAVE", "CEIL", "CELL", "CENT", 47.107 + "CERN", "CHAD", "CHAR", "CHAT", "CHAW", "CHEF", "CHEN", "CHEW", 47.108 + "CHIC", "CHIN", "CHOU", "CHOW", "CHUB", "CHUG", "CHUM", "CITE", 47.109 + "CITY", "CLAD", "CLAM", "CLAN", "CLAW", "CLAY", "CLOD", "CLOG", 47.110 + "CLOT", "CLUB", "CLUE", "COAL", "COAT", "COCA", "COCK", "COCO", 47.111 + "CODA", "CODE", "CODY", "COED", "COIL", "COIN", "COKE", "COLA", 47.112 + "COLD", "COLT", "COMA", "COMB", "COME", "COOK", "COOL", "COON", 47.113 + "COOT", "CORD", "CORE", "CORK", "CORN", "COST", "COVE", "COWL", 47.114 + "CRAB", "CRAG", "CRAM", "CRAY", "CREW", "CRIB", "CROW", "CRUD", 47.115 + "CUBA", "CUBE", "CUFF", "CULL", "CULT", "CUNY", "CURB", "CURD", 47.116 + "CURE", "CURL", "CURT", "CUTS", "DADE", "DALE", "DAME", "DANA", 47.117 + "DANE", "DANG", "DANK", "DARE", "DARK", "DARN", "DART", "DASH", 47.118 + "DATA", "DATE", "DAVE", "DAVY", "DAWN", "DAYS", "DEAD", "DEAF", 47.119 + "DEAL", "DEAN", "DEAR", "DEBT", "DECK", "DEED", "DEEM", "DEER", 47.120 + "DEFT", "DEFY", "DELL", "DENT", "DENY", "DESK", "DIAL", "DICE", 47.121 + "DIED", "DIET", "DIME", "DINE", "DING", "DINT", "DIRE", "DIRT", 47.122 + "DISC", "DISH", "DISK", "DIVE", "DOCK", "DOES", "DOLE", "DOLL", 47.123 + "DOLT", "DOME", "DONE", "DOOM", "DOOR", "DORA", "DOSE", "DOTE", 47.124 + "DOUG", "DOUR", "DOVE", "DOWN", "DRAB", "DRAG", "DRAM", "DRAW", 47.125 + "DREW", "DRUB", "DRUG", "DRUM", "DUAL", "DUCK", "DUCT", "DUEL", 47.126 + "DUET", "DUKE", "DULL", "DUMB", "DUNE", "DUNK", "DUSK", "DUST", 47.127 + "DUTY", "EACH", "EARL", "EARN", "EASE", "EAST", "EASY", "EBEN", 47.128 + "ECHO", "EDDY", "EDEN", "EDGE", "EDGY", "EDIT", "EDNA", "EGAN", 47.129 + "ELAN", "ELBA", "ELLA", "ELSE", "EMIL", "EMIT", "EMMA", "ENDS", 47.130 + "ERIC", "EROS", "EVEN", "EVER", "EVIL", "EYED", "FACE", "FACT", 47.131 + "FADE", "FAIL", "FAIN", "FAIR", "FAKE", "FALL", "FAME", "FANG", 47.132 + "FARM", "FAST", "FATE", "FAWN", "FEAR", "FEAT", "FEED", "FEEL", 47.133 + "FEET", "FELL", "FELT", "FEND", "FERN", "FEST", "FEUD", "FIEF", 47.134 + "FIGS", "FILE", "FILL", "FILM", "FIND", "FINE", "FINK", "FIRE", 47.135 + "FIRM", "FISH", "FISK", "FIST", "FITS", "FIVE", "FLAG", "FLAK", 47.136 + "FLAM", "FLAT", "FLAW", "FLEA", "FLED", "FLEW", "FLIT", "FLOC", 47.137 + "FLOG", "FLOW", "FLUB", "FLUE", "FOAL", "FOAM", "FOGY", "FOIL", 47.138 + "FOLD", "FOLK", "FOND", "FONT", "FOOD", "FOOL", "FOOT", "FORD", 47.139 + "FORE", "FORK", "FORM", "FORT", "FOSS", "FOUL", "FOUR", "FOWL", 47.140 + "FRAU", "FRAY", "FRED", "FREE", "FRET", "FREY", "FROG", "FROM", 47.141 + "FUEL", "FULL", "FUME", "FUND", "FUNK", "FURY", "FUSE", "FUSS", 47.142 + "GAFF", "GAGE", "GAIL", "GAIN", "GAIT", "GALA", "GALE", "GALL", 47.143 + "GALT", "GAME", "GANG", "GARB", "GARY", "GASH", "GATE", "GAUL", 47.144 + "GAUR", "GAVE", "GAWK", "GEAR", "GELD", "GENE", "GENT", "GERM", 47.145 + "GETS", "GIBE", "GIFT", "GILD", "GILL", "GILT", "GINA", "GIRD", 47.146 + "GIRL", "GIST", "GIVE", "GLAD", "GLEE", "GLEN", "GLIB", "GLOB", 47.147 + "GLOM", "GLOW", "GLUE", "GLUM", "GLUT", "GOAD", "GOAL", "GOAT", 47.148 + "GOER", "GOES", "GOLD", "GOLF", "GONE", "GONG", "GOOD", "GOOF", 47.149 + "GORE", "GORY", "GOSH", "GOUT", "GOWN", "GRAB", "GRAD", "GRAY", 47.150 + "GREG", "GREW", "GREY", "GRID", "GRIM", "GRIN", "GRIT", "GROW", 47.151 + "GRUB", "GULF", "GULL", "GUNK", "GURU", "GUSH", "GUST", "GWEN", 47.152 + "GWYN", "HAAG", "HAAS", "HACK", "HAIL", "HAIR", "HALE", "HALF", 47.153 + "HALL", "HALO", "HALT", "HAND", "HANG", "HANK", "HANS", "HARD", 47.154 + "HARK", "HARM", "HART", "HASH", "HAST", "HATE", "HATH", "HAUL", 47.155 + "HAVE", "HAWK", "HAYS", "HEAD", "HEAL", "HEAR", "HEAT", "HEBE", 47.156 + "HECK", "HEED", "HEEL", "HEFT", "HELD", "HELL", "HELM", "HERB", 47.157 + "HERD", "HERE", "HERO", "HERS", "HESS", "HEWN", "HICK", "HIDE", 47.158 + "HIGH", "HIKE", "HILL", "HILT", "HIND", "HINT", "HIRE", "HISS", 47.159 + "HIVE", "HOBO", "HOCK", "HOFF", "HOLD", "HOLE", "HOLM", "HOLT", 47.160 + "HOME", "HONE", "HONK", "HOOD", "HOOF", "HOOK", "HOOT", "HORN", 47.161 + "HOSE", "HOST", "HOUR", "HOVE", "HOWE", "HOWL", "HOYT", "HUCK", 47.162 + "HUED", "HUFF", "HUGE", "HUGH", "HUGO", "HULK", "HULL", "HUNK", 47.163 + "HUNT", "HURD", "HURL", "HURT", "HUSH", "HYDE", "HYMN", "IBIS", 47.164 + "ICON", "IDEA", "IDLE", "IFFY", "INCA", "INCH", "INTO", "IONS", 47.165 + "IOTA", "IOWA", "IRIS", "IRMA", "IRON", "ISLE", "ITCH", "ITEM", 47.166 + "IVAN", "JACK", "JADE", "JAIL", "JAKE", "JANE", "JAVA", "JEAN", 47.167 + "JEFF", "JERK", "JESS", "JEST", "JIBE", "JILL", "JILT", "JIVE", 47.168 + "JOAN", "JOBS", "JOCK", "JOEL", "JOEY", "JOHN", "JOIN", "JOKE", 47.169 + "JOLT", "JOVE", "JUDD", "JUDE", "JUDO", "JUDY", "JUJU", "JUKE", 47.170 + "JULY", "JUNE", "JUNK", "JUNO", "JURY", "JUST", "JUTE", "KAHN", 47.171 + "KALE", "KANE", "KANT", "KARL", "KATE", "KEEL", "KEEN", "KENO", 47.172 + "KENT", "KERN", "KERR", "KEYS", "KICK", "KILL", "KIND", "KING", 47.173 + "KIRK", "KISS", "KITE", "KLAN", "KNEE", "KNEW", "KNIT", "KNOB", 47.174 + "KNOT", "KNOW", "KOCH", "KONG", "KUDO", "KURD", "KURT", "KYLE", 47.175 + "LACE", "LACK", "LACY", "LADY", "LAID", "LAIN", "LAIR", "LAKE", 47.176 + "LAMB", "LAME", "LAND", "LANE", "LANG", "LARD", "LARK", "LASS", 47.177 + "LAST", "LATE", "LAUD", "LAVA", "LAWN", "LAWS", "LAYS", "LEAD", 47.178 + "LEAF", "LEAK", "LEAN", "LEAR", "LEEK", "LEER", "LEFT", "LEND", 47.179 + "LENS", "LENT", "LEON", "LESK", "LESS", "LEST", "LETS", "LIAR", 47.180 + "LICE", "LICK", "LIED", "LIEN", "LIES", "LIEU", "LIFE", "LIFT", 47.181 + "LIKE", "LILA", "LILT", "LILY", "LIMA", "LIMB", "LIME", "LIND", 47.182 + "LINE", "LINK", "LINT", "LION", "LISA", "LIST", "LIVE", "LOAD", 47.183 + "LOAF", "LOAM", "LOAN", "LOCK", "LOFT", "LOGE", "LOIS", "LOLA", 47.184 + "LONE", "LONG", "LOOK", "LOON", "LOOT", "LORD", "LORE", "LOSE", 47.185 + "LOSS", "LOST", "LOUD", "LOVE", "LOWE", "LUCK", "LUCY", "LUGE", 47.186 + "LUKE", "LULU", "LUND", "LUNG", "LURA", "LURE", "LURK", "LUSH", 47.187 + "LUST", "LYLE", "LYNN", "LYON", "LYRA", "MACE", "MADE", "MAGI", 47.188 + "MAID", "MAIL", "MAIN", "MAKE", "MALE", "MALI", "MALL", "MALT", 47.189 + "MANA", "MANN", "MANY", "MARC", "MARE", "MARK", "MARS", "MART", 47.190 + "MARY", "MASH", "MASK", "MASS", "MAST", "MATE", "MATH", "MAUL", 47.191 + "MAYO", "MEAD", "MEAL", "MEAN", "MEAT", "MEEK", "MEET", "MELD", 47.192 + "MELT", "MEMO", "MEND", "MENU", "MERT", "MESH", "MESS", "MICE", 47.193 + "MIKE", "MILD", "MILE", "MILK", "MILL", "MILT", "MIMI", "MIND", 47.194 + "MINE", "MINI", "MINK", "MINT", "MIRE", "MISS", "MIST", "MITE", 47.195 + "MITT", "MOAN", "MOAT", "MOCK", "MODE", "MOLD", "MOLE", "MOLL", 47.196 + "MOLT", "MONA", "MONK", "MONT", "MOOD", "MOON", "MOOR", "MOOT", 47.197 + "MORE", "MORN", "MORT", "MOSS", "MOST", "MOTH", "MOVE", "MUCH", 47.198 + "MUCK", "MUDD", "MUFF", "MULE", "MULL", "MURK", "MUSH", "MUST", 47.199 + "MUTE", "MUTT", "MYRA", "MYTH", "NAGY", "NAIL", "NAIR", "NAME", 47.200 + "NARY", "NASH", "NAVE", "NAVY", "NEAL", "NEAR", "NEAT", "NECK", 47.201 + "NEED", "NEIL", "NELL", "NEON", "NERO", "NESS", "NEST", "NEWS", 47.202 + "NEWT", "NIBS", "NICE", "NICK", "NILE", "NINA", "NINE", "NOAH", 47.203 + "NODE", "NOEL", "NOLL", "NONE", "NOOK", "NOON", "NORM", "NOSE", 47.204 + "NOTE", "NOUN", "NOVA", "NUDE", "NULL", "NUMB", "OATH", "OBEY", 47.205 + "OBOE", "ODIN", "OHIO", "OILY", "OINT", "OKAY", "OLAF", "OLDY", 47.206 + "OLGA", "OLIN", "OMAN", "OMEN", "OMIT", "ONCE", "ONES", "ONLY", 47.207 + "ONTO", "ONUS", "ORAL", "ORGY", "OSLO", "OTIS", "OTTO", "OUCH", 47.208 + "OUST", "OUTS", "OVAL", "OVEN", "OVER", "OWLY", "OWNS", "QUAD", 47.209 + "QUIT", "QUOD", "RACE", "RACK", "RACY", "RAFT", "RAGE", "RAID", 47.210 + "RAIL", "RAIN", "RAKE", "RANK", "RANT", "RARE", "RASH", "RATE", 47.211 + "RAVE", "RAYS", "READ", "REAL", "REAM", "REAR", "RECK", "REED", 47.212 + "REEF", "REEK", "REEL", "REID", "REIN", "RENA", "REND", "RENT", 47.213 + "REST", "RICE", "RICH", "RICK", "RIDE", "RIFT", "RILL", "RIME", 47.214 + "RING", "RINK", "RISE", "RISK", "RITE", "ROAD", "ROAM", "ROAR", 47.215 + "ROBE", "ROCK", "RODE", "ROIL", "ROLL", "ROME", "ROOD", "ROOF", 47.216 + "ROOK", "ROOM", "ROOT", "ROSA", "ROSE", "ROSS", "ROSY", "ROTH", 47.217 + "ROUT", "ROVE", "ROWE", "ROWS", "RUBE", "RUBY", "RUDE", "RUDY", 47.218 + "RUIN", "RULE", "RUNG", "RUNS", "RUNT", "RUSE", "RUSH", "RUSK", 47.219 + "RUSS", "RUST", "RUTH", "SACK", "SAFE", "SAGE", "SAID", "SAIL", 47.220 + "SALE", "SALK", "SALT", "SAME", "SAND", "SANE", "SANG", "SANK", 47.221 + "SARA", "SAUL", "SAVE", "SAYS", "SCAN", "SCAR", "SCAT", "SCOT", 47.222 + "SEAL", "SEAM", "SEAR", "SEAT", "SEED", "SEEK", "SEEM", "SEEN", 47.223 + "SEES", "SELF", "SELL", "SEND", "SENT", "SETS", "SEWN", "SHAG", 47.224 + "SHAM", "SHAW", "SHAY", "SHED", "SHIM", "SHIN", "SHOD", "SHOE", 47.225 + "SHOT", "SHOW", "SHUN", "SHUT", "SICK", "SIDE", "SIFT", "SIGH", 47.226 + "SIGN", "SILK", "SILL", "SILO", "SILT", "SINE", "SING", "SINK", 47.227 + "SIRE", "SITE", "SITS", "SITU", "SKAT", "SKEW", "SKID", "SKIM", 47.228 + "SKIN", "SKIT", "SLAB", "SLAM", "SLAT", "SLAY", "SLED", "SLEW", 47.229 + "SLID", "SLIM", "SLIT", "SLOB", "SLOG", "SLOT", "SLOW", "SLUG", 47.230 + "SLUM", "SLUR", "SMOG", "SMUG", "SNAG", "SNOB", "SNOW", "SNUB", 47.231 + "SNUG", "SOAK", "SOAR", "SOCK", "SODA", "SOFA", "SOFT", "SOIL", 47.232 + "SOLD", "SOME", "SONG", "SOON", "SOOT", "SORE", "SORT", "SOUL", 47.233 + "SOUR", "SOWN", "STAB", "STAG", "STAN", "STAR", "STAY", "STEM", 47.234 + "STEW", "STIR", "STOW", "STUB", "STUN", "SUCH", "SUDS", "SUIT", 47.235 + "SULK", "SUMS", "SUNG", "SUNK", "SURE", "SURF", "SWAB", "SWAG", 47.236 + "SWAM", "SWAN", "SWAT", "SWAY", "SWIM", "SWUM", "TACK", "TACT", 47.237 + "TAIL", "TAKE", "TALE", "TALK", "TALL", "TANK", "TASK", "TATE", 47.238 + "TAUT", "TEAL", "TEAM", "TEAR", "TECH", "TEEM", "TEEN", "TEET", 47.239 + "TELL", "TEND", "TENT", "TERM", "TERN", "TESS", "TEST", "THAN", 47.240 + "THAT", "THEE", "THEM", "THEN", "THEY", "THIN", "THIS", "THUD", 47.241 + "THUG", "TICK", "TIDE", "TIDY", "TIED", "TIER", "TILE", "TILL", 47.242 + "TILT", "TIME", "TINA", "TINE", "TINT", "TINY", "TIRE", "TOAD", 47.243 + "TOGO", "TOIL", "TOLD", "TOLL", "TONE", "TONG", "TONY", "TOOK", 47.244 + "TOOL", "TOOT", "TORE", "TORN", "TOTE", "TOUR", "TOUT", "TOWN", 47.245 + "TRAG", "TRAM", "TRAY", "TREE", "TREK", "TRIG", "TRIM", "TRIO", 47.246 + "TROD", "TROT", "TROY", "TRUE", "TUBA", "TUBE", "TUCK", "TUFT", 47.247 + "TUNA", "TUNE", "TUNG", "TURF", "TURN", "TUSK", "TWIG", "TWIN", 47.248 + "TWIT", "ULAN", "UNIT", "URGE", "USED", "USER", "USES", "UTAH", 47.249 + "VAIL", "VAIN", "VALE", "VARY", "VASE", "VAST", "VEAL", "VEDA", 47.250 + "VEIL", "VEIN", "VEND", "VENT", "VERB", "VERY", "VETO", "VICE", 47.251 + "VIEW", "VINE", "VISE", "VOID", "VOLT", "VOTE", "WACK", "WADE", 47.252 + "WAGE", "WAIL", "WAIT", "WAKE", "WALE", "WALK", "WALL", "WALT", 47.253 + "WAND", "WANE", "WANG", "WANT", "WARD", "WARM", "WARN", "WART", 47.254 + "WASH", "WAST", "WATS", "WATT", "WAVE", "WAVY", "WAYS", "WEAK", 47.255 + "WEAL", "WEAN", "WEAR", "WEED", "WEEK", "WEIR", "WELD", "WELL", 47.256 + "WELT", "WENT", "WERE", "WERT", "WEST", "WHAM", "WHAT", "WHEE", 47.257 + "WHEN", "WHET", "WHOA", "WHOM", "WICK", "WIFE", "WILD", "WILL", 47.258 + "WIND", "WINE", "WING", "WINK", "WINO", "WIRE", "WISE", "WISH", 47.259 + "WITH", "WOLF", "WONT", "WOOD", "WOOL", "WORD", "WORE", "WORK", 47.260 + "WORM", "WORN", "WOVE", "WRIT", "WYNN", "YALE", "YANG", "YANK", 47.261 + "YARD", "YARN", "YAWL", "YAWN", "YEAH", "YEAR", "YELL", "YOGA", 47.262 + "YOKE" 47.263 +];
48.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 48.2 +++ b/src/firefoxos/otpalg/otpalg.js Mon Apr 22 22:00:43 2013 +0200 48.3 @@ -0,0 +1,169 @@ 48.4 +/* 48.5 + * OTPWCalc - One time password challenge response calculator client 48.6 + * Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> 48.7 + * 48.8 + * OTPWCalc is free software: you can redistribute it and/or modify 48.9 + * it under the terms of the European Union Public Licence, either 48.10 + * version 1.1 of the license, or (at your option) any later version. 48.11 + * 48.12 + * OTPWCalc is distributed in the hope that it will be useful, 48.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty 48.14 + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 48.15 + * the European Union Public License for more details. 48.16 + * 48.17 + * You should have received a copy of the European Union Public 48.18 + * Licence along with OTPWCalc. If not, please refer to 48.19 + * <http://joinup.ec.europa.eu/software/page/eupl/>. 48.20 + * 48.21 + * This file is part of project OTWPCalc, a one time password challenge 48.22 + * response calculator client and is found at http://otpwcalc.europalab.com/ 48.23 + * 48.24 + * otpalg.js: ECMA JavaScript implementation 48.25 + */ 48.26 + 48.27 +// <![CDATA[ 48.28 +function genotpmd4(secret, seed, n) { 48.29 + var t = seed.toString().toLowerCase() + secret; 48.30 + t = mdxfold(coremd4(str2binl(t), t.length * 8)); 48.31 + for (var i = n; i > 0; --i) { t = mdxfold(coremd4(t, 64)); } 48.32 + return t; 48.33 +} 48.34 + 48.35 +function genotpmd5(secret, seed, n) { 48.36 + var t = seed.toString().toLowerCase() + secret; 48.37 + t = mdxfold(coremd5(str2binl(t), t.length * 8)); 48.38 + for (var i = n; i > 0; --i) { t = mdxfold(coremd5(t, 64)); } 48.39 + return t; 48.40 +} 48.41 + 48.42 +function genotpsha1(secret, seed, n) { 48.43 + var t = seed.toString().toLowerCase() + secret; 48.44 + t = sha1fold(coresha1(str2binb(t), t.length * 8)); 48.45 + for (var i = n; i > 0; --i) { t = sha1fold(coresha1(t, 64)); } 48.46 + t = invertendian(t, true); 48.47 + return t; 48.48 +} 48.49 + 48.50 +function genotprmd160(secret, seed, n) { 48.51 + var t = seed.toString().toLowerCase() + secret; 48.52 + t = rmd160fold(corermd160(str2binl(t), t.length * 8)); 48.53 + for (var i = n; i > 0; --i) { t = rmd160fold(corermd160(t, 64)); } 48.54 + return t; 48.55 +} 48.56 + 48.57 +function genotpmultmd4(secret, seed, n, m) { 48.58 + var res = Array(); var lim = n - m + 1; 48.59 + var t = seed.toString().toLowerCase() + secret; 48.60 + t = mdxfold(coremd4(str2binl(t), t.length * 8)); 48.61 + if (lim == 0) res[0] = t; 48.62 + for (var i = 1; i <= n; ++i) { 48.63 + t = mdxfold(coremd4(t, 64)); 48.64 + if (i >= lim) res[i-lim] = t; 48.65 + } 48.66 + return res; 48.67 +} 48.68 + 48.69 +function genotpmultmd5(secret, seed, n, m) { 48.70 + var res = Array(); var lim = n - m + 1; 48.71 + var t = seed.toString().toLowerCase() + secret; 48.72 + t = mdxfold(coremd5(str2binl(t), t.length * 8)); 48.73 + if (lim == 0) res[0] = t; 48.74 + for (var i = 1; i <= n; ++i) { 48.75 + t = mdxfold(coremd5(t, 64)); 48.76 + if (i >= lim) res[i-lim] = t; 48.77 + } 48.78 + return res; 48.79 +} 48.80 + 48.81 +function genotpmultsha1(secret, seed, n, m) { 48.82 + var res = Array(); var lim = n - m + 1; 48.83 + var t = seed.toString().toLowerCase() + secret; 48.84 + t = sha1fold(coresha1(str2binb(t), t.length * 8)); 48.85 + if (lim == 0) res[0] = invertendian(t, false); 48.86 + for (var i = 1; i <= n; ++i) { 48.87 + t = sha1fold(coresha1(t, 64)); 48.88 + if (i >= lim) res[i-lim] = invertendian(t, false); 48.89 + } 48.90 + return res; 48.91 +} 48.92 + 48.93 +function genotpmultrmd160(secret, seed, n, m) { 48.94 + var res = Array(); var lim = n - m + 1; 48.95 + var t = seed.toString().toLowerCase() + secret; 48.96 + t = rmd160fold(corermd160(str2binl(t), t.length * 8)); 48.97 + if (lim == 0) res[0] = t; 48.98 + for (var i = 1; i <= n; ++i) { 48.99 + t = rmd160fold(corermd160(t, 64)); 48.100 + if (i >= lim) res[i-lim] = t; 48.101 + } 48.102 + return res; 48.103 +} 48.104 + 48.105 +function mdxfold(h) { return Array(h[0] ^ h[2], h[1] ^ h[3]); } 48.106 + 48.107 +function sha1fold(h) { 48.108 + h = invertendian(h, true); 48.109 + return Array(h[0] ^ h[2] ^ h[4], h[1] ^ h[3]); 48.110 +} 48.111 + 48.112 +function rmd160fold(h) { return Array(h[0] ^ h[2] ^ h[4], h[1] ^ h[3]); } 48.113 + 48.114 +function invertendian(a, inpl) { 48.115 + var t = inpl ? a : Array(a.length); 48.116 + for (var i = 0; i < a.length; ++i) { 48.117 + var t1 = (a[i] & 0xff) << 24; 48.118 + var t2 = ((a[i] >> 8) & 0xff) << 16; 48.119 + var t3 = ((a[i] >> 16) & 0xff) << 8; 48.120 + var t4 = (a[i] >> 24) & 0xff; 48.121 + t[i] = t1 | t2 | t3 | t4; 48.122 + } 48.123 + return t; 48.124 +} 48.125 + 48.126 +function arrtoboth(a) { return arrtosix(a) + " (" + arrtohex(a) + ")"; } 48.127 + 48.128 +function arrtohex(a) { 48.129 + var s = ""; 48.130 + for (var i = 0; i < 2; ++i) { 48.131 + for (var j = 0; j < 4; ++j) { 48.132 + var t = (a[i] >> (8*j)) & 0xff; 48.133 + t = t.toString(16).toUpperCase(); 48.134 + s += (t.length == 1) ? ('0' + t) : t; // 1 octet = 2 hex digits 48.135 + if (j % 2 == 1) s += ' '; 48.136 + } 48.137 + } 48.138 + return s.substr(0, s.length-1); // drop the last space 48.139 +} 48.140 + 48.141 +function arrtosix(h) { 48.142 + var s = ""; 48.143 + var parity = 0; 48.144 + for (var i = 0; i < 2; ++i) { 48.145 + for (var j = 0; j < 32; j += 2) { 48.146 + parity += (h[i] >> j) & 0x3; 48.147 + } 48.148 + } 48.149 + var ind; 48.150 + ind = (h[0] & 0xff) << 3; 48.151 + ind |= (h[0] >> 13) & 0x7; 48.152 + s += words[ind] + " "; 48.153 + ind = ((h[0] >> 8) & 0x1f) << 6; 48.154 + ind |= (h[0] >> 18) & 0x3f; 48.155 + s += words[ind] + " "; 48.156 + ind = ((h[0] >> 16) & 0x3) << 9; 48.157 + ind |= ((h[0] >> 24) & 0xff) << 1; 48.158 + ind |= (h[1] >> 7) & 0x1; 48.159 + s += words[ind] + " "; 48.160 + ind = (h[1] & 0x7f) << 4; 48.161 + ind |= (h[1] >> 12) & 0xf; 48.162 + s += words[ind] + " "; 48.163 + ind = ((h[1] >> 8) & 0xf) << 7; 48.164 + ind |= (h[1] >> 17) & 0x7f; 48.165 + s += words[ind] + " "; 48.166 + ind = ((h[1] >> 16) & 0x1) << 10; 48.167 + ind |= ((h[1] >> 24) & 0xff) << 2; 48.168 + ind |= (parity & 0x03); 48.169 + s += words[ind]; 48.170 + return s; 48.171 +} 48.172 +// ]]>
49.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 49.2 +++ b/src/firefoxos/otpwcalc.appcache Mon Apr 22 22:00:43 2013 +0200 49.3 @@ -0,0 +1,27 @@ 49.4 +CACHE MANIFEST 49.5 +# v1 2013-04-18 49.6 +# http://developer.mozilla.org/docs/HTML/Using_the_application_cache/ 49.7 +main.css 49.8 +main.html 49.9 +about.html 49.10 +help.html 49.11 +hashes/md4.js 49.12 +hashes/md5.js 49.13 +hashes/rmd160.js 49.14 +hashes/sha1.js 49.15 +otpalg/dict.js 49.16 +otpalg/otpalg.js 49.17 +img/otpwcalc-16px.png 49.18 +img/otpwcalc-30px.png 49.19 +img/otpwcalc-32px.png 49.20 +img/otpwcalc-48px.png 49.21 +img/otpwcalc-60px.png 49.22 +img/otpwcalc-64px.png 49.23 +img/otpwcalc-128px.png 49.24 +img/otpwcalc-256px.png 49.25 + 49.26 +# Fetch from network if available 49.27 +NETWORK: 49.28 + 49.29 +# Network or fallback if unavailable 49.30 +FALLBACK: