forked from adaptlearning/adapt-contrib-vanilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
selection.json
executable file
·2168 lines (2168 loc) · 70.8 KB
/
selection.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
{
"IcoMoonType": "selection",
"icons": [
{
"icon": {
"paths": [
"M511.232 849.92v-195.994l359.27 0.051v-284.262h-359.27v-195.635l-388.25 337.971z"
],
"tags": [
"arrow-left",
"left",
"previous"
],
"defaultCode": 59073,
"grid": 20
},
"properties": {
"order": 1,
"id": 194,
"prevSize": 20,
"name": "arrow-left",
"ligatures": "",
"code": 58880
}
},
{
"icon": {
"paths": [
"M849.92 512.768l-195.994-0.051 0.051-359.219h-284.262v359.27l-195.635-0.051 337.92 388.301z"
],
"tags": [
"arrow-down",
"download",
"bottom"
],
"defaultCode": 59074,
"grid": 20
},
"properties": {
"order": 2,
"id": 195,
"prevSize": 20,
"name": "arrow-down",
"ligatures": "",
"code": 58881
}
},
{
"icon": {
"paths": [
"M849.92 511.232l-195.994 0.051 0.051 359.219h-284.262v-359.27l-195.635 0.051 337.971-388.301z"
],
"tags": [
"arrow-up",
"upload",
"top"
],
"defaultCode": 59075,
"grid": 20
},
"properties": {
"order": 3,
"id": 196,
"prevSize": 20,
"name": "arrow-up",
"ligatures": "",
"code": 58882
}
},
{
"icon": {
"paths": [
"M512.768 174.080v195.994l-359.27-0.051v284.262h359.27v195.635l388.25-337.971z"
],
"tags": [
"arrow-right",
"right",
"next"
],
"defaultCode": 59076,
"grid": 20
},
"properties": {
"order": 4,
"id": 197,
"prevSize": 20,
"name": "arrow-right",
"ligatures": "",
"code": 58883
}
},
{
"icon": {
"paths": [
"M645.12 51.2h-276.48c-28.314 0-40.96 22.938-40.96 51.2v870.4l184.32-184.32 184.32 184.32v-870.4c0-28.262-22.938-51.2-51.2-51.2z"
],
"tags": [
"bookmark",
"ribbon"
],
"defaultCode": 59048,
"grid": 20
},
"properties": {
"order": 5,
"id": 169,
"prevSize": 20,
"name": "bookmark",
"ligatures": "",
"code": 58884
}
},
{
"icon": {
"paths": [
"M81.613 270.643c24.986 13.466 371.149 199.373 384.051 206.285 12.851 6.912 29.542 10.24 46.336 10.24 16.845 0 33.536-3.328 46.387-10.291 12.902-6.912 359.014-192.819 384-206.285 25.037-13.414 48.691-55.552 2.765-55.552h-866.253c-45.926 0-22.323 42.138 2.714 55.603zM952.986 373.043c-28.416 14.848-377.19 197.171-394.598 206.285s-29.542 10.291-46.387 10.291c-16.794 0-28.928-1.178-46.336-10.291s-366.234-191.488-394.598-206.285c-20.019-10.445-19.866 1.792-19.866 11.213 0 9.421 0 375.552 0 375.552 0 21.504 28.621 49.152 50.79 49.152h820.070c22.221 0 50.739-27.648 50.739-49.101 0 0 0-366.131 0-375.552 0-9.472 0.205-21.709-19.814-11.264z"
],
"tags": [
"mail",
"email",
"message",
"letter",
"envelope",
"contact"
],
"defaultCode": 58884,
"grid": 20
},
"properties": {
"order": 6,
"id": 5,
"prevSize": 20,
"name": "message",
"ligatures": "",
"code": 58885
}
},
{
"icon": {
"paths": [
"M788.582 737.434l-134.451-385.843c-37.018-106.189-151.91-164.864-260.762-135.885l-101.171-196.301c-9.165-17.766-30.618-24.576-47.974-15.206-17.357 9.421-24.013 31.437-14.848 49.203l98.765 191.642c-78.694 52.224-119.603 151.194-93.696 244.378l109.568 394.035c30.822 110.746 157.696 167.168 285.235 128.154 125.901-44.186 197.171-165.734 159.334-274.176zM455.629 456.858c-37.325 12.237-77.363-8.806-89.344-47.155-11.981-38.298 8.602-79.309 45.978-91.546 37.376-12.288 77.414 8.806 89.395 47.104s-8.602 79.309-46.029 91.597z"
],
"tags": [
"mouse",
"pc",
"computer"
],
"defaultCode": 58882,
"grid": 20
},
"properties": {
"order": 7,
"id": 3,
"prevSize": 20,
"name": "mouse",
"ligatures": "",
"code": 58886
}
},
{
"icon": {
"paths": [
"M710.502 0h-397.005c-57.498 0-104.499 47.002-104.499 104.499v815.002c0 57.446 47.002 104.499 104.499 104.499h397.005c57.498 0 104.499-47.053 104.499-104.499l0-815.002c0-57.498-47.002-104.499-104.499-104.499zM512 982.221c-40.346 0-73.114-23.398-73.114-52.275s32.768-52.275 73.114-52.275c40.397 0 73.114 23.398 73.114 52.275s-32.717 52.275-73.114 52.275zM731.392 825.446h-438.835v-689.613h438.835v689.613z"
],
"tags": [
"mobile",
"phone",
"contact"
],
"defaultCode": 58881,
"grid": 20
},
"properties": {
"order": 8,
"id": 2,
"prevSize": 20,
"name": "mobile",
"ligatures": "",
"code": 58887
}
},
{
"icon": {
"paths": [
"M921.6 61.44h-819.2c-56.32 0-102.4 46.080-102.4 102.4v563.2c0 56.32 45.158 111.462 100.403 122.522l223.846 44.749c0 0-192.666 68.25-68.25 68.25h512c124.416 0-68.25-68.25-68.25-68.25l223.846-44.749c55.194-11.059 100.403-66.202 100.403-122.522v-563.2c0-56.32-46.080-102.4-102.4-102.4zM921.6 721.92h-819.2v-568.32h819.2v568.32z"
],
"tags": [
"screen",
"desktop",
"computer",
"monitor",
"pc"
],
"defaultCode": 58976,
"grid": 20
},
"properties": {
"order": 9,
"id": 97,
"prevSize": 20,
"name": "desktop",
"ligatures": "",
"code": 58888
}
},
{
"icon": {
"paths": [
"M847.923 176.026c-73.83-73.882-129.28-62.822-129.28-62.822l-554.291 554.291-51.712 243.866 243.866-51.712 554.24-554.24c0 0 11.11-55.45-62.822-129.382zM341.965 830.31l-83.098 17.92c-8.038-15.002-17.715-30.003-35.379-47.718-17.664-17.664-32.717-27.29-47.718-35.328l17.971-83.149 24.013-24.013c0 0 45.261 0.922 96.307 51.968 51.098 51.098 52.019 96.358 52.019 96.358l-24.115 23.962z"
],
"tags": [
"pencil",
"write",
"blog",
"edit",
"save"
],
"defaultCode": 58886,
"grid": 20
},
"properties": {
"order": 10,
"id": 7,
"prevSize": 20,
"name": "pencil",
"ligatures": "",
"code": 58889
}
},
{
"icon": {
"paths": [
"M602.88 613.786v223.078l369.92-342.528-369.92-330.496v197.939c-449.28 0-551.68 498.381-551.68 498.381 127.13-224.768 307.814-246.374 551.68-246.374z"
],
"tags": [
"forward",
"arrow",
"right"
],
"defaultCode": 58892,
"grid": 20
},
"properties": {
"order": 11,
"id": 13,
"prevSize": 20,
"name": "forward-arrow",
"ligatures": "",
"code": 58890
}
},
{
"icon": {
"paths": [
"M972.8 860.16c0 0-102.4-498.33-551.68-498.33v-197.99l-369.92 330.496 369.92 342.579v-223.13c243.866 0 424.55 21.606 551.68 246.374z"
],
"tags": [
"reply",
"undo",
"arrow",
"left",
"back",
"previous"
],
"defaultCode": 58890,
"grid": 20
},
"properties": {
"order": 12,
"id": 11,
"prevSize": 20,
"name": "backwards-arrow",
"ligatures": "",
"code": 58891
}
},
{
"icon": {
"paths": [
"M758.784 739.738c-126.208-45.978-166.554-84.787-166.554-167.885 0-49.869 38.554-33.587 55.45-124.928 7.014-37.888 41.062-0.614 47.616-87.091 0-34.458-18.586-43.059-18.586-43.059s9.472-51.046 13.158-90.266c4.506-48.947-28.262-175.309-203.469-175.309-175.155 0-208.026 126.362-203.418 175.309 3.686 39.219 13.158 90.266 13.158 90.266s-18.637 8.55-18.637 43.059c6.502 86.477 40.55 49.203 47.565 87.091 16.947 91.341 55.501 75.059 55.501 124.928 0 83.098-40.346 121.907-166.554 167.885-126.669 46.080-208.896 93.133-208.896 125.235 0 32.051 0 107.776 0 107.776h962.56c0 0 0-75.725 0-107.776s-82.278-79.104-208.896-125.235z"
],
"tags": [
"user",
"group",
"profile",
"avatar",
"persona"
],
"defaultCode": 58893,
"grid": 20
},
"properties": {
"order": 13,
"id": 14,
"prevSize": 20,
"name": "person",
"ligatures": "",
"code": 58892
}
},
{
"icon": {
"paths": [
"M1024 962.56c0 0-1.997-193.894-13.875-213.965-17.664-29.952-58.675-50.483-134.861-82.33-75.93-31.744-100.25-58.573-100.25-115.866 0-34.458 23.194-23.194 33.382-86.221 4.198-26.163 24.678-0.461 28.621-60.109 0-23.808-11.162-29.747-11.162-29.747s5.632-35.226 7.885-62.31c2.765-33.792-17.050-120.986-122.47-120.986s-125.133 87.245-122.419 120.986c2.202 27.085 7.834 62.31 7.834 62.31s-11.162 5.939-11.162 29.747c3.942 59.699 24.422 33.997 28.672 60.109 10.138 63.027 33.331 51.763 33.331 86.221 0 38.963-11.264 63.846-42.342 85.709 165.888 83.046 188.16 99.994 188.16 174.234l-0 152.218h230.656zM523.469 695.040c-101.325-42.291-133.632-78.029-133.632-154.47 0-45.875 30.925-30.925 44.493-114.995 5.581-34.867 32.973-0.563 38.144-80.128 0-31.744-14.899-39.629-14.899-39.629s7.578-46.95 10.547-83.098c3.686-44.954-22.733-161.28-163.277-161.28-140.544 0-166.912 116.275-163.226 161.28 2.97 36.147 10.496 83.098 10.496 83.098s-14.848 7.885-14.848 39.629c5.274 79.616 32.563 45.312 38.195 80.128 13.568 84.070 44.493 69.069 44.493 114.995 0 76.442-32.41 112.179-133.632 154.47-30.874 12.902-86.323 32.922-86.323 80.947v186.573h711.373c0 0 0-110.336 0-139.827 0-43.878-86.374-85.197-187.904-127.693z"
],
"tags": [
"users",
"group",
"team",
"people"
],
"defaultCode": 58894,
"grid": 20
},
"properties": {
"order": 14,
"id": 15,
"prevSize": 20,
"name": "persons",
"ligatures": "",
"code": 58893
}
},
{
"icon": {
"paths": [
"M921.6 102.4h-819.2c-56.32 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.080 102.4 102.4 102.4h819.2c56.371 0 102.4-46.080 102.4-102.4v-614.4c0-56.32-46.029-102.4-102.4-102.4zM921.6 819.2h-819.2v-614.4h819.2v614.4zM460.8 619.52h-256v92.16h256v-92.16zM460.8 465.92h-256v92.16h256v-92.16zM460.8 312.32h-256v92.16h256v-92.16zM814.080 640c0 0-87.040-22.733-87.040-67.482 0-42.598 56.371-60.518 56.371-147.558 0-70.656-21.504-112.64-92.211-112.64s-92.16 41.933-92.16 112.64c0 87.040 56.32 104.96 56.32 147.558 0 44.749-86.989 67.482-86.989 67.482-5.171 0-5.171 71.68-5.171 71.68h256c0 0 0-71.68-5.12-71.68z"
],
"tags": [
"vcard",
"card"
],
"defaultCode": 58896,
"grid": 20
},
"properties": {
"order": 15,
"id": 17,
"prevSize": 20,
"name": "profile",
"ligatures": "",
"code": 58894
}
},
{
"icon": {
"paths": [
"M512 102.4c-141.414 0-256 114.637-256 256 0 244.429 256 563.2 256 563.2s256-318.771 256-563.2c0-141.363-114.586-256-256-256zM512 499.712c-76.339 0-138.24-61.901-138.24-138.24s61.901-138.24 138.24-138.24 138.24 61.901 138.24 138.24-61.901 138.24-138.24 138.24z"
],
"tags": [
"location",
"map marker",
"marker",
"pin"
],
"defaultCode": 58898,
"grid": 20
},
"properties": {
"order": 16,
"id": 19,
"prevSize": 20,
"name": "pin",
"ligatures": "",
"code": 58895
}
},
{
"icon": {
"paths": [
"M1007.77 257.229l-239.309-149.862c-10.598-6.656-23.859-6.656-34.458 0l-222.003 139.059-222.003-139.008c-10.598-6.656-23.859-6.656-34.458 0l-239.309 149.811c-10.035 6.298-16.23 17.715-16.23 29.952v599.398c0 12.595 6.451 24.269 16.998 30.464s23.398 6.042 33.741-0.461l222.003-139.059 222.003 139.059c10.598 6.656 23.859 6.656 34.509 0l222.003-139.059 222.003 139.059c5.274 3.328 11.264 5.018 17.254 5.018 5.683 0 11.366-1.536 16.486-4.557 10.496-6.195 16.998-17.869 16.998-30.464v-599.398c0-12.237-6.195-23.654-16.23-29.952zM239.258 716.954l-172.288 107.878v-517.837l172.288-107.878v517.837zM478.515 824.832l-172.288-107.878v-517.837l172.288 107.878v517.837zM717.773 716.954l-172.237 107.878v-517.837l172.237-107.878v517.837zM956.979 824.832l-172.237-107.878 0-517.837 172.237 107.878v517.837z"
],
"tags": [
"map",
"location",
"address",
"directions"
],
"defaultCode": 58899,
"grid": 20
},
"properties": {
"order": 17,
"id": 20,
"prevSize": 20,
"name": "map",
"ligatures": "",
"code": 58896
}
},
{
"icon": {
"paths": [
"M512 71.68c-243.149 0-440.32 197.171-440.32 440.32 0 243.2 197.171 440.32 440.32 440.32 243.2 0 440.32-197.12 440.32-440.32 0-243.149-197.12-440.32-440.32-440.32zM547.84 868.608v-197.888h-71.68v197.888c-169.318-16.794-303.923-151.45-320.768-320.768h197.888v-71.68h-197.888c16.845-169.318 151.45-303.974 320.768-320.768v197.888h71.68v-197.888c169.37 16.794 303.974 151.45 320.768 320.768h-197.888v71.68h197.888c-16.794 169.318-151.398 303.974-320.768 320.768z"
],
"tags": [
"target",
"cross",
"goal"
],
"defaultCode": 58902,
"grid": 20
},
"properties": {
"order": 18,
"id": 23,
"prevSize": 20,
"name": "point",
"ligatures": "",
"code": 58897
}
},
{
"icon": {
"paths": [
"M512 61.44l122.266 344.166h328.294l-267.878 202.138 95.744 354.816-278.426-212.685-278.426 212.685 95.744-354.816-267.878-202.138h328.294z"
],
"tags": [
"star",
"favorite",
"rate",
"bookmark"
],
"defaultCode": 58907,
"grid": 20
},
"properties": {
"order": 19,
"id": 28,
"prevSize": 20,
"name": "star",
"ligatures": "",
"code": 58898
}
},
{
"icon": {
"paths": [
"M962.56 405.606h-328.346l-122.266-344.166-122.214 344.166h-328.294l267.827 202.138-95.744 354.816 278.426-212.685 278.426 212.685-95.744-354.816 267.93-202.138zM511.949 649.421l-154.214 128.051 63.59-182.374-145.971-117.76 180.275 5.12 56.269-206.848 56.32 206.848 180.275-5.12-145.971 117.76 63.642 182.374-154.214-128.051z"
],
"tags": [
"star",
"favorite",
"rate",
"bookmark"
],
"defaultCode": 58908,
"grid": 20
},
"properties": {
"order": 20,
"id": 29,
"prevSize": 20,
"name": "star-hollow",
"ligatures": "",
"code": 58899
}
},
{
"icon": {
"paths": [
"M296.96 624.64v-317.44h-194.56c-56.32 0-102.4 46.080-102.4 102.4v307.2c0 56.32 46.080 102.4 102.4 102.4h51.2v153.6l153.6-153.6h256c56.32 0 102.4-46.080 102.4-102.4v-93.184c-3.277 0.717-6.758 1.075-10.24 1.075h-358.4zM921.6 51.2h-460.8c-56.32 0-102.4 46.080-102.4 102.4v409.6h358.4l153.6 153.6v-153.6h51.2c56.32 0 102.4-46.080 102.4-102.4v-307.2c0-56.32-46.080-102.4-102.4-102.4z"
],
"tags": [
"chat",
"comments",
"talk",
"bubbles",
"conversation",
"discussion"
],
"defaultCode": 58911,
"grid": 20
},
"properties": {
"order": 21,
"id": 32,
"prevSize": 20,
"name": "comments",
"ligatures": "",
"code": 58900
}
},
{
"icon": {
"paths": [
"M819.2 153.6h-614.4c-56.32 0-102.4 46.080-102.4 102.4v358.4c0 56.32 46.080 102.4 102.4 102.4h204.8l204.8 153.6v-153.6h204.8c56.32 0 102.4-46.080 102.4-102.4v-358.4c0-56.32-46.080-102.4-102.4-102.4z"
],
"tags": [
"comment",
"bubble",
"chat",
"talk",
"discussion",
"conversation"
],
"defaultCode": 58912,
"grid": 20
},
"properties": {
"order": 22,
"id": 33,
"prevSize": 20,
"name": "comment",
"ligatures": "",
"code": 58901
}
},
{
"icon": {
"paths": [
"M961.024 527.36l-410.829-411.187c-20.992-21.811-55.347-21.811-76.339 0l-410.88 411.187c-21.043 21.76-13.21 39.629 17.408 39.629h85.658v315.802c0 22.784 0.973 41.421 42.189 41.421h199.424v-316.826h208.64v316.826h209.357c31.437 0 32.307-18.586 32.307-41.421v-315.802h85.606c30.566 0 38.451-17.818 17.459-39.629z"
],
"tags": [
"house",
"home",
"building"
],
"defaultCode": 58914,
"grid": 20
},
"properties": {
"order": 23,
"id": 35,
"prevSize": 20,
"name": "home",
"ligatures": "",
"code": 58902
}
},
{
"icon": {
"paths": [
"M819.2 102.4h-410.624c-56.32 0-101.376 45.056-101.376 101.376v410.624c0 56.32 46.080 102.4 102.4 102.4h409.6c56.32 0 102.4-46.080 102.4-102.4v-409.6c0-56.32-46.080-102.4-102.4-102.4zM819.2 614.4h-409.6v-409.6h409.6v409.6zM204.8 512h-102.4v307.2c0 56.32 46.080 102.4 102.4 102.4h307.2v-102.4h-307.2v-307.2z"
],
"tags": [
"popup",
"popout",
"new window"
],
"defaultCode": 58915,
"grid": 20
},
"properties": {
"order": 24,
"id": 36,
"prevSize": 20,
"name": "popup",
"ligatures": "",
"code": 58903
}
},
{
"icon": {
"paths": [
"M898.304 791.962l-193.485-193.485c29.184-47.974 45.978-104.192 45.978-164.454 0-174.899-151.603-326.502-326.554-326.502-174.899 0-316.723 141.824-316.723 316.723 0 174.95 151.552 326.554 326.502 326.554 58.163 0 112.64-15.77 159.488-43.162l194.509 194.56c19.098 19.046 49.92 19.046 68.915 0l48.282-48.23c18.995-19.046 12.083-43.008-6.912-62.003zM205.005 424.243c0-121.088 98.15-219.29 219.238-219.29 121.139 0 229.069 107.93 229.069 229.069s-98.15 219.29-219.29 219.29-229.018-107.93-229.018-229.069z"
],
"tags": [
"search",
"magnifier",
"lookup",
"find"
],
"defaultCode": 58916,
"grid": 20
},
"properties": {
"order": 25,
"id": 37,
"prevSize": 20,
"name": "search",
"ligatures": "",
"code": 58904
}
},
{
"icon": {
"paths": [
"M76.8 358.502h870.4c29.184 0 24.422-31.13 9.882-36.198-14.541-5.069-176.282-66.202-204.442-66.202h-46.080v-153.6h-389.12v153.6h-46.080c-28.16 0-189.901 61.133-204.442 66.202-14.541 5.069-19.354 36.198 9.882 36.198zM957.44 414.822h-890.88c-28.16 0-56.32 33.28-56.32 61.44v179.2c0 28.16 28.16 61.44 56.32 61.44h101.478l-45.158 256h778.24l-45.158-256h101.478c28.16 0 56.32-33.28 56.32-61.44v-179.2c0-28.16-28.16-61.44-56.32-61.44zM225.28 870.502l71.68-332.8h430.080l71.629 332.8h-573.389z"
],
"tags": [
"printer"
],
"defaultCode": 58918,
"grid": 20
},
"properties": {
"order": 26,
"id": 39,
"prevSize": 20,
"name": "printer",
"ligatures": "",
"code": 58905
}
},
{
"icon": {
"paths": [
"M402.381 752.333l-41.472 41.165c-35.942 35.584-94.362 35.635-130.253 0-17.254-17.152-26.726-39.834-26.726-64.051s9.523-46.95 26.726-64.102l152.576-151.398c31.59-31.386 91.085-77.517 134.451-34.509 19.917 19.763 52.070 19.61 71.782-0.256 19.763-19.866 19.661-52.019-0.256-71.782-73.677-73.114-182.63-59.597-277.504 34.509l-152.576 151.398c-36.557 36.352-56.73 84.685-56.73 136.141 0 51.405 20.173 99.738 56.781 136.090 37.683 37.427 87.142 56.064 136.602 56.064s99.021-18.637 136.704-56.064l41.472-41.216c19.917-19.763 20.019-51.917 0.256-71.731-19.763-19.866-51.917-19.968-71.834-0.256zM864.819 164.301c-79.155-78.541-189.798-82.79-263.117-10.086l-51.661 51.251c-19.917 19.763-20.070 51.866-0.307 71.782 19.814 19.917 51.917 20.019 71.782 0.256l51.661-51.251c37.939-37.683 87.654-22.067 120.115 10.086 17.254 17.101 26.726 39.885 26.726 64.051 0 24.218-9.523 46.95-26.726 64.051l-162.816 161.485c-74.394 73.83-109.363 39.219-124.262 24.422-19.917-19.763-52.019-19.61-71.731 0.256-19.763 19.917-19.661 52.070 0.256 71.782 34.15 33.894 73.216 50.688 114.074 50.688 50.074 0 102.963-25.19 153.242-75.11l162.765-161.485c36.608-36.301 56.781-84.634 56.781-136.038s-20.173-99.789-56.781-136.141z"
],
"tags": [
"link",
"anchor",
"chain"
],
"defaultCode": 58920,
"grid": 20
},
"properties": {
"order": 27,
"id": 41,
"prevSize": 20,
"name": "link",
"ligatures": "",
"code": 58906
}
},
{
"icon": {
"paths": [
"M946.483 239.616c-584.090 233.83-347.494-395.52-800.512-64.205l-94.771 33.997 187.699 737.792h103.373l-91.904-361.37c404.173-338.842 240.538 369.203 718.643-325.478 11.11-16.128-3.738-28.262-22.528-20.736z"
],
"tags": [
"flag",
"report"
],
"defaultCode": 58921,
"grid": 20
},
"properties": {
"order": 28,
"id": 42,
"prevSize": 20,
"name": "flag",
"ligatures": "",
"code": 58907
}
},
{
"icon": {
"paths": [
"M859.392 512c0-53.658 33.024-96 82.688-125.082-9.011-29.901-20.787-58.624-35.379-85.606-55.808 14.592-100.915-7.27-138.803-45.158-37.99-37.939-49.613-83.098-35.021-138.803-26.982-14.592-55.603-26.522-85.606-35.43-29.082 49.715-81.664 82.739-135.27 82.739-53.606 0-106.138-33.024-135.27-82.739-30.003 8.909-58.624 20.838-85.606 35.379 14.541 55.757 2.97 100.915-34.97 138.854-37.939 37.888-83.098 59.75-138.803 45.21-14.592 26.931-26.47 55.654-35.43 85.555 49.715 29.082 82.739 71.424 82.739 125.082 0 53.606-33.024 106.189-82.739 135.322 8.96 29.952 20.838 58.624 35.43 85.606 55.757-14.592 100.864-2.97 138.803 34.97 37.939 37.939 49.51 83.046 34.97 138.803 26.982 14.592 55.654 26.522 85.606 35.43 29.133-49.766 81.664-82.739 135.27-82.739 53.606 0 106.24 33.024 135.322 82.739 30.003-8.96 58.624-20.838 85.606-35.43-14.592-55.757-3.021-100.864 35.021-138.803 37.888-37.888 82.995-59.75 138.803-45.21 14.592-26.982 26.419-55.654 35.379-85.606-49.715-29.133-82.739-71.475-82.739-125.082zM512 699.034c-103.27 0-186.982-83.763-186.982-187.034s83.712-187.034 186.982-187.034c103.322 0 187.034 83.763 187.034 187.034s-83.712 187.034-187.034 187.034z"
],
"tags": [
"cog",
"settings",
"preferences",
"options"
],
"defaultCode": 58922,
"grid": 20
},
"properties": {
"order": 29,
"id": 43,
"prevSize": 20,
"name": "cog",
"ligatures": "",
"code": 58908
}
},
{
"icon": {
"paths": [
"M160.461 352.768c47.821-37.12 87.45-11.571 140.339 49.664 5.99 6.861 13.978-1.178 18.483-5.12 4.506-3.994 74.342-66.765 77.722-69.683 3.43-3.021 7.526-8.653 2.099-14.95s-25.293-32-38.042-48.64c-92.57-121.088 253.235-203.213 200.090-204.493-26.982-0.717-135.475-1.946-151.654-0.256-65.69 6.963-148.173 68.352-189.696 96.922-54.272 37.325-74.598 58.982-77.926 62.003-15.36 13.466-2.458 44.39-30.31 68.813-29.44 25.805-47.77 6.298-64.819 21.248-8.499 7.475-32.102 25.139-38.912 31.13-6.758 5.939-7.987 16.026-1.075 24.115 0 0 64.666 71.475 70.144 77.773 5.427 6.298 20.019 11.622 29.082 3.635 9.062-7.936 32.307-28.365 36.25-31.846 3.994-3.43-2.56-44.186 18.227-60.314zM452.762 379.187c-6.144-7.117-13.722-7.27-20.326-1.434l-73.472 64.051c-5.734 5.12-6.502 14.541-1.331 20.48l424.653 483.226c9.882 11.469 27.085 12.646 38.502 2.714l49.715-41.574c11.315-9.933 12.493-27.341 2.611-38.758l-420.352-488.704zM1018.982 173.517c-3.789-25.293-16.896-19.968-23.706-9.216-6.707 10.701-36.915 56.371-49.306 77.005-12.288 20.582-42.496 60.979-99.021 21.094-58.778-41.574-38.298-70.605-28.109-90.112 10.291-19.61 41.882-74.496 46.49-81.408 4.506-6.912-0.819-26.982-18.995-18.586-18.278 8.448-129.178 52.531-144.589 115.712-15.718 64.358 13.21 121.805-43.52 178.893l-68.71 71.68 69.018 80.282 84.685-80.435c20.224-20.275 63.283-39.987 102.298-31.13 83.61 18.944 129.178-12.493 156.723-64.358 24.678-46.438 20.582-144.128 16.742-169.421zM140.288 873.011c-10.65 10.752-10.65 28.16 0 38.861l48.691 47.616c10.65 10.701 27.546 6.195 38.195-4.506l251.238-247.040-77.005-87.706-261.12 252.774z"
],
"tags": [
"tools",
"hammer",
"generate",
"fix",
"settings",
"wrench",
"build",
"factory"
],
"defaultCode": 58923,
"grid": 20
},
"properties": {
"order": 30,
"id": 44,
"prevSize": 20,
"name": "tools",
"ligatures": "",
"code": 58909
}
},
{
"icon": {
"paths": [
"M987.699 20.787c-5.53-16.128-22.989-24.627-38.963-19.046s-24.371 23.245-18.79 39.424c47.104 136.704-46.387 238.797-117.606 293.427l-28.826-41.677c-9.626-13.926-31.334-25.549-48.128-25.805l-161.536 0.768c-16.794-0.256-41.779 7.526-55.603 17.254l-475.955 337.306c-23.040 16.333-28.723 48.486-12.544 71.834l216.371 312.678c16.128 23.347 42.086 20.531 65.126 4.25l475.955-337.357c13.824-9.728 29.542-30.925 35.123-47.002l50.586-161.075c5.478-16.077 2.15-40.653-7.475-54.579l-17.613-25.395c95.693-73.984 195.021-204.902 139.878-365.005zM766.259 499.814c-36.915 26.163-87.757 17.050-113.613-20.275-25.805-37.325-16.845-88.781 20.070-114.944 29.286-20.787 67.328-19.251 94.72 0.922-13.824 8.397-23.245 13.21-25.037 14.080-15.258 7.27-21.811 25.702-14.592 41.165 5.222 11.213 16.179 17.818 27.699 17.818 4.352 0 8.806-0.973 13.005-2.97 9.779-4.659 20.378-10.342 31.386-16.947 4.915 30.362-7.066 62.31-33.638 81.152z"
],
"tags": [
"tag",
"price"
],
"defaultCode": 58925,
"grid": 20
},
"properties": {
"order": 31,
"id": 46,
"prevSize": 20,
"name": "tag",
"ligatures": "",
"code": 58910
}
},
{
"icon": {
"paths": [
"M512 409.6c-84.787 0-153.6 68.813-153.6 153.6 0 84.838 68.813 153.6 153.6 153.6 84.838 0 153.6-68.762 153.6-153.6 0-84.787-68.762-153.6-153.6-153.6zM921.6 256h-122.829c-16.896 0-35.123-13.107-40.448-29.133l-31.744-95.283c-5.427-16.077-23.603-29.184-40.499-29.184h-348.16c-16.896 0-35.123 13.107-40.397 29.133l-31.846 95.334c-5.325 16.026-23.501 29.133-40.397 29.133h-122.88c-56.32 0-102.4 46.080-102.4 102.4v460.8c0 56.32 46.080 102.4 102.4 102.4h819.2c56.371 0 102.4-46.080 102.4-102.4v-460.8c0-56.32-46.029-102.4-102.4-102.4zM512 819.2c-141.414 0-256-114.586-256-256 0-141.363 114.586-256 256-256 141.363 0 256 114.637 256 256 0 141.414-114.637 256-256 256zM885.76 429.978c-19.763 0-35.789-16.026-35.789-35.84s16.026-35.84 35.789-35.84c19.814 0 35.84 16.026 35.84 35.84s-16.026 35.84-35.84 35.84z"
],
"tags": [
"camera",
"picture",
"photo",
"images"
],
"defaultCode": 58926,
"grid": 20
},
"properties": {
"order": 32,
"id": 47,
"prevSize": 20,
"name": "camera",
"ligatures": "",
"code": 58911
}
},
{
"icon": {
"paths": [
"M169.062 626.586c23.757 96.307 53.965 138.291 154.726 182.374 100.813 44.032 148.685 92.16 188.211 92.16s84.326-42.086 185.139-86.221c100.813-43.981 73.933-57.498 97.69-153.702l-282.829 137.523-342.938-172.134zM998.963 375.603l-426.24-238.694c-33.382-18.688-88.013-18.688-121.395 0l-426.291 238.694c-33.382 18.688-33.382 49.306 0 67.994l426.24 238.694c33.382 18.688 88.013 18.688 121.395 0l275.558-154.317-298.803-69.99c-11.469 2.867-24.115 4.454-37.427 4.454-53.811 0-97.434-25.958-97.434-57.958s43.622-58.010 97.434-58.010c41.779 0 77.363 15.718 91.187 37.683l316.467 103.834 79.309-44.39c33.382-18.688 33.382-49.306 0-67.994zM868.71 828.006c-3.226 19.61 65.69 52.019 72.243-5.581 29.645-259.635-21.299-334.387-21.299-334.387l-71.424 39.987c0-0.051 60.57 57.6 20.48 299.981z"
],
"tags": [
"graduation",
"cap",
"hat"
],
"defaultCode": 58934,
"grid": 20
},
"properties": {
"order": 33,
"id": 55,
"prevSize": 20,
"name": "feedback",
"ligatures": "",
"code": 58912
}
},
{
"icon": {
"paths": [
"M852.378 263.322l-460.698-237.517c-63.13-33.229-187.546 30.976-223.283 87.501-15.923 25.293-14.797 43.52-14.797 53.862l5.683 536.32c0.358 11.418 14.746 26.726 26.982 34.304 25.549 15.667 412.672 257.28 423.578 264.141 5.888 3.686 12.902 5.376 19.763 5.376 5.837 0 11.725-1.28 17.050-3.942 11.674-5.734 18.944-16.794 18.944-28.928v-563.251c0-11.725-6.861-22.528-18.022-28.416l-418.714-233.779c4.71-9.216 23.347-28.672 57.6-46.592 36.096-18.944 63.078-11.776 69.274-9.37 0 0 401.92 215.091 414.208 221.491 12.237 6.4 12.493 7.373 12.493 18.278 0 10.957 0 534.528 0 534.528 0 26.675 27.034 37.581 46.95 37.581 19.814 0 41.011-19.456 41.011-37.581v-575.59c0-11.725-6.912-22.579-18.022-28.416z"
],
"tags": [
"book",
"reading"
],
"defaultCode": 58935,
"grid": 20
},
"properties": {
"order": 34,
"id": 56,
"prevSize": 20,
"name": "book",
"ligatures": "",
"code": 58913
}
},
{
"icon": {
"paths": [
"M819.2 51.2h-614.4c-56.32 0-102.4 46.080-102.4 102.4v716.8c0 56.32 46.080 102.4 102.4 102.4h614.4c56.371 0 102.4-46.080 102.4-102.4v-716.8c0-56.32-46.029-102.4-102.4-102.4zM819.2 870.4h-614.4v-716.8h614.4v716.8zM563.2 614.4h-256v51.2h256v-51.2zM716.8 409.6h-204.8v51.2h204.8v-51.2zM512 358.4h204.8v-102.4h-204.8v102.4zM460.8 256h-153.6v204.8h153.6v-204.8zM409.6 512h-102.4v51.2h102.4v-51.2zM460.8 563.2h256v-51.2h-256v51.2zM716.8 716.8h-409.6v51.2h409.6v-51.2zM614.4 665.6h102.4v-51.2h-102.4v51.2z"
],
"tags": [
"newspaper",
"document",
"file"
],
"defaultCode": 58936,
"grid": 20
},
"properties": {
"order": 35,
"id": 57,
"prevSize": 20,
"name": "article",
"ligatures": "",
"code": 58914
}
},
{
"icon": {
"paths": [
"M512 225.28c-335.923 0-512 247.45-512 286.72s176.077 286.72 512 286.72 512-247.45 512-286.72-176.077-286.72-512-286.72zM512 732.57c-125.645 0-227.533-98.765-227.533-220.57s101.888-220.57 227.533-220.57c125.696 0 227.584 98.765 227.584 220.57s-101.888 220.57-227.584 220.57zM512 512c-20.787-22.835 33.997-110.234 0-110.234-62.822 0-113.766 49.357-113.766 110.234s50.944 110.285 113.766 110.285c62.874 0 113.818-49.408 113.818-110.285 0-27.955-96.051 19.456-113.818 0z"
],
"tags": [
"eye",
"views"
],
"defaultCode": 58940,
"grid": 20
},
"properties": {
"order": 36,
"id": 61,
"prevSize": 20,
"name": "eye",
"ligatures": "",
"code": 58915
}
},
{
"icon": {
"paths": [
"M512 40.96c-260.147 0-471.040 210.944-471.040 471.040 0 260.147 210.893 471.040 471.040 471.040s471.040-210.893 471.040-471.040c0-260.147-210.893-471.040-471.040-471.040zM512 880.64c-203.622 0-368.64-165.069-368.64-368.64s165.018-368.64 368.64-368.64 368.64 165.069 368.64 368.64-165.018 368.64-368.64 368.64zM547.84 245.76h-71.68v281.088l174.336 174.336 50.688-50.688-153.344-153.344z"
],
"tags": [
"clock",
"time",
"history"
],
"defaultCode": 58941,
"grid": 20
},
"properties": {
"order": 37,
"id": 62,
"prevSize": 20,
"name": "time",
"ligatures": "",
"code": 58916
}
},
{
"icon": {
"paths": [
"M819.2 370.842h-30.72c-11.315 0-20.48 9.216-20.48 20.48v141.158c0 68.454-53.914 184.32-256 184.32s-256-115.866-256-184.32v-141.158c0-11.264-9.267-20.48-20.48-20.48h-30.72c-11.264 0-20.48 9.216-20.48 20.48v141.158c0 114.534 84.173 237.056 276.48 253.952v135.168h-133.171c-11.213 0-20.429 9.216-20.429 20.48v61.44c0 11.264 9.216 20.48 20.429 20.48h368.64c11.315 0 20.48-9.216 20.48-20.48v-61.44c0-11.315-9.216-20.48-20.48-20.48h-133.069v-135.168c192.358-16.896 276.48-139.469 276.48-253.952v-141.158c0-11.264-9.216-20.48-20.48-20.48zM512 614.4c120.166 0 153.6-49.357 153.6-81.92v-161.638h-307.2v161.638c0 32.563 33.434 81.92 153.6 81.92zM665.6 81.92c0-32.614-33.434-81.92-153.6-81.92s-153.6 49.306-153.6 81.92v217.242h307.2v-217.242z"
],
"tags": [
"microphone",
"voice",
"record"
],
"defaultCode": 58942,
"grid": 20
},
"properties": {
"order": 38,
"id": 63,
"prevSize": 20,
"name": "microphone",
"ligatures": "",
"code": 58917
}
},
{
"icon": {
"paths": [
"M870.4 153.6h-46.080v102.4h-163.84v-102.4h-296.96v102.4h-163.84v-102.4h-46.080c-56.32 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.080 102.4 102.4 102.4h716.8c56.32 0 102.4-46.080 102.4-102.4v-614.4c0-56.32-46.080-102.4-102.4-102.4zM870.4 870.4h-716.8v-409.6h716.8v409.6zM317.44 51.2h-71.68v174.080h71.68v-174.080zM778.24 51.2h-71.68v174.080h71.68v-174.080z"
],
"tags": [
"calendar",
"date",
"schedule",
"time"
],
"defaultCode": 58943,
"grid": 20
},
"properties": {
"order": 39,
"id": 64,
"prevSize": 20,
"name": "calendar",
"ligatures": "",
"code": 58918
}
},
{
"icon": {
"paths": [
"M798.72 234.394c0-109.568 0-120.269 0-120.269 0-40.448-128.358-114.125-286.72-114.125s-286.72 73.677-286.72 114.125c0 0 0 10.701 0 120.269 0 109.568 198.502 200.038 198.502 277.606 0 77.619-198.502 168.038-198.502 277.658 0 109.568 0 120.269 0 120.269-0 40.397 128.358 114.074 286.72 114.074s286.72-73.677 286.72-114.125c0 0 0-10.701 0-120.269 0-109.619-198.451-200.038-198.451-277.658 0-77.517 198.451-168.038 198.451-277.555zM304.128 119.245c35.635-22.477 102.451-55.45 210.637-55.45 108.237 0 205.107 55.45 205.107 55.45 7.27 4.403 35.738 19.661 16.23 31.181-42.957 25.446-126.925 52.224-224.154 52.224s-178.33-29.542-221.286-54.989c-19.507-11.571 13.466-28.416 13.466-28.416zM537.651 512c0 61.082 50.995 100.403 105.062 152.883 39.475 38.349 93.44 90.829 93.44 124.774v67.994c-49.613-24.73-198.195-48.947-198.195-128.205 0-40.141-51.917-40.141-51.917 0 0 79.258-148.582 103.475-198.195 128.205v-67.994c0-33.894 54.016-86.426 93.491-124.774 54.016-52.48 105.011-91.802 105.011-152.883 0-61.082-50.995-100.403-105.011-152.883-39.475-38.349-93.491-90.88-93.491-124.723l-2.406-51.2c52.531 28.262 135.834 55.245 226.56 55.245s174.438-26.982 226.97-55.245l-2.816 51.2c0 33.843-54.016 86.374-93.44 124.723-54.067 52.48-105.062 91.802-105.062 152.883z"
],
"tags": [
"hourglass",
"busy",
"waiting",
"working",
"loading"
],
"defaultCode": 58950,
"grid": 20
},
"properties": {
"order": 40,
"id": 71,
"prevSize": 20,
"name": "timer",
"ligatures": "",
"code": 58919
}
},
{
"icon": {
"paths": [
"M389.734 218.010c-18.79-17.664-44.186-17.664-63.027 0l-326.707 293.99 326.707 293.939c18.842 17.715 44.237 17.715 63.027 0s18.79-46.387 0-64.102l-253.645-229.837 253.696-229.786c18.739-17.715 18.739-46.438-0.051-64.205zM697.293 218.010c-18.842-17.664-44.186-17.664-63.027 0-18.79 17.766-17.818 46.438 1.075 64.154l252.57 229.837-252.621 229.837c-18.842 17.715-19.866 46.387-1.075 64.102 18.842 17.715 44.186 17.715 63.027 0l326.758-293.939-326.707-293.99z"
],
"tags": [
"code",
"embed"
],
"defaultCode": 58975,
"grid": 20
},
"properties": {
"order": 41,
"id": 96,
"prevSize": 20,
"name": "drag",
"ligatures": "",
"code": 58920
}
},
{
"icon": {
"paths": [
"M367.872 981.504c40.397 26.112 87.194 43.776 144.128 42.394 56.934 1.382 103.68-16.282 144.077-42.394v-105.984h-288.205v105.984zM650.035 814.029c0-223.027 237.107-294.4 219.341-516.557-11.162-140.186-106.138-297.472-357.376-297.472s-346.214 157.286-357.376 297.472c-17.766 222.208 219.29 293.53 219.29 516.557h276.122zM263.066 305.562c10.65-133.069 101.171-200.55 248.934-200.55s238.285 67.482 248.883 200.55c5.786 72.858-36.096 121.446-92.672 201.011-41.626 58.675-90.88 127.949-113.92 218.163h-84.634c-23.040-90.214-72.243-159.437-113.971-218.163-56.525-79.616-98.406-128.154-92.621-201.011z"
],
"tags": [
"light-bulb",
"lamp",
"bulb",
"idea",
"tip"
],
"defaultCode": 58978,
"grid": 20
},
"properties": {
"order": 42,
"id": 99,
"prevSize": 20,
"name": "light-bulb",
"ligatures": "",
"code": 58921
}
},
{
"icon": {
"paths": [
"M798.72 102.4l-61.44 153.6h-450.56l-61.44-153.6c-39.424 0-71.68 32.256-71.68 71.68v778.24c0 39.424 32.256 71.68 71.68 71.68h573.44c39.475 0 71.68-32.256 71.68-71.68v-778.24c0-39.424-32.256-71.68-71.68-71.68zM696.32 204.8l46.080-102.4h-111.616l-36.864-102.4h-163.84l-36.864 102.4h-111.616l46.080 102.4h368.64z"
],
"tags": [
"clipboard",
"board"
],
"defaultCode": 58982,
"grid": 20
},
"properties": {
"order": 43,
"id": 103,
"prevSize": 20,
"name": "checklist",
"ligatures": "",
"code": 58922
}
},
{
"icon": {
"paths": [
"M251.187 590.95l181.862 181.862 333.67-333.67-181.914-181.862-333.619 333.67zM978.176 341.197l-77.414-77.363c-14.797 7.987-31.59 12.595-49.613 12.595-57.19 0-103.578-46.387-103.578-103.629 0-17.971 4.506-34.867 12.595-49.613l-77.414-77.363c-20.224-20.173-53.094-20.173-73.318 0l-563.61 563.661c-20.173 20.173-20.173 53.146 0 73.318l77.414 77.414c14.746-8.038 31.642-12.595 49.562-12.595 57.242 0 103.629 46.336 103.629 103.578 0 17.971-4.557 34.867-12.646 49.613l77.363 77.414c20.173 20.173 53.146 20.173 73.318 0l563.712-563.712c20.122-20.173 20.122-53.146 0-73.318zM433.050 856.013l-265.011-265.062 416.87-416.819 265.011 265.011-416.87 416.87z"
],
"tags": [
"ticket"
],
"defaultCode": 58985,
"grid": 20
},
"properties": {
"order": 44,
"id": 106,
"prevSize": 20,
"name": "ticket",
"ligatures": "",
"code": 58923
}
},
{
"icon": {
"paths": [
"M512 716.8c-56.013 0-101.325 45.875-101.325 102.4s45.312 102.4 101.325 102.4c55.962 0 101.325-45.875 101.325-102.4s-45.363-102.4-101.325-102.4zM296.96 602.010l71.68 72.397c79.155-79.974 207.514-79.974 286.72 0l71.68-72.397c-118.784-120.013-311.347-120.013-430.080 0zM153.6 457.165l71.629 72.397c158.362-159.949 415.078-159.949 573.44 0l71.731-72.397c-197.939-199.936-518.861-199.936-716.8 0zM10.24 312.371l71.68 72.397c237.568-239.923 622.643-239.923 860.16 0l71.68-72.397c-277.094-279.962-726.426-279.962-1003.52 0z"
],