Compare commits

..

2 Commits

Author SHA1 Message Date
Mike Khiretskiy 8ff5da24c2 Begin refactoring
10 years ago
Mike Khiretskiy da8a0d5da9 Добавлена обработка метода типа каталог.
10 years ago

6
.gitignore vendored

@ -1,6 +0,0 @@
revert_changes_to_vmachine
push_to_vmachine*
.vscode
*.pyc
*.pyo
*.bak

@ -1,21 +1,31 @@
#!/usr/bin/env python
#!/usr/bin/env python2
#-*- coding: utf-8 -*-
import sys, os, pwd
from calculate.consolegui import qt
from importlib import reload
from PySide import QtGui
from calculate.consolegui.application.more import getRunProc, owner, _print
import builtins as __builtin__
import __builtin__
import dbus
import dbus.mainloop.glib
reload(sys)
# always utf-8 in py3
# sys.setdefaultencoding("utf-8")
sys.setdefaultencoding("utf-8")
from calculate.lib.cl_lang import setLocalTranslate
setLocalTranslate('console_gui',sys.modules[__name__])
import signal
signal.signal(signal.SIGINT, signal.SIG_DFL)
#KeyboardInterrupt
#def sigint_handler(*args):
# """Handler for the SIGINT signal."""
# sys.stderr.write('\r')
# from PySide.QtGui import QMessageBox
# if QMessageBox.question(None, '', "Are you sure you want to quit?",
# QMessageBox.Yes | QMessageBox.No,
# QMessageBox.No) == QMessageBox.Yes:
# QtGui.QApplication.quit()
#signal.signal(signal.SIGINT, sigint_handler)
def main():
from calculate.consolegui.application.ConnectionTabs import (ToolTabWidget,
@ -24,44 +34,41 @@ def main():
DBUS_NAME, DBUS_METHOD_APP, DBusWidget, dbus_updater_hide_tray)
__builtin__.__dict__['_print'] = _print
host, port, args = None, None, None
parser = parse()
args = parser.parse_args()
if args.help:
parser.print_help()
sys.exit(0)
sym_link = os.path.basename(sys.argv[0])
if sym_link != 'cl-console-gui' and sym_link.startswith("cl-console-gui-"):
args.method = sym_link[len("cl-console-gui-"):].replace("-","_")
if args.method:
app = qt.QApplication(sys.argv)
app.setQuitOnLastWindowClosed(True)
ex = SelectedMethodWgt(app, args)
if args.method == 'update':
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
session_bus = dbus.SessionBus()
# Export the service
name = dbus.service.BusName(DBUS_NAME, session_bus)
# Export the object
widget = DBusWidget(session_bus, DBUS_METHOD_APP % args.method,
ex)
sys.exit(app.exec_())
if args.host:
host = args.host
if args.port:
port = args.port
if len(sys.argv) > 1:
parser = parse()
args = parser.parse_args()
if args.help:
parser.print_help()
sys.exit(0)
if args.method:
app = QtGui.QApplication(sys.argv)
app.setQuitOnLastWindowClosed(True)
ex = SelectedMethodWgt(app, args)
if args.method == 'update':
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
session_bus = dbus.SessionBus()
# Export the service
name = dbus.service.BusName(DBUS_NAME, session_bus)
# Export the object
widget = DBusWidget(session_bus, DBUS_METHOD_APP % args.method,
ex)
sys.exit(app.exec_())
if args.host:
host = args.host
if args.port:
port = args.port
# Enable glib main loop support
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
# Get the session bus
try:
bus = dbus.SessionBus()
except dbus.exceptions.DBusException as e:
except dbus.exceptions.DBusException, e:
bus = None
if not os.getuid():
_print (_('The user must not be root'))
else:
print(e)
print e
sys.exit(1)
iface = None
@ -73,16 +80,15 @@ def main():
except dbus.DBusException:
pass
app = qt.QApplication(sys.argv)
app.setApplicationName(_("Calculate Console"))
app = QtGui.QApplication(sys.argv)
second = False
for run_commands in (x for x in getRunProc() if 'cl-console-gui' in x[0]):
for run_commands in filter(lambda x:'cl-console-gui' in x[0],getRunProc()):
if 'python' in run_commands[0]:
if not '--method' in run_commands[0] and pwd.getpwuid(os.getuid())\
.pw_name == owner(run_commands[1]):
if second:
print('Client already running')
print 'Client already running'
if iface:
# Call some methods of the remote interface
iface.show()
@ -94,6 +100,7 @@ def main():
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
session_bus = dbus.SessionBus()
dbus_updater_hide_tray(session_bus)
app.setQuitOnLastWindowClosed(False)

@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#-*- coding: utf-8 -*-
# Copyright 2012-2016 Mir Calculate. http://www.calculate-linux.org
# Copyright 2012-2013 Calculate Ltd. http://www.calculate-linux.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -15,97 +15,51 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
# logging.basicConfig(format='%(levelname)s:%(message)s', level=logging.DEBUG)
logger = logging.getLogger(__name__)
import os
from os import path
from PyQt5 import QtCore, QtGui, QtWidgets
from PySide import QtCore, QtGui
import time
from calculate.consolegui.application.user_update import user_can_run_update
from calculate.lib.datavars import DataVars
from calculate.core.client.cert_info import user_can_run_update
import dbus
import dbus.service
import dbus.mainloop.glib
import pyinotify
from calculate.lib.utils.tools import debug
from calculate.consolegui.application.dbus_service import (
DBUS_NAME, DBUS_METHOD_APP, DBUS_MAINAPP, DBUS_APP_UPDATER,
DBUS_NAME_UPDATER)
from calculate.consolegui.application.dbus_service import (DBUS_NAME,
DBUS_METHOD_APP, DBUS_MAINAPP, DBUS_APP_UPDATER, DBUS_NAME_UPDATER)
from calculate.update.update_info import UpdateInfo
import sys
from calculate.lib.cl_lang import setLocalTranslate, getLazyLocalTranslate, _
setLocalTranslate('cl_consolegui3', sys.modules[__name__])
__ = getLazyLocalTranslate(_)
GUI_UPDATE_APP = DBUS_METHOD_APP % "update"
MINUTE = 60
MINUTE=60
def check_livecd_and_autocheck():
"""
Проверить необходимость запуска cl-update-checker
Не запускать на livecd или если выключена автоматическая проверка обновлений
"""
dv = DataVars()
try:
dv.importData()
dv.flIniFile()
if (dv.Get('os_root_type') == "livecd" or
dv.Get('update.cl_update_autocheck_set') == 'off'):
return False
return True
finally:
dv.close()
class SysTray(QtWidgets.QSystemTrayIcon):
ICON = "/usr/share/pixmaps/calculate-console-update.svg"
ICON_NO_UPDATE = "/usr/share/pixmaps/calculate-console-update-no.svg"
class SysTray(QtGui.QSystemTrayIcon):
ICON = "/usr/share/pixmaps/calculate-console-update.png"
def __init__(self, parent):
super().__init__()
super(SysTray, self).__init__()
self.parent = parent
self.timeout = 0
self.setIcon(QtGui.QIcon(self.ICON))
self.activated.connect(self.systrayActivate)
self.icon_on = QtGui.QIcon()
self.icon_on.addPixmap(QtGui.QPixmap(self.ICON))
self.icon_off = QtGui.QIcon()
self.icon_off.addPixmap(QtGui.QPixmap(self.ICON_NO_UPDATE))
self.update(has_updates=False)
self.setVisible(True)
def run_cl_gui_update(self):
cmd = '/usr/bin/cl-console-gui'
method = "update"
cmd = '/usr/bin/cl-console-gui-%s'%method
params = ["--skip-options"]
os.system("{cmd} {params} &>/dev/null &".format(
cmd=cmd, params=" ".join(params)))
os.system("{cmd} --method {method} {params} &>/dev/null &".format(
cmd=cmd, method=method, params=" ".join(params)))
def show_update(self):
try:
iface = self.parent.get_dbus_iface(DBUS_MAINAPP)
if iface:
iface.update()
return True
except dbus.DBusException as e:
pass
try:
iface = self.parent.get_dbus_iface(GUI_UPDATE_APP)
if iface:
iface.show()
return True
except dbus.DBusException as e:
pass
except dbus.DBusException:
return False
return False
def systrayActivate(self, reason):
@ -113,18 +67,6 @@ class SysTray(QtWidgets.QSystemTrayIcon):
self.timeout = time.time() + 5
self.show_update() or self.run_cl_gui_update()
self.parent.step()
else:
self.show_update()
def update(self, has_updates=False):
if has_updates:
self.setVisible(True)
self.setIcon(self.icon_on)
self.setToolTip(_("Updates are available"))
else:
self.setIcon(self.icon_off)
self.setToolTip(_("No updates"))
self.setVisible(False)
class DBusChecker(dbus.service.Object):
@ -132,15 +74,14 @@ class DBusChecker(dbus.service.Object):
self.parent = parent
# export this object to dbus
dbus.service.Object.__init__(self, name, session)
self.parent.systray.setVisible(True)
@dbus.service.method(DBUS_NAME_UPDATER, in_signature='', out_signature='')
def hide_systray(self):
self.parent.systray.setVisible(False)
self.parent.systray.hide()
@dbus.service.method(DBUS_NAME_UPDATER, in_signature='', out_signature='')
def show_systray(self):
self.parent.systray.setVisible(True)
self.parent.systray.show()
@dbus.service.method(DBUS_NAME_UPDATER, in_signature='', out_signature='b')
def ping(self):
@ -148,39 +89,30 @@ class DBusChecker(dbus.service.Object):
@dbus.service.method(DBUS_NAME_UPDATER, in_signature='', out_signature='')
def quit(self):
QtWidgets.qApp.quit()
QtGui.qApp.quit()
@dbus.service.method(DBUS_NAME_UPDATER, in_signature='', out_signature='')
def check(self):
self.parent.step()
class CheckThread(QtWidgets.QMainWindow, UpdateInfo):
interval = 5 * MINUTE
class CheckThread(QtGui.QMainWindow, UpdateInfo):
interval = MINUTE
def __init__(self, bus):
super().__init__()
super(CheckThread, self).__init__()
UpdateInfo.__init__(self)
self.bus = bus
self.wm = pyinotify.WatchManager()
self.notifier = pyinotify.Notifier(self.wm, timeout=1)
self.wm.add_watch(path.dirname(UpdateInfo.update_file),
pyinotify.IN_DELETE | pyinotify.IN_CREATE,
self.event_step)
self.bus = bus
self.already_timer = QtCore.QTimer(self)
self.already_timer.timeout.connect(self.notify_step)
self.already_timer.start(1)
self.already_timer.timeout.connect(self.step_already)
self.already_timer.start(1000)
self.check_timer = QtCore.QTimer(self)
self.check_timer.timeout.connect(self.step)
self.check_timer.start(self.interval * 1)
self.check_timer.start(self.interval * 1000)
self.systray = SysTray(self)
self.gui_runned = False
self.systray.update(has_updates=False)
self.step()
def get_dbus_iface(self, app_name):
@ -200,63 +132,64 @@ class CheckThread(QtWidgets.QMainWindow, UpdateInfo):
pass
return False
def notify_step(self):
if self.notifier.check_events(timeout=1):
self.notifier.read_events()
self.notifier.process_events()
def event_step(self, event):
if event.name == path.basename(UpdateInfo.update_file):
self.step()
def is_console_gui_run(self):
return self.ping_app(DBUS_MAINAPP)
def is_gui_update_run(self):
return self.ping_app(GUI_UPDATE_APP)
def step(self):
if self.need_update():
self.systray.update(has_updates=True)
return
self.systray.update(has_updates=False)
def step_already(self):
now_gui_runned = self.is_gui_update_run()
if (self.is_console_gui_run() or
(not now_gui_runned and
(self.update_already_run() or self.gui_runned))):
self.systray.hide()
self.gui_runned = now_gui_runned
def step(self):
if not self.is_console_gui_run():
if (self.need_update() and not self.update_already_run() or
self.is_gui_update_run()):
self.systray.show()
return
self.systray.hide()
if __name__ == '__main__':
import sys
pid = os.fork()
if pid != 0:
sys.exit(0)
if not user_can_run_update(True):
sys.stderr.write(_("User can not to perform the system update") + "\n")
if os.fork():
sys.exit(1)
if not check_livecd_and_autocheck():
sys.stderr.write(
_("No need to run a live cd or disable autoupdates") + "\n")
if not user_can_run_update():
sys.stderr.write(_("User can not to perform the system update")+"\n")
sys.exit(1)
app = QtWidgets.QApplication(sys.argv)
app = QtGui.QApplication(sys.argv)
for i in [0.5, 1, 2, 5]:
if QtWidgets.QSystemTrayIcon.isSystemTrayAvailable():
if QtGui.QSystemTrayIcon.isSystemTrayAvailable():
break
time.sleep(i)
else:
QtGui.QMessageBox.critical(None, "Systray",
"I couldn't detect any system tray on this system.")
sys.exit(1)
# Enable glib main loop support
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
# Get the session bus
try:
bus = dbus.SessionBus()
except dbus.exceptions.DBusException as e:
except dbus.exceptions.DBusException, e:
sys.exit(1)
try:
remote_object = bus.get_object(DBUS_NAME_UPDATER, DBUS_APP_UPDATER)
g = dbus.Interface(remote_object, DBUS_NAME_UPDATER)
sys.exit(1)
except Exception as e:
pass
QtWidgets.QApplication.setQuitOnLastWindowClosed(False)
QtWidgets.QApplication.setApplicationName(_("Calculate Update Checker"))
QtGui.QApplication.setQuitOnLastWindowClosed(False)
# Export the service
name = dbus.service.BusName(DBUS_NAME_UPDATER, bus)
# Export the object

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Before

