-
Notifications
You must be signed in to change notification settings - Fork 197
/
selection.json
executable file
·4668 lines (4668 loc) · 506 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": [
"M859.276 479.856l-315.14-315.128c-18.142-18.152-47.574-18.152-65.74 0l-65.434 65.446 83.006 83.012c19.296-6.516 41.418-2.144 56.792 13.232 15.462 15.47 19.796 37.784 13.118 57.144l80.006 80c19.36-6.674 41.686-2.36 57.148 13.124 21.602 21.598 21.602 56.606 0 78.216-21.616 21.614-56.618 21.614-78.242 0-16.248-16.262-20.27-40.136-12.030-60.154l-74.622-74.616v196.348c5.262 2.61 10.23 6.084 14.622 10.46 21.602 21.596 21.602 56.6 0 78.23-21.602 21.596-56.63 21.596-78.216 0-21.6-21.63-21.6-56.634 0-78.23 5.34-5.336 11.52-9.372 18.12-12.072v-198.164c-6.6-2.702-12.766-6.702-18.12-12.072-16.362-16.354-20.296-40.37-11.908-60.464l-81.83-81.846-216.090 216.072c-18.148 18.168-18.148 47.602 0 65.756l315.156 315.124c18.14 18.146 47.568 18.146 65.738 0l313.666-313.666c18.158-18.154 18.158-47.604-0-65.752z"
],
"tags": [
"git"
],
"grid": 14
},
"properties": {
"order": 87,
"id": 99,
"prevSize": 32,
"code": 58882,
"name": "git",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M814.494 671.986v-316.478c0-151.64-151.246-151.246-151.246-151.246h-50.416v-100.832l-151.248 151.248 151.248 151.248v-100.832c0 0 21.022 0 50.416 0 44.458 0 50.414 50.414 50.414 50.414v316.478c-30.034 17.48-50.414 49.53-50.414 86.848 0 55.634 45.196 100.834 100.832 100.834 55.632 0 100.83-45.2 100.83-100.834-0-37.218-20.382-69.368-50.416-86.848zM764.080 809.25c-27.818 0-50.418-22.548-50.418-50.416 0-27.816 22.6-50.414 50.418-50.414 27.866 0 50.414 22.598 50.414 50.414 0 27.868-22.548 50.416-50.414 50.416zM209.506 352.038v316.456c0 151.638 151.248 151.248 151.248 151.248h50.416v100.83l151.244-151.248-151.244-151.248v100.832c0 0-21.026 0-50.416 0-44.458 0-50.416-50.414-50.416-50.414v-316.456c30.056-17.502 50.416-49.552 50.416-86.874 0-55.658-45.172-100.832-100.832-100.832s-100.832 45.174-100.832 100.832c0 37.246 20.36 69.372 50.416 86.874zM259.922 317.698c-27.818 0-50.416-22.526-50.416-50.416 0-27.816 22.598-50.416 50.416-50.416 27.89 0 50.416 22.6 50.416 50.416 0 27.89-22.526 50.416-50.416 50.416z"
],
"tags": [
"git_compare"
],
"grid": 14
},
"properties": {
"order": 50,
"id": 53,
"prevSize": 32,
"code": 58920,
"name": "git_compare",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 1
},
{
"icon": {
"paths": [
"M688 218.666c-64.738 0-117.332 52.566-117.332 117.334 0 43.286 23.716 80.724 58.666 101.092v16.242c0 0 0 117.332-117.336 117.332-48.64 0-86.766 10.428-117.332 26.414v-277.322c34.978-20.368 58.666-57.806 58.666-101.092 0-64.768-52.566-117.332-117.334-117.332s-117.332 52.564-117.332 117.332c0 43.286 23.692 80.724 58.666 101.092v384.512c-34.976 20.34-58.666 57.75-58.666 101.064 0 64.738 52.564 117.332 117.332 117.332 64.77 0 117.334-52.594 117.334-117.332 0-30.71-12.088-58.438-31.398-79.408 17.074-20.968 44.832-37.926 90.064-37.926 232.836 0 234.668-234.666 234.668-234.666v-16.242c34.948-20.368 58.668-57.806 58.668-101.092 0-64.768-52.594-117.334-117.334-117.334zM335.998 160c32.458 0 58.668 26.21 58.668 58.666 0 32.458-26.21 58.668-58.668 58.668-32.456 0-58.666-26.21-58.666-58.668 0.002-32.456 26.21-58.666 58.666-58.666zM335.998 863.998c-32.456 0-58.666-26.238-58.666-58.664 0-32.37 26.21-58.668 58.666-58.668 32.458 0 58.668 26.298 58.668 58.668 0 32.426-26.21 58.664-58.668 58.664zM688 394.666c-32.428 0-58.666-26.208-58.666-58.666 0-32.456 26.238-58.666 58.666-58.666s58.666 26.21 58.666 58.666c0 32.458-26.238 58.666-58.666 58.666z"
],
"tags": [
"git_branch"
],
"grid": 14
},
"properties": {
"order": 47,
"id": 56,
"prevSize": 32,
"code": 58917,
"name": "git_branch",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 2
},
{
"icon": {
"paths": [
"M709.14 460.892c-22.756-88.014-102.016-153.322-197.14-153.322-95.102 0-174.382 65.306-197.166 153.322h-160.584v102.216h160.584c22.784 88.040 102.066 153.32 197.166 153.32 95.124 0 174.384-65.282 197.14-153.32h160.61v-102.216h-160.61zM512 614.21c-56.422 0-102.214-45.816-102.214-102.212 0-56.422 45.792-102.214 102.214-102.214 56.396 0 102.214 45.792 102.214 102.214 0 56.396-45.818 102.212-102.214 102.212z"
],
"tags": [
"git_commit"
],
"grid": 14
},
"properties": {
"order": 51,
"id": 52,
"prevSize": 32,
"code": 58921,
"name": "git_commit",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 3
},
{
"icon": {
"paths": [
"M293.422 156.812c-60.328 0-109.29 48.96-109.29 109.288 0 40.316 22.12 75.188 54.644 94.162v358.152c-32.526 18.944-54.644 53.792-54.644 94.132 0 60.3 48.96 109.29 109.29 109.29 60.326 0 109.288-48.988 109.288-109.29 0-40.342-22.064-75.19-54.642-94.132v-358.154c32.578-18.972 54.642-53.844 54.642-94.162-0.002-60.326-48.962-109.286-109.288-109.286zM293.422 867.19c-30.15 0-54.644-24.44-54.644-54.644 0-30.15 24.494-54.644 54.644-54.644 30.23 0 54.644 24.494 54.644 54.644-0 30.204-24.414 54.644-54.644 54.644zM293.422 320.746c-30.15 0-54.644-24.414-54.644-54.646 0-30.23 24.494-54.644 54.644-54.644 30.23 0 54.644 24.414 54.644 54.644-0 30.232-24.414 54.646-54.644 54.646zM785.22 718.412v-343.024c0-164.36-163.932-163.934-163.932-163.934h-54.644v-109.288l-163.936 163.934 163.936 163.934v-109.29c0 0 22.784 0 54.644 0 48.186 0 54.642 54.644 54.642 54.644v343.024c-32.55 18.944-54.642 53.736-54.642 94.132 0 60.3 48.986 109.29 109.288 109.29s109.292-48.988 109.292-109.29c0-40.34-22.096-75.188-54.648-94.132zM730.576 867.19c-30.148 0-54.644-24.44-54.644-54.644 0-30.15 24.496-54.644 54.644-54.644 30.208 0 54.644 24.494 54.644 54.644 0 30.204-24.436 54.644-54.644 54.644z"
],
"tags": [
"git_pull_request"
],
"grid": 14
},
"properties": {
"order": 48,
"id": 55,
"prevSize": 32,
"code": 58918,
"name": "git_pull_request",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 4
},
{
"icon": {
"paths": [
"M745.872 453.534c-43.508 0-80.964 24.038-101.062 59.294-5.254-0.37-10.394-0.828-15.876-0.828-119.73 0-233.356-91.212-274.806-204.12 24.92-21.44 40.94-52.844 40.94-88.216 0-64.548-52.388-116.936-116.936-116.936s-116.936 52.388-116.936 116.936c0 43.136 23.612 80.452 58.468 100.75v383.206c-34.858 20.27-58.468 57.552-58.468 100.718 0 64.52 52.386 116.934 116.936 116.934 64.546 0 116.936-52.414 116.936-116.934 0-43.166-23.612-80.45-58.468-100.718v-210.374c76.882 81.332 183.054 135.69 292.336 135.69 5.824 0 10.622-0.398 15.876-0.57 20.214 35.114 57.668 59.036 101.062 59.036 64.52 0 116.934-52.414 116.934-116.932-0.004-64.55-52.418-116.936-116.936-116.936zM278.13 862.804c-32.26 0-58.466-26.15-58.466-58.466 0-32.26 26.208-58.466 58.466-58.466 32.346 0 58.466 26.208 58.466 58.466 0.002 32.316-26.12 58.466-58.466 58.466zM278.13 278.132c-32.26 0-58.466-26.122-58.466-58.468 0-32.344 26.208-58.466 58.466-58.466 32.346 0 58.466 26.122 58.466 58.466 0.002 32.346-26.12 58.468-58.466 58.468zM745.872 628.936c-32.262 0-58.468-26.15-58.468-58.466 0-32.346 26.208-58.468 58.468-58.468 32.312 0 58.464 26.124 58.464 58.468 0 32.316-26.152 58.466-58.464 58.466z"
],
"tags": [
"git_merge"
],
"grid": 14
},
"properties": {
"order": 49,
"id": 54,
"prevSize": 32,
"code": 58919,
"name": "git_merge",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 5
},
{
"icon": {
"paths": [
"M511.996 110.442v0c-196.018 0-356.072 52.704-356.072 118.134 0 17.238 42.746 264.352 59.698 362.356 7.606 43.952 121.184 108.396 296.288 108.396l0.18-0.528v0.528c175.104 0 288.682-64.446 296.286-108.396 16.958-98.004 59.704-345.118 59.704-362.356-0.004-65.432-160.062-118.134-356.084-118.134zM511.996 619.94c-62.51 0-113.188-50.688-113.188-113.194 0-62.522 50.678-113.194 113.188-113.194 62.516 0 113.19 50.676 113.19 113.194 0 62.506-50.674 113.194-113.19 113.194zM511.932 265.088c-125.94-0.204-227.998-22.084-227.958-48.882 0.042-26.806 102.182-48.36 228.12-48.152 125.944 0.206 228.002 22.078 227.958 48.884s-102.176 48.352-228.12 48.15z",
"M767.924 670.206c-5.416 0-9.752 3.83-9.752 3.83s-87.694 69.438-246.178 69.444c-158.482-0.006-246.174-69.444-246.174-69.444s-4.336-3.83-9.748-3.83c-6.464 0-12.598 4.342-12.598 13.926 0 1.018 0.096 2.022 0.284 3.014 13.612 72.844 23.552 124.524 25.304 132.392 11.878 53.586 116.692 94.016 242.922 94.022v0h0.024c126.23-0.006 231.044-40.436 242.922-94.022 1.752-7.87 11.694-59.554 25.304-132.392 0.184-0.992 0.28-1.996 0.28-3.014 0.002-9.586-6.13-13.926-12.59-13.926z",
"M576.958 507.664c0 34.058-27.61 61.668-61.668 61.668s-61.668-27.61-61.668-61.668c0-34.058 27.61-61.668 61.668-61.668s61.668 27.61 61.668 61.668z"
],
"tags": [
"bitbucket"
],
"grid": 14
},
"properties": {
"order": 86,
"id": 98,
"prevSize": 32,
"code": 58883,
"name": "bitbucket",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 6
},
{
"icon": {
"paths": [
"M636.982 561.95c13.726 0 25.278 6.708 35.264 20.364 9.91 13.492 14.974 30.196 14.974 49.926 0 19.816-4.984 36.512-14.974 50.016-9.986 13.492-21.694 20.278-35.264 20.278-14.436 0-26.84-6.708-36.826-20.278-9.83-13.504-14.896-30.2-14.896-50.016 0-19.808 4.908-36.434 14.896-49.926 9.986-13.658 22.468-20.364 36.826-20.364zM813.608 379.078c38.468 41.702 57.892 92.296 57.892 151.626 0 38.5-4.53 73.144-13.266 103.958-8.886 30.664-20.122 55.786-33.548 74.972-13.65 19.348-30.186 36.356-50.082 50.71-19.896 14.746-38.232 25.278-54.768 32.062-16.536 6.79-35.58 12.024-57.11 15.684-21.294 3.75-37.372 5.774-48.528 6.32-10.762 0.464-22.468 0.7-35.108 0.7-2.808 0-12.324 0.316-28.124 0.782-15.408 0.624-28.668 0.942-38.966 0.942-10.302 0-23.564-0.316-38.972-0.942-15.676-0.464-25.278-0.782-28.124-0.782-12.638 0-24.452-0.156-35.148-0.7-11.194-0.546-27.26-2.57-48.448-6.32-21.644-3.582-40.562-8.742-57.184-15.684-16.542-6.708-34.838-17.316-54.65-32.062-19.974-14.512-36.512-31.442-50.166-50.71-13.418-19.188-24.69-44.308-33.544-74.972-8.7-30.812-13.262-65.458-13.262-103.958 0-59.33 19.346-109.924 57.924-151.626-4.25-2.066-4.482-22.856-0.658-62.452 3.428-39.634 11.854-76.146 25.508-109.458 48.094 5.112 107.27 32.258 178.154 81.258 23.946-6.246 56.71-9.442 98.492-9.442 43.848 0 76.612 3.196 98.538 9.442 32.296-21.804 63.192-39.634 92.682-53.212 29.96-13.418 51.486-21.334 65.062-23.4l20.288-4.646c13.726 33.31 22.152 69.906 25.59 109.458 3.974 39.594 3.738 60.384-0.474 62.452zM513.676 780.708c86.48 0 151.708-10.376 196.014-31.124 44.166-20.832 66.634-63.668 66.634-128.266 0-37.442-14.124-68.808-42.29-93.812-14.516-13.574-31.524-21.804-51.028-25-19.028-3.124-48.442-3.124-88.154 0-39.556 3.196-66.626 4.64-81.178 4.64-19.814 0-41.306-1.050-67.988-3.124-26.682-1.988-47.594-3.274-62.536-3.898-15.29-0.47-31.552 1.444-49.228 5.5-17.824 4.254-32.258 11.43-43.92 21.806-26.874 23.992-40.528 55.204-40.528 93.812 0 64.598 21.88 107.438 65.614 128.188 43.684 20.906 108.71 31.208 195.238 31.208zM388.58 561.95c13.576 0 25.238 6.708 35.14 20.364 9.908 13.492 14.946 30.196 14.946 49.926 0 19.816-4.96 36.512-14.946 50.016-9.904 13.492-21.648 20.278-35.14 20.278-14.548 0-26.918-6.708-36.906-20.278-9.904-13.504-14.942-30.2-14.942-50.016 0-19.808 4.956-36.434 14.942-49.926 9.988-13.658 22.358-20.364 36.906-20.364z"
],
"tags": [
"github_alt"
],
"grid": 14
},
"properties": {
"order": 79,
"id": 93,
"prevSize": 32,
"code": 58888,
"name": "github_alt",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 7
},
{
"icon": {
"paths": [
"M512 161.848c-198.258 0-359.004 160.746-359.004 359 0 158.64 102.856 293.18 245.524 340.642 17.944 3.284 24.498-7.802 24.498-17.27 0-8.544-0.33-36.856-0.504-66.83-99.832 21.692-120.932-42.336-120.932-42.336-16.344-41.456-39.858-52.498-39.858-52.498-32.626-22.262 2.474-21.824 2.474-21.824 36.044 2.498 55.024 36.986 55.024 36.986 32.036 54.87 84.052 39.004 104.474 29.8 3.262-23.138 12.554-39.004 22.788-47.944-79.692-9.070-163.528-39.878-163.528-177.438 0-39.224 14.002-71.212 36.922-96.346-3.66-9.116-16.018-45.644 3.548-95.052 0 0 30.108-9.642 98.736 36.812 28.616-8 59.314-11.942 89.838-12.076 30.5 0.132 61.218 4.12 89.882 12.118 68.496-46.498 98.644-36.812 98.644-36.812 19.632 49.454 7.278 85.936 3.598 95.008 23.008 25.134 36.898 57.124 36.898 96.346 0 137.912-83.968 168.28-163.946 177.174 12.93 11.132 24.364 32.958 24.364 66.438 0 47.988-0.476 86.682-0.476 98.514 0 9.556 6.528 20.73 24.714 17.226 142.558-47.552 245.324-182.088 245.324-340.642 0.002-198.25-160.744-358.996-359.002-358.996z"
],
"tags": [
"github_badge"
],
"grid": 14
},
"properties": {
"order": 80,
"id": 92,
"prevSize": 32,
"code": 58889,
"name": "github_badge",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 8
},
{
"icon": {
"paths": [
"M512 869c-196.862 0-357-160.176-357-357 0-196.822 160.138-357 357-357 196.86 0 357 160.178 357 357 0 196.824-160.14 357-357 357zM512 234.334c-153.070 0-277.666 124.558-277.666 277.666 0 153.090 124.598 277.668 277.666 277.668 153.088 0 277.668-124.578 277.668-277.668 0-153.108-124.58-277.666-277.668-277.666z",
"M574.056 536.83c6.816 0 12.55 3.33 17.51 10.112 4.92 6.7 7.436 14.992 7.436 24.79 0 9.84-2.476 18.128-7.436 24.834-4.958 6.7-10.772 10.068-17.51 10.068-7.168 0-13.326-3.33-18.286-10.068-4.88-6.706-7.396-14.994-7.396-24.834 0-9.836 2.438-18.090 7.396-24.79 4.96-6.782 11.158-10.112 18.286-10.112zM661.756 446.030c19.1 20.706 28.744 45.828 28.744 75.286 0 19.116-2.248 36.316-6.586 51.618-4.414 15.224-9.992 27.698-16.658 37.224-6.778 9.608-14.988 18.050-24.868 25.18-9.878 7.322-18.982 12.55-27.194 15.92-8.21 3.372-17.666 5.968-28.356 7.788-10.574 1.862-18.556 2.868-24.096 3.138-5.344 0.23-11.156 0.348-17.432 0.348-1.394 0-6.12 0.156-13.964 0.386-7.65 0.31-14.234 0.466-19.348 0.466-5.116 0-11.7-0.156-19.35-0.466-7.784-0.23-12.55-0.386-13.964-0.386-6.276 0-12.14-0.078-17.452-0.348-5.558-0.272-13.536-1.278-24.056-3.138-10.746-1.78-20.14-4.34-28.392-7.788-8.214-3.33-17.298-8.598-27.134-15.92-9.918-7.206-18.128-15.612-24.91-25.18-6.662-9.528-12.26-22-16.656-37.224-4.32-15.3-6.584-32.502-6.584-51.618 0-29.458 9.606-54.58 28.76-75.286-2.112-1.026-2.226-11.348-0.326-31.008 1.702-19.68 5.884-37.808 12.666-54.348 23.88 2.538 53.262 16.018 88.458 40.346 11.89-3.102 28.158-4.688 48.904-4.688 21.772 0 38.040 1.586 48.926 4.688 16.038-10.828 31.376-19.68 46.020-26.42 14.876-6.664 25.564-10.592 32.304-11.62l10.072-2.306c6.816 16.54 11 34.71 12.708 54.348 1.972 19.66 1.856 29.982-0.236 31.008zM512.832 645.45c42.94 0 75.326-5.152 97.326-15.456 21.928-10.344 33.084-31.612 33.084-63.686 0-18.592-7.012-34.166-20.996-46.58-7.208-6.74-15.652-10.828-25.336-12.414-9.45-1.55-24.052-1.55-43.772 0-19.64 1.586-33.082 2.304-40.306 2.304-9.838 0-20.508-0.522-33.756-1.55-13.248-0.988-23.632-1.626-31.050-1.936-7.592-0.234-15.666 0.716-24.444 2.73-8.85 2.112-16.018 5.674-21.808 10.828-13.342 11.912-20.124 27.408-20.124 46.58 0 32.074 10.864 53.344 32.58 63.646 21.69 10.38 53.976 15.496 96.94 15.496zM450.718 536.83c6.742 0 12.532 3.33 17.448 10.112 4.92 6.7 7.422 14.992 7.422 24.79 0 9.84-2.462 18.128-7.422 24.834-4.916 6.7-10.75 10.068-17.448 10.068-7.224 0-13.366-3.33-18.324-10.068-4.916-6.706-7.418-14.994-7.418-24.834 0-9.836 2.46-18.090 7.418-24.79 4.96-6.782 11.102-10.112 18.324-10.112z"
],
"tags": [
"github"
],
"grid": 14
},
"properties": {
"order": 81,
"id": 91,
"prevSize": 32,
"code": 58890,
"name": "github",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 9
},
{
"icon": {
"paths": [
"M203.782 492.332h-84.89c-2.184 0-3.958 1.774-3.958 3.976v41.488c0 2.206 1.774 3.972 3.958 3.972h33.126v51.576c0 0-7.44 2.482-27.978 2.482-24.256 0-58.128-8.884-58.128-83.342 0-74.49 35.268-84.292 68.39-84.292 28.674 0 41.008 5.034 48.878 7.476 2.466 0.778 4.718-1.7 4.718-3.906l9.486-40.096c0-1.024-0.366-2.258-1.5-3.090-3.202-2.25-22.672-13.144-71.844-13.144-56.678 0-114.802 24.11-114.802 139.996 0 115.878 66.54 133.136 122.62 133.136 46.42 0 74.624-19.826 74.624-19.826 1.148-0.63 1.27-2.25 1.27-2.978v-129.446c-0.018-2.194-1.804-3.982-3.97-3.982zM633.062 385.33h-47.762c-2.204 0-3.968 1.778-3.968 3.98v92.352h-74.486v-92.352c0-2.204-1.784-3.98-3.934-3.98h-47.81c-2.15 0-3.902 1.778-3.902 3.98v250.062c0 2.214 1.766 3.986 3.902 3.986h47.81c2.182 0 3.934-1.79 3.934-3.986v-106.944h74.486l-0.172 106.958c0 2.218 1.766 3.97 3.902 3.97h47.824c2.204 0 3.918-1.79 3.918-3.97l0.172-250.082c0.036-2.198-1.75-3.974-3.914-3.974zM260.874 390.998c-17.018 0-30.82 13.924-30.82 31.116 0 17.196 13.802 31.124 30.82 31.124 17.020 0 30.806-13.926 30.806-31.124 0.002-17.192-13.782-31.116-30.806-31.116zM288.298 471.208c0-2.184-1.766-3.996-3.916-3.996h-47.66c-2.238 0-4.136 2.252-4.136 4.462 0 0 0 138.904 0 165.376 0 4.834 3.020 6.304 6.936 6.304 0 0 20.304 0 42.928 0 4.682 0 5.914-2.3 5.914-6.406-0.030-8.866-0.030-43.57-0.030-50.304-0.036-6.408-0.036-115.436-0.036-115.436zM818.050 467.588h-47.41c-2.168 0-3.902 1.794-3.902 3.994v122.594c0 0-12.046 8.876-29.192 8.876-17.082 0-21.648-7.756-21.648-24.544 0-16.734 0-106.938 0-106.938 0-2.206-1.782-3.996-3.922-3.996h-48.090c-2.204 0-3.934 1.792-3.934 3.996 0 0 0 65.294 0 115.026 0 49.724 27.718 61.914 65.812 61.914 31.27 0 56.536-17.292 56.536-17.292s1.184 9.072 1.774 10.154c0.512 1.086 1.93 2.166 3.472 2.166h30.472c2.164 0 3.938-1.786 3.938-3.984l0.132-167.988c-0.104-2.184-1.874-3.978-4.038-3.978zM947.918 461.956c-26.942 0-45.262 12.022-45.262 12.022v-84.666c0-2.204-1.786-3.98-3.918-3.98h-47.96c-2.148 0-3.914 1.778-3.914 3.98l-0.136 250.078c0 2.222 1.786 3.97 3.95 3.97 0 0 33.364 0 33.394 0 1.484 0 2.598-0.768 3.45-2.104 0.836-1.346 2.020-11.538 2.020-11.538s19.554 18.576 56.68 18.576c43.57 0 68.542-22.102 68.542-99.224-0.002-77.022-39.908-87.114-66.846-87.114zM929.21 602.882c-16.438-0.506-27.574-7.972-27.574-7.972v-79.216c0 0 11.016-6.762 24.528-7.956 17.078-1.518 33.59 3.638 33.59 44.392-0.090 42.952-7.524 51.434-30.544 50.752zM426.364 601.976c-2.102 0-7.47 0.836-12.97 0.836-17.574 0-23.574-8.184-23.574-18.774 0-10.634 0-70.338 0-70.338h35.874c2.2 0 3.934-1.776 3.934-3.994v-38.534c0.034-2.214-1.736-3.996-3.934-3.996h-35.874l-0.052-47.35c0-1.792-0.95-2.684-3.018-2.684h-48.83c-1.884 0-2.932 0.846-2.932 2.666v48.938c0 0-24.49 5.912-26.14 6.4-1.63 0.466-2.832 2.006-2.832 3.806v30.772c0 2.2 1.784 3.992 3.936 3.992h25.038c0 0 0 32.148 0 73.992 0 54.95 38.556 60.346 64.564 60.346 11.872 0 26.078-3.872 28.456-4.7 1.432-0.504 2.252-1.982 2.252-3.566l0.018-33.828c0.004-2.212-1.85-4.010-3.916-3.984z"
],
"tags": [
"github_full"
],
"grid": 14
},
"properties": {
"order": 67,
"id": 78,
"prevSize": 32,
"code": 58903,
"name": "github_full",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 10
},
{
"icon": {
"paths": [
"M401.824 733.888c0 0-31.44 18.282 22.374 24.468 65.192 7.438 98.512 6.372 170.352-7.224 0 0 18.892 11.842 45.268 22.1-161.054 69.026-364.494-3.998-237.994-39.344z",
"M382.142 643.816c0 0-35.262 26.102 18.59 31.672 69.64 7.182 124.64 7.772 219.802-10.55 0 0 13.164 13.344 33.862 20.642-194.72 56.936-411.606 4.488-272.254-41.764z",
"M548.048 491.024c39.686 45.688-10.428 86.8-10.428 86.8s100.764-52.014 54.49-117.152c-43.22-60.744-76.366-90.926 103.062-194.988 0.002 0-281.642 70.342-147.124 225.34z",
"M761.052 800.512c0 0 23.264 19.168-25.624 33.998-92.96 28.164-386.914 36.666-468.574 1.124-29.352-12.77 25.694-30.492 43.010-34.208 18.058-3.918 28.378-3.188 28.378-3.188-32.646-22.994-211.004 45.156-90.598 64.672 328.37 53.25 598.58-23.98 513.408-62.398z",
"M416.94 550.494c0 0-149.524 35.512-52.95 48.408 40.776 5.458 122.062 4.222 197.776-2.12 61.882-5.22 124.020-16.318 124.020-16.318s-21.822 9.344-37.608 20.124c-151.838 39.932-445.164 21.356-360.718-19.492 71.416-34.52 129.48-30.602 129.48-30.602z",
"M685.168 700.42c154.354-80.204 82.984-157.284 33.174-146.9-12.21 2.542-17.654 4.744-17.654 4.744s4.532-7.098 13.19-10.172c98.544-34.646 174.334 102.182-31.812 156.372-0.002 0 2.39-2.134 3.102-4.044z",
"M592.112 97.654c0 0 85.478 85.51-81.080 217-133.562 105.478-30.456 165.62-0.054 234.334-77.964-70.342-135.178-132.262-96.792-189.894 56.338-84.596 212.414-125.612 177.926-261.44z",
"M432.108 917.762c148.16 9.486 375.67-5.262 381.056-75.368 0 0-10.354 26.576-122.444 47.682-126.454 23.798-282.418 21.020-374.922 5.768 0.002 0 18.936 15.674 116.31 21.918z"
],
"tags": [
"java"
],
"grid": 14
},
"properties": {
"order": 26,
"id": 21,
"prevSize": 32,
"code": 58936,
"name": "java",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 11
},
{
"icon": {
"paths": [
"M302.604 862.864c198.868 27.148 394.202 53.816 593.404 81.010-67.866-113-133.986-223.092-200.654-334.104-130.576 84.146-259.964 167.526-392.75 253.092zM952.144 237.418c-17.534 26.322-35.092 52.628-52.6 78.966-60.126 90.458-120.248 180.916-180.316 271.414-3.344 5.042-7.676 9.042-2.972 16.808 58.046 95.844 115.628 191.97 173.356 288.008 9.106 15.168 18.318 30.274 30.106 44.832 11.664-233.092 23.332-466.186 34.998-699.278-0.86-0.25-1.716-0.5-2.572-0.75zM159.834 536.242c2.718 2.576 9.488 4.068 12.646 2.518 55.674-27.362 111.698-54.118 166.16-83.736 17.756-9.652 31.408-26.95 46.71-40.986 50.666-46.466 101.24-93.020 151.802-139.588 3.1-2.856 6.756-5.626 8.604-9.232 18.164-35.498 36.004-71.164 54.486-107.872-22.032-8.276-42.924-16.382-64.072-23.76-2.86-0.998-7.38 0.98-10.492 2.72-48.95 27.344-98.83 53.228-146.224 83.052-23.714 14.922-43.036 36.914-64.026 56.064-33.844 30.888-67.634 61.85-100.99 93.272-8.856 8.344-16.914 17.868-23.808 27.9-22.814 33.21-44.932 66.902-68.080 101.548 12.94 13.4 24.692 26.192 37.284 38.1zM363.306 490.844c-27.694 117-55.234 233.338-83.674 353.498 133.386-85.946 263.704-169.91 393.154-253.322-103.012-33.342-205.706-66.582-309.478-100.176zM918.144 238.544c-112.702 18.824-222.714 37.204-334.148 55.82 37.954 92.324 75.15 182.796 113.396 275.826 74.014-111.194 146.552-220.174 220.752-331.646zM367.948 466.906c101.49 32.948 200.964 65.238 303.314 98.468-38.018-92.6-74.716-181.97-112.188-273.226-63.83 58.358-126.698 115.842-191.128 174.758zM164.022 604.47c-35.996 86.052-70.76 169.154-106.158 253.77 68.028-2.010 133.978-3.962 202.186-5.974-32.018-82.626-63.414-163.638-96.026-247.796zM262.44 793.42c0.846-0.162 1.664-0.39 2.514-0.552 24.27-100.94 48.896-201.184 73.686-306.070-55.29 28.734-108.028 56.144-162.212 84.304 27.648 71.88 57.134 147.686 86.012 222.318zM877.346 222.172c-32.288-8.546-64.562-17.134-96.868-25.628-46.428-12.2-92.884-24.26-139.282-36.576-5.798-1.54-9.994-2.544-13.402 4.438-16.398 33.596-33.304 66.944-49.966 100.412-0.518 1.036-0.41 2.378-0.808 4.972 100.542-15.236 200.408-30.372 300.268-45.508 0.028-0.702 0.042-1.406 0.062-2.11zM690.048 145.758c86.7 23.984 173.402 47.968 263.144 72.794-15.096-43.008-29.090-82.882-43.476-123.888-73.682 16.34-146.476 32.48-219.278 48.622-0.13 0.822-0.256 1.648-0.386 2.472zM284.754 882.244c-32.594-3.754-66.050-0.298-99.106 0.264-27.158 0.466-54.302 1.496-81.448 2.346-2.802 0.088-5.588 0.644-8.376 3.664 224.472 20.754 448.944 41.51 673.414 62.264 0.158-1 0.302-2 0.462-3-71.958-9.824-143.92-19.65-215.882-29.47-89.664-12.24-179.182-25.708-269.064-36.068zM62.302 780.79c28.928-67.116 57.724-134.288 86.772-201.348 2.908-6.722 2.682-11.288-3.004-16.706-12.146-11.566-23.436-24.030-36.718-37.836-17.954 88.624-35.46 175.048-52.97 261.474 0.65 0.304 1.308 0.61 1.954 0.918 1.338-2.16 2.974-4.192 3.966-6.5zM632.418 128.038c48.778-12.586 98.266-22.418 147.464-33.402 3.182-0.712 6.288-1.77 9.432-2.664-0.162-0.8-0.322-1.602-0.482-2.404-69.294 9.322-138.59 18.642-211.386 28.434 19.856 8.682 35.146 15.152 54.972 10.036z"
],
"tags": [
"ruby"
],
"grid": 14
},
"properties": {
"order": 53,
"id": 59,
"prevSize": 32,
"code": 58937,
"name": "ruby",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 12
},
{
"icon": {
"paths": [
"M274.348 224.696c0 0 475.304-47.532 475.304-126.748v190.124c0 0 0 79.216-475.304 126.746z",
"M276.348 478.196c0 0 475.304-47.532 475.304-126.75v190.118c0 0 0 79.218-475.304 126.75z",
"M276.348 731.69c0 0 475.304-47.53 475.304-126.746v190.122c0 0 0 79.216-475.304 126.748z"
],
"tags": [
"scala"
],
"grid": 14
},
"properties": {
"order": 27,
"id": 22,
"prevSize": 32,
"code": 58935,
"name": "scala",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 13
},
{
"icon": {
"paths": [
"M424.788 499.016h173.342c48.254 0 86.774-39.726 86.774-88.19v-165.252c0-47.028-39.676-82.362-86.774-90.21-29.812-4.962-60.748-7.218-90.412-7.080-29.672 0.138-58.002 2.666-82.93 7.080-73.44 12.976-86.774 40.13-86.774 90.21v66.14h173.546v22.046h-238.674c-50.438 0-94.602 30.316-108.416 87.986-15.934 66.106-16.644 107.356 0 176.376 12.334 51.384 41.796 87.988 92.234 87.988h59.67v-79.292c0-57.274 49.56-107.802 108.414-107.802zM413.866 267.622c-17.992 0-32.566-14.74-32.566-32.968 0-18.292 14.574-33.172 32.566-33.172 17.926 0 32.564 14.878 32.564 33.172 0 18.226-14.638 32.968-32.564 32.968z",
"M858.448 421.748c-12.462-50.206-36.27-87.986-86.77-87.986h-65.13v77.064c0 59.752-50.656 110.034-108.416 110.034h-173.342c-47.484 0-86.774 40.638-86.774 88.188v165.256c0 47.032 40.898 74.7 86.774 88.186 54.934 16.156 107.61 19.078 173.342 0 43.69-12.646 86.774-38.108 86.774-88.186v-66.144h-173.346v-22.046h260.118c50.436 0 69.23-35.182 86.77-87.988 18.118-54.358 17.348-106.638 0-176.378zM609.052 752.252c17.988 0 32.564 14.74 32.564 32.972 0 18.292-14.576 33.17-32.564 33.17-17.926 0-32.564-14.876-32.564-33.17 0-18.232 14.638-32.972 32.564-32.972z"
],
"tags": [
"python"
],
"grid": 14
},
"properties": {
"order": 20,
"id": 18,
"prevSize": 32,
"code": 58940,
"name": "python",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 14
},
{
"icon": {
"paths": [
"M493.75 100.487c-3.884 0.485-22.578 2.672-41.272 4.854-50.254 5.828-93.467 20.152-124.785 41.516-10.194 7.040-10.681 7.283-18.208 3.397-10.925-5.582-39.813-6.553-54.137-1.697-19.909 6.553-33.018 21.363-36.902 41.755-2.912 15.297 0.244 33.261 8.255 45.156 4.855 7.284 22.577 20.15 33.26 24.278 0.729 0.486-0.727 15.536-3.399 33.502-4.127 27.433-4.61 40.785-3.641 81.328 0.728 26.705 2.913 58.993 4.855 71.617 2.185 12.625 4.612 31.319 5.341 41.514l1.699 18.452-10.438 1.7c-16.512 2.428-41.758 16.021-44.43 23.544-3.156 8.984-0.242 17.48 9.228 27.678 9.71 10.197 15.535 9.951 31.802-0.973l9.711-6.553v111.676c0 110.945 0 112.158 5.583 125.512 7.283 18.205 22.335 41.027 36.901 56.807l12.14 12.625-12.14 7.771c-13.352 8.738-24.277 24.518-24.277 35.441 0 4.615 2.671 9.227 8.739 14.809 7.283 7.043 10.441 8.256 20.395 8.256 10.683 0 13.352-1.213 24.763-10.924 7.039-6.070 17.48-13.354 23.062-16.268l10.439-5.342 22.335 7.527c37.871 12.867 60.936 16.268 109.977 16.023 62.148-0.244 113.617-9.227 151.49-26.463 7.037-3.156 14.807-5.826 16.748-5.826 2.188 0 12.385 8.984 22.822 19.664 18.693 19.666 18.936 19.906 28.889 18.453 14.326-1.943 24.037-11.898 24.037-24.277 0-13.354-5.828-24.277-19.91-36.904l-11.893-10.682 11.406-15.293c21.609-29.377 33.99-61.664 42.486-110.705 4.855-29.375 5.826-85.455 2.672-148.090-0.973-16.266-1.457-29.619-1.457-29.619 0.244 0 5.34 2.67 10.924 6.070 14.084 8.010 22.578 7.77 30.346-0.486 7.043-7.525 8.984-13.838 7.77-25.248-0.971-10.439-10.438-16.991-32.775-23.060-8.982-2.187-16.992-4.614-17.721-5.342-0.729-0.485-1.941-44.186-2.914-97.108-1.699-99.051-1.699-100.509-13.352-150.519-0.727-3.156-0.242-5.341 1.699-5.341 6.068 0 24.518-15.295 30.104-25.006 11.894-19.907 10.439-45.398-3.639-64.82-14.568-20.15-46.127-27.19-75.99-17.236l-15.295 5.098-12.381-8.012c-17.238-11.652-46.371-23.307-72.104-28.891-21.121-4.61-88.852-8.011-106.818-5.341zM587.457 112.384c79.875 13.839 122.844 51.225 148.092 128.184 15.053 45.885 16.994 66.034 19.18 197.131 1.213 65.307 3.4 141.292 4.855 168.724 1.457 27.434 1.941 60.693 1.213 74.047-3.154 48.312-13.838 92.98-29.373 122.6-10.441 19.906-30.592 45.152-37.873 47.338-3.156 0.973-9.953 5.83-15.295 10.926-27.92 26.463-88.369 42.729-167.513 45.4-48.312 1.455-76.715-1.941-114.345-13.84-21.121-6.797-25.249-9.225-34.96-19.178-12.139-12.869-23.305-19.666-32.532-19.666-12.138 0-44.669-42.244-54.865-70.889-7.283-20.635-8.497-72.346-4.855-190.092l3.155-102.933-5.825-45.641c-15.296-119.928-0.244-213.153 43.699-267.776 19.421-24.036 49.523-41.514 93.223-53.896 42.972-12.139 142.022-17.964 184.020-10.438zM754.971 147.827c30.59 15.538 32.045 63.851 2.672 82.543-6.068 3.886-11.652 7.041-12.383 7.041-0.971 0-3.885-6.798-6.797-14.808l-5.582-15.053 6.311-7.283c4.613-5.341 5.826-8.983 4.613-13.597-2.914-11.653-9.469-15.051-23.064-11.895-5.096 1.215-7.525-0.485-16.508-11.896-5.826-7.283-10.197-13.595-9.711-14.322 0.486-0.485 7.039-2.428 14.324-4.613 15.779-4.37 33.018-2.914 46.125 3.883zM295.648 155.11c6.797 1.458 12.867 3.643 13.594 4.614 0.729 1.213-3.399 8.255-8.983 15.538-9.952 12.867-10.924 13.353-19.177 12.139-7.527-1.214-9.469-0.486-13.839 5.098-6.797 8.738-6.797 13.838 0.486 22.091l5.584 6.799-4.614 14.080c-2.669 7.771-6.068 14.081-7.524 14.081-4.855 0-20.395-10.438-25.491-16.994-20.636-27.191-7.283-67.734 25.491-76.715 14.807-3.885 19.422-4.128 34.473-0.73zM789.687 510.043c16.752 6.312 24.762 15.051 22.334 24.52l-1.455 6.068-8.256-4.855c-4.855-2.912-8.98-3.885-9.711-2.428-0.969 1.215 0.486 2.912 3.16 3.885 7.766 2.428 11.164 7.768 7.523 12.139-4.855 5.826-15.293 4.369-27.434-3.885l-11.41-7.525v-16.752c0-15.776 0.242-16.748 5.584-16.507 2.914 0 11.896 2.428 19.664 5.341zM264.33 519.51c0 19.664-2.669 26.219-13.353 33.502-14.809 10.199-21.364 11.412-28.161 4.615-5.099-5.1-5.342-5.586-1.213-8.014 9.952-6.070 11.894-8.012 9.466-9.469-1.456-0.971-5.342 0.729-8.982 3.398-5.339 4.129-6.554 4.373-7.767 1.215-4.372-11.41 4.125-20.877 25.974-28.402 19.909-6.798 24.036-6.312 24.036 3.154zM717.586 861.092c12.865 9.465 24.033 31.074 20.877 40.539-3.396 10.197-6.311 9.229-12.867-4.609-3.4-6.797-7.283-12.869-8.738-13.111-1.459-0.486 0.482 5.584 4.611 13.596 3.887 8.010 6.312 15.535 5.34 16.994-0.725 1.455-5.096 2.668-9.709 2.668-6.799 0-10.197-2.426-23.064-16.992-8.010-9.225-16.992-17.479-19.662-18.207-7.283-2.428-5.586-7.041 6.311-17.967 13.596-12.379 22.82-13.108 36.902-2.91zM341.774 862.547c3.884 1.941 10.926 8.256 15.78 13.838l8.98 10.197-9.466 4.369c-5.101 2.428-15.78 9.953-23.791 16.75-16.267 13.838-22.335 16.023-32.532 11.896-6.311-2.67-6.798-3.4-4.614-9.227 1.458-3.639 5.342-10.195 8.741-14.566 3.397-4.367 5.584-8.74 4.855-9.467-1.941-1.699-13.11 11.168-16.508 19.178-3.399 8.498-6.556 8.74-8.497 0.729-3.4-13.838 6.311-28.402 26.705-40.057 13.836-8.012 20.392-8.984 30.346-3.641z",
"M581.633 142.731c-24.521 6.312-45.885 23.791-55.838 45.885-7.527 16.264-7.041 43.454 0.729 59.721 8.256 16.994 25.977 33.746 42.973 40.058 18.934 7.041 50.008 6.068 66.273-2.187 26.947-13.836 39.33-32.773 40.785-63.849 0.973-18.449 0.246-22.335-4.855-33.987-8.496-18.45-19.42-29.861-36.658-38.357-16.75-8.012-38.114-10.925-53.408-7.283zM629.215 151.955c41.031 18.208 56.566 68.704 33.020 106.092-22.338 35.202-79.873 41.758-112.648 12.867-28.16-24.765-33.016-62.394-12.139-92.982 19.908-29.132 59.48-40.299 91.767-25.977z",
"M540.603 205.609c-19.664 17.478-0.486 48.554 25.734 41.27 9.711-2.672 18.449-13.839 18.449-23.549 0-22.094-27.189-33.018-44.184-17.722z",
"M383.288 152.199c-19.422 6.069-38.602 22.092-48.068 40.058-5.584 10.438-6.556 15.535-6.556 33.016 0 16.994 0.972 22.822 5.827 32.533 23.063 46.854 85.454 58.748 124.057 24.032 18.692-16.749 25.49-31.315 25.49-55.352 0-16.508-0.973-21.607-6.798-33.26-13.352-27.19-40.301-43.455-71.617-42.972-8.982 0-18.936 0.973-22.335 1.944zM442.040 162.88c53.165 31.074 50.254 101.477-5.342 128.669-16.995 8.256-45.155 7.527-63.607-1.456-55.109-27.19-54.379-102.936 1.458-129.641 10.926-5.097 15.050-5.825 34.23-5.097 18.694 0.726 23.791 1.941 33.261 7.524z",
"M357.797 205.123c-7.283 1.699-17.48 12.38-18.936 19.663-1.699 8.498 3.397 20.636 10.68 25.736 3.159 2.183 10.197 3.883 15.781 3.883 28.162 0 35.202-36.657 9.227-47.583-8.496-3.64-8.741-3.64-16.752-1.699z",
"M494.477 271.157c-12.624 2.67-21.363 8.981-23.063 17.478-0.728 4.614-3.883 8.497-8.010 10.683-15.295 8.012-23.306 25.006-17.966 38.845 2.185 5.097 13.596 10.924 22.335 10.924h7.040l-2.185 12.625c-2.67 16.022-0.729 27.433 5.583 33.743 6.313 6.313 15.053 5.828 23.063-1.213l6.799-5.584 4.126 4.855c5.1 6.556 19.908 6.556 26.947 0 4.371-3.884 4.855-6.555 3.885-24.519l-0.969-19.908h7.523c27.678 0 27.191-36.174-0.729-49.769-6.795-3.155-10.195-6.31-10.195-9.711-0.242-7.040-5.342-12.865-15.295-16.993-9.468-3.884-14.565-4.127-28.89-1.456zM545.703 302.96c13.109 6.556 19.662 15.538 19.662 27.19 0 8.497-0.971 9.953-8.010 12.867-8.498 3.641-18.936 2.185-38.844-4.855-10.924-3.884-12.138-3.884-28.163 0.972-28.888 8.738-41.512 5.339-41.998-11.169-0.242-9.711 3.886-16.267 14.080-22.819 8.497-5.1 8.982-5.1 17.48-0.973 4.855 2.187 14.324 4.614 21.122 5.343 9.952 0.969 14.080 0 23.062-4.855 6.070-3.401 11.166-6.314 11.652-6.314 0.244-0.241 4.856 1.944 9.955 4.614zM505.645 361.711c-1.943 25.733-3.641 30.346-11.896 32.53-14.567 3.641-19.909-6.312-16.753-29.86l2.186-16.509 12.14-4.128c6.797-2.183 12.865-4.127 13.838-4.369 0.97 0 1.214 10.197 0.486 22.336zM524.338 344.473c12.139 4.127 14.324 8.255 14.324 26.949 0 14.566-0.729 16.75-5.828 20.149-8.252 5.341-18.207 2.428-19.905-5.827-0.729-3.397-1.943-8.011-2.428-9.952-1.699-4.855 1.698-33.989 3.884-33.989 0.973 0 5.342 1.215 9.953 2.67z"
],
"tags": [
"go"
],
"grid": 14
},
"properties": {
"order": 54,
"id": 58,
"prevSize": 32,
"code": 58916,
"name": "go",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 15
},
{
"icon": {
"paths": [
"M227.616 868.313h354.314c0 0-78.592-178.49-58.614-342.322 19.988-163.84 149.184-238.434 222.446-246.424 73.258-7.998 113.218 37.298 113.218 37.298l15.988-23.98c0 0-105.23-106.56-238.434-94.57-133.198 11.984-225.106 99.898-282.378 206.456-57.276 106.566-90.578 181.156-113.224 293.044-22.64 111.886-13.316 170.498-13.316 170.498z",
"M157.018 689.823l69.264 5.334-11.984 69.256-65.268-7.986 7.988-66.604z",
"M266.24 543.299l18.652-51.944-61.272-23.98-19.978 55.948 62.598 19.976z",
"M352.818 364.813l35.964-42.62-46.622-30.636-37.292 41.284 47.95 31.972z",
"M447.394 199.649l31.97 38.624 43.954-25.306-31.964-35.964-43.96 22.646z",
"M603.238 155.687l7.992 38.634 54.618-1.336-5.336-34.628-57.274-2.67z",
"M788.39 196.981l-1.336 23.976 37.3 19.978 7.984-11.986-43.948-31.968z",
"M780.394 299.547v19.978l35.964 3.996v-15.986l-35.964-7.988z",
"M665.848 316.865l17.312 31.962 25.304-19.978-5.324-21.314-37.292 9.33z",
"M611.23 358.157l26.636 39.958-15.98 27.97-38.624-42.62 27.968-25.308z",
"M557.954 468.711l-17.32 34.628 45.29 38.634 10.656-43.962-38.626-29.3z",
"M539.302 589.923l-2.66 46.622 55.946 23.98-2.664-43.96-50.622-26.642z",
"M555.282 755.089l13.332 47.956 70.582 3.996-25.304-51.952h-58.61z"
],
"tags": [
"ror"
],
"grid": 14
},
"properties": {
"order": 21,
"id": 19,
"prevSize": 32,
"code": 58939,
"name": "ruby_on_rails",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 16
},
{
"icon": {
"paths": [
"M124.278 377.386v41.971l-3.124-0.591c-19.257-3.376-39.778-2.025-57.26 3.801-38.68 12.921-60.384 47.207-58.44 92.389 0.93 20.268 4.983 34.201 13.767 47.377 12.499 18.834 32.769 30.064 62.41 34.709 21.787 3.461 66.124 1.014 96.106-5.318l2.279-0.51v-255.715h-55.738v41.888zM120.311 463.020l3.968 1.011v89.097l-5.659 0.508c-22.040 2.111-36.565-1.609-45.857-11.826-7.261-7.938-10.977-19.256-10.977-33.187 0-24.658 11.736-41.381 32.428-46.11 5.997-1.349 20.016-1.097 26.098 0.508z",
"M212.952 363.786v28.293h55.738l-0.169-28.12-0.251-28.041-27.618-0.251-27.7-0.169v28.288h0z",
"M364.121 417.079c-19.679 1.436-40.284 6.5-57.597 14.104l-4.896 2.195v21.28c0 16.637 0.253 21.113 1.097 20.776 29.812-12.753 44.59-16.301 65.366-15.709 8.782 0.253 10.641 0.592 12.667 2.11 4.055 2.957 5.317 6.588 5.317 15.288 0 4.306-0.167 7.853-0.42 7.853-2.448 0-18.917 2.111-26.771 3.465-40.453 6.754-61.397 20.605-66.972 43.992-1.604 7.012-1.604 23.9 0 30.91 2.704 11.318 8.446 19.764 17.567 25.592 18.917 12.242 47.46 13.51 122.032 5.32l5.237-0.592v-63.424c0-34.878-0.425-66.884-0.845-71.106-2.535-23.731-13.851-35.637-38.595-40.368-6.927-1.267-25.252-2.195-33.189-1.687zM388.612 539.783v18.496l-7.35 1.098c-11.485 1.688-26.853 1.52-31.667-0.338-8.785-3.381-12.247-13.262-7.77-21.873 2.447-4.732 8.445-8.613 17.396-11.236 4.394-1.264 23.223-4.387 27.53-4.557l1.859-0.086v18.496h0z",
"M538.094 417.162c-20.018 0.846-49.912 5.657-71.111 11.316l-3.208 0.846v167.129h55.739l0.17-65.705 0.256-65.616 5.906-1.606c4.225-1.098 9.121-1.604 17.314-1.689 10.307-0.084 11.826 0.085 15.879 1.943 5.486 2.449 8.951 6.334 10.895 12.077 1.35 4.053 1.52 9.712 1.77 62.489l0.254 58.107h54.893l-0.338-66.043c-0.248-59.367-0.422-66.717-1.686-71.529-2.533-9.543-6.338-15.962-13.26-22.971-10.812-10.895-25.336-16.554-47.547-18.411-10.305-0.843-13.258-0.928-25.926-0.337z",
"M909.172 417.837c-32.508 5.911-55.822 25.42-65.617 55.147-4.643 13.935-5.912 23.815-5.406 41.463 0.344 10.557 0.93 16.977 2.113 22.129 6.926 29.473 25.252 50.16 52.611 59.449 23.393 8.023 55.656 6.676 76.936-3.209 27.195-12.494 43.832-36.988 47.885-70.264 4.73-38.504-8.023-73.299-33.021-90.527-10.891-7.517-19.59-11.064-33.863-13.849-9.799-1.944-32.092-2.113-41.637-0.34zM940.25 463.020c8.955 3.293 15.707 11.991 19.426 24.912 1.689 5.828 1.945 8.699 1.945 20.69 0 11.907-0.256 14.862-1.945 20.521-3.719 13.006-9.373 20.605-18.578 24.912-4.141 1.941-5.916 2.279-12.838 2.279-6.84 0-8.699-0.338-12.668-2.195-9.119-4.227-14.607-11.061-18.408-22.547-2.871-8.785-3.635-29.133-1.521-39.521 2.533-12.079 7.596-20.859 15.285-26.097 8.191-5.657 19.17-6.757 29.303-2.955z",
"M750.488 417.921c-22.211 2.365-38.848 6.419-53.371 13.092-34.629 15.877-52.617 44.759-52.617 84.364 0 38.85 17.738 66.969 48.986 77.865 17.734 6.162 41.635 6.416 58.521 0.588 4.139-1.434 7.602-2.445 7.77-2.279 0.68 0.676-1.266 16.637-2.615 20.947-4.309 14.438-12.924 22.633-28.207 26.768-7.854 2.197-34.541 2.197-44.758 0-8.953-1.855-21.369-5.91-29.307-9.543l-6.166-2.787v51.18l9.965 3.041c16.891 5.152 31.164 7.346 49.408 7.346 41.633 0.082 71.275-12.752 88.67-38.344 7.771-11.484 12.754-26.092 15.119-44.672 1.178-9.461 1.434-107.083 0.338-129.712l-0.592-12.081 6.504 0.255 6.586 0.339 9.205-19.255c5.066-10.557 9.037-19.426 8.865-19.679-0.758-0.675-17.564-3.715-30.568-5.488-9.461-1.269-18.666-1.775-35.557-2.028-12.498-0.085-24.318-0.085-26.18 0.084zM758.85 475.011c0.254 7.6 0.678 27.53 0.928 44.335l0.508 30.566-3.209 0.852c-12.496 3.375-24.828 3.375-33.443 0.168-14.354-5.49-21.619-17.818-22.381-37.832-0.59-16.72 2.619-27.447 10.98-36.23 9.205-9.714 23.391-14.948 41.719-15.454l4.393-0.084 0.506 13.68z",
"M212.952 485.146c0 95.683-1.182 108.181-11.572 128.446-6.5 12.67-18.492 23.227-36.479 32.264-4.562 2.281-5.998 3.293-5.069 3.799 0.677 0.422 12.246 5.912 25.676 12.246l24.489 11.572 5.151-2.621c32.769-16.975 47.632-40.703 51.855-83.27 0.59-5.572 1.182-40.453 1.434-88.078l0.508-78.711h-55.992v64.353z"
],
"tags": [
"django"
],
"grid": 14
},
"properties": {
"order": 60,
"id": 72,
"prevSize": 32,
"code": 58909,
"name": "django",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 17
},
{
"icon": {
"paths": [
"M821.56 285.918h-619.12c-28.768 0-52.172 23.404-52.172 52.172v347.818c0 28.77 23.404 52.174 52.172 52.174h619.12c28.768 0 52.17-23.404 52.17-52.174v-347.818c0-28.768-23.402-52.172-52.17-52.172zM557.216 647.56l-90.434 0.090v-135.65l-67.824 86.958-67.824-86.958v135.65h-90.434v-271.298h90.434l67.824 90.432 67.824-90.432 90.434-0.088v271.296zM692.222 670.17l-112.396-158.17h67.822v-135.648h90.434v135.648h67.824l-113.684 158.17z"
],
"tags": [
"markdown"
],
"grid": 14
},
"properties": {
"order": 131,
"id": 61,
"prevSize": 32,
"code": 58942,
"name": "markdown",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 18
},
{
"icon": {
"paths": [
"M331.89 409.078h-126.938l-54.89 277.886h65.184l13.724-72.046h61.752c58.32 3.434 123.504-44.594 123.504-126.932 0-48.030-27.446-75.476-82.336-78.908zM283.858 563.458h-41.168l17.156-102.92h44.598c24.014 0 41.168 10.292 41.168 30.878-3.432 58.32-30.876 68.612-61.754 72.042z",
"M561.746 409.078h-61.754l13.726-72.042h-65.186l-54.888 277.882h65.182l30.874-154.38h51.458c24.022 0 24.022 10.292 20.59 27.45l-24.014 126.932h68.614l24.014-140.656c6.858-34.308-13.726-61.754-68.616-65.186z",
"M791.6 409.078h-126.936l-54.894 277.888h65.188l13.718-72.046h61.754c58.32 3.434 123.508-44.594 123.508-126.932 0-48.032-27.446-75.478-82.338-78.91zM743.57 563.458h-41.168l17.152-102.92h44.6c24.018 0 41.17 10.292 41.17 30.878-3.434 58.32-30.876 68.612-61.754 72.042z"
],
"tags": [
"php"
],
"grid": 14
},
"properties": {
"order": 19,
"id": 17,
"prevSize": 32,
"code": 58941,
"name": "php",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 19
},
{
"icon": {
"paths": [
"M162.611 169.847c-18.050 18.050-13.537 38.805 18.048 85.733 16.243 24.363 35.2 62.269 42.419 83.927 7.218 22.562 21.662 53.244 31.585 68.587 18.049 25.267 18.049 30.682 6.318 76.709-7.218 28.881-9.932 64.979-6.318 87.539 5.413 37.906 36.099 92.951 55.046 99.271 16.251 5.41 39.712-23.471 40.611-49.637 0-22.559 0.907-23.469 10.83-7.219 17.151 27.975 71.298 87.533 75.81 83.021 1.807-1.799-9.932-25.268-27.072-51.434-16.243-27.074-35.2-62.273-42.417-78.516-9.924-27.072-13.537-28.879-25.268-16.242-7.219 7.217-16.243 27.973-18.958 46.92-7.217 43.326-23.46 48.736-36.098 11.74-12.629-37.006-12.629-100.18 0-143.495 9.026-29.779 8.127-37.904-7.217-60.465-9.923-13.537-25.268-46.022-33.393-72.196-8.117-25.268-27.075-63.173-42.408-83.024-35.2-49.635-35.2-67.684 1.797-60.466 15.345 2.71 38.813 13.536 53.25 23.465 13.535 9.928 36.997 18.049 51.44 18.049 43.316 0 119.125 42.418 174.171 97.464 42.417 42.417 64.071 76.709 110.101 169.665 54.148 110.096 58.662 116.414 92.053 127.244 39.703 13.537 122.732 64.070 122.732 74.902 0 3.615-20.754 9.027-46.021 10.832-67.686 7.219-74.008 19.855-29.791 59.559 20.768 18.051 59.57 46.029 87.541 61.365l50.543 28.881-23.469-29.779c-13.537-16.242-41.51-41.508-63.17-55.045-21.654-13.537-38.805-27.982-38.805-31.588 0-3.613 15.342-9.932 34.293-12.639 50.541-9.023 64.975-13.535 64.975-22.559 0-13.539-91.141-82.123-134.469-101.078-36.996-17.143-41.51-24.369-89.338-122.731-42.416-90.245-59.566-115.517-113.713-169.662-69.483-69.488-117.319-99.271-178.685-108.295-20.756-3.61-49.635-14.44-62.264-23.465-29.788-22.562-90.246-30.683-104.691-15.34z"
],
"tags": [
"mysql"
],
"grid": 14
},
"properties": {
"order": 85,
"id": 97,
"prevSize": 32,
"code": 58884,
"name": "mysql",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 20
},
{
"icon": {
"paths": [
"M512 444.486c-189.292 0-337.576-66.724-337.576-151.908 0-85.186 148.284-151.91 337.576-151.91s337.576 66.724 337.576 151.91c0 85.182-148.284 151.908-337.576 151.908zM512 174.426c-143.708 0-303.816 48.526-303.816 118.152s160.108 118.148 303.816 118.148c143.702 0 303.82-48.524 303.82-118.15s-160.118-118.15-303.82-118.15z",
"M512 579.516c-189.292 0-337.576-66.724-337.576-151.91v-135.030c0-9.332 7.542-16.88 16.878-16.88 9.338 0 16.88 7.548 16.88 16.88v135.030c0 69.624 160.108 118.152 303.816 118.152 143.702 0 303.82-48.526 303.82-118.152v-135.030c0-9.332 7.546-16.88 16.876-16.88 9.334 0 16.88 7.548 16.88 16.88v135.030c0.002 85.186-148.282 151.91-337.574 151.91z",
"M512 731.426c-189.292 0-337.576-66.726-337.576-151.91v-151.91c0-9.328 7.542-16.88 16.878-16.88 9.338 0 16.88 7.552 16.88 16.88v151.91c0 69.624 160.108 118.152 303.816 118.152 143.702 0 303.82-48.528 303.82-118.152v-151.91c0-9.328 7.546-16.88 16.876-16.88 9.334 0 16.88 7.552 16.88 16.88v151.91c0.002 85.184-148.282 151.91-337.574 151.91z",
"M512 883.332c-189.292 0-337.576-66.722-337.576-151.906v-151.91c0-9.328 7.542-16.878 16.878-16.878 9.338 0 16.88 7.55 16.88 16.878v151.91c0 69.624 160.108 118.152 303.816 118.152 143.702 0 303.82-48.528 303.82-118.152v-151.91c0-9.328 7.546-16.878 16.876-16.878 9.334 0 16.88 7.55 16.88 16.878v151.91c0.002 85.184-148.282 151.906-337.574 151.906z"
],
"tags": [
"streamline"
],
"grid": 14
},
"properties": {
"order": 83,
"id": 96,
"prevSize": 32,
"code": 58885,
"name": "streamline",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 21
},
{
"icon": {
"paths": [
"M512 871.934c-170.352 0-308.516-46.094-308.516-102.836 0-31.036 0-64.98 0-102.84 0-8.938 4.468-17.426 10.896-25.71 34.398 44.29 154.008 77.128 297.62 77.128s263.22-32.84 297.62-77.128c6.426 8.286 10.896 16.774 10.896 25.71 0 29.778 0 61.364 0 102.84 0 56.742-138.19 102.836-308.516 102.836zM512 666.258c-170.352 0-308.516-46.098-308.516-102.84 0-31.054 0-64.95 0-102.836 0-5.448 2.058-10.746 4.82-15.994v0c1.558-3.288 3.616-6.526 6.076-9.716 34.398 44.264 154.008 77.128 297.62 77.128s263.22-32.866 297.62-77.13c2.458 3.19 4.52 6.428 6.076 9.716v0c2.76 5.248 4.82 10.546 4.82 15.994 0 29.778 0 61.336 0 102.836-0 56.744-138.19 102.842-308.516 102.842zM512 460.582c-170.352 0-308.516-46.072-308.516-102.836 0-16.246 0-33.418 0-51.42 0-16.344 0-33.318 0-51.418 0-56.768 138.164-102.84 308.516-102.84 170.326 0 308.516 46.072 308.516 102.84 0 16.042 0 33.066 0 51.418 0 15.742 0 32.338 0 51.42-0 56.764-138.19 102.836-308.516 102.836zM512 203.486c-113.584 0-205.676 22.972-205.676 51.418s92.092 51.418 205.676 51.418c113.584 0 205.678-22.972 205.678-51.418s-92.094-51.418-205.678-51.418z"
],
"tags": [
"database"
],
"grid": 14
},
"properties": {
"order": 84,
"id": 95,
"prevSize": 32,
"code": 58886,
"name": "database",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 22
},
{
"icon": {
"paths": [
"M871.226 495.732c-4.792-5.392-71.066-88.354-82.744-102.432-11.68-14.076-17.372-11.53-24.56-10.482-7.19 1.048-91.046 15.124-100.782 16.772-9.734 1.646-15.876 5.542-9.882 13.926 5.324 7.458 60.456 85.616 72.6 102.83l-219.174 52.504-174.31-291.418c-6.938-10.29-8.38-13.882-24.172-13.166-15.792 0.718-136.736 10.766-145.352 11.484-8.614 0.72-18.070 4.554-9.456 24.89 8.614 20.338 145.968 316.326 149.796 324.938s13.782 22.59 37.088 16.986c23.878-5.732 106.684-27.346 151.93-39.196 23.906 43.294 72.666 131.114 81.684 143.7 12.038 16.8 20.326 14.022 38.806 8.42 14.43-4.372 225.792-80.382 235.312-84.298 9.522-3.922 15.4-6.72 8.96-16.242-4.736-7-60.494-81.7-89.7-120.774 20.002-5.324 91.13-24.264 98.712-26.318 8.838-2.39 10.040-6.732 5.244-12.124zM472.776 577.2c-2.616 0.56-125.376 29.94-131.924 31.436-6.552 1.5-6.55 0.748-7.3-1.496-0.75-2.246-145.956-301.66-147.972-305.402s-1.912-6.708 0-6.708c1.91 0 115.934-10.192 119.968-10.404s3.61 0.636 5.096 3.186c0 0 160.826 277.6 163.634 282.468 2.806 4.856 1.122 6.356-1.502 6.92zM818.892 642.072c1.958 3.082 3.918 5.040-2.24 7.28s-207.764 70.278-211.682 71.958c-3.92 1.682-6.996 2.24-12.036-5.042-5.042-7.278-70.63-120.792-70.63-120.792l213.708-55.61c5.32-1.678 6.998-2.796 10.36 2.52 3.358 5.324 70.562 96.604 72.52 99.686zM832.592 490.34c-4.79 1.048-83.26 20.516-83.26 20.516l-64.178-88.054c-1.798-2.544-3.292-5.092 1.198-5.69 4.494-0.598 77.42-13.778 80.716-14.526 3.292-0.748 6.138-1.646 10.18 3.894 4.046 5.54 59.538 75.774 61.634 78.47 2.094 2.694-1.498 4.34-6.29 5.39z"
],
"tags": [
"laravel"
],
"grid": 14
},
"properties": {
"order": 17,
"id": 13,
"prevSize": 32,
"code": 58943,
"name": "laravel",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 23
},
{
"icon": {
"paths": [
"M308.254 245.85h120.042v336.438c0 151.632-72.656 204.548-188.752 204.548-28.428 0-64.756-4.736-88.452-12.634l13.426-97.138c16.586 5.526 37.91 9.474 61.602 9.474 50.544 0 82.136-22.902 82.136-105.038v-335.65z",
"M532.522 654.944c31.59 16.588 82.136 33.172 133.468 33.172 55.286 0 84.504-22.902 84.504-58.444 0-32.376-25.272-52.122-89.242-74.234-88.456-31.592-146.892-80.556-146.892-158.742 0-90.822 76.606-159.534 201.386-159.534 60.81 0 104.248 11.852 135.84 26.854l-26.856 96.35c-20.532-10.264-59.232-25.272-110.56-25.272-52.126 0-77.398 24.482-77.398 51.336 0 33.958 29.218 48.962 98.72 75.818 93.976 34.748 137.416 83.712 137.416 159.53 0 89.242-67.92 165.060-214.026 165.060-60.812 0-120.838-16.588-150.84-33.17l24.48-98.724z"
],
"tags": [
"javascript_1"
],
"grid": 14
},
"properties": {
"order": 33,
"id": 28,
"prevSize": 32,
"code": 58958,
"name": "javascript",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 24
},
{
"icon": {
"paths": [
"M509.998 354.204l-65.822 156.13h141.866l-75.444-157.556-0.598 1.42z",
"M510.844 128.448l-360.916 127.012 57.032 472.86 304.264 167.23 305.838-169.496 57.008-472.84-363.226-124.766zM663.796 690.032l-48.988-113.45h-199.99l-44.742 111.91-83.222 1.54 223.15-496.422 230.926 496.422h-77.134z"
],
"tags": [
"angular_simple"
],
"grid": 14
},
"properties": {
"order": 25,
"id": 1,
"prevSize": 32,
"code": 58963,
"name": "angular",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 25
},
{
"icon": {
"paths": [
"M512 306.854l-305.26-174.014v758.32l305.26-174.010 305.26 174.010v-758.32l-305.26 174.014zM359.938 512l152.062-86.684 152.066 86.684-152.066 86.684-152.062-86.684zM307.788 299.422l108.782 62.012-108.782 62.010v-124.022zM307.788 600.556l100.624 57.358-100.624 57.362v-114.72zM716.214 715.276l-100.624-57.362 100.624-57.36v114.722zM607.434 361.434l108.782-62.012v124.022l-108.782-62.010z"
],
"tags": [
"backbone"
],
"grid": 14
},
"properties": {
"order": 24,
"id": 2,
"prevSize": 32,
"code": 58962,
"name": "backbone",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 26
},
{
"icon": {
"paths": [
"M530.792 233.074c-12.79 3.762-41.376 16.546-63.942 29.338-51.91 29.34-88.018 36.106-108.33 21.062-12.792-10.526-13.54-12.784-3.76-19.554 6.016-4.512 24.072-6.774 39.118-6.016 15.794 0.748 28.584-1.506 28.584-5.268 0.748-13.54-72.218-13.54-85.758 0-27.834 28.584-0.752 57.168 58.674 62.436 34.604 3.012 48.902-0.75 100.802-24.074 67.704-30.84 118.856-40.616 143.688-27.828 18.802 10.526 21.060 27.078 3.76 33.852-21.816 8.272-60.936 4.51-70.712-6.024-9.782-12.782-30.092-7.522-30.092 7.522 0 30.848 114.346 35.358 143.678 5.268 47.398-46.644-57.17-94.034-155.71-70.714z",
"M192.932 282.724c-61.682 33.102-2.254 78.238 132.398 100.806 170.762 28.584 439.322 7.522 511.534-39.876 23.32-15.044 24.822-45.884 3.762-57.168-12.792-6.772-15.044-6.016-15.044 6.774 0 41.376-119.612 68.454-305.414 68.454-204.616 0-321.966-29.342-306.922-77.482 4.512-15.046 4.512-15.046-20.314-1.508z",
"M193.256 397.070c3.008 11.284 9.778 36.106 15.044 54.164 9.778 32.346 9.026 33.096-16.55 59.422-57.922 60.182-52.658 142.928 13.542 191.828 22.568 16.55 84.252 20.312 98.544 6.016 6.018-6.016 3.76-8.272-8.274-8.272-19.558 0-65.446-39.12-81.246-68.454-15.044-30.094-13.54-76.73 3.76-97.792l14.292-18.056 7.524 18.808c4.514 10.532 27.082 48.146 51.154 82.742 24.070 35.362 48.896 78.994 55.666 97.794 11.284 29.346 18.806 36.864 56.42 56.424 36.864 18.056 54.914 22.568 112.092 24.822 111.33 5.264 191.822-27.836 203.86-81.99 3.010-12.794 26.326-54.164 51.904-91.78 48.142-71.464 69.958-115.094 90.274-185.058 18.048-61.68 17.298-62.436-27.836-42.124-67.704 30.838-176.032 43.63-335.512 39.12-163.238-4.518-223.418-15.802-303.908-56.42-3.008-1.508-3.758 6.764-0.75 18.806z"
],
"tags": [
"coffeescript"
],
"grid": 14
},
"properties": {
"order": 43,
"id": 45,
"prevSize": 32,
"code": 58961,
"name": "coffeescript",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 27
},
{
"icon": {
"paths": [
"M519.42 760.356c-4.79-1.096-9.446-2.586-14.122-3.97-1.19-0.344-2.358-0.71-3.526-1.058-4.566-1.404-9.102-2.876-13.61-4.432-0.618-0.228-1.238-0.454-1.87-0.67-4.034-1.428-8.022-2.92-11.996-4.456-1.124-0.442-2.244-0.866-3.362-1.318-4.356-1.718-8.686-3.514-12.952-5.382-0.88-0.37-1.724-0.778-2.59-1.146-3.674-1.664-7.308-3.352-10.924-5.080-1.048-0.498-2.090-0.996-3.162-1.516-2.838-1.382-5.648-2.864-8.448-4.298-1.88-0.998-3.784-1.928-5.644-2.954-3.42-1.84-6.782-3.742-10.13-5.7-1.128-0.626-2.274-1.232-3.416-1.902-4.448-2.608-8.85-5.318-13.194-8.074-1.2-0.756-2.374-1.59-3.556-2.372-3.158-2.028-6.298-4.104-9.39-6.246-1.022-0.68-2.010-1.426-3.022-2.12-2.988-2.098-5.94-4.236-8.876-6.41-1.332-0.984-2.638-1.988-3.93-2.972-2.686-2.056-5.362-4.128-8.006-6.26-1.198-0.952-2.392-1.914-3.572-2.866-3.362-2.768-6.692-5.546-9.972-8.41-0.346-0.292-0.724-0.584-1.092-0.908-3.552-3.116-7.038-6.312-10.482-9.536-1.004-0.952-1.978-1.878-2.956-2.832-2.552-2.444-5.066-4.888-7.532-7.394-0.988-0.984-1.982-1.958-2.954-2.942-3.138-3.218-6.224-6.486-9.24-9.784-0.158-0.164-0.312-0.314-0.458-0.486-3.194-3.49-6.314-7.070-9.374-10.672-0.834-0.992-1.636-1.932-2.46-2.908-2.276-2.744-4.54-5.536-6.746-8.344-0.834-1.006-1.654-2.036-2.476-3.082-2.66-3.448-5.254-6.884-7.788-10.376-70.296-95.88-95.55-228.124-39.368-336.732l-49.8 63.166c-63.804 91.718-55.866 211.030-7.124 308.47 1.162 2.338 2.376 4.64 3.572 6.944 0.768 1.448 1.486 2.942 2.282 4.388 0.448 0.854 0.952 1.698 1.42 2.52 0.828 1.556 1.682 3.028 2.542 4.548 1.512 2.662 3.066 5.322 4.654 7.982 0.876 1.446 1.746 2.916 2.648 4.366 1.762 2.842 3.562 5.644 5.406 8.454 0.768 1.192 1.514 2.39 2.296 3.546 2.546 3.784 5.14 7.568 7.822 11.286 0.066 0.1 0.146 0.196 0.222 0.302 0.422 0.584 0.892 1.168 1.318 1.778 2.32 3.196 4.712 6.356 7.136 9.466 0.886 1.146 1.784 2.292 2.68 3.418 2.156 2.724 4.356 5.404 6.588 8.108 0.832 0.994 1.67 2.010 2.512 3.006 2.996 3.522 6.056 7.026 9.174 10.486 0.052 0.052 0.134 0.118 0.188 0.17 0.13 0.152 0.244 0.262 0.356 0.402 3.042 3.318 6.166 6.584 9.324 9.824 0.978 1.018 1.984 2.014 2.99 3.008 2.448 2.474 4.934 4.896 7.448 7.306 1.018 0.972 2.032 1.968 3.048 2.9 3.352 3.156 6.742 6.27 10.202 9.296 0.064 0.042 0.102 0.084 0.162 0.128 0.584 0.52 1.202 1.014 1.778 1.512 3.042 2.638 6.146 5.256 9.264 7.828 1.276 1.040 2.564 2.044 3.844 3.068 2.552 2.034 5.13 4.068 7.726 6.034 1.372 1.060 2.75 2.098 4.134 3.144 2.864 2.112 5.754 4.188 8.67 6.216 1.066 0.78 2.092 1.514 3.158 2.25 0.296 0.198 0.572 0.412 0.87 0.618 2.762 1.912 5.594 3.728 8.42 5.566 1.21 0.81 2.416 1.642 3.644 2.422 4.336 2.746 8.734 5.468 13.184 8.086 1.208 0.694 2.426 1.364 3.642 2.056 3.27 1.89 6.562 3.738 9.896 5.552 1.8 0.972 3.654 1.884 5.476 2.812 2.352 1.232 4.692 2.486 7.082 3.676 0.546 0.282 1.108 0.54 1.638 0.8 0.962 0.454 1.934 0.906 2.896 1.392 3.708 1.776 7.45 3.516 11.222 5.204 0.804 0.354 1.578 0.702 2.378 1.056 4.324 1.892 8.686 3.708 13.090 5.45 1.054 0.432 2.12 0.822 3.19 1.242 4.070 1.58 8.2 3.124 12.35 4.572 0.526 0.198 1.028 0.37 1.552 0.552 4.55 1.59 9.144 3.060 13.772 4.51 1.102 0.31 2.21 0.67 3.324 0.992 4.714 1.418 9.362 3.116 14.226 4.010 308.58 56.272 398.21-185.434 398.21-185.434-75.266 98.082-208.89 123.938-335.506 95.154z",
"M408.266 510.248c6.914 9.908 14.578 21.702 23.75 29.658 3.324 3.664 6.804 7.234 10.356 10.752 0.898 0.912 1.81 1.794 2.73 2.692 3.442 3.344 6.952 6.626 10.572 9.828 0.15 0.108 0.282 0.258 0.432 0.37 0.038 0.040 0.076 0.062 0.102 0.106 4.004 3.516 8.146 6.898 12.352 10.216 0.936 0.712 1.86 1.46 2.806 2.196 4.216 3.22 8.514 6.398 12.918 9.426 0.134 0.1 0.25 0.196 0.378 0.284 1.946 1.35 3.924 2.604 5.892 3.89 0.952 0.616 1.848 1.276 2.8 1.846 3.146 2.024 6.334 3.992 9.578 5.872 0.458 0.282 0.91 0.522 1.358 0.78 2.79 1.624 5.622 3.202 8.464 4.734 0.99 0.564 2 1.062 3.010 1.58 1.958 1.016 3.924 2.062 5.922 3.070 0.298 0.128 0.608 0.272 0.894 0.388 4.068 2.010 8.168 3.934 12.354 5.764 0.894 0.398 1.822 0.744 2.73 1.112 3.348 1.43 6.726 2.822 10.126 4.122 1.442 0.55 2.9 1.068 4.332 1.588 3.090 1.144 6.18 2.194 9.304 3.244 1.41 0.454 2.794 0.906 4.206 1.338 4.432 1.386 8.822 3.126 13.444 3.894 238.256 39.47 293.256-143.972 293.256-143.972-49.576 71.41-145.6 105.486-248.062 78.89-4.55-1.2-9.038-2.508-13.496-3.912-1.362-0.412-2.698-0.854-4.052-1.298-3.168-1.038-6.316-2.12-9.44-3.254-1.432-0.528-2.86-1.046-4.262-1.59-3.42-1.32-6.804-2.674-10.154-4.090-0.918-0.402-1.846-0.754-2.74-1.162-4.208-1.832-8.348-3.756-12.434-5.776-2.102-1.032-4.162-2.11-6.232-3.178-1.194-0.616-2.394-1.23-3.594-1.846-2.652-1.446-5.288-2.936-7.886-4.452-0.616-0.356-1.266-0.69-1.884-1.070-3.228-1.884-6.406-3.826-9.552-5.828-0.97-0.614-1.908-1.286-2.882-1.922-2.068-1.348-4.144-2.712-6.182-4.094-4.394-3.032-8.666-6.208-12.876-9.418-0.972-0.77-1.946-1.516-2.902-2.284-44.846-35.416-80.398-83.804-97.3-138.676-17.718-56.912-13.892-120.792 16.794-172.636l-37.696 53.222c-46.148 66.412-43.638 155.3-7.644 225.528 6.038 11.778 12.82 23.192 20.41 34.068z",
"M659.38 428.096c1.962 0.732 3.926 1.378 5.916 2.052 0.87 0.27 1.728 0.564 2.61 0.826 2.806 0.88 5.588 1.906 8.486 2.448 131.554 25.422 167.236-67.506 176.734-81.188-31.26 45.006-83.784 55.81-148.232 40.172-5.096-1.242-10.686-3.082-15.6-4.822-6.292-2.242-12.484-4.792-18.514-7.692-11.45-5.496-22.358-12.174-32.468-19.81-57.67-43.756-93.498-127.236-55.864-195.22l-20.368 28.066c-27.2 40.032-29.87 89.75-10.994 133.964 19.9 46.932 60.69 83.746 108.294 101.204z"
],
"tags": [
"jquery_logo"
],
"grid": 14
},
"properties": {
"order": 14,
"id": 11,
"prevSize": 32,
"code": 58960,
"name": "jquery",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 28
},
{
"icon": {
"paths": [
"M10.27 752.834v-160.56h160.55v-160.556h160.554v-160.552h160.556v481.668z",
"M532.068 271.166c266.020 0 481.662 215.65 481.662 481.652h-481.662v-481.652z"
],
"tags": [
"modernizr"
],
"grid": 14
},
"properties": {
"order": 63,
"id": 69,
"prevSize": 32,
"code": 58912,
"name": "modernizr",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 29
},
{
"icon": {
"paths": [
"M793.932 193.54h-563.868c-44.496 0-80.556 35.642-80.556 79.624v238.858c0 175.854 144.254 318.44 322.212 318.44h80.56c177.954 0 322.21-142.586 322.21-318.44v-238.858c0.002-43.982-36.062-79.624-80.558-79.624zM512.002 711.042c-133.472 0-241.67-106.938-241.67-238.838v-119.44h120.842v119.44c0 65.94 54.094 119.42 120.834 119.42 66.724 0 120.814-53.48 120.814-119.42h120.842c0 131.9-108.198 238.838-241.662 238.838zM751.64 432.382l-116.792-29.844 28.194-115.448 118.818 29.852-30.22 115.44z"
],
"tags": [
"jquery_ui_logo"
],
"grid": 14
},
"properties": {
"order": 16,
"id": 12,
"prevSize": 32,
"code": 58964,
"name": "jquery_ui",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 30
},
{
"icon": {
"paths": [
"M704.618 607.358c0 0-4.658-16.52 12.704-48.288 17.366-31.76 30.922-14.396 30.922-14.396s14.822 16.090-2.12 40.23c-16.938 24.152-41.506 22.454-41.506 22.454zM571.206 630.226c-19.906 52.098-68.192 30.92-68.192 30.92s-5.506-18.636 10.162-70.73c15.676-52.1 52.52-31.764 52.52-31.764s25.412 19.48 5.51 71.574zM535.206 412.11c0 0 30.072-78.354 37.268-40.234 7.196 38.118-63.106 151.62-63.106 151.62 0.842-25.412 25.838-111.386 25.838-111.386zM105.32 607.358c1.268-50.402 34.306-72.426 45.744-61.416 11.436 11.014 7.2 34.734-14.404 49.556-21.6 14.822-31.34 11.86-31.34 11.86zM1016.334 598.99c-1.698-16.942-16.946-10.644-16.946-10.644s-24.562 19.046-46.166 16.932c-21.598-2.12-14.822-50.42-14.822-50.42s4.658-44.262-8.044-47.976c-12.708-3.71-28.378 11.534-28.378 11.534s-19.48 21.602-28.8 49.132l-2.542 0.846c0 0 2.97-48.282-0.414-59.29-2.544-5.508-25.834-5.086-29.648 4.656s-22.448 77.508-23.72 105.88c0 0-36.424 30.922-68.19 36.006-31.766 5.080-39.388-14.828-39.388-14.828s86.406-24.14 83.438-93.176c-2.962-69.036-69.676-43.504-77.214-37.828-7.302 5.488-46.304 29-57.67 94.118-0.39 2.22-1.066 11.898-1.066 11.898s-33.458 22.444-52.1 28.378c0 0 52.1-87.672-11.43-127.488-28.796-17.36-51.668 19.066-51.668 19.066s85.97-95.72 66.914-176.614c-9.080-38.524-28.328-42.656-46.006-36.424-26.834 10.588-37.002 26.26-37.002 26.26s-34.736 50.4-42.78 125.366c-8.048 74.96-19.908 165.6-19.908 165.6s-16.514 16.094-31.762 16.936c-15.248 0.85-8.47-45.31-8.47-45.31s11.858-70.308 11.014-82.164c-0.85-11.86-1.696-18.212-15.674-22.448-13.978-4.23-29.22 13.554-29.22 13.554s-40.236 60.988-43.622 70.3l-2.118 3.814-2.114-2.544c0 0 28.376-83.010 1.268-84.28-27.104-1.268-44.896 29.644-44.896 29.644s-30.922 51.664-32.192 57.594l-2.118-2.542c0 0 12.708-60.138 10.162-74.958-2.542-14.824-16.514-11.86-16.514-11.86s-17.788-2.12-22.448 9.316c-4.662 11.436-21.6 87.25-23.72 111.39 0 0-44.472 31.764-73.698 32.186-29.222 0.424-26.258-18.532-26.258-18.532s107.152-36.678 77.93-109.098c-13.13-18.634-28.378-24.496-49.976-24.076-21.598 0.422-48.4 13.602-65.768 52.57-8.3 18.586-11.316 36.22-13.010 49.568 0 0-18.756 3.826-28.92-4.64s-15.396 0-15.396 0-17.452 22.24-0.086 29.018c17.364 6.778 44.472 9.944 44.472 9.944h-0.020c2.49 11.864 9.744 32.010 30.88 48.068 31.764 24.14 92.736-2.22 92.736-2.22l24.99-14.026c0 0 0.848 22.92 19.060 26.272 18.212 3.336 25.834-0.050 57.6-77.132 18.638-39.384 19.908-37.288 19.908-37.288l2.118-0.42c0 0-14.4 75.386-8.896 95.718 5.506 20.324 29.646 18.21 29.646 18.21s13.126 2.542 23.716-34.73c10.592-37.274 30.924-78.354 30.924-78.354h2.54c0 0-8.894 77.084 4.662 101.644 13.554 24.566 48.704 8.27 48.704 8.27s24.568-12.402 28.378-16.212c0 0 29.156 24.816 70.292 20.31 91.926-18.092 124.62-42.524 124.62-42.524s15.792 40.018 64.714 43.72c55.91 4.246 86.4-30.932 86.4-30.932s-0.424 22.874 19.062 30.918c19.478 8.048 32.606-37.168 32.606-37.168l32.61-89.89h2.966c0 0 1.694 58.45 33.88 67.768 32.192 9.316 74.118-21.814 74.118-21.814s10.164-5.618 8.47-22.554z"
],
"tags": [
"ember"
],
"grid": 14
},
"properties": {
"order": 58,
"id": 74,
"prevSize": 32,
"code": 58907,
"name": "ember",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 31
},
{
"icon": {
"paths": [
"M261.52 280.647c0 0.942 0 61.256 0 134.383v132.876l-6.032 12.248c-8.293 16.396-28.459 36.566-45.799 45.611-19.603 10.178-32.983 13.572-53.716 13.572-31.475 0-54.656-9.803-77.463-32.609-28.46-28.645-39.768-67.283-30.91-105.545 4.9-20.92 13.381-35.435 30.156-52.205 24.69-24.881 48.438-33.929 83.872-32.231 23.181 1.13 37.507 5.466 54.844 16.584 6.411 4.148 11.687 7.354 12.064 6.975 0.188-0.375 1.318-8.294 2.638-17.526 1.319-9.423 2.83-18.66 3.394-20.923 0.752-3.202-1.508-4.899-13.947-10.741-21.863-10.177-37.131-13.383-64.647-13.383-29.213 0-43.349 3.206-68.982 15.834-39.2 19.035-67.283 54.845-78.782 100.077-4.521 18.283-4.146 55.224 0.943 73.319 13.57 49.379 49.38 86.697 99.703 104.037 17.151 5.844 19.224 6.033 46.177 6.219 24.501 0 30.156-0.564 42.405-4.525 18.661-5.652 33.927-13.381 49.569-24.873 6.974-5.092 12.815-9.238 13.194-9.238 0.188 0 0.376 6.975 0.376 15.455v15.645l48.062 1.129v-371.482h-23.561c-13.003 0-23.558 0.565-23.558 1.319z",
"M649.777 317.965v29.214h37.699v-58.428h-37.699v29.214z",
"M416.446 301.756c-1.506 0.941-2.264 4.146-1.885 7.915l0.565 6.41 63.517 0.564 63.704 0.378 1.129-4.524c0.566-2.449 0.758-6.221 0.379-8.104-0.566-3.206-4.332-3.393-62.761-3.771-34.305-0.376-63.328 0.19-64.649 1.131z",
"M804.707 302.323c-2.449 2.448-2.828 6.972-1.137 11.682 0.945 2.641 8.484 3.019 64.082 3.019h62.953l2.074-4.524c1.508-3.204 1.508-5.465 0-8.481-2.262-3.958-2.824-3.958-63.895-3.958-45.609 0-62.387 0.565-64.078 2.264z",
"M450.935 359.24c-29.022 5.654-55.032 18.473-74.259 36.378-22.426 20.542-35.433 42.216-44.479 72.938-3.957 13.759-4.711 20.544-4.711 39.581 0 28.648 3.015 41.65 15.264 66.908 8.295 17.15 11.878 21.861 26.765 36.939 20.169 20.168 35.811 30.158 61.632 39.016 17.153 5.844 19.034 6.033 47.119 6.219 28.271 0 29.779-0.186 47.121-6.219 63.891-22.24 103.66-76.711 104.035-142.677 0.191-26.761-3.77-43.535-15.832-68.792-8.48-17.528-11.492-21.673-27.703-37.694-14.703-14.701-21.301-19.79-35.434-26.951-9.613-4.903-24.129-10.745-32.041-12.818-19.036-4.9-50.135-6.219-67.477-2.827zM515.775 401.837c26.951 9.612 51.451 31.663 64.264 57.863 30.348 62.382-3.766 135.888-72.562 156.243-15.264 4.525-43.345 4.525-58.237 0-39.202-11.686-69.924-44.297-79.159-84.061-13.569-57.672 21.864-116.476 80.1-132.874 15.081-4.146 49.76-2.64 65.595 2.828z",
"M839.195 359.24c-57.863 11.499-99.137 48.438-116.664 104.416-4.34 14.137-4.902 18.658-4.902 45.234 0 30.91 1.695 39.768 10.934 61.064 16.773 38.262 52.207 68.793 95.555 82.553 19.977 6.41 55.035 7.354 76.707 2.072 88.586-21.107 138.906-111.010 109.883-196.389-16.020-46.932-53.715-82.177-102.715-95.935-18.285-5.090-50.703-6.598-68.797-3.017zM894.605 399.009c29.402 6.976 59.184 30.535 72.562 57.485 9.238 18.848 12.441 31.665 12.441 50.889 0 28.836-9.426 53.529-28.457 74.26-14.328 15.455-28.652 24.875-48.82 32.041-13.566 4.711-18.848 5.461-34.863 5.654-31.855 0-54.848-9.426-77.277-31.854-14.32-14.135-24.504-31.477-30.344-50.885-5.090-16.777-4.523-46.935 0.945-63.143 12.625-36.188 40.707-63.517 76.516-73.694 14.324-4.144 41.277-4.524 57.297-0.754z",
"M668.25 365.65l-18.473 0.562v137.023c0 150.591 0.191 147.2-11.496 170.384-3.395 6.594-11.309 17.338-17.902 24.312-6.598 6.783-12.066 13.002-12.066 13.758 0 2.26 22.617 33.168 24.125 32.982 4.148-0.188 33.363-41.463 42.598-59.936 13.191-26.389 12.441-16.020 12.062-175.47l-0.562-144.184-18.285 0.568z"
],
"tags": [
"dojo"
],
"grid": 14
},
"properties": {
"order": 59,
"id": 73,
"prevSize": 32,
"code": 58908,
"name": "dojo",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 32
},
{
"icon": {
"paths": [
"M169.736 520.874c0-3.050-1.604-5.852-4.234-7.362l-70.128-40.36c-1.184-0.7-2.516-1.062-3.858-1.118-0.124 0-0.628 0-0.724 0-1.342 0.056-2.67 0.416-3.874 1.118l-70.124 40.36c-2.618 1.51-4.242 4.308-4.242 7.362l0.154 108.676c0 1.506 0.788 2.918 2.112 3.656 1.306 0.782 2.916 0.782 4.21 0l41.676-23.862c2.636-1.566 4.24-4.33 4.24-7.354v-50.776c0-3.020 1.604-5.822 4.228-7.332l17.746-10.222c1.322-0.758 2.766-1.13 4.248-1.13 1.444 0 2.926 0.374 4.21 1.13l17.744 10.222c2.624 1.51 4.234 4.308 4.234 7.332v50.776c0 3.024 1.626 5.802 4.248 7.354l41.666 23.862c1.31 0.782 2.938 0.782 4.236 0 1.292-0.744 2.104-2.15 2.104-3.656l0.128-108.676z",
"M544.2 371.48c-1.312-0.73-2.914-0.714-4.208 0.048-1.292 0.756-2.090 2.148-2.090 3.654v107.622c0 1.052-0.566 2.036-1.476 2.568-0.926 0.528-2.054 0.528-2.968 0l-17.562-10.122c-2.628-1.51-5.846-1.504-8.47 0.002l-70.15 40.488c-2.626 1.512-4.242 4.312-4.242 7.33v81.006c0 3.024 1.614 5.812 4.234 7.336l70.156 40.512c2.622 1.514 5.852 1.514 8.468 0l70.168-40.512c2.622-1.524 4.234-4.312 4.234-7.336v-201.9c0-3.070-1.66-5.9-4.348-7.4l-41.746-23.296zM537.692 577.456c0 0.754-0.398 1.458-1.054 1.834l-24.094 13.884c-0.646 0.38-1.462 0.38-2.112 0l-24.086-13.884c-0.662-0.376-1.062-1.080-1.062-1.834v-27.81c0-0.756 0.402-1.458 1.062-1.834l24.082-13.918c0.654-0.376 1.466-0.376 2.122 0l24.088 13.918c0.656 0.376 1.054 1.078 1.054 1.834v27.81z",
"M795.196 548.912c2.606-1.508 4.21-4.304 4.21-7.318v-19.628c0-3.024-1.606-5.808-4.214-7.33l-69.708-40.47c-2.624-1.524-5.864-1.528-8.488-0.012l-70.132 40.486c-2.618 1.518-4.23 4.312-4.23 7.338v80.97c0 3.042 1.628 5.86 4.278 7.366l69.696 39.712c2.574 1.458 5.714 1.48 8.312 0.044l42.156-23.434c1.328-0.742 2.16-2.146 2.172-3.67 0.008-1.53-0.8-2.944-2.124-3.704l-70.578-40.512c-1.316-0.75-2.124-2.158-2.124-3.67v-25.38c0-1.51 0.808-2.91 2.118-3.67l21.972-12.656c1.304-0.752 2.918-0.752 4.222 0l21.98 12.656c1.308 0.76 2.118 2.16 2.118 3.67v19.974c0 1.514 0.804 2.91 2.124 3.668 1.312 0.756 2.93 0.748 4.242-0.012l41.998-24.418z",
"M297.304 473.728c2.622-1.512 5.85-1.512 8.47 0l70.152 40.482c2.616 1.512 4.234 4.302 4.234 7.334v81.026c0 3.026-1.618 5.818-4.234 7.34l-70.152 40.512c-2.622 1.506-5.852 1.506-8.47 0l-70.132-40.512c-2.622-1.518-4.234-4.314-4.234-7.34v-81.026c0-3.032 1.614-5.822 4.238-7.334l70.128-40.482z",
"M931.394 651.576c-2.414 0-4.824-0.63-6.942-1.856l-22.090-13.070c-3.292-1.84-1.68-2.494-0.594-2.874 4.398-1.53 5.29-1.878 9.98-4.542 0.492-0.276 1.14-0.174 1.648 0.124l16.96 10.068c0.622 0.344 1.484 0.344 2.050 0l66.148-38.174c0.614-0.352 1.004-1.064 1.004-1.788v-76.338c0-0.75-0.39-1.45-1.024-1.826l-66.118-38.142c-0.614-0.356-1.426-0.356-2.040 0l-66.098 38.156c-0.64 0.364-1.046 1.090-1.046 1.812v76.338c0 0.726 0.406 1.418 1.040 1.768l18.122 10.464c9.832 4.918 15.852-0.87 15.852-6.69v-75.366c0-1.066 0.86-1.904 1.922-1.904h8.39c1.046 0 1.914 0.838 1.914 1.904v75.37c0 13.122-7.144 20.648-19.586 20.648-3.82 0-6.836 0-15.238-4.14l-17.344-9.986c-4.282-2.476-6.938-7.108-6.938-12.064v-76.338c0-4.958 2.656-9.588 6.938-12.054l66.148-38.224c4.188-2.366 9.75-2.366 13.902 0l66.14 38.224c4.286 2.476 6.95 7.096 6.95 12.054v76.338c0 4.958-2.664 9.568-6.95 12.064l-66.14 38.19c-2.112 1.224-4.51 1.854-6.96 1.854z",
"M951.828 598.986c-28.954 0-35.012-13.292-35.012-24.434 0-1.058 0.848-1.904 1.906-1.904h8.554c0.954 0 1.754 0.692 1.898 1.62 1.29 8.708 5.136 13.104 22.648 13.104 13.93 0 19.86-3.156 19.86-10.544 0-4.264-1.676-7.424-23.336-9.548-18.094-1.788-29.292-5.79-29.292-20.268 0-13.35 11.25-21.302 30.114-21.302 21.192 0 31.672 7.352 33.004 23.136 0.050 0.536-0.14 1.060-0.508 1.466-0.364 0.384-0.864 0.614-1.402 0.614h-8.586c-0.882 0-1.668-0.628-1.852-1.496-2.062-9.162-7.066-12.088-20.656-12.088-15.214 0-16.984 5.3-16.984 9.268 0 4.816 2.094 6.218 22.628 8.936 20.328 2.686 29.988 6.488 29.988 20.774 0 14.41-12.010 22.666-32.972 22.666z",
"M720.208 545.124c0.504-0.288 1.118-0.288 1.628 0l13.46 7.764c0.5 0.292 0.816 0.832 0.816 1.412v15.546c0 0.582-0.316 1.118-0.816 1.404l-13.46 7.776c-0.512 0.284-1.124 0.284-1.628 0l-13.45-7.776c-0.5-0.288-0.812-0.822-0.812-1.404v-15.546c0-0.58 0.312-1.12 0.812-1.412l13.45-7.764z"
],
"tags": [
"node.js"
],
"grid": 14
},
"properties": {
"order": 66,
"id": 76,
"prevSize": 32,
"code": 58905,
"name": "nodejs",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 33
},
{
"icon": {
"paths": [
"M511.92 915.494c-10.79 0-21.548-2.828-31.020-8.302l-98.762-58.43c-14.726-8.23-7.508-11.152-2.662-12.854 19.664-6.832 23.648-8.398 44.618-20.31 2.204-1.224 5.102-0.768 7.378 0.566l75.83 45.014c2.77 1.542 6.628 1.542 9.17 0l295.722-170.668c2.758-1.576 4.504-4.758 4.504-7.99v-341.296c0-3.344-1.762-6.472-4.574-8.158l-295.592-170.526c-2.746-1.588-6.38-1.588-9.124 0l-295.508 170.588c-2.864 1.624-4.678 4.872-4.678 8.096v341.296c0 3.248 1.802 6.342 4.642 7.904l81.016 46.792c43.954 21.984 70.872-3.896 70.872-29.91v-336.964c0-4.762 3.84-8.518 8.594-8.518h37.506c4.678 0 8.552 3.754 8.552 8.518v336.964c0 58.658-31.948 92.314-87.562 92.314-17.084 0-30.55 0-68.13-18.522l-77.534-44.64c-19.146-11.080-31.010-31.778-31.010-53.94v-341.294c0-22.164 11.864-42.86 31.010-53.894l295.736-170.888c18.724-10.582 43.58-10.582 62.15 0l295.704 170.888c19.152 11.082 31.066 31.73 31.066 53.894v341.296c0 22.162-11.914 42.788-31.066 53.94l-295.704 170.732c-9.458 5.474-20.188 8.302-31.144 8.302z",
"M603.286 680.376c-129.446 0-156.53-59.418-156.53-109.246 0-4.728 3.79-8.506 8.518-8.506h38.252c4.26 0 7.834 3.082 8.482 7.244 5.764 38.928 22.958 58.576 101.254 58.576 62.282 0 88.79-14.116 88.79-47.144 0-19.060-7.496-33.186-104.332-42.692-80.886-7.99-130.968-25.882-130.968-90.606 0-59.682 50.314-95.25 134.636-95.25 94.742 0 141.602 32.874 147.566 103.444 0.218 2.396-0.636 4.742-2.282 6.558-1.618 1.722-3.868 2.744-6.258 2.744h-38.39c-3.958 0-7.468-2.814-8.274-6.69-9.23-40.958-31.61-54.040-92.364-54.040-68.020 0-75.93 23.694-75.93 41.43 0 21.536 9.352 27.794 101.16 39.948 90.894 12.008 134.070 29.008 134.070 92.88 0.014 64.432-53.702 101.35-147.4 101.35z"
],
"tags": [
"node.js_small"
],
"grid": 14
},
"properties": {
"order": 65,
"id": 77,
"prevSize": 32,
"code": 58904,
"name": "nodejs_small",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 34
},
{
"icon": {
"paths": [
"M150.342 100.264l65.826 738.324 295.392 82.002 296.206-82.12 65.894-738.208h-723.318zM423.232 291.46l-13.076 142.116 309.48 0.042-2.208 24.314-21.284 238.394-1.358 15.298-185.742 51.496-185.486-51.494-12.686-142.178h90.894l6.45 72.218 100.932 27.198 100.992-27.262 10.512-117.438-309.476-0.042 2.206-24.316 21.282-238.394 6.7-66.748h361.174l4.198 51.144 12.9 142.482h-90.9l-8.392-93.494-92.458-5.566h-16.486v-0.124l-88.168 2.354z"
],
"tags": [
"javascript"
],
"grid": 14
},
"properties": {
"order": 10,
"id": 9,
"prevSize": 32,
"code": 58959,
"name": "javascript_shield",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 35
},
{
"icon": {
"paths": [
"M261.486 150.826c-17.98 2.656-39.585 11.104-54.912 21.604-10.019 6.639-22.932 19.068-30.413 28.846-8.329 10.982-18.467 32.104-22.449 46.585l-3.38 12.068v503.274l3.38 12.068c3.982 14.482 14.12 35.602 22.449 46.586 15.688 20.518 39.827 37.777 64.085 45.621 20.033 6.396 10.018 6.154 271.55 6.154 261.653 0 251.638 0.242 271.55-6.275 24.381-7.844 48.518-24.982 64.086-45.5 8.328-11.104 18.586-32.225 22.568-46.586l3.26-12.068v-503.274l-3.381-12.068c-3.982-14.481-14.119-35.602-22.447-46.585-7.482-9.777-20.396-22.207-30.412-28.846-10.742-7.362-28.242-15.327-41.76-19.068l-11.826-3.26-247.412-0.121c-136.019-0.119-250.672 0.242-254.535 0.846zM598.693 283.946c38.137 6.277 64.207 18.828 81.225 39.104 7.238 8.569 15.688 25.585 19.189 38.258 2.172 8.327 2.533 13.033 2.654 33.793 0.121 21.844-0.121 25.103-2.654 33.672-7.365 25.586-23.416 45.259-49.363 60.465l-8.932 5.19 6.398 2.051c9.773 3.259 26.066 11.708 34.396 17.983 20.758 15.691 35.24 40.068 41.033 69.156 2.773 14.482 2.773 45.5-0.123 58.775-11.463 52.258-51.896 88.584-112.723 100.773-23.293 4.707-29.326 4.949-154.361 4.949h-122.256v-467.189l126.481 0.484c113.204 0.363 127.688 0.603 139.034 2.534z",
"M436.97 415.738v55.036l58.292-0.483c54.672-0.604 58.775-0.724 67.586-3.138 27.516-7.483 39.465-23.294 39.465-52.26 0-22.206-7.846-36.567-24.859-45.018-15.086-7.48-31.381-9.050-95.467-9.171h-45.017v55.033z",
"M436.97 604.496v64.088l63.722-0.484c71.57-0.484 73.982-0.725 91.604-9.293 20.277-9.898 29.326-26.068 29.326-52.502 0-34.031-13.516-52.859-44.654-62.273-8.809-2.775-10.498-2.775-74.464-3.26l-65.533-0.361v64.086z"
],
"tags": [
"bootstrap"
],
"grid": 14
},
"properties": {
"order": 52,
"id": 57,
"prevSize": 32,
"code": 58951,
"name": "bootstrap",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 36
},
{
"icon": {
"paths": [
"M1012.504 668.024c-3.476-29.15-18.486-51.774-41.146-69.504-26.244-20.524-56.948-28.972-89.712-30.308-26.704-1.086-52.814 2.88-77.978 12.020-7.18 2.606-14.22 5.678-21.442 8.592-0.966-1.754-1.974-3.432-2.826-5.174-7.416-15.168-16.368-29.658-18.352-47.052-1.408-12.35-3.124-24.694-0.198-36.906 2.82-11.752 6.514-23.304 9.97-34.9 1.78-5.97 0.544-9.314-5.158-12.002-1.986-0.938-4.136-1.75-6.288-2.064-14-2.032-27.8-0.87-41.362 3.074-4.796 1.396-8.292 4.086-9.356 9.398-0.608 3.048-1.85 5.966-2.702 8.972-3.552 12.5-6.060 25.246-11.784 37.158-14.356 29.88-30.736 58.632-47.512 87.174-1.812 3.080-3.72 6.1-6.014 9.846-5.888-12.322-12.172-23.372-14.072-36.336-2.148-14.65-3.852-29.288-0.206-43.836 2.716-10.848 6.26-21.494 9.524-32.204 1.552-5.086 0.832-7.76-3.772-10.44-2.328-1.354-4.964-2.556-7.588-2.944-14.52-2.148-28.818-1.028-42.824 3.506-4.348 1.406-6.626 4.216-7.956 8.698-3.904 13.216-7.23 26.752-12.712 39.322-22.192 50.884-45.020 101.49-67.826 152.106-4.76 10.564-10.34 20.764-15.704 31.048-1.364 2.616-3.342 4.91-5.036 7.352-1.366-1.608-1.886-2.712-1.88-3.808 0.040-6.51-0.738-13.202 0.504-19.49 3.754-19.020 8.070-37.938 12.624-56.788 3.758-15.568 8.132-30.988 12.306-46.456 1.4-5.178 1.426-10.018-2.298-14.36-6.246-7.298-19.302-8.898-27.052-3.28-0.842 0.608-1.818 1.036-3.422 1.938 0.294-2.468 0.45-4 0.656-5.524 1.63-11.836 1.962-23.628-1.286-35.284-4.048-14.524-14.416-22.884-29.484-22.418-7.026 0.216-14.396 1.418-20.908 3.976-27.354 10.722-48.386 29.708-66.284 52.548-1.622 2.068-3.766 3.966-6.058 5.232-23.142 12.828-46.366 25.508-69.566 38.228-8.666 4.75-17.336 9.496-25.836 14.152-6.926-6.614-13.23-13.464-20.372-19.284-21.812-17.788-43.984-35.14-65.954-52.732-19.47-15.596-38.338-31.832-52.772-52.48-10.738-15.364-17.652-32.168-18.314-51.156-0.846-24.2 6.028-46.316 18.346-66.9 15.76-26.336 37.254-47.472 60.894-66.61 25-20.24 52.038-37.428 80.062-53.11 39.212-21.944 79.536-41.37 122.778-54.198 44.336-13.152 89.318-20.682 135.724-15.43 18.244 2.064 35.946 6.242 52.22 15.154 12.452 6.822 22.668 15.76 27.422 29.726 4.684 13.748 4.548 27.68 1.292 41.63-6.596 28.27-22.072 51.578-41.56 72.4-31.948 34.132-70.924 57.378-114.808 72.724-25.32 8.856-51.37 14.42-78.12 16.664-21.832 1.828-43.206-0.104-63.878-7.7-13.694-5.032-25.606-12.73-35.198-23.894-1.716-2-3.906-4.168-7.096-2.292-3.122 1.836-3.68 4.818-2.63 7.826 1.748 5.010 3.366 10.22 6.098 14.702 6.854 11.236 16.86 19.392 27.862 26.386 21.146 13.44 44.774 17.964 69.28 19.018 37.188 1.604 73.462-3.944 109.23-13.92 51.060-14.24 95.46-39.388 131.068-79.072 29.65-33.038 50.822-70.328 55.36-115.352 2.216-21.972-0.14-43.508-10.432-63.55-11.154-21.724-28.904-36.69-50.112-47.818-30.836-16.18-64.176-22.566-98.596-24.43-11.49-0.002-22.986-0.004-34.476-0.006-41.682 2.030-81.974 10.77-121.138 25.020-29.646 10.788-58.72 22.934-86.942 37.032-61.474 30.704-118.712 67.442-165.728 118.36-23.424 25.37-43.252 53.216-54.656 86.178-3.338 9.648-5.386 19.914-7.778 29.892-0.202 0.842 0.722 1.638-1.326 2.456 0 4.694 0 9.388 0 14.084 2.048 3.608 2.286 7.214 3.212 10.814 6.046 23.468 18.49 43.604 33.912 61.974 21.968 26.172 48.592 47.244 76.15 67.056 23.908 17.188 48.158 33.986 72.16 51.044 4.116 2.924 7.942 6.296 12.418 9.888-3.852 2.076-7.086 3.916-10.414 5.6-31.676 16.068-62.158 34.076-90.254 55.896-16.93 13.148-33.302 27.124-44.868 45.388-18.602 29.376-25.192 60.672-11.326 94.082 4.048 9.756 10.23 18.196 18.94 24.42 2.82 2.014 5.988 4.020 9.288 4.802 8.464 1.994 17.094 3.294 25.652 4.872 8.088-0.004 16.174-0.012 24.26-0.016 26.836-2.388 51.258-11.582 73.322-26.812 34.498-23.804 57.738-55.724 67.734-96.696 7.262-29.772 7.56-59.58-1.004-89.222-0.796-2.748-1.792-5.444-2.836-8.112-1.042-2.66-2.262-5.25-3.706-8.572 18.32-10.538 36.664-21.088 55.004-31.634 0.274 0.23 0.548 0.466 0.82 0.7-0.992 3.28-2.060 6.538-2.966 9.846-6.536 23.876-10.88 48.16-9.316 72.944 1.664 26.394 9.034 51.104 24.484 73.168 12.492 17.844 42.274 18.512 55.554 0.6 4.714-6.356 9.276-13.004 12.712-20.1 8.966-18.524 17.274-37.368 25.838-56.088 0.37-0.802 0.71-1.616 1.492-3.416-0.618 8.864-1.334 16.644-1.666 24.438-0.518 12.168 0.198 24.27 4.358 35.844 3.56 9.908 9.61 17.298 20.956 18.604 7.758 0.894 13.942-2.664 19.646-7.164 8.914-7.028 16.148-15.716 21.524-25.588 15.208-27.928 30.822-55.688 44.61-84.32 14.916-30.972 27.952-62.85 41.8-94.336 0.76-1.732 1.436-3.5 2.288-5.59 3.274 12.86 5.552 25.448 9.754 37.364 4.876 13.836 10.916 27.336 17.492 40.46 3.11 6.202 2.744 10.232-1.566 15.424-18.052 21.756-35.784 43.78-53.544 65.78-3.924 4.86-7.844 9.796-11.104 15.104-1.98 3.228-3.292 7.148-3.848 10.912-1.062 7.188 3.376 14.11 11.068 15.768 7.020 1.51 14.496 2.072 21.66 1.548 24.778-1.822 47.276-10.524 67.16-25.256 25.764-19.092 34.036-45.136 27.794-76.008-1.692-8.376-4.676-16.528-7.58-24.596-1.308-3.64-1.39-6.196 0.982-9.586 20.6-29.42 38.202-60.63 54.572-92.556 0.648-1.26 1.308-2.518 2.442-3.866 5.308 27.606 13.292 54.204 27.592 78.336-7.298 7.038-14.524 13.408-21.052 20.432-14.388 15.472-26.88 32.276-33.384 52.756-2.8 8.828-4.956 17.802-3.706 27.25 1.938 14.644 13.942 24.164 28.348 20.832 30.832-7.126 57.444-21.66 76.896-47.4 13.090-17.324 14.284-36.65 8.792-56.904-1.496-5.5-3.288-10.92-5.204-17.236 7.604-2.356 15.024-5.192 22.692-6.946 39.836-9.086 79.234-7.5 117.616 6.884 22.408 8.4 40.516 22.452 51.246 44.572 13.116 27.028 5.872 52.682-19.612 69.76-2.38 1.596-5.096 2.852-7.064 4.848-1.212 1.226-1.934 3.672-1.644 5.356 0.172 0.986 2.77 2.22 4.268 2.208 8.372-0.068 15.164-4.452 21.692-8.972 16.336-11.302 27.136-26.514 29.688-46.538 0.072-0.576-0.768-1.108 1.28-1.658 0-4.436 0-8.868 0-13.304-2.040-0.544-1.18-1.076-1.246-1.65zM233.156 722.082c-2.67 35.676-18.83 64.6-45.254 88.016-14.866 13.178-31.912 22.548-51.764 25.844-7.206 1.196-14.572 1.48-21.556-1.504-9.956-4.256-12.194-13.092-12.38-22.52-0.3-15.008 4.956-28.572 12.17-41.484 9.41-16.832 23.204-29.658 37.926-41.644 23.206-18.894 48.374-34.88 74.146-49.962 0.428-0.252 0.924-0.384 1.944-0.798 3.98 14.72 5.876 29.258 4.768 44.050zM434.426 567.054c-1.882 11.394-4.234 22.792-7.56 33.836-11.508 38.22-26.276 75.248-42.252 111.784-2.952 6.756-7.246 12.928-10.98 19.332-0.582 0.996-1.436 1.856-2.264 2.678-4.622 4.566-9.012 4.322-11.35-1.65-2.718-6.948-4.392-14.376-5.832-21.726-0.966-4.94-0.734-10.116-1.038-15.184 0.31-35.948 11.28-68.624 29.89-99.034 7.676-12.544 16.030-24.496 28.782-32.432 3.924-2.434 8.322-4.4 12.762-5.648 6.798-1.91 10.974 1.236 9.846 8.048zM571.732 742.004c16.452-19.212 32.868-38.38 49.352-57.63 2.052 21.4-34.316 64.116-49.352 57.63zM729.36 703.226c-3.488 1.996-7.294 3.442-10.87 5.292-3.278 1.696-4.356-0.016-4.448-2.832-0.058-1.918 0.222-3.916 0.748-5.768 6.66-23.51 18.924-43.562 37.174-59.884 0.268-0.24 0.658-0.344 1.284-0.658 8.678 24.27-1.35 50.934-23.89 63.85z"
],
"tags": [
"sass"
],
"grid": 14
},
"properties": {
"order": 1,
"id": 42,
"prevSize": 32,
"code": 58955,
"name": "sass",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 37
},
{
"icon": {
"paths": [
"M257.716 184.288l-24.312 121.556h494.772l-15.442 78.522h-495.1l-23.982 121.554h494.77l-27.598 138.642-199.418 66.036-172.808-66.036 11.828-60.122h-121.558l-28.912 145.868 285.824 109.402 329.516-109.402 43.696-219.458 8.872-44.026 56.18-282.538h-616.328z"
],
"tags": [
"css3_full"
],
"grid": 14
},
"properties": {
"order": 2,
"id": 4,
"prevSize": 32,
"code": 58954,
"name": "css3_full",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 38
},
{
"icon": {
"paths": [
"M512.54 664.254v0.002z",
"M151.776 103.468l65.566 735.392 294.216 81.672 295.036-81.792 65.63-735.27h-720.448zM736 271.672l-22.166 248.542h-0.002l-15.346 171.476-1.358 15.242-185.004 51.286-184.75-51.286-12.636-141.618h90.536l6.422 71.93 100.53 27.092 0.262-0.070 0.050-0.014 100.284-27.072 10.518-116.968-210.514 0.016-1.808-20.27-4.114-45.724-2.154-24.198 226.602-0.010 8.24-92.358h-345.14l-1.804-20.274-4.114-45.724-2.154-24.2h451.784l-2.164 24.202z"
],
"tags": [
"css3"
],
"grid": 14
},
"properties": {
"order": 3,
"id": 5,
"prevSize": 32,
"code": 58953,
"name": "css3",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 39
},
{
"icon": {
"paths": [
"M149.266 100l66.022 741.628 296.268 82.372 297.086-82.486 66.092-741.514h-725.468zM286.438 276l-2.174-24.402h227.422v90.958h-128.166l8.3 93.14h119.866v90.958h-202.926l-22.322-250.654zM720.582 460.124l-21.342 239.462-1.366 15.366-186.292 51.724-186.040-51.724-12.724-142.816h91.17l6.466 72.542 101.232 27.324 101.294-27.38 10.542-117.966h-111.522v-90.958h210.798l-2.216 24.426zM737.022 276l-4.136 46.112-1.822 20.446h-219.064v-90.958h227.194l-2.172 24.4z"
],
"tags": [
"html5"
],
"grid": 14
},
"properties": {
"order": 8,
"id": 8,
"prevSize": 32,
"code": 58934,
"name": "html5",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 40
},
{
"icon": {
"paths": [
"M874.574 233.902h-160.11l-113.116 113.124h160.11z",
"M512.664 347.026l113.124-113.124h-160.066l-113.168 113.124z",
"M761.732 676.87h-499.464v-328.77l114.17-114.198h-160.114l-67.286 67.302v488.894h725.924v-443.072h-113.23z"
],
"tags": [
"html5_multimedia"
],
"grid": 14
},
"properties": {
"order": 37,
"id": 32,
"prevSize": 32,
"code": 58930,
"name": "html5_multimedia",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 41
},
{
"icon": {
"paths": [
"M674.944 317.452l146.864-146.864h-157.398l-152.416 152.404-152.4-152.404h-157.404l146.876 146.864h-199.16v535.96h262.048l100.042-100.056 100.058 100.056h262.048v-535.96h-199.158zM511.992 595.882l-146.158 146.21h-104.624v-313.33h501.572v313.332h-104.622l-146.168-146.212z"
],
"tags": [
"html5_device_access"
],
"grid": 14
},
"properties": {
"order": 34,
"id": 31,
"prevSize": 32,
"code": 58931,
"name": "html5_device_access",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 42
},
{
"icon": {
"paths": [
"M542.614 184.84l-185.864 60.152 402.558 130.254v256.876l-268.254 86.742-226.362-73.188v-251.626l218.766 70.802 185.864-60.114-403.142-130.47-115.904 37.504v417.15l340.778 110.238 382.67-123.8v-423.362z"
],
"tags": [
"html5_3d_effects"
],
"grid": 14
},
"properties": {
"order": 36,
"id": 29,
"prevSize": 32,
"code": 58933,
"name": "html5_3d_effects",
"ligatures": ""
},
"setIdx": 0,
"iconIdx": 43
},
{
"icon": {
"paths": [
"M693.758 649.056h89.638v-215.224l-100.99-100.988-63.384 63.384 74.736 74.738v178.090zM783.632 693.994h-312.668l-74.736-74.738 31.692-31.692 61.73 61.728h127.002l-125.112-125.35 31.93-31.93 125.112 125.114v-127.004l-61.49-61.494 31.458-31.456-155.39-156.096h-312.192l89.402 89.4v0.238h185.424l65.514 65.514-95.788 95.786-65.514-65.512v-50.85h-89.636v87.982l155.15 155.15-63.148 63.148 100.988 100.99h439.67l-89.398-88.928z"
],
"tags": [
"html5_connectivity"