-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
executable file
·1354 lines (1354 loc) · 54.2 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": "appfont",
"css_prefix_text": "icon-",
"css_use_suffix": false,
"hinting": true,
"units_per_em": 1000,
"ascent": 850,
"glyphs": [
{
"uid": "4838e87bb57a37a1ad9ff2af3ee6ef82",
"css": "add-contact",
"code": 59392,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M503.5-3.5A500 500 0 1 0 1003.5 496.5 500 500 0 0 0 503.5-3.5ZM384.5 700H300V615.5L550 365.5 633.5 450ZM700 394.5L654 440.5 559.5 346 605.5 300A25 25 0 0 1 641 300L700 359A25 25 0 0 1 700 394.5Z",
"width": 1000
},
"search": [
"add-contact"
]
},
{
"uid": "bb0500b93100a206140d4ff9521fe800",
"css": "add-people",
"code": 59393,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M631.5 500A175 175 0 1 0 456.5 325 175 175 0 0 0 631.5 500ZM237.5 412.5V281.5H150V412.5H19V500H150V631.5H237.5V500H369V412.5ZM631.5 587.5C514.5 587.5 281.5 646 281.5 762.5V850H981.5V762.5C981.5 646 750 587.5 631.5 587.5Z",
"width": 1000
},
"search": [
"add-people"
]
},
{
"uid": "781c1fb84a3cf13994feb423f823bae5",
"css": "all-accounts",
"code": 59394,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 1000A500 500 0 1 1 1000 500 500 500 0 0 1 500 1000ZM691.5 460A68 68 0 1 0 624.5 392 67 67 0 0 0 691.5 460ZM513.5 460A68 68 0 1 0 446.5 392 67 67 0 0 0 513 460ZM513.5 505.5C463.5 505.5 357.5 532 357.5 585V641.5H669.5V584.5C669 532 565 505.5 513 505.5ZM691.5 505.5L670 505.5A96 96 0 0 1 714 583.5V640H847.5V584.5C847.5 532 743 505.5 691.5 505.5ZM350 460A68 68 0 1 0 281.5 392 67.5 67.5 0 0 0 350 460ZM336.5 497C281.5 497 171 525 171 581V641H310.5V581A100 100 0 0 1 357 500Z",
"width": 1000
},
"search": [
"all-accounts"
]
},
{
"uid": "1bd069d374f0afb9ecd1cbda57ab15a3",
"css": "archive",
"code": 59395,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M974.5 124L897 30.5A80.5 80.5 0 0 0 833.5 0H166.5A82.5 82.5 0 0 0 100 30.5L25.5 124A109 109 0 0 0 0 194.5V889A111.5 111.5 0 0 0 111 1000H889A111.5 111.5 0 0 0 1000 889V194.5A109 109 0 0 0 974.5 124ZM500 805.5L194.5 500H389V389H611V500H805.5ZM118 111L163 55.5H829.5L879.5 111Z",
"width": 1000
},
"search": [
"archive"
]
},
{
"uid": "7372b8b35d7d0567c25c9890cbcb6082",
"css": "back",
"code": 59396,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M808.5 117.5L691.5 0 191.5 500 691.5 1000 809 882.5 427 500Z",
"width": 1000
},
"search": [
"back"
]
},
{
"uid": "0aa6d8f0b84a64b9c0c354469b0a6078",
"css": "calendar-contacts",
"code": 59397,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M329.5 679.5H671V416H329.5ZM573.5 464H623.5V514H573.5ZM473.5 464H523.5V514H473.5ZM373.5 464H423.5V514H373.5ZM500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM719.5 679.5A50 50 0 0 1 669.5 729.5H329.5A50 50 0 0 1 279.5 679.5V344A50 50 0 0 1 329.5 294H354V250H400V300H600V250H650V300H674.5A50 50 0 0 1 724.5 350Z",
"width": 1000
},
"search": [
"calendar-contacts"
]
},
{
"uid": "3124b92e22ba0378736a45ee5a030fc1",
"css": "calendar",
"code": 59398,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M360 450H260V550H360ZM560 450H460V550H560ZM760 450H660V550H760ZM860 100H810V0H710V100H310V0H210V100H160A100 100 0 0 0 60 200V900A100 100 0 0 0 160 1000H860A100 100 0 0 0 960 900V200A100 100 0 0 0 860 100ZM860 900H160V350H860Z",
"width": 1000
},
"search": [
"calendar"
]
},
{
"uid": "4957215fd7ed3da57e525e08eba8dc4e",
"css": "call",
"code": 59399,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM707.5 685.5A21.5 21.5 0 0 1 686 707 368.5 368.5 0 0 1 317 339 21.5 21.5 0 0 1 338.5 317.5H414.5A21.5 21.5 0 0 1 436 339 246 246 0 0 0 450 416 21 21 0 0 1 444.5 437.5L394.5 487.5A326 326 0 0 0 537.5 630.5L587.5 580.5A22 22 0 0 1 609.5 575.5 246 246 0 0 0 687 588 21.5 21.5 0 0 1 708.5 609.5Z",
"width": 1000
},
"search": [
"call"
]
},
{
"uid": "61d19b2c1c358806afe8647d4e3fe0cd",
"css": "camera",
"code": 59400,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M350 50L258.5 150H100A100 100 0 0 0 0 250V850A100 100 0 0 0 100 950H900A100 100 0 0 0 1000 850V250A100 100 0 0 0 900 150H741.5L650 50ZM500 800A250 250 0 1 1 750 550 250 250 0 0 1 500 800Z",
"width": 1000
},
"search": [
"camera"
]
},
{
"uid": "d4032b9e9e8bc304982f859e4d58dd68",
"css": "cancel",
"code": 59401,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM750 679.5L679.5 750 500 570.5 320.5 750 250 679.5 429.5 500 250 320.5 320.5 250 500 429.5 679.5 250 750 320.5 570.5 500Z",
"width": 1000
},
"search": [
"cancel"
]
},
{
"uid": "83f82c2560d247e64a0c966549f33d5c",
"css": "check",
"code": 59402,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 15A485 485 0 1 0 985 500 485.5 485.5 0 0 0 500 15ZM425 695L240 510 290 460 425 595 705 315 755 370Z",
"width": 1000
},
"search": [
"check"
]
},
{
"uid": "2b051bca642d78b6b14fb9dd3f390942",
"css": "contacts-perfil",
"code": 59403,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM500 300A100 100 0 1 1 400 400 100 100 0 0 1 500 300ZM700 700H300V650C300 583.5 433 550 500 550S700 583.5 700 650Z",
"width": 1000
},
"search": [
"contacts-perfil"
]
},
{
"uid": "b0d14f38fad84865788e740f5394d0a7",
"css": "contacts",
"code": 59404,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 500A250 250 0 1 0 250 250 250 250 0 0 0 500 500ZM500 625C333 625 0 709 0 875V1000H1000V875C1000 709 667 625 500 625Z",
"width": 1000
},
"search": [
"contacts"
]
},
{
"uid": "0564a22995f8b184e1271c6277f82a74",
"css": "delete",
"code": 59405,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M166.5 889A111.5 111.5 0 0 0 278 1000H722.5A111.5 111.5 0 0 0 833.5 889V222H166.5ZM889 55.5H694.5L639 0H361L305.5 55.5H111V166.5H889Z",
"width": 1000
},
"search": [
"delete"
]
},
{
"uid": "e3340641a528af31add8d6e43507852f",
"css": "dial",
"code": 59406,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 818A91 91 0 1 0 591 909 91 91 0 0 0 500 818ZM227.5 0A91 91 0 1 0 318 91 91 91 0 0 0 227.5 0ZM227.5 272.5A91 91 0 1 0 318 363.5 91 91 0 0 0 227.5 272.5ZM227.5 545A91 91 0 1 0 318.5 636 91 91 0 0 0 227.5 545.5ZM772.5 182A91 91 0 1 0 681.5 91 91 91 0 0 0 772.5 182ZM500 545.5A91 91 0 1 0 591 636.5 91 91 0 0 0 500 545.5ZM772.5 545.5A91 91 0 1 0 863.5 636.5 91 91 0 0 0 772.5 545.5ZM772.5 273A91 91 0 1 0 863.5 364 91 91 0 0 0 772.5 272.5ZM500 272.5A91 91 0 1 0 591 363.5 91 91 0 0 0 500 272.5ZM500 0A91 91 0 1 0 591 91 91 91 0 0 0 500 0Z",
"width": 1000
},
"search": [
"dial"
]
},
{
"uid": "2a690f0d6ed71f3f8fd21c582e016d99",
"css": "edit",
"code": 59407,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M0 791.5V1000H208.5L822.5 385.5 614.5 177.5ZM984 224.5A55.5 55.5 0 0 0 984 146L854 16A55.5 55.5 0 0 0 775.5 16L675.5 116 884 324.5Z",
"width": 1000
},
"search": [
"edit"
]
},
{
"uid": "8eba23060932ade2af48ad04e721207b",
"css": "email",
"code": 59408,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M80.5 168.5H920L520 490.5A50 50 0 0 1 476 490.5L76 167ZM911 831.5L81 828A55.5 55.5 0 0 1 25 773V223A53.5 53.5 0 0 1 29.5 200L444.5 535.5A100 100 0 0 0 550.5 535.5L555 532.5 968 200A53.5 53.5 0 0 1 972.5 222S975 609 975 787C975 831.5 911 831.5 911 831.5Z",
"width": 1000
},
"search": [
"email"
]
},
{
"uid": "d43dda3c08b28bf7b4b4126c64e908b6",
"css": "emojis",
"code": 59409,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM500 900A400 400 0 1 1 900 500 400 400 0 0 1 500 900ZM675 450A75 75 0 1 0 600 375 75 75 0 0 0 675 450ZM325 450A75 75 0 1 0 250 375 75 75 0 0 0 325 450ZM500 775A275 275 0 0 0 755.5 600H244.5A275 275 0 0 0 500 775Z",
"width": 1000
},
"search": [
"emojis"
]
},
{
"uid": "9f8d09e37147356d4a6bfdc0c1b3b3bb",
"css": "exchange",
"code": 59411,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M22 134V855L554 947V42ZM379.5 684L179.5 665V284.5L373.5 263.5V340L253.5 350V436L363.5 433V509L253.5 509V600L379.5 607ZM924.5 218H604.5V285.5H618A12 12 0 0 1 626.5 289L676.5 339A8.5 8.5 0 0 1 676.5 350.5L659 368A8.5 8.5 0 0 1 647.5 368L626 346.5H607V472.5C640 502 668 522.5 657 533.5S630.5 530 607 514V645H615C674.5 600.5 723 520 737.5 534S637.5 701.5 625.5 703.5H607V770.5H927A50 50 0 0 0 974.5 723V265.5A50 50 0 0 0 924.5 218ZM905 645V691.5A12 12 0 0 1 893 703.5H774A12 12 0 0 1 765.5 700L715.5 650A8.5 8.5 0 0 1 715.5 638.5L733 621A8.5 8.5 0 0 1 744.5 621L766 642.5H844V577.5C800 518 721.5 469.5 735 455S902.5 555 904.5 567ZM905 345V416.5A12 12 0 0 1 901.5 425L851.5 475A8.5 8.5 0 0 1 840 475L822.5 457.5A8.5 8.5 0 0 1 822.5 446L844 424.5 844 424.5V344H779.5C720 388.5 671.5 469 657 455S757 287.5 769 285.5H893A12 12 0 0 1 905 297.5Z",
"width": 1000
},
"search": [
"exchange"
]
},
{
"uid": "b092a3976fecdea57cf5fc3c99c92093",
"css": "linkdin",
"code": 59431,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M553.5 439V439L553.5 439ZM500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM368 746.5H250V387H368ZM308 338H308A62.5 62.5 0 1 1 308 214 62.5 62.5 0 1 1 308 338ZM800 746.5H679V554C679 504 661.5 472.5 618.5 472.5A65.5 65.5 0 0 0 557 516 82 82 0 0 0 553 545V745H434S434 419.5 434 385.5H553.5V435.5A118.5 118.5 0 0 1 661 376C739.5 376 798.5 426 798.5 538Z",
"width": 1000
},
"search": [
"linkdin"
]
},
{
"uid": "06c838d026bae67283f6f78134d45013",
"css": "outing-call",
"code": 59451,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M736.5 24H1000V287.5H956V121.5L656 426.5 619 389.5 924 68H736.5ZM572 661L762.5 486V966.5L572 791.5V952.5A42.5 42.5 0 0 1 531 996H41A42.5 42.5 0 0 1 0 953V516A42.5 42.5 0 0 1 41 472.5H531S573 484 572 508Z",
"width": 1000
},
"search": [
"outing-call"
]
},
{
"uid": "d1f2beb48722fa35ff46962c28011d11",
"css": "text-format-italic",
"code": 59471,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M400 150V300H510.5L339.5 700H200V850H600V700H489.5L660.5 300H800V150Z",
"width": 1000
},
"search": [
"text-format-italic"
]
},
{
"uid": "02dcf24c13360ac1f066e56c1a2ce910",
"css": "options",
"code": 59450,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 300A100 100 0 1 0 400 200 100 100 0 0 0 500 300ZM500 400A100 100 0 1 0 600 500 100 100 0 0 0 500 400ZM500 700A100 100 0 1 0 600 800 100 100 0 0 0 500 700Z",
"width": 1000
},
"search": [
"options"
]
},
{
"uid": "f338cc61a064393be18fa03893a47b98",
"css": "information",
"code": 59430,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM550 750H450V450H550ZM550 350H450V250H550Z",
"width": 1000
},
"search": [
"information"
]
},
{
"uid": "b08e18bbcb33a236521cc432337b61fa",
"css": "entrance-call",
"code": 59410,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M859.5 391.5H603V135.5H645.5V297L937.5 0 973.5 36 676.5 350H859.5ZM557 673.5L742.5 503.5V971.5L557 800V956.5A41.5 41.5 0 0 1 517 999H40A41.5 41.5 0 0 1 0 956.5V532A41.5 41.5 0 0 1 40 489.5H517S558 501 557 524.5Z",
"width": 1000
},
"search": [
"entrance-call"
]
},
{
"uid": "d668e7024d7f01924402b75ab210b807",
"css": "inbox",
"code": 59429,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M889 0H110.5A110 110 0 0 0 0 111V889A110.5 110.5 0 0 0 110.5 1000H889A111.5 111.5 0 0 0 1000 889V111A111 111 0 0 0 889 0ZM889 666.5H666.5A166.5 166.5 0 1 1 333 666.5H110.5V111H889Z",
"width": 1000
},
"search": [
"inbox"
]
},
{
"uid": "e7a6d30997ae1c95e2c270a57d856579",
"css": "icloud",
"code": 59428,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M800 420.5A304.5 304.5 0 0 0 230 339 243.5 243.5 0 0 0 256.5 825H784.5A202.5 202.5 0 0 0 800 420.5Z",
"width": 1000
},
"search": [
"icloud"
]
},
{
"uid": "21c5ce9d71175683ed8b417ee42844f0",
"css": "help",
"code": 59426,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM550 850H450V750H550ZM653.5 462.5L608.5 508.5A170 170 0 0 0 550 650H450V625A200 200 0 0 1 508.5 483.5L570.5 420.5A100 100 0 0 0 600 350 100 100 0 0 0 400 350H300A200 200 0 0 1 700 350 159 159 0 0 1 653.5 462.5Z",
"width": 1000
},
"search": [
"help"
]
},
{
"uid": "57ce00df981008b67b5a34a938b2de9c",
"css": "holiday",
"code": 59427,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M1000 500L894.5 407.5 950 277.5 816 241.5 812 100 676 127 611 0 500 85 389 0 324.5 126 188 100 183.5 241 50 277.5 106 407.5 0 500 105.5 592.5 50 722.5 184 758.5 188 900 324 873 389 1000 500 915 611 1000 675.5 874 811.5 901 816 759 950 722.5 894 592.5ZM500 833.5A333.5 333.5 0 1 1 833.5 500 333.5 333.5 0 0 1 500 833.5Z",
"width": 1000
},
"search": [
"holiday"
]
},
{
"uid": "ef28bf2632b4ffab97bd5b9985f43966",
"css": "gym",
"code": 59425,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M53.5 486.5V254.5H18A18.5 18.5 0 0 0 0 274V467A18.5 18.5 0 0 0 18 486.5ZM196.5 293V119.5A18.5 18.5 0 0 0 178.5 100H107A18.5 18.5 0 0 0 89 119.5V619.5A18.5 18.5 0 0 0 107 639H178.5A18.5 18.5 0 0 0 196.5 619.5V293ZM535.5 196.5V312.5A20.5 20.5 0 0 0 535.5 320.5L535.5 320.5A19 19 0 0 0 538.5 325L538.5 325 542.5 325H550L553.5 325 556.5 325 556.5 325A23 23 0 0 0 564.5 307V196.5A18 18 0 1 0 529 196.5ZM464.5 196.5V312.5A18 18 0 1 0 500 312.5V196.5A18 18 0 1 0 464.5 196.5ZM393 196.5V312.5A18 18 0 1 0 428.5 312.5V196.5A18 18 0 1 0 393 196.5ZM321.5 293H321.5V310A23 23 0 0 0 329.5 328L329.5 328 332.5 328 336 328H345L349 328 349 328A19.5 19.5 0 0 0 352 323.5L352 323.5A20.5 20.5 0 0 0 352 315.5V196.5A18 18 0 1 0 316.5 196.5ZM232 428.5H582L607 401V332A20 20 0 0 0 607 325 57.5 57.5 0 0 1 581 363L577.5 363 574 363 567.5 363H550L543.5 363 539 363 533 360.5 529 360.5 524 356.5 524 356.5 524 356.5 520.5 359 517 361.5 511.5 364.5 508 364.5 501.5 364.5 498 364.5 487.5 364.5 477 364.5 473.5 364.5 467 364.5 463.5 364.5 458.5 361.5 450 358.5 446.5 356 443 358.5 439.5 361 434.5 364 431 364 424.5 364 421 364 410.5 364 400 369.5 396.5 369.5 390 369.5 386.5 369.5 381 366.5 377.5 364 375 355.5 375 355.5 375 355.5 370 359.5 366 359.5 360 362 350 368.5 343.5 368.5H329.5L326 368.5 320 368.5 315 368.5 312 368.5A59 59 0 0 1 285.5 318.5H232ZM696.5 444.5V300A12 12 0 0 0 696.5 295L690 276.5A89.5 89.5 0 0 0 608.5 215.5V277.5A57.5 57.5 0 0 1 644 332V400A40 40 0 0 1 633.5 427.5L608.5 455A34.5 34.5 0 0 1 583.5 466.5H310L319.5 499 369.5 569A20.5 20.5 0 0 1 373 582.5L342 937A11.5 11.5 0 0 0 344.5 945.5 9.5 9.5 0 0 0 350 950H592A9.5 9.5 0 0 0 599.5 946.5 11.5 11.5 0 0 0 602 938L573 600A50 50 0 0 1 589 557.5L689 466.5A31.5 31.5 0 0 0 696.5 444.5ZM910.5 235V119.5A18.5 18.5 0 0 0 893 100H821.5A18.5 18.5 0 0 0 803.5 119.5V619.5A18.5 18.5 0 0 0 821.5 639H893A18.5 18.5 0 0 0 911 619.5V235ZM1000 467V274A18.5 18.5 0 0 0 982 254.5H946.5V486.5H982A18.5 18.5 0 0 0 1000 467Z",
"width": 1000
},
"search": [
"gym"
]
},
{
"uid": "708c7024c521abe233b32dbcc1ef1df5",
"css": "groups-contacts",
"code": 59424,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M682 472.5A136.5 136.5 0 1 0 545.5 336 136 136 0 0 0 682 472.5ZM318.5 472.5A136.5 136.5 0 1 0 182 336.5 136 136 0 0 0 318 472.5ZM318.5 563.5C212.5 563.5 0 617 0 722.5V836H636.5V722.5C636.5 617 424 563.5 318 563.5ZM682 563.5C669 563.5 654 563.5 638 563.5A192 192 0 0 1 727.5 720.5V834H1000V722.5C1000 617 787.5 563.5 682 563.5Z",
"width": 1000
},
"search": [
"groups-contacts"
]
},
{
"uid": "89cc2802fb4e73901c6ddbef9a685cb7",
"css": "group-messages",
"code": 59423,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M950 200H850V650H200V750A50 50 0 0 0 250 800H800L1000 1000V250A50 50 0 0 0 950 200ZM750 500V50A50 50 0 0 0 700 0H50A50 50 0 0 0 0 50V750L200 550H700A50 50 0 0 0 750 500Z",
"width": 1000
},
"search": [
"group-messages"
]
},
{
"uid": "6572638036750111803a100ce663eebe",
"css": "expand-less",
"code": 59412,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M882.5 808.5L1000 691 500 191 0 691 117.5 808.5 500 427Z",
"width": 1000
},
"search": [
"expand-less"
]
},
{
"uid": "525fab9349049c49000f6ec96dcaa77f",
"css": "expand-more",
"code": 59413,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M117.5 191.5L0 308.5 500 808.5 1000 308.5 882.5 191.5 500 573Z",
"width": 1000
},
"search": [
"expand-more"
]
},
{
"uid": "db58182698de88bfe29eb6be1efa00da",
"css": "facebook",
"code": 59414,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M338.5 1000H556.5V496H706.5L722.5 327H556.5V231C556.5 191 565 175.5 606.5 175.5H725V0H575C411.5 0 338.5 66 338.5 192.5V327H225V500H338.5Z",
"width": 1000
},
"search": [
"facebook"
]
},
{
"uid": "2a58cc04a21acb6d8d94e6a36cce09f8",
"css": "favourite",
"code": 59415,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M508 967.5L434.5 902.5C173 673.5 0 522.5-3 333.5A272.5 272.5 0 0 1 267 54 300 300 0 0 1 494 154 300 300 0 0 1 717 46 272.5 272.5 0 0 1 996.5 316C1000 505.5 832.5 662.5 579.5 900Z",
"width": 1000
},
"search": [
"favourite"
]
},
{
"uid": "bb194e59662820d73deae74ce6bed342",
"css": "favourites",
"code": 59416,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 759.5L778 927.5 704 611 950 400 626.5 372.5 500 72.5 373.5 372.5 50 400 295.5 613 222 927.5Z",
"width": 1000
},
"search": [
"favourites"
]
},
{
"uid": "be542fc17bad5ab01d846b9ba42dc516",
"css": "feedback",
"code": 59417,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M883.5 21H116.5A95.5 95.5 0 0 0 21.5 116.5V979L213 787.5H883.5A96 96 0 0 0 979.5 691.5V116.5A96 96 0 0 0 883.5 21ZM550 596H450V500H550ZM550 404.5H450V212.5H550Z",
"width": 1000
},
"search": [
"feedback"
]
},
{
"uid": "78412b15830ddb864e5b255d1ec0bac8",
"css": "flag",
"code": 59418,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M607 134L584.5 21.5H78V978.5H190.5V584.5H505.5L528 697H922V134Z",
"width": 1000
},
"search": [
"flag"
]
},
{
"uid": "0166aa5ba9f014edf58c120dc6300765",
"css": "flight-",
"code": 59419,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M983.5 104.5A80 80 0 0 0 874.5 89L633 258 183 83 95 145 435 395 193.5 566 70 529.5 4 575.5 150 689 207 863.5 273 817.5 281.5 689 523 520 643.5 925.5 731.5 864 721 381.5 962.5 212.5A80 80 0 0 0 983.5 104.5Z",
"width": 1000
},
"search": [
"flight-"
]
},
{
"uid": "6bcbaf8730e79625f1b589501306c61c",
"css": "flight",
"code": 59420,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M975 700V600L575 350V75A75 75 0 0 0 425 75V350L25 600V700L425 575V850L325 925V1000L500 950 675 1000V925L575 850V575Z",
"width": 1000
},
"search": [
"flight"
]
},
{
"uid": "4c0fff90b2453f9b5d12318461a11fe8",
"css": "gmail",
"code": 59421,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M950 294.5H950V273A74 74 0 0 0 876 200H876L500 477.5 124 200A74 74 0 0 0 50 273V777A74 74 0 0 0 124 850H150V365.5L500 608 850 368H850V850C927.5 850 950 830 950 776.5Z",
"width": 1000
},
"search": [
"gmail"
]
},
{
"uid": "f23145f07146bd698efac0a5f26710d8",
"css": "go-to..",
"code": 59422,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M850 850H150V150H500V50H150A100 100 0 0 0 50 150V850A100 100 0 0 0 150 950H850A100 100 0 0 0 950 850V500H850ZM600 50V150H779.5L288 641.5 358.5 712 850 220.5V400H950V50Z",
"width": 1000
},
"search": [
"go-to.."
]
},
{
"uid": "a814ff236c07803411d27324e9d569d7",
"css": "llamada-entrante",
"code": 59432,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M14.5 250H14.5A44.5 44.5 0 0 1 27.5 218 45 45 0 0 1 59.5 204.5H217.5A45 45 0 0 1 250 219 44.5 44.5 0 0 1 263 250 533 533 0 0 0 289 395 45.5 45.5 0 0 1 278 441.5L178 541.5A674.5 674.5 0 0 0 302 711.5 661 661 0 0 0 472.5 835L572.5 735A45 45 0 0 1 619 724 516.5 516.5 0 0 0 763 750 46.5 46.5 0 0 1 794.5 763.5 45 45 0 0 1 808 795.5V954A46 46 0 0 1 762.5 999.5 769.5 769.5 0 0 1 14.5 250ZM824.5 483H500V161.5H564.5V374.5L940 0 985.5 45.5 611.5 420H824.5Z",
"width": 1000
},
"search": [
"llamada-entrante"
]
},
{
"uid": "67b6e134a8498e0c24570edcd408d12b",
"css": "llamada-saliente",
"code": 59433,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M14.5 250H14.5A44.5 44.5 0 0 1 27.5 218 45 45 0 0 1 59.5 204.5H217.5A45 45 0 0 1 250 219 44.5 44.5 0 0 1 263 250 533 533 0 0 0 289 395 45.5 45.5 0 0 1 278 441.5L178 541.5A674.5 674.5 0 0 0 302 711.5 661 661 0 0 0 472.5 835L572.5 735A45 45 0 0 1 619 724 516.5 516.5 0 0 0 763 750 46.5 46.5 0 0 1 794.5 763.5 45 45 0 0 1 808 795.5V954A46 46 0 0 1 762.5 999.5 769.5 769.5 0 0 1 14.5 250ZM664.5 0H987.5V323H921V110L547 484.5 500 439 874.5 64.5H663Z",
"width": 1000
},
"search": [
"llamada-saliente"
]
},
{
"uid": "cd7acfb518267a1a67304ed9a571911b",
"css": "llamada",
"code": 59434,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M200 433A841.5 841.5 0 0 0 567 800L689 678A55 55 0 0 1 745.5 664.5 633.5 633.5 0 0 0 945.5 696 55.5 55.5 0 0 1 1000 750V944A55.5 55.5 0 0 1 944.5 1000 944.5 944.5 0 0 1 0 55.5 55.5 55.5 0 0 1 55.5 0H250A55.5 55.5 0 0 1 305.5 55.5 631 631 0 0 0 337 255.5 56 56 0 0 1 323 312Z",
"width": 1000
},
"search": [
"llamada"
]
},
{
"uid": "aa4ecdc4c065e5564a53bf6354062e7a",
"css": "mail",
"code": 59436,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM279.5 306.5H721L511.5 476A25 25 0 0 1 488.5 476L277.5 306.5ZM716.5 674.5L279.5 674.5A29 29 0 0 1 250 643.5V354.5A28.5 28.5 0 0 1 250 343L468.5 519.5A50 50 0 0 0 524.5 519.5L524.5 519.5 741.5 344A28 28 0 0 1 741.5 355.5S741.5 559 741.5 653C750 674.5 716.5 674.5 716.5 674.5Z",
"width": 1000
},
"search": [
"mail"
]
},
{
"uid": "e64a85fe438524b1b103deec971182f8",
"css": "location",
"code": 59435,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0A350 350 0 0 0 150 350C150 612.5 500 1000 500 1000S850 612.5 850 350A350 350 0 0 0 500 0ZM500 475A125 125 0 1 1 625 350 125 125 0 0 1 500 475Z",
"width": 1000
},
"search": [
"location"
]
},
{
"uid": "3bd16609e061cf148ba9f64716e8c173",
"css": "media",
"code": 59437,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M950 850V150A100 100 0 0 0 850 50H150A100 100 0 0 0 50 150V850A100 100 0 0 0 150 950H850A100 100 0 0 0 950 850ZM325 575L450 725 625 500 850 800H150Z",
"width": 1000
},
"search": [
"media"
]
},
{
"uid": "0d018f6de1f77c006494afc28029b318",
"css": "meeting",
"code": 59438,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M890 730.5A146.5 146.5 0 0 0 883 500H883A384 384 0 0 0 500 119 400 400 0 0 0 350 147H350A146.5 146.5 0 1 0 110 258 205.5 205.5 0 0 0 0 439.5V500A29.5 29.5 0 0 0 29.5 529.5H118.5A384 384 0 0 0 500 881 425.5 425.5 0 0 0 594 871 205.5 205.5 0 0 0 590 912.5V971A29.5 29.5 0 0 0 619.5 1000.5H969.5A29.5 29.5 0 0 0 999 971V912A205.5 205.5 0 0 0 890 730.5ZM500 822.5A324.5 324.5 0 0 1 177 527.5H381A29.5 29.5 0 0 0 410 500V439.5A205.5 205.5 0 0 0 300 258 150 150 0 0 0 329.5 223.5 328 328 0 0 1 823 473.5 146.5 146.5 0 0 0 700 730.5 206.5 206.5 0 0 0 623 800 337 337 0 0 1 500 822.5Z",
"width": 1000
},
"search": [
"meeting"
]
},
{
"uid": "423ffebff35178cef743256ae3ef5ee4",
"css": "messages-contacts",
"code": 59439,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM717 614.5A43.5 43.5 0 0 1 673.5 658H370L283 744.5V354.5A43.5 43.5 0 0 1 326 311H673A43.5 43.5 0 0 1 716.5 354.5Z",
"width": 1000
},
"search": [
"messages-contacts"
]
},
{
"uid": "9510df413788dfc4111e69ce10c66879",
"css": "messages",
"code": 59440,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M900 0H100A100 100 0 0 0 0 100V1000L200 800H900A100 100 0 0 0 1000 700V100A100 100 0 0 0 900 0Z",
"width": 1000
},
"search": [
"messages"
]
},
{
"uid": "2a19f54e9f9f7aeb43fa1854d189c741",
"css": "microphone-off",
"code": 59442,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M850 475H765A255.5 255.5 0 0 1 743.5 577.5L805 639A329.5 329.5 0 0 0 850 475ZM650 483.5C650 480.5 650 478 650 475V175A150 150 0 0 0 350 175V184ZM113.5 75L50 138.5 350 438.5V475A150 150 0 0 0 500 625 141 141 0 0 0 532.5 621L615.5 704A275 275 0 0 1 500 730 259.5 259.5 0 0 1 235 475H150A350 350 0 0 0 450 811V975H550V811A350 350 0 0 0 677 766L886.5 975 950 911.5Z",
"width": 1000
},
"search": [
"microphone-off"
]
},
{
"uid": "8368c4ed6e62e884edb377df8086e083",
"css": "messenger",
"code": 59441,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 16.5C234.5 16.5 19.5 216.5 19.5 466.5A436 436 0 0 0 198.5 816.5V987L362 896.5A514 514 0 0 0 500 915C765.5 915 980.5 715 980.5 465S765.5 16.5 500 16.5ZM550 619.5L425.5 488 186.5 619.5 450 339 574.5 470 810.5 338.5Z",
"width": 1000
},
"search": [
"messenger"
]
},
{
"uid": "585528b781960682fbcfc01aeb063986",
"css": "microphone-on",
"code": 59443,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 625A150 150 0 0 0 650 475V175A150 150 0 0 0 350 175V475A150 150 0 0 0 500 625ZM765 475A259.5 259.5 0 0 1 500 730 259.5 259.5 0 0 1 235 475H150A350 350 0 0 0 450 811V975H550V811A350 350 0 0 0 850 475Z",
"width": 1000
},
"search": [
"microphone-on"
]
},
{
"uid": "a0a6493fa8f6febd0158dd6d4ff03f6e",
"css": "microsoft",
"code": 59444,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "",
"width": 1000
},
"search": [
"microsoft"
]
},
{
"uid": "60de7028e3b4b37bab3ee14126cdbfeb",
"css": "missed-call",
"code": 59445,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M270.5 232L500 461.5 791.5 170 750 128 500 378 312.5 190.5H458V128H208V378H270.5ZM987.5 697A708.5 708.5 0 0 0 12 697 42 42 0 0 0 12 756L115.5 860A41.5 41.5 0 0 0 145 872 42.5 42.5 0 0 0 174 860.5 475.5 475.5 0 0 1 285 783 41.5 41.5 0 0 0 308.5 745.5V616.5A609 609 0 0 1 500 586 621 621 0 0 1 691.5 616V745A42 42 0 0 0 715 782.5 491 491 0 0 1 826 859.5 41 41 0 0 0 855 871 41.5 41.5 0 0 0 884.5 859L988 755.5A41.5 41.5 0 0 0 1000 726 41 41 0 0 0 987.5 697.5Z",
"width": 1000
},
"search": [
"missed-call"
]
},
{
"uid": "0ef020ed124e2b052f22997ee5bacc44",
"css": "missed-videocall",
"code": 59446,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M683.5 613.5V466.5C683.5 443.5 644 432 644 432H172.5A41 41 0 0 0 133 474V894A41 41 0 0 0 172.5 936H644A41 41 0 0 0 683.5 894V740L867 908V445.5Z",
"width": 1000
},
"search": [
"missed-videocall"
]
},
{
"uid": "b007864f94987185959dfff21ad2ca9a",
"css": "move-to-inbox",
"code": 59447,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M889 0H110.5A110 110 0 0 0 0 111V889A110.5 110.5 0 0 0 110.5 1000H889A111.5 111.5 0 0 0 1000 889V111A111.5 111.5 0 0 0 889 0ZM889 666.5H666.5A166.5 166.5 0 1 1 333 666.5H110.5V111H889ZM722 389H611V222H389V389H278L500 611Z",
"width": 1000
},
"search": [
"move-to-inbox"
]
},
{
"uid": "117cf997caeb23f1fabcefe5958c108b",
"css": "next",
"code": 59448,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M241.5 882.5L359 1000 859 500 359 0 241.5 117.5 623 500Z",
"width": 1000
},
"search": [
"next"
]
},
{
"uid": "995036ab141a6c0650e93188d43a49aa",
"css": "notifications",
"code": 59449,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M279 91.5L207.5 20A521.5 521.5 0 0 0 0 412.5H100A422.5 422.5 0 0 1 279 91.5ZM900 412.5H1000A524.5 524.5 0 0 0 792.5 20L721.5 91.5A425 425 0 0 1 900 412.5ZM800 437.5C800 284 718 155.5 575 121.5V87.5A75 75 0 1 0 425 87.5V121.5C281.5 155.5 200 283.5 200 437.5V687.5L100 787.5V837.5H900V787.5L800 687.5ZM500 987.5A87.5 87.5 0 0 0 520 987.5 100 100 0 0 0 592 928.5 100 100 0 0 0 599.5 889.5H400A100 100 0 0 0 500 987.5Z",
"width": 1000
},
"search": [
"notifications"
]
},
{
"uid": "c71cf439bb03a44d7a7a2e43750d534d",
"css": "text-format-font",
"code": 59470,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M369.5 583.5H630L676.5 708.5H770.5L541.5 125H458.5L229 708.5H323ZM500 236L600 500H400Z",
"width": 1000
},
"search": [
"text-format-font"
]
},
{
"uid": "164594d27bc3b54175e9e0ef0e2062f4",
"css": "text-format-color",
"code": 59468,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M33.5 866.5V1000H966.5V866.5ZM333.5 586.5H667L727 733H867L550 0H450L133.5 733.5H273.5ZM500 132L624.5 466.5H374.5Z",
"width": 1000
},
"search": [
"text-format-color"
]
},
{
"uid": "83ab537b9c976e6a714d3296de077f8c",
"css": "text-format-align-left",
"code": 59467,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M446 771H987.5V662.5H446ZM12.5 500L229 716.5V283.5ZM12.5 987.5H987.5V879H12.5ZM12.5 12.5V121H987.5V12.5ZM446 337.5H987.5V229H446ZM446 554H987.5V446H446Z",
"width": 1000
},
"search": [
"text-format-align-left"
]
},
{
"uid": "d10bbe6a5fa68d085089d9126875e3c4",
"css": "text-format-fill",
"code": 59469,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M791.5 708.5A83.5 83.5 0 0 0 875 625C875 569.5 791.5 479 791.5 479S708 569.5 708 625A83.5 83.5 0 0 0 791.5 708.5ZM372.5 690A62.5 62.5 0 0 0 461 690L690 461A62 62 0 0 0 690 372.5L317.5 0 258.5 58.5 358.5 158.5 143.5 372.5A62 62 0 0 0 143.5 461ZM416.5 217L616.5 417H216.5Z",
"width": 1000
},
"search": [
"text-format-fill"
]
},
{
"uid": "e958a39430e7076fb2ac8f5cb8de2540",
"css": "yahoo",
"code": 59487,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M550 556.5H550C656.5 374 828 76.5 875 13L875 13H875A257.5 257.5 0 0 1 750 13C714.5 79 584 292.5 500 429.5H500C415 289.5 315 128.5 250 13H250A232.5 232.5 0 0 1 125.5 13H125.5L125.5 13C225.5 167.5 391 459.5 446.5 555.5L439 955.5H439A460 460 0 0 1 500 950 400 400 0 0 1 559.5 956H559.5Z",
"width": 1000
},
"search": [
"yahoo"
]
},
{
"uid": "94d267b24a47803a1d96ee423b585da9",
"css": "whatsapp",
"code": 59486,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M1000 474.5C1000 478.5 1000 483 1000 487A491.5 491.5 0 0 1 272 913.5L0 1000 88.5 739A483.5 483.5 0 0 1 18 489C18 482 18 475 18 467.5A491 491 0 0 1 1000 474.5ZM709.5 600C698 594 641.5 564 631 560S613 554 605 566 575 606 568.5 616 555 625.5 543.5 619A306.5 306.5 0 0 1 450 554 364.5 364.5 0 0 1 386 469 19 19 0 0 1 391 444C396.5 438.5 402.5 429.5 408.5 422.5L412.5 416.5A139.5 139.5 0 0 0 421.5 400 24 24 0 0 0 421.5 378.5C418.5 372.5 395.5 311.5 386 287S367 266.5 360 266.5L338 266.5A41 41 0 0 0 307.5 282 143 143 0 0 0 267.5 385 169 169 0 0 0 273.5 427 288.5 288.5 0 0 0 314.5 512.5 488.5 488.5 0 0 0 509.5 700C626.5 750 626.5 732.5 647.5 730.5A115 115 0 0 0 725 672 109.5 109.5 0 0 0 732 613.5C729 607 721 604 709.5 600Z",
"width": 1000
},
"search": [
"whatsapp"
]
},
{
"uid": "592858f93b126fb6c544c907a075277e",
"css": "warning",
"code": 59485,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M0 932H1000L500 68ZM545.5 795.5H454.5V704.5H545.5ZM545.5 613.5H454.5V432H545.5Z",
"width": 1000
},
"search": [
"warning"
]
},
{
"uid": "58e9e6135d059078ff5c1c39c325c779",
"css": "text-formar-bold",
"code": 59466,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M680 488.5A203 203 0 0 0 772 333 220 220 0 0 0 550 109.5H200V890.5H593A211.5 211.5 0 0 0 680 490.5ZM367.5 250H535A83.5 83.5 0 0 1 535 417.5H367.5ZM563 750H367.5V583.5H563A83.5 83.5 0 1 1 563 751Z",
"width": 1000
},
"search": [
"text-formar-bold"
]
},
{
"uid": "6cb806095f428b1d2123eda8ca0e64fb",
"css": "text-align-right",
"code": 59465,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M446 771H987.5V662.5H446ZM229 500L12.5 283.5V717ZM12.5 987.5H987.5V879H12.5ZM12.5 12.5V121H987.5V12.5ZM446 337.5H987.5V229H446ZM446 554H987.5V446H446Z",
"width": 1000
},
"search": [
"text-align-right"
]
},
{
"uid": "d97a7bdad201c6ad44420c76ab6a259a",
"css": "telegram",
"code": 59464,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M929.5 86L43.5 427.5C-17 450-16 486 33 500L247 567Q307.5 967 315 947.5A1284 1284 0 0 0 371 650L390 634 759.5 906.5C801.5 929.5 832.5 918 843 867.5L993 156.5C1009 95 970 67.5 929.5 86Z",
"width": 1000
},
"search": [
"telegram"