Width:  |  Height:  |  Size: 848 B

After

Width:  |  Height:  |  Size: 848 B

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.5 KiB

@ -1,69 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="64"
viewBox="0 0 64 64"
width="64"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="calculate-console-update-no.svg">
<metadata
id="metadata26">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs24" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1332"
inkscape:window-height="748"
id="namedview22"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="38.184111"
inkscape:cy="25.7407"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<g
id="g4137"
style="stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke:#808080;stroke-opacity:1;fill:none">
<path
d="m 27.454545,28.363636 c 0,0 -4.5512,-0.36302 -6.727272,0.181819 -0.657307,0.164575 -1.37422,0.397197 -1.818182,0.90909 -0.502286,0.579141 -0.746107,1.415437 -0.727273,2.181819 0.02876,1.170144 0.569757,2.336833 1.272727,3.272727 6.831402,9.094929 11.910137,16.179039 17.818182,22.909091 0.76909,0.876096 1.926618,1.69527 3.090909,1.636363 1.091195,-0.05521 2.061745,-0.951678 2.727273,-1.818181 5.828815,-7.588995 13.396846,-17.33129 18.727273,-24.727273 0.285692,-0.396398 0.151456,-0.966868 0.181818,-1.454546 0.0226,-0.362934 0.114992,-0.745933 0,-1.090909 -0.191653,-0.574959 -0.593936,-1.107663 -1.090909,-1.454545 -0.518855,-0.362156 -1.192143,-0.453572 -1.818182,-0.545455 -1.978801,-0.290426 -6,0 -6,0 0,0 -0.318569,-2.431864 -0.545454,-3.636363 -0.253107,-1.343705 -0.477869,-2.702443 -0.909091,-4 -0.376494,-1.132879 -0.886125,-2.222938 -1.454546,-3.272728 -0.584314,-1.079141 -1.240795,-2.126763 -2,-3.090909 -1.03433,-1.313539 -2.169056,-2.567372 -3.454545,-3.636363 C 43.615714,9.8029198 42.36763,9.0418516 41.090909,8.3636364 39.579894,7.56096 38.007948,6.8366021 36.363636,6.3636364 34.534722,5.8375719 32.624262,5.6065463 30.727273,5.4545455 29.15655,5.3286875 27.573159,5.3640864 26,5.4545455 24.416403,5.5456048 22.830225,5.6995507 21.272727,6 c -1.357013,0.2617746 -2.696252,0.6323791 -4,1.0909091 -1.433895,0.5043028 -2.816293,1.1505616 -4.181818,1.8181818 -1.364439,0.6670893 -3.9999999,2.1818181 -3.9999999,2.1818181 0,0 3.0205929,-0.604928 4.5454549,-0.545454 1.235187,0.04818 2.471888,0.312538 3.636363,0.727272 1.098208,0.391132 2.129075,0.977638 3.09091,1.636364 0.992539,0.679754 1.938108,1.455661 2.727272,2.363636 0.805028,0.926228 1.39133,2.025316 2,3.090909 0.537731,0.941401 1.107405,1.882016 1.454545,2.909091 0.414847,1.227399 0.569781,2.532181 0.727273,3.818182 0.132814,1.084489 0.181818,3.272727 0.181818,3.272727 z"
id="path6"
inkscape:connector-curvature="0"
style="fill:none;stroke:#808080;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g4134"
style="stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke:#808080;stroke-opacity:1;fill:none">
<path
style="fill:none;stroke:#808080;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path20"
d="m 20.363636,13.818182 c 0,0 -3.341224,-0.120276 -4.909091,0.363636 -1.271396,0.392408 -2.43306,1.147358 -3.454545,2 -1.221289,1.01942 -2.0380891,2.443748 -3.0909091,3.636364 -0.6529312,0.739629 -1.2123531,1.587695 -2,2.181818 -0.6491498,0.489655 -1.3751769,0.988504 -2.1818182,1.090909 -0.8608373,0.109286 -1.8988721,0.03327 -2.5454545,-0.545454 -0.4284186,-0.383453 -0.5408919,-1.061422 -0.5454546,-1.636364 -0.00958,-1.207529 0.5612235,-2.369349 1.0909091,-3.454546 0.5161708,-1.057508 1.2308528,-2.01849 2,-2.90909 C 5.4840801,13.669143 6.3210383,12.841339 7.2727273,12.181818 7.9410479,11.718672 8.6674266,11.294872 9.4545455,11.090909 10.805193,10.740921 12.248185,10.768737 13.636364,10.909091 15.12807,11.059912 16.65017,11.347396 18,12 c 0.89491,0.432663 2.363636,1.818182 2.363636,1.818182 z" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

@ -1,65 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="64"
viewBox="0 0 64 64"
width="64"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="calculate-console-update.svg">
<metadata
id="metadata26">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs24" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1332"
inkscape:window-height="748"
id="namedview22"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="28.116954"
inkscape:cy="30.750493"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<g
id="g4134"
style="fill:none;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke:#ff6600;stroke-opacity:1">
<path
d="m 27.454545,28.363636 c 0,0 -4.5512,-0.36302 -6.727272,0.181819 -0.657307,0.164575 -1.37422,0.397197 -1.818182,0.90909 -0.502286,0.579141 -0.746107,1.415437 -0.727273,2.181819 0.02876,1.170144 0.569757,2.336833 1.272727,3.272727 6.831402,9.094929 11.910137,16.179039 17.818182,22.909091 0.76909,0.876096 1.926618,1.69527 3.090909,1.636363 1.091195,-0.05521 2.061745,-0.951678 2.727273,-1.818181 5.828815,-7.588995 13.396846,-17.33129 18.727273,-24.727273 0.285692,-0.396398 0.151456,-0.966868 0.181818,-1.454546 0.0226,-0.362934 0.114992,-0.745933 0,-1.090909 -0.191653,-0.574959 -0.593936,-1.107663 -1.090909,-1.454545 -0.518855,-0.362156 -1.192143,-0.453572 -1.818182,-0.545455 -1.978801,-0.290426 -6,0 -6,0 0,0 -0.318569,-2.431864 -0.545454,-3.636363 -0.253107,-1.343705 -0.477869,-2.702443 -0.909091,-4 -0.376494,-1.132879 -0.886125,-2.222938 -1.454546,-3.272728 -0.584314,-1.079141 -1.240795,-2.126763 -2,-3.090909 -1.03433,-1.313539 -2.169056,-2.567372 -3.454545,-3.636363 C 43.615714,9.8029198 42.36763,9.0418516 41.090909,8.3636364 39.579894,7.56096 38.007948,6.8366021 36.363636,6.3636364 34.534722,5.8375719 32.624262,5.6065463 30.727273,5.4545455 29.15655,5.3286875 27.573159,5.3640864 26,5.4545455 24.416403,5.5456048 22.830225,5.6995507 21.272727,6 c -1.357013,0.2617746 -2.696252,0.6323791 -4,1.0909091 -1.433895,0.5043028 -2.816293,1.1505616 -4.181818,1.8181818 -1.364439,0.6670893 -3.9999999,2.1818181 -3.9999999,2.1818181 0,0 3.0205929,-0.604928 4.5454549,-0.545454 1.235187,0.04818 2.471888,0.312538 3.636363,0.727272 1.098208,0.391132 2.129075,0.977638 3.09091,1.636364 0.992539,0.679754 1.938108,1.455661 2.727272,2.363636 0.805028,0.926228 1.39133,2.025316 2,3.090909 0.537731,0.941401 1.107405,1.882016 1.454545,2.909091 0.414847,1.227399 0.569781,2.532181 0.727273,3.818182 0.132814,1.084489 0.181818,3.272727 0.181818,3.272727 z"
id="path6"
inkscape:connector-curvature="0"
style="fill:none;stroke:#ff6600;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 20.363636,13.818182 c 0,0 -3.341224,-0.120276 -4.909091,0.363636 -1.271396,0.392408 -2.43306,1.147358 -3.454545,2 -1.221289,1.01942 -2.0380891,2.443748 -3.0909091,3.636364 -0.6529312,0.739629 -1.2123531,1.587695 -2,2.181818 -0.6491498,0.489655 -1.3751769,0.988504 -2.1818182,1.090909 -0.8608373,0.109286 -1.8988721,0.03327 -2.5454545,-0.545454 -0.4284186,-0.383453 -0.5408919,-1.061422 -0.5454546,-1.636364 -0.00958,-1.207529 0.5612235,-2.369349 1.0909091,-3.454546 0.5161708,-1.057508 1.2308528,-2.01849 2,-2.90909 C 5.4840801,13.669143 6.3210383,12.841339 7.2727273,12.181818 7.9410479,11.718672 8.6674266,11.294872 9.4545455,11.090909 10.805193,10.740921 12.248185,10.768737 13.636364,10.909091 15.12807,11.059912 16.65017,11.347396 18,12 c 0.89491,0.432663 2.363636,1.818182 2.363636,1.818182 z"
id="path20"
inkscape:connector-curvature="0"
style="fill:none;stroke:#ff6600;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

@ -6,8 +6,8 @@ Name[es]=Instalar Calculate Linux
Name[de]=Calculate Linux installieren
Name[ua]=Установка Calculate Linux
Comment=Calculate Linux installer
Exec=cl-console-gui-install
Icon=console-gui-install
Exec=cl-console-gui --method install
Icon=calculate-install
Terminal=false
Type=Application
Categories=System;

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

@ -1,10 +0,0 @@
[Desktop Entry]
Name=Calculate Console
Name[ru]=Консоль Calculate
Comment=Calculate Console
Exec=cl-console-gui
Icon=cl-console-gui
Terminal=false
Type=Application
Categories=System;
OnlyShowIn=X-Cinnamon;

@ -3,9 +3,9 @@ Name=Calculate Linux Update
Name[ru]=Обновление Calculate Linux
Comment=Calculate Linux updater
Exec=cl-console-gui --method update
Icon=console-gui-update
Icon=calculate-update
Terminal=false
Type=Application
Categories=System;
OnlyShowIn=X-Cinnamon;
Categories=Settings;X-XFCE-SettingsDialog;X-XFCE-SystemSettings;
StartupNotify=true
OnlyShowIn=XFCE;

@ -2,10 +2,9 @@
Name=Calculate Linux Update
Name[ru]=Обновление Calculate Linux
Comment=Calculate Linux updater
Exec=cl-console-gui-update
Icon=console-gui-update
Exec=cl-console-gui --method update
Icon=calculate-update
Terminal=false
Type=Application
Categories=Settings;X-GNOME-PersonalSettings;
OnlyShowIn=KDE;LXQt;LXDE;MATE;Razor;ROX;TDE;Unity;XFCE;Old;
Categories=System;
StartupNotify=true

@ -0,0 +1,10 @@
[Desktop Entry]
Name=Calculate Console
Name[ru]=Консоль Calculate
Comment=Calculate Utilities console
Exec=cl-console-gui
Icon=calculate-console
Terminal=false
Type=Application
Categories=Settings;X-XFCE-SettingsDialog;X-XFCE-SystemSettings;
OnlyShowIn=XFCE;

