simo 2.8.10__py3-none-any.whl → 2.8.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of simo might be problematic. Click here for more details.
- simo/automation/forms.py +1 -1
- simo/automation/serializers.py +6 -5
- simo/core/__pycache__/signal_receivers.cpython-312.pyc +0 -0
- simo/core/events.py +5 -1
- simo/core/signal_receivers.py +4 -2
- simo/core/static/admin/css/simo.css +4 -4
- simo/core/static/img/setup_bg1.jpg +0 -0
- simo/core/static/logo/favicon.png +0 -0
- simo/core/static/logo/logo_on_dark_white.png +0 -0
- simo/core/templates/admin/base.html +6 -6
- simo/fleet/__pycache__/controllers.cpython-312.pyc +0 -0
- simo/fleet/__pycache__/models.cpython-312.pyc +0 -0
- simo/fleet/__pycache__/socket_consumers.cpython-312.pyc +0 -0
- simo/fleet/controllers.py +3 -2
- simo/fleet/models.py +2 -2
- simo/fleet/socket_consumers.py +3 -14
- simo/generic/__pycache__/controllers.cpython-312.pyc +0 -0
- {simo-2.8.10.dist-info → simo-2.8.12.dist-info}/METADATA +1 -1
- {simo-2.8.10.dist-info → simo-2.8.12.dist-info}/RECORD +23 -23
- {simo-2.8.10.dist-info → simo-2.8.12.dist-info}/WHEEL +1 -1
- simo/core/static/img/setup_bg.jpg +0 -0
- simo/core/static/logo/favicon_color_bg_w.svg +0 -43
- simo/core/static/logo/logo_color_bg_b.svg +0 -79
- {simo-2.8.10.dist-info → simo-2.8.12.dist-info}/LICENSE.md +0 -0
- {simo-2.8.10.dist-info → simo-2.8.12.dist-info}/entry_points.txt +0 -0
- {simo-2.8.10.dist-info → simo-2.8.12.dist-info}/top_level.txt +0 -0
simo/automation/forms.py
CHANGED
simo/automation/serializers.py
CHANGED
|
@@ -22,7 +22,7 @@ class CategorySerializer(serializers.ModelSerializer):
|
|
|
22
22
|
class ComponentSerializer(serializers.ModelSerializer):
|
|
23
23
|
'''Component serializer for AI scripts helper'''
|
|
24
24
|
|
|
25
|
-
MAX_LENGTH =
|
|
25
|
+
MAX_LENGTH = 1000
|
|
26
26
|
|
|
27
27
|
value = serializers.SerializerMethodField()
|
|
28
28
|
meta = serializers.SerializerMethodField()
|
|
@@ -37,19 +37,20 @@ class ComponentSerializer(serializers.ModelSerializer):
|
|
|
37
37
|
|
|
38
38
|
def get_value(self, obj):
|
|
39
39
|
if obj.base_type in ('ip-camera', ):
|
|
40
|
-
return '
|
|
40
|
+
return ''
|
|
41
|
+
|
|
41
42
|
if len(str(obj.value)) > self.MAX_LENGTH:
|
|
42
|
-
return
|
|
43
|
+
return str(obj.value)[:self.MAX_LENGTH] + "...TRUNCATED!"
|
|
43
44
|
return obj.value
|
|
44
45
|
|
|
45
46
|
def get_meta(self, obj):
|
|
46
47
|
if len(str(obj.value)) > self.MAX_LENGTH:
|
|
47
|
-
return
|
|
48
|
+
return str(obj.value)[:self.MAX_LENGTH] + "...TRUNCATED!"
|
|
48
49
|
return obj.value
|
|
49
50
|
|
|
50
51
|
def get_config(self, obj):
|
|
51
52
|
if len(str(obj.value)) > self.MAX_LENGTH:
|
|
52
|
-
return
|
|
53
|
+
return str(obj.value)[:self.MAX_LENGTH] + "...TRUNCATED!"
|
|
53
54
|
return obj.value
|
|
54
55
|
|
|
55
56
|
|
|
Binary file
|
simo/core/events.py
CHANGED
|
@@ -106,6 +106,8 @@ class OnChangeMixin:
|
|
|
106
106
|
mqtt_client.subscribe(event.get_topic())
|
|
107
107
|
|
|
108
108
|
def on_mqtt_message(self, client, userdata, msg):
|
|
109
|
+
from simo.users.models import InstanceUser
|
|
110
|
+
|
|
109
111
|
payload = json.loads(msg.payload)
|
|
110
112
|
if not self._on_change_function:
|
|
111
113
|
return
|
|
@@ -138,7 +140,9 @@ class OnChangeMixin:
|
|
|
138
140
|
if no_args > 0:
|
|
139
141
|
args = [self]
|
|
140
142
|
if no_args > 1:
|
|
141
|
-
|
|
143
|
+
actor = payload.get('actor')
|
|
144
|
+
if isinstance(actor, InstanceUser):
|
|
145
|
+
args.append(actor)
|
|
142
146
|
try:
|
|
143
147
|
self._on_change_function(*args)
|
|
144
148
|
except Exception:
|
simo/core/signal_receivers.py
CHANGED
|
@@ -106,10 +106,12 @@ def create_instance_defaults(sender, instance, created, **kwargs):
|
|
|
106
106
|
# Create default User permission roles
|
|
107
107
|
|
|
108
108
|
PermissionsRole.objects.create(
|
|
109
|
-
instance=instance, name="Admin", is_owner=True, is_superuser=True
|
|
109
|
+
instance=instance, name="Admin", is_owner=True, is_superuser=True,
|
|
110
|
+
can_manage_users = True
|
|
110
111
|
)
|
|
111
112
|
PermissionsRole.objects.create(
|
|
112
|
-
instance=instance, name="Owner",
|
|
113
|
+
instance=instance, name="Owner",
|
|
114
|
+
is_owner=True, is_default=True, can_manage_users=True
|
|
113
115
|
)
|
|
114
116
|
PermissionsRole.objects.create(
|
|
115
117
|
instance=instance, name="Guest", is_owner=False
|
|
@@ -95,13 +95,13 @@ a.section:link, a.section:visited{
|
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.module h2, .module caption, .inline-group h2 {
|
|
98
|
-
background: linear-gradient(0.3turn, #
|
|
98
|
+
background: linear-gradient(0.3turn, #182f3a, #08222a);
|
|
99
99
|
border-radius: 3px 3px 0px 0px;
|
|
100
100
|
/*box-shadow: 0 8px 6px -6px #bbbbbb;*/
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
.module h2, .module caption, .inline-group h2 {
|
|
104
|
-
background: linear-gradient(0.3turn, #
|
|
104
|
+
background: linear-gradient(0.3turn, #182f3a, #08222a);
|
|
105
105
|
border-radius: 3px 3px 0px 0px;
|
|
106
106
|
/*box-shadow: 0 8px 6px -6px #bbbbbb;*/
|
|
107
107
|
}
|
|
@@ -119,8 +119,8 @@ a.section:link, a.section:visited{
|
|
|
119
119
|
background-repeat: no-repeat;
|
|
120
120
|
position: relative;
|
|
121
121
|
height: 37px;
|
|
122
|
-
width:
|
|
123
|
-
margin: 7px;
|
|
122
|
+
width: 130px;
|
|
123
|
+
margin: 7px 19px 7px 7px;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
div.admin_shortcuts > ul.shortcuts {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}
|
|
3
3
|
<html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
|
|
4
4
|
<head>
|
|
5
|
-
<title>
|
|
5
|
+
<title>{{ current_instance.name }} Admin | SIMO.io</title>
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
<style>
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
|
|
46
46
|
{% block extrastyle %}{% endblock %}
|
|
47
47
|
|
|
48
|
-
<link rel="shortcut icon" type="image/png" href="{% static 'logo/
|
|
48
|
+
<link rel="shortcut icon" type="image/png" href="{% static 'logo/favicon.png' %}"/>
|
|
49
49
|
<link rel="stylesheet" href="{% static 'third_party/fontawesome-pro/css/all.min.css' %}" rel="stylesheet">
|
|
50
50
|
|
|
51
51
|
<style>
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
background: url({% static 'img/bg_dots.png' %}) repeat scroll 0 0 #ffffff;
|
|
54
54
|
}
|
|
55
55
|
#header{
|
|
56
|
-
background: linear-gradient(0.4turn, #
|
|
57
|
-
background-image: url({% static 'img/
|
|
56
|
+
background: linear-gradient(0.4turn, #092632, #000000);
|
|
57
|
+
background-image: url({% static 'img/setup_bg1.jpg' %});
|
|
58
58
|
background-position-y: -723px;
|
|
59
59
|
}
|
|
60
60
|
</style>
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
<style>
|
|
86
86
|
#instance-select{
|
|
87
87
|
background: none;
|
|
88
|
-
color: #
|
|
88
|
+
color: #fdff90;
|
|
89
89
|
font-family: 'Russo One';
|
|
90
90
|
font-size: 1rem;
|
|
91
91
|
border: none;
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
<div id="header" style="display:flex">
|
|
103
103
|
<div style="display:flex">
|
|
104
104
|
<a href="/admin/" >
|
|
105
|
-
<div id="branding" style="background-image: url({% static 'logo/
|
|
105
|
+
<div id="branding" style="background-image: url({% static 'logo/logo_on_dark_white.png' %})"></div>
|
|
106
106
|
</a>
|
|
107
107
|
<div style="
|
|
108
108
|
color: white;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
simo/fleet/controllers.py
CHANGED
|
@@ -157,10 +157,11 @@ class DHTSensor(FleeDeviceMixin, BasicSensorMixin, BaseMultiSensor):
|
|
|
157
157
|
return new_val
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
class BME680Sensor(
|
|
160
|
+
class BME680Sensor(DHTSensor):
|
|
161
161
|
gateway_class = FleetGatewayHandler
|
|
162
162
|
config_form = BME680SensorConfigForm
|
|
163
|
-
name = "
|
|
163
|
+
name = "BME68X Climate Sensor (I2C)"
|
|
164
|
+
|
|
164
165
|
|
|
165
166
|
|
|
166
167
|
class MCP9808TempSensor(FleeDeviceMixin, BaseNumericSensor):
|
simo/fleet/models.py
CHANGED
|
@@ -276,9 +276,9 @@ def after_colonel_save(sender, instance, created, *args, **kwargs):
|
|
|
276
276
|
if instance.type == 'game-changer':
|
|
277
277
|
# occupy ports immediately
|
|
278
278
|
Interface.objects.create(colonel=instance, no=1, type='i2c')
|
|
279
|
-
Interface.objects.create(colonel=instance, no=2)
|
|
279
|
+
Interface.objects.create(colonel=instance, no=2, type='dali')
|
|
280
280
|
elif instance.type == 'game-changer-mini':
|
|
281
|
-
# only create interfaces, but do not
|
|
281
|
+
# only create interfaces, but do not occupy ports
|
|
282
282
|
Interface.objects.create(colonel=instance, no=1)
|
|
283
283
|
Interface.objects.create(colonel=instance, no=2)
|
|
284
284
|
|
simo/fleet/socket_consumers.py
CHANGED
|
@@ -195,25 +195,14 @@ class FleetConsumer(AsyncWebsocketConsumer):
|
|
|
195
195
|
self.colonel.minor_upgrade_available
|
|
196
196
|
)
|
|
197
197
|
|
|
198
|
-
await asyncio.sleep(2)
|
|
199
|
-
|
|
200
198
|
# Default pinging system sometimes get's lost somewhere,
|
|
201
199
|
# therefore we use our own to ensure connection and understand if
|
|
202
200
|
# colonel is connected or not
|
|
203
201
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
await asyncio.sleep(0.1)
|
|
207
|
-
|
|
208
|
-
while ping_start > self.last_seen:
|
|
209
|
-
if time.time() - ping_start > 3:
|
|
210
|
-
def disconnect_socket():
|
|
211
|
-
self.colonel.socket_connected = False
|
|
212
|
-
self.colonel.save(update_fields=['socket_connected'])
|
|
213
|
-
await sync_to_async(disconnect_socket, thread_sensitive=True)()
|
|
214
|
-
break
|
|
215
|
-
await asyncio.sleep(0.1)
|
|
202
|
+
if time.time() - self.last_seen > 2:
|
|
203
|
+
await self.send_data({'command': 'ping'})
|
|
216
204
|
|
|
205
|
+
await asyncio.sleep(2)
|
|
217
206
|
|
|
218
207
|
|
|
219
208
|
async def firmware_update(self, to_version):
|
|
Binary file
|
|
@@ -20,11 +20,11 @@ simo/__pycache__/wsgi.cpython-38.pyc,sha256=TpRxO7VM_ql31hbKphVdanydC5RI1nHB4l0Q
|
|
|
20
20
|
simo/automation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
simo/automation/app_widgets.py,sha256=gaqImMZjuMHm7nIb9a4D-Y3qipz_WhSPAHXcwGx4Uzs,199
|
|
22
22
|
simo/automation/controllers.py,sha256=66aGjlfgigcePXiLmDkbVrxbm-Z26klMKIiOvaMH71k,11545
|
|
23
|
-
simo/automation/forms.py,sha256=
|
|
23
|
+
simo/automation/forms.py,sha256=cHgPBn3A5XepEnvmZ_s2PGoJ-vB5udH0ifkIuqSPfL8,10194
|
|
24
24
|
simo/automation/gateways.py,sha256=8qgBDhkM_xYGmeEbnH5WXs5m3ihMp8Yzx7yj6XG8DNM,16382
|
|
25
25
|
simo/automation/helpers.py,sha256=iP-fxxB8HsFQy3k2CjFubu86aMqvWgmh-p24DiyOrek,4330
|
|
26
26
|
simo/automation/models.py,sha256=zt-jkzyq5ddqGT864OkJzCsvov2vZ0nO4ez3hAeZkXg,934
|
|
27
|
-
simo/automation/serializers.py,sha256=
|
|
27
|
+
simo/automation/serializers.py,sha256=FsMCudMRga5QdBYbNE7tG7Eg0d7kqRZg_oMfH6FgEtE,2126
|
|
28
28
|
simo/automation/state.py,sha256=aZZvNBae7unnux_zGHCIWCV2z47hVJc-DIL72Hqfkeo,600
|
|
29
29
|
simo/automation/__pycache__/__init__.cpython-312.pyc,sha256=rIs1rkBbUhjXjbUffmq2-tb7XbAY0JkA83xXPoByTwU,170
|
|
30
30
|
simo/automation/__pycache__/__init__.cpython-38.pyc,sha256=YmP0xAD-mxpQHgdTZeC64sXChA8TriMZD1jckNYi3xg,164
|
|
@@ -100,7 +100,7 @@ simo/core/base_types.py,sha256=WypW8hTfzveuTQtruGjLYAGQZIuczxTlW-SdRk3iQug,666
|
|
|
100
100
|
simo/core/context.py,sha256=LKw1I4iIRnlnzoTCuSLLqDX7crHdBnMo3hjqYvVmzFc,1557
|
|
101
101
|
simo/core/controllers.py,sha256=P4D0Tw1_t0CGM3JzRRMdyW9941xxrMsJVwikJz62ffE,37928
|
|
102
102
|
simo/core/dynamic_settings.py,sha256=bUs58XEZOCIEhg1TigR3LmYggli13KMryBZ9pC7ugAQ,1872
|
|
103
|
-
simo/core/events.py,sha256=
|
|
103
|
+
simo/core/events.py,sha256=hnv17g37kqwpfrkMUStfk_Rk_-G28MU1HEjolwWNNFg,4978
|
|
104
104
|
simo/core/filters.py,sha256=6wbn8C2WvKTTjtfMwwLBp2Fib1V0-DMpS4iqJd6jJQo,2540
|
|
105
105
|
simo/core/form_fields.py,sha256=b4wZ4n7OO0m0_BPPS9ILVrwBvhhjUB079YrroveFUWA,5222
|
|
106
106
|
simo/core/forms.py,sha256=D56T38VIdqWXHJ3fW4_jQdxX40YOR8l7ynfWSm8Q1W0,22011
|
|
@@ -112,7 +112,7 @@ simo/core/models.py,sha256=brZPs8clR49VKm_Uo1wgPgCbjkS0fTLvzz3rROBeob4,23211
|
|
|
112
112
|
simo/core/permissions.py,sha256=Ef4NO7QwwDd3Z-v61R0BeCBXxTOJz9qBvzRTIB5tHwI,2943
|
|
113
113
|
simo/core/routing.py,sha256=X1_IHxyA-_Q7hw1udDoviVP4_FSBDl8GYETTC2zWTbY,499
|
|
114
114
|
simo/core/serializers.py,sha256=adqe8oYP5f7hGFXcxa-Zmce2KOwy3hZOaWE3MaAFtpM,23157
|
|
115
|
-
simo/core/signal_receivers.py,sha256=
|
|
115
|
+
simo/core/signal_receivers.py,sha256=GijhDPB_9TLL2cCedAh5KceqnCXGCnfHpi549uqWyiY,6642
|
|
116
116
|
simo/core/socket_consumers.py,sha256=UlxV9OvTUUXaoKKYT3-qf1TyGxyOPxIpFH5cPFepH1o,9584
|
|
117
117
|
simo/core/storage.py,sha256=_5igjaoWZAiExGWFEJMElxUw55DzJG1jqFty33xe8BE,342
|
|
118
118
|
simo/core/tasks.py,sha256=-yBjOPILEnKRga-6MK-hBpEINQcY5mpwZwUWiDpqISs,17091
|
|
@@ -170,7 +170,7 @@ simo/core/__pycache__/routing.cpython-312.pyc,sha256=bDvF5HTZ8POSOHKwREyhSPO7oh9
|
|
|
170
170
|
simo/core/__pycache__/routing.cpython-38.pyc,sha256=3T3FPJ8Cn99xZCGvMyg2xjl7al-Shm9CelbSpkJtNP8,599
|
|
171
171
|
simo/core/__pycache__/serializers.cpython-312.pyc,sha256=LW6xmjKG5Ex5y8kslVd2xGy9eRqjNP2E29GxdJaAq48,32997
|
|
172
172
|
simo/core/__pycache__/serializers.cpython-38.pyc,sha256=H3K_retN44wOj-ew0cvoxUSXqrUOhHCMV_oJabNF0Xg,20431
|
|
173
|
-
simo/core/__pycache__/signal_receivers.cpython-312.pyc,sha256=
|
|
173
|
+
simo/core/__pycache__/signal_receivers.cpython-312.pyc,sha256=MW6xZvs4mbZglSmB6cEhm9T99x6ohYoh-ZIl5MBPElo,9032
|
|
174
174
|
simo/core/__pycache__/signal_receivers.cpython-38.pyc,sha256=R_h1GHkoZXR-nrwiRJWQ9xE69JB1R_mP_fNYIBX4lrE,5165
|
|
175
175
|
simo/core/__pycache__/socket_consumers.cpython-312.pyc,sha256=Yph9SQTj6c3xr2HXKnSm7r2M7dp1ks2lp8Q6v8TJ7cM,15322
|
|
176
176
|
simo/core/__pycache__/socket_consumers.cpython-38.pyc,sha256=Mr1-x-vGjBNffbz0S6AKpJCuzHJgRm8kXefv3qVVY_E,8397
|
|
@@ -417,7 +417,7 @@ simo/core/migrations/__pycache__/__init__.cpython-38.pyc,sha256=VZmDQ57BTcebuM0K
|
|
|
417
417
|
simo/core/static/ansi_styles.css,sha256=4ieJGrjZPKyPSago9FdB_gflHoGE1vxCHi8qVn5tY-Y,37352
|
|
418
418
|
simo/core/static/admin/Img/plus.svg,sha256=2NpSFPWqGIjpAQGFI7LDQHPKagEhYkJiJX95ufCoZaI,741
|
|
419
419
|
simo/core/static/admin/Img/simo_Logo.svg,sha256=incyY8KA0x84qZFnApx0WB_cUA9-HtoJfspQKAq2sqU,7232
|
|
420
|
-
simo/core/static/admin/css/simo.css,sha256=
|
|
420
|
+
simo/core/static/admin/css/simo.css,sha256=uoTrDkPuStv_CbM0tF8zeSVk0AwoI4y3sK-BbvL7eN0,7873
|
|
421
421
|
simo/core/static/admin/js/admin_scripts.js,sha256=OuIrjNnIbudw83j9mqbO4TMQq8LrvBlqNsUlHbZSRVA,5279
|
|
422
422
|
simo/core/static/admin/js/codemirror-init.js,sha256=tuZq1GBz7EFO8BgmPNzs66AT5Ct59_WwqQ9pyOUaIhU,1362
|
|
423
423
|
simo/core/static/admin/js/formsets.js,sha256=KPgFCKHVuRCnPLsHbpWtmSwA0LhjAeW_Pbji0zWyyhk,744
|
|
@@ -433,12 +433,12 @@ simo/core/static/defaults/category_headers/watering.jpg,sha256=TSS_TfjKXH01O450C
|
|
|
433
433
|
simo/core/static/fonts/RussoOne-Regular.ttf,sha256=-J_7HF9360F4YPyQMuWuDNJXQl4Q48Twn7ygXm6DK6g,37292
|
|
434
434
|
simo/core/static/img/bg_dots.png,sha256=iPog1ZyslM5QA3bf8yKqLb4XPoiWzGyA7n-7XI1TSDQ,955
|
|
435
435
|
simo/core/static/img/no_avatar.png,sha256=A-wwIyAcyo1JDi816IMo7URVApM9f9sqwvjArrA69hY,58355
|
|
436
|
-
simo/core/static/img/
|
|
436
|
+
simo/core/static/img/setup_bg1.jpg,sha256=cNzm-JxNv977JXPhg6CdrhtYR2PqQwihbypH5gn3mtk,228199
|
|
437
437
|
simo/core/static/img/icons/clock-regular.svg,sha256=HYCFuWofhfdABi58_SGSHVOukX6LeMmNRp9VR-VtgLM,543
|
|
438
438
|
simo/core/static/img/icons/go_premium.png,sha256=gvkQCiU67cL32RmSC42cpuX8QRn6Eh6pfNx7H4KWkbc,4869
|
|
439
439
|
simo/core/static/img/icons/home-solid.svg,sha256=DhGJU1NT0w9xfA0vN2-543m56DgHEs1jV3TklqX_uIc,702
|
|
440
|
-
simo/core/static/logo/
|
|
441
|
-
simo/core/static/logo/
|
|
440
|
+
simo/core/static/logo/favicon.png,sha256=sSqEfBpKcp8C_A0LQyPHE9s1J3wuTMCi5DHAMSPa1hM,14772
|
|
441
|
+
simo/core/static/logo/logo_on_dark_white.png,sha256=5KJr_iifpB3Gx5_jNUS8HK-bM0pFL9TcwvwfcJZe6bc,23267
|
|
442
442
|
simo/core/static/scripts/OLMapWidget.js,sha256=MxTkvtZiu0Ea55FniH-0WyqoySKdrBNkZdmj8DFoeWY,8930
|
|
443
443
|
simo/core/static/scripts/hub_location.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
444
444
|
simo/core/static/third_party/codemirror/.editorconfig,sha256=Ge_tMOkxLcpqN84f0lGkskjjDRoHsBzme5Fza_ZXjY4,87
|
|
@@ -10305,7 +10305,7 @@ simo/core/static/third_party/precision-inputs/precision-inputs.base.js,sha256=wX
|
|
|
10305
10305
|
simo/core/static/third_party/precision-inputs/precision-inputs.fl-controls.css,sha256=-omqoTtSpmJI6x5v_R4Ebx0-jHEEsu_UwoRIwuT3IAo,2528
|
|
10306
10306
|
simo/core/static/third_party/precision-inputs/precision-inputs.fl-controls.js,sha256=5pN6LFtAT3s7Dc3kyS-qmfXvxfQwWiA2TPAZzSkSbAU,43471
|
|
10307
10307
|
simo/core/templates/admin/action_intermediate_form.html,sha256=rOWF3UDv-SQZUfOzp9NUULja1I-FAp5hMzt-Oyqi_wA,2043
|
|
10308
|
-
simo/core/templates/admin/base.html,sha256=
|
|
10308
|
+
simo/core/templates/admin/base.html,sha256=ixVH3ng29npof3z4HH5kCYzSw8ln6Tq-52NNfdmp7OI,6228
|
|
10309
10309
|
simo/core/templates/admin/clearable_easy_thumbnails_widget.html,sha256=Gh0z_KIEt3QC53HKJ_3QiPt9nIFCvwAx1gCny-dPHOM,704
|
|
10310
10310
|
simo/core/templates/admin/component_change_list.html,sha256=N3seVjTkIRXIXKGsleB7oWUnPlMRXDIqOPqfEyq4PNE,3320
|
|
10311
10311
|
simo/core/templates/admin/component_history.html,sha256=7vkWSDu5xugkrb79IffJ-CZts9h2EMZr9Gi4tqHBc0I,579
|
|
@@ -10410,14 +10410,14 @@ simo/fleet/apps.py,sha256=je8mRXMcRq4lABQZlyF2G2hOCkBUicR9I2jvrLDA8eI,238
|
|
|
10410
10410
|
simo/fleet/auto_urls.py,sha256=vrfrooPyY4pDuQjya-eLxCgZldfhwbEeEiXa7diO_CY,847
|
|
10411
10411
|
simo/fleet/base_types.py,sha256=wL9RVkHr0gA7HI1wZq0pruGEIgvQqpfnCL4cC3ywsvw,102
|
|
10412
10412
|
simo/fleet/ble.py,sha256=eHA_9ABjbmH1vUVCv9hiPXQL2GZZSEVwfO0xyI1S0nI,1081
|
|
10413
|
-
simo/fleet/controllers.py,sha256=
|
|
10413
|
+
simo/fleet/controllers.py,sha256=mVK9s9f2g10WE598upv5pt6Ry9ieSUUZzMk7m7M5Tfk,28880
|
|
10414
10414
|
simo/fleet/forms.py,sha256=VcqATlX-omZruUgUC2fJpeLNUGSR-szmf36_M3aa5dg,66850
|
|
10415
10415
|
simo/fleet/gateways.py,sha256=C7dyapWDlJ5erYPNLkSoH50I8kj0lIXicSno0_CrdXc,5783
|
|
10416
10416
|
simo/fleet/managers.py,sha256=ZNeHFSkF5kzsl9E1DCBevOW6kXJlD6kw0LU4B-JMOG8,828
|
|
10417
|
-
simo/fleet/models.py,sha256=
|
|
10417
|
+
simo/fleet/models.py,sha256=F4RjcI7PZFKOI4U2JqC2L8xwLsn5LeMTb-7EXmrN6B4,17908
|
|
10418
10418
|
simo/fleet/routing.py,sha256=cofGsVWXMfPDwsJ6HM88xxtRxHwERhJ48Xyxc8mxg5o,149
|
|
10419
10419
|
simo/fleet/serializers.py,sha256=PQnjp7LaEpMts-om2OPV5XOU9ut6KFWiePPDCXK0M98,2679
|
|
10420
|
-
simo/fleet/socket_consumers.py,sha256=
|
|
10420
|
+
simo/fleet/socket_consumers.py,sha256=938ZF1gCaGLV9X1rzlG4xScZ61zxmxVXxmKI3B_YisI,19175
|
|
10421
10421
|
simo/fleet/tasks.py,sha256=VSY0cMFIs7Ocjz0_HwRLp-yaDdBl1T8U9T-7b8Ggegc,1308
|
|
10422
10422
|
simo/fleet/utils.py,sha256=wNJvURzLP3-aho3D3rfg07N9kWCaMIw5gOsmeeO9Nlg,4740
|
|
10423
10423
|
simo/fleet/views.py,sha256=3F8im6BsSOaK3KEuBNESE4sDbS_dWHYaOdhTR4cCLjE,5189
|
|
@@ -10433,7 +10433,7 @@ simo/fleet/__pycache__/auto_urls.cpython-38.pyc,sha256=jHsvfwAumiBusr91QK1-qC-nm
|
|
|
10433
10433
|
simo/fleet/__pycache__/base_types.cpython-312.pyc,sha256=cq-Pnje7FoMP608U_L_gsCfY_JMY23z87Uao-AxjNBw,304
|
|
10434
10434
|
simo/fleet/__pycache__/base_types.cpython-38.pyc,sha256=deyPwjpT6xZiFxBGFnj5b7R-lbdOTh2krgpJhrcGVhc,274
|
|
10435
10435
|
simo/fleet/__pycache__/ble.cpython-38.pyc,sha256=Nrof9w7cm4OlpFWHeVnmvvanh2_oF9oQ3TknJiV93-0,1267
|
|
10436
|
-
simo/fleet/__pycache__/controllers.cpython-312.pyc,sha256=
|
|
10436
|
+
simo/fleet/__pycache__/controllers.cpython-312.pyc,sha256=oW0lI3sOHCkn2CJP6XNANbjM-ul3KkYUHUKz3Goarh4,40890
|
|
10437
10437
|
simo/fleet/__pycache__/controllers.cpython-38.pyc,sha256=vH7mK1K4JBcLU9eKtqTJwbgB0SFMJ-s7WvO0qOsWjrg,24739
|
|
10438
10438
|
simo/fleet/__pycache__/forms.cpython-312.pyc,sha256=KbsLDmgAzaMuQcP0WDnJ95RAA_6_IXF3lCd8FmdGvJk,81392
|
|
10439
10439
|
simo/fleet/__pycache__/forms.cpython-38.pyc,sha256=hrNfyGm2NfoNG1II-OqeHzR2TkkAWp3igvHGs6X0iIM,45252
|
|
@@ -10441,13 +10441,13 @@ simo/fleet/__pycache__/gateways.cpython-312.pyc,sha256=ZZGBAH2w9YmFvSrajZY8fUXd_
|
|
|
10441
10441
|
simo/fleet/__pycache__/gateways.cpython-38.pyc,sha256=MIpXuGWitGNdsxJ99fWvMXJ6sVE96ac7iR4K4aM4Sds,5148
|
|
10442
10442
|
simo/fleet/__pycache__/managers.cpython-312.pyc,sha256=sgcaERbhjilkFDCPqc8YZwSiEfRkXpufe0qDPqgLOiU,1733
|
|
10443
10443
|
simo/fleet/__pycache__/managers.cpython-38.pyc,sha256=Vmm23zoQnS3-uS5_WJt2n3wtjhLiEhLWaYxXJCU6Gts,1339
|
|
10444
|
-
simo/fleet/__pycache__/models.cpython-312.pyc,sha256=
|
|
10444
|
+
simo/fleet/__pycache__/models.cpython-312.pyc,sha256=D6GVp2u1P3uibMHM0GNnB6J-u8VPfAsSRrRLwsBlgHE,25409
|
|
10445
10445
|
simo/fleet/__pycache__/models.cpython-38.pyc,sha256=AXk1Q_nnHDXirHYgM3EW5pLsrR2CaPWk4EuvGCuDUpI,14131
|
|
10446
10446
|
simo/fleet/__pycache__/routing.cpython-312.pyc,sha256=vafYpGAtYc2NYxBQObMX6eIZfVZflOYgzjYv0SL1jAQ,385
|
|
10447
10447
|
simo/fleet/__pycache__/routing.cpython-38.pyc,sha256=aPrCmxFKVyB8R8ZbJDwdPdFfvT7CvobovvZeq_mqRgY,314
|
|
10448
10448
|
simo/fleet/__pycache__/serializers.cpython-312.pyc,sha256=reKKBMohl7vi7iJ6wjRbOBoFn7J9ny8EE9wv5spBHYM,4912
|
|
10449
10449
|
simo/fleet/__pycache__/serializers.cpython-38.pyc,sha256=l_FzORWCM1hcSZV0AaGRO-p0CMTcEfqnLGgbn2IVvI0,3648
|
|
10450
|
-
simo/fleet/__pycache__/socket_consumers.cpython-312.pyc,sha256=
|
|
10450
|
+
simo/fleet/__pycache__/socket_consumers.cpython-312.pyc,sha256=NEvG83s9FZkwaxwyFWFdRWq8_PufKtXuhB3kGgyeCgg,27752
|
|
10451
10451
|
simo/fleet/__pycache__/socket_consumers.cpython-38.pyc,sha256=lEC1SkY_KgRY0QoBUMPjnbFwSa7qmCf-4eNQ45hAy68,14141
|
|
10452
10452
|
simo/fleet/__pycache__/tasks.cpython-312.pyc,sha256=1XDir2GWxl7c17n0ZuCxOFKsLjaCqXgqVT4TcDvzhm8,1817
|
|
10453
10453
|
simo/fleet/__pycache__/tasks.cpython-38.pyc,sha256=RoNxL2WUiW67s9O9DjaYVVjCBSZu2nje0Qn9FJkWVS0,1116
|
|
@@ -10609,7 +10609,7 @@ simo/generic/__pycache__/app_widgets.cpython-312.pyc,sha256=ywoKk91YSEZxpyt9haG5
|
|
|
10609
10609
|
simo/generic/__pycache__/app_widgets.cpython-38.pyc,sha256=D9b13pbMlirgHmjDnQhfLIDGSVINoSouHb4SWOeCRrs,1642
|
|
10610
10610
|
simo/generic/__pycache__/base_types.cpython-312.pyc,sha256=h8Mwu49i-zmwTbL33JaLJfRDGOgkQh2_VqrfzEc4UQ4,616
|
|
10611
10611
|
simo/generic/__pycache__/base_types.cpython-38.pyc,sha256=aV5NdIuvXR-ItKpI__MwcyPZHD6Z882TFdgYkPCkr1I,493
|
|
10612
|
-
simo/generic/__pycache__/controllers.cpython-312.pyc,sha256=
|
|
10612
|
+
simo/generic/__pycache__/controllers.cpython-312.pyc,sha256=kv-Or8jMLuUAlqiRlLrCJkrsw3eDBeLZ1NqlGu_IMj8,52737
|
|
10613
10613
|
simo/generic/__pycache__/controllers.cpython-38.pyc,sha256=jJjwKVaDYyazrRGNjUFoY74nr_jX_DEnsC9KjyxZCgc,30427
|
|
10614
10614
|
simo/generic/__pycache__/forms.cpython-312.pyc,sha256=nTyrgmEmOrgORJSOxUI_i2O7wVUXCQL9MYhaT76Jmew,34869
|
|
10615
10615
|
simo/generic/__pycache__/forms.cpython-38.pyc,sha256=k8lz3taXdWAg5P9jcnw66mWH51pCc4SOsg32kVEtBCg,19416
|
|
@@ -10933,9 +10933,9 @@ simo/users/templates/invitations/expired_msg.html,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
10933
10933
|
simo/users/templates/invitations/expired_suggestion.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10934
10934
|
simo/users/templates/invitations/taken_msg.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10935
10935
|
simo/users/templates/invitations/taken_suggestion.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10936
|
-
simo-2.8.
|
|
10937
|
-
simo-2.8.
|
|
10938
|
-
simo-2.8.
|
|
10939
|
-
simo-2.8.
|
|
10940
|
-
simo-2.8.
|
|
10941
|
-
simo-2.8.
|
|
10936
|
+
simo-2.8.12.dist-info/LICENSE.md,sha256=M7wm1EmMGDtwPRdg7kW4d00h1uAXjKOT3HFScYQMeiE,34916
|
|
10937
|
+
simo-2.8.12.dist-info/METADATA,sha256=gZEycrP5hdQiX7kGXiYdJfzzu5UU6AXlCIIGcNZTh0g,2006
|
|
10938
|
+
simo-2.8.12.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
10939
|
+
simo-2.8.12.dist-info/entry_points.txt,sha256=S9PwnUYmTSW7681GKDCxUbL0leRJIaRk6fDQIKgbZBA,135
|
|
10940
|
+
simo-2.8.12.dist-info/top_level.txt,sha256=GmS1hrAbpVqn9OWZh6UX82eIOdRLgYA82RG9fe8v4Rs,5
|
|
10941
|
+
simo-2.8.12.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
|
|
5
|
-
<style type="text/css">
|
|
6
|
-
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
|
|
7
|
-
</style>
|
|
8
|
-
<g>
|
|
9
|
-
<g>
|
|
10
|
-
<radialGradient id="SVGID_1_" cx="32" cy="32" r="31.7587" gradientUnits="userSpaceOnUse">
|
|
11
|
-
<stop offset="0.1564" style="stop-color:#00BAD9"/>
|
|
12
|
-
<stop offset="0.8575" style="stop-color:#007BC2"/>
|
|
13
|
-
</radialGradient>
|
|
14
|
-
<path class="st0" d="M30.4,38.7v7.64c0,1.1-0.86,2.01-2.01,2.23v5.31l0,0c0,0.31-0.24,0.56-0.53,0.56c-0.29,0-0.53-0.25-0.53-0.56
|
|
15
|
-
v-5.31c-1.15-0.22-2.01-1.13-2.01-2.23V38.7c0-1.26,1.13-2.28,2.54-2.28C29.26,36.42,30.4,37.44,30.4,38.7L30.4,38.7z M3.64,13.01
|
|
16
|
-
L3.64,13.01v5.13c1.1,0.25,1.92,1.14,1.92,2.21v11.83c0,1.07-0.82,1.97-1.92,2.21v4.51l0,0c0,0.31-0.24,0.56-0.53,0.56
|
|
17
|
-
c-0.29,0-0.53-0.25-0.53-0.56v-4.47c-1.19-0.19-2.1-1.12-2.1-2.25V20.36c0-1.13,0.91-2.06,2.1-2.25v-5.1
|
|
18
|
-
c0-0.31,0.24-0.56,0.53-0.56C3.4,12.46,3.64,12.7,3.64,13.01L3.64,13.01z M60.98,14.64c-0.29,0-0.53,0.25-0.53,0.56v5.02
|
|
19
|
-
c-1.15,0.22-2.01,1.13-2.01,2.23v15.45c0,1.1,0.86,2.01,2.01,2.23v4.83c0,0.31,0.24,0.56,0.53,0.56c0.29,0,0.53-0.25,0.53-0.56
|
|
20
|
-
l0,0v-4.83c1.15-0.22,2.01-1.13,2.01-2.23V22.44c0-1.1-0.86-2.01-2.01-2.23v-5.02l0,0C61.51,14.89,61.27,14.64,60.98,14.64
|
|
21
|
-
L60.98,14.64z M52.7,7.42c-0.29,0-0.53,0.25-0.53,0.55v5.4c-1.15,0.22-2.01,1.13-2.01,2.23v6.53c0,1.26,1.14,2.28,2.54,2.28
|
|
22
|
-
c1.4,0,2.54-1.02,2.54-2.28v-6.53c0-1.1-0.86-2.01-2.01-2.23v-5.4l0,0C53.23,7.67,52.99,7.42,52.7,7.42L52.7,7.42z M44.42,2.1
|
|
23
|
-
c-0.29,0-0.53,0.25-0.53,0.56v5.65c-1.15,0.22-2.01,1.13-2.01,2.23v16.1c0,1.26,1.13,2.28,2.53,2.28c1.4,0,2.54-1.02,2.54-2.28
|
|
24
|
-
v-16.1c0-1.1-0.86-2.01-2.01-2.23V2.66h0C44.95,2.35,44.71,2.1,44.42,2.1L44.42,2.1z M36.14,0c-0.29,0-0.53,0.25-0.53,0.56V5.9
|
|
25
|
-
c-1.15,0.22-2.01,1.13-2.01,2.23v28.41c0,1.26,1.14,2.28,2.54,2.28s2.54-1.02,2.54-2.28V8.13c0-1.1-0.86-2.01-2.01-2.23V0.56l0,0
|
|
26
|
-
C36.67,0.25,36.43,0,36.14,0L36.14,0z M27.86,0.37c-0.29,0-0.53,0.25-0.53,0.56v5.78c-1.15,0.22-2.01,1.13-2.01,2.23v21.96
|
|
27
|
-
c0,1.26,1.13,2.28,2.54,2.28c1.4,0,2.54-1.02,2.54-2.28V8.94c0-1.1-0.86-2.01-2.01-2.23V0.92l0,0
|
|
28
|
-
C28.39,0.62,28.15,0.37,27.86,0.37L27.86,0.37z M19.58,2.63c-0.29,0-0.53,0.25-0.53,0.56v5.66c-1.15,0.22-2.01,1.13-2.01,2.23
|
|
29
|
-
v17.57c0,1.26,1.14,2.28,2.54,2.28c1.4,0,2.54-1.02,2.54-2.28V11.08c0-1.1-0.86-2.01-2.01-2.23V3.19l0,0
|
|
30
|
-
C20.11,2.88,19.87,2.63,19.58,2.63L19.58,2.63z M11.3,6.44c-0.29,0-0.53,0.25-0.53,0.55v5.44c-1.15,0.22-2.01,1.13-2.01,2.23v9.38
|
|
31
|
-
c0,1.26,1.14,2.28,2.54,2.28c1.4,0,2.54-1.02,2.54-2.28v-9.38c0-1.1-0.86-2.01-2.01-2.23V7l0,0C11.83,6.69,11.59,6.44,11.3,6.44
|
|
32
|
-
L11.3,6.44z M52.17,52.89c0,0.31,0.24,0.55,0.53,0.55c0.29,0,0.53-0.25,0.53-0.55l0,0v-5.26c1.15-0.22,2.01-1.13,2.01-2.23V29.94
|
|
33
|
-
c0-1.26-1.14-2.28-2.54-2.28c-1.4,0-2.54,1.02-2.54,2.28V45.4c0,1.1,0.86,2.01,2.01,2.23V52.89L52.17,52.89z M43.89,63.44
|
|
34
|
-
c0,0.31,0.24,0.56,0.53,0.56c0.29,0,0.53-0.25,0.53-0.56h0v-5.83c1.15-0.22,2.01-1.13,2.01-2.23V34.88c0-1.26-1.14-2.28-2.54-2.28
|
|
35
|
-
c-1.4,0-2.53,1.02-2.53,2.28v20.51c0,1.1,0.86,2.01,2.01,2.23V63.44L43.89,63.44z M35.61,59.59c0,0.31,0.24,0.56,0.53,0.56
|
|
36
|
-
c0.29,0,0.53-0.25,0.53-0.56l0,0v-5.62c1.15-0.22,2.01-1.13,2.01-2.23v-7.39c0-1.26-1.13-2.28-2.54-2.28s-2.54,1.02-2.54,2.28
|
|
37
|
-
v7.39c0,1.1,0.86,2.01,2.01,2.23V59.59L35.61,59.59z M19.05,51.27c0,0.31,0.24,0.56,0.53,0.56c0.29,0,0.53-0.25,0.53-0.56h0V46.1
|
|
38
|
-
c1.15-0.22,2.01-1.13,2.01-2.23v-7.41c0-1.26-1.13-2.28-2.54-2.28c-1.4,0-2.54,1.02-2.54,2.28v7.41c0,1.1,0.86,2.01,2.01,2.23
|
|
39
|
-
V51.27L19.05,51.27z M10.77,46.7c0,0.31,0.24,0.55,0.53,0.55c0.29,0,0.53-0.25,0.53-0.55l0,0v-5.28c1.15-0.22,2.01-1.13,2.01-2.23
|
|
40
|
-
v-7.33c0-1.26-1.14-2.28-2.54-2.28c-1.4,0-2.54,1.02-2.54,2.28v7.33c0,1.1,0.86,2.01,2.01,2.23V46.7L10.77,46.7z"/>
|
|
41
|
-
</g>
|
|
42
|
-
</g>
|
|
43
|
-
</svg>
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 800 248.9" style="enable-background:new 0 0 800 248.9;" xml:space="preserve">
|
|
5
|
-
<style type="text/css">
|
|
6
|
-
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
|
|
7
|
-
.st1{fill:#FFFFFF;}
|
|
8
|
-
</style>
|
|
9
|
-
<g>
|
|
10
|
-
<g>
|
|
11
|
-
<radialGradient id="SVGID_1_" cx="122.588" cy="124.4726" r="123.5339" gradientUnits="userSpaceOnUse">
|
|
12
|
-
<stop offset="0.1564" style="stop-color:#2EE2FF"/>
|
|
13
|
-
<stop offset="0.8575" style="stop-color:#0C94E1"/>
|
|
14
|
-
</radialGradient>
|
|
15
|
-
<path class="st0" d="M116.3,150.5v29.7c0,4.3-3.4,7.8-7.8,8.7v20.7l0,0c0,1.2-0.9,2.2-2,2.2c-1.1,0-2-1-2-2.2v-20.7
|
|
16
|
-
c-4.5-0.8-7.8-4.4-7.8-8.7v-29.7c0-4.9,4.4-8.9,9.9-8.9C111.9,141.7,116.3,145.6,116.3,150.5L116.3,150.5z M12.3,50.6L12.3,50.6
|
|
17
|
-
v20c4.3,1,7.5,4.5,7.5,8.6v46c0,4.2-3.2,7.6-7.5,8.6v17.5l0,0c0,1.2-0.9,2.2-2,2.2c-1.1,0-2-1-2-2.2v-17.4
|
|
18
|
-
c-4.6-0.7-8.2-4.4-8.2-8.7v-46c0-4.4,3.5-8,8.2-8.7V50.6c0-1.2,0.9-2.2,2-2.2C11.3,48.4,12.3,49.4,12.3,50.6L12.3,50.6z
|
|
19
|
-
M235.3,56.9c-1.1,0-2,1-2,2.2v19.5c-4.5,0.8-7.8,4.4-7.8,8.7v60.1c0,4.3,3.4,7.8,7.8,8.7v18.8c0,1.2,0.9,2.2,2,2.2
|
|
20
|
-
c1.1,0,2-1,2-2.2l0,0v-18.8c4.5-0.8,7.8-4.4,7.8-8.7V87.3c0-4.3-3.4-7.8-7.8-8.7V59.1l0,0C237.4,57.9,236.4,56.9,235.3,56.9
|
|
21
|
-
L235.3,56.9z M203.1,28.9c-1.1,0-2,1-2,2.2v21c-4.5,0.8-7.8,4.4-7.8,8.7v25.4c0,4.9,4.4,8.9,9.9,8.9c5.4,0,9.9-4,9.9-8.9V60.7
|
|
22
|
-
c0-4.3-3.4-7.8-7.8-8.7V31l0,0C205.1,29.8,204.2,28.9,203.1,28.9L203.1,28.9z M170.9,8.2c-1.1,0-2,1-2,2.2v22
|
|
23
|
-
c-4.5,0.8-7.8,4.4-7.8,8.7v62.6c0,4.9,4.4,8.9,9.9,8.9c5.4,0,9.9-4,9.9-8.9V41c0-4.3-3.4-7.8-7.8-8.7v-22h0
|
|
24
|
-
C172.9,9.2,172,8.2,170.9,8.2L170.9,8.2z M138.7,0c-1.1,0-2,1-2,2.2v20.8c-4.5,0.8-7.8,4.4-7.8,8.7v110.5c0,4.9,4.4,8.9,9.9,8.9
|
|
25
|
-
c5.4,0,9.9-4,9.9-8.9V31.6c0-4.3-3.4-7.8-7.8-8.7V2.2l0,0C140.7,1,139.8,0,138.7,0L138.7,0z M106.5,1.4c-1.1,0-2,1-2,2.2v22.5
|
|
26
|
-
c-4.5,0.8-7.8,4.4-7.8,8.7v85.4c0,4.9,4.4,8.9,9.9,8.9c5.4,0,9.9-4,9.9-8.9V34.8c0-4.3-3.4-7.8-7.8-8.7V3.6l0,0
|
|
27
|
-
C108.5,2.4,107.6,1.4,106.5,1.4L106.5,1.4z M74.3,10.2c-1.1,0-2,1-2,2.2v22c-4.5,0.8-7.8,4.4-7.8,8.7v68.4c0,4.9,4.4,8.9,9.9,8.9
|
|
28
|
-
c5.4,0,9.9-4,9.9-8.9V43.1c0-4.3-3.4-7.8-7.8-8.7v-22l0,0C76.3,11.2,75.4,10.2,74.3,10.2L74.3,10.2z M42.1,25.1c-1.1,0-2,1-2,2.2
|
|
29
|
-
v21.1c-4.5,0.8-7.8,4.4-7.8,8.7v36.5c0,4.9,4.4,8.9,9.9,8.9c5.4,0,9.9-4,9.9-8.9V57.1c0-4.3-3.4-7.8-7.8-8.7V27.2l0,0
|
|
30
|
-
C44.1,26,43.2,25.1,42.1,25.1L42.1,25.1z M201.1,205.7c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2l0,0v-20.5c4.5-0.8,7.8-4.4,7.8-8.7
|
|
31
|
-
v-60.1c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v60.1c0,4.3,3.4,7.8,7.8,8.7V205.7L201.1,205.7z M168.9,246.8
|
|
32
|
-
c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2h0v-22.7c4.5-0.8,7.8-4.4,7.8-8.7v-79.8c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v79.8
|
|
33
|
-
c0,4.3,3.4,7.8,7.8,8.7V246.8L168.9,246.8z M136.6,231.8c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2l0,0v-21.9c4.5-0.8,7.8-4.4,7.8-8.7
|
|
34
|
-
v-28.7c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v28.7c0,4.3,3.4,7.8,7.8,8.7V231.8L136.6,231.8z M72.2,199.4
|
|
35
|
-
c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2h0v-20.1c4.5-0.8,7.8-4.4,7.8-8.7v-28.8c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v28.8
|
|
36
|
-
c0,4.3,3.4,7.8,7.8,8.7V199.4L72.2,199.4z M40,181.7c0,1.2,0.9,2.2,2,2.2c1.1,0,2-1,2-2.2l0,0v-20.5c4.5-0.8,7.8-4.4,7.8-8.7
|
|
37
|
-
v-28.5c0-4.9-4.4-8.9-9.9-8.9c-5.4,0-9.9,4-9.9,8.9v28.5c0,4.3,3.4,7.8,7.8,8.7V181.7L40,181.7z"/>
|
|
38
|
-
</g>
|
|
39
|
-
<g>
|
|
40
|
-
<path class="st1" d="M368.4,109.9h-40.3c-3.7,0-5.6-2-5.6-6v-3.7c0-1.9,0.4-3.3,1.3-4.4c0.9-1.1,2.3-1.6,4.4-1.6H382
|
|
41
|
-
c1.6,0,2.4-0.8,2.4-2.4V81.7c0-1.6-0.8-2.4-2.4-2.4h-56.9c-6.5,0-11.3,1.6-14.4,4.8c-3.1,3.2-4.6,7.4-4.6,12.7v7.8
|
|
42
|
-
c0,5.9,1.6,10.5,4.7,13.7c3.2,3.2,7.8,4.8,14.1,4.8h40.3c3.7,0,5.6,2,5.6,6v4.4c0,1.9-0.4,3.3-1.3,4.4c-0.9,1.1-2.3,1.6-4.4,1.6
|
|
43
|
-
h-56.4c-1.6,0-2.5,0.8-2.5,2.4v10.2c0,1.6,0.8,2.4,2.5,2.4h59.5c6.5,0,11.3-1.6,14.4-4.8c3.1-3.2,4.6-7.4,4.6-12.7v-8.6
|
|
44
|
-
c0-5.9-1.6-10.5-4.7-13.7C379.3,111.5,374.6,109.9,368.4,109.9z"/>
|
|
45
|
-
<path class="st1" d="M413.5,79.3h-11.6c-1.6,0-2.5,0.8-2.5,2.4v70.5c0,1.6,0.8,2.4,2.5,2.4h11.6c1.6,0,2.4-0.8,2.4-2.4V81.7
|
|
46
|
-
C415.9,80.1,415.1,79.3,413.5,79.3z"/>
|
|
47
|
-
<path class="st1" d="M534.8,79.3h-11.5c-1.6,0-2.9,0.1-4,0.3c-1.1,0.2-2.1,0.6-3,1.2c-0.9,0.6-1.6,1.4-2.3,2.5
|
|
48
|
-
c-0.7,1-1.4,2.4-2.1,4.1l-22.3,51.6c-0.3,0.6-0.8,1-1.5,1h-1.3c-0.7,0-1.2-0.3-1.5-1l-22.3-51.6c-0.7-1.7-1.4-3.1-2.1-4.1
|
|
49
|
-
c-0.7-1-1.5-1.9-2.3-2.5c-0.9-0.6-1.9-1-3-1.2c-1.1-0.2-2.5-0.3-4.1-0.3h-11.7c-3.8,0-6.3,0.8-7.6,2.5c-1.3,1.7-1.9,4.6-1.9,8.6
|
|
50
|
-
v61.7c0,1.6,0.8,2.4,2.5,2.4h11c1.6,0,2.4-0.8,2.4-2.4V96.1c0-0.7,0.3-1.1,0.9-1.1h1c0.7,0,1.2,0.3,1.4,0.9l21.7,48.1
|
|
51
|
-
c0.9,1.9,1.7,3.6,2.6,4.9c0.9,1.3,1.9,2.4,2.9,3.3c1,0.9,2.2,1.5,3.5,1.8c1.3,0.4,2.9,0.5,4.7,0.5h5.2c1.8,0,3.3-0.2,4.7-0.5
|
|
52
|
-
c1.3-0.4,2.5-1,3.5-1.8c1-0.9,2-2,2.9-3.3c0.9-1.3,1.8-3,2.6-4.9l21.7-48.1c0.2-0.6,0.7-0.9,1.4-0.9h1c0.6,0,0.9,0.4,0.9,1.1v56.1
|
|
53
|
-
c0,1.6,0.8,2.4,2.4,2.4h11c1.6,0,2.5-0.8,2.5-2.4V90.5c0-4.1-0.6-7-1.9-8.6C541,80.2,538.5,79.3,534.8,79.3z"/>
|
|
54
|
-
<path class="st1" d="M644.1,85.8c-2.4-2.3-5.5-3.9-9.3-4.9c-3.8-1-8.5-1.6-13.9-1.6h-33.2c-5.4,0-10.1,0.5-13.9,1.6
|
|
55
|
-
c-3.8,1-6.9,2.7-9.3,4.9c-2.4,2.3-4.2,5.2-5.3,8.8c-1.1,3.6-1.7,7.9-1.7,13.1v18.5c0,5.2,0.6,9.5,1.7,13.2
|
|
56
|
-
c1.1,3.6,2.9,6.6,5.3,8.8c2.4,2.3,5.5,3.9,9.3,4.9c3.8,1,8.4,1.5,13.9,1.5h33.2c5.4,0,10.1-0.5,13.9-1.5c3.8-1,6.9-2.6,9.3-4.9
|
|
57
|
-
c2.4-2.3,4.1-5.2,5.2-8.8c1.1-3.6,1.6-8,1.6-13.2v-18.5c0-5.2-0.5-9.5-1.6-13.1C648.2,91,646.5,88.1,644.1,85.8z M634.5,125
|
|
58
|
-
c0,2.8-0.2,5.1-0.7,7c-0.5,1.9-1.2,3.4-2.3,4.5c-1.1,1.1-2.5,1.9-4.4,2.4c-1.8,0.5-4.1,0.7-6.9,0.7h-31.9c-2.8,0-5.1-0.2-6.9-0.7
|
|
59
|
-
c-1.8-0.5-3.3-1.3-4.4-2.4c-1.1-1.1-1.8-2.6-2.3-4.5c-0.5-1.9-0.7-4.2-0.7-7v-16.1c0-2.8,0.2-5.1,0.7-7c0.5-1.9,1.2-3.4,2.3-4.5
|
|
60
|
-
c1.1-1.1,2.5-1.9,4.4-2.4c1.8-0.5,4.1-0.7,6.9-0.7h31.9c2.8,0,5.1,0.2,6.9,0.7c1.8,0.5,3.3,1.3,4.4,2.4c1.1,1.1,1.8,2.6,2.3,4.5
|
|
61
|
-
c0.5,1.9,0.7,4.2,0.7,7V125z"/>
|
|
62
|
-
<path class="st1" d="M674.6,139.5h-10.5c-1.6,0-2.5,0.8-2.5,2.4v10.3c0,1.6,0.8,2.4,2.5,2.4h10.5c1.6,0,2.4-0.8,2.4-2.4v-10.3
|
|
63
|
-
C677,140.3,676.2,139.5,674.6,139.5z"/>
|
|
64
|
-
<path class="st1" d="M703.4,73.7h-10.5c-1.6,0-2.5,0.8-2.5,2.4v10.2c0,1.6,0.8,2.5,2.5,2.5h10.5c1.6,0,2.4-0.8,2.4-2.5V76.1
|
|
65
|
-
C705.8,74.5,705,73.7,703.4,73.7z"/>
|
|
66
|
-
<path class="st1" d="M703.4,95.6h-10.5c-1.6,0-2.4,0.8-2.4,2.5v54.1c0,1.6,0.8,2.4,2.4,2.4h10.5c1.6,0,2.4-0.8,2.4-2.4V98
|
|
67
|
-
C705.8,96.4,705,95.6,703.4,95.6z"/>
|
|
68
|
-
<path class="st1" d="M798.7,107.4c-0.9-2.8-2.3-5-4.2-6.8c-2-1.8-4.6-3-7.9-3.9c-1.4-0.3-2.9-0.6-4.6-0.8V75.8
|
|
69
|
-
c0-1.1-0.9-1.9-1.9-1.9c-1.1,0-1.9,0.9-1.9,1.9v19.8c-1.2-0.1-2.4-0.1-3.6-0.1H744c-0.8,0-1.6,0-2.4,0V75.8c0-1.1-0.9-1.9-1.9-1.9
|
|
70
|
-
h0c-1.1,0-1.9,0.9-1.9,1.9v20c-2.2,0.2-4.2,0.5-5.9,1c-3.3,0.8-5.9,2.1-7.8,3.9c-2,1.8-3.4,4-4.2,6.8c-0.9,2.8-1.3,6.1-1.3,9.9
|
|
71
|
-
v15.5c0,3.9,0.4,7.2,1.3,9.9c0.9,2.8,2.3,5,4.2,6.8c2,1.8,4.6,3,7.8,3.8c3.3,0.8,7.3,1.2,12.2,1.2h30.4c4.8,0,8.8-0.4,12.1-1.2
|
|
72
|
-
c3.3-0.8,5.9-2.1,7.9-3.8c2-1.8,3.4-4,4.2-6.8c0.9-2.8,1.3-6.1,1.3-9.9v-15.5C800,113.5,799.6,110.2,798.7,107.4z M784.7,130.1
|
|
73
|
-
c0,2.3-0.2,4.2-0.5,5.7c-0.4,1.5-1,2.7-1.9,3.6c-0.9,0.9-2.1,1.5-3.6,1.9c-1.5,0.4-3.4,0.6-5.8,0.6h-27.4c-2.3,0-4.2-0.2-5.7-0.6
|
|
74
|
-
c-1.5-0.4-2.7-1-3.6-1.9c-0.9-0.9-1.5-2.1-1.9-3.6c-0.4-1.5-0.5-3.4-0.5-5.7v-10.2c0-2.2,0.2-4.1,0.5-5.6c0.4-1.5,1-2.7,1.9-3.7
|
|
75
|
-
c0.9-0.9,2.1-1.6,3.6-1.9c1.5-0.4,3.4-0.5,5.7-0.5h27.4c2.4,0,4.3,0.2,5.8,0.5c1.5,0.4,2.7,1,3.6,1.9c0.9,0.9,1.5,2.1,1.9,3.7
|
|
76
|
-
c0.4,1.5,0.5,3.4,0.5,5.6V130.1z"/>
|
|
77
|
-
</g>
|
|
78
|
-
</g>
|
|
79
|
-
</svg>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|