@agung_dhewe/webapps 1.1.2 → 1.2.4
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.
- package/lib/fgta5js-dist/fgta5js-v1.8.5.min.js +11 -0
- package/lib/fgta5js-dist/fgta5js-v1.8.5.min.js.map +1 -0
- package/{libs → lib}/webmodule/module-edit.css +73 -18
- package/{libs → lib}/webmodule/module-list.css +13 -0
- package/lib/webmodule/module-print.css +28 -0
- package/{libs → lib}/webmodule/module.css +13 -6
- package/{libs → lib}/webmodule/module.js +14 -4
- package/lib/webmodule/pagehelper.mjs +129 -0
- package/modules/generator/appgen-io.mjs +153 -76
- package/modules/generator/appgen-ui.mjs +234 -167
- package/modules/generator/generator-designtemplate-def.html +38 -0
- package/modules/generator/generator-designtemplate.html +11 -1492
- package/modules/generator/generator.css +103 -65
- package/modules/generator/generator.mjs +1 -1
- package/modules/generator/generator.svg +98 -0
- package/modules/generator/generatorEdit.mjs +43 -35
- package/modules/generator/generatorList.mjs +27 -0
- package/modules/generator/tpl-designerinfo.html +100 -0
- package/modules/generator/tpl-field-checkbox.html +200 -0
- package/modules/generator/tpl-field-combobox.html +228 -0
- package/modules/generator/tpl-field-datepicker.html +192 -0
- package/modules/generator/tpl-field-filebox.html +189 -0
- package/modules/generator/tpl-field-numberbox.html +218 -0
- package/modules/generator/tpl-field-textbox.html +255 -0
- package/modules/generator/tpl-field-timepicker.html +192 -0
- package/modules/generator/tpl-searchdesign.html +32 -0
- package/modules/generator/tpl-uniquedesign.html +25 -0
- package/modules/login/login.css +10 -2
- package/package.json +5 -3
- package/percobaan/coba-sequencer.js +16 -0
- package/src/api.js +12 -9
- package/src/apis/generator.api.js +35 -23
- package/src/apis/login.api.js +1 -0
- package/src/context.js +12 -2
- package/src/db.js +58 -32
- package/src/generator/createApiModule.js +4 -1
- package/src/generator/createIcon.js +24 -2
- package/src/generator/createLayoutCss.js +107 -0
- package/src/generator/createModuleDetilEditHtml.js +12 -1
- package/src/generator/createModuleDetilEditMjs.js +32 -28
- package/src/generator/createModuleDetilListHtml.js +14 -7
- package/src/generator/createModuleDetilListMjs.js +13 -1
- package/src/generator/createModuleHeaderEditHtml.js +13 -1
- package/src/generator/createModuleHeaderEditMjs.js +23 -2
- package/src/generator/createProgramData.js +3 -2
- package/src/generator/createTable.js +42 -38
- package/src/generator/helper.js +45 -27
- package/src/generator/templates/__rollup-module copy.ejs +90 -0
- package/src/generator/templates/__rollup-module.ejs +102 -31
- package/src/generator/templates/api-module.js.ejs +171 -32
- package/src/generator/templates/layout.css.ejs +24 -0
- package/src/generator/templates/module-ext.html.ejs +1 -1
- package/src/generator/templates/module-ext.mjs.ejs +19 -1
- package/src/generator/templates/module.ejs.ejs +8 -0
- package/src/generator/templates/module.mjs.ejs +42 -5
- package/src/generator/templates/moduleDetilEdit.html.ejs +11 -0
- package/src/generator/templates/moduleDetilEdit.mjs.ejs +135 -30
- package/src/generator/templates/moduleDetilList.html.ejs +2 -1
- package/src/generator/templates/moduleDetilList.mjs.ejs +86 -11
- package/src/generator/templates/moduleHeaderEdit.html.ejs +8 -1
- package/src/generator/templates/moduleHeaderEdit.mjs.ejs +123 -36
- package/src/generator/templates/moduleHeaderList.html.ejs +5 -1
- package/src/generator/templates/moduleHeaderList.mjs.ejs +47 -15
- package/src/generator/trygenerate.js +18 -2
- package/src/generator/worker.js +83 -72
- package/src/helper.js +12 -13
- package/src/logger.js +12 -12
- package/src/notifier.js +29 -0
- package/src/routers/generatorApi.js +9 -3
- package/src/routers/generatorPage.js +3 -1
- package/src/routers/moduleApi.js +1 -1
- package/src/routers/modulePage.js +42 -7
- package/src/sequencerdoc.js +22 -46
- package/src/sequencerline.js +16 -4
- package/src/session.js +69 -33
- package/src/startup.js +47 -10
- package/src/webapps.js +62 -18
- package/templates/_lib_debug.ejs +8 -8
- package/templates/_lib_production.ejs +2 -2
- package/templates/application.page.ejs +43 -8
- package/templates/generator.page.ejs +4 -3
- package/templates/index.page.ejs +2 -2
- package/templates/login.page.ejs +3 -3
- package/libs/fgta5js-dist/fgta5js-v1.8.3.min.js +0 -11
- package/libs/fgta5js-dist/fgta5js-v1.8.3.min.js.map +0 -1
- package/libs/webmodule/pagehelper.mjs +0 -45
- package/modules/generator/generator.png +0 -0
- /package/{libs/fgta5js-dist/fgta5js-v1.8.3.min.css → lib/fgta5js-dist/fgta5js-v1.8.5.min.css} +0 -0
- /package/{libs → lib}/fgta5js-dist/fonts/karla-italic-latin-ext.woff2 +0 -0
- /package/{libs → lib}/fgta5js-dist/fonts/karla-italic-latin.woff2 +0 -0
- /package/{libs → lib}/fgta5js-dist/fonts/karla-normal-latin-ext.woff2 +0 -0
- /package/{libs → lib}/fgta5js-dist/fonts/karla-normal-latin.woff2 +0 -0
- /package/{libs → lib}/fgta5js-dist/fonts/karla.css +0 -0
- /package/{libs → lib}/webmodule/module-footer.css +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.search-container button{
|
|
1
|
+
.search-container button {
|
|
2
2
|
min-width: unset !important;
|
|
3
3
|
font-weight: normal !important;
|
|
4
4
|
padding: 5px 10px 5px 10px;
|
|
@@ -7,22 +7,21 @@
|
|
|
7
7
|
|
|
8
8
|
#obj_appname,
|
|
9
9
|
input[type="text"],
|
|
10
|
-
input[type="number"]
|
|
11
|
-
{
|
|
10
|
+
input[type="number"] {
|
|
12
11
|
outline: none;
|
|
13
12
|
border: 1px solid #ccc;
|
|
14
13
|
padding: 10px;
|
|
15
|
-
}
|
|
14
|
+
}
|
|
16
15
|
|
|
17
16
|
input[type="number"]:focus,
|
|
18
17
|
input[type="text"]:focus {
|
|
19
18
|
border-color: black;
|
|
20
|
-
}
|
|
19
|
+
}
|
|
21
20
|
|
|
22
21
|
input[type="number"]::-webkit-inner-spin-button,
|
|
23
22
|
input[type="number"]::-webkit-outer-spin-button {
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
-webkit-appearance: none;
|
|
24
|
+
margin: 0;
|
|
26
25
|
}
|
|
27
26
|
|
|
28
27
|
input::placeholder {
|
|
@@ -48,7 +47,8 @@ label {
|
|
|
48
47
|
font-size: 0.8rem;
|
|
49
48
|
}
|
|
50
49
|
|
|
51
|
-
th,
|
|
50
|
+
th,
|
|
51
|
+
td {
|
|
52
52
|
padding: 0;
|
|
53
53
|
}
|
|
54
54
|
|
|
@@ -97,16 +97,16 @@ button:hover {
|
|
|
97
97
|
#appgen-datadesign-layout {
|
|
98
98
|
display: grid;
|
|
99
99
|
grid-template-areas:
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
100
|
+
"def def"
|
|
101
|
+
"action action"
|
|
102
|
+
"entity entity"
|
|
103
|
+
"editor sidebar";
|
|
104
104
|
grid-template-columns: auto 150px;
|
|
105
105
|
grid-template-rows: auto;
|
|
106
106
|
gap: 10px;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
-
#appgen-datadesign-layout
|
|
109
|
+
#appgen-datadesign-layout>div {
|
|
110
110
|
/* background-color: #ccc; */
|
|
111
111
|
padding: 10px;
|
|
112
112
|
}
|
|
@@ -115,12 +115,12 @@ button:hover {
|
|
|
115
115
|
grid-area: def;
|
|
116
116
|
|
|
117
117
|
display: grid;
|
|
118
|
-
grid-template-columns: 150px auto 100px
|
|
118
|
+
grid-template-columns: 150px auto 100px;
|
|
119
119
|
column-gap: 10px;
|
|
120
120
|
row-gap: 10px;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
#layout-definition
|
|
123
|
+
#layout-definition>label {
|
|
124
124
|
text-align: right;
|
|
125
125
|
align-self: center;
|
|
126
126
|
justify-self: end;
|
|
@@ -142,7 +142,7 @@ button:hover {
|
|
|
142
142
|
grid-area: sidebar;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
#layout-sidebar
|
|
145
|
+
#layout-sidebar>div {
|
|
146
146
|
position: sticky;
|
|
147
147
|
top: calc(var(--fgta5-app-header-height) + 75px);
|
|
148
148
|
}
|
|
@@ -151,14 +151,14 @@ button:hover {
|
|
|
151
151
|
|
|
152
152
|
#tbl_entity {
|
|
153
153
|
width: 100%;
|
|
154
|
-
|
|
154
|
+
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
#tbl_entity
|
|
157
|
+
#tbl_entity>tfoot>tr td {
|
|
158
158
|
padding-top: 15px;
|
|
159
159
|
}
|
|
160
160
|
|
|
161
|
-
#tbl_entity td
|
|
161
|
+
#tbl_entity td>span {
|
|
162
162
|
margin: 5px;
|
|
163
163
|
}
|
|
164
164
|
|
|
@@ -178,7 +178,7 @@ button:hover {
|
|
|
178
178
|
min-width: 100px;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
#tbl_entity [name="col_name"]
|
|
181
|
+
#tbl_entity [name="col_name"]>input {
|
|
182
182
|
text-transform: lowercase;
|
|
183
183
|
}
|
|
184
184
|
|
|
@@ -187,30 +187,38 @@ button:hover {
|
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
#tbl_entity [name="col_table"] {
|
|
190
|
-
width:
|
|
190
|
+
width: 200px;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
#tbl_entity [name="col_pk"] {
|
|
194
|
-
width:
|
|
194
|
+
width: 150px;
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
#tbl_entity [name="col_btndesign"] {
|
|
198
|
-
width:
|
|
198
|
+
width: 80px;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
|
-
#tbl_entity [name="
|
|
202
|
-
|
|
201
|
+
#tbl_entity [name="col_btndesign"] input[type="button"] {
|
|
202
|
+
font-size: 0.7rem;
|
|
203
|
+
height: 1.5rem;
|
|
203
204
|
}
|
|
204
205
|
|
|
205
206
|
#tbl_entity [name="col_btnremove"] {
|
|
206
|
-
width:
|
|
207
|
+
width: 80px;
|
|
207
208
|
}
|
|
208
209
|
|
|
210
|
+
#tbl_entity [name="col_btnremove"] input[type="button"] {
|
|
211
|
+
font-size: 0.8rem;
|
|
212
|
+
height: 1.5rem;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
|
|
209
216
|
#tbl_entity [name="col_id"] {
|
|
210
|
-
|
|
217
|
+
display: none;
|
|
218
|
+
width: 100px;
|
|
211
219
|
max-width: 100px;
|
|
212
|
-
white-space: nowrap;
|
|
213
|
-
overflow: hidden;
|
|
220
|
+
white-space: nowrap;
|
|
221
|
+
overflow: hidden;
|
|
214
222
|
text-overflow: ellipsis;
|
|
215
223
|
}
|
|
216
224
|
|
|
@@ -222,7 +230,7 @@ button:hover {
|
|
|
222
230
|
|
|
223
231
|
|
|
224
232
|
.entity-editor {
|
|
225
|
-
scroll-margin-top: calc(var(--fgta5-app-header-height) + 50px)
|
|
233
|
+
scroll-margin-top: calc(var(--fgta5-app-header-height) + 50px)
|
|
226
234
|
}
|
|
227
235
|
|
|
228
236
|
|
|
@@ -259,30 +267,46 @@ button:hover {
|
|
|
259
267
|
|
|
260
268
|
|
|
261
269
|
@keyframes tombolDiTekanMenghilang {
|
|
262
|
-
0% {
|
|
263
|
-
|
|
270
|
+
0% {
|
|
271
|
+
opacity: 1;
|
|
272
|
+
transform: scale(1);
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
100% {
|
|
276
|
+
opacity: 0;
|
|
277
|
+
transform: scale(1.2)
|
|
278
|
+
}
|
|
264
279
|
}
|
|
265
280
|
|
|
266
281
|
@keyframes tombolMunculLagi {
|
|
267
|
-
0% {
|
|
268
|
-
|
|
282
|
+
0% {
|
|
283
|
+
opacity: 0;
|
|
284
|
+
transform: scale(0.3);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
100% {
|
|
288
|
+
opacity: 1;
|
|
289
|
+
transform: scale(1)
|
|
290
|
+
}
|
|
269
291
|
}
|
|
270
292
|
|
|
271
293
|
@keyframes pulseHighlight {
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
294
|
+
0% {
|
|
295
|
+
transform: scale(1);
|
|
296
|
+
box-shadow: 0 0 0 rgba(255, 200, 0, 0);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
50% {
|
|
300
|
+
transform: scale(1.05);
|
|
301
|
+
box-shadow: 0 0 20px rgba(255, 200, 0, 0.6);
|
|
302
|
+
border-color: rgba(255, 200, 0);
|
|
303
|
+
color: rgba(255, 200, 0);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
100% {
|
|
307
|
+
transform: scale(1);
|
|
308
|
+
box-shadow: 0 0 0 rgba(255, 200, 0, 0);
|
|
309
|
+
}
|
|
286
310
|
}
|
|
287
311
|
|
|
288
312
|
.drop-target {
|
|
@@ -294,7 +318,7 @@ button:hover {
|
|
|
294
318
|
color: #eee;
|
|
295
319
|
font-size: 2rem;
|
|
296
320
|
font-weight: bold;
|
|
297
|
-
}
|
|
321
|
+
}
|
|
298
322
|
|
|
299
323
|
.drop-target[data-dragover] {
|
|
300
324
|
border-color: #a7c8ff;
|
|
@@ -307,12 +331,12 @@ button:hover {
|
|
|
307
331
|
border-radius: 4px;
|
|
308
332
|
margin: 5px 0 15px 0;
|
|
309
333
|
padding: 0;
|
|
310
|
-
|
|
334
|
+
|
|
311
335
|
display: flex;
|
|
312
336
|
align-items: center;
|
|
313
337
|
column-gap: 5px;
|
|
314
338
|
|
|
315
|
-
transition: transform 0.3s ease, opacity 0.5s ease, background-color 0.3s ease
|
|
339
|
+
transition: transform 0.3s ease, opacity 0.5s ease, background-color 0.3s ease;
|
|
316
340
|
|
|
317
341
|
/* cursor: grab; */
|
|
318
342
|
cursor: pointer;
|
|
@@ -325,16 +349,16 @@ button:hover {
|
|
|
325
349
|
.component-icon-tool:hover {
|
|
326
350
|
/* transform: scale(1.2); */
|
|
327
351
|
background-color: #a7c8ff;
|
|
328
|
-
}
|
|
352
|
+
}
|
|
329
353
|
|
|
330
|
-
.component-icon-tool
|
|
354
|
+
.component-icon-tool>div[data-icon] {
|
|
331
355
|
width: 16px;
|
|
332
356
|
height: 16px;
|
|
333
357
|
margin: 8px;
|
|
334
358
|
cursor: grab;
|
|
335
359
|
}
|
|
336
360
|
|
|
337
|
-
.component-icon-tool
|
|
361
|
+
.component-icon-tool>div[data-label] {
|
|
338
362
|
font-weight: bold;
|
|
339
363
|
font-size: 0.7rem;
|
|
340
364
|
}
|
|
@@ -350,17 +374,17 @@ button:hover {
|
|
|
350
374
|
margin: 25px 0 25px 0;
|
|
351
375
|
/* border: 1px solid #ccc; */
|
|
352
376
|
border: 1px solid rgba(17, 37, 75, 0.2);
|
|
353
|
-
border-radius: 15px
|
|
377
|
+
border-radius: 15px;
|
|
354
378
|
position: relative;
|
|
355
379
|
background-color: #f9f9f9;
|
|
356
380
|
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
|
|
357
381
|
}
|
|
358
382
|
|
|
359
|
-
.design-data-field
|
|
383
|
+
.design-data-field>div {
|
|
360
384
|
margin: 10px 30px 30px 20px;
|
|
361
385
|
}
|
|
362
386
|
|
|
363
|
-
.design-data-field
|
|
387
|
+
.design-data-field>div[data-fieldform] {
|
|
364
388
|
display: grid;
|
|
365
389
|
grid-template-columns: 90px 150px 90px 150px 90px auto;
|
|
366
390
|
gap: 5px;
|
|
@@ -392,7 +416,7 @@ button:hover {
|
|
|
392
416
|
.design-data-field input[type="checkbox"] {
|
|
393
417
|
width: 15px;
|
|
394
418
|
margin-left: 0;
|
|
395
|
-
}
|
|
419
|
+
}
|
|
396
420
|
|
|
397
421
|
|
|
398
422
|
.design-data-field input[type="text"][name="fieldname"] {
|
|
@@ -410,7 +434,7 @@ button:hover {
|
|
|
410
434
|
text-align: right;
|
|
411
435
|
margin-right: 5px;
|
|
412
436
|
|
|
413
|
-
}
|
|
437
|
+
}
|
|
414
438
|
|
|
415
439
|
|
|
416
440
|
.design-data-field div[name="validation"] {
|
|
@@ -445,11 +469,11 @@ button:hover {
|
|
|
445
469
|
background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20viewBox%3D%220%200%2048%2048%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20fill%3D%22currentColor%22%3E%0A%3Cpath%20d%3D%22m20.019%202c-2.9332%200-5.2348%202.3057-5.2348%205.2389v3.1417h-8.3806c-2.3047%200-4.1903%201.8856-4.1903%204.1903v7.9628h3.1417c3.1427%200%205.6567%202.514%205.6567%205.6567%200%203.1427-2.514%205.6567-5.6567%205.6567h-3.3547v7.9628c0%202.3047%201.8856%204.1903%204.1903%204.1903h7.9628v-3.1458c0-3.1427%202.514-5.6567%205.6567-5.6567%203.1427%200%205.6567%202.514%205.6567%205.6567v3.1458h7.9628c2.3047%200%204.1903-1.8856%204.1903-4.1903v-8.3806h3.1417c2.9332%200%205.2389-2.3057%205.2389-5.2389%200-2.9332-2.3057-5.2389-5.2389-5.2389h-3.1417v-8.3806c0-2.3047-1.8856-4.1903-4.1903-4.1903h-8.3806v-3.1417c0.20951-2.9332-2.0968-5.2389-5.03-5.2389z%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E");
|
|
446
470
|
}
|
|
447
471
|
|
|
448
|
-
#upload-icon:hover
|
|
472
|
+
#upload-icon:hover>label {
|
|
449
473
|
opacity: 1;
|
|
450
474
|
}
|
|
451
475
|
|
|
452
|
-
#upload-icon
|
|
476
|
+
#upload-icon>label {
|
|
453
477
|
display: inline-block;
|
|
454
478
|
background-color: white;
|
|
455
479
|
color: black;
|
|
@@ -558,21 +582,28 @@ button:hover {
|
|
|
558
582
|
}
|
|
559
583
|
|
|
560
584
|
@keyframes fieldDihapus {
|
|
561
|
-
0% {
|
|
562
|
-
|
|
585
|
+
0% {
|
|
586
|
+
opacity: 1;
|
|
587
|
+
transform: scale(1);
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
100% {
|
|
591
|
+
opacity: 0;
|
|
592
|
+
transform: scale(0.3);
|
|
593
|
+
}
|
|
563
594
|
}
|
|
564
595
|
|
|
565
596
|
|
|
566
597
|
|
|
567
598
|
.design-data-field-icon {
|
|
568
|
-
width: 16px;
|
|
599
|
+
width: 16px;
|
|
569
600
|
height: 16px;
|
|
570
601
|
margin-left: 8px;
|
|
571
602
|
}
|
|
572
603
|
|
|
573
604
|
|
|
574
605
|
.design-data-field-icon-pk {
|
|
575
|
-
width: 16px;
|
|
606
|
+
width: 16px;
|
|
576
607
|
height: 16px;
|
|
577
608
|
position: absolute;
|
|
578
609
|
transform: translateX(-8px);
|
|
@@ -639,4 +670,11 @@ button:hover {
|
|
|
639
670
|
padding: 6px;
|
|
640
671
|
cursor: pointer;
|
|
641
672
|
border-top: 1px dotted #ddd;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
.beri-jarak-scroll {
|
|
678
|
+
/* Memberikan jarak 100px dari atas saat di-scroll */
|
|
679
|
+
scroll-margin-top: 100px;
|
|
642
680
|
}
|
|
@@ -100,7 +100,7 @@ async function render(self) {
|
|
|
100
100
|
const footerButtonsContainer = document.getElementsByClassName('footer-buttons-container')
|
|
101
101
|
Module.renderFooterButtons(footerButtonsContainer)
|
|
102
102
|
|
|
103
|
-
Crsl.setIconUrl('/generator/generator.
|
|
103
|
+
Crsl.setIconUrl('/generator/generator.svg')
|
|
104
104
|
|
|
105
105
|
Crsl.addEventListener($fgta5.SectionCarousell.EVT_SECTIONSHOWING, (evt)=>{
|
|
106
106
|
var sectionId = evt.detail.commingSection.Id
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="32"
|
|
6
|
+
height="32"
|
|
7
|
+
viewBox="0 0 32 32"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
inkscape:version="1.4.2 (ebf0e940, 2025-05-08)"
|
|
11
|
+
sodipodi:docname="generator.svg"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview1"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#000000"
|
|
20
|
+
borderopacity="0.25"
|
|
21
|
+
inkscape:showpageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="true"
|
|
24
|
+
inkscape:deskcolor="#d1d1d1"
|
|
25
|
+
inkscape:document-units="px"
|
|
26
|
+
inkscape:clip-to-page="false"
|
|
27
|
+
labelstyle="default"
|
|
28
|
+
inkscape:zoom="13.280066"
|
|
29
|
+
inkscape:cx="16.490881"
|
|
30
|
+
inkscape:cy="16.829735"
|
|
31
|
+
inkscape:window-width="1440"
|
|
32
|
+
inkscape:window-height="842"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:window-y="30"
|
|
35
|
+
inkscape:window-maximized="1"
|
|
36
|
+
inkscape:current-layer="layer1"
|
|
37
|
+
showgrid="true"
|
|
38
|
+
guidecolor="#8800e5"
|
|
39
|
+
guideopacity="0.6"
|
|
40
|
+
showguides="true">
|
|
41
|
+
<sodipodi:guide
|
|
42
|
+
position="0,31"
|
|
43
|
+
orientation="0,1"
|
|
44
|
+
id="guide3"
|
|
45
|
+
inkscape:locked="false"
|
|
46
|
+
inkscape:label=""
|
|
47
|
+
inkscape:color="rgb(136,0,229)" />
|
|
48
|
+
<sodipodi:guide
|
|
49
|
+
position="31,32"
|
|
50
|
+
orientation="-1,0"
|
|
51
|
+
id="guide4"
|
|
52
|
+
inkscape:locked="false"
|
|
53
|
+
inkscape:label=""
|
|
54
|
+
inkscape:color="rgb(136,0,229)" />
|
|
55
|
+
<sodipodi:guide
|
|
56
|
+
position="32,1"
|
|
57
|
+
orientation="0,1"
|
|
58
|
+
id="guide5"
|
|
59
|
+
inkscape:locked="false"
|
|
60
|
+
inkscape:label=""
|
|
61
|
+
inkscape:color="rgb(136,0,229)" />
|
|
62
|
+
<sodipodi:guide
|
|
63
|
+
position="1,1"
|
|
64
|
+
orientation="-1,0"
|
|
65
|
+
id="guide6"
|
|
66
|
+
inkscape:locked="false"
|
|
67
|
+
inkscape:label=""
|
|
68
|
+
inkscape:color="rgb(136,0,229)" />
|
|
69
|
+
<inkscape:page
|
|
70
|
+
x="0"
|
|
71
|
+
y="0"
|
|
72
|
+
width="32"
|
|
73
|
+
height="32"
|
|
74
|
+
id="page2"
|
|
75
|
+
margin="0"
|
|
76
|
+
bleed="0" />
|
|
77
|
+
</sodipodi:namedview>
|
|
78
|
+
<defs
|
|
79
|
+
id="defs1" />
|
|
80
|
+
<g
|
|
81
|
+
inkscape:label="Layer 1"
|
|
82
|
+
inkscape:groupmode="layer"
|
|
83
|
+
id="layer1">
|
|
84
|
+
<path
|
|
85
|
+
id="path2"
|
|
86
|
+
style="fill:#f9f9f9;stroke-width:1.80001;stroke-linecap:round"
|
|
87
|
+
d="m 19.865066,2.0801235 c -0.266801,-0.0171 -0.565792,-0.01328 -0.929688,0.01367 -0.695681,0.05153 -1.468621,0.434947 -2.097656,0.839843 -0.293371,0.188837 -0.540364,0.3704 -0.720703,0.511719 -0.104725,0.08253 -0.165895,0.208463 -0.166016,0.341797 l -0.05273,8.1269525 -0.01367,1.876953 c -2e-6,6.67e-4 -2e-6,0.0013 0,0.002 l -0.09375,14.269532 c 0.0082,0.159876 0.103465,0.302363 0.248047,0.371094 l -0.05859,-0.128906 c 0.02343,0.04922 0.05589,0.09361 0.0957,0.130859 0.101301,0.0505 0.218279,0.05959 0.326165,0.02535 l -0.189453,0.08008 c 0.131316,0.119097 0.504189,0.468372 1.236328,0.884766 0.892605,0.507653 2.007114,0.916114 3.048828,0.697265 1.079682,-0.226823 1.680231,-0.773928 2.011719,-1.236328 0.229823,-0.320587 0.271779,-0.501789 0.318359,-0.654297 0.646041,-0.562535 0.951328,-1.013366 1.361328,-1.15625 0.03592,-0.01242 0.07007,-0.0295 0.101563,-0.05078 0.314409,-0.212159 0.639384,-0.451884 0.90039,-0.712891 0.272829,-0.27283 0.304219,-0.65793 0.259766,-1.017578 -0.04561,-0.369039 -0.169922,-0.65625 -0.169922,-0.65625 l -0.0039,-0.0078 c -0.122963,-0.273733 0.02458,-0.572657 0.316406,-0.642578 0.0013,-6.6e-4 0.0026,-0.0013 0.0039,-0.002 0,0 1.256158,-0.30887 2.03711,-1.498047 0.157251,-0.239474 0.247698,-0.494191 0.228515,-0.740236 -0.01396,-0.179099 -0.08497,-0.295363 -0.146484,-0.417968 0.0089,-0.608493 0.06758,-1.078694 0.361328,-1.78711 0.07194,-0.02854 0.131092,-0.04871 0.216797,-0.08789 0.327605,-0.149763 0.453687,-0.373995 0.654297,-0.640625 0.20061,-0.266631 0.410688,-0.577699 0.613281,-0.861329 0.0768,-0.107512 0.113571,-0.139089 0.175781,-0.246093 0.06221,-0.107005 0.08735,-0.227757 0.105469,-0.337891 0.052,-0.316153 0.04123,-0.831595 -0.136719,-1.830078 -0.316248,-1.775418 -2.042968,-2.433594 -2.042968,-2.433594 -0.0013,-6.73e-4 -0.0026,-0.0013 -0.0039,-0.002 -0.290329,-0.109919 -0.395179,-0.438542 -0.220703,-0.695312 6.67e-4,2e-6 0.0013,2e-6 0.002,0 0,0 0.131822,-0.196379 0.261719,-0.462891 0.07665,-0.157265 0.126104,-0.311704 0.160156,-0.431641 0.01703,-0.05997 0.03037,-0.112145 0.03906,-0.148437 0.0015,-0.0057 0.0013,-0.01172 0.002,-0.01758 0.0086,-0.0765 0.01156,-0.08619 0.02148,-0.160159 -0.04158,-0.644436 0.01574,-0.82154 -0.441406,-1.7929675 -0.109497,-0.232679 -0.249702,-0.322766 -0.425781,-0.44336 -0.176079,-0.120593 -0.390226,-0.231827 -0.630859,-0.316406 -0.454452,-0.159731 -0.855469,-0.207031 -0.855469,-0.207031 -6.67e-4,-2e-6 -0.0013,-2e-6 -0.002,0 -0.276099,-0.03096 -0.457365,-0.27611 -0.404297,-0.548828 0,0 0.05351,-0.268841 0.0918,-0.623047 0.03981,-0.368208 0.06304,-0.744951 0.0098,-1.046875 -0.116586,-0.660656 -0.041,-0.46852 -0.449218,-1.058594 -0.08126,-0.117247 -0.21477,-0.187285 -0.357422,-0.1875 l 0.04687,0.0039 c 0.117051,0.01387 0.101237,0.02525 0.101562,0.02539 3.25e-4,1.44e-4 -0.01327,-0.0057 -0.0293,-0.01367 -0.03205,-0.01585 -0.08243,-0.04144 -0.144531,-0.07031 -0.124194,-0.05774 -0.291979,-0.130105 -0.492187,-0.173829 -0.39449,-0.08615 -0.742188,-0.09961 -0.742188,-0.09961 -0.254103,-0.0098 -0.447541,-0.21055 -0.447266,-0.464844 l -0.002,0.0332 c 0.01259,-0.165036 -0.0283,-0.28316 -0.152343,-0.53125 -0.156036,-0.312069 -0.466359,-0.659504 -1.007813,-0.984375 -0.428014,-0.25681 -0.874994,-0.547728 -1.693359,-0.605469 -0.0084,-9.14e-4 -0.01691,-0.0016 -0.02539,-0.002 z m 8.011718,9.3339835 c 0,0 -0.582769,-0.300521 0,0 z M 16.701003,28.04692 v 0.28711 l -0.255859,0.107422 c 0.155029,-0.07024 0.254959,-0.224334 0.255859,-0.394532 z"
|
|
88
|
+
sodipodi:nodetypes="csscccccccccccssscccsscccccsccssssccccccsscccssscccsccccscsscccssccccccccc" />
|
|
89
|
+
<path
|
|
90
|
+
style="fill:#9bc9ff;fill-opacity:1;stroke:none;stroke-width:1.8;stroke-linejoin:round;stroke-dasharray:none"
|
|
91
|
+
d="M 15.750584,2.9747596 15.582417,28.536082 c 0,0 -1.008999,1.681666 -3.363332,1.849833 C 9.8647532,30.554082 8.286583,28.39088 8.286583,28.39088 L 7.854406,27.835224 c 0,0 -0.864354,-0.679136 -1.214211,-1.39943 -0.349858,-0.720295 -0.349858,-1.255371 -0.329278,-1.522909 0.02058,-0.267538 0.06174,-0.699715 0.06174,-0.699715 0,0 -1.708127,-0.02058 -2.346103,-1.543489 -0.637975,-1.522909 0.123479,-2.634221 0.123479,-2.634221 0,0 -2.325523,-0.843774 -2.346103,-3.333936 -0.02058,-2.490162 2.490162,-3.930752 2.490162,-3.930752 0,0 -1.193631,-1.605228 -0.267538,-3.2721962 C 4.952647,7.8316079 6.331497,7.811028 6.331497,7.811028 c 0,0 -0.535076,-1.5640687 0.226379,-2.5313217 0.761454,-0.9672531 1.37885,-1.1318919 1.37885,-1.1318919 0,0 0.658555,-1.4611694 1.8316062,-2.1197243 C 10.941384,1.369534 11.743998,1.410694 12.093855,1.431274 c 0.349858,0.02058 0.699715,0.04116 1.111312,0.185219 0.411597,0.1440581 2.545417,1.3582666 2.545417,1.3582666 z"
|
|
92
|
+
id="path1-0" />
|
|
93
|
+
<path
|
|
94
|
+
id="path10"
|
|
95
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#1f81ce;stroke-linejoin:round;enable-background:accumulate;stop-color:#000000"
|
|
96
|
+
d="m 19.542323,0.59418597 c -0.201614,-0.0032 -0.41491,0.003 -0.638672,0.01953 C 17.822483,0.69380597 16.883312,1.208794 16.169276,1.668403 15.956845,1.80514 15.764122,1.9413802 15.59701,2.0648875 15.397123,1.9527273 15.14184,1.8104772 14.876307,1.664497 c -0.296,-0.16273 -0.606423,-0.331076 -0.875,-0.470703 -0.268577,-0.139628 -0.443335,-0.23807803 -0.689453,-0.32421903 -0.536463,-0.187762 -1.005611,-0.211842 -1.355469,-0.232422 -0.09005,-0.0053 -0.227865,-0.01062 -0.404297,-0.0039 -0.529295,0.02013 -1.4092,0.148757 -2.4140616,0.71289003 C 7.8376775,2.0761638 7.2727063,3.193525 7.0911514,3.5844248 6.9873897,3.6332118 6.9729606,3.6216618 6.8528701,3.6996591 6.519538,3.9161532 6.0999673,4.2695945 5.6614638,4.8266122 4.9631963,5.7136008 4.9644268,6.6001002 5.0794326,7.2855966 5.0178716,7.3095216 5.021568,7.2875266 4.9583388,7.3168466 4.3473596,7.6001499 3.6045075,8.1666333 3.0501357,9.1645029 2.2104441,10.675948 2.6318361,11.867168 3.0071667,12.617628 2.215486,13.166425 0.694198,14.392961 0.7141979,16.81294 c 0.018544,2.243826 1.3332362,3.195997 2.1679688,3.673828 -0.2060362,0.642849 -0.3411691,1.521975 0.125,2.634766 0.5400753,1.289212 1.478819,1.695747 2.2304687,1.886719 -0.023718,0.370906 -0.010992,1.072843 0.4023438,1.923828 0.420191,0.865098 1.1517766,1.472836 1.390625,1.65625 l 0.3378906,0.435547 c 0,0 1.7946688,2.572563 4.7246092,2.363281 1.786573,-0.127612 2.964741,-1.04673 3.574219,-1.679687 0.300444,0.230374 0.706214,0.515876 1.179687,0.785156 1.034722,0.588481 2.461281,1.171737 4.003906,0.847656 1.421027,-0.298535 2.337055,-1.076001 2.839844,-1.777344 0.343765,-0.479518 0.365298,-0.700438 0.441406,-0.953125 0.265305,-0.132033 1.22785,-0.583318 2.095704,-1.451171 0.66895,-0.66895 0.724214,-1.553091 0.65039,-2.150391 -0.01092,-0.08836 -0.02523,-0.075 -0.04102,-0.15625 0.612654,-0.285852 1.373012,-0.76282 2.009766,-1.732422 0.601256,-0.915548 0.437546,-1.91775 0.126953,-2.574219 1.117327,-0.539776 1.583215,-1.654392 1.771485,-1.917968 0.133356,-0.186697 0.423742,-0.59565 0.515625,-1.154297 0.09188,-0.558648 0.0495,-1.226157 -0.140625,-2.292969 -0.306746,-1.721185 -1.310512,-2.508487 -2.070313,-2.962891 0.156878,-0.334458 0.341399,-0.699549 0.306641,-1.238281 -0.0367,-0.568784 -0.04667,-1.1746043 -0.56836,-2.2832031 C 28.373243,7.8136738 27.566465,7.4454494 26.950526,7.228956 26.808127,7.178905 26.811576,7.19889 26.682948,7.164503 26.722828,6.7742811 26.763268,6.3312436 26.679048,5.8539561 26.561762,5.1893319 26.44788,4.8866743 26.009127,4.2484873 25.520385,3.5375919 24.830612,3.3986402 24.304048,3.2836436 24.12637,3.2448406 24.12027,3.2581806 23.97397,3.2387216 23.9319,3.10049 23.96947,3.0930658 23.89389,2.9418466 23.596737,2.3475413 23.077471,1.826604 22.364593,1.398878 21.834199,1.080641 20.953624,0.61638097 19.542328,0.59418997 Z m 0.394531,1.80273483 c 0.739966,0.051825 1.058679,0.278957 1.501953,0.5449218 0.484323,0.2905935 0.737117,0.593376 0.84375,0.8066406 0.106694,0.2133882 0.108485,0.2883099 0.107422,0.3027344 a 0.90008998,0.90008998 0 0 0 0.865234,0.9003906 c 0,0 0.314347,0.013043 0.666016,0.089844 0.302215,0.066001 0.567761,0.233553 0.607422,0.2382812 h 0.002 c 0.430566,0.6223683 0.25336,0.186358 0.376953,0.8867188 0.02925,0.1657576 0.02254,0.5888751 -0.01367,0.9238281 -0.03621,0.3349531 -0.08594,0.5859375 -0.08594,0.5859375 a 0.90008998,0.90008998 0 0 0 0.783203,1.0664063 c 0,0 0.358101,0.041728 0.761719,0.1835937 0.403618,0.1418659 0.737221,0.3876406 0.80664,0.5351563 0.447391,0.9507039 0.35633,0.9518159 0.400391,1.6347659 -1.87e-4,-0.0029 -0.0619,0.301407 -0.177735,0.539062 -0.115832,0.237655 -0.232419,0.410156 -0.232422,0.410156 a 0.90008998,0.90008998 0 0 0 0.425782,1.347656 c 0,0 1.50237,0.582528 1.773437,2.103516 0.173282,0.972303 0.171019,1.47505 0.136719,1.683594 -0.0343,0.208544 -0.03559,0.163113 -0.205078,0.40039 -0.414374,0.580124 -0.839703,1.242347 -1.095703,1.359376 -0.156928,0.07174 -0.284671,0.121067 -0.384766,0.154296 a 0.89999998,0.89999998 0 0 0 -0.578125,-0.130859 c 0,0 -1.430605,0.03505 -2,-0.386719 -0.564316,-0.417978 -0.791062,-1.628906 -0.791062,-1.628906 a 0.89999998,0.89999998 0 0 0 -0.982421,-0.808594 0.89999998,0.89999998 0 0 0 -0.808594,0.982422 c 0,0 0.0703,1.834624 1.511719,2.902344 1.009154,0.747521 2.217031,0.803855 2.845703,0.771484 0.07671,0.07506 0.236828,0.246639 0.353515,0.464844 0.158441,0.296283 0.24503,0.486065 -0.0078,0.871094 -0.682818,1.039745 -1.779297,1.314453 -1.779297,1.314453 a 0.90008998,0.90008998 0 0 0 -0.611328,1.244141 c 0,0 0.101455,0.237941 0.138672,0.539062 0.03722,0.301121 0.0019,0.51763 -0.136719,0.65625 -0.225721,0.225721 -0.533946,0.456376 -0.835938,0.660156 -0.06773,-0.261925 -0.149771,-0.554083 -0.248046,-0.853515 -0.160866,-0.490137 -0.36069,-1.004701 -0.636719,-1.472657 -0.276029,-0.467955 -0.621655,-0.94404 -1.261719,-1.164062 -0.733035,-0.251982 -1.358999,-0.257736 -1.810547,-0.166016 -0.451548,0.09172 -0.804687,0.333985 -0.804687,0.333985 a 0.89999998,0.89999998 0 0 0 -0.181641,1.259765 0.89999998,0.89999998 0 0 0 1.25,0.185547 h 0.002 c 0.0074,1.66e-4 0.03094,-0.0028 0.09375,-0.01563 0.141829,-0.02881 0.407142,-0.04985 0.857422,0.103516 v 0.002 l 0.002,0.002 0.002,0.002 c 0.02311,0.02529 0.162917,0.13737 0.300782,0.371094 0.16968,0.287661 0.342241,0.70393 0.478515,1.119141 0.230748,0.703061 0.367756,1.386695 0.404297,1.580078 -0.01203,0.05503 -0.08053,0.322641 -0.33789,0.68164 -0.289639,0.404019 -0.766553,0.858257 -1.748047,1.064453 -0.859896,0.180651 -1.90631,-0.173888 -2.744141,-0.65039 -0.767791,-0.436669 -1.200581,-0.842994 -1.285156,-0.919922 l -0.04883,-0.109375 -0.06445,0.02734 c -7e-6,-7e-6 -0.0039,-0.002 -0.0039,-0.002 l 0.002,0.0039 -0.03906,0.01758 0.09375,-14.269531 c 0.683262,0.183407 1.566467,0.521649 2.15625,1.126953 1.044803,1.072298 0.730469,2.710937 0.730469,2.710937 a 0.89999998,0.89999998 0 0 0 0.691406,1.070313 0.89999998,0.89999998 0 0 0 1.068359,-0.691407 c 0,0 0.576849,-2.520892 -1.201172,-4.345703 -1.088588,-1.117235 -2.516704,-1.567589 -3.43164,-1.748047 l 0.05273,-8.1289058 c 0.170988,-0.1339911 0.40759,-0.3081093 0.6875,-0.4882812 0.587918,-0.37843 1.357527,-0.7338041 1.892578,-0.7734375 0.360586,-0.02671 0.653736,-0.028994 0.900391,-0.011719 z m -8.373047,0.025391 c 0.109052,-1.555e-4 0.202227,0.00673 0.287109,0.011719 0.349858,0.02058 0.580457,0.03441 0.867188,0.1347657 -0.04032,-0.014112 0.205849,0.094103 0.453125,0.2226562 0.247275,0.1285531 0.548983,0.2923424 0.837891,0.4511719 0.337994,0.1858169 0.438,0.2438234 0.646484,0.3613281 l -0.02734,4.0507812 C 13.732199,7.874401 12.178358,8.4133696 10.993494,9.6605926 9.229381,11.517556 9.6751362,13.758249 9.6751362,13.758249 a 0.89999998,0.89999998 0 0 0 1.0781238,0.677734 0.89999998,0.89999998 0 0 0 0.677734,-1.076172 c 0,0 -0.334342,-1.194215 0.867188,-2.458984 0.667372,-0.702496 1.612143,-1.12015 2.318359,-1.3515625 l -0.01758,2.7050785 a 0.89999998,0.89999998 0 0 0 -0.05859,0.265625 0.89999998,0.89999998 0 0 0 0.05469,0.36914 0.89999998,0.89999998 0 0 0 0,0.002 l -0.101563,15.423829 c -0.139485,0.217465 -0.788273,1.152984 -2.529296,1.277343 -1.778724,0.127052 -3.1406248,-1.628906 -3.1406248,-1.628906 a 0.90008998,0.90008998 0 0 0 -0.017578,-0.02148 L 8.5755264,27.644968 v -0.002 A 0.89999998,0.89999998 0 0 0 8.5442764,27.225 c 0,0 -0.042859,-0.08523 0.00977,-0.404297 0.05262,-0.319069 0.2113463,-0.792328 0.8222656,-1.371094 0.5487422,-0.519861 1.007704,-0.557163 1.410155,-0.517578 0.402451,0.03958 0.646485,0.177734 0.646485,0.177734 a 0.89999998,0.89999998 0 0 0 1.228515,-0.333984 0.89999998,0.89999998 0 0 0 -0.335937,-1.228516 c 0,0 -0.575572,-0.32877 -1.363282,-0.40625 -0.787708,-0.07748 -1.8901369,0.117036 -2.8242172,1.001953 -0.517517,0.49028 -0.8597376,0.999756 -1.0761719,1.47461 -0.062135,-0.251803 -0.051529,-0.42192 -0.042969,-0.533203 0.019227,-0.249943 0.058594,-0.681641 0.058594,-0.681641 A 0.90008998,0.90008998 0 0 0 6.1927138,23.416452 c 0,0 -1.107505,0.0073 -1.5253906,-0.990234 -0.3625561,-0.865457 -0.1569696,-1.439674 -0.035156,-1.667969 0.5302596,-0.08141 1.2292543,-0.277018 2.0957031,-0.691406 1.0652948,-0.509489 1.6916039,-1.232638 2.015625,-1.841797 0.3240211,-0.609166 0.3671875,-1.181641 0.3671875,-1.181641 A 0.89999998,0.89999998 0 0 0 8.2610732,16.094186 0.89999998,0.89999998 0 0 0 7.3138076,16.941843 c 0,0 0.00359,0.129651 -0.1601562,0.4375 -0.1637495,0.307849 -0.4734241,0.715465 -1.203125,1.064453 -0.8183874,0.391402 -1.3824833,0.514286 -1.7109376,0.550781 -0.2309443,0.02566 -0.2988393,0.02287 -0.3164062,0.01953 h -0.00195 v -0.002 a 0.89999998,0.89999998 0 0 0 -0.2519562,-0.0312 C 3.1649453,18.635702 2.522696,17.967332 2.5130264,16.797311 2.4974692,14.914915 4.5520889,13.654733 4.5520888,13.654733 a 0.90008998,0.90008998 0 0 0 0.2734376,-1.318359 c 0,0 -0.850661,-1.13131 -0.203125,-2.296875 C 4.9941226,9.3704005 5.4042292,9.0933838 5.7141982,8.9496551 6.0241672,8.8059265 6.1556045,8.8148895 6.1556045,8.8148895 A 0.90008998,0.90008998 0 0 0 6.9934951,7.6234832 c 0,0 -0.2609877,-1.2478667 0.082031,-1.6835937 C 7.3984779,5.5296541 7.6676096,5.3170594 7.8333388,5.2094208 7.9369197,5.1421468 7.9695144,5.1252048 7.9778701,5.1215298 a 0.90008998,0.90008998 0 0 0 0.5898437,-0.5 c 0,0 0.6482593,-1.2543201 1.4511722,-1.7050781 C 10.7736,2.492752 11.23665,2.4227775 11.563807,2.4223118 Z" />
|
|
97
|
+
</g>
|
|
98
|
+
</svg>
|