@ -1,10 +1,9 @@
[Desktop Entry]
Name=Calculate Console
Name[ru]=Консоль Calculate
Comment=Calculate Console
Comment=Calculate Utilities console
Exec=cl-console-gui
Icon=cl-console-gui
Icon=calculate-console
Terminal=false
Type=Application
Categories=Settings;X-GNOME-PersonalSettings;
OnlyShowIn=KDE;LXQt;LXDE;MATE;Razor;ROX;TDE;Unity;XFCE;Old;
Categories=System;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 842 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 643 B

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m45.876953 2.6074219v8.6503901c-3.875.031-6.70064.909485-8.556641 1.771485h-33.4433589v48h47.9999999v-35.478516l8.410156-8.455078zm2 4.8476562l9.589844 9.6425779-5.589844 5.617188-.949219.953125-3.050781 3.070312v-5.603515l-.765625-.185547c-.119-.029-2.94189-.689766-6.71289.240234-1.151001.285-2.470329.747516-3.861329 1.478516-1.316.691-2.697406 1.624672-4.066406 2.888672-.906.836-1.807687 1.812937-2.679687 2.960937.115-2.535.848765-6.372922 3.759765-9.919922.671-.818 1.45886-1.619719 2.38086-2.386718.001-.001.04042-.03584.107421-.08984.01-.008.01925-.01639.03125-.02539.027-.021.06266-.04822.09766-.07422.027-.021.05394-.04145.08594-.06445.031-.023.06947-.05117.105469-.07617.052-.037.106969-.07423.167969-.115234.028-.019.05884-.03955.08984-.06055.086-.057.180203-.114734.283203-.177734.014-.009.02897-.01834.04297-.02734 1.445-.873 4.459157-2.242188 9.160157-2.242188.243 0 .490187.0037.742187.01172l1.03125.0293v-5.8437499zm-41.9999999 7.5761719h28.3593749c-.069.06-.132219.119687-.199219.179688-.119.106999-.235609.214265-.349609.322265-.125.117-.247187.233563-.367188.351563-.109999.108-.217265.217172-.322265.326172-.116.12-.228844.241328-.339844.361328-.1.109-.199875.217171-.296875.326172-.107.121999-.211453.244187-.314453.367187-.092.11-.181531.220078-.269531.330078-.098.123-.19311.246141-.28711.369141-.084.111-.168047.221984-.248046.333984-.09.124-.174766.247094-.259766.371094-.076.111-.153563.222984-.226563.333984-.082.125-.158328.25-.236328.375-.068.11-.137125.221031-.203125.332032-.075.126999-.145797.251906-.216797.378906-.061.109-.121687.219125-.179687.328125-.068.127-.131313.253859-.195313.380859-.054.107-.107203.215266-.158203.322266-.061.128-.120734.255812-.177734.382812-.047.106-.09367.210406-.138672.316406-.054.127-.10525.25486-.15625.38086-.042.104-.08405.2085-.123047.3125-.048.127-.09272.252906-.136719.378906-.036.101-.07247.201734-.105468.302734-.042.127-.08014.252907-.119141.378907-.031.099-.06184.196922-.08984.294922-.036.125-.07052.248093-.103515.371093-.026.096-.05217.193063-.07617.289063-.031.125-.05989.246141-.08789.369141-.021.091-.0435.181484-.0625.271484-.027.124-.05022.245187-.07422.367187-.017.087-.03383.173766-.04883.259766-.022.122-.0425.243281-.0625.363281-.013.082-.02706.163141-.03906.244141-.018.12-.03187.236515-.04687.353515-.01.078-.02225.157376-.03125.234376-.014.117-.02416.22975-.03516.34375-.007.072-.01548.145796-.02148.216796-.01.114-.01739.222985-.02539.333985-.005.068-.0097.137125-.01367.203125-.006.11-.0097.215265-.01367.322265-.002.062-.0058.1265-.0078.1875-.003.107-.0068.2095-.0078.3125-.001.055-.000953.110063-.002.164063-.001.104-.001.203734 0 .302734 0 .048.000953.09853.002.144532.002.096.0048.186343.0078.277343.001.045.0019.09467.0039.138672.004.09.0097.173813.01367.257813.0014.0273.0025.05483.0039.08203.194111.01215.387809.02551.527343.03906.460982.04478.802243.155075 1.054688.3125.167523.0039.336051.0039.501953.0078.07363.0017.147076.0022.220703.0039.02614.000019.02043.000042.04883 0 .09408-.00008.142511.0021.222657.002.06631-.01549.162331-.05658.164062 0 .06057.000336.140031.000577.191406.002 4.283157-6.244835 9.426109-7.716594 12.6875-7.9375 1.045-.07 1.898797-.01236 2.466797.05664v8.816406l4-4.019531v31.46875h-43.9999999v-44z" fill="#666"/><path d="m57.49 21.5h-3.49v-6.268c0-1.507-1.226-2.732-2.732-2.732h-24.753l-5-7h-18.783c-1.506 0-2.732 1.226-2.732 2.732v43.687h.006c-.005.563.17 1.114.522 1.575.49.64 1.232 1.006 2.037 1.006h44.759c1.156 0 2.174-.779 2.45-1.813l10.226-28.038v-.177c0-1.722-1.056-2.972-2.51-2.972zm-55.49-13.268c0-.404.329-.732.732-.732h17.753l5 7h25.782c.404 0 .732.328.732.732v6.268h-39.268c-.144 0-.287.012-.426.036-.973.163-1.782.873-2.023 1.776l-8.282 22.587zm45.869 43.851c-.066.245-.291.417-.545.417h-44.759c-.243 0-.385-.139-.448-.222-.063-.082-.16-.256-.123-.408l10.191-27.953c.066-.245.291-.417.545-.417h41.27 3.49c.38 0 .477.546.502.819z" fill="#666" stroke="#666" stroke-width="1.56750143" transform="matrix(.62485876 0 0 .65133172 7.6949156 22.087167)"/></svg>

Before

