forked from PicolSigns/PICOL-font
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
7697 lines (7697 loc) · 490 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "PICOL",
"css_prefix_text": "picol_",
"css_use_suffix": false,
"hinting": true,
"units_per_em": 1000,
"ascent": 850,
"copyright": "Creative Commons-License BY-SA (http://www.creativecommons.org/licenses/by-sa/3.0/)",
"glyphs": [
{
"uid": "55108710209e9102c098c1c9dbd3bb89",
"css": "accept",
"code": 59392,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M437.5 562.5L812.5 187.5L937.5 312.5L437.5 812.5L125 500L250 375Z",
"width": 1000
},
"search": [
"accept"
]
},
{
"uid": "355973601b7f33c1b5c3eeb70dab2e1e",
"css": "adressbook",
"code": 59393,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M531.3 562.5C600.3 562.5 656.3 506.5 656.3 437.5C656.3 368.5 600.3 312.5 531.3 312.5C462.3 312.5 406.3 368.5 406.3 437.5C406.3 506.5 462.3 562.5 531.3 562.5ZM718.8 625H343.8C343.8 625 281.3 625 281.3 687.5V875H781.3V687.5C781.3 687.5 781.3 625 718.8 625ZM906.3 0V62.5H843.8V125H906.3V1000H156.3C156.3 1000 93.8 1000 93.8 937.5V94.3C93.8 94.1 93.8 93.9 93.8 93.8C92.7 51.4 119 21.4 142.3 11.1C165.4-0.3 184.9 0.1 187.5 0H906.3M187.4 125C187.5 125 187.5 125 187.5 125H781.3V62.5H187.5C187.5 62.7 186.5 62.4 182.9 63.1C179.3 63.7 174.3 64.9 170.3 67C162.3 72.3 157.3 73.5 156.3 93.8C156.8 109.4 160.5 112.8 164.8 117C169.3 120.9 177.3 123.6 182.8 124.4C185.8 125 187 125 187.4 125M218.8 937.5H843.8V187.5H218.8V937.5",
"width": 1000
},
"search": [
"adressbook"
]
},
{
"uid": "bf285ef9b4cca1daed183edc00a7f738",
"css": "agent",
"code": 59394,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 500C625 569 569 625 500 625C431 625 375 569 375 500C375 431 431 375 500 375C569 375 625 431 625 500ZM875 250C944 250 1000 194 1000 125C1000 56 944 0 875 0C806 0 750 56 750 125C750 148.1 756.7 169.5 767.7 188.1L667 288.7C617.6 266.1 561.6 250.6 500 250C259.6 252.4 102.2 479 99.6 480.6L86.6 498.7L99.5 516.9C101.2 517.9 166.3 611.8 275.7 680L188.1 767.7C169.5 756.7 148.1 750 125 750C56 750 0 806 0 875C0 944 56 1000 125 1000C194 1000 250 944 250 875C250 851.9 243.3 830.4 232.3 811.8L333 711.1C382.5 733.8 438.5 749.3 500 749.9C740.5 747.4 897.8 519.7 900.4 518.1L913.4 500L900.4 481.8C898.8 480.8 833.8 387.6 724.4 319.7L811.9 232.3C830.4 243.3 851.9 250 875 250ZM823.7 486.4C828.1 491.4 832 496 835.3 500C832 503.9 828.1 508.5 823.7 513.5C772.1 572.8 647.6 688.5 500 687.5C401.5 687.7 313.8 637.3 250.4 584.7C218.8 558.6 193.5 532.2 176.3 512.6C171.8 507.5 168 502.9 164.7 498.9C168 495 171.8 490.5 176.2 485.5C227.8 426.5 352.3 311.5 500 312.5C598.5 312.3 686.3 362.4 749.6 414.8C781.2 440.8 806.5 466.9 823.7 486.4ZM750 875C750 805.9 805.9 750 875 750L875 750C944.1 750 1000 805.9 1000 875L1000 875C1000 944.1 944.1 1000 875 1000L875 1000C805.9 1000 750 944.1 750 875L750 875ZM812.5 875C812.6 909.5 840.5 937.4 875 937.5L875 937.5C909.5 937.4 937.4 909.5 937.5 875L937.5 875C937.4 840.5 909.5 812.6 875 812.5L875 812.5C840.5 812.6 812.6 840.5 812.5 875L812.5 875ZM0 125C0 56 56 0 125 0L125 0C194 0 249.9 56 250 125L250 125C249.9 194 194 249.9 125 250L125 250C56 249.9 0 194 0 125L0 125ZM62.5 125C62.6 159.5 90.5 187.4 125 187.4L125 187.4C159.5 187.4 187.4 159.5 187.4 125L187.4 125C187.4 90.5 159.5 62.6 125 62.5L125 62.5C90.5 62.6 62.6 90.5 62.5 125L62.5 125Z",
"width": 1000
},
"search": [
"agent"
]
},
{
"uid": "39045f4910f0be9ed7602bfb90953d53",
"css": "api",
"code": 59395,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 437.5L625 437.5L625 312.5L1000 312.5L1000 687.5L625 687.5L625 562.5L500 562.5ZM437.5 437.5L312.5 437.5L312.5 562.5L437.5 562.5L437.5 812.5L0 812.5L0 187.5L437.5 187.5Z",
"width": 1000
},
"search": [
"api"
]
},
{
"uid": "7dfd82e2e19a00cb4083a86c4f51717f",
"css": "apple",
"code": 59396,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 250C615 250 563.6 281.5 533.2 308C545.9 178.1 625 125 625 125L562.5 93.8C562.5 93.8 481.9 174.6 470.3 311.1C440.3 284 387.8 250 312.5 250C187.5 250 93.8 343.8 125 531.3C166.1 777.9 281.3 875 375 875C437.5 875 500 812.5 500 812.5C500 812.5 562.5 875 625 875C718.8 875 833.9 777.9 875 531.3C906.3 343.8 812.5 250 687.5 250Z",
"width": 1000
},
"search": [
"apple"
]
},
{
"uid": "a5b7dbe1967966856d7228aec7d029f0",
"css": "application",
"code": 59397,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M1000 437.5V375H684.2C724.7 335.3 750 280 750 218.8C749.9 97.9 652.1 0 531.3 0C410.4 0 312.5 97.9 312.5 218.8C312.5 335.4 403.8 430.4 518.9 436.9L393.3 562.5H0V625H315.9C275.3 664.7 250 720 250 781.3C250.1 902 348 999.9 468.8 1000C589.5 999.9 687.4 902 687.5 781.3C687.4 664.7 596.1 569.7 481.1 563.2L606.7 437.5H1000ZM375 218.8C375.1 132.5 445 62.6 531.3 62.5C617.6 62.6 687.3 132.5 687.4 218.8H687.5C687.4 305 617.6 374.8 531.3 375C445 374.8 375.1 305.1 375 218.8ZM625 781.3C624.9 867.6 555 937.4 468.8 937.5C382.5 937.4 312.7 867.6 312.5 781.3C312.7 695 382.5 625.2 468.8 625C555 625.2 624.9 695 625 781.3Z",
"width": 1000
},
"search": [
"application"
]
},
{
"uid": "f084eda6cad657987f85c3e9cfbe4d20",
"css": "arrow_full_down",
"code": 59398,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 62.5L312.5 62.5L312.5 500L62.5 500L500 937.5L937.4 500L687.5 500Z",
"width": 1000
},
"search": [
"arrow_full_down"
]
},
{
"uid": "5ec99d511b8bf3e193addd368dc58d6c",
"css": "arrow_full_left",
"code": 59399,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 62.5L500 312.5L937.5 312.5L937.5 687.5L500 687.5L500 937.5L62.5 500Z",
"width": 1000
},
"search": [
"arrow_full_left"
]
},
{
"uid": "317c169352e3c8e2f98cdca6775f08d8",
"css": "arrow_full_lowerleft",
"code": 59400,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M125 250L312.5 437.5L625 125L875 375L562.5 687.5L750 875L125 875Z",
"width": 1000
},
"search": [
"arrow_full_lowerleft"
]
},
{
"uid": "1fe312418ea46ce8d01c32161cf83823",
"css": "arrow_full_lowerright",
"code": 59401,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 250L687.5 437.5L375 125L125 375L437.5 687.5L250 875L875 875Z",
"width": 1000
},
"search": [
"arrow_full_lowerright"
]
},
{
"uid": "8c2843d0a91eac03bc23ba8cfd25313c",
"css": "arrow_full_right",
"code": 59402,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 62.5L500 312.5L62.5 312.5L62.5 687.5L500 687.5L500 937.5L937.5 500Z",
"width": 1000
},
"search": [
"arrow_full_right"
]
},
{
"uid": "75213a7f0b2ebcd468bc4f756e50f2a8",
"css": "arrow_full_up",
"code": 59403,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M62.5 500L312.5 500L312.5 937.5L687.5 937.5L687.5 500L937.5 500L500 62.5Z",
"width": 1000
},
"search": [
"arrow_full_up"
]
},
{
"uid": "713106c821ce0ac302994ef80648415c",
"css": "arrow_full_upperleft",
"code": 59404,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M125 750L312.5 562.5L625 875L875 625L562.5 312.5L750 125L125 125Z",
"width": 1000
},
"search": [
"arrow_full_upperleft"
]
},
{
"uid": "95301ec8def1bd6d5c81b23a6c5054f2",
"css": "arrow_full_upperright",
"code": 59405,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 750L687.5 562.5L375 875L125 625L437.5 312.5L250 125L875 125Z",
"width": 1000
},
"search": [
"arrow_full_upperright"
]
},
{
"uid": "5a760ff3c9c3ff66558af14f98df61d6",
"css": "arrow_sans_down",
"code": 59406,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M62.6 312.5L500 750L937.6 312.5Z",
"width": 1000
},
"search": [
"arrow_sans_down"
]
},
{
"uid": "ca01eca4b316ef0f3cf1a6413e6192e3",
"css": "arrow_sans_left",
"code": 59407,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 62.5L250 500L687.5 937.5Z",
"width": 1000
},
"search": [
"arrow_sans_left"
]
},
{
"uid": "3181debcc1b8c6f00cb99b4a67cd2b3e",
"css": "arrow_sans_lowerleft",
"code": 59408,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M125 250L125 875L750 875Z",
"width": 1000
},
"search": [
"arrow_sans_lowerleft"
]
},
{
"uid": "a3b8885958ff1204b6ec6f1560f50643",
"css": "arrow_sans_lowerright",
"code": 59409,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 250L875 875L250 875Z",
"width": 1000
},
"search": [
"arrow_sans_lowerright"
]
},
{
"uid": "cdefa34c1c13439e1b45fcecfb92641b",
"css": "arrow_sans_right",
"code": 59410,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M312.5 62.5L750 500L312.5 937.5Z",
"width": 1000
},
"search": [
"arrow_sans_right"
]
},
{
"uid": "780f8e2769826cebe86451978b276023",
"css": "arrow_sans_up",
"code": 59411,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M937.5 687.5L500 250L62.5 687.5Z",
"width": 1000
},
"search": [
"arrow_sans_up"
]
},
{
"uid": "d77b3a209aa438e1f9b4e14d0b0ae5b9",
"css": "arrow_sans_upperleft",
"code": 59412,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M125 750L125 125L750 125Z",
"width": 1000
},
"search": [
"arrow_sans_upperleft"
]
},
{
"uid": "49a1b5c0f6b3a5e57f65a6bbee8d2a4b",
"css": "arrow_sans_upperright",
"code": 59413,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 750L875 125L250 125Z",
"width": 1000
},
"search": [
"arrow_sans_upperright"
]
},
{
"uid": "34618334a1da30146a8be44fd12245d9",
"css": "attachment",
"code": 59414,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M218.8 625C216.2 624.9 165.4 625.3 111 598.3L111 598.3C56.4 572.4-1.1 511.1 0 406.3L0 406.3C-1.1 301.5 56.4 240.2 111 214.3L111 214.3C165.4 187.3 216.2 187.7 218.8 187.5L218.8 187.5C218.8 187.5 843.8 187.5 906.3 187.5L906.3 187.5C948.6 186.4 978.6 212.7 988.9 236L988.9 236C1000.2 259.2 999.8 278.6 1000 281.3L1000 281.3L1000 406.3C999.8 408.9 1000.2 428.3 988.9 451.4L988.9 451.4C978.6 474.8 948.6 501.1 906.3 500L906.3 500C843.8 500 343.8 500 343.8 500L343.8 500C301.4 501.1 271.4 474.8 261.1 451.4L261.1 451.4C249.8 428.3 250.1 408.9 250 406.3L250 406.3C248.9 364 275.2 333.9 298.5 323.6L298.5 323.6C321.6 312.3 341.1 312.7 343.7 312.5L343.7 312.5H843.7V375H343.8C343.8 375.2 342.8 375 339.1 375.5L339.1 375.5C335.5 376.1 330.6 377.5 326.5 379.5L326.5 379.5C318.6 384.8 313.6 386 312.5 406.2L312.5 406.2C312.7 406.2 312.4 407.2 313.1 410.8L313.1 410.8C313.7 414.5 315 419.4 317 423.5L317 423.5C322.3 431.4 323.5 436.4 343.8 437.5L343.8 437.5C344.3 437.4 843.8 437.4 906.3 437.5L906.3 437.5C921.9 436.9 925.3 433.2 929.5 428.9L929.5 428.9C933.4 424.4 936.1 416.4 936.9 410.8L936.9 410.8C937.6 407.3 937.5 406.3 937.4 406.3L937.4 406.3L937.5 281.3C937.3 281.3 937.6 280.3 936.9 276.6L936.9 276.6C936.3 272.9 935 268.1 933 264L933 264C927.7 256.1 926.4 251.1 906.2 250L906.2 250C843.7 250 218.7 250 218.7 250L218.7 250C218.7 250.3 209.9 250 194.6 252.6L194.6 252.6C179.2 255.1 158.7 260.3 139 270.1L139 270.1C99.8 291.1 63.6 323.6 62.5 406.3L62.5 406.3C63 468.8 84.3 501.4 110.6 524L110.6 524C137.1 546.3 171.4 556.3 194.6 560L194.6 560C209.9 562.6 218.8 562.6 218.8 562.6L218.8 562.6H906.3V625H218.8L218.8 625Z",
"width": 1000
},
"search": [
"attachment"
]
},
{
"uid": "8d423770e197bac6b8902aa986f7874f",
"css": "attachment_add",
"code": 59415,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 687.5L562.5 687.5L562.5 750L687.5 750L687.5 875L750 875L750 750L875 750L875 687.5L750 687.5L750 562.5L687.5 562.5ZM895.3 500H906.2C948.6 501.1 978.5 474.8 988.9 451.5C1000.2 428.3 999.8 408.9 999.9 406.3L1000 281.3C999.8 278.7 1000.2 259.2 988.9 236C978.6 212.7 948.6 186.5 906.2 187.6C843.7 187.5 218.8 187.5 218.8 187.5C216.2 187.7 165.4 187.3 111 214.3C56.4 240.2-1.1 301.5 0 406.3C-1.1 511 56.4 572.4 111 598.3C165.4 625.3 216.2 624.9 218.8 625H453.8C443.4 654.3 437.5 685.8 437.5 718.8C437.5 874.1 563.3 999.9 718.8 1000C874.1 999.9 999.9 874.1 1000 718.8C1000 630.3 959.1 551.5 895.3 500ZM218.8 562.6C218.8 562.6 209.9 562.6 194.6 560C171.4 556.3 137.1 546.3 110.6 524C84.3 501.5 63 468.8 62.5 406.3C63.6 323.6 99.8 291.1 139 270.1C158.7 260.3 179.3 255.1 194.6 252.6C209.9 250 218.8 250.2 218.8 250C218.8 250 843.8 250 906.3 250C926.4 251.1 927.7 256.1 933 264C935 268.1 936.3 273 936.9 276.7C937.6 280.3 937.3 281.3 937.5 281.3L937.4 406.3C937.5 406.3 937.6 407.3 936.9 410.9C936.1 416.5 933.4 424.5 929.4 429C925.3 433.3 921.8 437 906.2 437.5C884.3 437.5 808.2 437.5 718.8 437.5C718.8 437.5 718.8 437.5 718.8 437.5C718.7 437.5 718.7 437.5 718.7 437.5C554 437.5 344.1 437.5 343.8 437.5C323.5 436.4 322.3 431.4 317 423.6C315 419.4 313.6 414.6 313.1 410.9C312.4 407.3 312.7 406.3 312.5 406.3C313.6 386.1 318.6 384.8 326.5 379.6C330.6 377.5 335.5 376.2 339.1 375.6C342.8 375 343.8 375.3 343.8 375.1H843.8V312.6H343.8C341.2 312.7 321.7 312.3 298.6 323.6C275.2 333.9 248.9 364 250 406.3C250.1 408.9 249.8 428.3 261.1 451.4C271.4 474.8 301.4 501.1 343.8 500C343.8 500 433.8 500 542.1 500C520 517.8 500.7 538.9 484.8 562.6H218.8ZM718.8 933.8C600 933.6 503.9 837.5 503.6 718.8C503.9 600 600 503.9 718.8 503.6C837.5 503.9 933.6 600 933.8 718.8C933.6 837.5 837.5 933.6 718.8 933.8Z",
"width": 1000
},
"search": [
"attachment_add"
]
},
{
"uid": "bdefad4ac7cc984614470a5a49a2cc62",
"css": "attachment_down",
"code": 59416,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M718.8 812.5L843.8 687.5L593.8 687.5ZM895.3 500H906.2C948.6 501.1 978.5 474.8 988.9 451.5C1000.2 428.3 999.8 408.9 999.9 406.3L1000 281.3C999.8 278.7 1000.2 259.2 988.9 236C978.6 212.7 948.6 186.5 906.2 187.6C843.7 187.5 218.8 187.5 218.8 187.5C216.2 187.7 165.4 187.3 111 214.3C56.4 240.2-1.1 301.5 0 406.3C-1.1 511 56.4 572.4 111 598.3C165.4 625.3 216.2 624.9 218.8 625H453.8C443.4 654.3 437.5 685.8 437.5 718.8C437.5 874.1 563.3 999.9 718.8 1000C874.1 999.9 999.9 874.1 1000 718.8C1000 630.3 959.1 551.5 895.3 500ZM218.8 562.6C218.8 562.6 209.9 562.6 194.6 560C171.4 556.3 137.1 546.3 110.6 524C84.3 501.5 63 468.8 62.5 406.3C63.6 323.6 99.8 291.1 139 270.1C158.7 260.3 179.3 255.1 194.6 252.6C209.9 250 218.8 250.2 218.8 250C218.8 250 843.8 250 906.3 250C926.4 251.1 927.7 256.1 933 264C935 268.1 936.3 273 936.9 276.7C937.6 280.3 937.3 281.3 937.5 281.3L937.4 406.3C937.5 406.3 937.6 407.3 936.9 410.9C936.1 416.5 933.4 424.5 929.4 429C925.3 433.3 921.8 437 906.2 437.5C884.3 437.5 808.2 437.5 718.8 437.5C718.8 437.5 718.8 437.5 718.8 437.5C718.7 437.5 718.7 437.5 718.7 437.5C554 437.5 344.1 437.5 343.8 437.5C323.5 436.4 322.3 431.4 317 423.6C315 419.4 313.6 414.6 313.1 410.9C312.4 407.3 312.7 406.3 312.5 406.3C313.6 386.1 318.6 384.8 326.5 379.6C330.6 377.5 335.5 376.2 339.1 375.6C342.8 375 343.8 375.3 343.8 375.1H843.8V312.6H343.8C341.2 312.7 321.7 312.3 298.6 323.6C275.2 333.9 248.9 364 250 406.3C250.1 408.9 249.8 428.3 261.1 451.4C271.4 474.8 301.4 501.1 343.8 500C343.8 500 433.8 500 542.1 500C520 517.8 500.7 538.9 484.8 562.6H218.8ZM718.8 933.8C600 933.6 503.9 837.5 503.6 718.8C503.9 600 600 503.9 718.8 503.6C837.5 503.9 933.6 600 933.8 718.8C933.6 837.5 837.5 933.6 718.8 933.8Z",
"width": 1000
},
"search": [
"attachment_down"
]
},
{
"uid": "e228fc95bcd0dfa4805ff0fdd56e11da",
"css": "avatar",
"code": 59417,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 562.5H752.9C790.4 464.5 812.4 348.4 812.5 231.3C812.5 175.4 797.1 122.9 770.3 77.8L755.5 52.9L729.6 65.7C729.6 65.7 713 73.9 687.2 84.5C641.3 32.7 574.6 0 500 0C425.4 0 358.5 32.8 312.7 84.6C286.9 74 270.2 65.8 270.2 65.8L244.2 53L229.4 77.9C202.8 123 187.5 175.6 187.5 231.3C187.6 348.4 209.6 464.5 247.1 562.5C139.2 562.5 125 562.5 125 562.5S0 567.7 0 687.5C0 750 0 1000 0 1000H1000V687.5C1000 687.5 1000 562.5 875 562.5ZM670.8 595.6C622.3 694.7 557.3 751.4 500 750C442.6 751.4 377.7 694.7 329.1 595.6C280.7 497.7 249.9 364 250 231.4C250 196.9 257.3 164.3 270.4 134.6C317.3 155.1 414.7 193.2 500 193.8C585.2 193.1 682.7 154.9 729.4 134.4C742.7 164.1 750 196.8 750 231.3C750.1 364 719.2 497.7 670.8 595.6ZM343.8 500C343.8 500 375 625 500 625C622.4 625 656.3 500 656.3 500S562.5 531.3 500 531.3S343.8 500 343.8 500ZM468.8 312.5C468.8 312.5 437.5 250 375 250S281.3 312.5 281.3 312.5S343.8 312.5 375 312.5S468.8 312.5 468.8 312.5ZM625 250C562.5 250 531.3 312.5 531.3 312.5S593.8 312.5 625 312.5S718.8 312.5 718.8 312.5S687.5 250 625 250Z",
"width": 1000
},
"search": [
"avatar"
]
},
{
"uid": "a7075a12b4c4f4f3add577626346069e",
"css": "avatar_edit",
"code": 59418,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M718.8 312.5C718.8 312.5 687.5 250 625 250C562.5 250 531.3 312.5 531.3 312.5C531.3 312.5 593.8 312.5 625 312.5C656.3 312.5 718.8 312.5 718.8 312.5ZM375 250C312.5 250 281.3 312.5 281.3 312.5C281.3 312.5 343.8 312.5 375 312.5C406.3 312.5 468.8 312.5 468.8 312.5C468.8 312.5 437.5 250 375 250ZM982.5 621.9C950.7 535.3 877.8 469 787.4 446.3C803.2 377.8 812.4 304.9 812.5 231.3C812.5 175.4 797.1 122.9 770.3 77.8L755.5 52.9L729.6 65.7C729.6 65.7 713 73.9 687.2 84.5C641.3 32.7 574.6 0 500 0C425.4 0 358.5 32.8 312.7 84.6C286.9 74 270.2 65.8 270.2 65.8L244.2 53L229.4 77.9C202.8 123 187.5 175.6 187.5 231.3C187.6 348.4 209.6 464.5 247.1 562.5C139.2 562.5 125 562.5 125 562.5C125 562.5 0 567.7 0 687.5C0 750 0 1000 0 1000H1000V687.5C1000 687.5 999.8 654.1 982.5 621.9ZM456.2 618.6C444.3 649.8 437.5 683.4 437.5 718.8C437.5 722.5 437.9 726.3 438.1 730C399.2 705.9 360.7 660.1 329.1 595.5C280.7 497.7 249.9 364 250 231.3C250 196.8 257.3 164.2 270.4 134.5C317.3 155 414.7 193.2 500 193.8C585.2 193.1 682.7 154.9 729.4 134.4C742.7 164.1 750 196.8 750 231.3C750 301.8 740.9 372.3 725.4 437.8C723.2 437.8 721 437.5 718.8 437.5C635.8 437.5 561.6 473.6 510.1 530.6C506.8 530.8 503.2 531.3 500 531.3C437.5 531.3 343.8 500 343.8 500C343.8 500 367.8 594 456.2 618.6ZM718.8 933.8C600 933.6 503.9 837.5 503.6 718.8C503.9 600 600 503.9 718.8 503.6C837.5 503.9 933.6 600 933.8 718.8C933.6 837.5 837.5 933.6 718.8 933.8ZM875 656.2L718.8 812.5L625 718.7L781.3 562.5ZM593.8 843.8L593.8 750L687.5 843.8Z",
"width": 1000
},
"search": [
"avatar_edit"
]
},
{
"uid": "2134837880c87bced7e2523c4089cf35",
"css": "avatar_information",
"code": 59419,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 875H750V687.5H687.5V875ZM687.5 562.5V625H750V562.5H687.5ZM718.8 312.5C718.8 312.5 687.5 250 625 250C562.5 250 531.3 312.5 531.3 312.5C531.3 312.5 593.8 312.5 625 312.5C656.3 312.5 718.8 312.5 718.8 312.5ZM375 250C312.5 250 281.3 312.5 281.3 312.5C281.3 312.5 343.8 312.5 375 312.5C406.3 312.5 468.8 312.5 468.8 312.5C468.8 312.5 437.5 250 375 250ZM982.5 621.9C950.7 535.3 877.8 469 787.4 446.3C803.2 377.8 812.4 304.9 812.5 231.3C812.5 175.4 797.1 122.9 770.3 77.8L755.5 52.9L729.6 65.7C729.6 65.7 713 73.9 687.2 84.5C641.3 32.7 574.6 0 500 0C425.4 0 358.5 32.8 312.7 84.6C286.9 74 270.2 65.8 270.2 65.8L244.2 53L229.4 77.9C202.8 123 187.5 175.6 187.5 231.3C187.6 348.4 209.6 464.5 247.1 562.5C139.2 562.5 125 562.5 125 562.5C125 562.5 0 567.7 0 687.5C0 750 0 1000 0 1000H1000V687.5C1000 687.5 999.8 654.1 982.5 621.9ZM456.2 618.6C444.3 649.8 437.5 683.4 437.5 718.8C437.5 722.5 437.9 726.3 438.1 730C399.2 705.9 360.7 660.1 329.1 595.5C280.7 497.7 249.9 364 250 231.3C250 196.8 257.3 164.2 270.4 134.5C317.3 155 414.7 193.2 500 193.8C585.2 193.1 682.7 154.9 729.4 134.4C742.7 164.1 750 196.8 750 231.3C750 301.8 740.9 372.3 725.4 437.8C723.2 437.8 721 437.5 718.8 437.5C635.8 437.5 561.6 473.6 510.1 530.6C506.8 530.8 503.2 531.3 500 531.3C437.5 531.3 343.8 500 343.8 500C343.8 500 367.8 594 456.2 618.6ZM718.8 933.8C600 933.6 503.9 837.5 503.6 718.8C503.9 600 600 503.9 718.8 503.6C837.5 503.9 933.6 600 933.8 718.8C933.6 837.5 837.5 933.6 718.8 933.8Z",
"width": 1000
},
"search": [
"avatar_information"
]
},
{
"uid": "bf670be627813be81bf98d627fb38e04",
"css": "backup",
"code": 59420,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M750 500L562.5 687.5L937.5 687.5ZM250 500L62.5 687.5L437.5 687.5ZM187.5 125V312.5H812.5V125H187.5ZM375 250H250V187.5H375V250ZM62.5 750V1000H937.5V750H62.5ZM250 937.5H125V875H250V937.5ZM62.5 437.5V0H937.5V437.5H62.5L62.5 437.5ZM875 375V62.5H125V375H875Z",
"width": 1000
},
"search": [
"backup"
]
},
{
"uid": "9d67161896b35c32ac179dba60a99e2f",
"css": "backup_pause",
"code": 59421,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 625L687.5 625L687.5 812.5L625 812.5ZM750 625L812.5 625L812.5 812.5L750 812.5ZM937.5 0H62.5V437.5H718.8H937.5V0ZM875 375H125V62.5H875V375ZM812.5 125H187.5V312.5H812.5V125ZM375 250H250V187.5H375V250ZM250 500L62.5 687.5H437.5L250 500ZM718.8 437.5C563.3 437.5 437.5 563.3 437.5 718.8C437.5 729.3 438.2 739.7 439.3 750C314.1 750 62.5 750 62.5 750V1000H937.5V895.3C976.5 847 1000 785.7 1000 718.8C999.9 563.3 874.1 437.5 718.8 437.5ZM250 937.5H125V875H250V937.5ZM718.8 933.8C600 933.6 503.9 837.5 503.6 718.8C503.9 600 600 503.9 718.8 503.6C837.5 503.9 933.6 600 933.8 718.8C933.6 837.5 837.5 933.6 718.8 933.8Z",
"width": 1000
},
"search": [
"backup_pause"
]
},
{
"uid": "dd29746e2f6a20d3091a4b704685128b",
"css": "backup_run",
"code": 59422,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M812.5 718.8L687.5 593.8L687.5 843.8ZM937.5 0H62.5V437.5H718.8H937.5V0ZM875 375H125V62.5H875V375ZM812.5 125H187.5V312.5H812.5V125ZM375 250H250V187.5H375V250ZM250 500L62.5 687.5H437.5L250 500ZM718.8 437.5C563.3 437.5 437.5 563.3 437.5 718.8C437.5 729.3 438.2 739.7 439.3 750C314.1 750 62.5 750 62.5 750V1000H937.5V895.3C976.5 847 1000 785.7 1000 718.8C999.9 563.3 874.1 437.5 718.8 437.5ZM250 937.5H125V875H250V937.5ZM718.8 933.8C600 933.6 503.9 837.5 503.6 718.8C503.9 600 600 503.9 718.8 503.6C837.5 503.9 933.6 600 933.8 718.8C933.6 837.5 837.5 933.6 718.8 933.8Z",
"width": 1000
},
"search": [
"backup_run"
]
},
{
"uid": "61ff082c4d5ed8d8a22e8868508b29a8",
"css": "backup_settings",
"code": 59423,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 750V687.5H823C821.1 680.8 818.5 674.6 815.4 668.5L852.5 631.4L808.2 587.2L771.8 623.7C764.9 619.8 757.7 616.8 750 614.5V562.5H687.5V614.4C680.4 616.6 673.6 619.4 667.2 622.9L631.5 587.3L587.3 631.5L622.9 667.1C619.4 673.6 616.6 680.3 614.4 687.5H562.5V750H614.4C616.7 757.7 619.8 765 623.7 771.8L587.3 808.2L631.4 852.4L668.5 815.3C674.5 818.5 680.8 821 687.4 823V875H750V823C757.2 820.8 763.9 818 770.3 814.5L808.2 852.4L852.4 808.2L814.5 770.3C818 763.9 820.8 757.1 823 750H875ZM718.7 765.6C692.8 765.5 671.9 744.6 671.8 718.7C671.9 692.8 692.8 671.9 718.7 671.8C744.6 671.9 765.5 692.8 765.6 718.7C765.5 744.6 744.6 765.5 718.7 765.6ZM937.5 0H62.5V437.5H718.8H937.5V0ZM875 375H125V62.5H875V375ZM812.5 125H187.5V312.5H812.5V125ZM375 250H250V187.5H375V250ZM250 500L62.5 687.5H437.5L250 500ZM718.8 437.5C563.3 437.5 437.5 563.3 437.5 718.8C437.5 729.3 438.2 739.7 439.3 750C314.1 750 62.5 750 62.5 750V1000H937.5V895.3C976.5 847 1000 785.7 1000 718.8C999.9 563.3 874.1 437.5 718.8 437.5ZM250 937.5H125V875H250V937.5ZM718.8 933.8C600 933.6 503.9 837.5 503.6 718.8C503.9 600 600 503.9 718.8 503.6C837.5 503.9 933.6 600 933.8 718.8C933.6 837.5 837.5 933.6 718.8 933.8Z",
"width": 1000
},
"search": [
"backup_settings"
]
},
{
"uid": "c051bf5970ca76841337703da1b1e4a8",
"css": "backup_stop",
"code": 59424,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 625L812.5 625L812.5 812.5L625 812.5ZM937.5 0H62.5V437.5H718.8H937.5V0ZM875 375H125V62.5H875V375ZM812.5 125H187.5V312.5H812.5V125ZM375 250H250V187.5H375V250ZM250 500L62.5 687.5H437.5L250 500ZM718.8 437.5C563.3 437.5 437.5 563.3 437.5 718.8C437.5 729.3 438.2 739.7 439.3 750C314.1 750 62.5 750 62.5 750V1000H937.5V895.3C976.5 847 1000 785.7 1000 718.8C999.9 563.3 874.1 437.5 718.8 437.5ZM250 937.5H125V875H250V937.5ZM718.8 933.8C600 933.6 503.9 837.5 503.6 718.8C503.9 600 600 503.9 718.8 503.6C837.5 503.9 933.6 600 933.8 718.8C933.6 837.5 837.5 933.6 718.8 933.8Z",
"width": 1000
},
"search": [
"backup_stop"
]
},
{
"uid": "c3add874b70339d91e47bda9e10be5e5",
"css": "badge_accept",
"code": 59425,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 718.8L812.5 593.8L875 656.3L687.5 843.8L562.5 718.8L625 656.3ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_accept"
]
},
{
"uid": "344e949bd4143c1cb6822ae47086d9a1",
"css": "badge_cancel",
"code": 59426,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M718.8 781.3L781.3 843.8L843.8 781.3L781.3 718.8L843.8 656.3L781.3 593.8L718.8 656.3L656.3 593.8L593.8 656.3L656.3 718.8L593.8 781.3L656.3 843.8ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_cancel"
]
},
{
"uid": "5510b00a9dd404ca98d8b1cc0bff729f",
"css": "badge_down",
"code": 59427,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M718.8 812.5L843.8 687.5L593.8 687.5ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_down"
]
},
{
"uid": "22cfb38c2995e621544797fc198bea6c",
"css": "badge_edit",
"code": 59428,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 656.2L718.8 812.5L625 718.7L781.3 562.5ZM593.8 750L687.5 843.8L593.8 843.8ZM718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8C999.9 874.1 874.1 999.9 718.8 1000ZM718.7 503.6C600 503.9 503.9 600 503.6 718.8C503.9 837.5 600 933.6 718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8C933.6 600 837.5 503.9 718.7 503.6Z",
"width": 1000
},
"search": [
"badge_edit"
]
},
{
"uid": "6308a88f1c22f320bc966062e9ffce34",
"css": "badge_eject",
"code": 59429,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M593.8 750L843.8 750L843.8 812.5L593.8 812.5ZM718.8 562.5L593.8 687.5L843.8 687.5ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_eject"
]
},
{
"uid": "1a5b2d2b150b047794c4f51a75c133b2",
"css": "badge_information",
"code": 59430,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8ZM687.5 875H750V687.5H687.5V875ZM687.5 562.5V625H750V562.5H687.5Z",
"width": 1000
},
"search": [
"badge_information"
]
},
{
"uid": "0795d39178b7ea5d2a1c4f5a5cfc83a7",
"css": "badge_minus",
"code": 59431,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M562.5 687.5L875 687.5L875 750L562.5 750ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_minus"
]
},
{
"uid": "5d9b6cbea17508cbae8544aac876a8ba",
"css": "badge_pause",
"code": 59432,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 625L687.5 625L687.5 812.5L625 812.5ZM750 625L812.5 625L812.5 812.5L750 812.5ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_pause"
]
},
{
"uid": "d4bbdff8fa0d471715d59b76ff8b56d2",
"css": "badge_plus",
"code": 59433,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 687.5L562.5 687.5L562.5 750L687.5 750L687.5 875L750 875L750 750L875 750L875 687.5L750 687.5L750 562.5L687.5 562.5ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_plus"
]
},
{
"uid": "5561daaf7024f77983c7f3cc28cfdf11",
"css": "badge_run",
"code": 59434,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M812.5 718.8L687.5 593.8L687.5 843.8ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_run"
]
},
{
"uid": "9e2eeae6739740ee28a50c67d0ed2e93",
"css": "badge_security",
"code": 59435,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M817 687.5C817.3 683.4 817.4 679.2 817.4 674.7C817.3 653.5 814.7 628.1 800.1 604.1C785.8 579.8 755.1 561.6 718.8 562.5C682.3 561.6 651.6 579.8 637.3 604.1C622.7 628.1 620.1 653.5 620 674.7C620 679.2 620.2 683.4 620.4 687.5H593.8V843.8H843.8V687.5H817ZM682.4 674.7C682.3 659.8 685.3 644.8 690.3 637.3C695.8 630.2 698.8 625.8 718.8 625C738.7 625.8 741.6 630.1 747 637.3C752.1 644.8 755.1 659.9 754.9 674.7C754.9 679.3 754.7 683.5 754.3 687.5H683C682.7 683.4 682.4 679.1 682.4 674.7ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_security"
]
},
{
"uid": "fb53dae30917769526d5a6d7a571b643",
"css": "badge_settings",
"code": 59436,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 750V687.5H823C821.1 680.8 818.5 674.6 815.4 668.5L852.5 631.4L808.2 587.2L771.8 623.7C764.9 619.8 757.7 616.8 750 614.5V562.5H687.5V614.4C680.4 616.6 673.6 619.4 667.2 622.9L631.5 587.3L587.3 631.5L622.9 667.1C619.4 673.6 616.6 680.3 614.4 687.5H562.5V750H614.4C616.7 757.7 619.8 765 623.7 771.8L587.3 808.2L631.4 852.4L668.5 815.3C674.5 818.5 680.8 821 687.4 823V875H750V823C757.2 820.8 763.9 818 770.3 814.5L808.2 852.4L852.4 808.2L814.5 770.3C818 763.9 820.8 757.1 823 750H875ZM718.7 765.6C692.8 765.5 671.9 744.6 671.8 718.7C671.9 692.8 692.8 671.9 718.7 671.8C744.6 671.9 765.5 692.8 765.6 718.7C765.5 744.6 744.6 765.5 718.7 765.6ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_settings"
]
},
{
"uid": "14e641588d2a450a32f0334317943bc2",
"css": "badge_stop",
"code": 59437,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 625L812.5 625L812.5 812.5L625 812.5ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_stop"
]
},
{
"uid": "a7c13685de333c27110030b5c7e931e3",
"css": "badge_up",
"code": 59438,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M718.8 625L593.8 750L843.8 750ZM437.5 718.8C437.5 563.3 563.3 437.5 718.8 437.5L718.8 437.5C874.1 437.5 999.9 563.3 1000 718.8L1000 718.8C999.9 874.1 874.1 999.9 718.8 1000L718.8 1000C563.3 999.9 437.5 874.1 437.5 718.8L437.5 718.8ZM503.6 718.8C503.9 837.5 600 933.6 718.8 933.8L718.8 933.8C837.5 933.6 933.6 837.5 933.8 718.8L933.8 718.8C933.6 600 837.5 503.9 718.8 503.6L718.8 503.6C600 503.9 503.9 600 503.6 718.8L503.6 718.8Z",
"width": 1000
},
"search": [
"badge_up"
]
},
{
"uid": "f4bcac2bc716c2ed46f41cbde352f03b",
"css": "baseball",
"code": 59439,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0C224.3 0 0 224.3 0 500S224.3 1000 500 1000S1000 775.7 1000 500S775.7 0 500 0ZM62.5 500C62.5 384.3 108 279.2 181.7 200.8C186.9 209.3 193.1 220.1 199.5 233.7L167.3 252L198 306.3L222.1 292.7C223.5 297.5 225 302.7 226.4 307.8L197.7 315.7L213.9 375.9L239.7 368.9C240.5 373.6 241.3 378.1 242 382.9L213.3 385.3L218.2 447.5L248.2 445.1C248.6 452.8 249 460.7 249.3 468.8H218.8V531.3H249.3C249 539.3 248.7 547.2 248.2 554.9L218.2 552.5L213.2 614.7L242 617.1C241.3 621.9 240.4 626.4 239.7 631.1L213.8 624L197.4 684.3L226.4 692.2C224.9 697.5 223.5 702.7 222 707.6L197.8 693.8L166.9 748.1L199.4 766.6C193 780.1 186.9 790.8 181.7 799.2C108 720.8 62.5 615.8 62.5 500ZM228.2 842.2C235.7 831.3 244.6 816.8 253.9 797.6L284.9 815.2L315.8 761L277.5 739.2C280.7 729.7 283.8 719.6 286.8 708.8L324.8 719.3L341.2 659.1L300.2 647.8C301.7 639.4 303.1 631 304.3 622.1L341.3 625.2L346.3 562.9L310.4 560C311 550.7 311.4 541.1 311.8 531.3H343.8V468.8H311.8C311.5 459 311.1 449.4 310.5 440.1L346.3 437.2L341.5 374.9L304.3 377.9C303.1 369.1 301.8 360.7 300.3 352.4L341.5 341.1L325.2 280.8L286.8 291.3C283.8 280.6 280.8 270.6 277.6 261.1L316.2 239.1L285.4 184.8L254.1 202.6C244.7 183.3 235.7 168.7 228.2 157.8C302.9 98.3 397.3 62.5 500 62.5C602.7 62.5 697.1 98.3 771.8 157.8C764.3 168.7 755.3 183.3 745.9 202.6L714.5 184.8L683.8 239.2L722.3 261.1C719.2 270.6 716.1 280.7 713.2 291.3L674.8 280.8L658.5 341.2L699.7 352.4C698.2 360.7 696.8 369.1 695.6 378L658.5 375L653.7 437.3L689.5 440.1C688.9 449.4 688.5 459 688.2 468.8H656.2V531.3H688.2C688.5 541.1 688.9 550.7 689.5 560L653.7 563L658.6 625.2L695.6 622.2C696.8 631 698.2 639.5 699.7 647.8L658.7 659.1L675 719.3L713.2 708.8C716.1 719.6 719.2 729.7 722.4 739.3L684.1 761L714.9 815.3L745.9 797.6C755.3 816.8 764.2 831.4 771.7 842.3C697.1 901.7 602.7 937.5 500 937.5C397.3 937.5 302.9 901.7 228.2 842.2ZM818.3 799.2C813.1 790.8 807 780.1 800.6 766.6L833 748.1L802.2 693.8L778 707.6C776.5 702.7 775 697.5 773.6 692.2L802.6 684.3L786.2 624L760.3 631.1C759.6 626.4 758.7 621.9 758 617.1L786.8 614.7L781.8 552.5L751.9 554.9C751.3 547.2 750.9 539.3 750.7 531.3H781.2V468.8H750.7C750.9 460.7 751.3 452.8 751.8 445.1L781.8 447.5L786.7 385.3L758 382.9C758.6 378.1 759.5 373.6 760.3 368.9L786 375.9L802.3 315.7L773.5 307.8C775 302.7 776.4 297.5 777.9 292.7L802 306.3L832.6 252L800.4 233.7C806.8 220.1 813 209.3 818.3 200.8C892 279.1 937.5 384.3 937.5 500S892 720.8 818.3 799.2Z",
"width": 1000
},
"search": [
"baseball"
]
},
{
"uid": "fc5d7c99279c05bc44455afc9e958be2",
"css": "basketball",
"code": 59440,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M146.5 146.5C52 240.9 0 366.4 0 500C0 633.5 52 759.1 146.5 853.5C240.9 948 366.4 1000 500 1000C633.5 1000 759.1 948 853.5 853.5C948 759.1 1000 633.5 1000 500C1000 366.4 948 240.9 853.5 146.5C759.1 52 633.5 0 500 0C366.4 0 240.9 52 146.5 146.5ZM468.8 64.5L468.8 302.7C425.9 298.8 384.9 285 352.5 261.7L217.8 166C288.6 106.1 376 71 468.8 64.5ZM531.3 64.5C623.2 70.9 709.7 105.1 780.3 164.1L653.3 255.9C618.7 281.1 575.7 296.4 531.3 301.8ZM825.2 208C890.4 280.6 928.7 371.6 935.5 468.8L531.3 468.8L531.3 364.3C588.6 358.6 644.9 339.8 690.4 306.6ZM172.9 210L316.4 312.5C359.5 343.4 413 359.9 468.8 364.3L468.8 468.8L64.5 468.8C71.2 372.4 108.6 282.2 172.9 210ZM64.5 531.3L468.8 531.3L468.8 636.7C415.7 643.8 364.5 662.6 322.3 693.4L179.7 796.9C111.5 723.4 71.4 630.8 64.5 531.3ZM531.3 531.3L935.5 531.3C929 625.2 893.4 712.8 832 784.2L696.3 687.5C650 654.3 591.4 636.3 531.3 633.8ZM531.3 697.3C578.6 699.6 624.7 712.8 660.2 738.3L787.1 829.1C715.3 891.9 626.4 928.9 531.3 935.5ZM468.8 700.2L468.8 935.5C379.3 929.3 295 896.9 225.6 840.8L358.4 744.1C389.9 721.3 428.7 706.7 468.8 700.2Z",
"width": 1000
},
"search": [
"basketball"
]
},
{
"uid": "79d1e5b40b9c4c81e310ff323eba8d94",
"css": "battery_1",
"code": 59441,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M125 250V375H0L0 625H125V750H1000V250H125ZM187.5 687.5V312.5H937.5V687.5H187.5ZM750 375L875 375L875 625L750 625Z",
"width": 1000
},
"search": [
"battery_1"
]
},
{
"uid": "8f16e38b75db6e26d8473e03236a66fd",
"css": "battery_2",
"code": 59442,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M125 250V375H0L0 625H125V750H1000V250H125ZM187.5 687.5V312.5H937.5V687.5H187.5ZM625 375L875 375L875 625L625 625Z",
"width": 1000
},
"search": [
"battery_2"
]
},
{
"uid": "2ee314e8ebead68c790e0f8b7900b239",
"css": "battery_3",
"code": 59443,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M125 250V375H0L0 625H125V750H1000V250H125ZM187.5 687.5V312.5H937.5V687.5H187.5ZM500 375L875 375L875 625L500 625Z",
"width": 1000
},
"search": [
"battery_3"
]
},
{
"uid": "91c139a1b45c7971d9a89ccd77b11dbd",
"css": "battery_4",
"code": 59444,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M375 375L875 375L875 625L375 625ZM187.5 687.5V312.5H937.5V687.5H187.5ZM125 250V375H0L0 625H125V750H1000V250H125Z",
"width": 1000
},
"search": [
"battery_4"
]
},
{
"uid": "dfad1249c3d00dae735a8a9a8efab064",
"css": "battery_empty",
"code": 59445,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M125 250V375H0L0 625H125V750H1000V250H125ZM187.5 687.5V312.5H937.5V687.5H187.5ZM562.5 437.5L500 375L375 375L500 500L375 625L500 625L562.5 562.5L625 625L750 625L625 500L750 375L625 375Z",
"width": 1000
},
"search": [
"battery_empty"
]
},
{
"uid": "052d952bb87eabbb2f8167a048ac22e6",
"css": "battery_full",
"code": 59446,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 375H250V625H875V375ZM125 250V375H0L0 625H125V750H1000V250H125ZM937.5 687.5H187.5V312.5H937.5V687.5Z",
"width": 1000
},
"search": [
"battery_full"
]
},
{
"uid": "45c787c738dabcd3a57beb4333b0f811",
"css": "battery_plugged",
"code": 59447,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M750 406.3L750 375L500 375L500 437.5L250 437.5L250 562.5L500 562.5L500 625L750 625L750 593.8L875 593.8L875 531.3L750 531.3L750 468.8L875 468.8L875 406.3ZM125 250V375H0L0 625H125V750H1000V250H125ZM187.5 687.5V312.5H937.5V687.5H187.5Z",
"width": 1000
},
"search": [
"battery_plugged"
]
},
{
"uid": "2e6fb6a33006a15e199986f1ebcf41ff",
"css": "bed",
"code": 59448,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 312.5V468.8C875 417 819 375 750 375S625 417 625 468.8C625 417 478.5 375 375 375S125 417 125 468.8V375H62.5V750H125V625H875V750H937.5V312.5H875Z",
"width": 1000
},
"search": [
"bed"
]
},
{
"uid": "bb964dbf1a3caabfc81d6d7f684edcbd",
"css": "book_audio",
"code": 59449,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M656.3 381.8L343.8 303.8V537C334 533.5 323.6 531.3 312.6 531.3C260.8 531.3 218.8 573.3 218.8 625C218.8 676.8 260.8 718.8 312.6 718.8C364.3 718.8 406.3 676.8 406.3 625V383.8L593.8 430.7V599.5C584 596 573.6 593.7 562.6 593.7C510.8 593.7 468.8 635.8 468.8 687.5C468.8 739.3 510.8 781.2 562.6 781.2C614.3 781.2 656.3 739.3 656.3 687.5V381.8ZM843.8 31.3V93.7H781.3V156.3H843.8V1031.3H93.8C93.8 1031.3 31.3 1031.3 31.3 968.8V125.6C31.3 125.4 31.3 125.2 31.3 125C30.2 82.7 56.5 52.7 79.9 42.3C103 31 122.4 31.4 125.1 31.3H843.8M124.9 156.3C125 156.3 125 156.3 125.1 156.3H718.8V93.7H125.1C125 93.9 124.1 93.7 120.4 94.3C116.8 94.9 111.8 96.2 107.8 98.2C99.8 103.6 94.8 104.8 93.8 125C94.3 140.6 98 144 102.3 148.2C106.8 152.2 114.8 154.8 120.4 155.7C123.4 156.2 124.5 156.3 124.9 156.3M156.3 968.8H781.3V218.8H156.3V968.8",
"width": 1000
},
"search": [
"book_audio"
]
},
{
"uid": "2f2cc52d764dd9a85d728709d2dafe07",
"css": "book_audio_add",
"code": 59450,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 687.5L562.5 687.5L562.5 750L687.5 750L687.5 875L750.1 875L750.1 750L875 750L875 687.5L750.1 687.5L750.1 562.5L687.5 562.5ZM1000 718.8C1000 596.4 921.7 492.6 812.6 453.8V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1.1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71.1 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.6 63.7 89.2 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C685.8 437.5 654.3 443.4 625 453.8V350.6L312.5 272.6V505.8C302.7 502.3 292.3 500 281.3 500C229.4 500 187.5 542.1 187.5 593.8C187.5 645.5 229.4 687.5 281.3 687.5C332.9 687.5 375 645.6 375 593.8L375 593.8V352.6L562.5 399.5V484.9C487.1 535.3 437.5 621.2 437.5 718.8C437.5 807.2 478.3 885.9 542.1 937.5H125.1ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_audio_add"
]
},
{
"uid": "2ddf8f0155b27ca91177f41a77a060a8",
"css": "book_audio_eject",
"code": 59451,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M593.8 750L843.8 750L843.8 812.5L593.8 812.5ZM718.8 562.5L593.8 687.5L843.8 687.5ZM1000 718.8C1000 596.4 921.7 492.6 812.6 453.8V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1.1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71.1 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.6 63.7 89.2 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C685.8 437.5 654.3 443.4 625 453.8V350.6L312.5 272.6V505.8C302.7 502.3 292.3 500 281.3 500C229.4 500 187.5 542.1 187.5 593.8C187.5 645.5 229.4 687.5 281.3 687.5C332.9 687.5 375 645.6 375 593.8L375 593.8V352.6L562.5 399.5V484.9C487.1 535.3 437.5 621.2 437.5 718.8C437.5 807.2 478.3 885.9 542.1 937.5H125.1ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_audio_eject"
]
},
{
"uid": "5deef39c0e908ac39dccadcca9706940",
"css": "book_audio_information",
"code": 59452,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 875H750V687.5H687.5V875ZM687.5 562.5V625H750V562.5H687.5ZM1000 718.8C1000 596.4 921.7 492.6 812.6 453.8V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1.1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71.1 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.6 63.7 89.2 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C685.8 437.5 654.3 443.4 625 453.8V350.6L312.5 272.6V505.8C302.7 502.3 292.3 500 281.3 500C229.4 500 187.5 542.1 187.5 593.8C187.5 645.5 229.4 687.5 281.3 687.5C332.9 687.5 375 645.6 375 593.8L375 593.8V352.6L562.5 399.5V484.9C487.1 535.3 437.5 621.2 437.5 718.8C437.5 807.2 478.3 885.9 542.1 937.5H125.1ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_audio_information"
]
},
{
"uid": "d8c16cb87f62655d6eb5f6ed594b4985",
"css": "book_audio_pause",
"code": 59453,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 625L687.5 625L687.5 812.5L625 812.5ZM750 625L812.5 625L812.5 812.5L750 812.5ZM1000 718.8C1000 596.4 921.7 492.6 812.6 453.8V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1.1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71.1 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.6 63.7 89.2 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C685.8 437.5 654.3 443.4 625 453.8V350.6L312.5 272.6V505.8C302.7 502.3 292.3 500 281.3 500C229.4 500 187.5 542.1 187.5 593.8C187.5 645.5 229.4 687.5 281.3 687.5C332.9 687.5 375 645.6 375 593.8L375 593.8V352.6L562.5 399.5V484.9C487.1 535.3 437.5 621.2 437.5 718.8C437.5 807.2 478.3 885.9 542.1 937.5H125.1ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_audio_pause"
]
},
{
"uid": "8d5c4f2aaa565f5e73d05399db111b48",
"css": "book_audio_remove",
"code": 59454,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M562.5 687.5L875 687.5L875 750L562.5 750ZM1000 718.8C1000 596.4 921.7 492.6 812.6 453.8V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1.1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71.1 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.6 63.7 89.2 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C685.8 437.5 654.3 443.4 625 453.8V350.6L312.5 272.6V505.8C302.7 502.3 292.3 500 281.3 500C229.4 500 187.5 542.1 187.5 593.8C187.5 645.5 229.4 687.5 281.3 687.5C332.9 687.5 375 645.6 375 593.8L375 593.8V352.6L562.5 399.5V484.9C487.1 535.3 437.5 621.2 437.5 718.8C437.5 807.2 478.3 885.9 542.1 937.5H125.1ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_audio_remove"
]
},
{
"uid": "ec41e2f4ac6e17cce700055d3f13726c",
"css": "book_audio_run",
"code": 59455,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M812.5 718.8L687.5 593.8L687.5 843.8ZM1000 718.8C1000 596.4 921.7 492.6 812.6 453.8V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1.1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71.1 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.6 63.7 89.2 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C685.8 437.5 654.3 443.4 625 453.8V350.6L312.5 272.6V505.8C302.7 502.3 292.3 500 281.3 500C229.4 500 187.5 542.1 187.5 593.8C187.5 645.5 229.4 687.5 281.3 687.5C332.9 687.5 375 645.6 375 593.8L375 593.8V352.6L562.5 399.5V484.9C487.1 535.3 437.5 621.2 437.5 718.8C437.5 807.2 478.3 885.9 542.1 937.5H125.1ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_audio_run"
]
},
{
"uid": "08977e2226672d67259b38084aafd840",
"css": "book_audio_security",
"code": 59456,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M817 687.6C817.3 683.5 817.4 679.2 817.4 674.8C817.3 653.6 814.7 628.2 800.1 604.2C785.8 579.8 755.1 561.7 718.8 562.5C682.3 561.7 651.6 579.8 637.3 604.2C622.7 628.2 620.1 653.6 620 674.8C620 679.3 620.2 683.5 620.4 687.6H593.8V843.8H843.8V687.6H817ZM682.4 674.8C682.3 659.8 685.3 644.8 690.3 637.3C695.8 630.3 698.8 625.9 718.8 625C738.7 625.9 741.6 630.2 747 637.3C752.1 644.8 755.1 659.9 754.9 674.8C754.9 679.3 754.7 683.5 754.3 687.6H683C682.7 683.5 682.4 679.2 682.4 674.8ZM1000 718.8C1000 596.4 921.7 492.6 812.6 453.8V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1.1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71.1 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.6 63.7 89.2 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C685.8 437.5 654.3 443.4 625 453.8V350.6L312.5 272.6V505.8C302.7 502.3 292.3 500 281.3 500C229.4 500 187.5 542.1 187.5 593.8C187.5 645.5 229.4 687.5 281.3 687.5C332.9 687.5 375 645.6 375 593.8L375 593.8V352.6L562.5 399.5V484.9C487.1 535.3 437.5 621.2 437.5 718.8C437.5 807.2 478.3 885.9 542.1 937.5H125.1ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_audio_security"
]
},
{
"uid": "9a6e66815abf22ac9ee9a4ff3825f633",
"css": "book_audio_settings",
"code": 59457,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M875 750V687.5H823C821.1 680.8 818.5 674.6 815.4 668.5L852.5 631.4L808.2 587.2L771.8 623.7C764.9 619.8 757.7 616.8 750 614.5V562.5H687.5V614.4C680.4 616.6 673.6 619.4 667.2 622.9L631.5 587.3L587.3 631.5L622.9 667.1C619.4 673.6 616.6 680.3 614.4 687.5H562.5V750H614.4C616.7 757.7 619.8 765 623.7 771.8L587.3 808.2L631.4 852.4L668.5 815.3C674.5 818.5 680.8 821 687.4 823V875H750V823C757.2 820.8 763.9 818 770.3 814.5L808.2 852.4L852.4 808.2L814.5 770.3C818 763.9 820.8 757.1 823 750H875ZM718.7 765.6C692.8 765.5 671.9 744.6 671.8 718.7C671.9 692.8 692.8 671.9 718.7 671.8C744.6 671.9 765.5 692.8 765.6 718.7C765.5 744.6 744.6 765.5 718.7 765.6ZM1000 718.8C1000 596.4 921.7 492.6 812.6 453.8V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1.1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71.1 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.6 63.7 89.2 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C685.8 437.5 654.3 443.4 625 453.8V350.6L312.5 272.6V505.8C302.7 502.3 292.3 500 281.3 500C229.4 500 187.5 542.1 187.5 593.8C187.5 645.5 229.4 687.5 281.3 687.5C332.9 687.5 375 645.6 375 593.8L375 593.8V352.6L562.5 399.5V484.9C487.1 535.3 437.5 621.2 437.5 718.8C437.5 807.2 478.3 885.9 542.1 937.5H125.1ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_audio_settings"
]
},
{
"uid": "695eb3d7cc760ee072f0c5ec9b7c6164",
"css": "book_audio_stop",
"code": 59458,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 625L812.5 625L812.5 812.5L625 812.5ZM1000 718.8C1000 596.4 921.7 492.6 812.6 453.8V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1.1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71.1 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.6 63.7 89.2 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C685.8 437.5 654.3 443.4 625 453.8V350.6L312.5 272.6V505.8C302.7 502.3 292.3 500 281.3 500C229.4 500 187.5 542.1 187.5 593.8C187.5 645.5 229.4 687.5 281.3 687.5C332.9 687.5 375 645.6 375 593.8L375 593.8V352.6L562.5 399.5V484.9C487.1 535.3 437.5 621.2 437.5 718.8C437.5 807.2 478.3 885.9 542.1 937.5H125.1ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_audio_stop"
]
},
{
"uid": "779acc20f6ee46ca709b24c92380b4eb",
"css": "book_image",
"code": 59459,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M656.3 406.3L593.8 406.3L531.3 343.8H406.3L343.8 406.3H281.3C281.3 406.3 218.8 406.3 218.8 468.8C218.8 502.1 218.8 615.8 218.8 656.3C218.8 718.8 281.3 718.8 281.3 718.8C281.3 718.8 613.8 718.8 656.3 718.8C718.8 718.8 718.8 656.3 718.8 656.3C718.8 656.3 718.8 531.3 718.8 468.8C718.8 406.3 656.3 406.3 656.3 406.3ZM468.8 656.3C416.9 656.3 375 614.3 375 562.5C375 510.8 416.9 468.8 468.8 468.8C520.5 468.8 562.5 510.8 562.5 562.5C562.5 614.3 520.5 656.3 468.8 656.3ZM843.8 31.3V93.7H781.3V156.3H843.8V1031.3H93.8C93.8 1031.3 31.3 1031.3 31.3 968.8V125.6C31.3 125.4 31.3 125.2 31.3 125C30.2 82.7 56.5 52.7 79.9 42.3C102.9 31 122.4 31.4 125.1 31.3H843.8M124.9 156.3C125 156.3 125.1 156.3 125.1 156.3H718.8V93.7H125.1C125 93.9 124.1 93.7 120.4 94.3C116.8 94.9 111.8 96.2 107.8 98.2C99.9 103.6 94.8 104.8 93.8 125C94.3 140.6 98 144 102.3 148.2C106.8 152.2 114.8 154.8 120.4 155.7C123.4 156.2 124.6 156.3 124.9 156.3M156.3 968.8H781.3V218.8H156.3V968.8",
"width": 1000
},
"search": [
"book_image"
]
},
{
"uid": "4f8b5d6e832ca2ea265829664bde4006",
"css": "book_image_add",
"code": 59460,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M750.1 750L875 750L875 687.5L750.1 687.5L750.1 562.5L687.5 562.5L687.5 687.5L562.5 687.5L562.5 750L687.5 750L687.5 875L750.1 875ZM1000 718.8C1000 596.4 921.7 492.5 812.6 453.9V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.5 63.7 89.1 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C708.3 437.5 697.9 438.2 687.7 439.3C687.7 438.7 687.5 438 687.5 437.5C687.5 375 625 375 625 375L562.5 375L500 312.5H375L312.5 375H250C250 375 187.5 375 187.5 437.5V625C187.5 687.5 250 687.5 250 687.5C250 687.5 344.6 687.5 439.3 687.5C438.2 697.8 437.5 708.2 437.5 718.8C437.5 807.2 478.3 886 542.1 937.5H125.1ZM454.5 623.3C449 624.3 443.3 625 437.5 625C385.7 625 343.8 583.1 343.8 531.3C343.8 479.5 385.7 437.5 437.5 437.5C482.4 437.5 520 469.3 529.1 511.5C495.9 541.9 470.1 580.1 454.5 623.3ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_image_add"
]
},
{
"uid": "bbb4df6f1a0ad40b074b887db8db30b6",
"css": "book_image_information",
"code": 59461,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.5 875H750V687.5H687.5V875ZM687.5 562.5V625H750V562.5H687.5ZM1000 718.8C1000 596.4 921.7 492.5 812.6 453.9V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.5 63.7 89.1 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C708.3 437.5 697.9 438.2 687.7 439.3C687.7 438.7 687.5 438 687.5 437.5C687.5 375 625 375 625 375L562.5 375L500 312.5H375L312.5 375H250C250 375 187.5 375 187.5 437.5V625C187.5 687.5 250 687.5 250 687.5C250 687.5 344.6 687.5 439.3 687.5C438.2 697.8 437.5 708.2 437.5 718.8C437.5 807.2 478.3 886 542.1 937.5H125.1ZM454.5 623.3C449 624.3 443.3 625 437.5 625C385.7 625 343.8 583.1 343.8 531.3C343.8 479.5 385.7 437.5 437.5 437.5C482.4 437.5 520 469.3 529.1 511.5C495.9 541.9 470.1 580.1 454.5 623.3ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [
"book_image_information"
]
},
{
"uid": "fb05c616705b86ee3785fcb0f9098fe5",
"css": "book_image_pause",
"code": 59462,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 625L687.5 625L687.5 812.5L625 812.5ZM750 625L812.5 625L812.5 812.5L750 812.5ZM1000 718.8C1000 596.4 921.7 492.5 812.6 453.9V125H750.1V62.5H812.6V0H93.8C91.2 0.1 71.7-0.3 48.6 11.1C25.3 21.4-1 51.4 0 93.8C0 93.9 0.1 94.1 0.1 94.3V937.5C0.1 1000 62.6 1000 62.6 1000H721.3L721.1 999.9C875.4 998.6 1000 873.3 1000 718.8ZM89.2 124.4C83.6 123.6 75.6 120.9 71 117C66.8 112.8 63 109.4 62.6 93.8C63.6 73.6 68.6 72.3 76.5 67C80.6 65 85.5 63.7 89.1 63.1C92.8 62.4 93.8 62.7 93.8 62.5H687.6V125H93.8C93.8 125 92.8 125.1 89.2 124.4ZM125.1 937.5V187.5H750.1V439.4C739.8 438.2 729.3 437.5 718.8 437.5C708.3 437.5 697.9 438.2 687.7 439.3C687.7 438.7 687.5 438 687.5 437.5C687.5 375 625 375 625 375L562.5 375L500 312.5H375L312.5 375H250C250 375 187.5 375 187.5 437.5V625C187.5 687.5 250 687.5 250 687.5C250 687.5 344.6 687.5 439.3 687.5C438.2 697.8 437.5 708.2 437.5 718.8C437.5 807.2 478.3 886 542.1 937.5H125.1ZM454.5 623.3C449 624.3 443.3 625 437.5 625C385.7 625 343.8 583.1 343.8 531.3C343.8 479.5 385.7 437.5 437.5 437.5C482.4 437.5 520 469.3 529.1 511.5C495.9 541.9 470.1 580.1 454.5 623.3ZM718.8 937.5C598 937.3 500.2 839.5 500 718.8C500.2 598 598 500.2 718.8 500C839.5 500.2 937.3 598 937.5 718.8C937.3 839.5 839.5 937.3 718.8 937.5Z",
"width": 1000
},
"search": [