git.s-ol.nu hw/0x33.board/firmware / 4cc327e
simulator: web-based, interactive UI s-ol a month ago
7 changed file(s) with 515 addition(s) and 195 deletion(s). Raw diff Collapse all Expand all
00 # 0x33.board firmware
11
2 See [the documentation][docs] for information on how to use the firmware.
3 The rest of this documentation contains information for firmware development.
4
25 ## Installation
3
4 1. Copy all files from this repository to the CircuitPython drive
5 2. Install the dependencies:
6 1. Make sure your board is in `dev_mode` (see below)
7 2. Copy all files from this repository to the CircuitPython drive
8 3. Install the dependencies:
69 - using [circup][circup]: `$ circup [--path /path/to/drive] install -r requirements.txt`
710 - manually download the needed libraries from the [Adafruit CircuitPython Library Bundle][cpy-lib-bundle]
811 and place them in the `lib` folder
9 3. Set hardware settings in `config.py`:
12 4. Set hardware settings in `config.py`:
1013 Import the module from `hex33board.boards` corresponding to the hardware revision you have.
14
15 ### Simulator
16 The simulator can be run directly in the repo and using CPython.
17
18 1. (optionally) create and enter a venv
19 `$ python -m venv --system-site-packages venv`
20 `$ source venv/bin/activate`
21 The `--system-site-packages` option allows you to use your distribution's Pillow packages.
22 2. install the dependencies: `$ pip install -r requirements.sim.txt`
23 3. run the simulator: `$ python simulator.py`
24 4. open the web interface ([http://localhost:8000](http://localhost:8000))
1125
1226 ## Boot modes
1327 After a reset, `boot.py` is executed. Depending on the `dev_mode` value in `config.py` and
2438 If `dev_mode = True` in `config.py`, things work the other way around:
2539 the board goes into "dev mode" by default, but will start in "normal mode" when the menu key is held during reset.
2640
41 ## Using the Simulator
42
43 [docs]: https://s-ol.nu/0x33.board/doc
2744 [circup]: https://github.com/adafruit/circup
2845 [cpy-lib-bundle]: https://circuitpython.org/libraries
00 from hex33board.boards.r4_5e4bf5c import *
11
22
3 ''' boot in dev_mode by default
4
5 When active, the firmware drive will be writable on boot.
6 '''
37 dev_mode = False
4 simulator = False
8
9 ''' forward Key events via USB MIDI
10
11 This can be useful to control a simulator instance running on a computer
12 using the physical buttons on a hardware unit.
13 '''
14 sysex_key_sync = False
259259 self.mode.tick(ticks)
260260
261261 for (i, pressed) in self.matrix.scan_for_changes():
262 if self.board.simulator:
262 if self.board.sysex_key_sync:
263263 msg = SystemExclusive(b"\0s-", [i, pressed])
264264 self.broadcast(msg)
265265 mode = self.sticky_modes.pop(i, self.mode)
278278
279279 def run(self):
280280 while True:
281 self.tick()
281 self.tick()
00 import displayio
11 import rtmidi
2 import pygame
32 from io import BytesIO
43 from math import sqrt
54 from base64 import b64encode
65 from xml.etree import ElementTree
7 from blinka_displayio_pygamedisplay import PyGameDisplay
86 from adafruit_midi import MIDI, MIDIMessage
97 from adafruit_midi.system_exclusive import SystemExclusive
8 from PIL import Image
109 import adafruit_midi.note_on
1110 import adafruit_midi.note_off
12
13 from PyQt5.QtSvg import QSvgWidget
14 from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout
15 from PyQt5.QtCore import QThread, QObject, pyqtSignal
11 from adafruit_ticks import ticks_ms
12
13 from threading import Thread
14 import json
15 import asyncio
16 import websockets.server
17 from websockets.exceptions import ConnectionClosed
18 from http.server import BaseHTTPRequestHandler, HTTPServer
1619
1720 from .. import Keyboard as BaseKeyboard
1821
1922 rtmidi_api = rtmidi.API_UNSPECIFIED
2023 if rtmidi.API_UNIX_JACK in rtmidi.get_compiled_api():
2124 rtmidi_api = rtmidi.API_UNIX_JACK
25
26 display_rotation = 0
2227
2328
2429 class MIDI:
6772 class DummyMatrix:
6873 def __init__(self, board):
6974 self.board = board
70
71 def scan_for_changes(self):
72 if not self.board.midi_usb:
73 return
74
75 msg = self.board.midi_usb.receive()
75 self.queue = []
76
77 def scan_midi(self, midi):
78 msg = midi.receive()
7679 while msg:
7780 if isinstance(msg, SystemExclusive) and msg.manufacturer_id == b"\0s-":
7881 key, state = msg.data
79 yield key, state
80
81 msg = self.board.midi_usb.receive()
82 self.queue.append((key, state))
83
84 msg = midi.receive()
85
86 def scan_for_changes(self):
87 if self.board.midi_usb:
88 self.scan_midi(self.board.midi_usb)
89
90 yield from self.queue
91 self.queue.clear()
92
8293
8394 return DummyMatrix(board)
8495
8596
86 display_rotation = 0
87
88
8997 def create_display(board, **kwargs):
90 class ScaledDisplay:
91 def __init__(self, board, width, height, scale=1, **args):
98 class Display(displayio.Display):
99 def __init__(self, board, **args):
92100 self.board = board
93 self.display = PyGameDisplay(
94 width=width * scale, height=height * scale, **args
95 )
96 self.group = displayio.Group(scale=scale)
97 self.display.show(self.group)
101
102 super().__init__(None, None, **args)
103
104 def _initialize(self, init_sequence):
105 pass
106
107 def _write(self, command, data):
108 pass
98109
99110 def refresh(self):
100 self.display.refresh()
101
102 if not hasattr(self.board, "svg_preview"):
103 return
104
105 scale = self.group.scale
106 res = (self.display.width // scale, self.display.height // scale)
107 shot = self.display._buffer.convert("1").resize(res)
108
111 if self._core._current_group is not None:
112 buffer = Image.new("RGBA", (self._core._width, self._core._height))
113 self._core._current_group._fill_area(buffer)
114 self._buffer.paste(buffer)
115
116 # subrects = self._core.get_refresh_areas()
117
118 def get_png(self):
109119 with BytesIO() as buf:
110 shot.save(buf, format="PNG")
111 data = b64encode(buf.getvalue())
112 self.board.svg_preview.set_oled(
113 "data:image/png;base64," + data.decode()
114 )
115
116 def show(self, group):
117 while len(self.group):
118 self.group.pop()
119 self.group.append(group)
120
121 return ScaledDisplay(board, scale=4, **kwargs)
120 self._buffer.save(buf, format="PNG")
121 return buf.getvalue()
122 # data = b64encode(buf.getvalue())
123 # self.board.svg_preview.set_oled(
124 # "data:image/png;base64," + data.decode()
125 # )
126
127 return Display(board, **kwargs)
122128
123129
124130 def create_pixels(board, **kwargs):
131137 def __setitem__(self, key, value):
132138 self.pixels[key] = value
133139
134 def show(self):
135 if not hasattr(self.board, "svg_preview"):
136 return
137
138 self.board.svg_preview.set_pixels(self.pixels)
139
140140 def fill(self, value):
141141 for i in range(len(self.pixels)):
142142 self.pixels[i] = value
143143
144 def hex_colors(self):
145 colors = []
146 for i, rgb in enumerate(self.pixels):
147 if not isinstance(rgb, tuple):
148 rgb = (rgb >> 16, (rgb >> 8) & 0xFF, rgb & 0xFF)
149 colors.append(
150 "#{0:02x}{1:02x}{2:02x}".format(
151 *(int(128 + sqrt(x) * 127) for x in rgb)
152 )
153 )
154 return colors
155
156 def show(self):
157 return self.board.ws_queue.put(
158 {
159 "type": "pixels",
160 "colors": self.hex_colors(),
161 }
162 )
163
144164 return DummyNeopixels(board)
145165
146166
156176 pass
157177
158178
159 class SVGPreview(QWidget):
160 def __init__(self):
161 super().__init__()
162
163 self.template = ElementTree.parse("template.svg")
164 self.oled = self.template.find(".//*[@id='oled']")
165 self.leds = self.template.findall(".//*[@class='btn']")
166
167 self.setFixedWidth(492 * 2)
168 self.setFixedHeight(241 * 2)
169 layout = QVBoxLayout(self)
170
171 self.widget = QSvgWidget(parent=self)
172 self.widget.setGeometry(0, 0, 492, 241)
173 layout.addWidget(self.widget)
174
175 self.update()
176
177 def set_pixels(self, pixels):
178 for i, rgb in enumerate(pixels):
179 if not isinstance(rgb, tuple):
180 rgb = (rgb >> 16, (rgb >> 8) & 0xFF, rgb & 0xFF)
181 hex = "#{0:02x}{1:02x}{2:02x}".format(
182 *(int(128 + sqrt(x) * 127) for x in rgb)
183 )
184 self.leds[i].set("style", "stroke:#000000;stroke-width:1;fill:" + hex)
185
186 def set_oled(self, data):
187 self.oled.set("href", data)
188
189 def update(self):
190 data = ElementTree.tostring(self.template.getroot(), encoding="unicode")
191 self.widget.load(data.encode("utf-8"))
192
193
194 class Worker(QObject):
195 finished = pyqtSignal()
196
197 def __init__(self, run):
198 super().__init__()
199 self._run = run
200
201 def run(self):
202 try:
203 self._run()
204 finally:
205 self.finished.emit()
179 # class SVGPreview:
180 # def __init__(self):
181 # self.template = ElementTree.parse("template.svg")
182 # self.oled = self.template.find(".//*[@id='oled']")
183 # self.leds = self.template.findall(".//*[@class='btn']")
184 #
185 # self.update()
186 #
187 # def set_oled(self, data):
188 # self.oled.set("href", data)
189 #
190 # def set_pixels(self, colors):
191 # for i, color in enumerate(colors):
192 # self.leds[i].set("style", "stroke:#000;stroke-width:1;fill:"+color)
193 #
194 # def update(self):
195 # data = ElementTree.tostring(self.template.getroot(), encoding="unicode")
196 # print(data.encode("utf-8"))
197
198
199 def HTTPHandler(board):
200 class HTTPHandler(BaseHTTPRequestHandler):
201 def __init__(self, *args, **kwargs):
202 with open("template.svg", "rb") as f:
203 template = f.read()
204
205 self.index = b"""<!DOCTYPE html>
206 <html>
207 <head>
208 <style>
209 svg { width: 100%; height: 100%; }
210 </style>
211 </head>
212 <body>
213 """
214 self.index += template
215 self.index += b"""
216 <script type="text/javascript">
217 const svg = document.body.firstElementChild;
218 const oled = document.evaluate(".//*[@id='oled']", svg).iterateNext();
219 let websocket;
220
221 let res = document.evaluate(".//*[contains(@class,'led')]", svg);
222 let node = res.iterateNext();
223 const pixels = {};
224 while (node) {
225 pixels[+node.dataset.ledI] = node;
226 node = res.iterateNext();
227 }
228
229 const keys = {};
230 res = document.evaluate(".//*[contains(@class,'key')]", svg);
231 node = res.iterateNext();
232 while (node) {
233 keys[+node.dataset.keyI] = node;
234 node = res.iterateNext();
235 }
236
237
238 Object.values(keys).forEach((node, key) => {
239 node.style.cursor = 'pointer';
240 node.onpointerdown = (e) => {
241 if (!websocket) return;
242 websocket.send(JSON.stringify({ type: 'key', key, down: true }));
243 };
244 node.onpointerup = (e) => {
245 if (!websocket) return;
246 websocket.send(JSON.stringify({ type: 'key', key, down: false }));
247 };
248 });
249
250 let lastBlob = null;
251 setInterval(() => {
252 fetch('/oled.png#' + Math.random())
253 .then((response) => response.blob())
254 .then((blob) => {
255 if (lastBlob) URL.revokeObjectURL(lastBlob);
256 lastBlob = URL.createObjectURL(blob);
257 oled.href.baseVal = lastBlob;
258 });
259 }, 100);
260
261 websocket = new WebSocket(`ws://${location.hostname}:8001/`);
262 websocket.onmessage = ({ data }) => {
263 const msg = JSON.parse(data);
264 switch (msg.type) {
265 case 'pixels': {
266 msg.colors.forEach((color, i) => {
267 pixels[i].style.fill = color;
268 });
269 break;
270 }
271 }
272 };
273 websocket.onclose = (event) => console.log("socket closed");
274 websocket.onerror = (event) => console.error("socket error", event);
275 </script>
276 </body>
277 </html>
278 """
279
280 super().__init__(*args, **kwargs)
281
282 def do_GET(self):
283 if self.path == "/":
284 self.send_response(200)
285 self.send_header("Content-type", "text/html")
286 self.end_headers()
287
288 self.wfile.write(self.index)
289 elif self.path == "/oled.png":
290 self.send_response(200)
291 self.send_header("Content-type", "image/png")
292 self.end_headers()
293
294 self.wfile.write(board.display.get_png())
295 else:
296 self.send_response(404)
297 self.send_header("Content-type", "text/plain")
298 self.end_headers()
299
300 self.wfile.write(b"Not Found")
301
302 def log_message(self, *args):
303 pass
304
305 return HTTPHandler
206306
207307
208308 class Keyboard(BaseKeyboard):
209309 def run(self):
210 self.app = QApplication([])
211
212 self.svg_preview = SVGPreview()
213
214 self.thread = QThread()
215 worker = Worker(self._run)
216
217 worker.moveToThread(self.thread)
218
219 self.thread.started.connect(worker.run)
220 worker.finished.connect(self.app.quit)
221
222 self.svg_preview.show()
223 self.thread.start()
224
225 self.app.exec_()
226
227 def _run(self):
228 i = 0
310
311 http_thread = Thread(target=self.run_http)
312 http_thread.start()
313
314 self.ws_queue = asyncio.Queue()
315
316 loop = asyncio.get_event_loop()
317 loop.create_task(self.run_ws())
318 loop.create_task(self.run_main())
319 loop.run_forever()
320
321 async def run_main(self):
229322 while True:
230 self.tick()
231
232 for event in pygame.event.get():
233 if event.type == pygame.QUIT:
234 self.thread.quit()
235 break
236 if event.type == pygame.KEYDOWN:
237 pass
238
239 i = i + 1
240 if i % 100 == 0:
241 self.svg_preview.update()
323 ticks = ticks_ms()
324 self.mode.tick(ticks)
325
326 for (i, pressed) in self.matrix.scan_for_changes():
327 mode = self.sticky_modes.pop(i, self.mode)
328 should_stick = mode.key_event(i, pressed)
329
330 if should_stick:
331 self.sticky_modes[i] = mode
332
333 if self.i2c:
334 self.i2c.tick()
335
336 self.mode.update_pixels(self.pixels)
337
338 await self.pixels.show()
339 self.display.refresh()
340
341 await asyncio.sleep(1 / 120)
342
343 def run_http(self):
344 try:
345 with HTTPServer(("", 8000), HTTPHandler(self)) as server:
346 server.serve_forever()
347 except e:
348 print(e)
349
350 async def run_ws(self):
351 connections = set()
352
353 async def handler(conn):
354 connections.add(conn)
355 try:
356 while True:
357 msg = json.loads(await conn.recv())
358 if msg['type'] == 'key':
359 key, down = msg['key'], msg['down']
360 self.matrix.queue.append((key, down))
361 except ConnectionClosed:
362 pass
363 finally:
364 connections.remove(conn)
365
366 async with websockets.serve(handler, "", 8001):
367 while True:
368 msg = await self.ws_queue.get()
369 data = json.dumps(msg)
370 for conn in connections:
371 try:
372 await conn.send(data)
373 except ConnectionClosed:
374 pass
00 adafruit-circuitpython-display_shapes==2.4.2
11 adafruit-circuitpython-display_text==2.22.11
2 blinka-displayio-pygamedisplay==2.2.2
32 adafruit-circuitpython-ticks==1.0.9
43 adafruit-circuitpython-midi==1.4.8
54 adafruit-circuitpython-colorsys
65 python-rtmidi
7 PyQt5
0 import hex33board.boards.simulator as board
1
2 board.dev_mode = False
3 board.sysex_key_sync = False
4
5 k = board.Keyboard(board)
6 k.run()
5454 id="path7865" /><path
5555 style="fill:#80b3ff;stroke:#000000;stroke-width:0.999999;fill-opacity:1"
5656 d="m 59.96409,28.599463 0.38357,-0.02129 0.38252,-0.03545 0.38094,-0.04956 0.37886,-0.06359 0.37624,-0.07756 0.37312,-0.0914 0.3695,-0.105135 0.36535,-0.11871 0.36072,-0.132124 0.35559,-0.145362 0.34997,-0.158404 0.34388,-0.171233 0.33732,-0.183823 0.3303,-0.196162 0.32282,-0.208232 0.31491,-0.22002 0.30656,-0.231505 0.2978,-0.242675 0.28863,-0.253514 0.27906,-0.264006 0.26912,-0.274136 0.2588,-0.283894 0.24814,-0.293265 0.23713,-0.302231 0.2258,-0.310788 0.21416,-0.318921 0.20223,-0.326614 0.19003,-0.333866 0.17756,-0.34066 0.16485,-0.346986 0.15192,-0.352842 0.13877,-0.358215 0.12544,-0.363098 0.11194,-0.367483 0.0983,-0.371371 0.0845,-0.374748 0.0706,-0.377615 0.0566,-0.379965 0.0425,-0.381796 0.0284,-0.383106 0.0142,-0.383892 v -0.384157 l -0.0142,-0.383892 -0.0284,-0.383107 -0.0425,-0.381796 -0.0566,-0.379965 -0.0706,-0.377614 -0.0845,-0.374749 -0.0983,-0.371369 -0.11194,-0.367485 -0.12544,-0.363098 -0.13877,-0.358215 -0.15192,-0.35284 -0.16485,-0.346988 -0.17756,-0.34066 -0.19003,-0.333864 -0.20223,-0.326616 -0.21416,-0.31892 -0.2258,-0.310796 -0.23713,-0.302238 -0.24814,-0.293265 -0.2588,-0.283883 -0.26912,-0.274147 -0.27906,-0.264001 -0.28863,-0.253517 -0.2978,-0.242661 -0.30656,-0.2315205 -0.31491,-0.220006 -0.32282,-0.208244 -0.3303,-0.196162 -0.33732,-0.183812 -0.34388,-0.171286 -0.34997,-0.158493 -0.35559,-0.145345 -0.36072,-0.132195 -0.36535,-0.118692 -0.3695,-0.105188 -0.37312,-0.09133 -0.37624,-0.07747 -0.37886,-0.06361 -0.38094,-0.04957 -0.38252,-0.03536 -0.38357,-0.02132 -0.38409,-0.0071 -0.38408,0.0071 -0.38357,0.02132 -0.38252,0.03536 -0.38094,0.04957 -0.37886,0.06361 -0.37624,0.07747 -0.37312,0.09133 -0.3695,0.105188 -0.36535,0.118692 -0.36072,0.132195 -0.35559,0.145345 -0.34997,0.158493 -0.34388,0.171286 -0.33732,0.183812 -0.3303,0.196162 -0.32282,0.208244 -0.31491,0.220006 -0.30656,0.2315205 -0.2978,0.242661 -0.28863,0.253517 -0.27906,0.264001 -0.26912,0.274147 -0.2588,0.283883 -0.24814,0.293265 -0.23713,0.302238 -0.2258,0.310796 -0.21416,0.31892 -0.20224,0.326616 -0.19002,0.333864 -0.17756,0.34066 -0.16485,0.346988 -0.15192,0.35284 -0.13877,0.358215 -0.12544,0.363098 -0.11194,0.367485 -0.0983,0.371369 -0.0845,0.374749 -0.0706,0.377614 -0.0566,0.379965 -0.0425,0.381796 -0.0284,0.383107 -0.0142,0.383892 v 0.384157 l 0.0142,0.383892 0.0284,0.383106 0.0425,0.381796 0.0566,0.379965 0.0706,0.377615 0.0845,0.374748 0.0983,0.371371 0.11194,0.367483 0.12544,0.363098 0.13877,0.358215 0.15192,0.352842 0.16485,0.346986 0.17756,0.34066 0.19002,0.333866 0.20224,0.326614 0.21416,0.318921 0.2258,0.310788 0.23713,0.302231 0.24814,0.293265 0.2588,0.283894 0.26912,0.274136 0.27906,0.264006 0.28863,0.253514 0.2978,0.242675 0.30656,0.231505 0.31491,0.22002 0.32282,0.208232 0.3303,0.196162 0.33732,0.183823 0.34388,0.171233 0.34997,0.158404 0.35559,0.145362 0.36072,0.132124 0.36535,0.11871 0.3695,0.105135 0.37312,0.0914 0.37624,0.07756 0.37886,0.06359 0.38094,0.04956 0.38252,0.03545 0.38357,0.02129 0.38408,0.0071 z"
57 class="btn"
58 inkscape:label="menu indicator" /><path
57 class="led"
58 inkscape:label="menu indicator"
59 data-led-i="0"
60 id="path138" /><path
5961 style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.999999"
6062 d="m 134.21424,22.654197 -0.007,0.269985 -0.0205,0.26929 -0.0341,0.267906 -0.0476,0.265837 -0.061,0.26308 -0.0743,0.259649 -0.0874,0.255556 -0.10018,0.250802 -0.11275,0.245407 -0.12504,0.239379 -0.13701,0.232739 -0.14861,0.225502 -0.15985,0.217685 -0.17066,0.209308 -0.18105,0.200398 -0.19097,0.190967 -0.2004,0.181052 -0.20931,0.170664 -0.21768,0.159843 -0.2255,0.148614 -0.23274,0.137011 -0.23938,0.125035 -0.24541,0.112758 -0.2508,0.100177 -0.25556,0.08735 -0.25965,0.07429 -0.26308,0.06105 -0.26583,0.04764 -0.26791,0.03411 -0.26929,0.0205 -0.26995,0.0068 -45.76078,4.6e-5 -0.26999,-0.0068 -0.26929,-0.0205 -0.26791,-0.03411 -0.26583,-0.04764 -0.26308,-0.06105 -0.25965,-0.07429 -0.25556,-0.08735 -0.2508,-0.100177 -0.2454,-0.112758 -0.23938,-0.125035 -0.23274,-0.137011 -0.22551,-0.148614 -0.21768,-0.159843 -0.20931,-0.170664 -0.2004,-0.181051 L 79.25946,26.326766 79.0784,26.126368 78.90774,25.91706 78.7479,25.699376 78.59928,25.473873 78.46227,25.241134 78.33724,25.001755 78.22448,24.756348 78.1243,24.505546 78.037,24.24999 l -0.0743,-0.259649 -0.0611,-0.26308 -0.0476,-0.265837 -0.0341,-0.267906 -0.0205,-0.26929 -0.007,-0.270032 3e-5,-8.884175 0.007,-0.269984 0.0205,-0.269292 0.0341,-0.267906 0.0476,-0.265836 0.061,-0.263081 0.0743,-0.259649 0.0874,-0.25555 0.10017,-0.250799 0.11276,-0.245415 0.12504,-0.239374 0.13701,-0.232747 0.14861,-0.225497 0.15985,-0.217679 0.17066,-0.20931 0.18105,-0.200408 0.19097,-0.1909725 0.2004,-0.181041 0.2093,-0.170753 0.21769,-0.159914 0.2255,-0.148543 0.23274,-0.136993 0.23938,-0.125089 0.24541,-0.112828 0.2508,-0.100213 0.25555,-0.08742 0.25965,-0.07427 0.26308,-0.06112 0.26584,-0.04762 0.26791,-0.03411 0.26929,-0.02043 0.26995,-0.0069 45.76078,2.31e-4 0.26999,0.0071 0.26929,0.02043 0.2679,0.03411 0.26584,0.04762 0.26308,0.06112 0.25965,0.07427 0.25555,0.08742 0.25081,0.100213 0.2454,0.112828 0.23938,0.125089 0.23274,0.136993 0.2255,0.148542 0.21769,0.159915 0.20931,0.170753 0.20039,0.18104 0.19097,0.1909735 0.18105,0.200408 0.17067,0.20931 0.15984,0.217679 0.14861,0.225497 0.13702,0.232746 0.12503,0.239374 0.11276,0.245415 0.10018,0.250799 0.0873,0.255551 0.0743,0.259649 0.0611,0.26308 0.0476,0.265837 0.0341,0.267906 0.0205,0.269292 0.007,0.269753 z"
6163 id="path7866"
7981 inkscape:label="nav keys"><path
8082 style="fill:#ffb380;stroke:#000000;stroke-width:0.999999"
8183 d="m 17.8246,42.55988 0.27186,0.149146 0.27811,0.137153 0.28383,0.124893 0.28901,0.112385 0.29363,0.09968 0.2977,0.08678 0.30121,0.0737 0.30413,0.0605 0.30648,0.04717 0.30825,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02026 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.08678 0.29363,-0.09968 0.28901,-0.112384 0.28383,-0.124893 0.27811,-0.137153 0.27186,-0.149147 10.4548,-6.03608 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24183,-0.194093 0.23314,-0.204456 0.224,-0.214431 0.21443,-0.223999 0.20446,-0.233138 0.19409,-0.241834 0.18336,-0.250071 0.17228,-0.25783 0.16086,-0.2651 0.14915,-0.271864 0.13715,-0.278112 0.12489,-0.283828 0.11239,-0.289006 0.0997,-0.293633 0.0868,-0.297702 0.0737,-0.301204 0.0605,-0.304132 0.0472,-0.306481 0.0337,-0.308248 0.0203,-0.309425 0.007,-0.310011 -1.4e-4,-12.072153 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304132 -0.0737,-0.301202 -0.0868,-0.297702 -0.0997,-0.293635 -0.11239,-0.289006 -0.12489,-0.283828 -0.13715,-0.278113 -0.14915,-0.271863 -0.16087,-0.2651 -0.17227,-0.25783 -0.18336,-0.250071 -0.1941,-0.241835 -0.20445,-0.233137 -0.21443,-0.223997 -0.224,-0.214433 -0.23314,-0.204456 -0.24183,-0.194093 -0.25007,-0.183358 -0.25783,-0.172281 -0.26491,-0.160868 -10.45461,-6.0360725 -0.27186,-0.149076 -0.27811,-0.137171 -0.28383,-0.12491 -0.28901,-0.112296 -0.29363,-0.09968 -0.2977,-0.08671 -0.30121,-0.07374 -0.30413,-0.06059 -0.30648,-0.04726 -0.30825,-0.03376 -0.30942,-0.02026 -0.31002,-0.0068 -0.31002,0.0071 -0.30942,0.02026 -0.30825,0.03376 -0.30648,0.04726 -0.30413,0.06059 -0.30121,0.07374 -0.2977,0.08671 -0.29363,0.09968 -0.28901,0.112296 -0.28383,0.124911 -0.27811,0.136744 -0.27186,0.149175 -10.4548005,6.0361045 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183358 -0.24183,0.194093 -0.23314,0.204456 -0.224,0.214432 -0.21443,0.223998 -0.20446,0.233137 -0.19409,0.241835 -0.18336,0.25007 -0.17228,0.25783 -0.16086,0.265101 -0.14915,0.271863 -0.13715,0.278112 -0.12489,0.283829 -0.11239,0.289006 -0.0997,0.293635 -0.0868,0.297701 -0.0737,0.301203 -0.0605,0.304132 -0.0472,0.306481 -0.0337,0.308247 -0.0203,0.309425 -0.007,0.310012 1.4e-4,12.072154 0.007,0.310017 0.0203,0.309426 0.0338,0.308247 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11239,0.289006 0.12489,0.283828 0.13715,0.278113 0.14915,0.271863 0.16087,0.265101 0.17227,0.25783 0.18336,0.25007 0.1941,0.241835 0.20445,0.233137 0.21443,0.223999 0.224,0.214431 0.23314,0.204456 0.24183,0.194093 0.25007,0.18336 0.25783,0.172281 0.26491,0.160867 z"
82 class="btn"
83 inkscape:label="menu key" /><path
84 class="key led"
85 inkscape:label="menu key"
86 data-led-i="1"
87 data-key-i="48"
88 id="path145" /><path
8489 style="fill:#87deaa;stroke:#000000;stroke-width:0.999999"
8590 d="m 420.95789,18.296535 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304132 -0.0737,-0.301202 -0.0867,-0.297702 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13717,-0.278113 -0.14908,-0.271863 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.250071 -0.1941,-0.241835 -0.20446,-0.233137 -0.21443,-0.223997 -0.22399,-0.214433 -0.23314,-0.204456 -0.24184,-0.194093 -0.25007,-0.183358 -0.25783,-0.172281 -0.26504,-0.160869 -10.45471,-6.0360715 -0.27187,-0.149076 -0.27811,-0.137171 -0.28383,-0.12491 -0.289,-0.112296 -0.29364,-0.09968 -0.29769,-0.08671 -0.30121,-0.07374 -0.30414,-0.06059 -0.30648,-0.04726 -0.30825,-0.03376 -0.30941,-0.02026 -0.31002,-0.0071 -0.31002,0.0071 -0.30942,0.02026 -0.30824,0.03376 -0.30649,0.04726 -0.30414,0.06059 -0.30121,0.07374 -0.29768,0.08671 -0.29364,0.09968 -0.289,0.112296 -0.28383,0.12491 -0.27811,0.1371 -0.27187,0.149147 -10.45479,6.0360775 -0.26511,0.160874 -0.25783,0.172281 -0.25007,0.183358 -0.24185,0.194093 -0.23313,0.204456 -0.22399,0.214432 -0.21443,0.223998 -0.20446,0.233137 -0.1941,0.241835 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.265101 -0.14908,0.271863 -0.13717,0.278112 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293635 -0.0867,0.297701 -0.0737,0.301203 -0.0604,0.304132 -0.0471,0.306481 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072154 0.007,0.310017 0.0203,0.309426 0.0338,0.308247 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11248,0.289006 0.12491,0.283828 0.13717,0.278113 0.14907,0.271863 0.16081,0.265101 0.17235,0.25783 0.18335,0.25007 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22398,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25784,0.172281 0.26503,0.160867 10.45472,6.036074 0.27187,0.149147 0.27811,0.137153 0.28383,0.124893 0.289,0.112384 0.29364,0.09968 0.29768,0.08678 0.30121,0.0737 0.30414,0.0605 0.30649,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30941,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08678 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124893 0.27811,-0.137153 0.27187,-0.149147 10.45479,-6.03608 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194093 0.23314,-0.204456 0.22398,-0.214431 0.21443,-0.223999 0.20446,-0.233138 0.1941,-0.241834 0.18335,-0.250071 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.271864 0.13717,-0.278112 0.12491,-0.283828 0.11248,-0.289006 0.0997,-0.293633 0.0867,-0.297702 0.0737,-0.301204 0.0604,-0.304132 0.0471,-0.306481 0.0338,-0.308248 0.0203,-0.309425 0.007,-0.310011 z"
86 class="btn"
87 inkscape:label="minus" /><path
91 class="key led"
92 inkscape:label="minus"
93 data-led-i="2"
94 data-key-i="49"
95 id="path147" /><path
8896 style="fill:#87deaa;stroke:#000000;stroke-width:0.999999"
8997 d="m 427.32415,36.362939 -0.25783,-0.172281 -0.25007,-0.18336 -0.24185,-0.194093 -0.23313,-0.204456 -0.22399,-0.214431 -0.21443,-0.223999 -0.20446,-0.233137 -0.1941,-0.241835 -0.18335,-0.25007 -0.17235,-0.25783 -0.1608,-0.265101 -0.14908,-0.271863 -0.13717,-0.278113 -0.12491,-0.283828 -0.11247,-0.289006 -0.0997,-0.293633 -0.0867,-0.297702 -0.0737,-0.301204 -0.0604,-0.304132 -0.0471,-0.306481 -0.0338,-0.308247 -0.0203,-0.309426 -0.007,-0.310017 -7e-5,-12.072154 0.007,-0.310012 0.0203,-0.309425 0.0338,-0.308247 0.0471,-0.306481 0.0604,-0.304132 0.0737,-0.301203 0.0867,-0.297701 0.0997,-0.293635 0.11247,-0.289006 0.12492,-0.283829 0.13717,-0.278112 0.14907,-0.271863 0.1608,-0.265101 0.17236,-0.25783 0.18335,-0.25007 0.1941,-0.241835 0.20446,-0.233137 0.21442,-0.223998 0.22399,-0.214432 0.23314,-0.204456 0.24184,-0.194093 0.25007,-0.183358 0.25784,-0.172281 0.2651,-0.160874 10.45479,-6.0360775 0.27187,-0.149076 0.27811,-0.137171 0.28383,-0.12491 0.289,-0.112296 0.29364,-0.09968 0.29769,-0.08671 0.30121,-0.07374 0.30414,-0.06059 0.30648,-0.04726 0.30824,-0.03376 0.30942,-0.02026 0.31002,-0.0071 0.31002,0.0071 0.30942,0.02026 0.30824,0.03376 0.30649,0.04726 0.30414,0.06059 0.3012,0.07374 0.29769,0.08671 0.29364,0.09968 0.289,0.112296 0.28383,0.12491 0.27811,0.137171 0.27187,0.149076 10.45471,6.0360725 0.26503,0.160868 0.25784,0.172281 0.25007,0.183358 0.24184,0.194093 0.23314,0.204456 0.22398,0.214433 0.21443,0.223997 0.20446,0.233137 0.1941,0.241835 0.18335,0.250071 0.17235,0.25783 0.16081,0.2651 0.14907,0.271863 0.13717,0.278113 0.12491,0.283828 0.11248,0.289006 0.0997,0.293635 0.0867,0.297702 0.0737,0.301202 0.0604,0.304132 0.0471,0.306481 0.0338,0.308247 0.0203,0.309426 0.007,0.310017 8e-5,12.072153 -0.007,0.310011 -0.0203,0.309425 -0.0338,0.308248 -0.0471,0.306481 -0.0604,0.304132 -0.0737,0.301204 -0.0867,0.297702 -0.0997,0.293633 -0.11247,0.289006 -0.12491,0.283828 -0.13717,0.278112 -0.14908,0.271864 -0.1608,0.2651 -0.17235,0.25783 -0.18335,0.250071 -0.1941,0.241834 -0.20446,0.233138 -0.21443,0.223999 -0.22399,0.214431 -0.23314,0.204456 -0.24184,0.194093 -0.25007,0.183359 -0.25783,0.172281 -0.26511,0.160874 -10.45479,6.03608 -0.27187,0.149147 -0.27811,0.137153 -0.28383,0.124893 -0.289,0.112384 -0.29364,0.09968 -0.29769,0.08678 -0.3012,0.0737 -0.30414,0.0605 -0.30649,0.04718 -0.30824,0.03376 -0.30942,0.02027 -0.31002,0.0068 -0.31002,-0.0068 -0.30942,-0.02027 -0.30824,-0.03376 -0.30648,-0.04718 -0.30414,-0.0605 -0.30121,-0.0737 -0.29769,-0.08678 -0.29364,-0.09968 -0.289,-0.112384 -0.28383,-0.124893 -0.27811,-0.137153 -0.27187,-0.149147 -10.45471,-6.036074 z"
90 class="btn"
91 inkscape:label="plus" /></g><g
98 class="key led"
99 inkscape:label="plus"
100 data-led-i="3"
101 data-key-i="50"
102 id="path149" /></g><g
92103 id="g8698"
93104 inkscape:label="main keys"><path
94105 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
95106 d="m 478.26052,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0606,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11248,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14907,-0.271865 -0.16081,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.21443 -0.23314,-0.204458 -0.24184,-0.194092 -0.25008,-0.183359 -0.25783,-0.172281 -0.26493,-0.160868 -10.45461,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25784,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21443,0.223997 -0.20445,0.23314 -0.19411,0.241833 -0.18335,0.25007 -0.17235,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 8e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11248,0.289006 0.12491,0.28383 0.13717,0.278111 0.14907,0.271865 0.16081,0.265098 0.17235,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22398,0.214431 0.23314,0.204456 0.24185,0.194093 0.25007,0.18336 0.25783,0.172281 0.26503,0.160867 10.45471,6.036076 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.3012,0.0737 0.30414,0.0605 0.30649,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30824,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.265099 0.14907,-0.271865 0.13718,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0606,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
96 class="btn" /><path
107 class="key led"
108 data-led-i="4"
109 data-key-i="11"
110 id="path655" /><path
97111 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
98112 d="m 418.94302,75.643572 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.30121,0.0737 0.30414,0.0605 0.30648,0.04718 0.30825,0.03376 0.30941,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29363,-0.09968 0.289,-0.112384 0.28384,-0.124894 0.2781,-0.137153 0.27188,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24185,-0.194094 0.23313,-0.204456 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 -7e-5,-12.072154 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13718,-0.278111 -0.14907,-0.271865 -0.1608,-0.265099 -0.17236,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21442,-0.223998 -0.22399,-0.21443 -0.23314,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26502,-0.160868 -10.45472,-6.036075 -0.27188,-0.149147 -0.2781,-0.137153 -0.28384,-0.124893 -0.289,-0.112384 -0.29363,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25008,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22398,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17235,0.257832 -0.16081,0.265099 -0.14907,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11248,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11247,0.289006 0.12491,0.28383 0.13717,0.278111 0.14908,0.271865 0.1608,0.265098 0.17235,0.25783 0.18336,0.250071 0.1941,0.241835 0.20446,0.233137 0.21442,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25784,0.172281 0.26502,0.160867 z"
99 class="btn" /><path
113 class="key led"
114 data-led-i="5"
115 data-key-i="10"
116 id="path657" /><path
100117 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
101118 d="m 401.85701,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14908,-0.271865 -0.1608,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.21443 -0.23313,-0.204458 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26503,-0.160868 -10.45472,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30413,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25784,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21442,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18336,0.25007 -0.17235,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11248,0.289006 0.12491,0.28383 0.13717,0.278111 0.14908,0.271865 0.1608,0.265098 0.17235,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22398,0.214431 0.23314,0.204456 0.24185,0.194093 0.25007,0.18336 0.25783,0.172281 0.26503,0.160867 10.45471,6.036076 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.3012,0.0737 0.30414,0.0605 0.30649,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30824,-0.03376 0.30649,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
102 class="btn" /><path
119 class="key led"
120 data-led-i="6"
121 data-key-i="9"
122 id="path659" /><path
103123 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
104124 d="m 363.65526,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13718,-0.278111 -0.14907,-0.271865 -0.1608,-0.265099 -0.17236,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21442,-0.223998 -0.22399,-0.21443 -0.23314,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26502,-0.160868 -10.45472,-6.036075 -0.27188,-0.149147 -0.2781,-0.137153 -0.28383,-0.124893 -0.28901,-0.112384 -0.29363,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30941,-0.02027 -0.31003,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29363,0.09968 -0.28901,0.112384 -0.28383,0.124893 -0.2781,0.137153 -0.27188,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24185,0.194092 -0.23314,0.204457 -0.22398,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17235,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11248,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0337,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11247,0.289006 0.12491,0.28383 0.13717,0.278111 0.14908,0.271865 0.1608,0.265098 0.17236,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21442,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25784,0.172281 0.26507,0.160867 10.45477,6.036076 0.27188,0.149146 0.2781,0.137153 0.28383,0.124894 0.28901,0.112384 0.29363,0.09968 0.29769,0.08676 0.30121,0.0737 0.30414,0.0605 0.30648,0.04718 0.30825,0.03376 0.30941,0.02027 0.31002,0.0068 0.31003,-0.0068 0.30941,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29363,-0.09968 0.28901,-0.112384 0.28383,-0.124894 0.2781,-0.137153 0.27188,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24185,-0.194094 0.23314,-0.204456 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11248,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
105 class="btn" /><path
125 class="key led"
126 data-led-i="7"
127 data-key-i="8"
128 id="path661" /><path
106129 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
107130 d="m 325.4535,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11248,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14908,-0.271865 -0.1608,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.21443 -0.23314,-0.204458 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26503,-0.160868 -10.45471,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30413,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25784,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21442,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17236,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0337,0.308247 -0.0203,0.309425 -0.007,0.310012 3e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11247,0.289006 0.12491,0.28383 0.13717,0.278111 0.14908,0.271865 0.1608,0.265098 0.17235,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22399,0.214431 0.23313,0.204456 0.24185,0.194093 0.25007,0.18336 0.25783,0.172281 0.26503,0.160867 10.45472,6.036076 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.30121,0.0737 0.30413,0.0605 0.30649,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30824,-0.03376 0.30649,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18336,-0.25007 0.17235,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
108 class="btn" /><path
131 class="key led"
132 data-led-i="8"
133 data-key-i="7"
134 id="path663" /><path
109135 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
110136 d="m 287.25175,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14908,-0.271865 -0.1608,-0.265099 -0.17236,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21442,-0.223998 -0.22399,-0.21443 -0.23314,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26502,-0.160868 -10.45472,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30941,-0.02027 -0.31002,-0.0068 -0.31003,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29363,0.09968 -0.28901,0.112384 -0.28383,0.124893 -0.2781,0.137153 -0.27188,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24185,0.194092 -0.23313,0.204457 -0.22399,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17235,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11247,0.289006 0.12491,0.28383 0.13718,0.278111 0.14907,0.271865 0.1608,0.265098 0.17236,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21442,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25784,0.172281 0.26502,0.160867 10.45472,6.036076 0.27188,0.149146 0.2781,0.137153 0.28383,0.124894 0.28901,0.112384 0.29363,0.09968 0.29769,0.08676 0.30121,0.0737 0.30414,0.0605 0.30648,0.04718 0.30825,0.03376 0.30941,0.02027 0.31003,0.0068 0.31002,-0.0068 0.30941,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24185,-0.194094 0.23314,-0.204456 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.265099 0.14907,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11248,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
111 class="btn" /><path
137 class="key led"
138 data-led-i="9"
139 data-key-i="6"
140 id="path665" /><path
112141 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
113142 d="m 227.93425,75.643572 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.30121,0.0737 0.30414,0.0605 0.30648,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30824,-0.03376 0.30649,-0.04718 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22399,-0.21443 0.21443,-0.224 0.20445,-0.233137 0.19411,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0202,-0.309427 0.007,-0.31001 -3e-5,-12.072154 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11248,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14907,-0.271865 -0.16081,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.21443 -0.23314,-0.204458 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26502,-0.160868 -10.45472,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25784,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21442,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17236,0.257832 -0.1608,0.265099 -0.14907,0.271865 -0.13718,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0606,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 1.8e-4,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0606,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11248,0.289006 0.12491,0.28383 0.13717,0.278111 0.14907,0.271865 0.16081,0.265098 0.17235,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22398,0.214431 0.23314,0.204456 0.24184,0.194093 0.25008,0.18336 0.25783,0.172281 0.26493,0.160867 z"
114 class="btn" /><path
143 class="key led"
144 data-led-i="10"
145 data-key-i="5"
146 id="path667" /><path
115147 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
116148 d="m 175.72404,63.452386 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11238,0.289006 0.1249,0.28383 0.13715,0.278111 0.14915,0.271865 0.16087,0.265098 0.17228,0.25783 0.18336,0.250071 0.19409,0.241835 0.20446,0.233137 0.21443,0.223999 0.224,0.214431 0.23314,0.204456 0.24183,0.194093 0.25007,0.18336 0.25783,0.172281 0.26491,0.160867 10.4546,6.036076 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.2977,0.08676 0.3012,0.0737 0.30414,0.0605 0.30648,0.04718 0.30824,0.03376 0.30943,0.02027 0.31002,0.0068 0.31001,-0.0068 0.30943,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.265099 0.14907,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11248,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0606,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 -1.8e-4,-12.072154 -0.007,-0.310017 -0.0202,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0606,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14908,-0.271865 -0.1608,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.21443 -0.23313,-0.204458 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26498,-0.160868 -10.45467,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.2977,-0.08678 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30943,-0.02027 -0.31001,-0.0068 -0.31002,0.0068 -0.30943,0.02027 -0.30824,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.2977,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21444,0.223997 -0.20445,0.23314 -0.19409,0.241833 -0.18336,0.25007 -0.17229,0.257832 -0.16087,0.265099 -0.14915,0.271865 -0.13715,0.27811 -0.12489,0.283829 -0.11239,0.289006 -0.0997,0.293634 -0.0868,0.297702 -0.0737,0.301204 -0.0605,0.30413 -0.0472,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 z"
117 class="btn" /><path
149 class="key led"
150 data-led-i="11"
151 data-key-i="4"
152 id="path669" /><path
118153 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
119154 d="m 172.64649,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304131 -0.0737,-0.301204 -0.0868,-0.297701 -0.0997,-0.293635 -0.11238,-0.289006 -0.1249,-0.283828 -0.13715,-0.278111 -0.14915,-0.271865 -0.16087,-0.265099 -0.17228,-0.257832 -0.18336,-0.25007 -0.1941,-0.241833 -0.20445,-0.233139 -0.21443,-0.223998 -0.224,-0.21443 -0.23314,-0.204458 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.2649,-0.160868 -10.45461,-6.036075 -0.27186,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.28901,-0.112384 -0.29363,-0.09968 -0.2977,-0.08678 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.3012,0.0737 -0.29771,0.08678 -0.29363,0.09968 -0.28901,0.112384 -0.28382,0.124893 -0.27812,0.137153 -0.27186,0.149147 -10.4548,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24183,0.194092 -0.23314,0.204457 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.19409,0.241833 -0.18336,0.25007 -0.17228,0.257832 -0.16087,0.265099 -0.14915,0.271865 -0.13715,0.27811 -0.1249,0.283829 -0.11238,0.289006 -0.0997,0.293634 -0.0868,0.297702 -0.0737,0.301204 -0.0605,0.30413 -0.0472,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 1.9e-4,12.072156 0.007,0.310015 0.0203,0.309427 0.0337,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11239,0.289006 0.12489,0.28383 0.13715,0.278111 0.14915,0.271865 0.16087,0.265098 0.17229,0.25783 0.18335,0.250071 0.1941,0.241835 0.20445,0.233137 0.21444,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25783,0.172281 0.26495,0.160867 10.45465,6.036076 0.27186,0.149146 0.27812,0.137153 0.28382,0.124894 0.28901,0.112384 0.29363,0.09968 0.29771,0.08676 0.3012,0.0737 0.30413,0.0605 0.30648,0.04718 0.30825,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.08676 0.29363,-0.09968 0.28901,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27186,-0.149146 10.4548,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23313,-0.204456 0.224,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.19409,-0.241835 0.18336,-0.25007 0.17228,-0.25783 0.16088,-0.265099 0.14914,-0.271865 0.13716,-0.27811 0.12489,-0.283831 0.11238,-0.289006 0.0997,-0.293633 0.0868,-0.297701 0.0737,-0.301204 0.0605,-0.304133 0.0472,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
120 class="btn" /><path
155 class="key led"
156 data-led-i="12"
157 data-key-i="3"
158 id="path671" /><path
121159 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
122160 d="m 134.44474,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304131 -0.0737,-0.301204 -0.0868,-0.297701 -0.0997,-0.293635 -0.11238,-0.289006 -0.12489,-0.283828 -0.13716,-0.278111 -0.14914,-0.271865 -0.16088,-0.265099 -0.17228,-0.257832 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.21443 -0.23313,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160868 -10.4546,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.2977,-0.08678 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30943,-0.02027 -0.31001,-0.0068 -0.31002,0.0068 -0.30943,0.02027 -0.30824,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08678 -0.29363,0.09968 -0.28901,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27186,0.149147 -10.4548,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23313,0.204457 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.19409,0.241833 -0.18336,0.25007 -0.17228,0.257832 -0.16088,0.265099 -0.14915,0.271865 -0.13715,0.27811 -0.12489,0.283829 -0.11239,0.289006 -0.0997,0.293634 -0.0868,0.297702 -0.0737,0.301204 -0.0605,0.30413 -0.0472,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 2e-4,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11238,0.289006 0.1249,0.28383 0.13715,0.278111 0.14915,0.271865 0.16087,0.265098 0.17228,0.25783 0.18336,0.250071 0.19409,0.241835 0.20446,0.233137 0.21443,0.223999 0.224,0.214431 0.23314,0.204456 0.24183,0.194093 0.25007,0.18336 0.25783,0.172281 0.26491,0.160867 10.45461,6.036076 0.27186,0.149146 0.27811,0.137153 0.28383,0.124894 0.28901,0.112384 0.29363,0.09968 0.2977,0.08676 0.30121,0.0737 0.30413,0.0605 0.30648,0.04718 0.30824,0.03376 0.30943,0.02027 0.31002,0.0068 0.31001,-0.0068 0.30943,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.4548,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24183,-0.194094 0.23314,-0.204456 0.224,-0.21443 0.21443,-0.224 0.20445,-0.233137 0.1941,-0.241835 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.265099 0.14915,-0.271865 0.13715,-0.27811 0.12489,-0.283831 0.11239,-0.289006 0.0997,-0.293633 0.0868,-0.297701 0.0737,-0.301204 0.0605,-0.304133 0.0472,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
123 class="btn" /><path
161 class="key led"
162 data-led-i="13"
163 data-key-i="2"
164 id="path673" /><path
124165 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
125166 d="m 75.12723,75.643572 0.27187,0.149146 0.27811,0.137153 0.28382,0.124894 0.28901,0.112384 0.29364,0.09968 0.2977,0.08676 0.3012,0.0737 0.30413,0.0605 0.30648,0.04718 0.30825,0.03376 0.30943,0.02027 0.31001,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.08676 0.29363,-0.09968 0.28901,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27186,-0.149146 10.4548,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23313,-0.204456 0.224,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.19409,-0.241835 0.18336,-0.25007 0.17228,-0.25783 0.16088,-0.265099 0.14914,-0.271865 0.13716,-0.27811 0.12489,-0.283831 0.11238,-0.289006 0.0997,-0.293633 0.0868,-0.297701 0.0737,-0.301204 0.0605,-0.304133 0.0472,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 -2e-4,-12.072154 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304131 -0.0737,-0.301204 -0.0868,-0.297701 -0.0997,-0.293635 -0.11238,-0.289006 -0.1249,-0.283828 -0.13715,-0.278111 -0.14915,-0.271865 -0.16087,-0.265099 -0.17228,-0.257832 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.21443 -0.23314,-0.204458 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160868 -10.4546,-6.036075 -0.27186,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.28901,-0.112384 -0.29363,-0.09968 -0.2977,-0.08678 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31001,0.0068 -0.30943,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.08678 -0.29364,0.09968 -0.28901,0.112384 -0.28382,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.4548,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24183,0.194092 -0.23314,0.204457 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.19409,0.241833 -0.18336,0.25007 -0.17228,0.257832 -0.16087,0.265099 -0.14915,0.271865 -0.13715,0.27811 -0.1249,0.283829 -0.11238,0.289006 -0.0997,0.293634 -0.0868,0.297702 -0.0737,0.301204 -0.0605,0.30413 -0.0472,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 2e-4,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11239,0.289006 0.12489,0.28383 0.13715,0.278111 0.14915,0.271865 0.16088,0.265098 0.17228,0.25783 0.18336,0.250071 0.19409,0.241835 0.20445,0.233137 0.21444,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25783,0.172281 0.2649,0.160867 z"
126 class="btn" /><path
167 class="key led"
168 data-led-i="14"
169 data-key-i="1"
170 id="path675" /><path
127171 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
128172 d="m 44.03278,39.189039 -0.27187,-0.149147 -0.27811,-0.137153 -0.28382,-0.124893 -0.28901,-0.112384 -0.29364,-0.09968 -0.2977,-0.08678 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30943,-0.02027 -0.31001,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08678 -0.29363,0.09968 -0.28901,0.112391 -0.28383,0.124886 -0.27811,0.13715 -0.27186,0.14915 -10.4548,6.03608 -0.2651,0.160866 -0.25783,0.172278 -0.25007,0.183359 -0.24184,0.194092 -0.23313,0.204458 -0.224,0.21443 -0.21443,0.223998 -0.20446,0.233139 -0.19409,0.241833 -0.18336,0.25007 -0.17228,0.257832 -0.16087,0.265099 -0.14915,0.271865 -0.13714,0.278111 -0.12489,0.283828 -0.11239,0.289006 -0.0997,0.293635 -0.0868,0.297701 -0.0737,0.301204 -0.0605,0.304131 -0.0472,0.306481 -0.0338,0.308247 -0.0203,0.309426 -0.007,0.310017 1.9e-4,12.072161 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11239,0.289006 0.12488,0.28383 0.13715,0.278111 0.14915,0.271865 0.16087,0.265098 0.17228,0.25783 0.18336,0.250071 0.19409,0.241835 0.20446,0.233137 0.21443,0.223999 0.224,0.214431 0.23313,0.204456 0.24184,0.194093 0.25007,0.18336 0.25783,0.172281 0.26491,0.160867 10.45461,6.036076 0.27186,0.149146 0.27811,0.137153 0.28383,0.124894 0.28901,0.112384 0.29363,0.09968 0.2977,0.08676 0.30121,0.0737 0.30413,0.0605 0.30648,0.04718 0.30825,0.03376 0.30942,0.02027 0.31002,0.0068 0.31001,-0.0068 0.30943,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.08676 0.29364,-0.09968 0.28901,-0.112384 0.28382,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.4548,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24183,-0.194094 0.23314,-0.204456 0.224,-0.21443 0.21443,-0.224 0.20445,-0.233137 0.1941,-0.241835 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.265099 0.14915,-0.271865 0.13715,-0.27811 0.1249,-0.283831 0.11238,-0.289006 0.0997,-0.293633 0.0868,-0.297701 0.0737,-0.301204 0.0605,-0.304133 0.0472,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 -2e-4,-12.072154 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304131 -0.0737,-0.301204 -0.0868,-0.297701 -0.0997,-0.293635 -0.11239,-0.289006 -0.12489,-0.283828 -0.13716,-0.278111 -0.14914,-0.271865 -0.16088,-0.265099 -0.17228,-0.257832 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.21443 -0.23313,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.2649,-0.160868 z"
129 class="btn" /><path
173 class="key led"
174 data-led-i="15"
175 data-key-i="0"
176 id="path677" /><path
130177 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
131178 d="m 17.8246,108.72726 0.27186,0.14915 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27186,-0.14914 10.4548,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.19409,-0.24183 0.18336,-0.25007 0.17228,-0.25783 0.16086,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.12489,-0.28382 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0337,-0.30825 0.0203,-0.30943 0.007,-0.31 -1.4e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17227,-0.257833 -0.18336,-0.25007 -0.1941,-0.241833 -0.20445,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160859 -10.45461,-6.036084 -0.27186,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.28901,-0.112385 -0.29363,-0.09968 -0.2977,-0.08676 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08676 -0.29363,0.09968 -0.28901,0.112384 -0.28383,0.124894 -0.27811,0.137153 -0.27186,0.149154 -10.4548005,6.036074 -0.2651,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24183,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.19409,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16086,0.2651 -0.14915,0.27187 -0.13715,0.27811 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31002 1.4e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.271865 0.16087,0.2651 0.17227,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 z"
132 class="btn" /><path
179 class="key led"
180 data-led-i="16"
181 data-key-i="12"
182 id="path679" /><path
133183 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
134184 d="m 56.02635,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30649,0.0472 0.30824,0.0338 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30943,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20445,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17229,-0.25783 0.16087,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.12489,-0.28382 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.12489,-0.28383 -0.13716,-0.27811 -0.14914,-0.27186 -0.16088,-0.2651 -0.17228,-0.257833 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160859 -10.4546,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.2977,-0.08676 -0.3012,-0.0737 -0.30413,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30943,-0.02027 -0.31002,-0.0068 -0.31001,0.0068 -0.30943,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.4548,6.036081 -0.26509,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20445,0.233139 -0.1941,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16087,0.2651 -0.14915,0.27187 -0.13715,0.27811 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 2e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.271865 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 z"
135 class="btn" /><path
185 class="key led"
186 data-led-i="17"
187 data-key-i="13"
188 id="path681" /><path
136189 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
137190 d="m 94.22811,108.72726 0.27186,0.14915 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.29771,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27186,-0.14914 10.4548,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.19409,-0.24183 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.1249,-0.28382 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -1.9e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.257833 -0.18336,-0.25007 -0.1941,-0.241833 -0.20445,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.2649,-0.160859 -10.4546,-6.036084 -0.27186,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.28901,-0.112385 -0.29363,-0.09968 -0.29771,-0.08676 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08676 -0.29363,0.09968 -0.28901,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27186,0.149147 -10.4548,6.036081 -0.2651,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24183,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.19409,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16088,0.2651 -0.14914,0.27187 -0.13716,0.27811 -0.12489,0.28383 -0.11238,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 2e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.271865 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.2649,0.16087 z"
138 class="btn" /><path
191 class="key led"
192 data-led-i="18"
193 data-key-i="14"
194 id="path683" /><path
139195 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
140196 d="m 132.42986,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30943,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21444,-0.224 0.20445,-0.23314 0.19409,-0.24183 0.18336,-0.25007 0.17229,-0.25783 0.16087,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.12489,-0.28382 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.1249,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.257833 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160859 -10.4546,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.2977,-0.08676 -0.3012,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30824,-0.03376 -0.30943,-0.02027 -0.31002,-0.0068 -0.31001,0.0068 -0.30943,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.4548,6.036081 -0.26509,0.160856 -0.25783,0.172281 -0.25008,0.18336 -0.24183,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20445,0.233139 -0.1941,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16087,0.2651 -0.14915,0.27187 -0.13715,0.27811 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.271865 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 z"
141 class="btn" /><path
197 class="key led"
198 data-led-i="19"
199 data-key-i="15"
200 id="path685" /><path
142201 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
143202 d="m 177.73892,72.272729 -0.27186,-0.149147 -0.27812,-0.137153 -0.28382,-0.124893 -0.28901,-0.112385 -0.29363,-0.09968 -0.29771,-0.08676 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08676 -0.29363,0.09968 -0.28901,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27186,0.149147 -10.4548,6.036081 -0.2651,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23313,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.19409,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16088,0.2651 -0.14914,0.27187 -0.13716,0.27811 -0.12489,0.28383 -0.11238,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.1249,0.28383 0.13715,0.27811 0.14915,0.271865 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.4546,6.03607 0.27186,0.14915 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.29771,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28382,-0.12489 0.27812,-0.13716 0.27186,-0.14914 10.4548,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.19409,-0.24183 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.1249,-0.28382 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17229,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20445,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.2649,-0.160859 z"
144 class="btn" /><path
203 class="key led"
204 data-led-i="20"
205 data-key-i="16"
206 id="path687" /><path
145207 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
146208 d="m 208.83337,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29363,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27188,-0.14914 10.45478,-6.03609 0.26511,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0606,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30943 0.007,-0.31 -1.2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0606,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.257833 -0.18336,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21442,-0.223998 -0.22399,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26493,-0.160859 -10.45461,-6.036084 -0.27188,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29363,-0.09968 -0.29769,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.4548,6.036081 -0.2651,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24183,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20445,0.233139 -0.1941,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16087,0.2651 -0.14915,0.27187 -0.13715,0.27811 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.271865 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.2649,0.16087 z"
147 class="btn" /><path
209 class="key led"
210 data-led-i="21"
211 data-key-i="17"
212 id="path689" /><path
148213 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
149214 d="m 247.03513,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.2651 0.14907,-0.271875 0.13717,-0.27811 0.12492,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.214431 -0.23313,-0.204457 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26504,-0.160859 -10.45471,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.26511,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.22399,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.1608,0.2651 -0.14908,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0606,0.30413 -0.0471,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31002 1.3e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0606,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13718,0.27811 0.14907,0.271865 0.1608,0.2651 0.17236,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21442,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26492,0.16087 z"
150 class="btn" /><path
215 class="key led"
216 data-led-i="22"
217 data-key-i="18"
218 id="path691" /><path
151219 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
152220 d="m 271.22844,96.536075 0.007,0.31002 0.0202,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.271865 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26508,0.16087 10.45477,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29768,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.26511,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26503,-0.160859 -10.45472,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29768,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.2651,0.160856 -0.25784,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.22398,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.16081,0.2651 -0.14907,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 z"
153 class="btn" /><path
221 class="key led"
222 data-led-i="23"
223 data-key-i="19"
224 id="path693" /><path
154225 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
155226 d="m 344.55438,84.463915 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.214431 -0.23313,-0.204457 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26504,-0.160859 -10.45471,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30941,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.26511,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24185,0.194091 -0.23313,0.204458 -0.22399,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.1608,0.2651 -0.14908,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.271865 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26503,0.16087 10.45472,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 z"
156 class="btn" /><path
227 class="key led"
228 data-led-i="24"
229 data-key-i="20"
230 id="path695" /><path
157231 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
158232 d="m 361.64039,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.26511,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30943 0.007,-0.31 -2e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26503,-0.160859 -10.45472,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.2651,0.160856 -0.25784,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.22398,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.16081,0.2651 -0.14907,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.271865 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26503,0.16087 z"
159 class="btn" /><path
233 class="key led"
234 data-led-i="25"
235 data-key-i="21"
236 id="path697" /><path
160237 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
161238 d="m 420.95789,84.463915 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26503,-0.160859 -10.45472,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30941,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29768,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.26511,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24185,0.194091 -0.23313,0.204458 -0.22399,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.1608,0.2651 -0.14908,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.271865 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26503,0.16087 10.45472,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29768,0.0868 0.30121,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 z"
162 class="btn" /><path
239 class="key led"
240 data-led-i="26"
241 data-key-i="22"
242 id="path699" /><path
163243 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
164244 d="m 438.0439,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.26511,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -8e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26502,-0.160859 -10.45472,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.2651,0.160856 -0.25784,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.22399,0.214431 -0.21442,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17236,0.257828 -0.1608,0.2651 -0.14907,0.27187 -0.13717,0.27811 -0.12492,0.28383 -0.11247,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.271865 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26504,0.16087 z"
165 class="btn" /><path
245 class="key led"
246 data-led-i="27"
247 data-key-i="23"
248 id="path701" /><path
166249 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
167250 d="m 478.26052,117.54761 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0606,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22398,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25008,-0.18336 -0.25783,-0.17228 -0.26492,-0.16088 -10.45462,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20445,0.23314 -0.19411,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.27186 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26503,0.16087 10.45471,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.2651 0.14907,-0.27186 0.13718,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0606,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 z"
168 class="btn" /><path
251 class="key led"
252 data-led-i="28"
253 data-key-i="35"
254 id="path703" /><path
169255 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
170256 d="m 426.05033,105.35642 -0.27188,-0.14914 -0.2781,-0.13716 -0.28384,-0.12489 -0.289,-0.11238 -0.29363,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25008,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22398,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.16081,0.2651 -0.14907,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 8e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18336,0.25007 0.1941,0.24184 0.20446,0.23314 0.21442,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26502,0.16087 10.45472,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29363,-0.0997 0.289,-0.11238 0.28384,-0.12489 0.2781,-0.13716 0.27188,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -7e-5,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13718,-0.27811 -0.14907,-0.27186 -0.1608,-0.2651 -0.17236,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21442,-0.22399 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16088 z"
171 class="btn" /><path
257 class="key led"
258 data-led-i="29"
259 data-key-i="34"
260 id="path705" /><path
172261 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
173262 d="m 401.85701,117.54761 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22399,-0.21443 -0.23313,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26503,-0.16088 -10.45472,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21442,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18336,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 8e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26502,0.16087 10.45472,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 z"
174 class="btn" /><path
263 class="key led"
264 data-led-i="30"
265 data-key-i="33"
266 id="path707" /><path
175267 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
176268 d="m 349.64682,105.35642 -0.27188,-0.14914 -0.2781,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30941,-0.0203 -0.31003,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.2781,0.13716 -0.27188,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24185,0.19409 -0.23314,0.20446 -0.22398,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0337,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17236,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21442,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26507,0.16087 10.45477,6.03608 0.27188,0.14914 0.2781,0.13716 0.28383,0.12489 0.28901,0.11238 0.29363,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31003,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.2781,-0.13716 0.27188,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -7e-5,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13718,-0.27811 -0.14907,-0.27186 -0.1608,-0.2651 -0.17236,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21442,-0.22399 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26502,-0.16088 z"
177 class="btn" /><path
269 class="key led"
270 data-led-i="31"
271 data-key-i="32"
272 id="path709" /><path
178273 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
179274 d="m 311.44506,105.35642 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21442,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17236,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31001 3e-5,12.07215 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26503,0.16088 10.45472,6.03607 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30413,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18336,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22398,-0.21443 -0.23314,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26503,-0.16087 z"
180 class="btn" /><path
275 class="key led"
276 data-led-i="32"
277 data-key-i="31"
278 id="path711" /><path
181279 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
182280 d="m 273.24331,105.35642 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30941,-0.0203 -0.31002,-0.007 -0.31003,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.2781,0.13716 -0.27188,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24185,0.19409 -0.23313,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31001 7e-5,12.07215 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13718,0.27811 0.14907,0.27186 0.1608,0.2651 0.17236,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21442,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26502,0.16088 10.45472,6.03607 0.27188,0.14914 0.2781,0.13716 0.28383,0.12489 0.28901,0.11238 0.29363,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31003,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17236,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21442,-0.22399 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16087 z"
183 class="btn" /><path
281 class="key led"
282 data-led-i="33"
283 data-key-i="30"
284 id="path713" /><path
184285 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
185286 d="m 227.93425,141.81096 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20445,-0.23313 0.19411,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30942 0.007,-0.31001 -3e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22398,-0.21443 -0.23314,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26502,-0.16087 -10.45472,-6.03608 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21442,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17236,0.25783 -0.1608,0.2651 -0.14907,0.27186 -0.13718,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0606,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31001 1.7e-4,12.07215 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0606,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.27186 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25008,0.18336 0.25783,0.17228 0.26493,0.16088 z"
186 class="btn" /><path
287 class="key led"
288 data-led-i="34"
289 data-key-i="29"
290 id="path715" /><path
187291 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
188292 d="m 175.72404,129.61977 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.1249,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16088 10.4546,6.03607 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30414,0.0605 0.30648,0.0472 0.30824,0.0338 0.30943,0.0203 0.31002,0.007 0.31001,-0.007 0.30943,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0606,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -1.7e-4,-12.07216 -0.007,-0.31002 -0.0202,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0606,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22399,-0.21443 -0.23313,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26499,-0.16087 -10.45466,-6.03608 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30943,-0.0203 -0.31001,-0.007 -0.31002,0.007 -0.30943,0.0203 -0.30824,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.2977,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21444,0.224 -0.20445,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17229,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31001 z"
189 class="btn" /><path
293 class="key led"
294 data-led-i="35"
295 data-key-i="28"
296 id="path717" /><path
190297 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
191298 d="m 137.52229,129.61977 0.007,0.31002 0.0203,0.30942 0.0337,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17229,0.25783 0.18335,0.25007 0.1941,0.24184 0.20445,0.23314 0.21444,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26495,0.16087 10.45465,6.03608 0.27186,0.14914 0.27812,0.13716 0.28382,0.12489 0.28901,0.11238 0.29363,0.0997 0.29771,0.0868 0.3012,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27186,-0.14914 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23313,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16088,-0.2651 0.14914,-0.27186 0.13716,-0.27811 0.12489,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -2e-4,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.1249,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.1941,-0.24184 -0.20445,-0.23314 -0.21443,-0.22399 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.2649,-0.16088 -10.45461,-6.03607 -0.27186,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.2977,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.3012,0.0737 -0.29771,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28382,0.12489 -0.27812,0.13716 -0.27186,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.1249,0.28383 -0.11238,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
192 class="btn" /><path
299 class="key led"
300 data-led-i="36"
301 data-key-i="27"
302 id="path719" /><path
193303 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
194304 d="m 99.32053,129.61977 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.1249,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.45461,6.03608 0.27186,0.14914 0.27811,0.13716 0.28383,0.12489 0.28901,0.11238 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30824,0.0338 0.30943,0.0203 0.31002,0.007 0.31001,-0.007 0.30943,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20445,-0.23313 0.1941,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.12489,-0.28383 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -1.9e-4,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.12489,-0.28383 -0.13716,-0.27811 -0.14914,-0.27186 -0.16088,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.224,-0.21443 -0.23313,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26491,-0.16088 -10.4546,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30943,-0.0203 -0.31001,-0.007 -0.31002,0.007 -0.30943,0.0203 -0.30824,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27186,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23313,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16088,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
195 class="btn" /><path
305 class="key led"
306 data-led-i="37"
307 data-key-i="26"
308 id="path721" /><path
196309 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
197310 d="m 75.12723,141.81096 0.27187,0.14914 0.27811,0.13716 0.28382,0.12489 0.28901,0.11238 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27186,-0.14914 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23313,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16088,-0.2651 0.14914,-0.27186 0.13716,-0.27811 0.12489,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -2e-4,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.1249,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.2649,-0.16088 -10.45461,-6.03607 -0.27186,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.2977,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31001,0.007 -0.30943,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.0868 -0.29364,0.0997 -0.28901,0.11238 -0.28382,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.1249,0.28383 -0.11238,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.27186 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20445,0.23314 0.21444,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.2649,0.16087 z"
198 class="btn" /><path
311 class="key led"
312 data-led-i="38"
313 data-key-i="25"
314 id="path723" /><path
199315 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
200316 d="m 44.03278,105.35642 -0.27187,-0.14914 -0.27811,-0.13716 -0.28382,-0.12489 -0.28901,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30943,-0.0203 -0.31001,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11239 -0.28383,0.12489 -0.27811,0.13714 -0.27186,0.14915 -10.4548,6.03608 -0.2651,0.16087 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23313,0.20446 -0.224,0.21443 -0.21443,0.22399 -0.20446,0.23314 -0.19409,0.24184 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13714,0.27811 -0.12489,0.28383 -0.11239,0.28901 -0.0997,0.29363 -0.0868,0.2977 -0.0737,0.30121 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30942 -0.007,0.31002 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12488,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.45461,6.03608 0.27186,0.14915 0.27811,0.13714 0.28383,0.1249 0.28901,0.11238 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31001,-0.007 0.30943,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.28901,-0.11238 0.28382,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20445,-0.23313 0.1941,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.1249,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -2e-4,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13716,-0.27811 -0.14914,-0.27186 -0.16088,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.224,-0.21443 -0.23313,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.2649,-0.16088 z"
201 class="btn" /><path
317 class="key led"
318 data-led-i="39"
319 data-key-i="24"
320 id="path725" /><path
202321 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
203322 d="m 24.9319,138.44011 -0.27186,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.2977,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11239 -0.28383,0.12489 -0.27811,0.13715 -0.27186,0.14915 -10.4548005,6.03607 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16086,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31 1.4e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17227,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23313 0.21443,0.224 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16088 10.4546105,6.03612 0.27186,0.14919 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0337 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.0868 0.29363,-0.0997 0.28901,-0.11239 0.28383,-0.12489 0.27811,-0.13714 0.27186,-0.14915 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16086,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.12489,-0.28383 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0337,-0.30825 0.0203,-0.30942 0.007,-0.31001 -1.4e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17227,-0.25783 -0.18336,-0.25007 -0.1941,-0.24184 -0.20445,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26491,-0.16088 z"
204 class="btn" /><path
323 class="key led"
324 data-led-i="40"
325 data-key-i="36"
326 id="path727" /><path
205327 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
206328 d="m 42.0179,162.70346 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.27186 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23313 0.21443,0.224 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.4546,6.03613 0.27187,0.14919 0.27811,0.13715 0.28383,0.12489 0.289,0.11239 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30649,0.0472 0.30824,0.0337 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30943,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12489 0.27811,-0.13714 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20445,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17229,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.12489,-0.28383 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.12489,-0.28383 -0.13716,-0.27811 -0.14914,-0.27186 -0.16088,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26491,-0.16088 -10.4546,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30943,-0.0203 -0.31002,-0.007 -0.31001,0.007 -0.30943,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.4548,6.03608 -0.26509,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20445,0.23314 -0.1941,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
207 class="btn" /><path
329 class="key led"
330 data-led-i="41"
331 data-key-i="37"
332 id="path729" /><path
208333 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
209334 d="m 80.21966,162.70346 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23313 0.21443,0.224 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.4546,6.03613 0.27186,0.14919 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0337 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.29771,-0.0868 0.29363,-0.0997 0.28901,-0.11239 0.28383,-0.12489 0.27811,-0.13714 0.27186,-0.14915 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.1249,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.1941,-0.24184 -0.20445,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26489,-0.16088 -10.45461,-6.03607 -0.27186,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.29771,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27186,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16088,0.2651 -0.14914,0.27186 -0.13716,0.27812 -0.12489,0.28383 -0.11238,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
210 class="btn" /><path
335 class="key led"
336 data-led-i="42"
337 data-key-i="38"
338 id="path731" /><path
211339 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
212340 d="m 118.42141,162.70346 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.27186 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23313 0.21443,0.224 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.4546,6.03613 0.27187,0.14919 0.27811,0.13715 0.28383,0.12489 0.289,0.11239 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0337 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30943,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12489 0.27811,-0.13714 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21444,-0.224 0.20445,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17229,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.12489,-0.28383 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.1249,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26491,-0.16088 -10.4546,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30824,-0.0338 -0.30943,-0.0203 -0.31002,-0.007 -0.31001,0.007 -0.30943,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.4548,6.03608 -0.26509,0.16088 -0.25783,0.17228 -0.25008,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20445,0.23314 -0.1941,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
213 class="btn" /><path
341 class="key led"
342 data-led-i="43"
343 data-key-i="39"
344 id="path733" /><path
214345 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
215346 d="m 177.73892,138.44011 -0.27186,-0.14914 -0.27812,-0.13716 -0.28382,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.29771,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27186,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23313,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16088,0.2651 -0.14914,0.27186 -0.13716,0.27812 -0.12489,0.28383 -0.11238,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.1249,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23313 0.21443,0.224 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.2649,0.16087 10.45461,6.03613 0.27186,0.14919 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0337 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.29771,-0.0868 0.29363,-0.0997 0.28901,-0.11239 0.28382,-0.12489 0.27812,-0.13714 0.27186,-0.14915 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.1249,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -1.9e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17229,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20445,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.2649,-0.16088 z"
216 class="btn" /><path
347 class="key led"
348 data-led-i="44"
349 data-key-i="40"
350 id="path735" /><path
217351 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
218352 d="m 208.83337,174.89465 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29363,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27188,-0.14915 10.45478,-6.03608 0.26511,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0606,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30942 0.007,-0.31001 -1.2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0606,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18336,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21442,-0.224 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26493,-0.16088 -10.45461,-6.03607 -0.27188,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29363,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20445,0.23314 -0.1941,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.27186 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23313 0.21443,0.224 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 z"
219 class="btn" /><path
353 class="key led"
354 data-led-i="45"
355 data-key-i="41"
356 id="path737" /><path
220357 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
221358 d="m 247.03513,174.89465 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12492,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -8e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22399,-0.21443 -0.23313,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26503,-0.16088 -10.45472,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.26511,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0606,0.30413 -0.0471,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31 1.2e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0606,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13718,0.27811 0.14907,0.27186 0.1608,0.2651 0.17236,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21442,0.224 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26493,0.16087 z"
222 class="btn" /><path
359 class="key led"
360 data-led-i="46"
361 data-key-i="42"
362 id="path739" /><path
223363 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
224364 d="m 271.22844,162.70346 0.007,0.31002 0.0202,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26508,0.16087 10.45477,6.03608 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29768,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.26511,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22398,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16088 -10.45472,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29768,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22398,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.16081,0.2651 -0.14907,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
225 class="btn" /><path
365 class="key led"
366 data-led-i="47"
367 data-key-i="43"
368 id="path741" /><path
226369 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
227370 d="m 344.55438,150.6313 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22399,-0.21443 -0.23313,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26504,-0.16088 -10.45471,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30941,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.26511,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24185,0.19409 -0.23313,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.27186 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26503,0.16087 10.45472,6.03608 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 z"
228 class="btn" /><path
371 class="key led"
372 data-led-i="48"
373 data-key-i="44"
374 id="path743" /><path
229375 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
230376 d="m 347.63195,162.70346 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26503,0.16088 10.45472,6.03607 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.26511,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30942 0.007,-0.31001 -2e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22398,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16088 -10.45472,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22398,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.16081,0.2651 -0.14907,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
231 class="btn" /><path
377 class="key led"
378 data-led-i="49"
379 data-key-i="45"
380 id="path745" /><path
232381 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
233382 d="m 406.94945,138.44011 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30941,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29768,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.26511,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24185,0.19409 -0.23313,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.27186 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26503,0.16087 10.45472,6.03608 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29768,0.0868 0.30121,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26504,-0.16088 z"
234 class="btn" /><path
383 class="key led"
384 data-led-i="50"
385 data-key-i="46"
386 id="path747" /><path
235387 style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
236388 d="m 459.15964,150.6313 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22398,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16088 -10.45471,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21442,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17236,0.25783 -0.1608,0.2651 -0.14907,0.27186 -0.13717,0.27812 -0.12492,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26504,0.16087 10.45471,6.03608 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.26511,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 z"
237 class="btn" /></g></g></svg>
389 class="key led"
390 data-led-i="51"
391 data-key-i="47"
392 id="path749" /></g></g></svg>