Width:  |  Height:  |  Size: 4.0 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m11.726562 9.0917969v4.1835941c-5.7124008 2.041-8.6526321 6.017859-8.8242182 6.255859l-1.5625 2.175781 2.7089843-.644531c2.9094875-.693 5.459915-.854688 7.6777339-.679688v36.708985h51.15625v-48.0000001zm2.132813 2.0000001h46.892578v44h-46.892578v-34.410156c.176913.034.353805.06552.525391.103515.264304.059.522808.123406.77539.191406.289884.077.579618.154188.853516.242188.219543.072.422859.149562.632812.226562.492375.180001.959529.374079 1.396485.580079.168388.08.342979.157234.503906.240234.239794.122.465824.248.6875.375.156664.09.308893.179484.457031.271484.202492.125.404404.250953.589844.376953.149205.101002.285281.202688.423828.304688.286686.209.550865.412234.794922.615234.121494.102.248538.205688.359375.304688.126824.112.242499.219172.355469.326172.103377.099.203262.194109.294922.287109.09165.092.186578.185485.267578.271485.09912.106999.185508.202875.267578.296874.04263.049.0964.105391.134766.150391l-6.638672 6.228516 12.453125-.03125c-.105205-.419506-.06131-.853224.09961-1.267578-.129673-.229564-.220226-.479763-.306641-.732422l-7.085937.01758 4.220703-3.962891-.4375-.669922c-.0021-.003-.01331-.01997-.0293-.04297-.327185-.489-4.104218-5.856391-12.521484-6.900391l-1.207032-.150391v.04883c-1.541069-.112-3.2134384-.08166-5.039062.152344 1.2447916-1.081 3.0612327-2.352765 5.457031-3.259765l.988281-.314453c1.744629-.554002 3.566758-.839282 5.441407-.863282h.197265c.59895-.002 1.200052.01731 1.808594.07031.105508.005 5.105903.271625 10.492188 5.640625l.753906.75 4.40625-4.132813-.02734 9.882813c.09102-.003.188947-.01674.269531-.0039.596353.09497 1.288545.119828 1.859375.324218l.04492-15.044922-6.521484 6.117188c-5.73585-5.297-10.914508-5.520344-11.142578-5.527344-.623462-.055-1.24497-.07713-1.865235-.07813-.474257-.004-.927918.01892-1.380859.04492-.09272.006-.185684.0067-.277344.01367-1.186176.082-2.293996.255953-3.332031.501953v-1.564453z" fill="#666"/><path d="m57.49 21.5h-3.49v-6.268c0-1.507-1.226-2.732-2.732-2.732h-24.753l-5-7h-18.783c-1.506 0-2.732 1.226-2.732 2.732v43.687h.006c-.005.563.17 1.114.522 1.575.49.64 1.232 1.006 2.037 1.006h44.759c1.156 0 2.174-.779 2.45-1.813l10.226-28.038v-.177c0-1.722-1.056-2.972-2.51-2.972zm-55.49-13.268c0-.404.329-.732.732-.732h17.753l5 7h25.782c.404 0 .732.328.732.732v6.268h-39.268c-.144 0-.287.012-.426.036-.973.163-1.782.873-2.023 1.776l-8.282 22.587zm45.869 43.851c-.066.245-.291.417-.545.417h-44.759c-.243 0-.385-.139-.448-.222-.063-.082-.16-.256-.123-.408l10.191-27.953c.066-.245.291-.417.545-.417h41.27 3.49c.38 0 .477.546.502.819z" fill="#666" stroke="#666" stroke-width="1.94109046" transform="matrix(.51152454 0 0 .54022178 29.12884 23.250973)"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m58.452753 29.386302c-.463423-.724433-1.239014-1.122871-2.187315-1.122871-.0043 0-.0086 0-.01287 0-1.788256.006-3.940171.671106-5.61579 1.734614-1.545817.981002-3.786769 2.799127-5.678008 5.899095-.355077.581558-.937574.975972-1.560836 1.069544-.0021-.134825-.0011-.288767-.0011-.434659 0-.310903.0011-.681168-.01287-1.089668v-22.271273c0-2.219581-1.924494-4.0246253-4.290957-4.0246253-2.366463 0-4.290957 1.8050443-4.290957 4.0246253v15.595425c0 .276693-.241366.503079-.536369.503079-.295004 0-.53637-.226386-.53637-.503079v-22.6385196c0-2.2195811-1.924494-4.0246258-4.290957-4.0246258-2.366462 0-4.290957 1.8050447-4.290957 4.0246258v22.6385196c0 .276693-.241366.503079-.536369.503079-.295003 0-.53637-.226386-.53637-.503079v-18.110816c0-1.9418815-1.6842-3.5215472-3.754587-3.5215472-2.070387 0-3.754587 1.5796657-3.754587 3.5215472v20.123129c0 .276693-.241366.503078-.53637.503078-.295003 0-.536369-.226385-.536369-.503078v-12.576955c0-1.941882-1.684201-3.521548-3.765315-3.521548-2.0703866 0-3.7545871 1.579666-3.7545871 3.521548l.00215 27.364436c1.038429 14.069086 10.2393131 15.966697 19.1033571 15.966697 7.343973 0 13.940246-3.416907 17.192791-8.878324.418368-.633879 1.550108-2.303093 2.892105-4.28019 3.355528-4.944253 6.166105-9.09666 6.581255-9.835179.925774-1.64406 1.958822-2.928922 2.986506-3.715736.930065-.712359 1.498616-1.620918 1.960967-2.4188.239221-.415543.447332-1.941882-.239221-3.018469zm-1.70351 2.156193c-.429095.733488-.833518 1.308003-1.375251 1.72254-1.265833.969935-2.451209 2.427855-3.526094 4.335528-.408714.727451-4.069973 6.123468-6.49329 9.694317-1.349506 1.988165-2.48661 3.664422-2.931797 4.340559-2.897468 4.86376-8.777152 7.886254-15.344461 7.886254-11.308817 0-16.223035-4.083989-16.960007-14.023808v-27.296018c0-.832092.721954-1.509235 1.619837-1.509235.887155 0 1.609108.677143 1.609108 1.509235v12.576955c0 1.38749 1.202541 2.515391 2.681848 2.515391 1.479308 0 2.681848-1.127901 2.681848-2.515391v-20.123129c0-.832091.721954-1.5092343 1.609109-1.5092343.887155 0 1.609109.6771433 1.609109 1.5092343v18.110816c0 1.38749 1.202541 2.515391 2.681848 2.515391 1.479307 0 2.681848-1.127901 2.681848-2.515391v-22.6385196c0-1.1097906.962247-2.0123129 2.145478-2.0123129 1.183232 0 2.145479.9025223 2.145479 2.0123129v22.6385196c0 1.38749 1.20254 2.515391 2.681848 2.515391 1.479307 0 2.681848-1.127901 2.681848-2.515391v-15.595425c0-1.10979.962247-2.012312 2.145478-2.012312 1.183231 0 2.145478.902522 2.145478 2.012312v22.302464c.01395.41353.01287.762667.01287 1.056464-.0021.90051-.0032 1.550488.525642 2.036461.443042.405481 1.016957.430635 1.422453.43466 1.459998-.03119 2.848122-.838129 3.621567-2.10488 1.685273-2.764918 3.658041-4.370743 5.017201-5.231007 1.321615-.839134 3.05838-1.384471 4.422904-1.389502.0011 0 .0032 0 .0043 0 .229566 0 .28213.06339.31324.100616.211329.251539.220984.884411.170565 1.166135z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="translate(2.0826097 2)"><path d="m30 0c-16.542 0-30 13.458-30 30 0 16.542 13.458 30 30 30 16.542 0 30-13.458 30-30 0-16.542-13.458-30-30-30zm0 58c-15.439 0-28-12.561-28-28 0-15.439 12.561-28 28-28 15.439 0 28 12.561 28 28 0 15.439-12.561 28-28 28z"/><path d="m23.165 8.459c.537-.13.868-.67.739-1.206-.129-.537-.67-.866-1.206-.739-3.935.946-7.522 2.955-10.376 5.809-2.854 2.854-4.862 6.441-5.808 10.375-.129.536.202 1.076.739 1.206.078.019.157.027.234.027.451 0 .861-.308.972-.767.859-3.575 2.685-6.836 5.277-9.429 2.592-2.593 5.854-4.417 9.429-5.276z"/><path d="m52.747 36.096c-.538-.129-1.077.201-1.206.739-.859 3.575-2.685 6.836-5.277 9.429-2.592 2.593-5.854 4.418-9.43 5.277-.537.13-.868.67-.739 1.206.11.459.521.767.972.767.077 0 .156-.009.234-.027 3.936-.946 7.523-2.955 10.377-5.809 2.854-2.854 4.862-6.441 5.809-10.376.128-.536-.203-1.076-.74-1.206z"/><path d="m24.452 13.286c.538-.125.873-.663.747-1.2-.125-.538-.665-.878-1.2-.747-3.09.72-5.904 2.282-8.141 4.52-2.237 2.236-3.8 5.051-4.52 8.141-.126.537.209 1.075.747 1.2.076.019.152.026.228.026.454 0 .865-.312.973-.773.635-2.725 2.014-5.207 3.986-7.18 1.972-1.973 4.456-3.352 7.18-3.987z"/><path d="m48.661 36.001c.126-.537-.209-1.075-.747-1.2-.538-.133-1.075.209-1.2.747-.635 2.725-2.014 5.207-3.986 7.18-1.972 1.973-4.455 3.352-7.18 3.986-.538.125-.873.663-.747 1.2.107.462.519.773.973.773.075 0 .151-.008.228-.026 3.09-.72 5.904-2.282 8.141-4.52 2.236-2.236 3.798-5.05 4.518-8.14z"/><path d="m26.495 16.925c-.119-.541-.653-.879-1.19-.763-4.557.997-8.146 4.586-9.143 9.143-.118.539.224 1.072.763 1.19.072.016.144.023.215.023.46 0 .873-.318.976-.786.831-3.796 3.821-6.786 7.617-7.617.538-.118.88-.651.762-1.19z"/><path d="m43.838 34.695c.118-.539-.224-1.072-.763-1.19-.54-.118-1.072.222-1.19.763-.831 3.796-3.821 6.786-7.617 7.617-.539.118-.881.651-.763 1.19.103.468.516.786.976.786.071 0 .143-.008.215-.023 4.556-.997 8.145-4.586 9.142-9.143z"/><path d="m38.08 30c0-4.455-3.625-8.08-8.08-8.08-4.455 0-8.08 3.625-8.08 8.08 0 4.455 3.625 8.08 8.08 8.08 4.455 0 8.08-3.625 8.08-8.08zm-8.08 6.08c-3.353 0-6.08-2.728-6.08-6.08 0-3.352 2.728-6.08 6.08-6.08 3.352 0 6.08 2.728 6.08 6.08 0 3.352-2.727 6.08-6.08 6.08z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.1328671 0 0 1.1328671 2.8732549 2.3636364)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 598 B

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="translate(1.7823457 2.1818182)"><path d="m38.914 0h-32.414v60h47v-45.414zm.586 3.414l10.586 10.586h-10.586zm-31 54.586v-56h29v14h14v42z"/><path d="m42.5 21h-16c-.552 0-1 .447-1 1 0 .553.448 1 1 1h16c .552 0 1-.447 1-1 0-.553-.448-1-1-1z"/><path d="m22.875 18.219l-4.301 3.441-1.367-1.367c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2 2c .194.194.45.293.707.293.22 0 .441-.072.624-.219l5-4c .432-.346.501-.975.156-1.406-.344-.432-.974-.501-1.405-.156z"/><path d="m42.5 32h-16c-.552 0-1 .447-1 1 0 .553.448 1 1 1h16c .552 0 1-.447 1-1 0-.553-.448-1-1-1z"/><path d="m22.875 29.219l-4.301 3.441-1.367-1.367c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2 2c .194.194.45.293.707.293.22 0 .441-.072.624-.219l5-4c .432-.346.501-.975.156-1.406-.344-.432-.974-.501-1.405-.156z"/><path d="m42.5 43h-16c-.552 0-1 .447-1 1 0 .553.448 1 1 1h16c .552 0 1-.447 1-1 0-.553-.448-1-1-1z"/><path d="m22.875 40.219l-4.301 3.441-1.367-1.367c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2 2c .194.194.45.293.707.293.22 0 .441-.072.624-.219l5-4c .432-.346.501-.975.156-1.406-.344-.432-.974-.501-1.405-.156z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.825709 18.804636c-.161-.238-2.92-4.216-8.28-6.257v-4.1839996h-47.9999996v47.9999996h47.9999996v-36.709c2.081-.175 4.475-.013 7.205.68l2.541.645zm-10.28 35.559h-43.9999996v-44h43.9999996v1.565c-.974-.246-2.014-.42-3.127-.502-.086-.007-.173-.008-.26-.014-.425-.026-.85-.049-1.295-.045-.582.001-1.165.024-1.75.079-.214.007-5.075.231-10.457 5.528l-6.118-6.118.056 20.435 20.435.056-6.229-6.229c.036-.045.085-.101.125-.15.077-.094.159-.19.252-.297.076-.086.164-.179.25-.271.086-.093.181-.189.278-.288.106-.107.214-.215.333-.327.104-.099.223-.201.337-.303.229-.203.477-.408.746-.617.13-.102.258-.203.398-.304.174-.126.363-.251.553-.376.139-.092.283-.183.43-.273.208-.127.419-.253.644-.375.151-.083.315-.16.473-.24.41-.206.848-.399 1.31-.579.197-.077.388-.156.594-.228.257-.088.53-.165.802-.242.237-.068.478-.131.726-.19.161-.038.328-.071.494-.105zm2-36.708v-.048l-1.131.149c-7.898 1.044-11.443 6.411-11.75 6.9-.015.023-.026.04-.028.043l-.41.671 3.961 3.962-13.599-.036-.036-13.599 4.134 4.134.707-.75c5.054-5.369 9.746-5.636 9.845-5.641.571-.053 1.136-.073 1.698-.071.061 0 .123 0 .184 0 1.759.024 3.469.311 5.106.865l.927.313c2.248.907 3.954 2.18 5.122 3.261-1.713-.234-3.284-.265-4.73-.153z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.714618 17.2775l-14.41-14.489v8.652c-3.875.031-6.701.909-8.557 1.771h-33.4429995v48h47.9999995v-35.478zm-14.185-3.838c.243 0 .492.004.744.012l1.03.03v-5.845l9.59 9.642-5.59 5.619 0 0-.948.953-3.052 3.069v-5.602-.001l-.765-.185c-.119-.029-2.943-.69-6.714.24-1.151.285-2.47.747-3.861 1.478-1.316.691-2.697 1.625-4.066 2.889-.906.836-1.807999 1.813-2.679999 2.961.115-2.535.85-6.373 3.760999-9.92.671-.818 1.458-1.62 2.38-2.387.001-.001.041-.036.108-.09.01-.008.019-.016.031-.025.027-.021.063-.049.098-.075.027-.021.054-.041.086-.064.031-.023.069-.05.105-.075.052-.037.106-.075.167-.116.028-.019.059-.039.09-.06.086-.057.18-.116.283-.179.014-.009.029-.017.043-.026 1.445-.873 4.459-2.243 9.16-2.243zm3.775 14.305v31.468h-43.9999995v-44h28.3579995c-.069.06-.131.121-.198.181-.119.107-.236.213-.35.321-.125.117-.247.235-.367.353-.11.108-.218.217-.323.326-.116.12-.229.24-.34.36-.1.109-.199.218-.296.327-.107.122-.211.244-.314.367-.092.11-.183.22-.271.33-.098.123-.193.247-.287.37-.084.111-.167.221-.247.333-.09.124-.176.248-.260999.372-.076.111-.152.223-.225.334-.082.125-.16.25-.238.375-.068.11-.136.22-.202.331-.075.127-.146.253-.217.38-.061.109-.121.218-.179.327-.068.127-.132.254-.196.381-.054.107-.108.215-.159.322-.061.128-.119.256-.176.383-.047.106-.095.211-.14.317-.054.127-.105.254-.156.38-.042.104-.084.209-.123.313-.048.127-.093.253-.137.379-.036.101-.072.202-.105.303-.042.127-.081.252-.12.378-.031.099-.062.198-.09.296-.036.125-.07.248-.103.371-.026.096-.052.192-.076.288-.031.125-.06.247-.088.37-.021.091-.043.182-.062.272-.027.124-.05.245-.074.367-.017.087-.035.174-.05.26-.022.122-.041.242-.061.362-.013.082-.027.164-.039.245-.018.12-.033.237-.048.354-.01.078-.021.156-.03.233-.014.117-.025.231-.036.345-.007.072-.015.145-.021.216-.01.114-.017.224-.025.335-.005.068-.01.136-.014.202-.006.11-.011.216-.015.323-.002.062-.006.125-.008.186-.003.107-.005.21-.006.313-.001.055-.002.111-.003.165-.001.104 0 .204.001.303 0 .048 0 .098.001.144.002.096.005.187.008.278.001.045.002.093.004.137.004.09.009.175.013.259.002.039.004.08.006.117.005.085.011.163.018.241.002.032.005.067.007.097.007.08.014.154.021.226.002.023.004.049.007.072.008.073.015.139.023.203.002.017.004.037.006.053.009.071.017.134.025.192.001.006.002.013.002.019.017.117.031.204.042.264.001.005.002.013.003.018.005.03.009.051.012.063l.5 2.573 1.341-2.252c4.444999-7.467 10.110999-9.137 13.609999-9.374 1.045-.07 1.899-.014 2.467.055v8.817.001z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m12.282346 8.1363636c-2.4810003 0-4.5000003 2.0190004-4.5000003 4.5000004 0 2.481 2.019 4.5 4.5000003 4.5 2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5000004-4.5-4.5000004zm0 7.0000004c-1.378 0-2.5000003-1.121-2.5000003-2.5 0-1.379 1.1220003-2.5 2.5000003-2.5 1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5z" fill="#666"/><circle cx="51.782345" cy="11.136364" fill="#666" r="1"/><circle cx="47.782345" cy="11.136364" fill="#666" r="1"/><circle cx="53.782345" cy="14.136364" fill="#666" r="1"/><circle cx="49.782345" cy="14.136364" fill="#666" r="1"/><circle cx="43.782345" cy="11.136364" fill="#666" r="1"/><circle cx="45.782345" cy="14.136364" fill="#666" r="1"/><circle cx="39.782345" cy="11.136364" fill="#666" r="1"/><circle cx="41.782345" cy="14.136364" fill="#666" r="1"/><circle cx="35.782345" cy="11.136364" fill="#666" r="1"/><circle cx="37.782345" cy="14.136364" fill="#666" r="1"/><path d="m61.782346 18.528364v-11.7840004c0-2.541-2.067-4.608-4.608-4.608h-50.7840003c-2.541 0-4.608 2.067-4.608 4.608v11.7830004c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 2.542 2.067 4.609 4.608 4.609h50.7830003c2.541 0 4.608-2.067 4.608-4.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.075-.844 1.778-2.14 1.778-3.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.074-.844 1.777-2.14 1.777-3.608zm-2 26.216v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.7840003c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.7830003c1.439 0 2.609 1.17 2.609 2.608zm0-19v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.7840003c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.7830003c1.439 0 2.609 1.17 2.609 2.608zm-53.3920003-4.608c-1.438 0-2.608-1.17-2.608-2.608v-11.7840004c0-1.438 1.17-2.608 2.608-2.608h50.7830003c1.439 0 2.609 1.17 2.609 2.608v11.7830004c0 1.438-1.17 2.608-2.608 2.608h-50.7840003z" fill="#666"/><path d="m12.282346 36.136364c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.4810003 0-4.5000003 2.019-4.5000003 4.5 0 2.481 2.019 4.5 4.5000003 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5000003-1.121-2.5000003-2.5 0-1.379 1.1220003-2.5 2.5000003-2.5z" fill="#666"/><path d="m12.282346 55.136364c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.4810003 0-4.5000003 2.019-4.5000003 4.5 0 2.481 2.019 4.5 4.5000003 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5000003-1.121-2.5000003-2.5 0-1.379 1.1220003-2.5 2.5000003-2.5z" fill="#666"/><circle cx="51.782345" cy="49.136364" fill="#666" r="1"/><circle cx="47.782345" cy="49.136364" fill="#666" r="1"/><circle cx="53.782345" cy="52.136364" fill="#666" r="1"/><circle cx="49.782345" cy="52.136364" fill="#666" r="1"/><circle cx="43.782345" cy="49.136364" fill="#666" r="1"/><circle cx="45.782345" cy="52.136364" fill="#666" r="1"/><circle cx="39.782345" cy="49.136364" fill="#666" r="1"/><circle cx="41.782345" cy="52.136364" fill="#666" r="1"/><circle cx="35.782345" cy="49.136364" fill="#666" r="1"/><circle cx="37.782345" cy="52.136364" fill="#666" r="1"/><path d="m55.259162 25.982267c-3.43602-3.117533-9.027423-3.11752-12.463424.000031-1.279445 1.160865-2.080605 2.593127-2.407764 4.094298l-20.57166.000051c-.304575.000001-.550727.223339-.550726.499685 0 .137819.06154.262916.161247.353382.09971.09047.237585.1463.389482.1463l3.344092-.000009.000015 5.154441c.000001.137819.06154.262916.161247.353382.09971.09047.237585.1463.389482.1463.304576-.000001.550728-.22334.550727-.499685l-.000016-5.15444 2.793365-.000007.000011 3.740909c.000001.137819.06155.262917.161247.353383.09971.09047.237584.146299.389482.146299.304575-.000001.550727-.223339.550726-.499685l-.000011-3.740909 2.793366-.000007.000014 5.154441c.000001.137819.06154.262917.161247.353382.09971.09047.237584.1463.389483.146299.304574 0 .550726-.223339.550725-.499684l-.000015-5.154441 8.196259-.00002c-.170976 2.230199.673038 4.513403 2.548009 6.214582 3.436019 3.117535 9.027423 3.117521 12.463423-.00003 3.436001-3.117551 3.435986-8.190714-.000033-11.308248zm-11.684428 10.601511c-3.006808-2.728107-3.006822-7.166594-.00003-9.894716 3.006794-2.728122 7.898687-2.728135 10.905496-.000027 3.006809 2.728107 3.006822 7.166594.00003 9.894716-3.006793 2.728122-7.898687 2.728135-10.905496.000027z" fill="#666" stroke="#666"/></svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.5 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="translate(2.1459821 1.6363636)"><path d="m10.5 6.5c-2.481 0-4.5 2.019-4.5 4.5 0 2.481 2.019 4.5 4.5 4.5 2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5zm0 7c-1.378 0-2.5-1.121-2.5-2.5 0-1.379 1.122-2.5 2.5-2.5 1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5z"/><circle cx="50" cy="9.5" r="1"/><circle cx="46" cy="9.5" r="1"/><circle cx="52" cy="12.5" r="1"/><circle cx="48" cy="12.5" r="1"/><circle cx="42" cy="9.5" r="1"/><circle cx="44" cy="12.5" r="1"/><circle cx="38" cy="9.5" r="1"/><circle cx="40" cy="12.5" r="1"/><circle cx="34" cy="9.5" r="1"/><circle cx="36" cy="12.5" r="1"/><path d="m60 16.892v-11.784c0-2.541-2.067-4.608-4.608-4.608h-50.784c-2.541 0-4.608 2.067-4.608 4.608v11.783c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 2.542 2.067 4.609 4.608 4.609h50.783c2.541 0 4.608-2.067 4.608-4.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.075-.844 1.778-2.14 1.778-3.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.074-.844 1.777-2.14 1.777-3.608zm-2 26.216v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.784c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.783c1.439 0 2.609 1.17 2.609 2.608zm0-19v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.784c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.783c1.439 0 2.609 1.17 2.609 2.608zm-53.392-4.608c-1.438 0-2.608-1.17-2.608-2.608v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.783c1.439 0 2.609 1.17 2.609 2.608v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.784z"/><path d="m10.5 34.5c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.481 0-4.5 2.019-4.5 4.5 0 2.481 2.019 4.5 4.5 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5-1.121-2.5-2.5 0-1.379 1.122-2.5 2.5-2.5z"/><circle cx="50" cy="28.5" r="1"/><circle cx="46" cy="28.5" r="1"/><circle cx="52" cy="31.5" r="1"/><circle cx="48" cy="31.5" r="1"/><circle cx="42" cy="28.5" r="1"/><circle cx="44" cy="31.5" r="1"/><circle cx="38" cy="28.5" r="1"/><circle cx="40" cy="31.5" r="1"/><circle cx="34" cy="28.5" r="1"/><circle cx="36" cy="31.5" r="1"/><path d="m10.5 53.5c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.481 0-4.5 2.019-4.5 4.5 0 2.481 2.019 4.5 4.5 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5-1.121-2.5-2.5 0-1.379 1.122-2.5 2.5-2.5z"/><circle cx="50" cy="47.5" r="1"/><circle cx="46" cy="47.5" r="1"/><circle cx="52" cy="50.5" r="1"/><circle cx="48" cy="50.5" r="1"/><circle cx="42" cy="47.5" r="1"/><circle cx="44" cy="50.5" r="1"/><circle cx="38" cy="47.5" r="1"/><circle cx="40" cy="50.5" r="1"/><circle cx="34" cy="47.5" r="1"/><circle cx="36" cy="50.5" r="1"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.5 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m59.032449 5.0055c-3.810323-3.7504242-10.007797-3.7504242-13.81812 0l-39.1475404 38.554105c-.018454.01818-.02931.04063-.045593.05987-.022797.02566-.042337.05346-.062963.08125-.057535.07911-.1020424.163573-.1356952.255517-.00977.02779-.023882.05238-.031481.08019-.00326.01069-.00977.02138-.013027.03208l-3.8374622 15.876213c-.01737.07163-.021711.144329-.023882.215959 0 .0139-.00434.02672-.00434.04063.00108.121878.028225.240549.070561.354943.00977.02672.020625.05025.032567.07591.053192.114395.1194118.224513.2127702.316456.103128.101569.2247113.17961.3560644.233065.1313529.05346.2713904.08019.411428.08019.083588 0 .1682621-.0096.2507647-.02887l16.1205955-3.7793c.02931-.0064.05537-.02245.08358-.03208.03691-.01176.07165-.02566.107471-.04169.07816-.03528.150893-.07911.218197-.131499.02605-.02032.05319-.03529.07816-.05774.0087-.0086.01954-.01283.02822-.02138l39.148635-38.55517c3.810323-3.752563 3.810323-9.8571583.0011-13.608652zm-1.534985 1.511716c2.700879 2.6610055 2.931017 6.839072.705615 9.768423l-10.624395-10.463342c2.975525-2.1916675 7.217901-1.965017 9.91878.694919zm-5.373533 15.876226l-10.747064-10.58415 1.534985-1.511717 10.747064 10.584151zm-44.826115 33.562448c-.4244548-.418021-1.1105301-.418021-1.5349848 0l-.8217705.809313 2.7725261-11.46937 4.8003552-.524931-.617685 5.475961c-.0043.04063.01086.07804.01086.117602 0 .04063-.0152.07698-.01086.117602.0043.03529.0228.06414.03039.09836.01302.06201.03148.118671.05427.176403.02823.06949.06188.13257.103132.193509.03365.04917.0673.09301.108555.135776.05211.05453.108557.100493.170434.14326.04885.03314.09553.06415.149807.0898.07165.03314.146551.05238.224711.07056.04125.0096.0749.03208.117242.03742.03907.0042.07816.0064.118326.0064 0 0 .0011 0 .0011 0 0 0 .0011 0 .0011 0h .0011c0 0 .0011 0 .0011 0 .03909 0 .07924-.0022.118326-.0064l5.560061-.608325-.533011 4.727588-11.6469964 2.730497.8217705-.809314c.4233694-.416951.4233694-1.093696 0-1.511716zm13.623805-5.857632l24.292708-23.925526c.424455-.418021.424455-1.093695 0-1.511716-.424454-.41802-1.110531-.41802-1.534985 0l-24.292708 23.925526-5.181388.566626.575348-5.102844 24.294879-23.924456c.424456-.41802.424456-1.093695 0-1.511716-.424454-.418021-1.11053-.418021-1.534984 0l-24.294879 23.924457-3.4553449.378463 30.0516159-29.596064 10.747064 10.58415-30.051615 29.596064zm34.272281-30.728248l-10.747065-10.5841504 1.53607-1.5127856 10.747064 10.58415z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m53.264427 10.239364v-.02l-.31-.2950004c-.142-.135-.289-.262-.434-.394-.065-.06-.13-.119-.195-.177-.298-.269-.601-.531-.908-.787-.055-.046-.111-.092-.166-.137-.324-.266-.653-.524-.987-.776-.042-.032-.084-.063-.126-.094-.352-.262-.708-.516-1.069-.761-.029-.02-.058-.039-.087-.059-.374-.252-.753-.495-1.137-.729-.024-.015-.048-.03-.073-.044-.388-.235-.781-.461-1.179-.678-.027-.015-.053-.029-.08-.044-.394-.213-.792-.417-1.194-.612-.037-.018-.075-.036-.112-.054-.391-.188-.785-.366-1.184-.536-.055-.023-.109-.047-.164-.07-.38-.159-.763-.31-1.15-.454-.014-.005-.027-.011-.041-.016-.014-.006-.029-.011-.043-.017-.05-.019-.101-.036-.151-.054-.364-.132-.73-.255-1.099-.373-.104-.033-.208-.068-.313-.1-.345-.106-.693-.204-1.043-.297-.13-.035-.26-.072-.391-.105-.328-.083-.658-.157-.99-.229-.153-.033-.306-.069-.46-.1-.315-.063-.632-.117-.949-.17-.172-.029-.342-.061-.515-.086-.31-.046-.623-.083-.935-.119-.18-.021-.358-.046-.538-.064-.333-.033-.668-.055-1.003-.077-.161-.01-.32-.026-.481-.034-.494-.028-.992-.041-1.493-.041-.501 0-.999.013-1.496.038-.161.008-.32.024-.481.034-.335.022-.67.044-1.003.077-.181.018-.359.043-.538.064-.313.037-.625.073-.935.119-.173.026-.343.058-.515.086-.317.053-.634.107-.949.17-.154.031-.307.067-.46.1-.331.072-.662.146-.99.229-.131.033-.261.07-.391.105-.349.093-.697.191-1.043.297-.105.032-.208.066-.313.1-.369.117-.735.241-1.099.373-.05.018-.101.036-.151.054-.015.006-.029.011-.043.017-.014.005-.027.011-.041.016-.386.144-.77.295-1.15.454-.055.023-.109.047-.164.07-.398.17-.793.348-1.184.536-.037.018-.075.036-.112.054-.402.195-.8.399-1.194.612-.027.015-.054.029-.08.044-.398.217-.789999.443-1.178999.678-.024.015-.048.03-.073.044-.384.234-.763.477-1.137.729-.029.02-.058.039-.087.059-.361.245-.718.499-1.069.761-.042.031-.084.063-.126.094-.334.251-.662.51-.987.776-.056.045-.111.091-.166.137-.307.256-.609.518-.908.787-.065.059-.13.118-.195.177-.141.135-.289.262-.431.397l-.31.2950004v.02c-5.5490001 5.447-9.0000001 13.025-9.0000001 21.397 0 16.542 13.4580001 30 29.9999991 30 16.542 0 30-13.458 30-30 0-8.372-3.451-15.95-9-21.397zm-21.01 43.359l.006.008h-.016zm-7.98-11.52c2.076-2.197 4.945-3.442 7.99-3.442 3.045 0 5.914 1.245 7.99 3.442l-7.99 10.01zm17.231-1.567c-2.436-2.471-5.736-3.875-9.241-3.875-3.505 0-6.805 1.404-9.241 3.875l-9.353999-11.718 8.594999-6.877 9.014 7.212.002.097.304.148.54.399.154-.075.166.076.494-.396.326-.178v-.081l9-7.201 8.595 6.876zm-28.059999-29.591c.003-.003.006-.006.01-.008 1.653-1.5020004 3.486-2.8090004 5.461999-3.8850004.012-.006.024-.013.036-.019.377-.204.759-.4 1.146-.588.034-.016.067-.032.101-.048.35-.168.705-.328 1.064-.482v14.2660004l-7.999999 6.399v-15.462c.061-.057.12-.117.181-.173zm10.659999-6.0680004c.309-.094.621-.182.935-.266.133-.036.267-.072.401-.105.294-.074.59-.141.887-.205.153-.033.306-.068.461-.098.283-.056.568-.105.854-.153.167-.028.334-.058.502-.083.283-.042.569-.076.854-.109.17-.02.339-.043.509-.06.305-.03.613-.05.921-.07.151-.01.3-.024.452-.032.126-.006.255-.005.383-.01v22.8950004l-8-6.4v-15.0280004c.169-.058.337-.118.508-.172.11-.035.221-.07.333-.104zm9.994-1.149c.308.02.616.04.921.07.17.017.34.04.509.06.286.033.571.067.854.109.168.025.335.055.502.083.286.048.571.097.854.153.154.031.307.065.461.098.297.064.594.132.887.205.134.034.267.07.401.105.314.084.626.172.935.266.111.034.222.069.333.104.171.055.339.115.508.172v15.0280004l-8 6.4v-22.8950004c.128.004.257.003.384.01.151.007.301.022.451.032zm10.331 2.717c.387.188.769.383 1.146.588.012.006.024.013.036.019 1.976 1.076 3.809 2.383 5.462 3.8850004.003.003.006.005.01.008.06.056.119.116.18.173v15.462l-8-6.399v-14.2660004c.359.154.714.314 1.065.482.034.017.068.032.101.048zm-12.166 53.2160004c-15.438999 0-27.9999991-12.561-27.9999991-28 0-7.083 2.6479999-13.555 7.0000001-18.491v14.937.904l20.011999 25.07.005.201h.001v.011l.32.15.496.39.02-.009.007.005.154-.075.158.072.008-.006.018.008.468-.388.138-.076.195-.099v-.01-.189l20-25.055v-.904-14.937c4.352 4.936 7 11.408 7 18.491 0 15.439-12.561 28-28 28z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 4.0 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 10 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m56.732973 44.661727l-9.553-4.776c-.901-.451-1.461-1.357-1.461-2.365v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.056-.55.276-3.8239997-2.092-6.5249997-2.054-2.343-5.387-3.531-9.908-3.531-4.521 0-7.854 1.188-9.908 3.53-1.435 1.637-1.918 3.481-2.064 4.8049997-1.714-.8859997-3.734-1.3349997-6.028-1.3349997-10.389 0-10.9939997 8.8549997-10.9999997 8.9999997v4.579c-.648.706-1 1.521-1 2.33v3.454c0 1.079.483 2.085 1.3109997 2.765.825 3.11 2.854 5.46 3.644 6.285v2.743c0 .787-.428 1.509-1.171 1.915l-6.6529997 4.173c-2.548 1.39-4.131 4.057-4.131 6.959v3.797h13.9999997 2 44v-4.043c0-3.438-1.911-6.53-4.986-8.068zm-41.014 7.873v2.238h-11.9999997v-1.797c0-2.17 1.184-4.164 3.141-5.233l6.6519997-4.173c1.333-.727 2.161-2.121 2.161-3.641v-3.591l-.318-.297c-.026-.024-2.683-2.534-3.468-5.955l-.091-.396-.342-.22c-.46-.298-.735-.797-.735-1.334v-3.454c0-.36.245-.788.671-1.174l.329-.297-.002-5.38c.018-.287.539-7.058 9.002-7.058 2.393 0 4.408.553 6 1.644v4.731c-.64.729-1 1.662-1 2.625v4c0 .304.035.603.101.893.027.116.081.222.118.334.055.168.099.341.176.5.001.002.002.003.003.005.256.528.629 1 1.099 1.377.005.019.011.036.016.054.06.229.123.457.191.68l.081.261c.014.046.031.093.046.139.035.108.069.215.105.321.06.175.123.356.196.553.031.082.065.156.097.237.082.209.164.411.25.611.021.048.039.1.06.147l.056.126c.026.058.053.11.079.167.098.214.194.421.294.621.016.032.031.067.047.099.063.125.126.243.189.363.108.206.214.4.32.588.052.092.103.182.154.269.144.246.281.472.414.682.029.045.057.092.085.135.242.375.452.679.626.916.046.063.086.117.125.17.022.029.052.071.071.097v3.309c0 .968-.528 1.856-1.377 2.32l-2.646 1.443-.461-.041-.188.395-5.626 3.069c-2.9 1.584-4.701 4.618-4.701 7.922zm44 2.238h-42v-2.238c0-2.571 1.402-4.934 3.659-6.164l8.921-4.866c1.493-.815 2.42-2.378 2.42-4.077v-4.018-.001l-.194-.232-.038-.045c-.002-.003-.064-.078-.165-.21-.006-.008-.012-.016-.019-.024-.053-.069-.115-.152-.186-.251-.001-.002-.002-.003-.003-.005-.149-.207-.336-.476-.544-.8-.005-.007-.009-.015-.014-.022-.098-.153-.202-.32-.308-.497-.008-.013-.016-.026-.024-.04-.226-.379-.466-.808-.705-1.283 0 0-.001-.001-.001-.002-.127-.255-.254-.523-.378-.802l0 0c-.017-.039-.035-.077-.052-.116l0 0c-.055-.125-.11-.256-.166-.391-.02-.049-.04-.1-.06-.15-.052-.131-.105-.263-.161-.414-.102-.272-.198-.556-.29-.849l-.055-.178c-.006-.02-.013-.04-.019-.061-.094-.316-.184-.639-.26-.971l-.091-.396-.341-.22c-.58-.374-.926-1.001-.926-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228-.354l-.027-.021c-.034-.722.009-2.9349997 1.623-4.7759997 1.657-1.891 4.485-2.849 8.404-2.849 3.905 0 6.727.951 8.386 2.828 1.947 2.201 1.625 5.0169997 1.623 5.0409997l-.009 6.359.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 1.77.983 3.361 2.566 4.153l9.553 4.776c2.394 1.197 3.881 3.603 3.881 6.28z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.1328671 0 0 1.1188811 2.6280642 3.0909091)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m26 10c-.552 0-1 .447-1 1v22c0 .553.448 1 1 1 .552 0 1-.447 1-1v-22c0-.553-.448-1-1-1z"/><path d="m26 37c-.552 0-1 .447-1 1v2c0 .553.448 1 1 1 .552 0 1-.447 1-1v-2c0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 592 B

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.1328671 0 0 1.1223776 2.8098824 2.3636363)"><path d="m26 0c-14.337 0-26 11.663-26 26 0 14.337 11.663 26 26 26 14.337 0 26-11.663 26-26 0-14.337-11.663-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m26 37c-.553 0-1 .447-1 1v2c0 .553.447 1 1 1 .553 0 1-.447 1-1v-2c0-.553-.447-1-1-1z"/><path d="m26.113 9.001c-.038 0-.076-.001-.115-.001-2.116 0-4.106.815-5.615 2.304-1.536 1.515-2.383 3.538-2.383 5.696 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-1.618.635-3.136 1.787-4.272 1.153-1.137 2.688-1.765 4.299-1.727 3.161.044 5.869 2.752 5.913 5.913.029 2.084-.999 4.002-2.751 5.132-2.66 1.716-4.248 4.748-4.248 8.112v2.842c0 .553.447 1 1 1 .553 0 1-.447 1-1v-2.842c0-2.642 1.276-5.105 3.332-6.432 2.335-1.506 3.706-4.063 3.667-6.84-.06-4.287-3.598-7.825-7.886-7.885z"/></g></svg>

