-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicomoon-selection.json
More file actions
1492 lines (1492 loc) · 76.3 KB
/
icomoon-selection.json
File metadata and controls
1492 lines (1492 loc) · 76.3 KB
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": [
"M1619.354 715.174v92.913h-409.763v-92.913h409.763zM1613.396 296.279l-350.997 511.807h-83.781v-68.295l353.78-509.821h80.998v66.309zM1572.503 229.971v93.309h-393.487v-93.309h393.487z",
"M1881.112 816.032c-33.352 0-63.265-5.295-89.733-15.884-26.473-10.854-48.971-25.811-67.5-44.869-18.269-19.058-32.298-41.159-42.092-66.307-9.794-25.413-14.691-52.411-14.691-80.998v-15.885c0-32.559 4.632-62.338 13.896-89.338s22.504-50.427 39.707-70.28c17.474-19.853 38.647-35.074 63.53-45.662 24.883-10.853 52.941-16.279 84.179-16.279 30.443 0 57.44 5.029 80.998 15.088s43.279 24.353 59.163 42.882c16.149 18.53 28.323 40.765 36.527 66.706 8.21 25.676 12.312 54.265 12.312 85.765v47.645h-341.474v-76.233h229.105v-8.735c0-15.882-2.909-30.044-8.734-42.485-5.56-12.706-14.029-22.765-25.413-30.177s-25.943-11.118-43.677-11.118c-15.089 0-28.058 3.309-38.912 9.927s-19.721 15.882-26.6 27.794c-6.62 11.912-11.65 25.942-15.089 42.088-3.18 15.882-4.765 33.353-4.765 52.412v15.885c0 17.203 2.379 33.087 7.144 47.646 5.030 14.559 12.047 27.13 21.046 37.719 9.264 10.589 20.384 18.793 33.352 24.618 13.234 5.825 28.19 8.734 44.869 8.734 20.643 0 39.84-3.97 57.573-11.909 17.998-8.21 33.485-20.516 46.453-36.93l55.591 60.356c-8.999 12.969-21.311 25.407-36.93 37.322-15.348 11.915-33.882 21.709-55.585 29.383-21.709 7.409-46.459 11.119-74.252 11.119z",
"M2247.301 198.206v609.881h-114.754v-609.881h114.754z",
"M2466.569 198.206v609.881h-114.748v-609.881h114.748z",
"M2685.844 378.47v429.616h-114.748v-429.616h114.748zM2563.945 266.5c0-16.677 5.825-30.441 17.474-41.294 11.643-10.853 27.262-16.279 46.851-16.279 19.323 0 34.81 5.426 46.453 16.279 11.915 10.853 17.872 24.618 17.872 41.294s-5.957 30.441-17.872 41.294c-11.643 10.853-27.13 16.28-46.453 16.28-19.589 0-35.208-5.427-46.851-16.28-11.65-10.853-17.474-24.618-17.474-41.294z",
"M2961.896 726.691c14.029 0 26.473-2.644 37.322-7.939 10.854-5.56 19.323-13.24 25.413-23.034 6.355-10.053 9.662-21.835 9.927-35.334h107.604c-0.265 30.178-8.337 57.043-24.221 80.601-15.884 23.293-37.189 41.695-63.928 55.194-26.732 13.234-56.645 19.854-89.733 19.854-33.358 0-62.476-5.56-87.353-16.679-24.618-11.119-45.134-26.467-61.548-46.056-16.408-19.854-28.72-42.888-36.924-69.090-8.21-26.473-12.312-54.796-12.312-84.972v-11.515c0-30.441 4.102-58.765 12.312-84.97 8.204-26.471 20.516-49.5 36.924-69.089 16.414-19.853 36.93-35.338 61.548-46.456 24.612-11.118 53.471-16.676 86.558-16.676 35.202 0 66.042 6.75 92.515 20.25 26.732 13.5 47.646 32.823 62.735 57.97 15.354 24.883 23.16 54.397 23.426 88.544h-107.604c-0.265-14.294-3.307-27.264-9.132-38.911-5.56-11.647-13.764-20.912-24.618-27.794-10.589-7.147-23.691-10.721-39.31-10.721-16.673 0-30.31 3.574-40.894 10.721-10.589 6.882-18.799 16.412-24.618 28.588-5.825 11.912-9.927 25.544-12.312 40.897-2.114 15.088-3.174 30.971-3.174 47.647v11.515c0 16.677 1.060 32.693 3.174 48.041 2.12 15.354 6.090 28.991 11.915 40.9 6.084 11.915 14.426 21.311 25.016 28.19 10.583 6.885 24.353 10.324 41.291 10.324z",
"M835.048 625.592c-0.223-32.757 16.619-64.717 47.044-82.321l-0.024 0.082c45.11-26.117 102.954-10.8 129.126 34.218 26.172 45.015 10.824 102.708-34.292 128.857-30.395 17.601-66.536 16.39-94.919-0.054-5.855-2.265-28.19-9.258-51.296 2.915l-41.502 24.028c-25.702 16.282-28.214 44.628-28.214 44.628l-0.247-0.41c-0.108 32.395-16.926 63.886-47.050 81.33-29.955 17.354-65.488 16.42-93.672 0.657h-0.012c-0.91-0.404-26.283-11.565-52.67 2.289l-41.744 24.19c-23.771 15.041-27.637 40.496-28.079 44.297-0.222 32.292-17.035 63.645-47.046 81.029-45.114 26.118-102.929 10.8-129.128-34.22-26.174-45.014-10.824-102.707 34.29-128.849 6.957-4.054 14.219-7.084 21.619-9.174 3.56-1.464 28.326-12.565 35.836-41.303h0.055l44.645-171.171c4.169-27.743-12.535-47.744-12.535-47.744h0.055c-5.715-5.676-10.794-12.178-15.047-19.478-26.172-45.017-10.821-102.709 34.291-128.854 6.875-3.995 14.082-6.998 21.398-9.149h-0.139c0 0 28.19-10.496 36.279-41.49l44.451-170.429c2.458-15.291-1.463-28.239-5.55-36.89-9.993-1.598-24.212-1.543-38.762 6.089l-41.719 24.162c-25.592 16.283-28.105 44.549-28.105 44.549l-0.222-0.413c-0.11 32.399-16.925 63.89-47.046 81.33-29.957 17.357-65.517 16.393-93.707 0.632-0.883-0.413-26.174-11.543-52.54 2.233l-41.883 24.245c-25.51 16.309-28.023 44.493-28.023 44.493-0.276 32.234-17.091 63.477-47.047 80.834-45.113 26.117-102.927 10.8-129.128-34.218s-10.85-102.709 34.263-128.826c29.929-17.357 65.461-16.421 93.651-0.715 0 0 25.814 11.845 52.734-2.233l41.717-24.161c25.106-16.030 27.993-43.442 28.104-44.497l0.003-0.025c0.276-32.234 16.951-63.395 47.046-80.834s65.849-16.392 94.092-0.413l-0.249-0.413c0 0 25.76 11.791 52.652-2.205l41.854-24.244c21.896-14.051 26.864-36.725 27.803-42.897-0.221-32.757 16.648-64.688 47.046-82.293 45.113-26.118 102.926-10.8 129.129 34.218 26.172 45.017 10.824 102.708-34.292 128.854-6.849 3.967-13.993 6.97-21.287 9.093h0.060c0 0-28.329 11.103-36.394 41.986h-0.024l-44.341 170.042c-4.309 25.676 9.552 44.77 12.092 48.020 5.825 5.758 10.988 12.343 15.296 19.726 26.175 45.017 10.821 102.709-34.291 128.854-6.848 3.968-13.97 6.943-21.232 9.062h0.055c0 0-28.326 11.077-36.389 41.96h-0.111l-44.588 171.038c-2.291 14.818 1.435 27.413 5.439 35.948 9.278 1.572 22.363 1.765 36.003-4.349l45.196-26.172c25.152-16.149 27.941-43.701 27.996-44.442 0.276-32.232 17.090-63.506 47.050-80.86 30.088-17.438 65.843-16.396 94.088-0.416l-0.217-0.41c0 0 25.648 11.764 52.507-2.15l42.104-24.383c21.787-14.023 26.726-36.587 27.696-42.785zM822.627 441.142c45.128-26.135 60.476-83.831 34.286-128.865-26.19-45.032-84.010-60.352-129.138-34.214-45.128 26.136-60.482 83.831-34.286 128.863 26.19 45.034 84.010 60.352 129.138 34.216zM315.579 731.136c36.897-36.822 36.897-96.515 0-133.331-36.895-36.819-96.717-36.819-133.613 0-36.896 36.816-36.896 96.509 0 133.331 36.896 36.816 96.718 36.816 133.613 0z"
],
"attrs": [
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 59)" }
],
"width": 3192,
"isMulticolor": true,
"isMulticolor2": false,
"grid": 0,
"tags": ["zellic"],
"colorPermutations": {
"34445913444601": [
{ "f": 0 },
{ "f": 0 },
{ "f": 0 },
{ "f": 0 },
{ "f": 0 },
{ "f": 0 },
{ "f": 1 }
]
}
},
"attrs": [
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 60)" },
{ "fill": "rgb(34, 44, 59)" }
],
"properties": {
"order": 67,
"id": 0,
"name": "zellic",
"prevSize": 32,
"code": 59705,
"codes": [59705, 59706, 59707, 59708, 59709, 59710, 59711]
},
"setIdx": 0,
"setId": 9,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M512 0c-282.778 0-512 229.222-512 512s229.222 512 512 512c282.778 0 512-229.222 512-512s-229.222-512-512-512z",
"M512 494.95l112.635 150.164c16.968 22.62 12.375 54.717-10.255 71.675-22.615 16.947-54.682 12.36-71.639-10.245l-133.14-177.495v-221.85c0-28.277 22.923-51.2 51.2-51.2s51.2 22.923 51.2 51.2v187.75z"
],
"attrs": [
{ "fill": "rgb(255, 205, 41)" },
{ "fill": "rgb(34, 44, 60)" }
],
"isMulticolor": true,
"isMulticolor2": false,
"grid": 0,
"tags": ["clock"],
"colorPermutations": {
"10813417312552054113444601": [{ "f": 2 }, { "f": 0 }]
}
},
"attrs": [{ "fill": "rgb(255, 205, 41)" }, { "fill": "rgb(34, 44, 60)" }],
"properties": {
"order": 68,
"id": 1,
"name": "clock",
"prevSize": 32,
"code": 59712,
"codes": [59712, 59713]
},
"setIdx": 1,
"setId": 8,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M512 0c-101.264 0-200.254 30.028-284.452 86.287s-149.822 136.223-188.574 229.779c-38.752 93.556-48.891 196.502-29.136 295.82s68.519 190.546 140.124 262.154c71.604 71.603 162.834 120.366 262.152 140.124 99.318 19.753 202.266 9.615 295.818-29.138 93.558-38.753 173.522-104.376 229.78-188.575s86.287-183.188 86.287-284.452c0-135.791-53.944-266.020-149.96-362.039-96.020-96.018-226.248-149.961-362.040-149.961zM563.2 819.2h-102.4v-102.4h102.4v102.4zM563.2 614.4h-102.4v-409.6h102.4v409.6z"
],
"attrs": [{ "fill": "rgb(108, 134, 173)", "opacity": 0.5 }],
"isMulticolor": false,
"isMulticolor2": false,
"grid": 0,
"tags": ["tip"]
},
"attrs": [{ "fill": "rgb(108, 134, 173)", "opacity": 0.5 }],
"properties": {
"order": 66,
"id": 0,
"name": "tip",
"prevSize": 32,
"code": 59704
},
"setIdx": 1,
"setId": 8,
"iconIdx": 1
},
{
"icon": {
"paths": [
"M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512c282.688 0 512-229.248 512-512s-229.248-512-512-512zM824.896 364.928l-351.040 343.808c-1.792 2.88-3.904 5.888-6.784 8.768l-16.448 16.512c-9.088 9.088-19.776 13.056-23.936 8.96l-167.168-174.976c-4.096-4.096-0.064-14.848 9.024-23.872l16.448-16.448c9.088-9.152 19.84-13.184 23.936-9.088l125.312 131.136 341.312-334.208c9.088-9.088 23.808-9.088 33.024 0l16.384 16.448c8.96 9.088 8.96 23.872-0.064 32.96z"
],
"attrs": [{ "fill": "rgb(90, 93, 224)" }],
"isMulticolor": false,
"isMulticolor2": false,
"grid": 0,
"tags": ["checked-circle"]
},
"attrs": [{ "fill": "rgb(90, 93, 224)" }],
"properties": {
"order": 65,
"id": 0,
"name": "checked-circle",
"prevSize": 32,
"code": 59703
},
"setIdx": 2,
"setId": 7,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M567.773 895.779h-0.421l16.825 8.956-16.404-8.956zM567.773 895.779v0zM298.723 895.779l-24.272 13.143 7.865-4.187 16.407-8.956zM298.723 895.779v0zM806.983 704.638l-0.032-0.039-1.296-1.556c-24.131-28.983-47.789-57.399-63.835-101.344-16.033-43.922-23.591-100.478-23.591-186.549 0-81.162-19.511-143.602-54.296-188.692l-0.020-0.028c-25.643-33.304-60.9-59.566-110.060-79.656l-2.131-0.872-2.016-1.114c-4.773-2.638-9.051-6.107-12.627-10.251l-5.478-6.351-2.414-8.031c-15.435-51.35-55.654-80.769-95.953-80.769-40.296 0-80.496 29.421-95.932 80.712l-2.531 8.411-5.866 6.538c-3.454 3.851-7.522 7.090-12.029 9.592l-2.044 1.134-2.163 0.885c-57.152 23.37-97.261 56.368-123.534 98.776-26.484 42.75-40.871 98.252-40.871 169.649 0 86.095-7.543 142.671-23.574 186.592-16.065 44.020-39.774 72.44-63.973 101.451l-1.198 1.434-0.009 0.012c-0.452 0.544-0.902 1.079-1.35 1.619-3.186 3.816-6.289 7.53-9.445 11.386l-0.231 0.28h-0.001c-4.838 5.793-7.88 12.816-8.802 20.224s0.31 14.931 3.565 21.689l0.055 0.114c6.971 14.592 22.247 24.781 41.861 24.781h696.393c19.346 0 34.544-10.079 41.598-24.734l0.032-0.059c3.269-6.762 4.513-14.297 3.6-21.713-0.914-7.404-3.942-14.423-8.763-20.224l-11.040-13.296zM806.983 704.638c1.103 1.319 2.93 3.525 4.856 5.849 2.253 2.721 4.643 5.608 6.168 7.432l-11.024-13.28zM584.109 904.775v0zM584.109 904.775v0zM297.194 931.32c-2.015 1.122-4.141 2.009-6.334 2.643 0.313 0.402 0.628 0.803 0.945 1.201h55.943c-14.219-10.772-26.258-24.135-35.456-39.385h-0.848c0.974 3.167 1.43 6.491 1.333 9.838-0.153 5.301-1.687 10.457-4.43 14.962h-0c-2.743 4.506-6.593 8.196-11.153 10.74zM433.239 963.887c-0.012 0-0.024 0-0.035 0l0.032 39.385 0.039-39.385c-0.012 0-0.024 0-0.035 0zM518.747 935.164h55.946c0.315-0.398 0.63-0.8 0.941-1.201-2.209-0.638-4.352-1.532-6.38-2.67-4.553-2.548-8.393-6.242-11.126-10.744-2.733-4.506-4.261-9.653-4.411-14.95v0c-0.095-3.34 0.362-6.656 1.335-9.819h-0.847c-9.2 15.25-21.236 28.613-35.458 39.385zM584.18 904.736v0z"
],
"attrs": [
{
"fill": "none",
"stroke": "rgb(108, 134, 173)",
"strokeLinejoin": "miter",
"strokeLinecap": "butt",
"strokeMiterlimit": "4",
"strokeWidth": 78.76923076923077
}
],
"width": 866,
"isMulticolor": false,
"isMulticolor2": false,
"grid": 0,
"tags": ["notice"]
},
"attrs": [
{
"fill": "none",
"stroke": "rgb(108, 134, 173)",
"strokeLinejoin": "miter",
"strokeLinecap": "butt",
"strokeMiterlimit": "4",
"strokeWidth": 78.76923076923077
}
],
"properties": {
"order": 63,
"id": 0,
"name": "notice",
"prevSize": 32,
"code": 59701
},
"setIdx": 3,
"setId": 6,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M707.048 950.857l-341.334-438.857 341.334-438.857",
"M414.476 950.857l-341.334-438.857 341.334-438.857"
],
"attrs": [
{
"fill": "none",
"stroke": "rgb(108, 134, 173)",
"strokeLinejoin": "round",
"strokeLinecap": "round",
"strokeMiterlimit": "4",
"strokeWidth": 109.71428571428571
},
{
"fill": "none",
"stroke": "rgb(108, 134, 173)",
"strokeLinejoin": "round",
"strokeLinecap": "round",
"strokeMiterlimit": "4",
"strokeWidth": 109.71428571428571
}
],
"width": 805,
"isMulticolor": false,
"isMulticolor2": false,
"grid": 0,
"tags": ["collapse"]
},
"attrs": [
{
"fill": "none",
"stroke": "rgb(108, 134, 173)",
"strokeLinejoin": "round",
"strokeLinecap": "round",
"strokeMiterlimit": "4",
"strokeWidth": 109.71428571428571
},
{
"fill": "none",
"stroke": "rgb(108, 134, 173)",
"strokeLinejoin": "round",
"strokeLinecap": "round",
"strokeMiterlimit": "4",
"strokeWidth": 109.71428571428571
}
],
"properties": {
"order": 61,
"id": 0,
"name": "collapse",
"prevSize": 32,
"code": 59702
},
"setIdx": 4,
"setId": 5,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M244.976 325.818h293.969v-93.091c0-38.788-14.289-71.758-42.868-98.909s-63.286-40.727-104.115-40.727c-40.829 0-75.534 13.576-104.115 40.727s-42.871 60.121-42.871 98.909v93.091zM685.931 1024c-67.775 0-125.556-22.7-173.345-68.096-47.785-45.396-71.662-100.273-71.629-164.631 0-64.386 23.893-119.282 71.68-164.678s105.551-68.082 173.293-68.049c67.779 0 125.561 22.7 173.349 68.096 47.784 45.396 71.661 100.273 71.629 164.631 0 64.386-23.892 119.282-71.68 164.678s-105.551 68.082-173.298 68.049zM766.776 900.655l34.295-32.582-90.638-86.109v-130.327h-48.998v148.945l105.342 100.073zM404.211 977.455h-306.22c-26.947 0-50.024-9.123-69.23-27.369s-28.793-40.155-28.76-65.722v-465.455c0-25.6 9.603-47.523 28.809-65.769s42.267-27.353 69.181-27.322h48.996v-93.091c0-64.388 23.893-119.281 71.68-164.678s105.552-68.080 173.296-68.049c67.777 0 125.559 22.699 173.347 68.096 47.784 45.397 71.661 100.274 71.629 164.631v93.091h48.994c26.95 0 50.027 9.123 69.232 27.369s28.793 40.153 28.76 65.722v60.509c-16.333-5.432-32.661-9.123-48.994-11.078s-32.666-2.917-48.998-2.886c-95.539 0-176.593 31.618-243.161 94.86s-99.836 140.227-99.803 230.959c0 33.359 5.52 65.736 16.56 97.14s25.935 61.082 44.684 89.041z"
],
"width": 931,
"attrs": [{ "fill": "rgb(108, 134, 173)", "opacity": 0.5 }],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["lock"],
"grid": 0
},
"attrs": [{ "fill": "rgb(108, 134, 173)", "opacity": 0.5 }],
"properties": {
"order": 21,
"id": 0,
"name": "lock",
"prevSize": 32,
"code": 59675
},
"setIdx": 5,
"setId": 3,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M128 0h768c70.692 0 128 57.308 128 128v768c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-768c0-70.692 57.308-128 128-128z",
"M710.626 336.205c-36.186-16.61-74.372-28.457-113.606-35.238-0.356-0.066-0.725-0.017-1.052 0.137-0.329 0.156-0.599 0.412-0.772 0.727-4.907 8.725-10.342 20.111-14.146 29.058-42.901-6.426-85.581-6.426-127.599 0-3.808-9.148-9.44-20.333-14.368-29.058-0.181-0.309-0.454-0.559-0.781-0.713-0.324-0.156-0.691-0.207-1.047-0.151-39.236 6.769-77.425 18.613-113.606 35.238-0.309 0.13-0.57 0.356-0.747 0.642-72.358 108.1-92.177 213.545-82.455 317.681 0.028 0.256 0.107 0.503 0.23 0.727 0.126 0.224 0.294 0.42 0.497 0.578 47.738 35.059 93.982 56.346 139.366 70.451 0.354 0.107 0.73 0.1 1.079-0.013 0.35-0.115 0.657-0.335 0.879-0.629 10.737-14.662 20.305-30.118 28.514-46.374 0.113-0.224 0.177-0.467 0.188-0.717 0.013-0.25-0.028-0.499-0.119-0.732-0.092-0.23-0.233-0.442-0.41-0.617-0.179-0.173-0.393-0.309-0.627-0.395-15.183-5.76-29.634-12.779-43.539-20.751-0.252-0.149-0.465-0.358-0.619-0.61-0.154-0.25-0.243-0.535-0.26-0.828-0.017-0.294 0.038-0.587 0.16-0.853 0.124-0.267 0.309-0.499 0.544-0.678 2.933-2.193 5.815-4.452 8.646-6.775 0.247-0.205 0.546-0.337 0.866-0.38 0.318-0.043 0.642 0.002 0.937 0.134 91.345 41.705 190.234 41.705 280.497 0 0.294-0.141 0.623-0.194 0.947-0.154 0.324 0.038 0.629 0.171 0.881 0.375 2.833 2.338 5.724 4.606 8.668 6.799 0.235 0.177 0.425 0.407 0.548 0.674s0.181 0.559 0.166 0.851c-0.015 0.294-0.102 0.578-0.254 0.83s-0.363 0.463-0.614 0.614c-13.909 8.122-28.482 15.057-43.558 20.73-0.235 0.090-0.448 0.226-0.625 0.403-0.177 0.179-0.314 0.39-0.403 0.625s-0.128 0.484-0.115 0.734c0.015 0.252 0.081 0.495 0.196 0.719 8.35 16.126 17.871 31.618 28.489 46.353 0.215 0.301 0.521 0.527 0.873 0.646 0.35 0.119 0.732 0.126 1.086 0.017 45.606-14.106 91.851-35.392 139.59-70.451 0.205-0.149 0.375-0.343 0.501-0.563 0.124-0.222 0.201-0.467 0.224-0.719 11.637-120.395-19.492-224.975-82.524-317.683-0.154-0.301-0.412-0.538-0.725-0.663zM424.653 591.121c-27.503 0-50.163-25.248-50.163-56.256 0-31.006 22.223-56.254 50.163-56.254 28.158 0 50.598 25.47 50.157 56.254 0 31.008-22.217 56.256-50.157 56.256zM610.112 591.121c-27.503 0-50.161-25.248-50.161-56.256 0-31.006 22.219-56.254 50.161-56.254 28.158 0 50.596 25.47 50.159 56.254 0 31.008-22.001 56.256-50.159 56.256z"
],
"attrs": [
{ "fill": "rgb(255, 255, 255)", "opacity": 0.25 },
{ "fill": "rgb(255, 255, 255)" }
],
"isMulticolor": true,
"isMulticolor2": true,
"tags": ["discord-dark"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(255, 255, 255)", "opacity": 0.25 },
{ "fill": "rgb(255, 255, 255)" }
],
"properties": {
"order": 20,
"id": 1,
"name": "discord-dark",
"prevSize": 32,
"code": 59667,
"codes": [59667, 59668]
},
"setIdx": 5,
"setId": 3,
"iconIdx": 1
},
{
"icon": {
"paths": [
"M128 0h768c70.692 0 128 57.308 128 128v768c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-768c0-70.692 57.308-128 128-128z",
"M753.805 329.564l-38.321 36.738c-1.619 1.237-2.871 2.891-3.622 4.783-0.751 1.894-0.973 3.955-0.64 5.965v269.914c-0.689 4.090 0.956 8.241 4.262 10.748l37.412 36.738v8.068h-188.192v-8.068l38.758-37.632c3.808-3.806 3.808-4.934 3.808-10.748v-218.163l-107.774 273.719h-14.571l-125.476-273.719v183.46c-1.052 7.71 1.519 15.479 6.94 21.058l50.417 61.148v8.068h-142.946v-8.068l50.415-61.148c5.391-5.594 7.804-13.412 6.502-21.058v-212.147c0.595-5.89-1.645-11.718-6.048-15.682l-44.806-53.99v-8.068h139.138l107.554 235.868 94.551-235.868h132.638v8.085z"
],
"attrs": [
{ "fill": "rgb(255, 255, 255)", "opacity": 0.25 },
{ "fill": "rgb(255, 255, 255)" }
],
"isMulticolor": true,
"isMulticolor2": true,
"tags": ["medium-dark"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(255, 255, 255)", "opacity": 0.25 },
{ "fill": "rgb(255, 255, 255)" }
],
"properties": {
"order": 19,
"id": 2,
"name": "medium-dark",
"prevSize": 32,
"code": 59669,
"codes": [59669, 59670]
},
"setIdx": 5,
"setId": 3,
"iconIdx": 2
},
{
"icon": {
"paths": [
"M125.388 10.449h752.327c69.25 0 125.388 56.138 125.388 125.388v752.327c0 69.25-56.138 125.388-125.388 125.388h-752.327c-69.25 0-125.388-56.138-125.388-125.388v-752.327c0-69.25 56.138-125.388 125.388-125.388z",
"M791.502 311.756l-88.035 415.623c-6.491 29.47-24.010 36.622-48.452 22.754l-134.108-99.031-64.675 62.41c-7.139 7.149-13.195 13.218-27.038 13.218l9.517-136.735 248.533-224.931c10.815-9.534-2.38-14.95-16.656-5.417l-307.152 193.726-132.376-41.388c-28.769-9.101-29.418-28.82 6.056-42.69l517.181-199.793c24.010-8.668 44.991 5.851 37.205 42.256z"
],
"width": 1003,
"attrs": [
{ "fill": "rgb(255, 255, 255)", "opacity": 0.25 },
{ "fill": "rgb(255, 255, 255)" }
],
"isMulticolor": true,
"isMulticolor2": true,
"tags": ["telegram-dark"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(255, 255, 255)", "opacity": 0.25 },
{ "fill": "rgb(255, 255, 255)" }
],
"properties": {
"order": 18,
"id": 3,
"name": "telegram-dark",
"prevSize": 32,
"code": 59671,
"codes": [59671, 59672]
},
"setIdx": 5,
"setId": 3,
"iconIdx": 3
},
{
"icon": {
"paths": [
"M128 0h768c70.692 0 128 57.308 128 128v768c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-768c0-70.692 57.308-128 128-128z",
"M738.039 392.42c0.356 5.169 0.356 10.336 0.356 15.552 0 158.899-120.412 342.161-340.585 342.161v-0.092c-65.043 0.092-128.74-18.626-183.484-53.916 9.459 1.143 18.963 1.717 28.489 1.741 53.909 0.043 106.27-18.123 148.663-51.578-24.977-0.474-49.184-8.779-69.235-23.75-20.051-14.974-34.942-35.868-42.594-59.761 17.946 3.479 36.433 2.761 54.046-2.074-55.846-11.334-96.021-60.625-96.021-117.871v-1.525c16.649 9.318 35.281 14.481 54.33 15.053-52.606-35.315-68.811-105.611-37.050-160.567 30.052 37.15 67.546 67.535 110.046 89.178 42.502 21.645 89.060 34.065 136.651 36.454-4.745-20.521-4.043-41.933 2.035-62.095s17.318-38.368 32.597-52.798c48.211-45.532 124.036-43.196 169.353 5.216 26.807-5.318 52.514-15.191 76.017-29.199-8.937 27.846-27.637 51.482-52.621 66.515 23.729-2.812 46.901-9.195 68.738-18.935-16.064 24.166-36.292 45.261-59.731 62.291z"
],
"attrs": [
{ "fill": "rgb(255, 255, 255)", "opacity": 0.25 },
{ "fill": "rgb(255, 255, 255)" }
],
"isMulticolor": true,
"isMulticolor2": true,
"tags": ["twitter-dark"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(255, 255, 255)", "opacity": 0.25 },
{ "fill": "rgb(255, 255, 255)" }
],
"properties": {
"order": 17,
"id": 4,
"name": "twitter-dark",
"prevSize": 32,
"code": 59673,
"codes": [59673, 59674]
},
"setIdx": 5,
"setId": 3,
"iconIdx": 4
},
{
"icon": {
"paths": [
"M142.884 0h738.233c78.913 0 142.884 63.971 142.884 142.884v738.233c0 78.913-63.971 142.884-142.884 142.884h-738.233c-78.913 0-142.884-63.971-142.884-142.884v-738.233c0-78.913 63.971-142.884 142.884-142.884z",
"M710.637 336.185c-36.185-16.61-74.373-28.455-113.607-35.238-0.356-0.067-0.724-0.018-1.053 0.137-0.327 0.156-0.598 0.41-0.773 0.728-4.906 8.724-10.341 20.11-14.145 29.057-42.902-6.424-85.579-6.424-127.599 0-3.807-9.147-9.439-20.332-14.367-29.057-0.182-0.311-0.455-0.56-0.78-0.714-0.326-0.154-0.692-0.206-1.048-0.15-39.237 6.768-77.426 18.614-113.607 35.238-0.31 0.132-0.57 0.356-0.748 0.642-72.358 108.101-92.177 213.544-82.453 317.683 0.026 0.255 0.105 0.501 0.23 0.726 0.124 0.224 0.293 0.422 0.495 0.579 47.737 35.060 93.982 56.345 139.368 70.451 0.352 0.106 0.73 0.101 1.080-0.014 0.35-0.114 0.656-0.333 0.879-0.627 10.737-14.662 20.305-30.12 28.512-46.375 0.113-0.223 0.177-0.467 0.189-0.717 0.012-0.249-0.029-0.498-0.12-0.73s-0.231-0.443-0.411-0.618c-0.179-0.174-0.392-0.308-0.626-0.394-15.181-5.759-29.634-12.779-43.538-20.751-0.254-0.149-0.466-0.358-0.619-0.61-0.154-0.25-0.243-0.535-0.26-0.829-0.018-0.293 0.037-0.586 0.16-0.854 0.123-0.267 0.31-0.499 0.543-0.678 2.934-2.192 5.817-4.452 8.646-6.775 0.248-0.206 0.549-0.337 0.867-0.381 0.319-0.043 0.643 0.004 0.936 0.135 91.346 41.704 190.234 41.704 280.499 0 0.295-0.139 0.623-0.193 0.947-0.152 0.324 0.039 0.63 0.169 0.882 0.376 2.833 2.337 5.722 4.603 8.667 6.798 0.236 0.176 0.424 0.407 0.548 0.674 0.125 0.266 0.182 0.558 0.167 0.851-0.015 0.294-0.102 0.579-0.254 0.831-0.151 0.251-0.362 0.462-0.614 0.613-13.911 8.123-28.483 15.056-43.559 20.729-0.235 0.089-0.447 0.227-0.624 0.405s-0.316 0.391-0.405 0.624c-0.089 0.235-0.127 0.485-0.113 0.735 0.013 0.251 0.081 0.495 0.195 0.718 8.35 16.127 17.871 31.619 28.487 46.354 0.217 0.301 0.522 0.527 0.873 0.647s0.731 0.125 1.087 0.017c45.605-14.106 91.849-35.391 139.59-70.451 0.205-0.15 0.375-0.343 0.5-0.564 0.125-0.22 0.202-0.466 0.225-0.719 11.638-120.393-19.493-224.974-82.524-317.682-0.154-0.301-0.412-0.537-0.725-0.664zM424.664 591.102c-27.503 0-50.163-25.248-50.163-56.255 0-31.008 22.222-56.255 50.163-56.255 28.158 0 50.598 25.47 50.157 56.255 0 31.007-22.217 56.255-50.157 56.255zM610.122 591.102c-27.503 0-50.161-25.248-50.161-56.255 0-31.008 22.22-56.255 50.161-56.255 28.158 0 50.598 25.47 50.159 56.255 0 31.007-22.002 56.255-50.159 56.255z"
],
"attrs": [
{ "fill": "rgb(90, 93, 224)", "opacity": 0.2 },
{ "fill": "rgb(90, 93, 224)" }
],
"isMulticolor": true,
"isMulticolor2": true,
"colorPermutations": {
"12820225511492551344460190932241": [{ "f": 2 }, { "f": 2 }]
},
"tags": ["discord"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(90, 93, 224)", "opacity": 0.2 },
{ "fill": "rgb(90, 93, 224)" }
],
"properties": {
"order": 14,
"id": 5,
"name": "discord",
"prevSize": 32,
"code": 59659,
"codes": [59659, 59660]
},
"setIdx": 5,
"setId": 3,
"iconIdx": 5
},
{
"icon": {
"paths": [
"M142.884 0h738.233c78.913 0 142.884 63.971 142.884 142.884v738.233c0 78.913-63.971 142.884-142.884 142.884h-738.233c-78.913 0-142.884-63.971-142.884-142.884v-738.233c0-78.913 63.971-142.884 142.884-142.884z",
"M807.988 307.579l-89.869 424.282c-6.624 30.084-24.511 37.384-49.462 23.227l-136.902-101.094-66.023 63.708c-7.286 7.3-13.469 13.494-27.6 13.494l9.715-139.583 253.711-229.617c11.040-9.734-2.429-15.264-17.003-5.531l-313.55 197.762-135.136-42.251c-29.367-9.291-30.029-29.421 6.183-43.578l527.957-203.956c24.509-8.848 45.928 5.973 37.978 43.135z"
],
"attrs": [
{ "fill": "rgb(128, 202, 255)", "opacity": 0.5 },
{ "fill": "rgb(0, 149, 255)" }
],
"isMulticolor": true,
"isMulticolor2": true,
"colorPermutations": {
"12820225511492551344460190932241": [{ "f": 3 }, { "f": 1 }]
},
"tags": ["telegram"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(128, 202, 255)", "opacity": 0.5 },
{ "fill": "rgb(0, 149, 255)" }
],
"properties": {
"order": 13,
"id": 6,
"name": "telegram",
"prevSize": 32,
"code": 59661,
"codes": [59661, 59662]
},
"setIdx": 5,
"setId": 3,
"iconIdx": 6
},
{
"icon": {
"paths": [
"M142.884 0h738.233c78.913 0 142.884 63.971 142.884 142.884v738.233c0 78.913-63.971 142.884-142.884 142.884h-738.233c-78.913 0-142.884-63.971-142.884-142.884v-738.233c0-78.913 63.971-142.884 142.884-142.884z",
"M738.037 392.427c0.356 5.17 0.356 10.335 0.356 15.552 0 158.9-120.413 342.161-340.585 342.161v-0.092c-65.044 0.092-128.741-18.625-183.483-53.916 9.458 1.144 18.962 1.717 28.489 1.74 53.909 0.044 106.269-18.121 148.663-51.575-24.978-0.475-49.185-8.779-69.237-23.752-20.050-14.973-34.942-35.867-42.592-59.76 17.945 3.479 36.433 2.761 54.046-2.075-55.846-11.333-96.021-60.624-96.021-117.87v-1.525c16.647 9.318 35.28 14.48 54.328 15.053-52.605-35.315-68.809-105.611-37.049-160.567 30.052 37.15 67.546 67.533 110.047 89.177s89.058 34.065 136.649 36.454c-4.744-20.52-4.041-41.933 2.036-62.096 6.077-20.162 17.318-38.369 32.597-52.798 48.211-45.531 124.036-43.196 169.353 5.216 26.807-5.318 52.515-15.192 76.017-29.198-8.936 27.846-27.636 51.482-52.619 66.515 23.728-2.811 46.9-9.195 68.737-18.936-16.064 24.168-36.29 45.262-59.73 62.291z"
],
"attrs": [
{ "fill": "rgb(128, 202, 255)", "opacity": 0.5 },
{ "fill": "rgb(0, 149, 255)" }
],
"isMulticolor": true,
"isMulticolor2": true,
"colorPermutations": {
"12820225511492551344460190932241": [{ "f": 3 }, { "f": 1 }]
},
"tags": ["twitter"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(128, 202, 255)", "opacity": 0.5 },
{ "fill": "rgb(0, 149, 255)" }
],
"properties": {
"order": 12,
"id": 7,
"name": "twitter",
"prevSize": 32,
"code": 59663,
"codes": [59663, 59664]
},
"setIdx": 5,
"setId": 3,
"iconIdx": 7
},
{
"icon": {
"paths": [
"M142.884 0h738.233c78.913 0 142.884 63.971 142.884 142.884v738.233c0 78.913-63.971 142.884-142.884 142.884h-738.233c-78.913 0-142.884-63.971-142.884-142.884v-738.233c0-78.913 63.971-142.884 142.884-142.884z",
"M753.818 329.567l-38.323 36.739c-1.618 1.236-2.871 2.889-3.621 4.783-0.751 1.893-0.972 3.954-0.639 5.964v269.912c-0.689 4.090 0.955 8.241 4.26 10.748l37.414 36.739v8.068h-188.193v-8.068l38.761-37.632c3.807-3.808 3.807-4.935 3.807-10.748v-218.163l-107.774 273.719h-14.571l-125.478-273.719v183.462c-1.049 7.707 1.521 15.479 6.941 21.056l50.417 61.148v8.068h-142.946v-8.068l50.417-61.148c5.389-5.594 7.803-13.411 6.501-21.056v-212.148c0.595-5.892-1.644-11.72-6.048-15.683l-44.807-53.99v-8.068h139.139l107.555 235.868 94.551-235.868h132.638v8.085z"
],
"attrs": [
{ "fill": "rgb(34, 44, 60)", "opacity": 0.1 },
{ "fill": "rgb(34, 44, 60)" }
],
"isMulticolor": true,
"isMulticolor2": true,
"tags": ["medium"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(34, 44, 60)", "opacity": 0.1 },
{ "fill": "rgb(34, 44, 60)" }
],
"properties": {
"order": 11,
"id": 8,
"name": "medium",
"prevSize": 32,
"code": 59657,
"codes": [59657, 59658]
},
"setIdx": 5,
"setId": 3,
"iconIdx": 8
},
{
"icon": {
"paths": [
"M560.085 547.192c0 11.378-1.764 22.045-5.291 32s-9.585 19.2-18.176 27.733l-394.667 394.666c-15.644 15.642-35.214 23.1-58.709 22.357s-43.036-8.9-58.624-24.491c-15.644-15.642-23.467-35.558-23.467-59.733s7.822-44.092 23.467-59.733l332.8-332.799-334.933-334.933c-15.644-15.644-23.125-35.214-22.443-58.709s8.875-43.036 24.576-58.624c15.644-15.644 35.555-23.466 59.733-23.466s44.089 7.822 59.733 23.466l392.533 392.533c8.533 8.533 14.592 17.778 18.176 27.733s5.348 20.623 5.291 32z"
],
"width": 597,
"attrs": [{ "fill": "rgb(90, 93, 224)" }],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["right"],
"grid": 0
},
"attrs": [{ "fill": "rgb(90, 93, 224)" }],
"properties": {
"order": 10,
"id": 9,
"name": "right",
"prevSize": 32,
"code": 59656
},
"setIdx": 5,
"setId": 3,
"iconIdx": 9
},
{
"icon": {
"paths": [
"M625.779 0c0 62.838 50.94 113.778 113.775 113.778h90.453l-519.11 519.11c-22.15 22.153-22.15 58.065 0 80.213 22.15 22.153 58.063 22.153 80.213 0l519.11-519.11v147.342c0 31.419 25.472 56.889 56.892 56.889 31.415 0 56.887-25.47 56.887-56.889v-341.333zM910.221 910.221h-796.443v-796.443h341.335c31.415 0 56.887-25.47 56.887-56.889s-25.472-56.889-56.887-56.889h-341.335c-30.176 0-59.116 11.987-80.453 33.325s-33.325 50.277-33.325 80.453v796.443c0 30.178 11.987 59.119 33.325 80.457 21.338 21.333 50.277 33.323 80.453 33.323h796.443c30.178 0 59.119-11.989 80.457-33.323 21.333-21.338 33.323-50.278 33.323-80.457v-341.333c0-31.415-25.472-56.887-56.887-56.887-31.42 0-56.892 25.472-56.892 56.887v341.333z"
],
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["share"],
"grid": 0
},
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"properties": {
"order": 8,
"id": 10,
"name": "share",
"prevSize": 32,
"code": 59654
},
"setIdx": 5,
"setId": 3,
"iconIdx": 10
},
{
"icon": {
"paths": [
"M607.744 1003.773l461.043-444.998c6.986-6.742 11.946-14.048 14.88-21.914s4.378-16.294 4.333-25.283c0-8.989-1.469-17.418-4.403-25.283-2.931-7.869-7.869-15.171-14.81-21.914l-461.043-444.999c-12.81-12.361-28.829-18.811-48.061-19.351-19.235-0.539-35.814 5.911-49.738 19.351-13.971 12.361-21.261 27.824-21.866 46.388s6.102 34.566 20.118 48.006l342.291 330.378h-780.634c-19.792 0-36.395 6.474-49.807 19.418-13.412 12.947-20.095 28.947-20.048 48.006 0 19.104 6.683 35.126 20.048 48.074 13.366 12.944 29.968 19.395 49.807 19.35h780.634l-342.291 330.378c-12.806 12.362-19.514 28.093-20.118 47.197s6.102 34.835 20.118 47.197c12.806 13.485 29.107 20.227 48.899 20.227s36.675-6.742 50.646-20.227z"
],
"width": 1088,
"attrs": [{}],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": { "1081341731255255255190932241": [{}] },
"tags": ["arrow-right"],
"grid": 0
},
"attrs": [{}],
"properties": {
"order": 15,
"id": 11,
"name": "arrow-right",
"prevSize": 32,
"code": 59665
},
"setIdx": 5,
"setId": 3,
"iconIdx": 11
},
{
"icon": {
"paths": [
"M0 819.2v-614.4c0-71.68-0-107.52 13.952-134.912 12.288-24.128 31.808-43.648 55.936-55.936 27.392-13.952 63.232-13.952 134.912-13.952h614.4c71.68 0 107.52-0 134.848 13.952 24.128 12.288 43.712 31.808 56 55.936 13.952 27.328 13.952 63.168 13.952 134.72v614.848c0 71.552 0 107.328-13.952 134.656-12.294 24.090-31.898 43.667-56 55.936-27.328 13.952-63.104 13.952-134.656 13.952h-614.784c-71.552 0-107.392 0-134.72-13.952-24.084-12.272-43.664-31.853-55.936-55.936-13.952-27.392-13.952-63.232-13.952-134.912z",
"M256 512l192 192 320-384"
],
"attrs": [
{ "fill": "rgb(90, 93, 224)" },
{
"fill": "none",
"stroke": "rgb(255, 255, 255)",
"strokeLinejoin": "round",
"strokeLinecap": "round",
"strokeMiterlimit": "4",
"strokeWidth": 128
}
],
"isMulticolor": false,
"isMulticolor2": true,
"colorPermutations": {
"1081341731255255255190932241": [{ "f": 1 }, { "s": 2 }]
},
"tags": ["checked"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(90, 93, 224)" },
{
"fill": "none",
"stroke": "rgb(255, 255, 255)",
"strokeLinejoin": "round",
"strokeLinecap": "round",
"strokeMiterlimit": "4",
"strokeWidth": 128
}
],
"properties": {
"order": 16,
"id": 12,
"name": "checked",
"prevSize": 32,
"code": 59666
},
"setIdx": 5,
"setId": 3,
"iconIdx": 12
},
{
"icon": {
"paths": [
"M512 620.995l-381.566 381.552c-14.276 14.275-32.446 21.414-54.51 21.414s-40.233-7.139-54.509-21.414c-14.276-14.275-21.414-32.445-21.414-54.506 0-22.064 7.138-40.234 21.414-54.509l381.568-381.552-381.568-381.552c-14.276-14.276-21.414-32.445-21.414-54.507s7.138-40.232 21.414-54.508c14.276-14.276 32.446-21.414 54.509-21.414s40.233 7.138 54.51 21.414l381.566 381.553 381.568-381.553c14.275-14.276 32.445-21.414 54.509-21.414s40.234 7.138 54.509 21.414c14.275 14.276 21.414 32.445 21.414 54.508s-7.139 40.232-21.414 54.507l-381.568 381.552 381.568 381.552c14.275 14.275 21.414 32.445 21.414 54.509 0 22.061-7.139 40.23-21.414 54.506s-32.445 21.414-54.509 21.414c-22.064 0-40.234-7.139-54.509-21.414l-381.568-381.552z"
],
"attrs": [{ "fill": "rgb(108, 134, 173)", "opacity": 0.5 }],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": { "1081341731255255255190932241": [{ "f": 0 }] },
"tags": ["close"],
"grid": 0
},
"attrs": [{ "fill": "rgb(108, 134, 173)", "opacity": 0.5 }],
"properties": {
"order": 9,
"id": 13,
"name": "close",
"prevSize": 32,
"code": 59655
},
"setIdx": 5,
"setId": 3,
"iconIdx": 13
},
{
"icon": {
"paths": [
"M0.002 512.576c0-12.23 2.015-23.696 6.046-34.4 4.030-10.701 10.953-20.64 20.769-29.814l450.979-424.273c17.875-16.818 40.237-24.83 67.085-24.035s49.178 9.571 66.989 26.328c17.875 16.818 26.816 38.223 26.816 64.214s-8.941 47.396-26.816 64.215l-380.284 357.765 382.723 360.061c17.875 16.819 26.422 37.856 25.645 63.114-0.781 25.258-10.141 46.266-28.083 63.021-17.878 16.819-40.63 25.229-68.256 25.229-27.629 0-50.381-8.41-68.256-25.229l-448.54-421.981c-9.751-9.171-16.674-19.11-20.769-29.811-4.095-10.704-6.111-22.17-6.046-34.403z"
],
"width": 640,
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": { "1081341731255255255190932241": [{ "f": 0 }] },
"tags": ["back"],
"grid": 0
},
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"properties": {
"order": 7,
"id": 14,
"name": "back",
"prevSize": 32,
"code": 59653
},
"setIdx": 5,
"setId": 3,
"iconIdx": 14
},
{
"icon": {
"paths": [
"M1024 512c0 282.769-229.231 512-512 512s-512-229.231-512-512c0-282.769 229.231-512 512-512s512 229.231 512 512zM2560 512c0 282.769-229.233 512-512 512s-512-229.231-512-512c0-282.769 229.233-512 512-512s512 229.231 512 512zM3584 1024c282.767 0 512-229.231 512-512s-229.233-512-512-512c-282.767 0-512 229.231-512 512s229.233 512 512 512z"
],
"width": 4096,
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": { "10813417311321391511": [{ "f": 0 }] },
"tags": ["more"],
"grid": 0
},
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"properties": {
"order": 6,
"id": 15,
"name": "more",
"prevSize": 32,
"code": 59652
},
"setIdx": 5,
"setId": 3,
"iconIdx": 15
},
{
"icon": {
"paths": ["M0 0l1024 1024 1024-1024h-2048z"],
"width": 2048,
"attrs": [{ "fill": "rgb(132, 139, 151)" }],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["arrow-down"],
"grid": 0
},
"attrs": [{ "fill": "rgb(132, 139, 151)" }],
"properties": {
"order": 5,
"id": 16,
"name": "arrow-down",
"prevSize": 32,
"code": 59651
},
"setIdx": 5,
"setId": 3,
"iconIdx": 16
},
{
"icon": {
"paths": [
"M779.636 314.182c0 24.688-9.809 48.367-27.266 65.825s-41.137 27.266-65.825 27.266c-24.688 0-48.367-9.809-65.825-27.266s-27.266-41.137-27.266-65.825c0-24.689 9.809-48.367 27.266-65.825s41.137-27.266 65.825-27.266c24.688 0 48.367 9.808 65.825 27.266s27.266 41.136 27.266 65.825z",
"M503.017 0h-5.306c-107.473 0-191.674 0-257.396 8.844-67.212 9.030-120.273 27.927-161.932 69.539-41.658 41.658-60.509 94.72-69.539 161.978-8.844 65.676-8.844 149.876-8.844 257.35v5.306c0 107.473 0 191.674 8.844 257.396 9.030 67.212 27.927 120.273 69.539 161.932 41.658 41.658 94.72 60.509 161.978 69.539 65.676 8.844 149.876 8.844 257.35 8.844h5.306c107.473 0 191.674 0 257.396-8.844 67.212-9.030 120.273-27.927 161.932-69.539 41.658-41.658 60.509-94.72 69.539-161.978 8.844-65.676 8.844-149.876 8.844-257.35v-5.306c0-107.473 0-191.674-8.844-257.396-9.030-67.212-27.927-120.273-69.539-161.932-41.658-41.658-94.72-60.509-161.978-69.539-65.676-8.844-149.876-8.844-257.35-8.844zM127.767 127.767c26.531-26.531 62.371-41.751 121.903-49.757 60.509-8.099 140.009-8.192 250.694-8.192s190.185 0.093 250.694 8.192c59.532 8.006 95.418 23.273 121.949 49.757 26.484 26.531 41.705 62.371 49.711 121.903 8.099 60.509 8.192 140.009 8.192 250.694l-0.047 59.578-10.333-1.396c-132.375-18.339-253.533 50.455-315.206 154.205-79.593-201.309-289.839-338.618-524.753-304.873l-10.519 1.489c0.512-65.396 2.281-117.248 7.959-159.697 8.006-59.532 23.273-95.372 49.757-121.903z"
],
"attrs": [
{ "fill": "rgb(222, 230, 247)" },
{ "fill": "rgb(222, 230, 247)" }
],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": {
"10813417312222302471": [{ "f": 1 }, { "f": 1 }]
},
"tags": ["gallery"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(222, 230, 247)" },
{ "fill": "rgb(222, 230, 247)" }
],
"properties": {
"order": 4,
"id": 17,
"name": "gallery",
"prevSize": 32,
"code": 59648
},
"setIdx": 5,
"setId": 3,
"iconIdx": 17
},
{
"icon": {
"paths": [
"M426.667 1024c-112.89 0-212.231-38.474-298.027-115.419s-128.676-181.094-128.64-312.442c0-82.617 32-172.188 96-268.72 64-96.529 160.889-200.886 290.668-313.069 5.333-4.348 11.554-7.827 18.665-10.436s14.222-3.913 21.333-3.913c7.111 0 14.222 1.304 21.333 3.913s13.335 6.087 18.665 10.436c129.781 112.183 226.668 216.54 290.668 313.069 64 96.532 96 186.103 96 268.72 0 131.314-42.897 235.463-128.694 312.442-85.794 76.982-185.119 115.453-297.973 115.419zM441.333 867.465c10.667-0.87 19.789-5.009 27.361-12.419s11.341-16.313 11.307-26.715c0-12.174-3.999-21.968-12.001-29.375-7.999-7.41-18.222-10.664-30.666-9.759-36.443 2.608-75.11-7.182-115.999-29.375-40.889-22.195-66.667-62.407-77.334-120.639-1.778-9.566-6.436-17.391-13.974-23.478-7.537-6.090-16.213-9.134-26.026-9.134-12.444 0-22.667 4.577-30.667 13.724s-10.667 19.792-8 31.932c15.111 79.138 50.667 135.666 106.667 169.58 56.001 33.917 112.444 49.135 169.333 45.656z"
],
"width": 853,
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": { "10813417312222302471": [{ "f": 0 }] },
"tags": ["pool"],
"grid": 0
},
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"properties": {
"order": 3,
"id": 18,
"name": "pool",
"prevSize": 32,
"code": 59649
},
"setIdx": 5,
"setId": 3,
"iconIdx": 18
},
{
"icon": {
"paths": [
"M504.686 0c-66.276 0-131.903 13.054-193.135 38.417-61.231 25.363-116.867 62.538-163.731 109.402-94.647 94.647-147.819 223.015-147.819 356.867s53.172 262.22 147.819 356.867c46.864 46.864 102.5 84.038 163.731 109.401 61.232 25.363 126.859 38.418 193.135 38.418 133.851 0 262.22-53.172 356.867-147.819s147.819-223.015 147.819-356.867c0-66.276-13.055-131.903-38.418-193.135-25.363-61.231-62.537-116.867-109.401-163.731s-102.499-84.039-163.732-109.402c-61.232-25.363-126.859-38.417-193.135-38.417zM504.686 322.496c81.431 52.903 176.429 81.124 273.54 81.253 39.365 0 77.218-4.544 113.556-13.122 10.597 35.834 16.653 74.187 16.653 114.059 0 222.568-181.181 403.749-403.749 403.749-151.406 0-283.129-83.778-353.28-207.424l88.32-95.387v-50.469c0-16.732 6.647-32.777 18.477-44.608s27.877-18.476 44.608-18.476c16.732 0 32.777 6.644 44.608 18.476s18.479 27.876 18.479 44.608v50.469h138.787zM706.56 492.070c-16.732 0-32.777 6.644-44.608 18.476s-18.479 27.876-18.479 44.608c0 16.732 6.647 32.777 18.479 44.608s27.876 18.479 44.608 18.479c16.732 0 32.777-6.647 44.608-18.479s18.476-27.876 18.476-44.608c0-16.732-6.644-32.777-18.476-44.608s-27.876-18.476-44.608-18.476z"
],
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": { "10813417312222302471": [{ "f": 0 }] },
"tags": ["profile"],
"grid": 0
},
"attrs": [{ "fill": "rgb(108, 134, 173)" }],
"properties": {
"order": 2,
"id": 19,
"name": "profile",
"prevSize": 32,
"code": 59650
},
"setIdx": 5,
"setId": 3,
"iconIdx": 19
},
{
"icon": {
"paths": [
"M0 510.001c0-281.665 226.371-510.001 510.001-510.001 281.664 0 509.999 226.371 509.999 510.001 0 281.664-226.371 509.999-509.999 509.999-281.665 0-510.001-226.371-510.001-509.999zM2051.994 510.001c0-281.665 226.381-510.001 510.003-510.001 281.664 0 510.003 226.371 510.003 510.001 0 281.664-226.368 509.999-510.003 509.999-281.664 0-510.003-226.371-510.003-509.999zM4614.003 0c-283.635 0-510.003 228.335-510.003 510.001 0 283.629 228.339 509.999 510.003 509.999 283.622 0 509.99-228.335 509.99-509.999 0-283.63-228.326-510.001-509.99-510.001z"
],
"width": 5248,
"attrs": [{ "fill": "rgb(157, 175, 190)" }],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["more"],
"grid": 0
},
"attrs": [{ "fill": "rgb(157, 175, 190)" }],
"properties": {
"order": 39,
"id": 0,
"name": "more1",
"prevSize": 32,
"code": 59676
},
"setIdx": 6,
"setId": 2,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M896 0h-768c-70.41 0-128 57.61-128 128v768c0 70.41 57.61 128 128 128h768c70.41 0 128-57.61 128-128v-768c0-70.41-57.61-128-128-128zM448 794.501l-237.261-237.261 90.501-90.501 146.739 146.739 306.749-306.749 90.501 90.501-397.251 397.251z"
],
"attrs": [{ "fill": "rgb(0, 243, 171)" }],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["checked"],
"grid": 0
},
"attrs": [{ "fill": "rgb(0, 243, 171)" }],
"properties": {
"order": 40,
"id": 1,
"name": "checked1",
"prevSize": 32,
"code": 59677
},
"setIdx": 6,
"setId": 2,
"iconIdx": 1
},
{
"icon": {
"paths": [
"M512 25.6c268.631 0 486.4 217.769 486.4 486.4s-217.769 486.4-486.4 486.4c-268.631 0-486.4-217.769-486.4-486.4s217.769-486.4 486.4-486.4zM512 66.133c-246.246 0-445.867 199.62-445.867 445.867s199.62 445.868 445.867 445.868c246.246 0 445.868-199.621 445.868-445.868s-199.621-445.867-445.868-445.867zM685.299 351.77c8.428-9.359 22.843-10.115 32.2-1.69 9.359 8.428 10.115 22.843 1.69 32.202l-271.918 301.996c-3.149 3.494-7.132 5.791-11.377 6.856-8.141 2.371-17.283 0.087-23.337-6.636l-107.407-119.288c-8.425-9.357-7.67-23.775 1.69-32.2 9.357-8.425 23.772-7.67 32.2 1.687l90.775 100.818 255.485-283.745z",
"M717.499 350.080v0zM685.299 351.77v0zM719.188 382.282v0zM447.27 684.278v0zM435.894 691.133l-6.228-24.832-0.468 0.118-0.461 0.136 7.158 24.579zM412.557 684.498v0zM305.149 565.21v0zM306.839 533.010v0zM339.039 534.697v0zM429.814 635.515l-19.023 17.129 19.023 21.13 19.026-21.13-19.026-17.129zM1024 512c0-282.77-229.23-512-512-512v51.2c254.492 0 460.8 206.308 460.8 460.8h51.2zM512 1024c282.77 0 512-229.23 512-512h-51.2c0 254.492-206.308 460.8-460.8 460.8v51.2zM0 512c0 282.77 229.23 512 512 512v-51.2c-254.492 0-460.8-206.308-460.8-460.8h-51.2zM512 0c-282.77 0-512 229.23-512 512h51.2c0-254.492 206.308-460.8 460.8-460.8v-51.2zM91.733 512c0-232.108 188.159-420.267 420.267-420.267v-51.2c-260.384 0-471.467 211.083-471.467 471.467h51.2zM512 932.268c-232.108 0-420.267-188.16-420.267-420.268h-51.2c0 260.383 211.083 471.468 471.467 471.468v-51.2zM932.268 512c0 232.108-188.16 420.268-420.268 420.268v51.2c260.383 0 471.468-211.085 471.468-471.468h-51.2zM512 91.733c232.108 0 420.268 188.159 420.268 420.267h51.2c0-260.384-211.085-471.467-471.468-471.467v51.2zM734.63 331.057c-19.866-17.887-50.468-16.282-68.355 3.581l38.049 34.26c-1.034 1.149-2.806 1.242-3.955 0.207l34.26-38.049zM738.212 399.411c17.887-19.866 16.282-50.468-3.581-68.355l-34.26 38.049c-1.149-1.034-1.242-2.806-0.207-3.955l38.049 34.26zM466.294 701.407l271.918-301.996-38.049-34.26-271.918 301.996 38.049 34.26zM442.122 715.963c9.024-2.263 17.513-7.16 24.172-14.556l-38.049-34.26c0.364-0.402 0.883-0.709 1.421-0.845l12.457 49.661zM393.533 701.627c12.874 14.298 32.302 19.098 49.518 14.085l-14.316-49.157c0.934-0.274 2.079-0.041 2.847 0.814l-38.049 34.258zM286.126 582.339l107.407 119.288 38.049-34.258-107.407-119.288-38.049 34.258zM289.708 513.987c-19.863 17.884-21.468 48.489-3.581 68.352l38.049-34.258c1.034 1.149 0.942 2.918-0.207 3.953l-34.26-38.047zM358.062 517.568c-17.887-19.866-48.489-21.468-68.355-3.581l34.26 38.047c-1.149 1.037-2.921 0.942-3.955-0.207l38.049-34.258zM448.84 618.386l-90.778-100.818-38.049 34.258 90.778 100.818 38.049-34.258zM666.276 334.638l-255.485 283.748 38.049 34.258 255.485-283.745-38.049-34.26z"
],
"attrs": [
{ "fill": "rgb(0, 243, 171)" },
{ "fill": "rgb(0, 243, 171)" }
],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["complete-outline"],
"grid": 0
},
"attrs": [{ "fill": "rgb(0, 243, 171)" }, { "fill": "rgb(0, 243, 171)" }],
"properties": {
"order": 41,
"id": 2,
"name": "complete-outline",
"prevSize": 32,
"code": 59678
},
"setIdx": 6,
"setId": 2,
"iconIdx": 2
},
{
"icon": {
"paths": [
"M104.365 526.985l501.789-489.294c51.538-50.254 135.1-50.254 186.638 0l56.009 54.563c24.757 24.135 38.666 56.872 38.666 91.008s-13.909 66.873-38.666 91.008l-497.804 485.409c-10.281 10.022-23.193 17.091-37.322 20.436l-192.206 45.503c-27.977 6.625-57.438-2.079-76.939-22.733-19.501-20.651-25.97-49.999-16.894-76.64l57.567-168.994c3.885-11.404 10.447-21.767 19.163-30.266zM142.848 714.612l138.704-32.843 492.605-480.311c10.301-10.051 10.301-26.342 0-36.393l-55.985-54.589c-10.305-10.047-27.013-10.047-37.321 0l-497.408 484.997-40.595 119.139zM52.789 1024h607.076c29.157 0 52.791-23.047 52.791-51.476 0-13.65-5.56-26.743-15.462-36.396-9.899-9.653-23.327-15.077-37.328-15.077h-607.076c-29.155 0-52.789 23.047-52.789 51.473 0 28.43 23.635 51.476 52.789 51.476z",
"M501.501 195.985l74.643-72.785 167.977 163.793-74.646 72.786-167.974-163.794z"
],
"width": 887,
"attrs": [
{ "fill": "rgb(91, 104, 114)" },
{ "fill": "rgb(91, 104, 114)" }
],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["edit"],
"grid": 0
},
"attrs": [
{ "fill": "rgb(91, 104, 114)" },
{ "fill": "rgb(91, 104, 114)" }
],
"properties": {
"order": 42,
"id": 3,
"name": "edit",
"prevSize": 32,
"code": 59679
},
"setIdx": 6,
"setId": 2,
"iconIdx": 3
},
{
"icon": {
"paths": [
"M601.65 511.987l403.766-403.701c10.539-11.303 17.008-26.519 17.008-43.247 0-35.063-28.424-63.487-63.487-63.487-16.728 0-31.945 6.47-43.285 17.043l0.038-0.035-403.703 403.765-403.701-403.765c-11.303-10.539-26.519-17.008-43.247-17.008-35.063 0-63.487 28.424-63.487 63.487 0 16.728 6.47 31.945 17.043 43.285l-0.035-0.038 403.765 403.701-403.765 403.703c-10.539 11.303-17.008 26.519-17.008 43.247 0 35.063 28.424 63.487 63.487 63.487 16.728 0 31.945-6.47 43.285-17.043l-0.038 0.035 403.701-403.767 403.703 403.767c11.481 11.481 27.343 18.583 44.863 18.583 35.040 0 63.446-28.406 63.446-63.446 0-17.52-7.101-33.382-18.583-44.863l-403.767-403.703z"
],
"attrs": [{ "fill": "rgb(255, 82, 196)" }],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["error"],
"grid": 0
},
"attrs": [{ "fill": "rgb(255, 82, 196)" }],
"properties": {
"order": 43,
"id": 4,
"name": "error",
"prevSize": 32,
"code": 59680
},
"setIdx": 6,
"setId": 2,
"iconIdx": 4
},
{
"icon": {
"paths": [
"M43.073 850.042l739.897-739.797c38.827-38.826 101.843-38.826 140.772 0l739.797 739.797c19.115 19.018 19.115 49.977 0 68.989l-0.597 0.7c-58.342 58.342-152.917 58.342-211.26 0l-563.183-563.087c-19.413-19.413-50.973-19.413-70.386 0l-563.185 563.087c-58.34 58.342-152.817 58.342-211.157 0l-0.697-0.7c-19.015-19.012-19.015-49.971 0-68.989z"
],
"width": 1707,
"attrs": [{ "fill": "rgb(255, 255, 255)" }],
"isMulticolor": false,
"isMulticolor2": false,
"tags": ["up"],
"grid": 0
},
"attrs": [{ "fill": "rgb(255, 255, 255)" }],
"properties": {
"order": 44,
"id": 5,
"name": "up",
"prevSize": 32,
"code": 59681
},
"setIdx": 6,
"setId": 2,
"iconIdx": 5
},
{
"icon": {
"paths": [
"M1000.064 232.064l-208.128-208.128c-9.6-9.6-21.376-16.64-34.176-20.48v-3.456h-716.8c-22.656 0-40.96 18.304-40.96 40.96v942.080c0 22.656 18.304 40.96 40.96 40.96h942.080c22.656 0 40.96-18.304 40.96-40.96v-693.12c0-21.76-8.576-42.496-23.936-57.856zM348.16 92.16h327.68v133.12h-327.68v-133.12zM931.84 931.84h-839.68v-839.68h174.080v174.080c0 22.656 18.304 40.96 40.96 40.96h409.6c22.656 0 40.96-18.304 40.96-40.96v-146.176l174.080 174.080v637.696zM512 422.4c-101.76 0-184.32 82.56-184.32 184.32s82.56 184.32 184.32 184.32c101.76 0 184.32-82.56 184.32-184.32s-82.56-184.32-184.32-184.32zM512 709.12c-56.576 0-102.4-45.824-102.4-102.4s45.824-102.4 102.4-102.4c56.576 0 102.4 45.824 102.4 102.4s-45.824 102.4-102.4 102.4z"
],
"attrs": [{}],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": {
"101927114923511571751901243171125525525512558219612640531911041141": [
{}
]
},
"tags": ["save"],
"grid": 0
},
"attrs": [{}],
"properties": {
"order": 45,
"id": 6,
"name": "save",
"prevSize": 32,
"code": 59682
},
"setIdx": 6,
"setId": 2,
"iconIdx": 6
},
{
"icon": {