Before

Width:  |  Height:  |  Size: 966 B

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(.79165391 -.79068262 .7931535 .79412783 -9.1223834 31.637697)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 615 B

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m61.8052 57.173415l-17.603347-17.657024c2.922031-3.911267 4.675472-8.748212 4.675472-14.000039 0-12.914877-10.473946-23.4207611-23.349562-23.4207611-12.875615 0-23.3495624 10.5058841-23.3495624 23.4207611 0 12.914878 10.4739474 23.420762 23.3495624 23.420762 5.235861 0 10.058102-1.758788 13.957479-4.689729l17.603346 17.657024zm-57.4032315-31.657063c0-11.684729 9.4765875-21.1902125 21.1257945-21.1902125 11.649208 0 21.125795 9.5054835 21.125795 21.1902125 0 11.68473-9.476587 21.190213-21.125795 21.190213-11.649207 0-21.1257945-9.505483-21.1257945-21.190213zm37.3226075 16.832836c.197915-.191827.392495-.387.583739-.585519.162335-.168406.338013-.323429.494788-.496297l15.857689 15.906043-1.573316 1.578113-15.856576-15.907158c.172342-.157254.325782-.333467.493676-.495182z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 889 B

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(-.74110141 -.6713931 .6713931 -.74110141 34.173859 74.374836)"><path d="m34.925 20l-8.513 6.191c-.447.324-.546.95-.221 1.396.195.27.5.412.81.412.204 0 .409-.063.587-.191l12.112-8.808-12.112-8.809c-.448-.325-1.073-.227-1.396.221-.325.446-.227 1.072.221 1.396l8.512 6.192h-11.925c-7.168 0-13 5.832-13 13 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-6.065 4.935-11 11-11z"/><path d="m30 0c-16.542 0-30 13.458-30 30 0 16.542 13.458 30 30 30 16.542 0 30-13.458 30-30 0-16.542-13.458-30-30-30zm0 58c-15.439 0-28-12.561-28-28 0-15.439 12.561-28 28-28 15.439 0 28 12.561 28 28 0 15.439-12.561 28-28 28z"/><path d="m48 28c-.553 0-1 .447-1 1 0 6.065-4.935 11-11 11h-11.925l8.513-6.191c.447-.324.546-.95.221-1.396-.324-.447-.949-.546-1.396-.221l-12.113 8.808 12.112 8.809c.178.129.383.191.587.191.31 0 .614-.143.81-.412.325-.446.227-1.072-.221-1.396l-8.513-6.192h11.925c7.168 0 13-5.832 13-13 0-.553-.447-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1021 B

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.0681818 0 0 1.0649351 1.9007915 2.4316092)"><path d="m28 23c-2.757 0-5 2.243-5 5 0 2.757 2.243 5 5 5 2.757 0 5-2.243 5-5 0-2.757-2.243-5-5-5zm0 8c-1.654 0-3-1.346-3-3 0-1.654 1.346-3 3-3 1.654 0 3 1.346 3 3 0 1.654-1.346 3-3 3z"/><path d="m55 27h-3.025c-.242-5.864-2.595-11.191-6.322-15.239l2.146-2.146c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-2.146 2.146c-4.048-3.726-9.375-6.08-15.239-6.322v-3.025c0-.553-.447-1-1-1-.553 0-1 .447-1 1v3.025c-5.864.242-11.191 2.595-15.239 6.322l-2.146-2.146c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.146 2.146c-3.726 4.048-6.08 9.375-6.322 15.239h-3.025c-.553 0-1 .447-1 1 0 .553.447 1 1 1h3.025c.242 5.864 2.595 11.191 6.322 15.239l-2.146 2.146c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.146-2.146c4.048 3.726 9.375 6.08 15.239 6.322v3.025c0 .553.447 1 1 1 .553 0 1-.447 1-1v-3.025c5.864-.242 11.191-2.595 15.239-6.322l2.146 2.146c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.146-2.146c3.726-4.048 6.08-9.375 6.322-15.239h3.025c.553 0 1-.447 1-1 0-.553-.447-1-1-1zm-27 23c-12.131 0-22-9.869-22-22 0-12.131 9.869-22 22-22 12.131 0 22 9.869 22 22 0 12.131-9.869 22-22 22z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.854473 5.972791l-2.85-2.851c-1.164-1.161-3.057-1.162-4.221.001l-3.126 3.126h-48.9469997v56h55.9999997v-48.91l.305-.305 0 0 2.839-2.839c1.164-1.164 1.164-3.058 0-4.222zm-39.097 33.028l3.22 3.22-4.428 1.208zm32.015-24.553l-4.242-4.242 1.414-1.414 4.243 4.242zm-1.414 1.414l-25.456 25.456-4.242-4.242 25.456-25.456zm3.352-.523v44.91h-51.9999997v-52h44.9469997l-28.118 28.12-.188.188-2.121 7.779-1.226 1.226c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l1.226-1.226 7.779-2.123 26.351-26.35 0 0 .447-.447zm3.73-6.558l-2.839 2.839-4.243-4.243 2.839-2.839c.384-.384 1.009-.383 1.393 0l2.85 2.85c.384.383.384 1.009 0 1.393z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 765 B

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m42.735093 2.7272728h-32.414v60.0000002h47v-45.414zm.586 3.414l10.586 10.5860002h-10.586zm-31 54.5860002v-56.0000002h29v14.0000002h14v42z" fill="#666"/><path d="m16.253296 11.59168h9c .553 0 1-.447 1-1 0-.553-.447-1.0000002-1-1.0000002h-9c-.553 0-1 .4470002-1 1.0000002 0 .553.447 1 1 1z" fill="#666"/><path d="m16.795669 17.422188h5c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-5c-.553 0-1 .447-1 1 0 .553.447 1 1 1z" fill="#666"/><path d="m16.880415 22.303544h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1z" fill="#666"/><path d="m23.914313 25.320493h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1z" fill="#666"/><path d="m42.218339 52.50924c-2.139523-1.232129-4.374337-.679374-6.424679.310867.06962-.535685.138396-1.070831.208016-1.606516.164462-1.26783-1.786721-1.708984-1.95362-.430106-.156657 1.209451-.313618 2.420284-.471117 3.630273-.11022.851127.731535 1.522628 1.514625 1.058116 1.864783-1.104296 4.09072-2.404828 6.213508-1.182182 1.116128.64222 2.028014-1.138536.913267-1.780452z" fill="#666"/><path d="m46.929653 53.119562c-1.385.321-2.961 2.083-3.936.106-.569-1.154-2.295-.142-1.727 1.009.517 1.049 1.5 1.784 2.669 1.932.594.075 1.131-.009 1.688-.226.409-.159 1.937-1.308 2.267-.717.628 1.124 2.356.116 1.727-1.009-.537-.962-1.624-1.342-2.688-1.095z" fill="#666"/><path d="m30.22711 36.426713c-.233-.083-.336-.259-.377-.357-.04-.098-.093-.296.014-.52.485-1.022.282-2.199-.518-3-.801-.799-1.979-1.003-2.999-.518-.226.107-.424.054-.521.014-.099-.041-.274-.144-.357-.377-.379-1.067-1.355-1.755-2.487-1.755-1.132 0-2.108.688-2.487 1.755-.083.233-.259.336-.357.377-.097.04-.296.094-.52-.014-1.021-.483-2.198-.282-3 .518-.8.801-1.003 1.978-.518 2.999.106.225.054.423.014.521-.041.099-.144.274-.377.357-1.067.379-1.755 1.355-1.755 2.487 0 1.132.688 2.108 1.755 2.487.233.083.336.259.377.357.04.098.093.296-.014.52-.485 1.022-.282 2.199.518 3 .387.386.862.63 1.364.728v12.322l5-5 5 5v-12.323c.502-.097.978-.34 1.364-.727.8-.801 1.003-1.978.518-2.999-.106-.225-.054-.423-.014-.521.041-.099.144-.274.377-.357 1.067-.379 1.755-1.355 1.755-2.487 0-1.132-.688-2.108-1.755-2.487zm-7.245 14.073l-3 3v-7.758c.009.001.018.002.026.004.05.01.098.022.13.036.049.021.118.057.184.116.067.06.132.144.173.261.379 1.067 1.355 1.755 2.487 1.755 1.132 0 2.108-.688 2.487-1.755.041-.117.106-.201.173-.261.067-.06.135-.096.184-.116.032-.013.079-.026.129-.036.008-.001.017-.003.026-.004v7.757zm6.575-10.983c-.702.249-1.269.787-1.554 1.476-.286.689-.267 1.471.054 2.146.175.367-.029.63-.126.726-.079.081-.281.224-.561.17l-.22-.069c-.091-.041-.187-.063-.281-.092-.07-.022-.138-.052-.209-.069-.098-.022-.199-.028-.299-.039-.081-.009-.16-.026-.241-.028-.097-.002-.193.014-.289.022-.083.008-.167.006-.25.022-.177.033-.351.084-.52.154 0 0-.001 0-.002.001l0 0c-.044.018-.081.047-.124.067-.124.06-.249.119-.362.197-.135.093-.258.203-.373.319-.013.013-.03.023-.043.037-.252.265-.449.583-.574.934-.134.382-.465.423-.601.423-.136 0-.467-.041-.603-.425-.125-.352-.322-.669-.574-.934-.01-.011-.023-.018-.034-.029-.118-.12-.244-.231-.383-.327-.108-.075-.229-.131-.348-.189-.047-.023-.089-.055-.138-.075l0 0c-.001 0-.001-.001-.001-.001-.021-.009-.043-.011-.064-.019-.146-.056-.294-.103-.445-.132-.122-.024-.243-.029-.365-.036-.045-.002-.09-.013-.135-.013-.003 0-.005.001-.008.001-.374-.001-.737.072-1.047.223l-.227.071c-.287.065-.496-.083-.578-.166-.097-.096-.301-.358-.126-.727.32-.674.34-1.455.054-2.145-.285-.688-.852-1.227-1.554-1.476-.383-.134-.424-.465-.424-.601 0-.136.041-.467.425-.603.702-.249 1.269-.787 1.554-1.476.286-.689.267-1.471-.054-2.146-.175-.367.029-.63.126-.726.096-.097.357-.299.727-.126.673.32 1.455.342 2.145.054.688-.285 1.227-.852 1.476-1.554.134-.382.465-.423.601-.423.136 0 .467.041.603.425.25.702.787 1.269 1.476 1.554.688.288 1.471.267 2.146-.054.366-.177.631.029.726.126.097.096.301.358.126.727-.32.674-.34 1.455-.054 2.145.285.688.852 1.227 1.554 1.476.382.134.423.465.423.601 0 .136-.041.467-.425.603z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 4.0 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m32.082031 1.8183594c-4.521 0-7.854203 1.1872968-9.908203 3.5292968-2.368 2.7010001-2.147797 5.9773438-2.091797 6.5273438v5.318359c-.64.729-1 1.662-1 2.625v4c0 1.217.554047 2.352375 1.498047 3.109375.916 3.627 2.831953 6.359328 3.501953 7.236328v3.308594c0 .968-.527953 1.856313-1.376953 2.320313l-8.919922 4.867187c-2.901 1.583-4.7031248 4.615922-4.7031248 7.919922v3.238281c0 4.746 15.0449998 6 22.9999998 6 3.597846 0 8.63924-.262358 13.089844-.982421-.07211-.01833-.20262-.0538-.300781-.08203-.28687.0329-.432666-.02287-.476563-.142578-.05878-.02457-.130739-.07702-.09375-.06055.02844.01267.05586.02767.08398.04102-.02231-.08741.01344-.21104.07227-.349609-.02745-.34023.08486-.821471.242188-1.332032-3.293321.536151-7.521688.908203-12.617188.908203-13.588 0-21-2.643-21-4v-3.238281c0-2.571 1.403156-4.934062 3.660157-6.164062l8.919921-4.865235c1.493-.815 2.419922-2.379125 2.419922-4.078125v-4.017578l-.232422-.279297c-.024-.029-2.475156-2.993453-3.410156-7.064453l-.0918-.396484-.339844-.21875c-.579-.374-.925781-1.001735-.925781-1.677735v-4c0-.561.237922-1.083609.669922-1.474609l.330078-.296875v-6.228516l-.0078-.130859c-.003-.027-.344485-2.7994844 1.603515-5.0214844 1.657-1.89 4.485297-2.8476562 8.404297-2.8476562 3.905 0 6.727719.951125 8.386719 2.828125 1.947 2.201 1.625047 5.0170156 1.623047 5.0410156l-.0098 6.359375.330078.296875c.432.39.669922.913609.669922 1.474609v4c0 .873-.571875 1.636438-1.421875 1.898438l-.498047.154297-.160156.49414c-.669 2.081-1.621984 4.002891-2.833984 5.712891-.297.421-.584938.793125-.835938 1.078125l-.25.285156v4.125c0 1.77.983407 3.360344 2.566407 4.152344l5.613281 2.806641c.224948-.296508.424217-.488659.75-.72461-.000644.0012.0044-.003.0039-.002.0087-.01124.138071-.113991.195313-.15039.0059-.0042.0057-.0035.01172-.0078.0356-.02562-.0274.03392-.09375.08984-.0282.02937.03374-.0177-.11914.115234.36026-.214013.736911-.403369 1.082031-.640625l-.02344-.01172c-.09991.04283-.254794.114442-.347656.146485-.04258.01469.078-.04415.119141-.0625.07804-.0348.145093-.05649.21875-.08789l-6.515625-3.257812c-.901-.451-1.460938-1.357235-1.460938-2.365235v-3.380859c.229-.28.46975-.599172.71875-.951172 1.239-1.75 2.233078-3.697828 2.955078-5.798828 1.411-.647 2.326172-2.042188 2.326172-3.617188v-4c0-.963-.36-1.896-1-2.625v-5.318359c.056-.55.276203-3.8243906-2.091797-6.5253906-2.054-2.343-5.387203-3.53125-9.908203-3.53125zm12.375 58.4238286c.0082.101146.01603.200058.05078.271484.126932-.351632.336254-.787893.572266-1.251953-.27155.367024-.510255.714762-.623047.980469zm.05078.271484c-.01164.03225-.041.0809-.05078.111328 0 0 0 .002 0 .002.02256.01086.04572.02056.06836.03125.178489.04782.232763.06322.345703.0957.135944-.01559.296302-.0474.5-.105468.289337-.08248 1.166087-.296433.86914-.248047-.431583.07033-.841481.246458-1.273437.314453-.239964.03777-.382818-.04461-.458985-.201172zm10.095705-10.574219c.04208-.05082-.09085.07951-.150391.128906.0055.001.0084.000989.01367.002.04543-.03238.08988-.07429.136719-.130859z" fill="#666"/><g fill="#666" stroke="#666" stroke-width="1.15506775" transform="matrix(.44055944 0 0 .42532468 40.311636 40)"><path d="m35.31 5.042c-.532-.155-1.085.15-1.24.68-.155.53.149 1.085.68 1.24 10.156 2.97 17.25 12.443 17.25 23.038 0 13.233-10.767 24-24 24-13.233 0-24-10.767-24-24 0-10.608 7.105-20.085 17.279-23.047.53-.154.835-.709.681-1.239-.153-.53-.708-.839-1.239-.681-11.023 3.208-18.721 13.475-18.721 24.967 0 14.337 11.663 26 26 26 14.337 0 26-11.663 26-26 0-11.478-7.686-21.74-18.69-24.958z"/><path d="m28 27c .553 0 1-.447 1-1v-25c0-.553-.447-1-1-1-.553 0-1 .447-1 1v25c0 .553.447 1 1 1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m50.380548 45.434454l-9.553-4.776c-.901-.451-1.461-1.357-1.461-2.365v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.056-.55.276-3.8239997-2.092-6.5249997-2.054-2.343-5.387-3.5309997-9.908-3.5309997-4.521 0-7.854 1.1879997-9.908 3.5299997-2.368 2.701-2.148 5.9759997-2.092 6.5259997v5.319c-.64.729-1 1.662-1 2.625v4c0 1.217.553 2.352 1.497 3.109.916 3.627 2.833 6.36 3.503 7.237v3.309c0 .968-.528 1.856-1.377 2.32l-8.921 4.866c-2.901 1.583-4.7020003 4.617-4.7020003 7.921v3.238c0 4.746 15.0450003 6 23.0000003 6 7.955 0 23-1.254 23-6v-3.043c0-3.438-1.911-6.53-4.986-8.068zm2.986 11.111c0 1.357-7.412 4-21 4-13.588 0-21-2.643-21-4v-3.238c0-2.571 1.402-4.934 3.659-6.164l8.921-4.866c1.493-.815 2.42-2.378 2.42-4.077v-4.019l-.233-.278c-.024-.029-2.475-2.994-3.41-7.065l-.091-.396-.341-.22c-.579-.374-.925-1.001-.925-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228l-.009-.131c-.003-.027-.343-2.7989997 1.605-5.0209997 1.657-1.89 4.485-2.848 8.404-2.848 3.905 0 6.727.951 8.386 2.828 1.947 2.201 1.625 5.0169997 1.623 5.0409997l-.009 6.359.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 1.77.983 3.361 2.566 4.153l9.553 4.776c2.394 1.197 3.881 3.603 3.881 6.28z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="#666" stroke-miterlimit="10"><path d="m1.3961392 14.230046l12.8341148-12.8339061 13.821193 13.8209681-12.834115 12.833906z" stroke-width="1.97443902"/><path d="m12.682771 33.076298l20.249668-20.029054 29.893113 29.567436-20.249667 20.029054z" stroke-width="1.91761029"/><path d="m7.3190146 13.242745l8.8851334 8.884989" stroke-width="1.97445798"/><path d="m13.242437 7.3194191l8.885133 8.8849889" stroke-width="1.97445798"/></g></svg>

Before

Width:  |  Height:  |  Size: 540 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.0 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><ellipse cx="55.454548" cy="15.636364" fill="none" rx="7.818182" ry="12.545455"/><ellipse cx="43.454548" cy="31.454546" fill="none" rx="4.181818" ry="2.7272727"/><ellipse cx="-.61189759" cy="44.809261" fill="none" rx="25.114967" ry="29.561378" stroke="#666" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.29288507" transform="matrix(.71409211 -.70005175 .7276143 .68598647 0 0)"/><path d="m54.496594 53.729131c-9.505097 7.861065-17.2703 2.919227-22.355647-12.073254-5.085347-14.992481-1.65804-33.69835 7.696098-42.00446753 9.354138-8.30611757 15.489233-7.22846587 20.852258 7.51744703" fill="none" stroke="#666" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.47045135" transform="matrix(.98818567 .15326149 -.57515913 .81804155 -.72727271 3.0909092)"/><ellipse cx="19.567366" cy="36.303097" fill="none" rx="11.073267" ry="11.797016" stroke="#666" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.12631536" transform="matrix(.97526434 -.22104179 .43384012 .90098987 0 0)"/><ellipse cx="3.9193954" cy="44.154552" fill="none" rx="3.909091" ry="4.818182" stroke="#666" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.95500004" transform="matrix(.68444019 -.72906901 .72906901 .68444019 0 0)"/><path d="m31.00497 28.383516l-7.186788 1.434666 0 0c0 0 .459515 1.580243.09588.671152-.363637-.909091 7.090909-2.105818 7.090909-2.105818z" fill="none" stroke="#666"/><path d="m35.358666 22.86291l.277697-4.681092z" fill="none" stroke="#666"/><path d="m35.272727 31.636364l-.181818 7.090909z" fill="none" stroke="#666"/><path d="m45.302545 25.272727l-6.367153 1.206667z" fill="none" stroke="#666"/><path d="m43.090909 22.909091l-4.317456 2.383516z" fill="none" stroke="#666"/><path d="m32 28.909091l-6.727273 3.636363z" fill="none" stroke="#666"/><path d="m35.636363 16.909091l.545455-11.0909091z" fill="none" stroke="#666"/><path d="m45.540484 24.99503l11.186788-2.267757z" fill="none" stroke="#666"/><path d="m53.428244 16.631394l-9.973699 5.732242.333818 1.206667 11.477941-4.267757z" fill="none" stroke="#666"/><path d="m34.909091 38.545455c3.903971.072971 2.596609 8.767216-.363636 19.454545-2.558791-10.790489-3.540335-19.527516.363636-19.454545 3.903971.072971 2.596609 8.767216-.363636 19.454545-2.558791-10.790489-3.540335-19.527516.363636-19.454545z" fill-rule="evenodd"/></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.1 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m59.748064 3.5561939c-.241412-.1983721-.559941-.2886366-.881824-.2529506l-34.647058 4.2098951c-.556589.068223-.973471.5121986-.973471 1.0401411v6.3153685 4.420862 26.642727c-2.040823-2.303844-5.283118-3.802655-8.941176-3.802655-6.1627061 0-11.1764708 4.237184-11.1764708 9.446287 0 5.209102 5.0137647 9.446287 11.1764708 9.446287 6.162705 0 11.17647-4.237185 11.17647-9.446287 0-.243504-.02124-.48281-.04359-.721067.01453-.06822.04359-.130149.04359-.201521v-30.441184l32.411765-3.939101v19.162317c-2.040824-2.302794-5.283118-3.801605-8.941177-3.801605-6.162705 0-11.17647 4.237184-11.17647 9.446287 0 5.209102 5.013765 9.446286 11.17647 9.446286 6.106824 0 11.079236-4.162663 11.168647-9.306691 0-.01364.0078-.02519.0078-.03883v-26.10219-4.419813-6.3143181c0-.3022812-.138588-.5898681-.38-.78824zm-45.443529 55.3667871c-4.9299414 0-8.9411767-3.296754-8.9411767-7.347112 0-4.050358 4.0112353-7.347112 8.9411767-7.347112 4.929941 0 8.941176 3.296754 8.941176 7.347112 0 4.050358-4.011235 7.347112-8.941176 7.347112zm34.647058-10.495874c-4.929941 0-8.941176-3.296755-8.941176-7.347112 0-4.050358 4.011235-7.347112 8.941176-7.347112 4.929942 0 8.941177 3.296754 8.941177 7.347112 0 4.050357-4.011235 7.347112-8.941177 7.347112zm-23.470588-30.332028v-3.226431-5.3927811l32.411765-3.9380521v5.1209372 3.497226z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1 0 0 1.1782531 1.7189733 -3.2796207)"><path d="m18.195 55.5h23.609l-11.804-18.887zm3.61-2l8.195-13.113 8.195 13.113z"/><path d="m0 4.5v40h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-20v-36h56v36h-20c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22v-40z"/></g><g fill="#666" stroke="#666" stroke-width=".77746101" transform="matrix(.66083916 0 0 .62587413 14.446246 7.1588817)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m26 10c-.552 0-1 .447-1 1v22c0 .553.448 1 1 1 .552 0 1-.447 1-1v-22c0-.553-.448-1-1-1z"/><path d="m26 37c-.552 0-1 .447-1 1v2c0 .553.448 1 1 1 .552 0 1-.447 1-1v-2c0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 911 B

@ -1 +0,0 @@
<svg enable-background="new 0 0 60 60" viewBox="0 0 60 60" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g fill="#666"><path d="m38.914 0h-32.414v60h47v-45.414zm.586 3.414l10.586 10.586h-10.586zm-31 54.586v-56h29v14h14v42z"/><text x="18.559322" y="17.79661"><tspan fill="#666" x="18.559322" y="17.79661"/></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="10.677965" xml:space="preserve" y="15.000001"><tspan fill="#666" x="10.677965" y="15.000001">ru</tspan></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="10.677966" xml:space="preserve" y="27.457626"><tspan fill="#666" x="10.677966" y="27.457626">en</tspan></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="10.932204" xml:space="preserve" y="42.711864"><tspan fill="#666" x="10.932204" y="42.711864">fr</tspan></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="11.694915" xml:space="preserve" y="57.203388"><tspan fill="#666" x="11.694915" y="57.203388">de</tspan></text></g></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m49 0c-3.309 0-6 2.691-6 6 0 1.035.263 2.009.726 2.86l-9.829 9.829c-1.355-1.055-3.051-1.689-4.897-1.689-1.846 0-3.542.634-4.898 1.688l-7.669-7.669c.352-.595.567-1.279.567-2.019 0-2.206-1.794-4-4-4-2.206 0-4 1.794-4 4 0 2.206 1.794 4 4 4 .74 0 1.424-.215 2.019-.567l7.669 7.669c-1.054 1.356-1.688 3.052-1.688 4.898 0 1.846.634 3.542 1.688 4.897l-12.664 12.665c-1.066-.967-2.475-1.562-4.024-1.562-3.309 0-6 2.691-6 6 0 3.309 2.691 6 6 6 3.309 0 6-2.691 6-6 0-1.035-.263-2.009-.726-2.86l12.829-12.829c1.106.86 2.44 1.436 3.898 1.619v10.16c-2.833.478-5 2.942-5 5.91 0 3.309 2.691 6 6 6 3.309 0 6-2.691 6-6 0-2.967-2.167-5.431-5-5.91v-10.16c1.458-.183 2.792-.759 3.898-1.619l7.669 7.669c-.353.596-.568 1.28-.568 2.02 0 2.206 1.794 4 4 4 2.206 0 4-1.794 4-4 0-2.206-1.794-4-4-4-.74 0-1.424.215-2.019.567l-7.669-7.669c1.054-1.356 1.688-3.052 1.688-4.898 0-1.846-.634-3.542-1.688-4.897l9.665-9.665c1.065.967 2.474 1.562 4.023 1.562 3.309 0 6-2.691 6-6 0-3.309-2.691-6-6-6zm-38 9c0-1.103.897-2 2-2 1.103 0 2 .897 2 2 0 1.103-.897 2-2 2-1.103 0-2-.897-2-2zm-5 42c-2.206 0-4-1.794-4-4 0-2.206 1.794-4 4-4 2.206 0 4 1.794 4 4 0 2.206-1.794 4-4 4zm27-2c0 2.206-1.794 4-4 4-2.206 0-4-1.794-4-4 0-2.206 1.794-4 4-4 2.206 0 4 1.794 4 4zm-4-18c-3.309 0-6-2.691-6-6 0-3.309 2.691-6 6-6 3.309 0 6 2.691 6 6 0 3.309-2.691 6-6 6zm18 10c0 1.103-.897 2-2 2-1.103 0-2-.897-2-2 0-1.103.897-2 2-2 1.103 0 2 .897 2 2zm2-31c-2.206 0-4-1.794-4-4 0-2.206 1.794-4 4-4 2.206 0 4 1.794 4 4 0 2.206-1.794 4-4 4z" fill="#666" transform="translate(4.1826328 4.5679728)"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666"><path d="m57.829269 10.431609h-51.5659999c-2.325 0-4.217 1.892-4.217 4.217v35.566c0 2.325 1.892 4.217 4.217 4.217h51.5659999c2.325 0 4.217-1.892 4.217-4.217v-35.566c0-2.325-1.892-4.217-4.217-4.217zm2.217 39.783c0 1.223-.994 2.217-2.217 2.217h-51.5659999c-1.223 0-2.217-.994-2.217-2.217v-35.566c0-1.223.994-2.217 2.217-2.217h51.5659999c1.223 0 2.217.994 2.217 2.217z"/><path d="m9.4082691 38.677609l3.6379999-1.858v-.387c-1.628-.889-2.773-2.353-3.4119999-4.364-.969-.514-1.588-1.515-1.588-2.637v-1c0-.926.431-1.785 1.151-2.349.624-3.78 3.2619999-5.696 7.8489999-5.696.217 0 .429.008.636.024.864.071 2.129-.004 3.224-.74.409-.276.718-.544.915-.793.336-.429.901-.579 1.402-.373.502.206.797.708.734 1.247-.042.374-.105.809-.2 1.286-.193.975-.193.975.078 1.558.102.221.228.49.376.853.331.811.566 1.699.701 2.647.71.565 1.134 1.419 1.134 2.336v1c0 1.122-.619 2.123-1.588 2.637-.639 2.012-1.784 3.476-3.412 4.364v.376l3.769 1.858c1.376.75 2.231 2.19 2.231 3.758v1.325c0 .803 0 2.682-10 2.682-9.9999999 0-9.9999999-1.879-9.9999999-2.682v-1.245c0-1.631.905-3.096 2.362-3.827zm-.362 4.846c.624.38 3.1619999.908 7.9999999.908 4.838 0 7.376-.528 8-.908v-1.099c0-.835-.455-1.603-1.152-1.982l-3.857-1.901c-.602-.294-.99-.917-.99-1.588v-1.803l.604-.26c1.517-.654 2.503-1.901 3.015-3.814l.143-.533.526-.164c.418-.131.711-.52.711-.948v-1c0-.362-.207-.698-.541-.876l-.469-.25-.055-.529c-.099-.938-.308-1.803-.622-2.57-.133-.325-.246-.568-.338-.767-.339-.728-.462-1.104-.377-1.875-1.176.672-2.589.958-4.122.841-.155-.013-.314-.019-.477-.019-3.744 0-5.572 1.356-5.929 4.398l-.062.522-.465.246c-.334.178-.543.515-.543.879v1c0 .428.293.817.712.947l.526.164.143.533c.512 1.913 1.498 3.16 3.015 3.814l.604.261v1.811c0 .669-.37 1.272-.964 1.575l-3.775 1.929c-.7779999.388-1.2609999 1.17-1.2609999 2.039z"/><path d="m32.317455 31.940084h10c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-10c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m32.758133 25.973982h1c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-1c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m53.23271 37.024829h-22c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m53.23271 42.753642h-22c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.0121212 0 0 1.1996435 1.7189733 -3.921332)"><path d="m18.195 55.5h23.609l-11.804-18.887zm3.61-2l8.195-13.113 8.195 13.113z"/><path d="m0 4.5v40h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-20v-36h56v36h-20c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22v-40z"/></g><g fill="#666" stroke="#666" stroke-width=".82296567" transform="matrix(.61212121 0 0 .60303031 13.718973 5.1588819)"><path d="m59 31c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-3.028c-.059-1.59-.259-3.183-.616-4.759l2.915-.781c.533-.143.85-.691.707-1.225-.143-.534-.689-.848-1.225-.707l-2.921.783c-.467-1.508-1.077-2.991-1.837-4.432l2.62-1.513c.479-.276.643-.888.366-1.366-.277-.479-.891-.644-1.366-.366l-2.62 1.513c-.868-1.379-1.848-2.649-2.92-3.807l2.138-2.138c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-2.133 2.133c-1.186-1.097-2.466-2.067-3.813-2.913l1.514-2.622c.276-.479.112-1.09-.367-1.366-.478-.276-1.09-.114-1.366.366l-1.516 2.626c-1.421-.746-2.905-1.36-4.432-1.832l.786-2.933c.143-.533-.174-1.082-.707-1.225-.53-.141-1.082.174-1.225.707l-.786 2.933c-1.558-.354-3.15-.564-4.754-.628v-3.034c0-.553-.447-1-1-1-.553 0-1 .447-1 1v3.029c-1.59.059-3.183.259-4.759.616l-.781-2.916c-.142-.534-.689-.849-1.225-.707-.533.143-.85.691-.707 1.225l.783 2.922c-1.508.467-2.991 1.076-4.432 1.837l-1.513-2.62c-.277-.481-.89-.643-1.366-.366-.479.276-.643.888-.366 1.366l1.513 2.62c-1.379.868-2.649 1.848-3.807 2.92l-2.138-2.138c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.133 2.133c-1.097 1.186-2.067 2.466-2.913 3.813l-2.622-1.514c-.478-.278-1.09-.113-1.366.366-.276.479-.112 1.09.366 1.366l2.626 1.516c-.746 1.421-1.36 2.905-1.832 4.432l-2.932-.786c-.531-.14-1.082.174-1.225.707-.143.533.174 1.082.707 1.225l2.932.786c-.355 1.558-.565 3.15-.629 4.754h-3.033c-.553 0-1 .447-1 1 0 .553.447 1 1 1h3.028c.059 1.59.259 3.183.616 4.759l-2.915.781c-.533.143-.85.691-.707 1.225.119.447.523.741.965.741.086 0 .173-.011.26-.034l2.921-.783c.467 1.508 1.077 2.991 1.837 4.432l-2.62 1.513c-.478.276-.642.887-.365 1.366.186.321.521.5.867.5.17 0 .342-.043.499-.134l2.627-1.517c.868 1.379 1.844 2.651 2.915 3.809l-2.141 2.141c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.143-2.143c1.186 1.096 2.459 2.072 3.806 2.917l-1.517 2.627c-.276.479-.112 1.09.366 1.366.157.091.329.134.499.134.346 0 .682-.179.867-.5l1.52-2.632c1.421.746 2.903 1.359 4.43 1.832l-.788 2.939c-.143.533.174 1.082.707 1.225.087.023.174.034.26.034.441 0 .846-.294.965-.741l.788-2.941c1.558.355 3.148.567 4.752.632v3.038c0 .553.447 1 1 1 .553 0 1-.447 1-1v-3.035c1.589-.059 3.18-.264 4.756-.621l.784 2.927c.119.447.523.741.965.741.086 0 .173-.011.26-.034.533-.143.85-.691.707-1.225l-.784-2.926c1.507-.467 2.989-1.079 4.429-1.839l1.517 2.626c.186.321.521.5.867.5.17 0 .342-.043.499-.134.479-.276.643-.888.366-1.366l-1.513-2.62c1.379-.868 2.649-1.848 3.807-2.92l2.138 2.138c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.133-2.133c1.097-1.186 2.067-2.466 2.913-3.813l2.622 1.514c.157.091.329.134.499.134.346 0 .682-.179.867-.5.276-.479.112-1.09-.366-1.366l-2.626-1.516c.746-1.421 1.36-2.905 1.832-4.432l2.932.786c.087.023.174.034.26.034.441 0 .846-.294.965-.741.143-.533-.174-1.082-.707-1.225l-2.932-.786c.354-1.559.564-3.15.629-4.754zm-17 19.784c-11.17 6.448-25.421 2.866-32.262-7.931l11.296-6.522c2.111 2.991 5.498 4.665 8.986 4.665 1.864 0 3.753-.474 5.479-1.471 1.425-.823 2.586-1.925 3.476-3.19l11.284 6.516c-2.008 3.176-4.785 5.928-8.259 7.933zm-24-41.568c3.474-2.006 7.245-3.03 11-3.18v13.024c-1.54.138-3.074.593-4.499 1.415-4.96 2.864-6.84 9.032-4.482 14.133l-11.281 6.513c-5.93-11.324-1.908-25.457 9.262-31.905zm16.499 28.577c-4.298 2.48-9.812 1.002-12.292-3.294-2.48-4.297-1.003-9.811 3.294-12.292 4.295-2.482 9.811-1.004 12.292 3.294 2.48 4.297 1.003 9.811-3.294 12.292zm5.476-3.19c1.441-3.134 1.402-6.894-.449-10.102-1.853-3.208-5.09-5.121-8.525-5.441v-13.021c7.928.343 15.53 4.592 19.783 11.961 4.255 7.369 4.139 16.077.471 23.117z"/><path d="m31.553 24.205c-1.545-.415-3.164-.2-4.553.6-1.388.801-2.38 2.095-2.795 3.643-.414 1.548-.201 3.165.6 4.553.801 1.388 2.095 2.38 3.643 2.795.517.139 1.041.207 1.563.207 1.039 0 2.065-.273 2.99-.807 1.388-.801 2.38-2.095 2.795-3.643.414-1.548.201-3.165-.6-4.553-.801-1.388-2.095-2.38-3.643-2.795zm2.31 6.83c-.276 1.032-.938 1.894-1.863 2.428-.925.534-2.002.675-3.035.4-1.032-.276-1.894-.938-2.428-1.863-.534-.926-.677-2.003-.4-3.035.277-1.032.938-1.894 1.863-2.428.616-.356 1.301-.538 1.994-.538.347 0 .696.046 1.041.138 1.032.276 1.894.938 2.428 1.863.534.926.677 2.003.4 3.035z"/></g></svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

@ -1 +0,0 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666"><path d="m32.002914 9.8013468c-11.896459 0-21.574547 8.9098382-21.574547 19.8619532 0 8.309307 5.572578 15.669913 13.960001 18.576768v10.631987c0 .646098.567284 1.16835 1.269091 1.16835h1.269091v2.336701c0 .646097.567284 1.16835 1.269091 1.16835h7.614546c.701807 0 1.269091-.522253 1.269091-1.16835v-2.336701h1.269091c.701807 0 1.269091-.522252 1.269091-1.16835v-10.631987c8.387422-2.906855 13.960001-10.267461 13.960001-18.576768 0-10.952115-9.678088-19.8619532-21.574547-19.8619532zm3.807273 47.9023582c-.701807 0-1.269091.522253-1.269091 1.16835v2.336701h-5.076364v-2.336701c0-.646097-.567284-1.16835-1.269091-1.16835h-1.269091v-5.841751h10.152728v5.841751zm2.142226-11.400761c-.521597.157727-.873135.606374-.873135 1.109932v2.112378h-10.152728v-2.112378c0-.504727-.351538-.952205-.873135-1.109932-7.826484-2.369414-13.086866-9.057051-13.086866-16.639644 0-9.663424 8.539713-17.525253 19.036365-17.525253 10.496652 0 19.036365 7.861829 19.036365 17.525253 0 7.582593-5.260382 14.27023-13.086866 16.639644z"/><path d="m32.002914 15.643098c-8.397575 0-15.229092 6.289229-15.229092 14.020202 0 .646098.567284 1.16835 1.269091 1.16835.701807 0 1.269091-.522252 1.269091-1.16835 0-6.442283 5.693142-11.683502 12.69091-11.683502.701807 0 1.269091-.522252 1.269091-1.16835 0-.646098-.567284-1.16835-1.269091-1.16835z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

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

Loading…
Cancel
Save