-
Notifications
You must be signed in to change notification settings - Fork 64
/
tdesign.json
6445 lines (6445 loc) · 687 KB
/
tdesign.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
{
"prefix": "tdesign",
"info": {
"name": "TDesign Icons",
"total": 2114,
"author": {
"name": "TDesign",
"url": "https://github.com/Tencent/tdesign-icons"
},
"license": {
"title": "MIT",
"spdx": "MIT",
"url": "https://github.com/Tencent/tdesign-icons/blob/main/LICENSE"
},
"samples": [
"activity",
"doge",
"dam",
"view-list",
"rotation",
"laptop"
],
"height": 24,
"category": "UI 24px",
"palette": false
},
"lastModified": 1732777890,
"icons": {
"accessibility": {
"body": "<path fill=\"currentColor\" d=\"M12 2a1.25 1.25 0 1 1 0 2.5A1.25 1.25 0 0 1 12 2M8.75 3.25a3.25 3.25 0 1 0 6.5 0a3.25 3.25 0 0 0-6.5 0m-6.5 6.375A2.625 2.625 0 0 1 4.875 7h14.25a2.625 2.625 0 0 1 0 5.25h-2.628l1.823 8.208a2.5 2.5 0 0 1-2.44 3.042h-2.142L12 17.198L10.261 23.5H8.12a2.5 2.5 0 0 1-2.44-3.042l1.823-8.208H4.875A2.625 2.625 0 0 1 2.25 9.625M4.875 9a.625.625 0 1 0 0 1.25h5.122L7.632 20.892a.5.5 0 0 0 .488.608h.619l2-7.25h2.522l2 7.25h.62a.5.5 0 0 0 .487-.608L14.003 10.25h5.122a.625.625 0 1 0 0-1.25z\"/>"
},
"accessibility-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 4.5A2.25 2.25 0 1 0 12 0a2.25 2.25 0 0 0 0 4.5M21.75 7V5.5H2.25V7l6.5 1.75L9 12L4.75 22.75l1.5.75l5.745-9h.01l5.745 9l1.5-.75L15 12l.25-3.25z\"/>"
},
"activity": {
"body": "<path fill=\"currentColor\" d=\"M22 2H2v20h20zm-2 2v7h-2.554l-2.021 3.233l-5.865-7.82L5.546 11H4V4zM4 13h2.454L9.44 9.587l6.135 8.18L18.555 13H20v7H4z\"/>"
},
"activity-filled": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v9h-4.554l-2.021 3.233l-5.865-7.82L5.546 11H2z\"/><path fill=\"currentColor\" d=\"M2 13v9h20v-9h-3.446l-2.979 4.767l-6.135-8.18L6.454 13z\"/>"
},
"add": {
"body": "<path fill=\"currentColor\" d=\"M13 4v7h7v2h-7v7h-2v-7H4v-2h7V4z\"/>"
},
"add-and-subtract": {
"body": "<path fill=\"currentColor\" d=\"M13 1v8h8v2h-8v8h-2v-8H3V9h8V1zM3 20h18v2H3z\"/>"
},
"add-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m12-5.5V11h4.5v2H13v4.5h-2V13H6.5v-2H11V6.5z\"/>"
},
"add-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 1C5.925 1 1 5.925 1 12s4.925 11 11 11s11-4.925 11-11S18.075 1 12 1m1 12v4.5h-2V13H6.5v-2H11V6.5h2V11h4.5v2z\"/>"
},
"add-rectangle": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v20H2zm2 2v16h16V4zm9 2.5V11h4.5v2H13v4.5h-2V13H6.5v-2H11V6.5z\"/>"
},
"add-rectangle-filled": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v20H2zm11 4.5h-2V11H6.5v2H11v4.5h2V13h4.5v-2H13z\"/>"
},
"address-book": {
"body": "<path fill=\"currentColor\" d=\"M3 6a4 4 0 0 1 4-4h14v20H7a4 4 0 0 1-4-4zm2 8.535A4 4 0 0 1 7 14h12V4h-2v6.766l-3.5-2.1l-3.5 2.1V4H7a2 2 0 0 0-2 2zM19 16H7a2 2 0 1 0 0 4h12zM15 4h-3v3.234l1.5-.9l1.5.9z\"/>"
},
"address-book-filled": {
"body": "<path fill=\"currentColor\" d=\"M7 2a4 4 0 0 0-4 4v12a4 4 0 0 0 4 4h14V2zm10 7.75l-2.5-2.062L12 9.75V4h5zM5 18a2 2 0 0 1 2-2h12v4H7a2 2 0 0 1-2-2\"/>"
},
"adjustment": {
"body": "<path fill=\"currentColor\" d=\"M8 4a1 1 0 1 0 0 2a1 1 0 0 0 0-2M5.17 4a3.001 3.001 0 0 1 5.66 0H22v2H10.83a3.001 3.001 0 0 1-5.66 0H2V4zm8 7a3.001 3.001 0 0 1 5.66 0H22v2h-3.17a3.001 3.001 0 0 1-5.66 0H2v-2zM16 11a1 1 0 1 0 0 2a1 1 0 0 0 0-2m-8 7a1 1 0 1 0 0 2a1 1 0 0 0 0-2m-2.83 0a3.001 3.001 0 0 1 5.66 0H22v2H10.83a3.001 3.001 0 0 1-5.66 0H2v-2z\"/>"
},
"adjustment-filled": {
"body": "<path fill=\"currentColor\" d=\"M5.17 4a3.001 3.001 0 0 1 5.66 0H22v2H10.83a3.001 3.001 0 0 1-5.66 0H2V4zm8 7a3.001 3.001 0 0 1 5.66 0H22v2h-3.17a3.001 3.001 0 0 1-5.66 0H2v-2zm-8 7a3.001 3.001 0 0 1 5.66 0H22v2H10.83a3.001 3.001 0 0 1-5.66 0H2v-2z\"/>"
},
"airplay-wave": {
"body": "<path fill=\"currentColor\" d=\"M1 3h22v17h-5.5v-2H21V5H3l.001 13h3.5v2H1zm15.95 10.383a7 7 0 0 0-9.9 0l-.706.707l-1.414-1.414l.707-.707a9 9 0 0 1 12.728 0l.707.707l-1.415 1.414zm-2.828 2.828a3 3 0 0 0-4.243 0l-.707.707l-1.414-1.414l.707-.707a5 5 0 0 1 7.07 0l.708.707l-1.414 1.414zM12 18.086L15.914 22H8.086z\"/>"
},
"airplay-wave-filled": {
"body": "<path fill=\"currentColor\" d=\"M23 3H1l.001 17h6.964L12 15.964L16.036 20H23zm-6.05 8.383a7 7 0 0 0-9.899 0l-.707.707l-1.414-1.414l.707-.707a9 9 0 0 1 12.728 0l.707.707l-1.414 1.414zm-2.828 2.828a3 3 0 0 0-4.243 0l-.707.707l-1.414-1.414l.707-.707a5 5 0 0 1 7.071 0l.707.707l-1.414 1.414z\"/><path fill=\"currentColor\" d=\"M15.914 22L12 18.086L8.086 22z\"/>"
},
"alarm": {
"body": "<path fill=\"currentColor\" d=\"M6.914 2.5L1.5 7.914L.086 6.5L5.5 1.086zM18.5 1.086L23.914 6.5L22.5 7.914L17.086 2.5zM12 5a8 8 0 1 0 0 16a8 8 0 0 0 0-16M2 13C2 7.477 6.477 3 12 3s10 4.477 10 10s-4.477 10-10 10S2 18.523 2 13m11-5.5v5.086L16.414 16L15 17.414l-4-4V7.5z\"/>"
},
"alarm-add": {
"body": "<path fill=\"currentColor\" d=\"M6.914 2.5L1.5 7.914L.086 6.5L5.5 1.086zM18.5 1.086L23.914 6.5L22.5 7.914L17.086 2.5zM12 5a8 8 0 1 0 0 16a8 8 0 0 0 0-16M2 13C2 7.477 6.477 3 12 3s10 4.477 10 10s-4.477 10-10 10S2 18.523 2 13m11-5v4h4v2h-4v4h-2v-4H7v-2h4V8z\"/>"
},
"alarm-add-filled": {
"body": "<path fill=\"currentColor\" d=\"M1.5 7.914L6.914 2.5L5.5 1.086L.086 6.5zM23.914 6.5L18.5 1.086L17.086 2.5L22.5 7.914zM12 3C6.477 3 2 7.477 2 13s4.477 10 10 10s10-4.477 10-10S17.523 3 12 3m5 11h-4v4h-2v-4H7v-2h4V8h2v4h4z\"/>"
},
"alarm-filled": {
"body": "<path fill=\"currentColor\" d=\"M1.5 7.914L6.914 2.5L5.5 1.086L.086 6.5zM23.914 6.5L18.5 1.086L17.086 2.5L22.5 7.914zM12 3C6.477 3 2 7.477 2 13s4.477 10 10 10s10-4.477 10-10S17.523 3 12 3m3 14.414l-4-4V7.5h2v5.086L16.414 16z\"/>"
},
"alarm-off": {
"body": "<path fill=\"currentColor\" d=\"m.086 6.5l2.5-2.5l-2-2L2 .586l2 2l1.5-1.5L6.914 2.5L5.414 4l18 18L22 23.414l-3.139-3.139A9.97 9.97 0 0 1 12.001 23C6.476 23 2 18.523 2 13a9.97 9.97 0 0 1 2.724-6.861L4 5.414l-2.5 2.5zM6.14 7.554A8 8 0 0 0 17.446 18.86zm2.421-4l.97-.246A10 10 0 0 1 12 3c5.523 0 10 4.477 10 10c0 .851-.107 1.679-.308 2.47l-.246.969l-1.938-.493l.246-.969a8 8 0 0 0-9.731-9.731l-.97.246zm9.94-2.468L23.913 6.5L22.5 7.914L17.086 2.5z\"/>"
},
"alarm-off-filled": {
"body": "<path fill=\"currentColor\" d=\"M2.004.59L2 .586L.586 2l2 2l-2.5 2.5L1.5 7.914l2.5-2.5l.725.725A9.97 9.97 0 0 0 2 13c0 5.523 4.477 10 10 10a9.97 9.97 0 0 0 6.861-2.725l3.14 3.14l1.41-1.41L2 .594zm19.184 16.364A10 10 0 0 0 22 13c0-5.523-4.477-10-10-10a10 10 0 0 0-3.954.812zM18.5 1.086L23.914 6.5L22.5 7.914L17.086 2.5z\"/>"
},
"align-top": {
"body": "<path fill=\"currentColor\" d=\"M3 3h18v2H3zm9 2.586l-.707.707l-4 4l-.707.707L8 12.414l.707-.707L11 9.414V21h2V9.414l2.293 2.293l.707.707L17.414 11l-.707-.707l-4-4z\"/>"
},
"align-vertical": {
"body": "<path fill=\"currentColor\" d=\"M13 6.586V0h-2v6.586L9.707 5.293L9 4.586L7.586 6l.707.707l3 3l.707.707l.707-.707l3-3L16.414 6L15 4.586l-.707.707zM21 13H3v-2h18zm-9 .586l.707.707l3 3l.707.707L15 19.414l-.707-.707L13 17.414V24h-2v-6.586l-1.293 1.293l-.707.707L7.586 18l.707-.707l3-3z\"/>"
},
"alpha": {
"body": "<path fill=\"currentColor\" d=\"M14 2v3.866l5.336-3.24l1.038 1.71L14 8.206v8.588l6.374 3.87l-1.038 1.71L14 19.134V22h-2v-4.08L3.073 12.5L12 7.08V2zm-2 7.42L6.927 12.5L12 15.58z\"/>"
},
"analytics": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v20H2zm2 2v16h16V4zm14 4v3h-2V8zm-5 2v3h-2v-3zm-5 2v6H6v-6zm10 1v5h-2v-5zm-5 2v3h-2v-3z\"/>"
},
"analytics-filled": {
"body": "<path fill=\"currentColor\" d=\"M22 2v20H2V2zm-4 9V8h-2v3zm-5 2v-3h-2v3zm-5 5v-6H6v6zm10 0v-5h-2v5zm-5 0v-3h-2v3z\"/>"
},
"anchor": {
"body": "<path fill=\"currentColor\" d=\"M12 3a2 2 0 1 0 0 4a2 2 0 0 0 0-4M8 5a4 4 0 1 1 5 3.874V10.5h4.5v2H13v8.458c3.133-.267 5.643-1.796 6.802-4.228l-1.23-1.23l4.048-4.048l-.135 2.6C22.19 19.74 17.455 23 12 23S1.81 19.74 1.515 14.052l-.135-2.6L5.427 15.5l-1.23 1.23c1.159 2.432 3.67 3.96 6.802 4.228V12.5H6.5v-2H11V8.874A4 4 0 0 1 8 5\"/>"
},
"angry": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m5.769-3.866l3.464 2l-1 1.732l-3.464-2zm11.464 1.732l-3.464 2l-1-1.732l3.464-2zM7.67 15.499A5 5 0 0 1 12 13a5 5 0 0 1 4.33 2.5l.501.865l-1.731 1.001l-.5-.865A3 3 0 0 0 12 15a3 3 0 0 0-2.6 1.5l-.5.866l-1.731-1.001z\"/>"
},
"angry-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11m-1.767-12.866l-3.464-2l-1 1.732l3.464 2zm4.536 1.732l3.464-2l-1-1.732l-3.464 2zM11.999 13a5 5 0 0 0-4.33 2.5l-.5.865l1.73 1.001l.502-.866C9.92 15.601 10.89 15 12 15s2.079.601 2.6 1.5l.5.866l1.731-1.001l-.5-.866A5 5 0 0 0 12 13\"/>"
},
"animation": {
"body": "<path fill=\"currentColor\" d=\"m11.09 7.054l.11-.46q.027-.091.057-.181l.371-.841a5 5 0 1 1 6.491 6.958l-.532.213l-.117.037l-.511.128Q16.493 13 16 13a5 5 0 0 1-4.91-5.946M9.47 5.471a7.02 7.02 0 0 0-4 4A7.002 7.002 0 0 0 8 23a7 7 0 0 0 6.529-4.47q.198-.078.39-.166l.338-.135l-.01-.026a7.03 7.03 0 0 0 3.282-3.674q.198-.076.392-.165l.336-.135l-.01-.026A7 7 0 1 0 9.47 5.471M16 15a5 5 0 0 1-1.882 1.53l-.53.212l-.12.04l-.507.126q-.467.091-.961.092a5 5 0 0 1-4.91-5.946l.11-.46q.027-.091.057-.181l.372-.842A5 5 0 0 1 9 7.999V8a7 7 0 0 0 7 7M5 12a7 7 0 0 0 7 7a5 5 0 1 1-7-7\"/>"
},
"animation-1": {
"body": "<path fill=\"currentColor\" d=\"m11.41.06l3.716 6.174l7.02 1.626l-4.724 5.44l.623 7.18l-6.635-2.812l-6.634 2.811l.623-7.178L.676 7.86l7.02-1.626zm0 3.88L8.972 7.99L4.365 9.058l3.1 3.572l-.41 4.711l4.355-1.845l4.355 1.845l-.409-4.711l3.1-3.572l-4.607-1.067zm9.453 10.071l2.475 2.475l-1.414 1.414l-2.475-2.474zm-8.296 6.116l2.474 2.475l-1.414 1.414l-2.475-2.475zm6.578 0l2.474 2.475l-1.414 1.414l-2.475-2.475z\"/>",
"height": 25
},
"animation-1-filled": {
"body": "<path fill=\"currentColor\" d=\"m11.41.06l3.716 6.174l7.019 1.626l-4.723 5.44l.623 7.18l-6.635-2.812l-6.634 2.811l.623-7.178L.676 7.86l7.019-1.626zm9.453 13.951l2.475 2.475l-1.414 1.414l-2.475-2.474zm-8.297 6.116l2.475 2.475l-1.414 1.414l-2.475-2.475zm6.578 0l2.475 2.475l-1.414 1.414l-2.475-2.475z\"/>",
"height": 25
},
"animation-filled": {
"body": "<path fill=\"currentColor\" d=\"M16.5 14a6.5 6.5 0 1 0 0-13a6.5 6.5 0 0 0 0 13\"/><path fill=\"currentColor\" d=\"M17.143 15.976a8.5 8.5 0 0 1-9.119-9.118a6.5 6.5 0 1 0 9.119 9.118\"/><path fill=\"currentColor\" d=\"M12.642 20.476a8.5 8.5 0 0 1-9.118-9.119a6.5 6.5 0 1 0 9.118 9.119\"/>"
},
"anticlockwise": {
"body": "<path fill=\"currentColor\" d=\"M4.333 5a3 3 0 0 1 3-3H13v2H7.333a1 1 0 0 0-1 1v6.5H4.34L.586 7.446l1.467-1.36l2.28 2.462zM8 6h15v15H8zm2 2v11h11V8z\"/>"
},
"anticlockwise-filled": {
"body": "<path fill=\"currentColor\" d=\"M4.333 5a3 3 0 0 1 3-3H13v2H7.333a1 1 0 0 0-1 1v6.5H4.34L.586 7.446l1.467-1.36l2.28 2.462zM8 6h15v15H8z\"/>"
},
"api": {
"body": "<path fill=\"currentColor\" d=\"M.586 12L5 7.586L6.414 9l-3 3l3 3L5 16.414zm7-7L12 .586L16.414 5L15 6.414l-3-3l-3 3zM9 17.586l3 3l3-3L16.414 19L12 23.414L7.586 19zm1.998-4.584v-2.004h2.004v2.004zM17.586 15l3-3l-3-3L19 7.586L23.414 12L19 16.414z\"/>"
},
"app": {
"body": "<path fill=\"currentColor\" d=\"M2 2h9v9H2zm2 2v5h5V4zm13.5 0a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5M13 6.5a4.5 4.5 0 1 1 9 0a4.5 4.5 0 0 1-9 0M2 13h9v9H2zm2 2v5h5v-5zm9-2h9v9h-9zm2 2v5h5v-5z\"/>"
},
"app-filled": {
"body": "<path fill=\"currentColor\" d=\"M2 2h9v9H2zm11 4.5a4.5 4.5 0 1 1 9 0a4.5 4.5 0 0 1-9 0M2 13h9v9H2zm11 0h9v9h-9z\"/>"
},
"apple": {
"body": "<path fill=\"currentColor\" d=\"M13 2v2.404l.152-.025l.275-.05c.329-.059.698-.126 1.065-.165c1.025-.111 2.153-.03 3.492.711C20.622 6.335 22 9.1 22 12.5c0 4.28-2.71 8.3-6.189 9.439c-1.04.34-1.785.156-2.404-.072l-.272-.102c-.416-.159-.695-.265-1.135-.265s-.718.106-1.134.265l-.272.103c-.62.228-1.366.413-2.407.07C4.72 20.797 2 16.782 2 12.5c0-3.4 1.378-6.16 4.015-7.624c1.34-.744 2.468-.825 3.494-.714c.366.04.736.107 1.064.167l.275.05l.152.025V2zm-2 4.427q-.258-.036-.494-.078l-.34-.061a12 12 0 0 0-.873-.137c-.7-.076-1.397-.032-2.308.473C5.12 7.66 4 9.657 4 12.5c0 3.557 2.288 6.708 4.813 7.538c.458.151.711.092 1.09-.047l.19-.073c.429-.168 1.068-.418 1.907-.418s1.478.25 1.906.417l.19.073c.38.14.634.198 1.093.048C17.718 19.21 20 16.058 20 12.5c0-2.844-1.12-4.843-2.985-5.875c-.91-.505-1.608-.549-2.308-.473c-.29.031-.562.08-.874.137q-.161.03-.34.06q-.235.041-.493.078v1.402q.261-.093.5-.23l.865-.5l1.001 1.73l-.866.501A5 5 0 0 1 12 10c-.91 0-1.764-.244-2.5-.67l-.866-.5l1.001-1.731l.866.5q.237.137.499.23z\"/>"
},
"apple-filled": {
"body": "<path fill=\"currentColor\" d=\"M13 4.404V2h-2v2.404l-.152-.026l-.275-.05c-.328-.059-.698-.126-1.064-.166c-1.026-.111-2.155-.03-3.494.714C3.378 6.339 2 9.1 2 12.5c0 4.282 2.719 8.297 6.187 9.438c1.041.343 1.787.158 2.407-.07q.146-.054.272-.103c.416-.159.695-.265 1.134-.265c.44 0 .719.106 1.135.265h.001l.27.102c.62.227 1.365.412 2.405.072C19.291 20.799 22 16.78 22 12.5c0-3.4-1.38-6.165-4.015-7.625c-1.34-.742-2.468-.822-3.493-.712c-.367.04-.737.107-1.065.166zM9 6s1.875.636 3 .636S15 6 15 6s-.742 2-3 2s-3-2-3-2\"/>"
},
"application": {
"body": "<path fill=\"currentColor\" d=\"m12 .845l9.66 5.578v11.154L12 23.155l-9.66-5.578V6.423zm0 2.31L4.34 7.577v8.846L12 20.845l7.66-4.422V7.577zM8.723 8.613L12 10.798l3.277-2.185l1.11 1.664L13 12.535V16h-2v-3.465l-3.387-2.258z\"/>"
},
"application-filled": {
"body": "<path fill=\"currentColor\" d=\"M21.66 6.423v11.154L12 23.155l-9.66-5.578V6.423L12 .845zM12 10.798L8.723 8.613l-1.11 1.664L11 12.535V16h2v-3.465l3.387-2.258l-1.11-1.664z\"/>"
},
"architecture-hui-style": {
"body": "<path fill=\"currentColor\" d=\"M12.8 1.4L12 .333L11.2 1.4l-.004.005l-.012.016l-.049.065l-.19.249a77 77 0 0 1-2.948 3.607c-.865.988-1.77 1.952-2.568 2.66c-.4.356-.75.627-1.035.803c-.246.151-.37.185-.396.193v-.002l-.004-1l-2 .008l.004 1c.001.405.106.908.459 1.327c.378.45.928.67 1.543.67v9H2v2h20v-2h-2v-9c.614 0 1.165-.22 1.543-.67c.353-.42.457-.924.457-1.33V8h-2v.996a1.6 1.6 0 0 1-.394-.192a8 8 0 0 1-1.036-.802c-.797-.71-1.703-1.673-2.568-2.661a73 73 0 0 1-3.138-3.856l-.049-.065l-.012-.016zM16.704 9H7.295a38 38 0 0 0 2.207-2.34A75 75 0 0 0 12 3.637l.184.234a75 75 0 0 0 2.313 2.788A38 38 0 0 0 16.704 9M6 11h12v9h-3v-3a3 3 0 0 0-6 0v3H6zm7 9h-2v-3a1 1 0 1 1 2 0z\"/>"
},
"architecture-hui-style-filled": {
"body": "<path fill=\"currentColor\" d=\"m12 .333l.803 1.072l.012.016l.05.065q.064.086.19.249a78 78 0 0 0 2.947 3.607c.865.988 1.77 1.952 2.568 2.66c.4.356.75.627 1.036.803c.238.147.362.183.393.192V8h2v1c0 .407-.104.91-.456 1.33c-.378.451-.93.67-1.544.67H4c-.614 0-1.165-.22-1.543-.669c-.352-.419-.457-.922-.458-1.327l-.004-1l2-.008l.004 1v.002H4c.03-.01.154-.046.393-.193a8 8 0 0 0 1.036-.802c.797-.71 1.703-1.673 2.568-2.661a74 74 0 0 0 3.138-3.856l.049-.065l.012-.016zM4 13v7H2v2h7v-3a3 3 0 0 1 6 0v3h7v-2h-2v-7z\"/><path fill=\"currentColor\" d=\"M12 18a1 1 0 0 0-1 1v3h2v-3a1 1 0 0 0-1-1\"/>"
},
"archway": {
"body": "<path fill=\"currentColor\" d=\"M6 2v1h12V2h2v1h1v2h-.78l.6 3H22v2h-1v10h1v2H2v-2h1V10H2V8h1.18l.6-3H3V3h1V2zm-.18 3l-.6 3h13.56l-.6-3zM19 10h-3v10h3zm-5 10V10h-4v10zm-6 0V10H5v10z\"/>"
},
"archway-1": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v5h-2.915l.385 3H22v2h-2.274l1.393 10.865l-1.984.254L17.71 12H6.258l-1.39 11.116l-1.984-.248L4.242 12H2v-2h2.492l.375-3H2zm4.883 5l-.375 3H11V7zM13 7v3h4.454l-.385-3zM4 4v1h16V4z\"/>"
},
"archway-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v5h-2.915l.385 3H22v2h-2.274l1.393 10.865l-1.984.254L17.71 12H6.258l-1.39 11.116l-1.984-.248L4.242 12H2v-2h2.492l.375-3H2zm4.883 5l-.375 3H11V7zM13 7v3h4.454l-.385-3z\"/>"
},
"archway-filled": {
"body": "<path fill=\"currentColor\" d=\"M6 2v1h12V2h2v1h1v2h-.78l.6 3H22v2h-1v10h1v2H2v-2h1V10H2V8h1.18l.6-3H3V3h1V2zm13 8h-3v10h3zm-5 10V10h-4v10zm-6 0V10H5v10z\"/>"
},
"arrow-down": {
"body": "<path fill=\"currentColor\" d=\"M11 4.5v11.586l-4.5-4.5L5.086 13L12 19.914L18.914 13L17.5 11.586l-4.5 4.5V4.5z\"/>"
},
"arrow-down-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m12-5.5v7.586l3-3l1.414 1.414L12 17.914L6.586 12.5L8 11.086l3 3V6.5z\"/>"
},
"arrow-down-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M23 12c0-6.075-4.925-11-11-11S1 5.925 1 12s4.925 11 11 11s11-4.925 11-11m-7 0l-4 6.25L8 12h3V6h2v6z\"/>"
},
"arrow-down-rectangle": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v20H2zm2 2v16h16V4zm9 2.5v7.586l3-3l1.414 1.414L12 17.914L6.586 12.5L8 11.086l3 3V6.5z\"/>"
},
"arrow-down-rectangle-filled": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v20H2zm10 16.25L16 12h-3V6h-2v6H8z\"/>"
},
"arrow-left": {
"body": "<path fill=\"currentColor\" d=\"M19.5 13H7.914l4.5 4.5L11 18.914L4.086 12L11 5.086L12.414 6.5l-4.5 4.5H19.5z\"/>"
},
"arrow-left-circle": {
"body": "<path fill=\"currentColor\" d=\"M21 12a9 9 0 1 0-18 0a9 9 0 0 0 18 0M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12S5.925 1 12 1m5.5 12H9.914l3 3l-1.414 1.414L6.086 12L11.5 6.586L12.914 8l-3 3H17.5z\"/>"
},
"arrow-left-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12S5.925 1 12 1m0 7l-6.25 4L12 16v-3h6v-2h-6z\"/>"
},
"arrow-left-down": {
"body": "<path fill=\"currentColor\" d=\"m18.01 7.404l-8.19 8.192h6.364v2h-9.78V7.818h2v6.364l8.193-8.192z\"/>"
},
"arrow-left-down-circle": {
"body": "<path fill=\"currentColor\" d=\"M3 12a9 9 0 1 0 18 0a9 9 0 0 0-18 0m9 11C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11m-4.182-6.819V8.524h2v4.243l5.364-5.364l1.414 1.414l-5.364 5.364h4.243v2z\"/>"
},
"arrow-left-down-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M4.222 4.222c4.296-4.296 11.26-4.296 15.556 0s4.296 11.26 0 15.556s-11.26 4.296-15.556 0s-4.296-11.26 0-15.556m4.95 4.95L7.58 16.419l7.247-1.59l-2.12-2.122l4.242-4.243l-1.414-1.414l-4.243 4.243z\"/>"
},
"arrow-left-right-1": {
"body": "<path fill=\"currentColor\" d=\"M3.586 16.5L8.5 11.586L9.914 13l-2.5 2.5H19.5v2H7.414l2.5 2.5L8.5 21.414zm.914-10h12.086l-2.5-2.5L15.5 2.586L20.414 7.5L15.5 12.414L14.086 11l2.5-2.5H4.5z\"/>"
},
"arrow-left-right-2": {
"body": "<path fill=\"currentColor\" d=\"M21.5 17.5h-8.586l3 3l-1.414 1.414L9.086 16.5l5.414-5.414l1.414 1.414l-3 3H21.5zm-6.586-10L9.5 12.914L8.086 11.5l3-3H2.5v-2h8.586l-3-3L9.5 2.086z\"/>"
},
"arrow-left-right-3": {
"body": "<path fill=\"currentColor\" d=\"M20.914 7.5L15.5 12.914L14.086 11.5l3-3H8.5v-2h8.586l-3-3L15.5 2.086zm-5.414 10H6.914l3 3L8.5 21.914L3.086 16.5L8.5 11.086L9.914 12.5l-3 3H15.5z\"/>"
},
"arrow-left-right-circle": {
"body": "<path fill=\"currentColor\" d=\"M3 12a9 9 0 1 0 18 0a9 9 0 0 0-18 0m9 11C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11m-6.914-8L9 11.086l1.414 1.414l-1.5 1.5H14v2H8.914l1.5 1.5L9 18.914zM10 8h5.086l-1.5-1.5L15 5.086L18.914 9L15 12.914L13.586 11.5l1.5-1.5H10z\"/>"
},
"arrow-left-right-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M23 12c0-6.075-4.925-11-11-11S1 5.925 1 12s4.925 11 11 11s11-4.925 11-11m-13.5-.5V14H14v2H9.5v2.5L5 15zM19 9l-4.5 3.5V10H10V8h4.5V5.5z\"/>"
},
"arrow-left-up": {
"body": "<path fill=\"currentColor\" d=\"M16.596 18.01L8.403 9.818v6.364h-2V6.404h9.779v2H9.817l8.192 8.192z\"/>"
},
"arrow-left-up-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m6.818-4.182h7.657v2h-4.243l5.364 5.364l-1.414 1.414l-5.364-5.364v4.243h-2z\"/>"
},
"arrow-left-up-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M19.778 4.222c4.296 4.296 4.296 11.26 0 15.556s-11.26 4.296-15.556 0s-4.296-11.26 0-15.556s11.26-4.296 15.556 0m-4.95 4.95L7.581 7.58l1.59 7.247l2.122-2.12l4.243 4.242l1.414-1.414l-4.243-4.243z\"/>"
},
"arrow-right": {
"body": "<path fill=\"currentColor\" d=\"M4.5 11h11.586l-4.5-4.5L13 5.086L19.914 12L13 18.914L11.586 17.5l4.5-4.5H4.5z\"/>"
},
"arrow-right-circle": {
"body": "<path fill=\"currentColor\" d=\"M3 12a9 9 0 1 1 18 0a9 9 0 0 1-18 0m9-11C5.925 1 1 5.925 1 12s4.925 11 11 11s11-4.925 11-11S18.075 1 12 1M6.5 13h7.586l-3 3l1.414 1.414L17.914 12L12.5 6.586L11.086 8l3 3H6.5z\"/>"
},
"arrow-right-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11m0-7l6.25-4L12 8v3H6v2h6z\"/>"
},
"arrow-right-down": {
"body": "<path fill=\"currentColor\" d=\"m7.403 5.99l8.193 8.192V7.818h2v9.778H7.818v-2h6.364L5.989 7.404z\"/>"
},
"arrow-right-down-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 21a9 9 0 1 0 0-18a9 9 0 0 0 0 18m11-9c0 6.075-4.925 11-11 11S1 18.075 1 12S5.925 1 12 1s11 4.925 11 11m-8.818.768V8.525h2v7.657H8.525v-2h4.243L7.404 8.818l1.414-1.414z\"/>"
},
"arrow-right-down-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M4.222 19.778c-4.296-4.296-4.296-11.26 0-15.556s11.26-4.296 15.556 0s4.296 11.26 0 15.556s-11.26 4.296-15.556 0m4.95-4.95l7.247 1.591l-1.59-7.247l-2.122 2.12L8.464 7.05L7.05 8.464l4.243 4.243z\"/>"
},
"arrow-right-up": {
"body": "<path fill=\"currentColor\" d=\"m5.99 16.596l8.192-8.192H7.818v-2h9.778v9.778h-2V9.818L7.403 18.01z\"/>"
},
"arrow-right-up-circle": {
"body": "<path fill=\"currentColor\" d=\"M21 12a9 9 0 1 0-18 0a9 9 0 0 0 18 0M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12S5.925 1 12 1m.768 8.819H8.525v-2h7.657v7.657h-2v-4.243l-5.364 5.364l-1.414-1.414z\"/>"
},
"arrow-right-up-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M19.778 19.778c-4.296 4.296-11.26 4.296-15.556 0s-4.296-11.26 0-15.556s11.26-4.296 15.556 0s4.296 11.26 0 15.556m-4.95-4.95l1.591-7.247l-7.247 1.59l2.12 2.122l-4.242 4.243l1.414 1.414l4.243-4.243z\"/>"
},
"arrow-triangle-down": {
"body": "<path fill=\"currentColor\" d=\"M9 12V2h6v10h4.5L12 22L4.5 12zm-.5 2l3.5 4.667L15.5 14H13V4h-2v10z\"/>"
},
"arrow-triangle-down-filled": {
"body": "<path fill=\"currentColor\" d=\"M15 12h4.5L12 22L4.5 12H9V2h6z\"/>"
},
"arrow-triangle-up": {
"body": "<path fill=\"currentColor\" d=\"M9 12v10h6V12h4.5L12 2L4.5 12zm-.5-2L12 5.333L15.5 10H13v10h-2V10z\"/>"
},
"arrow-triangle-up-filled": {
"body": "<path fill=\"currentColor\" d=\"M15 12h4.5L12 2L4.5 12H9v10h6z\"/>"
},
"arrow-up": {
"body": "<path fill=\"currentColor\" d=\"M11 19.5V7.914l-4.5 4.5L5.086 11L12 4.086L18.914 11L17.5 12.414l-4.5-4.5V19.5z\"/>"
},
"arrow-up-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m11-5.914l5.414 5.414L16 12.914l-3-3V17.5h-2V9.914l-3 3L6.586 11.5z\"/>"
},
"arrow-up-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M23 12c0 6.075-4.925 11-11 11S1 18.075 1 12S5.925 1 12 1s11 4.925 11 11m-7 0l-4-6.25L8 12h3v6h2v-6z\"/>"
},
"arrow-up-down-1": {
"body": "<path fill=\"currentColor\" d=\"M16.5 20.414L11.586 15.5L13 14.086l2.5 2.5V4.5h2v12.086l2.5-2.5l1.414 1.414zm-10-.914V7.414L4 9.914L2.586 8.5L7.5 3.586L12.414 8.5L11 9.914l-2.5-2.5V19.5z\"/>"
},
"arrow-up-down-2": {
"body": "<path fill=\"currentColor\" d=\"M17.5 2.5v8.586l3-3L21.914 9.5L16.5 14.914L11.086 9.5L12.5 8.086l3 3V2.5zm-10 6.586l5.414 5.414l-1.414 1.414l-3-3V21.5h-2v-8.586l-3 3L2.086 14.5z\"/>"
},
"arrow-up-down-3": {
"body": "<path fill=\"currentColor\" d=\"M7.5 3.086L12.914 8.5L11.5 9.914l-3-3V15.5h-2V6.914l-3 3L2.086 8.5zm10 5.414v8.586l3-3l1.414 1.414l-5.414 5.414l-5.414-5.414l1.414-1.414l3 3V8.5z\"/>"
},
"arrow-up-down-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 21a9 9 0 1 0 0-18a9 9 0 0 0 0 18m11-9c0 6.075-4.925 11-11 11S1 18.075 1 12S5.925 1 12 1s11 4.925 11 11m-8 6.914L11.086 15l1.414-1.414l1.5 1.5V10h2v5.086l1.5-1.5L18.914 15zM8 14V8.914l-1.5 1.5L5.086 9L9 5.086L12.914 9L11.5 10.414l-1.5-1.5V14z\"/>"
},
"arrow-up-down-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1S1 5.925 1 12s4.925 11 11 11m.5-13.5H10V14H8V9.5H5.5L9 5zM15 19l-3.5-4.5H14V10h2v4.5h2.5z\"/>"
},
"artboard": {
"body": "<path fill=\"currentColor\" d=\"M8 2v4h8V2h2v4h4v2h-4v8h4v2h-4v4h-2v-4H8v4H6v-4H2v-2h4V8H2V6h4V2zm0 6v8h8V8z\"/>"
},
"article": {
"body": "<path fill=\"currentColor\" d=\"M2.5 2h19v20h-19zm2 2v16h15V4zM7 7h10v2H7zm0 4h10v2H7zm0 4h7v2H7z\"/>"
},
"article-filled": {
"body": "<path fill=\"currentColor\" d=\"M21.5 2h-19v20h19zM17 7v2H7V7zm0 4v2H7v-2zm-3 6H7v-2h7z\"/>"
},
"assignment": {
"body": "<path fill=\"currentColor\" d=\"M12 2.5a1.5 1.5 0 0 0-1.376.9l-.262.6H4.5v16h15V4h-5.862l-.262-.6A1.5 1.5 0 0 0 12 2.5M9.128 2A3.5 3.5 0 0 1 12 .5c1.19 0 2.24.594 2.872 1.5H21.5v20h-19V2zM7 7h10v2H7zm0 4h10v2H7zm0 4h7v2H7z\"/>"
},
"assignment-checked": {
"body": "<path fill=\"currentColor\" d=\"M12 2.5a1.5 1.5 0 0 0-1.376.9l-.262.6H4.5v16h15V4h-5.862l-.262-.6A1.5 1.5 0 0 0 12 2.5M9.128 2A3.5 3.5 0 0 1 12 .5c1.19 0 2.24.594 2.872 1.5H21.5v20h-19V2zm8.53 7.586l-7.072 7.07l-4.242-4.242L7.758 11l2.828 2.829l5.657-5.657z\"/>"
},
"assignment-checked-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 .5c1.19 0 2.24.594 2.872 1.5H21.5v20h-19V2h6.628A3.5 3.5 0 0 1 12 .5m-1.414 16.157l7.071-7.071l-1.414-1.414l-5.657 5.656L7.758 11l-1.414 1.414z\"/>"
},
"assignment-code": {
"body": "<path fill=\"currentColor\" d=\"M2.5 2h6.628A3.5 3.5 0 0 1 12 .5c1.19 0 2.24.594 2.872 1.5H21.5v20h-19zm2 18h15V4h-5.862l-.262-.6a1.5 1.5 0 0 0-2.752 0l-.262.6H4.5zm1.086-8L9.5 8.086L10.914 9.5l-2.5 2.5l2.5 2.5L9.5 15.914zM14.5 8.086L18.414 12L14.5 15.914L13.086 14.5l2.5-2.5l-2.5-2.5z\"/>"
},
"assignment-code-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 .5c1.19 0 2.24.594 2.872 1.5H21.5v20h-19V2h6.628A3.5 3.5 0 0 1 12 .5M9.5 8.086L5.586 12L9.5 15.914l1.414-1.414l-2.5-2.5l2.5-2.5zM18.414 12L14.5 8.086L13.086 9.5l2.5 2.5l-2.5 2.5l1.414 1.414z\"/>"
},
"assignment-error": {
"body": "<path fill=\"currentColor\" d=\"M12 2.5a1.5 1.5 0 0 0-1.376.9l-.262.6H4.5v16h15V4h-5.862l-.262-.6A1.5 1.5 0 0 0 12 2.5M9.128 2A3.5 3.5 0 0 1 12 .5c1.19 0 2.24.594 2.872 1.5H21.5v20h-19V2zM13 7.5v6h-2v-6zm-2 7.496h2.004V17H11z\"/>"
},
"assignment-error-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 .5c1.19 0 2.24.594 2.872 1.5H21.5v20h-19V2h6.628A3.5 3.5 0 0 1 12 .5m1 13v-6h-2v6zm.004 1.496H11V17h2.004z\"/>"
},
"assignment-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 .5c-1.19 0-2.24.594-2.872 1.5H2.5v20h19V2h-6.628A3.5 3.5 0 0 0 12 .5M17 7v2H7V7zm0 4v2H7v-2zm-3 6H7v-2h7z\"/>"
},
"assignment-user": {
"body": "<path fill=\"currentColor\" d=\"M12 2.5a1.5 1.5 0 0 0-1.376.9l-.262.6H4.5v16h15V4h-5.862l-.262-.6A1.5 1.5 0 0 0 12 2.5M9.128 2A3.5 3.5 0 0 1 12 .5c1.19 0 2.24.594 2.872 1.5H21.5v20h-19V2zM12 8a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3M8.5 9.5a3.5 3.5 0 1 1 7 0a3.5 3.5 0 0 1-7 0M6 18a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v1h-2v-1a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v1H6z\"/>"
},
"assignment-user-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 .5c-1.19 0-2.24.594-2.872 1.5H2.5v20h19V2h-6.628A3.5 3.5 0 0 0 12 .5m-3 9a3 3 0 1 1 6 0a3 3 0 0 1-6 0M6 18a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v1H6z\"/>"
},
"attach": {
"body": "<path fill=\"currentColor\" d=\"M11.314 3.121a5 5 0 1 1 7.07 7.071l-7.777 7.778a3 3 0 1 1-4.243-4.242l7.778-7.778l1.414 1.414l-7.778 7.778a1 1 0 1 0 1.414 1.414l7.779-7.778a3 3 0 1 0-4.243-4.243L4.95 12.314a5 5 0 0 0 7.07 7.07l8.486-8.485l1.414 1.415l-8.485 8.485a7 7 0 0 1-9.9-9.9z\"/>"
},
"attic": {
"body": "<path fill=\"currentColor\" d=\"M12.81 1.414L12 .294l-.81 1.12l-.002.003l-.009.011l-.033.046l-.133.18a55 55 0 0 1-2.214 2.774c-.687.803-1.45 1.64-2.206 2.364c-.767.735-1.48 1.306-2.067 1.622a7.5 7.5 0 0 1-1.002.459C3.231 8.977 3.062 9 3 9H2v2h1c.328 0 .671-.074 1-.178V20H2v2h20v-2h-2v-9.178c.328.104.672.178 1 .178h1V9h-1c-.062 0-.23-.023-.524-.127a7.5 7.5 0 0 1-1.002-.46c-.587-.315-1.3-.886-2.067-1.62a33 33 0 0 1-2.206-2.365a55 55 0 0 1-2.347-2.954l-.033-.046l-.008-.011zM16.867 9H7.133c.285-.242.568-.5.843-.763a35 35 0 0 0 2.343-2.509A56 56 0 0 0 12 3.66a57 57 0 0 0 1.681 2.068a35 35 0 0 0 2.343 2.509q.414.397.843.763M6 11h12v9h-3v-3a3 3 0 0 0-6 0v3H6zm5 9v-3a1 1 0 1 1 2 0v3z\"/>"
},
"attic-1": {
"body": "<path fill=\"currentColor\" d=\"M11.169 1.444L11.999.2l.832 1.243l.005.008l.02.03l.087.125a28 28 0 0 0 1.6 2.04c1.071 1.239 2.484 2.638 3.954 3.486c.466.269.956.367 1.501.367h1v2h-1c-.326 0-.66-.025-1-.087V17h2v2h-1v3h-2v-3h-5v3h-2v-3h-5v3h-2v-3h-1v-2H5l-.002-7.586a5.6 5.6 0 0 1-1 .086h-1v-2h1c.545 0 1.035-.098 1.501-.367c1.471-.847 2.885-2.247 3.956-3.486a28 28 0 0 0 1.601-2.04l.087-.125l.02-.03zM6.999 9L7 17h2v-2.2a3 3 0 0 1 6 0V17h1.998V9zm8.007-2a24 24 0 0 1-1.976-2.045c-.4-.462-.747-.895-1.03-1.261a31 31 0 0 1-1.032 1.262A24 24 0 0 1 8.99 7zM13 17v-2.2a1 1 0 1 0-2 0V17z\"/>"
},
"attic-1-filled": {
"body": "<path fill=\"currentColor\" d=\"m12 .201l-.831 1.243h-.001l-.005.007l-.02.03l-.087.126a28 28 0 0 1-1.6 2.04C8.383 4.887 6.97 6.286 5.498 7.133c-.466.269-.956.367-1.5.367H2.997v2h2L5 17H2.998v2h1v3h2v-3h5v3h2v-3h5v3h2v-3h1v-2h-2V9.5h2v-2h-1c-.545 0-1.035-.098-1.5-.367c-1.471-.848-2.884-2.247-3.955-3.486a28 28 0 0 1-1.6-2.04l-.086-.125l-.021-.03l-.005-.008zM9 14a3 3 0 1 1 6 0v3h-2v-3a1 1 0 1 0-2 0v3H9z\"/>"
},
"attic-filled": {
"body": "<path fill=\"currentColor\" d=\"m12 .293l.81 1.121l.002.003l.009.011l.033.046l.133.18a55 55 0 0 0 2.214 2.774c.687.803 1.45 1.64 2.206 2.364c.767.735 1.48 1.306 2.067 1.622c.384.206.723.36 1.002.459c.293.104.462.127.524.127h1v2h-1.01a3.4 3.4 0 0 1-.99-.178V11H4v-.178a3.4 3.4 0 0 1-.99.178H2V9h1c.062 0 .23-.023.524-.127c.28-.1.618-.253 1.002-.46c.587-.315 1.3-.886 2.067-1.62a33 33 0 0 0 2.205-2.365a55 55 0 0 0 2.348-2.954l.033-.046l.008-.011l.003-.003zM4 13v7H2v2h7v-3a3 3 0 1 1 6 0v3h7v-2h-2v-7z\"/><path fill=\"currentColor\" d=\"M12 18a1 1 0 0 0-1 1v3h2v-3a1 1 0 0 0-1-1\"/>"
},
"audio": {
"body": "<path fill=\"currentColor\" d=\"M3 1h18v22H3zm2 2v18h14V3zm5.996 1.996H13V7h-2.004zM12 11a3 3 0 1 0 0 6a3 3 0 0 0 0-6m-5 3a5 5 0 1 1 10 0a5 5 0 0 1-10 0\"/>"
},
"audio-filled": {
"body": "<path fill=\"currentColor\" d=\"M8.75 15a3.25 3.25 0 1 1 6.5 0a3.25 3.25 0 0 1-6.5 0\"/><path fill=\"currentColor\" d=\"M21 1H3v22h18zm-9 8.75a5.25 5.25 0 1 1 0 10.5a5.25 5.25 0 0 1 0-10.5m-1.004-4.754H13V7h-2.004z\"/>"
},
"awkward": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m5-3h4v2H6zm8 0h4v2h-4zm2 3v2.667h-2V12zm3 0v3h-2v-3z\"/>"
},
"awkward-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11M10 9H6v2h4zm8 0h-4v2h4zm-2 5.667V12h-2v2.667zM19 15v-3h-2v3z\"/>"
},
"backtop": {
"body": "<path fill=\"currentColor\" d=\"M4 4h16v2H4zm8 3.586l6.914 6.914l-1.414 1.414l-4.5-4.5V21h-2v-9.586l-4.5 4.5L5.086 14.5z\"/>"
},
"backtop-rectangle": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v20H2zm2 2v16h16V4zm13.5 4h-11V6h11zm-5.5.808l4.596 4.596l-1.414 1.414L13 12.636V18.5h-2v-5.864l-2.182 2.182l-1.414-1.414z\"/>"
},
"backtop-rectangle-filled": {
"body": "<path fill=\"currentColor\" d=\"M22 2H2v20h20zM6.5 8V6h11v2zM12 9l4 5h-3v4.5h-2V14H8z\"/>"
},
"backup": {
"body": "<path fill=\"currentColor\" d=\"M12 4a5.5 5.5 0 0 0-5.49 5.15l-.048.783l-.77.14A4.502 4.502 0 0 0 6.5 19h11a4.5 4.5 0 0 0 .809-8.928l-.771-.14l-.049-.781A5.5 5.5 0 0 0 12 4M4.598 8.283a7.502 7.502 0 0 1 14.804 0A6.502 6.502 0 0 1 17.5 21h-11A6.5 6.5 0 0 1 4.598 8.283M12 7.086l4.414 4.414L15 12.914l-2-2V17h-2v-6.086l-2 2L7.586 11.5z\"/>"
},
"backup-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 2c3.728 0 6.82 2.72 7.402 6.283A6.502 6.502 0 0 1 17.5 21h-11A6.5 6.5 0 0 1 4.598 8.283A7.5 7.5 0 0 1 12 2m3 10.914l1.414-1.414L12 7.086L7.586 11.5L9 12.914l2-2V17h2v-6.086z\"/>"
},
"backward": {
"body": "<path fill=\"currentColor\" d=\"M11.25 4.336v7l7-7v15.328l-7-7v7L3.586 12zM6.414 12l2.836 2.836V9.164zm7 0l2.836 2.836V9.164z\"/>"
},
"backward-filled": {
"body": "<path fill=\"currentColor\" d=\"M11.25 4.336v7l7-7v15.328l-7-7v7L3.586 12z\"/>"
},
"bad-laugh": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m5.769-3.866l3.464 2l-1 1.732l-3.464-2zm11.464 1.732l-3.464 2l-1-1.732l3.464-2zM7 13h10v1a5 5 0 0 1-10 0zm2.17 2a3.001 3.001 0 0 0 5.66 0z\"/>"
},
"bad-laugh-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11m-1.767-12.866l-3.464-2l-1 1.732l3.464 2zm4.536 1.732l3.464-2l-1-1.732l-3.464 2zM11.999 19a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5\"/>"
},
"bamboo-shoot": {
"body": "<path fill=\"currentColor\" d=\"m19.843 4.228l-.211.037a21 21 0 0 0-3.178.866l.53 2.621c.09.45.173.854.238 1.173l1.167.117c.74-1.766 1.136-3.216 1.347-4.244q.064-.312.107-.57M17.5 10.963l-1.24-.124l-7.036-1.13l1.796 10.362c3.124-3.37 5.157-6.49 6.48-9.108M9.029 20.29L7.291 10.265a47 47 0 0 0-4.19 3.64a18 18 0 0 0 3.028 4.037a18.4 18.4 0 0 0 2.9 2.348m1.666-12.37l4.427.71l-.097-.48l-.46-2.268a32.5 32.5 0 0 0-3.87 2.037m11.3-5.844l-.018 1.087l-.005.116a9 9 0 0 1-.036.414c-.037.355-.107.864-.24 1.508c-.265 1.287-.777 3.111-1.767 5.318c-1.532 3.412-4.202 7.726-8.85 12.373l-.478.479l-.623-.267c-.933-.4-3.187-1.672-5.263-3.748C2.64 17.28 1.368 15.026.968 14.092l-.268-.62l.479-.479C3.352 10.82 5.452 9.08 7.422 7.685c2.839-2.01 5.403-3.298 7.52-4.124c1.81-.706 3.29-1.072 4.33-1.263c.52-.095.93-.145 1.216-.173a8 8 0 0 1 .43-.03z\"/>"
},
"bamboo-shoot-filled": {
"body": "<path fill=\"currentColor\" d=\"m21.99 2.442l.005-.366l-.363.004c-.27.002-.54.004-.81.019q-.118.006-.334.025c-.286.028-.696.078-1.216.173a23 23 0 0 0-3.362.906l1.31 5.801l3.07.673c.758-1.83 1.175-3.357 1.405-4.476c.133-.644.203-1.153.24-1.508q.029-.266.036-.414c.016-.278.018-.558.02-.837m-2.543 9.098l-3.273-.717l-7.67-1.618l2.975 13.281c3.96-4.042 6.43-7.817 7.968-10.947M9.52 22.89L6.299 8.506a50 50 0 0 0-5.12 4.486L.7 13.47l.267.623c.4.933 1.672 3.187 3.747 5.262c1.79 1.79 3.712 2.982 4.807 3.533M8.256 7.109l6.81 1.436l-1.04-4.61c-1.704.731-3.653 1.751-5.77 3.174\"/>"
},
"banana": {
"body": "<path fill=\"currentColor\" d=\"M17.487.613v7.15c-.304.593-.731 1.264-1.504 1.847c-.862.648-2.243 1.253-4.556 1.392c-2.553.154-4.66-1.15-5.241-1.717c-.591-.577-1.42-.503-1.96-.064c-.51.415-.739 1.082-.739 1.78c0 .727.071 1.403.264 2.023a1.6 1.6 0 0 0-.818-.102a1.52 1.52 0 0 0-.916.492c-.41.452-.53 1.072-.53 1.586c0 4.238 5.048 9.767 13.323 6.947l.024-.008l.023-.01c4.425-1.759 6.656-4.465 7.589-7.23c.887-2.633.562-5.2.041-6.856V2.279zM8.755 14.625c-1.475-.467-2.242-.918-2.666-1.409c-.359-.417-.564-.975-.597-1.931c1.236.861 3.458 1.87 6.055 1.713c1.607-.096 2.898-.397 3.94-.83c-.619.884-1.27 1.498-1.928 1.913c-1.41.89-3.023.97-4.804.544M20.487 3.721v4.442l.052.153c.45 1.353.754 3.542.011 5.743c-.725 2.15-2.489 4.438-6.409 6.003c-6.968 2.361-10.556-2.177-10.652-4.948c1.404.644 2.984 1.021 4.31 1.339l.453.108c2.11.512 4.343.494 6.375-.79c2.009-1.267 3.636-3.657 4.816-7.476l.044-.144V3.388z\"/>"
},
"banana-filled": {
"body": "<path fill=\"currentColor\" d=\"m18.6 1.501l3.3 1.5v5.5c3.04 3.828-.448 11.442-7.691 13.122C6.965 23.304 1 19.5 1 15.501C1 14 1.738 13.195 3 14s3.098 1.683 4.86 2.072C13.223 17.253 17.919 14.5 18.6 8.5z\"/><path fill=\"currentColor\" d=\"M8.237 15.072C13.11 16.253 17.379 13.5 18 7.5c-.678 1.385-2.064 3.703-7 4c-2.883.173-5.449-.803-6.183-1.152c-.734-.35-1.137.152-.921 1.026s1.26 2.727 4.34 3.697\"/>"
},
"barbecue": {
"body": "<path fill=\"currentColor\" d=\"M13.316 2.796a2.717 2.717 0 0 1 3.842 0l1.316 1.316l1.619-1.619l1.414 1.414l-1.619 1.619l1.316 1.316a2.717 2.717 0 0 1 0 3.842l-1.214 1.214c-.46.46-1.045.72-1.645.782a2.7 2.7 0 0 1-.782 1.646l-1.214 1.213c-.46.46-1.045.722-1.646.782a2.7 2.7 0 0 1-.782 1.646l-1.214 1.214a2.717 2.717 0 0 1-3.842 0L7.55 17.865l-1.618 1.619l-.708-.708a.717.717 0 1 0-.267 1.183l.943-.332l.665 1.887l-.944.332a2.717 2.717 0 1 1 .176-5.056l.339-.34l-1.316-1.315a2.717 2.717 0 0 1 0-3.842l1.214-1.214a2.7 2.7 0 0 1 1.646-.782c.06-.6.321-1.185.781-1.646l1.214-1.214a2.7 2.7 0 0 1 1.646-.781a2.7 2.7 0 0 1 .782-1.646zm.2 3.641l4.047 4.047c.28.28.733.28 1.013 0L19.79 9.27a.717.717 0 0 0 0-1.014L18.474 6.94l-.974.974L16.086 6.5l.974-.974l-1.316-1.316a.717.717 0 0 0-1.014 0l-1.214 1.214a.717.717 0 0 0 0 1.013m2.632 5.46l-4.046-4.045a.717.717 0 0 0-1.013 0L9.875 9.065a.717.717 0 0 0 0 1.014l4.046 4.046c.28.28.734.28 1.014 0l1.213-1.214a.717.717 0 0 0 0-1.013m-3.641 3.643L8.46 11.493a.717.717 0 0 0-1.014 0l-1.214 1.214a.717.717 0 0 0 0 1.014l4.046 4.046c.28.28.734.28 1.014 0l1.214-1.214a.717.717 0 0 0 0-1.014\"/>"
},
"barbecue-filled": {
"body": "<path fill=\"currentColor\" d=\"M13.316 2.796a2.717 2.717 0 0 1 3.842 0l1.316 1.316l1.619-1.619l1.414 1.414l-1.619 1.619l1.316 1.316a2.717 2.717 0 0 1 0 3.842l-1.214 1.214c-.46.46-1.045.72-1.645.782a2.7 2.7 0 0 1-.782 1.646l-1.214 1.213c-.46.46-1.045.722-1.646.782a2.7 2.7 0 0 1-.782 1.646l-1.214 1.214a2.717 2.717 0 0 1-3.842 0L7.55 17.865l-1.618 1.619l-.708-.708a.717.717 0 1 0-.267 1.183l.943-.332l.665 1.887l-.944.332a2.717 2.717 0 1 1 .176-5.056l.339-.34l-1.316-1.315a2.717 2.717 0 0 1 0-3.842l1.214-1.214a2.7 2.7 0 0 1 1.646-.782c.06-.6.321-1.185.781-1.646l1.214-1.214a2.7 2.7 0 0 1 1.646-.781a2.7 2.7 0 0 1 .782-1.646zm.2 3.641l4.047 4.047c.28.28.733.28 1.013 0L19.79 9.27a.717.717 0 0 0 0-1.014L18.474 6.94l-.974.974L16.086 6.5l.974-.974l-1.316-1.316a.717.717 0 0 0-1.014 0l-1.214 1.214a.717.717 0 0 0 0 1.013m-1.01 9.103L8.46 11.493a.717.717 0 0 0-1.013 0l-1.214 1.214a.717.717 0 0 0 0 1.014l4.046 4.046c.28.28.734.28 1.014 0l1.214-1.214a.717.717 0 0 0 0-1.014\"/>"
},
"barcode": {
"body": "<path fill=\"currentColor\" d=\"M2 2h3v19H2zm6.75 0v19h-2V2zm1.75 0h3v19h-3zm6.75 0v19h-2V2zM19 2h3v19h-3z\"/>"
},
"barcode-1": {
"body": "<path fill=\"currentColor\" d=\"M2 2h7v2H4v5H2zm13 0h7v7h-2V4h-5zM9 8v8H7V8zm4 0v8h-2V8zm4 0v8h-2V8zM4 15v5h5v2H2v-7zm18 0v7h-7v-2h5v-5z\"/>"
},
"base-station": {
"body": "<path fill=\"currentColor\" d=\"m6.344 3.93l-.707.707a9 9 0 0 0 0 12.728l.707.707l-1.414 1.414l-.707-.707c-4.296-4.296-4.296-11.26 0-15.557l.707-.707zM19.07 2.515l.708.707c4.295 4.296 4.295 11.261 0 15.557l-.707.707l-1.415-1.414l.707-.707a9 9 0 0 0 0-12.728l-.707-.707zM9.526 7.111l-.707.707a4.5 4.5 0 0 0 0 6.364l.707.707l-1.414 1.415l-.708-.707a6.5 6.5 0 0 1 0-9.193l.708-.707zm6.363-1.414l.707.707a6.5 6.5 0 0 1 0 9.193l-.707.707l-1.414-1.415l.707-.707a4.5 4.5 0 0 0 0-6.364l-.707-.707zM10 11a2 2 0 1 1 3 1.732V23h-2V12.732A2 2 0 0 1 10 11\"/>"
},
"battery": {
"body": "<path fill=\"currentColor\" d=\"M0 5h21v14H0zm2 2v10h17V7zm22 2v6h-2V9z\"/>"
},
"battery-add": {
"body": "<path fill=\"currentColor\" d=\"M8 .5h8V3h5v20.5H3V3h5zm2 2V5H5v16.5h14V5h-5V2.5zm3 7v3h3v2h-3v3h-2v-3H8v-2h3v-3z\"/>"
},
"battery-add-filled": {
"body": "<path fill=\"currentColor\" d=\"M16 .5H8V3H3v20.5h18V3h-5zm0 14h-3v3h-2v-3H8v-2h3v-3h2v3h3z\"/>"
},
"battery-charging": {
"body": "<path fill=\"currentColor\" d=\"M12.376 5.172L8.79 11h6l-5.462 8.876l-1.704-1.048L11.21 13h-6l5.462-8.876zM0 5h7.5v2H2v10h4v2H0zm14 0h7v14h-8v-2h6V7h-5zm10 4v6h-2V9z\"/>"
},
"battery-charging-filled": {
"body": "<path fill=\"currentColor\" d=\"m12.375 5.172l-1.703-1.048L5.21 13h6l-3.586 5.828l1.703 1.048L14.79 11h-6z\"/><path fill=\"currentColor\" d=\"M0 5h8.372l-5.846 9.5h6L5.756 19H0zm21 14h-9.373l5.846-9.5h-6l2.77-4.5H21zm3-10v6h-2V9z\"/>"
},
"battery-filled": {
"body": "<path fill=\"currentColor\" d=\"M0 5h21v14H0zm24 4v6h-2V9z\"/>"
},
"battery-low": {
"body": "<path fill=\"currentColor\" d=\"M0 5h21v14H0zm2 2v10h17V7zm4 2v6H4V9zm18 0v6h-2V9z\"/>"
},
"battery-low-filled": {
"body": "<path fill=\"currentColor\" d=\"M21 5H0v14h21zM6 15H4V9h2zm18 0V9h-2v6z\"/>"
},
"bean": {
"body": "<path fill=\"currentColor\" d=\"M12.164 2.636C13.166 2.118 14.28 2 15.56 2c1.908 0 3.603.782 4.777 2.173c1.169 1.385 1.77 3.306 1.646 5.514c-.218 3.917-1.81 7.018-4.259 9.132C15.288 20.923 12.063 22 8.645 22a8.4 8.4 0 0 1-5.165-1.82C2.042 19.029 1 17.34 1 15.317c0-1.39.34-2.598 1.07-3.615c.722-1.005 1.767-1.742 3.041-2.304q.516-.227 1.087-.42c1.353-.46 1.88-.817 2.137-1.34c.457-.935.878-1.727 1.289-2.392c.755-1.22 1.526-2.085 2.54-2.61m-.433 3.05c1.702 2.194 1.298 4.748-.243 6.224a4.1 4.1 0 0 1-3.228 1.142c-1.045-.098-2.074-.596-2.986-1.508c-.714.392-1.227.832-1.58 1.324C3.25 13.486 3 14.265 3 15.316c0 1.29.658 2.444 1.731 3.304A6.4 6.4 0 0 0 8.645 20c3.006 0 5.748-.945 7.773-2.694c2.014-1.74 3.38-4.323 3.57-7.73c.099-1.785-.39-3.18-1.178-4.113C18.028 4.537 16.899 4 15.56 4c-1.193 0-1.912.12-2.479.412c-.438.227-.864.599-1.35 1.274M7.373 10.68c.386.238.752.35 1.075.38a2.1 2.1 0 0 0 1.657-.595c.646-.619 1.006-1.695.479-2.85q-.217.418-.453.9c-.563 1.15-1.603 1.73-2.758 2.165\"/>"
},
"bean-filled": {
"body": "<path fill=\"currentColor\" d=\"M17.55 2.174c-1.628-.657-3.088-.668-4.348-.203c-1.238.456-2.18 1.332-2.873 2.271c-.485.658-.786 1.397-1.035 2.007l-.11.27c-.29.695-.561 1.246-1.024 1.708c-.456.456-1.003.727-1.7 1.018l-.271.113c-.611.25-1.35.553-2.01 1.035c-.961.703-1.852 1.648-2.309 2.89c-.465 1.266-.437 2.724.24 4.346c1.178 2.817 3.988 4.446 7.085 4.69c3.113.246 6.61-.884 9.392-3.665c2.946-2.947 4.105-6.457 3.815-9.558c-.29-3.09-2.035-5.786-4.852-6.922m-10.782 8.86a3 3 0 0 1-.193-.212l.164-.068l.301-.124c.723-.303 1.505-.666 2.181-1.342c.683-.683 1.046-1.468 1.347-2.192l.123-.299l.089-.214q.12.097.23.208a3 3 0 1 1-4.242 4.243\"/>"
},
"beer": {
"body": "<path fill=\"currentColor\" d=\"M5.152 4c.52-1.695 2.316-3 4.348-3c.988 0 1.915.316 2.664.77A5 5 0 0 1 13.55 3h.95A3.5 3.5 0 0 1 18 6.5v.014c0 .237 0 .863-.117 1.486H19c.497 0 1.054.126 1.474.56c.415.428.526.98.526 1.457V18c0 .476-.111 1.031-.535 1.457c-.424.428-.981.543-1.465.543h-2v1c0 .476-.111 1.031-.535 1.457c-.424.428-.981.543-1.465.543H6c-.484 0-1.04-.115-1.466-.543C4.111 22.032 4 21.476 4 21v-5.17A3 3 0 0 1 2 13V7a3 3 0 0 1 3-3zM6 15.83V21h9V10H8v3a3 3 0 0 1-2 2.83M17 10v8h2v-8zm-1.185-2q.04-.091.084-.28c.098-.441.101-.963.101-1.22A1.5 1.5 0 0 0 14.5 5h-2.118l-.276-.553c-.147-.294-.483-.666-.98-.967C10.64 3.184 10.067 3 9.5 3C7.973 3 7 4.154 7 5v1H5a1 1 0 0 0-1 1v6a1 1 0 1 0 2 0V8z\"/>"
},
"beer-filled": {
"body": "<path fill=\"currentColor\" d=\"M5.652 4C6.172 2.305 7.968 1 10 1c.988 0 1.915.316 2.664.77A5 5 0 0 1 14.05 3H15a3.5 3.5 0 0 1 3.5 3.5v.014c0 .237 0 .863-.117 1.486H19.5c.497 0 1.054.126 1.474.56c.415.428.526.98.526 1.457V18c0 .476-.111 1.031-.535 1.457c-.424.428-.981.543-1.465.543h-2v1c0 .476-.111 1.031-.535 1.457c-.424.428-.981.543-1.465.543h-9c-.484 0-1.04-.115-1.466-.543c-.423-.426-.534-.981-.534-1.457v-5.17a3 3 0 0 1-2-2.83V7a3 3 0 0 1 3-3zM17.5 10v8h2v-8zm-1.185-2q.04-.091.084-.28c.098-.441.101-.963.101-1.22A1.5 1.5 0 0 0 15 5h-2.118l-.276-.553c-.147-.294-.483-.666-.98-.967C11.14 3.184 10.567 3 10 3C8.473 3 7.5 4.154 7.5 5v1h-2a1 1 0 0 0-1 1v6a1 1 0 1 0 2 0V8z\"/>"
},
"beta": {
"body": "<path fill=\"currentColor\" d=\"M20 2.491v18.51H4v-2h14v-3.058L3.49 9.476zm-2 11.263V5.509L8.51 9.524z\"/>"
},
"bifurcate": {
"body": "<path fill=\"currentColor\" d=\"M6 4a1 1 0 1 0 0 2a1 1 0 0 0 0-2M3 5a3 3 0 1 1 4.086 2.797c.128.667.412 1.506.934 2.256C8.752 11.103 9.958 12 12 12s3.248-.897 3.98-1.947a6 6 0 0 0 .934-2.256a3.001 3.001 0 1 1 2.019.055a8 8 0 0 1-1.312 3.345c-.934 1.34-2.421 2.478-4.621 2.744v2.23a3.001 3.001 0 1 1-2 0v-2.23c-2.2-.266-3.687-1.405-4.62-2.744a8 8 0 0 1-1.313-3.345A3 3 0 0 1 3 5m15-1a1 1 0 1 0 0 2a1 1 0 0 0 0-2m-6 14a1 1 0 1 0 0 2a1 1 0 0 0 0-2\"/>"
},
"bifurcate-filled": {
"body": "<path fill=\"currentColor\" d=\"M3 5a3 3 0 1 1 4.086 2.797c.128.667.412 1.506.934 2.256C8.752 11.103 9.958 12 12 12s3.248-.897 3.98-1.947a6 6 0 0 0 .934-2.256a3.001 3.001 0 1 1 2.019.055a8 8 0 0 1-1.312 3.345c-.934 1.34-2.421 2.478-4.621 2.744v2.23a3.001 3.001 0 1 1-2 0v-2.23c-2.2-.266-3.687-1.405-4.62-2.744a8 8 0 0 1-1.313-3.345A3 3 0 0 1 3 5\"/>"
},
"bill": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v2h-2v18.08l-1.625-1.3l-1.841-1.472l-1.62 1.44l-.664.59l-.664-.59L12 19.337l-1.586 1.41l-.664.59l-.664-.59l-1.62-1.44l-1.841 1.473L4 22.08V4H2zm4 2v13.92l.875-.7l.659-.528l.63.56l1.586 1.41l1.586-1.41l.664-.59l.664.59l1.586 1.41l1.586-1.41l.63-.56l.659.527l.875.7V4zm2 3h8v2H8zm2 4H9v2h6v-2z\"/>"
},
"bill-filled": {
"body": "<path fill=\"currentColor\" d=\"M2 2v2h2v18.08l3.466-2.772l2.284 2.03l2.25-2l2.25 2l2.284-2.03L20 22.08V4h2V2zm14 7H8V7h8zm-7 4v-2h6v2z\"/>"
},
"blockchain": {
"body": "<path fill=\"currentColor\" d=\"M2 2h7v2.5h6V2h7v7h-2.5v6H22v7h-7v-2.5H9V22H2v-7h2.5V9H2zm5 5V4H4v3zm-.5 2v6H9v2.5h6V15h2.5V9H15V6.5H9V9zM17 17v3h3v-3zM7 17H4v3h3zM17 4v3h3V4z\"/>",
"hidden": true
},
"bluetooth": {
"body": "<path fill=\"currentColor\" d=\"m11 .255l7.453 6.707L13.414 12l5.039 5.038L11 23.745v-9.33l-4 4L5.586 17l5-5l-5-5L7 5.586l4 4zm2 14.16v4.84l2.548-2.293zm0-4.83l2.548-2.547L13 4.745z\"/>"
},
"bone": {
"body": "<path fill=\"currentColor\" d=\"M17.5 3a1.5 1.5 0 0 0-1.318 2.217l.358.657L5.874 16.54l-.657-.358a1.5 1.5 0 1 0-.993 2.793l.676.125l.125.676a1.5 1.5 0 1 0 2.793-.993l-.358-.657L18.126 7.46l.657.358a1.5 1.5 0 1 0 .993-2.793L19.1 4.9l-.125-.676A1.5 1.5 0 0 0 17.5 3M14 4.5a3.5 3.5 0 0 1 6.764-1.264a3.5 3.5 0 0 1-2.218 6.632l-8.678 8.678a3.5 3.5 0 0 1-6.633 2.218a3.5 3.5 0 0 1 2.219-6.632l8.678-8.678A3.5 3.5 0 0 1 14 4.5\"/>"
},
"bone-filled": {
"body": "<path fill=\"currentColor\" d=\"M17.5 1a3.5 3.5 0 0 0-3.177 4.97L5.97 14.323a3.5 3.5 0 1 0-2.735 6.441a3.5 3.5 0 1 0 6.442-2.734l8.353-8.353a3.5 3.5 0 1 0 2.734-6.441A3.5 3.5 0 0 0 17.5 1\"/>"
},
"book": {
"body": "<path fill=\"currentColor\" d=\"M3 6a4 4 0 0 1 4-4h14v20H7a4 4 0 0 1-4-4zm2 8.535A4 4 0 0 1 7 14h12V4H7a2 2 0 0 0-2 2zM19 16H7a2 2 0 1 0 0 4h12zM10 6h7v2h-7z\"/>"
},
"book-filled": {
"body": "<path fill=\"currentColor\" d=\"M7 2a4 4 0 0 0-4 4v12a4 4 0 0 0 4 4h14V2zm4 3h7v2h-7zM5 18a2 2 0 0 1 2-2h12v4H7a2 2 0 0 1-2-2\"/>"
},
"book-open": {
"body": "<path fill=\"currentColor\" d=\"M1 2h8a4 4 0 0 1 3 1.354A4 4 0 0 1 15 2h8v19h-1c-2.944 0-5.14.245-6.586.486c-.723.12-1.26.24-1.609.328a11 11 0 0 0-.472.13l-.017.005h-.002l-.152.051h-2.324l-.152-.05l-.001-.001h-.001l-.017-.006l-.088-.026a11 11 0 0 0-.384-.103a21 21 0 0 0-1.61-.328C7.14 21.246 4.946 21 2 21H1zm2 2v15.01c2.563.047 4.535.274 5.914.504c.777.13 1.366.26 1.766.36q.188.047.32.084V6a2 2 0 0 0-2-2zm10 2v13.958q.132-.037.32-.084c.4-.1.989-.23 1.766-.36c1.379-.23 3.35-.457 5.914-.505V4h-6a2 2 0 0 0-2 2m2 2h4v2h-4zm0 3h4v2h-4z\"/>"
},
"book-open-filled": {
"body": "<path fill=\"currentColor\" d=\"M9 2H1v19h1c2.944 0 5.14.245 6.586.486c.723.12 1.26.24 1.609.328a11 11 0 0 1 .472.13l.017.005h.002l.152.051h2.324l.152-.05l.002-.001l.017-.006l.088-.026q.122-.037.384-.103c.35-.087.886-.207 1.61-.328C16.86 21.246 19.054 21 22 21h1V2h-8a4 4 0 0 0-3 1.354A4 4 0 0 0 9 2M3 19.01V4h6a2 2 0 0 1 2 2v13.958l-.32-.084c-.4-.1-.989-.23-1.766-.36c-1.379-.23-3.35-.457-5.914-.505M19 10h-4V8h4zm0 3h-4v-2h4z\"/>"
},
"book-unknown": {
"body": "<path fill=\"currentColor\" d=\"M1 2h8a4 4 0 0 1 3 1.354A4 4 0 0 1 15 2h8v19h-1c-2.944 0-5.14.245-6.586.486c-.723.12-1.26.24-1.609.328a11 11 0 0 0-.472.13l-.017.005h-.002l-.152.051h-2.324l-.152-.05l-.001-.001h-.001l-.017-.006l-.088-.026a11 11 0 0 0-.384-.103a21 21 0 0 0-1.61-.328C7.14 21.246 4.946 21 2 21H1zm2 2v15.01c2.563.047 4.535.274 5.914.504c.777.13 1.366.26 1.766.36q.188.047.32.084V6a2 2 0 0 0-2-2zm10 2v13.958q.132-.037.32-.084c.4-.1.989-.23 1.766-.36c1.379-.23 3.35-.457 5.914-.505V4h-6a2 2 0 0 0-2 2\"/><path fill=\"currentColor\" d=\"M17 9.5a1 1 0 0 0-1 1v1h-2v-1a3 3 0 1 1 6 0c0 .676-.172 1.246-.474 1.71a2.96 2.96 0 0 1-1.029.95a4 4 0 0 1-.494.238v.352h-2v-1c0-.424.245-.687.361-.79c.12-.105.24-.165.296-.192c.107-.05.233-.094.309-.12l.018-.007c.19-.066.36-.127.52-.218a.96.96 0 0 0 .343-.305c.072-.11.15-.294.15-.618a1 1 0 0 0-1-1m-1 5h2.004v2.004H16z\"/>"
},
"book-unknown-filled": {
"body": "<path fill=\"currentColor\" d=\"M9 2H1v19h1c2.944 0 5.14.245 6.586.486c.723.12 1.26.24 1.609.328a11 11 0 0 1 .472.13l.017.005h.002l.152.051h2.324l.152-.05l.002-.001l.017-.006l.088-.026q.122-.037.384-.103c.35-.087.886-.207 1.61-.328C16.86 21.246 19.054 21 22 21h1V2h-8a4 4 0 0 0-3 1.354A4 4 0 0 0 9 2M3 19.01V4h6a2 2 0 0 1 2 2v13.958l-.32-.084c-.4-.1-.989-.23-1.766-.36c-1.379-.23-3.35-.457-5.914-.505m13-8.51v1h-2v-1a3 3 0 1 1 6 0c0 .676-.172 1.246-.474 1.71a2.96 2.96 0 0 1-1.029.95a4 4 0 0 1-.494.238v.352h-2v-1c0-.424.245-.687.361-.79c.12-.105.24-.165.296-.192c.107-.05.233-.094.309-.12l.018-.007c.19-.066.36-.127.52-.218a.96.96 0 0 0 .343-.305c.072-.11.15-.294.15-.618a1 1 0 1 0-2 0m2.004 4v2.004H16V14.5z\"/>"
},
"bookmark": {
"body": "<path fill=\"currentColor\" d=\"M4 3h16v19.943l-8-5.714l-8 5.714zm2 2v14.057l6-4.286l6 4.286V5z\"/>"
},
"bookmark-add": {
"body": "<path fill=\"currentColor\" d=\"M20 0v3h3v2h-3v3h-2V5h-3V3h3V0zM4 3h9v2H6v14.057l6-4.286l6 4.286V10h2v12.943l-8-5.714l-8 5.714z\"/>"
},
"bookmark-add-filled": {
"body": "<path fill=\"currentColor\" d=\"M20 3V0h-2v3h-3v2h3v3h2V5h3V3z\"/><path fill=\"currentColor\" d=\"M13.5 4q0-.513.09-1H4v19.943l8-5.714l8 5.714V9.41q-.487.09-1 .091A5.5 5.5 0 0 1 13.5 4\"/>"
},
"bookmark-checked": {
"body": "<path fill=\"currentColor\" d=\"M22.596 2.94L16.94 8.595L13.405 5.06l1.414-1.415l2.121 2.122l4.243-4.243zM4 3h8v2H6v14.057l6-4.286l6 4.286V10h2v12.943l-8-5.714l-8 5.714z\"/>"
},
"bookmark-checked-filled": {
"body": "<path fill=\"currentColor\" d=\"m13.403 5.06l3.536 3.536l5.657-5.657l-1.415-1.414l-4.242 4.243l-2.121-2.122z\"/><path fill=\"currentColor\" d=\"M12.5 5c0-.706.133-1.38.375-2H4v19.943l8-5.714l8 5.714V10.125A5.5 5.5 0 0 1 12.5 5\"/>"
},
"bookmark-double": {
"body": "<path fill=\"currentColor\" d=\"m23 0l.003 18.419L21 16.415V2.001l-10.999.001v-2zM3 4h16v19.943l-8-5.714l-8 5.714zm2 2v14.057l6-4.286l6 4.286V6z\"/>"
},
"bookmark-double-filled": {
"body": "<path fill=\"currentColor\" d=\"M23.003 18.419L23 0L10.001.002v2H21v14.413z\"/><path fill=\"currentColor\" d=\"M19 4H3v19.943l8-5.714l8 5.714z\"/>"
},
"bookmark-filled": {
"body": "<path fill=\"currentColor\" d=\"M4 3h16v19.943l-8-5.714l-8 5.714z\"/>"
},
"bookmark-minus": {
"body": "<path fill=\"currentColor\" d=\"M4 3h9v2H6v14.057l6-4.286l6 4.286V7h2v15.943l-8-5.714l-8 5.714zm11 0h8v2h-8z\"/>"
},
"bookmark-minus-filled": {
"body": "<path fill=\"currentColor\" d=\"M13.5 4q0-.513.09-1H4v19.943l8-5.714l8 5.714V9.41q-.487.09-1 .091A5.5 5.5 0 0 1 13.5 4\"/><path fill=\"currentColor\" d=\"M23 3h-8v2h8z\"/>"
},
"braces": {
"body": "<path fill=\"currentColor\" d=\"M2.5 17.6A3.4 3.4 0 0 0 5.9 21H7v-2H5.9a1.4 1.4 0 0 1-1.4-1.4V14c0-.768-.288-1.47-.764-2c.476-.53.764-1.232.764-2V6.4A1.4 1.4 0 0 1 5.9 5H7V3H5.9a3.4 3.4 0 0 0-3.4 3.4V10a1 1 0 0 1-1 1H.4v2h1.1a1 1 0 0 1 1 1zM17 21h1.1a3.4 3.4 0 0 0 3.4-3.4V14a1 1 0 0 1 1-1h1.1v-2h-1.1a1 1 0 0 1-1-1V6.4A3.4 3.4 0 0 0 18.1 3H17v2h1.1a1.4 1.4 0 0 1 1.4 1.4V10c0 .768.288 1.47.764 2a3 3 0 0 0-.764 2v3.6a1.4 1.4 0 0 1-1.4 1.4H17z\"/>"
},
"brackets": {
"body": "<path fill=\"currentColor\" d=\"M2 3.5h5v2H4v13h3v2H2zm15 0h5v17h-5v-2h3v-13h-3z\"/>"
},
"bread": {
"body": "<path fill=\"currentColor\" d=\"M5.023 11.278c-.051.463.064.86.387 1.183l3.776 3.776l-1.414 1.414l-3.627-3.627l-.03.082c-.558 1.52-.036 3.24 1.175 4.527c1.213 1.289 2.943 1.955 4.538 1.55c2.124-.538 4.425-2.026 6.429-3.946c1.92-2.004 3.407-4.305 3.946-6.429c.405-1.595-.261-3.325-1.55-4.538c-1.287-1.211-3.006-1.733-4.527-1.176l-.082.03l3.627 3.628l-1.414 1.414L12.48 5.39c-.323-.323-.72-.438-1.183-.387c-.489.054-1.03.297-1.49.677c-.463.383-.757.832-.853 1.209c-.085.328-.031.6.23.863l4.243 4.242l-1.414 1.414l-4.242-4.242c-.262-.262-.535-.316-.863-.231c-.377.096-.826.39-1.21.854c-.379.46-.622 1-.676 1.489m1.906-4.369a3 3 0 0 1 .088-.518c.229-.888.82-1.676 1.518-2.253c.702-.58 1.599-1.02 2.544-1.123c.31-.035.627-.032.941.014c.146-.167.312-.285.445-.368c.267-.167.604-.31.973-.445c2.413-.883 4.904.015 6.586 1.598c1.681 1.582 2.743 4.022 2.118 6.486c-.656 2.587-2.395 5.19-4.457 7.337l-.014.014l-.014.014c-2.147 2.062-4.75 3.8-7.337 4.457c-2.464.625-4.904-.437-6.486-2.118c-1.583-1.682-2.481-4.173-1.598-6.586c.136-.37.278-.706.445-.973c.083-.133.201-.299.368-.445a3.7 3.7 0 0 1-.014-.941c.104-.945.543-1.842 1.123-2.544c.577-.698 1.365-1.29 2.253-1.518a3 3 0 0 1 .518-.088\"/>"
},
"bread-filled": {
"body": "<path fill=\"currentColor\" d=\"M2.436 13.003c-.273.22-.386.508-.432.72c-.512 2.362.233 4.645 1.884 6.353c1.582 1.637 3.987 2.66 6.415 2.043c2.587-.656 5.19-2.395 7.337-4.456l.014-.015l.014-.014c2.062-2.147 3.8-4.75 4.457-7.336c.616-2.428-.406-4.833-2.043-6.415c-1.444-1.396-3.29-2.18-5.314-2.038c-.752.053-1.17.58-1.363.913l3.9 3.9l-1.415 1.414l-4.519-4.519a3.34 3.34 0 0 0-2.126.172c-.509.216-.95.547-1.24.919c-.142.18-.293.428-.356.725c-.066.308-.044.76.3 1.125l4.76 4.76l-1.415 1.414L6.536 7.91a1.24 1.24 0 0 0-1.129-.3a1.8 1.8 0 0 0-.722.356c-.371.291-.701.73-.918 1.239a3.34 3.34 0 0 0-.172 2.128l4.517 4.517l-1.414 1.414z\"/>"
},
"bridge": {
"body": "<path fill=\"currentColor\" d=\"M4 2v3.413q.172.086.406.192c.61.27 1.547.62 2.81.9C8.482 6.786 10.076 7 12 7s3.52-.214 4.783-.495c1.264-.28 2.2-.63 2.81-.9q.236-.106.407-.192V2h2v13h1v2h-1v5h-2v-5H4v5H2v-5H1v-2h1V2zm0 13h2V8.267a17 17 0 0 1-2-.662zm4-6.31V15h3V8.982a24 24 0 0 1-3-.291m5 .292V15h3V8.69c-.893.145-1.893.251-3 .292m5-.715V15h2V7.605c-.531.215-1.198.449-2 .662m2.446-3.1l.003-.002l-.002.002z\"/>"
},
"bridge-1": {
"body": "<path fill=\"currentColor\" d=\"M1 1.999h6V5.53c.208.154.524.363.947.575c.878.438 2.226.894 4.053.894s3.175-.456 4.053-.894c.423-.212.739-.42.947-.575V2h6v20h-6v-5H7v5H1zm6 13h4v-6.04c-1.686-.134-3.004-.594-3.947-1.066L7 7.867zm6-6.04V15h4V7.867l-.053.026c-.943.472-2.26.932-3.947 1.067M3 4v16h2V4zm16 0v16h2V4z\"/>"
},
"bridge-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M1 1.999h6V5.53c.208.154.524.363.947.575c.878.438 2.226.894 4.053.894s3.175-.456 4.053-.894c.423-.212.739-.42.947-.575V2h6v20h-6v-5H7v5H1zm6 13h4v-6.04c-1.686-.134-3.004-.594-3.947-1.066L7 7.867zm6-6.04V15h4V7.867l-.053.026c-.943.472-2.26.932-3.947 1.067\"/>"
},
"bridge-2": {
"body": "<path fill=\"currentColor\" d=\"M8.298 6.49c-1.208 1.098-2.383 2.927-3.35 5.826c-.082.248-.168.524-.26.817c-.244.783-.525 1.684-.87 2.47c-.39.882-.944 1.836-1.818 2.433V19h6v-5a4 4 0 0 1 8 0v5h6v-.964c-.874-.597-1.429-1.55-1.817-2.433c-.346-.786-.627-1.687-.872-2.47c-.09-.293-.177-.57-.26-.817c-.966-2.9-2.141-4.728-3.349-5.826C14.515 5.41 13.256 5 12 5s-2.515.41-3.702 1.49M6.952 5.01C8.515 3.59 10.256 3 12 3s3.485.59 5.048 2.01c1.542 1.402 2.867 3.573 3.9 6.674q.162.487.31.969c.232.743.458 1.468.756 2.144c.428.974.877 1.523 1.368 1.726l.618.255V21H14v-7a2 2 0 1 0-4 0v7H0v-4.222l.618-.255c.491-.203.94-.752 1.368-1.726c.298-.676.524-1.401.756-2.144q.148-.481.31-.97c1.033-3.1 2.358-5.27 3.9-6.673\"/>"
},
"bridge-2-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 3c-1.744 0-3.485.59-5.048 2.01c-1.542 1.402-2.867 3.573-3.9 6.674q-.162.487-.31.969c-.232.743-.458 1.468-.756 2.144c-.428.974-.877 1.523-1.368 1.726L0 16.778V21h9v-7a3 3 0 1 1 6 0v7h9v-4.222l-.618-.255c-.491-.203-.94-.752-1.369-1.726c-.297-.676-.523-1.401-.755-2.144q-.148-.481-.31-.97c-1.033-3.1-2.358-5.27-3.9-6.673C15.485 3.59 13.744 3 12 3\"/>"
},
"bridge-3": {
"body": "<path fill=\"currentColor\" d=\"M4 2v3.465l7 4.667V2h2v8.132l7-4.667V2h2v13h1v2h-1v5h-2v-5H4v5H2v-5H1v-2h1V2zm0 13h7v-2.465L4 7.87zm9 0h7V7.87l-7 4.666z\"/>"
},
"bridge-4": {
"body": "<path fill=\"currentColor\" d=\"M23 2.001v2h-1.18L21 8.098V22h-2V7.901l.78-3.9h-3.56L17 7.9V22h-2V8.099L14.18 4H9.82L9 8.1V22H7V7.902l.78-3.9H4.22L5 7.9V22H3V8.099L2.18 4L1 4.001v-2z\"/>"
},
"bridge-5": {
"body": "<path fill=\"currentColor\" d=\"M0 3h24v18.001h-6v-7.603l-.14-.132a8.4 8.4 0 0 0-1.206-.92A8.64 8.64 0 0 0 12 11c-2.02 0-3.586.671-4.654 1.345A8.4 8.4 0 0 0 6 13.398V21H0zm6 7.836q.134-.09.279-.181A10.64 10.64 0 0 1 12 9a10.64 10.64 0 0 1 6 1.836V5.001h-.625L12 5H6zm14-5.835v14h2v-14zM4 5H2v14h2z\"/>"
},
"bridge-5-filled": {
"body": "<path fill=\"currentColor\" d=\"M0 3h24v18.001h-6v-7.603l-.14-.132a8.4 8.4 0 0 0-1.206-.92A8.64 8.64 0 0 0 12 11c-2.02 0-3.586.671-4.654 1.345A8.4 8.4 0 0 0 6 13.398V21H0zm6 7.836q.134-.09.279-.181A10.64 10.64 0 0 1 12 9a10.64 10.64 0 0 1 6 1.836V5.001L6 5z\"/>"
},
"bridge-6": {
"body": "<path fill=\"currentColor\" d=\"m1 1.754l11 9.9l11-9.9V21h-2v-7h-2v7h-2v-7H7v7H5v-7H3v7H1zM3 12h6.394L3 6.245zm11.606 0h6.393L21 6.245z\"/>"
},
"bridge-6-filled": {
"body": "<path fill=\"currentColor\" d=\"m23 1.754l-11 9.9l-11-9.9V21h2v-7h2v7h2v-7h10v7h2v-7h2v7h2z\"/>"
},
"brightness": {
"body": "<path fill=\"currentColor\" d=\"m12 .086l3.49 3.49h4.935V8.51l3.49 3.49l-3.49 3.49v4.934H15.49L12 23.914l-3.49-3.49H3.577V15.49L.086 12l3.49-3.49V3.575H8.51zm0 2.828L9.34 5.575H5.576V9.34L2.914 12l2.662 2.662v3.763h3.763L12 21.086l2.661-2.661h3.764V14.66l2.66-2.66l-2.66-2.661V5.575H14.66zM12 8a4 4 0 1 0 0 8a4 4 0 0 0 0-8m-6 4a6 6 0 1 1 12 0a6 6 0 0 1-12 0\"/>"
},
"brightness-1": {
"body": "<path fill=\"currentColor\" d=\"m12 .086l3.49 3.49h4.935V8.51l3.49 3.49l-3.49 3.49v4.934H15.49L12 23.914l-3.49-3.49H3.577V15.49L.086 12l3.49-3.49V3.575H8.51zm0 2.828L9.34 5.575H5.576V9.34L2.914 12l2.662 2.662v3.763h3.763L12 21.086l2.661-2.661h3.764V14.66l2.66-2.66l-2.66-2.661V5.575H14.66zM12.065 8A9 9 0 0 1 13 12a9 9 0 0 1-.936 4a4 4 0 0 0 0-8m-1.939-1.7a6 6 0 1 1 0 11.402l-1.314-.432l.823-1.113A6.96 6.96 0 0 0 11 12a6.96 6.96 0 0 0-1.367-4.157L8.81 6.731z\"/>"
},
"brightness-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M15.49 3.575L12 .085l-3.49 3.49H3.577V8.51L.086 12l3.49 3.49v4.934H8.51l3.49 3.49l3.489-3.49h4.935V15.49l3.49-3.49l-3.49-3.49V3.575zM12 17c-.63 0-1.232-.116-1.787-.33A6.97 6.97 0 0 0 11.999 12a6.97 6.97 0 0 0-1.786-4.67A5 5 0 1 1 12 17\"/>"
},
"brightness-filled": {
"body": "<path fill=\"currentColor\" d=\"M15.49 3.575L12 .085l-3.49 3.49H3.577V8.51L.086 12l3.49 3.49v4.934H8.51l3.49 3.49l3.489-3.49h4.935V15.49l3.49-3.49l-3.49-3.49V3.575zM12 7a5 5 0 1 1 0 10a5 5 0 0 1 0-10\"/>"
},
"broccoli": {
"body": "<path fill=\"currentColor\" d=\"M12.616 4.17c1.303-1.124 3.213-1.07 4.373.091a3.11 3.11 0 0 1 .893 2.46a5 5 0 0 0-.374.047l-.029.005l-.01.002h-.003l-.003.002l-.981.194l.388 1.962l.977-.194h.005l.04-.007a2.6 2.6 0 0 1 .662-.01a3.07 3.07 0 0 1 1.746.87c1.218 1.219 1.218 3.261-.084 4.563a3.4 3.4 0 0 1-.971.68l-.805.373l.274.844c.283.868.071 1.89-.653 2.615c-1.023 1.023-2.62 1.017-3.566.07c-.377-.376-.614-.896-.683-1.471c-.08-.668.074-1.351.43-1.876l.464-.684l-1.832-1.832l-.437-1.31l-1.311-.438l-1.016-1.016l-.62.261c-.873.369-1.803.278-2.628-.222a3.8 3.8 0 0 1-.704-.556C4.94 8.375 4.94 6.333 6.242 5.03c1.21-1.21 3.11-1.195 4.387-.06q.067.06.132.125c.723.722.856 1.32.954 2.083l.128.991l1.983-.254l-.127-.992c-.108-.843-.296-1.771-1.083-2.753M19.865 7a5.11 5.11 0 0 0-1.462-4.153c-2.008-2.009-5.256-1.963-7.307.002c-1.956-1.142-4.52-.982-6.268.767c-2.045 2.045-2.12 5.354-.084 7.39a6 6 0 0 0 .578.509a6 6 0 0 1-.141.624a15 15 0 0 1-.649 1.813c-.569 1.339-1.257 2.53-1.724 2.998l-.707.707L6.343 21.9l.707-.707a18.5 18.5 0 0 1 2.458-2.001c.567-.38 1.129-.692 1.626-.874c.378-.139.643-.174.816-.164a4.4 4.4 0 0 0 1.13 1.997c1.765 1.766 4.629 1.697 6.395-.07a4.6 4.6 0 0 0 1.324-3.83a5.4 5.4 0 0 0 .831-.682c2.046-2.045 2.12-5.354.084-7.39a5.05 5.05 0 0 0-1.849-1.18m-8.014 9.152c-.495.008-.979.132-1.405.288c-.706.259-1.416.666-2.05 1.09a20 20 0 0 0-2.026 1.568l-1.514-1.514c.555-.799 1.097-1.86 1.517-2.85c.3-.705.56-1.425.736-2.065l.062-.234c.788.21 1.62.22 2.44.004l.268.268l-1.414 1.414l1.414 1.415l1.414-1.415l.887.888a4.8 4.8 0 0 0-.33 1.143\"/>"
},
"broccoli-filled": {
"body": "<path fill=\"currentColor\" d=\"M19.865 6.996a5.222 5.222 0 0 1-3.714 9.76a5.2 5.2 0 0 0 2.832.834c.647 0 1.266-.118 1.838-.333a4.532 4.532 0 0 1-8.88.896c-.172-.008-.435.028-.807.165c-.498.182-1.06.494-1.626.874a18.5 18.5 0 0 0-2.458 2l-.707.708L2.1 17.657l.707-.707c.468-.468 1.156-1.66 1.725-2.998c.275-.646.502-1.28.648-1.814c.073-.263.118-.475.144-.636a5.22 5.22 0 0 1 5.822-8.648l.006-.006l.25.17a5.22 5.22 0 0 1 2.257 3.71l.004.028q.032-.33.032-.666a6.7 6.7 0 0 0-1.395-4.1a5.125 5.125 0 0 1 7.566 5.007m-7.792 8.284q.049-.137.107-.271l-.887-.888l-1.415 1.415l-1.414-1.415l1.414-1.414l-.268-.268a4.74 4.74 0 0 1-2.44-.004q-.03.119-.061.233a17 17 0 0 1-.736 2.067c-.42.989-.962 2.05-1.517 2.85l1.514 1.513a20 20 0 0 1 2.026-1.569c.633-.423 1.343-.83 2.05-1.09c.42-.154.899-.277 1.387-.286a4.5 4.5 0 0 1 .24-.873\"/>"
},
"browse": {
"body": "<path fill=\"currentColor\" d=\"M2.097 12c1.441 4.08 5.332 7 9.903 7c4.57 0 8.46-2.92 9.902-7C20.461 7.92 16.57 5 12 5s-8.462 2.92-9.903 7m-2.008-.304C1.7 6.654 6.421 3 12 3c5.58 0 10.302 3.654 11.91 8.696l.098.304l-.097.304C22.3 17.346 17.578 21 12 21S1.698 17.346.09 12.304L-.009 12zM12 9a3 3 0 1 0 0 6a3 3 0 0 0 0-6m-5 3a5 5 0 1 1 10 0a5 5 0 0 1-10 0\"/>"
},
"browse-filled": {
"body": "<path fill=\"currentColor\" d=\"M9 12a3 3 0 1 1 6 0a3 3 0 0 1-6 0\"/><path fill=\"currentColor\" d=\"M12 3C6.42 3 1.698 6.654.09 11.696L-.009 12l.097.304C1.7 17.346 6.421 21 12 21s10.302-3.654 11.91-8.696l.098-.304l-.097-.304C22.3 6.654 17.578 3 12 3m0 4a5 5 0 1 1 0 10a5 5 0 0 1 0-10\"/>"
},
"browse-gallery": {
"body": "<path fill=\"currentColor\" d=\"m19.41 1.586l.692.722A13.96 13.96 0 0 1 24 12c0 3.761-1.485 7.178-3.898 9.692l-.692.722l-1.443-1.385l.692-.721A11.96 11.96 0 0 0 22 12c0-3.225-1.27-6.15-3.34-8.308l-.693-.721zM10 4a8 8 0 1 0 0 16a8 8 0 0 0 0-16M0 12C0 6.477 4.477 2 10 2s10 4.477 10 10s-4.477 10-10 10S0 17.523 0 12m11-5.5v5.086L14.414 15L13 16.414l-4-4V6.5z\"/>"
},
"browse-gallery-filled": {
"body": "<path fill=\"currentColor\" d=\"m20.102 2.308l-.692-.722l-1.443 1.385l.692.721A11.96 11.96 0 0 1 22 12c0 3.225-1.27 6.15-3.34 8.308l-.693.721l1.443 1.385l.692-.722A13.96 13.96 0 0 0 24 12c0-3.761-1.485-7.178-3.898-9.692\"/><path fill=\"currentColor\" d=\"M10 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 17.523 0 12S4.477 2 10 2m3 14.414L14.414 15L11 11.586V6.5H9v5.914z\"/>"
},
"browse-off": {
"body": "<path fill=\"currentColor\" d=\"m4 1.586l6.171 6.172l7.072 7.07L23.413 21L22 22.414l-2.965-2.965A12.45 12.45 0 0 1 13 21c-5.58 0-10.302-3.654-11.91-8.696L.991 12l.097-.304A12.5 12.5 0 0 1 5.265 5.68L2.585 3zm2.691 5.52A10.53 10.53 0 0 0 3.097 12c1.441 4.08 5.332 7 9.903 7c1.631 0 3.174-.372 4.55-1.035l-1.793-1.793a5 5 0 0 1-6.929-6.929zm3.601 3.6a3 3 0 0 0 4.001 4.001zM13 5q-.866 0-1.692.135l-.987.16l-.32-1.974l.988-.16A12.6 12.6 0 0 1 13 3c5.579 0 10.301 3.654 11.91 8.696l.097.304l-.097.304a12.5 12.5 0 0 1-1.817 3.572l-.591.807l-1.614-1.181l.59-.807A10.5 10.5 0 0 0 22.904 12C21.46 7.92 17.57 5 13 5m.513 1.926l.956.294a5.01 5.01 0 0 1 3.312 3.311l.293.956l-1.912.587l-.293-.956a3.01 3.01 0 0 0-1.987-1.986l-.956-.294z\"/>",
"width": 26
},
"browse-off-filled": {
"body": "<path fill=\"currentColor\" d=\"M3.004 1.59L3 1.586L1.586 3l2.68 2.68a12.5 12.5 0 0 0-4.177 6.016L-.008 12l.097.304C1.7 17.346 6.421 21 12 21c2.19 0 4.247-.563 6.036-1.55L21 22.413l1.41-1.41L3 1.594zM7 12c0-1.02.305-1.967.828-2.757l1.464 1.464a3 3 0 0 0 4 4.001l1.465 1.464A5 5 0 0 1 7 12m14.198 4.964a12.5 12.5 0 0 0 2.712-4.66l.097-.304l-.097-.304C22.3 6.654 17.578 3 12 3c-1.43 0-2.804.24-4.084.682l3.369 3.369Q11.635 7 12 7a5 5 0 0 1 4.95 5.715z\"/><path fill=\"currentColor\" d=\"M14.253 10.02a3 3 0 0 0-.272-.273z\"/>"
},
"brush": {
"body": "<path fill=\"currentColor\" d=\"M11.92 23.494L.794 12.368L10.3 2.86l2.833 2.833l3.274-3.275L21.87 7.88l-3.274 3.275l2.832 2.832zm3.074-5.903L6.697 9.293l-3.075 3.075l8.298 8.297zM8.111 7.879l8.297 8.298l2.191-2.19l-2.833-2.833l3.275-3.275l-2.633-2.632l-3.274 3.274l-2.833-2.832z\"/>"
},
"brush-filled": {
"body": "<path fill=\"currentColor\" d=\"M.794 12.368L11.92 23.494l4.489-4.489L5.283 7.88zm17.029 5.222l3.605-3.604l-2.833-2.832l3.274-3.275l-5.46-5.46l-3.275 3.274l-2.832-2.833l-3.605 3.605z\"/>"
},
"bug": {
"body": "<path fill=\"currentColor\" d=\"M9.17 5h5.66a3.001 3.001 0 0 0-5.66 0M7 6a5 5 0 0 1 10 0v1H7zM5 4v2.586L6.414 8h11.172L19 6.586V4h2v3.414l-3 3V12h3v2h-3v1.586l3 3V22h-2v-2.586l-1.36-1.36A6.01 6.01 0 0 1 13 21.917V22h-1a6 6 0 0 1-5.64-3.946L5 19.414V22H3v-3.414l3-3V14H3v-2h3v-1.586l-3-3V4zm3 6.414V16a4 4 0 0 0 3 3.874V10H8.414zM13 10v9.874c1.725-.444 3-2.01 3-3.874v-5.586L15.586 10z\"/>"
},
"bug-filled": {
"body": "<path fill=\"currentColor\" d=\"M7 5.998a5 5 0 0 1 10 0z\"/><path fill=\"currentColor\" d=\"M6.414 8L5 6.586V4H3v3.414l3 3V12H3v2h3v1.586l-3 3V22h2v-2.586l1.36-1.36c.729 2 2.49 3.503 4.64 3.863V8zM13 8v13.917a6.01 6.01 0 0 0 4.64-3.863l1.36 1.36V22h2v-3.414l-3-3V14h3v-2h-3v-1.586l3-3V4h-2v2.586L17.586 8z\"/>"
},
"bug-report": {
"body": "<path fill=\"currentColor\" d=\"M7.128 1.592L9.493 4.43A7.5 7.5 0 0 1 12 4c.878 0 1.722.151 2.507.43l2.365-2.838l1.536 1.28l-2.083 2.5A7.5 7.5 0 0 1 19.073 9H22v2h-2.516q.015.248.016.5v5q0 .252-.016.5H22v2h-2.927a7.503 7.503 0 0 1-14.146 0H2v-2h2.516a8 8 0 0 1-.016-.5v-5q0-.252.016-.5H2V9h2.927a7.5 7.5 0 0 1 2.748-3.628l-2.083-2.5zM12 6a5.5 5.5 0 0 0-5.5 5.5v5a5.5 5.5 0 0 0 11 0v-5A5.5 5.5 0 0 0 12 6m-3 4h6v2H9zm0 6h6v2H9z\"/>"
},
"bug-report-filled": {
"body": "<path fill=\"currentColor\" d=\"M9.493 4.43A7.5 7.5 0 0 1 12 4c.878 0 1.722.151 2.507.43l2.365-2.838l1.536 1.28l-2.083 2.5A7.5 7.5 0 0 1 19.073 9H22v2h-2.516q.015.248.016.5v5q0 .252-.016.5H22v2h-2.927a7.503 7.503 0 0 1-14.146 0H2v-2h2.516a8 8 0 0 1-.016-.5v-5q0-.252.016-.5H2V9h2.927a7.5 7.5 0 0 1 2.748-3.628l-2.083-2.5l1.536-1.28zM15 12v-2H9v2zm0 6v-2H9v2z\"/>"
},
"building": {
"body": "<path fill=\"currentColor\" d=\"M7 2h10v3h3v4h2v2h-1v9h1v2H2v-2h1v-9H2V9h2V5h3zm2 3h6V4H9zm-4 6v9h3v-6h8v6h3v-9zm13-2V7H6v2zm-4 11v-4h-4v4z\"/>"
},
"building-1": {
"body": "<path fill=\"currentColor\" d=\"M7.5 1.5v1.625q.595.16 1.065.51c.549.407.897.951 1.113 1.494c.247.615.344 1.277.364 1.871H11.5v2H10v1h12v12H3V9H1.5V7h1.458c.02-.594.117-1.256.363-1.871c.217-.543.565-1.087 1.114-1.494q.47-.35 1.065-.51V1.5zM4.96 7h3.08c-.018-.389-.083-.789-.219-1.129c-.116-.29-.268-.497-.449-.63C7.201 5.112 6.937 5 6.5 5s-.7.113-.873.24c-.18.134-.332.34-.449.631c-.135.34-.2.74-.219 1.129M8 9H5v11h3zm2 11h2v-5h6v5h2v-8H10zm6 0v-3h-2v3z\"/>"
},
"building-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M7.5 1.5v1.625q.595.16 1.065.51c.549.407.897.951 1.113 1.494c.247.615.344 1.277.364 1.871H11.5v2H10v1h12v12h-3.5v-6h-7v6H3V9H1.5V7h1.458c.02-.594.117-1.256.363-1.871c.217-.543.565-1.087 1.114-1.494q.47-.35 1.065-.51V1.5zM4.96 7h3.08c-.018-.389-.083-.789-.219-1.129c-.116-.29-.268-.497-.449-.63C7.201 5.112 6.937 5 6.5 5s-.7.113-.873.24c-.18.134-.332.34-.449.631c-.135.34-.2.74-.219 1.129M5 9v11h3V9z\"/><path fill=\"currentColor\" d=\"M16.5 22h-3v-4h3z\"/>"
},
"building-2": {
"body": "<path fill=\"currentColor\" d=\"m12 .834l6.372 3.823l-1.029 1.715L17 6.166V8h5v14H2V8h5V6.166l-.343.206l-1.029-1.715zM9 4.966V8h6V4.966l-3-1.8zm2 .032h2.004v2.004H11zM4 10v10h4v-7h8v7h4V10zm10 10v-5h-4v5z\"/>"
},
"building-2-filled": {
"body": "<path fill=\"currentColor\" d=\"m12 .834l6.373 3.823l-1.03 1.715l-.342-.206V8H7V6.166l-.343.206l-1.03-1.715zm-1 3.164v2.004h2.004V3.998zM22 10H2v12h6v-7h8v7h6z\"/><path fill=\"currentColor\" d=\"M10 17v5h4v-5z\"/>"
},
"building-3": {
"body": "<path fill=\"currentColor\" d=\"M8 2h8v3h3v4h3v13H2V9h3V5h3zm2 3h4V4h-4zM7 9h10V7H7zm-3 2v9h4v-6h8v6h4v-9zm10 9v-4h-4v4z\"/>"
},
"building-3-filled": {
"body": "<path fill=\"currentColor\" d=\"M16 2H8v3H5v4h14V5h-3zM2 11h20v11h-6v-6H8v6H2z\"/><path fill=\"currentColor\" d=\"M10 22v-4h4v4z\"/>"
},
"building-4": {
"body": "<path fill=\"currentColor\" d=\"M9 2h12v2h-1v4h2v14H2V8h8V4H9zm3 2v4h6V4zm8 6H4v10h4v-6h8v6h4zm-6 10v-4h-4v4zM13 4.998h2.004v2.004H13z\"/>"
},
"building-4-filled": {
"body": "<path fill=\"currentColor\" d=\"M2 10h20v12h-6v-6H8v6H2z\"/><path fill=\"currentColor\" d=\"M10 22v-4h4v4zM21 2H9v2h1v4h10V4h1zm-5.996 2.998v2.004H13V4.998z\"/>"
},
"building-5": {
"body": "<path fill=\"currentColor\" d=\"m11.998.811l8.384 5.388L19.3 7.882l-.3-.193v3.417l3.375 2.062l-1.043 1.707l-.332-.203V22H3v-7.328l-.332.203l-1.043-1.707L5 11.106V7.689l-.3.193L3.617 6.2zM7 6.403v3.48l5-3.055l5 3.055v-3.48L11.998 3.19zM5 13.45V20h6v-4h2v4h6v-6.55l-7-4.278z\"/>"
},
"building-5-filled": {
"body": "<path fill=\"currentColor\" d=\"M20.382 6.2L11.998.81L3.618 6.2l1.081 1.682l.3-.193v3.417l-3.374 2.062l1.043 1.707l.332-.203V22h8v-6h2v6h8v-7.328l.332.203l1.043-1.707L19 11.106V7.689l.3.193zM7 9.882v-3.48l4.998-3.214L17 6.403v3.48l-5-3.055z\"/>"
},
"building-filled": {
"body": "<path fill=\"currentColor\" d=\"M7 2h10v3h3v4H4V5h3zm15 11v-2H2v2h1v7H2v2h6v-6h8v6h6v-2h-1v-7z\"/><path fill=\"currentColor\" d=\"M14 22h-4v-4h4z\"/>"
},
"bulletpoint": {
"body": "<path fill=\"currentColor\" d=\"M3 6.004H2V4h2.004v2.004zm0 7H2V11h2.004v2.004zm-1 7h2.004V18H2zM8 4H7v2h15V4zm-1 7h15v2H7zm1 7H7v2h15v-2z\"/>"
},
"button": {
"body": "<path fill=\"currentColor\" d=\"M2 5h20v14H2zm2 2v10h16V7zm2 2h12v6H6zm2 2v2h8v-2z\"/>"
},
"button-filled": {
"body": "<path fill=\"currentColor\" d=\"M2 5h20v14H2zm2 2v10h16V7zm2 2h12v6H6z\"/>"
},
"cabbage": {
"body": "<path fill=\"currentColor\" d=\"M13.116 3.468a4 4 0 0 0-1.363-1.28c-1.508-.865-3.451-.713-5.244.291C3.18 4.344 1 7.85 1 12c0 5.54 4.01 10.013 9.247 10.86q.858.139 1.753.14a10.96 10.96 0 0 0 11-11.085c-.023-1.932-.798-4.303-2.023-6.198c-1.22-1.888-3.096-3.608-5.427-3.586c-1.138.002-1.915.628-2.434 1.338m6.655 4.145a4.8 4.8 0 0 0-1.263-.033l-1.16-1.95L15.63 6.65l.892 1.5a7 7 0 0 0-1.065.625l-.018-.058c-.267-.81-.783-1.475-1.471-2.136l.004-.02c.069-.323.179-.74.344-1.145c.373-.916.806-1.287 1.24-1.287h.011c1.291-.014 2.636.977 3.731 2.672q.255.394.474.81M13.61 10.61c-.33.008-.669.045-1 .117l-.032-.052a3.8 3.8 0 0 0-1.03-1.093c-.79-.555-1.872-.83-3.042-.393a14 14 0 0 0-.324-.181l3.233-3.169l-1.4-1.428L6.18 8.17c-.81-.235-1.567-.319-2.247-.225a8.7 8.7 0 0 1 3.555-3.722c1.364-.764 2.537-.722 3.271-.301c.7.401 1.281 1.311 1.135 2.937l-.045.503l.378.335c.822.727 1.164 1.197 1.312 1.646c.104.315.138.696.071 1.267m-2.81 1.005c-.854.715-1.427 1.718-1.76 2.802l-2.974-3.265L4.587 12.5l4.088 4.488c-.005 1.192.148 2.412.37 3.515A8.95 8.95 0 0 1 3 12c0-1.04.289-1.607.629-1.855c.321-.236 1.026-.429 2.47.104c.522.193 1.126.489 1.817.919l.502.312l.516-.29c.623-.35 1.099-.226 1.464.03c.16.112.297.252.402.395m1.765 9.367l7.292-8.037l-1.481-1.344l-2.932 3.231l.007-1.014l-2-.014l-.023 3.25l-2.483 2.737c-.187-1.021-.3-2.118-.264-3.147c.064-1.755.765-3.197 1.802-3.768c.43-.237 1.189-.33 1.789-.224l.89.155l.245-.869c.128-.453.467-.938.997-1.37a4.8 4.8 0 0 1 1.834-.916c.801-.196 1.484-.094 1.934.216c.393.27.788.822.825 1.954v.018L21 12a8.96 8.96 0 0 1-8.435 8.982\"/>"
},
"cabbage-filled": {
"body": "<path fill=\"currentColor\" d=\"m14.09 4.094l-.171 2.456a5.82 5.82 0 0 1 1.626 3.163a6.8 6.8 0 0 1 2.297-1.022l-1.213-2.04l1.72-1.022l1.787 3.006c.795.114 1.622.365 2.357.8q.083.048.162.1a13.4 13.4 0 0 0-1.678-3.82c-.88-1.36-2.1-2.634-3.585-3.23c-1.595-.64-3.19-.04-3.298 1.558zm-2.007.027l-.226 3.25l.369.327c1.165 1.03 1.556 2.294 1.377 3.913a5.4 5.4 0 0 0-.995.117l-.031-.052a3.8 3.8 0 0 0-1.03-1.093c-.79-.555-1.873-.83-3.042-.393a11.4 11.4 0 0 0-1.715-.817l-.238-.084l2.854-3.533L7.85 4.5L4.288 8.91a6.55 6.55 0 0 0-2.645.51q-.2.086-.392.188A10.7 10.7 0 0 1 6.509 2.48c1.046-.585 2.143-.881 3.175-.854c1.75.045 2.498.91 2.402 2.375zM1.024 12.74c.318 4.865 3.746 8.785 8.29 9.926a20 20 0 0 1-.59-3.414l-5.138-5.194l1.421-1.407l3.785 3.825c.243-1.472.88-2.918 2.008-3.86a1.8 1.8 0 0 0-.403-.396c-.365-.256-.84-.38-1.463-.03l-.516.29l-.502-.312c-.691-.43-1.295-.726-1.818-.919c-1.349-.498-2.694-.411-3.664.007c-.853.367-1.305.922-1.41 1.485m12.403 6.313l-2.315 2.552c-.282-1.234-.478-2.653-.43-3.962c.062-1.754.763-3.197 1.8-3.768c.43-.237 1.19-.33 1.79-.224l.889.155l.245-.868c.128-.453.468-.94.998-1.371a4.8 4.8 0 0 1 1.834-.915c.765-.188 2.189-.117 3.238.504c.498.294.884.695 1.103 1.23c.22.539.31 1.306.052 2.399l.017.004a10.96 10.96 0 0 1-10.087 8.196l7.295-8.04l-1.481-1.344l-2.932 3.23l.007-1.014l-2-.014z\"/>"
},
"cake": {
"body": "<path fill=\"currentColor\" d=\"M6.998 1.998h2.004v2.004H6.998zm4 0h2.004v2.004h-2.004zm4 0h2.004v2.004h-2.004zM9 5v5h2V5h2v5h2V5h2v5h4v10h2v2H1v-2h2V10h4V5zm-4 7v3h1.162L9 15.946l3-1l3 1L17.838 15H19v-3zm14 5h-.838L15 18.054l-3-1l-3 1L5.838 17H5v3h14z\"/>"
},
"cake-filled": {
"body": "<path fill=\"currentColor\" d=\"M9.002 1.998H6.998v2.004h2.004zm4 0h-2.004v2.004h2.004zm4 0h-2.004v2.004h2.004zM9 10V5H7v5H3v5h3.162L9 15.946l3-1l3 1L17.838 15H21v-5h-4V5h-2v5h-2V5h-2v5zm12 7h-2.838L15 18.054l-3-1l-3 1L5.838 17H3v3H1v2h22v-2h-2z\"/>"
},
"calculation": {
"body": "<path fill=\"currentColor\" d=\"M7.5 2v3.5H11v2H7.5V11h-2V7.5H2v-2h3.5V2zM13 5.5h9v2h-9zm-2.224 9.511L7.948 17.84l2.989 2.988l-1.415 1.415l-2.989-2.99l-2.828 2.83l-1.414-1.415l2.828-2.828l-2.668-2.668l1.415-1.415l2.667 2.668l2.829-2.828zm5.724-1.013h2.004v2.004H16.5zM13 17h9v2h-9zm3.5 2.998h2.004v2.004H16.5z\"/>"
},
"calculation-1": {
"body": "<path fill=\"currentColor\" d=\"M1 1h22v22H1zm2 2v18h18V3zm6 2v2h2v2H9v2H7V9H5V7h2V5zm4 2h6v2h-6zm-6.414 6.172L8 14.586l1.414-1.414l1.414 1.414L9.414 16l1.415 1.414l-1.415 1.415L8 17.414L6.586 18.83L5.17 17.414L6.586 16l-1.414-1.414zM13 13.5h6v2h-6zm0 3h6v2h-6z\"/>"
},
"calculation-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M23 1v22H1V1zM9 7V5H7v2H5v2h2v2h2V9h2V7zm10 0h-6v2h6zM8 14.586l-1.414-1.414l-1.414 1.414L6.586 16L5.17 17.414l1.415 1.415L8 17.414l1.414 1.415l1.415-1.415L9.414 16l1.414-1.414l-1.414-1.414zM19 13.5h-6v2h6zm0 3h-6v2h6z\"/>"
},
"calculator": {
"body": "<path fill=\"currentColor\" d=\"M3 1h18v22H3zm2 2v4h14V3zm14 6H5v12h14zM7 12h4v2H7zm6 0h4v2h-4zm-6 4h4v2H7zm6 0h4v2h-4z\"/>"
},
"calculator-1": {
"body": "<path fill=\"currentColor\" d=\"M4 2h16v20H4zm2 2v4h12V4zm12 6h-3v2h3zm0 4h-3v2h3zm0 4h-3v2h3zm-5 2v-2h-2v2zm-4 0v-2H6v2zm-3-4h3v-2H6zm0-4h3v-2H6zm5-2v2h2v-2zm2 4h-2v2h2z\"/>"
},
"calculator-filled": {
"body": "<path fill=\"currentColor\" d=\"M3 1h18v6H3zm0 7.996h18V23H3zm8 6.002v-2H7v2zm6 0v-2h-4v2zm-6 2H7v2h4zm6 2v-2h-4v2z\"/>"
},
"calendar": {
"body": "<path fill=\"currentColor\" d=\"M6 4V1.5h2V4h8V1.5h2V4h4v18H2V4zM4 6v3h16V6zm16 5H4v9h16z\"/>"
},
"calendar-1": {
"body": "<path fill=\"currentColor\" d=\"M8 1v3h8V1h2v3h4v18H2V4h4V1zM4 6v3h16V6zm16 5H4v9h16zM7 13h2.004v2.004H7zm4 0h2.004v2.004H11zm4 0h2.004v2.004H15zm-8 3h2.004v2.004H7zm4 0h2.004v2.004H11zm4 0h2.004v2.004H15z\"/>"
},
"calendar-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M8 4h8V1h2v3h4v5H2V4h4V1h2zm14 7v11H2V11zM9.004 13.497H7v2.004h2.004zm4 0H11v2.004h2.004zm4 0H15v2.004h2.004zm-8 4H7v2.004h2.004zm4 0H11v2.004h2.004zm4 0H15v2.004h2.004z\"/>"
},
"calendar-2": {
"body": "<path fill=\"currentColor\" d=\"M8 1v3h8V1h2v3h4v18H2V4h4V1zM4 6v3h16V6zm16 5H4v9h16z\"/><path fill=\"currentColor\" d=\"m16.914 13.25l-5.657 5.657l-3.535-3.536l1.414-1.414l2.121 2.121l4.243-4.242z\"/>"
},
"calendar-2-filled": {
"body": "<path fill=\"currentColor\" d=\"M8 4h8V1h2v3h4v5H2V4h4V1h2zm14 7.004V22H2V11.004zm-10.743 8.903l5.657-5.657l-1.414-1.414l-4.243 4.242l-2.121-2.121l-1.414 1.414z\"/>"
},
"calendar-edit": {
"body": "<path fill=\"currentColor\" d=\"M8 1v3h8V1h2v3h4v2.001h.001l-.001 6L20 12v-1H4v9h8v2H2V4h4V1zM4 9h16V6H4zm15.287 4.086l4.127 4.127l-5.286 5.287H14v-4.128zm-.672 3.5l1.299 1.3l.672-.673l-1.3-1.299zm-.115 2.713L17.2 18L16 19.2v1.3h1.3z\"/>"
},
"calendar-edit-filled": {
"body": "<path fill=\"currentColor\" d=\"M16 4H8V1H6v3H2v5h20V4h-4V1h-2zm6 9v-2H2v11h10v-1a8 8 0 0 1 8-8z\"/><path fill=\"currentColor\" d=\"m23.414 18.213l-4.127-4.127L14 19.372l.001 4.128h4.127zM17.201 19l1.299 1.3l-1.2 1.2H16v-1.3z\"/>"
},
"calendar-event": {
"body": "<path fill=\"currentColor\" d=\"M8 1v3h8V1h2v3h4v18H2V4h4V1zM4 6v3h16V6zm16 5H4v9h16zm-7.5 1.5h6v6h-6zm2 2v2h2v-2z\"/>"
},
"calendar-event-filled": {
"body": "<path fill=\"currentColor\" d=\"M8 4h8V1h2v3h4v5H2V4h4V1h2zm14 7v11H2V11zm-3.5 3.5h-4v4h4z\"/>"
},
"calendar-filled": {
"body": "<path fill=\"currentColor\" d=\"M6 1.5V4H2v5h20V4h-4V1.5h-2V4H8V1.5zM22 22V11H2v11z\"/>"
},
"call": {
"body": "<path fill=\"currentColor\" d=\"M1 2h8.58l1.487 6.69l-1.86 1.86a14.1 14.1 0 0 0 4.243 4.242l1.86-1.859L22 14.42V23h-1a19.9 19.9 0 0 1-10.85-3.196a20.1 20.1 0 0 1-5.954-5.954A19.9 19.9 0 0 1 1 3zm2.027 2a17.9 17.9 0 0 0 2.849 8.764a18.1 18.1 0 0 0 5.36 5.36A17.9 17.9 0 0 0 20 20.973v-4.949l-4.053-.9l-2.174 2.175l-.663-.377a16.07 16.07 0 0 1-6.032-6.032l-.377-.663l2.175-2.174L7.976 4z\"/>"
},
"call-1": {
"body": "<path fill=\"currentColor\" d=\"m16.052 1.787l.966.261a7 7 0 0 1 4.93 4.934l.26.965l-1.93.521l-.261-.965a5 5 0 0 0-3.522-3.524l-.965-.262zM1 2h8.58l1.487 6.69l-1.86 1.86a14.1 14.1 0 0 0 4.243 4.242l1.86-1.859L22 14.42V23h-1a19.9 19.9 0 0 1-10.85-3.196a20.1 20.1 0 0 1-5.954-5.954A19.9 19.9 0 0 1 1 3zm2.027 2a17.9 17.9 0 0 0 2.849 8.764a18.1 18.1 0 0 0 5.36 5.36A17.9 17.9 0 0 0 20 20.973v-4.949l-4.053-.9l-2.174 2.175l-.663-.377a16.07 16.07 0 0 1-6.032-6.032l-.377-.663l2.175-2.174L7.976 4zm12.111 1.165l.966.261a3.5 3.5 0 0 1 2.465 2.467l.26.965l-1.93.521l-.261-.965a1.5 1.5 0 0 0-1.057-1.057l-.965-.261z\"/>"
},
"call-1-filled": {
"body": "<path fill=\"currentColor\" d=\"m17.018 2.048l-.965-.261l-.523 1.93l.966.262a5 5 0 0 1 3.521 3.524l.26.965l1.931-.521l-.26-.965a7 7 0 0 0-4.93-4.934m-.914 3.378l-.965-.261l-.523 1.93l.966.262a1.5 1.5 0 0 1 1.056 1.057l.26.965l1.931-.52l-.26-.966a3.5 3.5 0 0 0-2.465-2.467\"/><path fill=\"currentColor\" d=\"M9.58 2H1v1a19.9 19.9 0 0 0 3.196 10.85a20.1 20.1 0 0 0 5.954 5.954A19.9 19.9 0 0 0 21 23h1v-8.58l-6.69-1.487l-1.86 1.86a14.1 14.1 0 0 1-4.242-4.243l1.859-1.86z\"/>"
},
"call-cancel": {
"body": "<path fill=\"currentColor\" d=\"m16.38 1.966l2.12 2.121l2.121-2.121l1.415 1.414l-2.122 2.121l2.122 2.122l-1.415 1.414l-2.12-2.121l-2.122 2.12l-1.414-1.413L17.087 5.5l-2.121-2.12zM1 2h8.58l1.487 6.69l-1.86 1.86a14.1 14.1 0 0 0 4.243 4.242l1.86-1.859L22 14.42V23h-1a19.9 19.9 0 0 1-10.85-3.196a20.1 20.1 0 0 1-5.954-5.954A19.9 19.9 0 0 1 1 3zm2.027 2a17.9 17.9 0 0 0 2.849 8.764a18.1 18.1 0 0 0 5.36 5.36A17.9 17.9 0 0 0 20 20.973v-4.949l-4.053-.9l-2.174 2.175l-.663-.377a16.07 16.07 0 0 1-6.032-6.032l-.377-.663l2.175-2.174L7.976 4z\"/>"
},
"call-cancel-filled": {
"body": "<path fill=\"currentColor\" d=\"M18.501 4.087L16.38 1.966L14.966 3.38l2.121 2.121l-2.121 2.122l1.414 1.414l2.121-2.121l2.122 2.12l1.414-1.413L19.916 5.5l2.12-2.121l-1.413-1.414z\"/><path fill=\"currentColor\" d=\"M9.58 2H1v1a19.9 19.9 0 0 0 3.196 10.85a20.1 20.1 0 0 0 5.954 5.954A19.9 19.9 0 0 0 21 23h1v-8.58l-6.69-1.487l-1.86 1.86a14.1 14.1 0 0 1-4.242-4.243l1.859-1.86z\"/>"
},
"call-filled": {
"body": "<path fill=\"currentColor\" d=\"M1 2h8.58l1.487 6.69l-1.86 1.86a14.1 14.1 0 0 0 4.243 4.242l1.86-1.859L22 14.42V23h-1a19.9 19.9 0 0 1-10.85-3.196a20.1 20.1 0 0 1-5.954-5.954A19.9 19.9 0 0 1 1 3z\"/>"
},
"call-forwarded": {
"body": "<path fill=\"currentColor\" d=\"M1 2h8.58l1.487 6.69l-1.86 1.86a14.1 14.1 0 0 0 4.243 4.242l1.86-1.859L22 14.42V23h-1a19.9 19.9 0 0 1-10.85-3.196a20.1 20.1 0 0 1-5.954-5.954A19.9 19.9 0 0 1 1 3zm2.027 2a17.9 17.9 0 0 0 2.849 8.764a18.1 18.1 0 0 0 5.36 5.36A17.9 17.9 0 0 0 20 20.973v-4.949l-4.053-.9l-2.174 2.175l-.663-.377a16.07 16.07 0 0 1-6.032-6.032l-.377-.663l2.175-2.174L7.976 4zm13.159-1.716l5.418.116l.117 5.419l-2 .043l-.045-2.119l-3.293 3.293l-1.415-1.414l3.294-3.293l-2.12-.046z\"/>"
},
"call-forwarded-filled": {
"body": "<path fill=\"currentColor\" d=\"M9.58 2H1v1a19.9 19.9 0 0 0 3.196 10.85a20.1 20.1 0 0 0 5.954 5.954A19.9 19.9 0 0 0 21 23h1v-8.58l-6.69-1.487l-1.86 1.86a14.1 14.1 0 0 1-4.242-4.243l1.859-1.86z\"/><path fill=\"currentColor\" d=\"m21.605 2.4l-5.419-.116l-.043 2l2.119.045l-3.293 3.293l1.414 1.414l3.293-3.293l.046 2.119l2-.043z\"/>"
},
"call-incoming": {
"body": "<path fill=\"currentColor\" d=\"M22.032 3.378L18.738 6.67l2.12.046l-.044 2l-5.418-.117l-.117-5.419l2-.043l.045 2.119l3.293-3.293zM1 2h8.58l1.487 6.69l-1.86 1.86a14.1 14.1 0 0 0 4.243 4.242l1.86-1.859L22 14.42V23h-1a19.9 19.9 0 0 1-10.85-3.196a20.1 20.1 0 0 1-5.954-5.954A19.9 19.9 0 0 1 1 3zm2.027 2a17.9 17.9 0 0 0 2.849 8.764a18.1 18.1 0 0 0 5.36 5.36A17.9 17.9 0 0 0 20 20.974v-4.948l-4.053-.901l-2.174 2.175l-.663-.377a16.07 16.07 0 0 1-6.032-6.032l-.377-.663l2.175-2.174L7.976 4z\"/>"
},
"call-incoming-filled": {
"body": "<path fill=\"currentColor\" d=\"m18.739 6.671l3.293-3.293l-1.414-1.414l-3.294 3.293l-.045-2.119l-2 .043l.117 5.419l5.418.116l.043-2z\"/><path fill=\"currentColor\" d=\"M9.58 2H1v1a19.9 19.9 0 0 0 3.196 10.85a20.1 20.1 0 0 0 5.954 5.954A19.9 19.9 0 0 0 21 23h1v-8.58l-6.69-1.487l-1.86 1.86a14.1 14.1 0 0 1-4.242-4.243l1.859-1.86z\"/>"
},
"call-off": {
"body": "<path fill=\"currentColor\" d=\"M22.414 3L11.833 13.58q.764.662 1.617 1.211l1.86-1.859L22 14.42V23h-1a19.9 19.9 0 0 1-10.85-3.197a20 20 0 0 1-2.567-1.971L3 22.414L1.586 21L21 1.586zM9 16.415a18 18 0 0 0 2.237 1.71A17.9 17.9 0 0 0 20 20.972v-4.949l-4.053-.9l-2.174 2.175l-.663-.377A16 16 0 0 1 10.415 15zM1 2h8.58l1.487 6.69l-1.865 1.866l.297.504l-1.723 1.015l-1.084-1.839l2.184-2.183L7.976 4H3.027a17.9 17.9 0 0 0 3.097 9.138l.564.825l-1.652 1.128l-.564-.825A19.9 19.9 0 0 1 1 3z\"/>"
},
"call-off-filled": {
"body": "<path fill=\"currentColor\" d=\"m9.213 10.557l-.005-.007l1.859-1.86L9.58 2H1v1a19.9 19.9 0 0 0 3.901 11.87zM1.594 21.005l19.41-19.41L21 1.59l.004-.004L22.418 3L11.835 13.583q.763.661 1.615 1.21l1.86-1.86L22 14.42V23h-1a19.9 19.9 0 0 1-10.85-3.196a20 20 0 0 1-2.565-1.97l-4.58 4.58z\"/>"
},
"calm": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m8-4v4H7V8zm8 0v4h-2V8zm-6.5 6H16v2h-5.5z\"/>"
},
"calm-1": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m5-3h4v2H9v2H7v-2H6zm8 0h4v2h-1v2h-2v-2h-1zm-3 5h2.004v2.004H11z\"/>"
},
"calm-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11M10 9H6v2h1v2h2v-2h1zm8 0h-4v2h1v2h2v-2h1zm-4.996 5H11v2.004h2.004z\"/>"
},
"calm-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11M9 12V8H7v4zm8 0V8h-2v4zm-1 2h-5.5v2H16z\"/>"
},
"camera": {
"body": "<path fill=\"currentColor\" d=\"M7.882 2h8.236l1.5 3H23v16H1V5h5.382zm1.236 2l-1.5 3H3v12h18V7h-4.618l-1.5-3zM12 9.5a3 3 0 1 0 0 6a3 3 0 0 0 0-6m-5 3a5 5 0 1 1 10 0a5 5 0 0 1-10 0\"/>"
},
"camera-1": {
"body": "<path fill=\"currentColor\" d=\"M12 3a7 7 0 1 0 0 14a7 7 0 0 0 0-14m-9 7a9 9 0 1 1 13.148 7.989L16.805 21H19v2H5v-2h2.195l.657-3.011A9 9 0 0 1 3 10m6.74 8.714L9.243 21h5.516l-.499-2.286A9 9 0 0 1 12 19c-.78 0-1.537-.1-2.26-.286M12 8a2 2 0 1 0 0 4a2 2 0 0 0 0-4m-4 2a4 4 0 1 1 8 0a4 4 0 0 1-8 0\"/>"
},
"camera-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M9.5 10a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0\"/><path fill=\"currentColor\" d=\"M3 10c0 3.476 1.97 6.49 4.852 7.989L7.195 21H5v2h14v-2h-2.195l-.657-3.011A9 9 0 1 0 3 10m6.74 8.714a9.06 9.06 0 0 0 4.52 0L14.757 21H9.242zM7.5 10a4.5 4.5 0 1 1 9 0a4.5 4.5 0 0 1-9 0\"/>"
},
"camera-2": {
"body": "<path fill=\"currentColor\" d=\"M12 3.5a7 7 0 1 0 0 14a7 7 0 0 0 0-14m-9 7a9 9 0 1 1 10 8.945v1.01a9.94 9.94 0 0 0 4.626-1.682l.826-.563l1.127 1.652l-.826.564A11.94 11.94 0 0 1 13 22.464v.036h-.652a12 12 0 0 1-.696 0H11v-.036a11.94 11.94 0 0 1-5.753-2.038l-.826-.564l1.127-1.652l.826.563A9.94 9.94 0 0 0 11 20.456v-1.01c-4.5-.498-8-4.313-8-8.946m9-2a2 2 0 1 0 0 4a2 2 0 0 0 0-4m-4 2a4 4 0 1 1 8 0a4 4 0 0 1-8 0\"/>"
},
"camera-2-filled": {
"body": "<path fill=\"currentColor\" d=\"M9.5 10.5a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0\"/><path fill=\"currentColor\" d=\"M3 10.5a9 9 0 1 1 10 8.945v1.01a9.94 9.94 0 0 0 4.626-1.682l.826-.563l1.127 1.652l-.826.564A11.94 11.94 0 0 1 13 22.464v.036h-.652a12 12 0 0 1-.696 0H11v-.036a11.94 11.94 0 0 1-5.753-2.038l-.826-.564l1.127-1.652l.826.563A9.94 9.94 0 0 0 11 20.456v-1.01c-4.5-.498-8-4.313-8-8.946m4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 0 0-9 0\"/>"
},
"camera-filled": {
"body": "<path fill=\"currentColor\" d=\"M8.75 12.75a3.25 3.25 0 1 1 6.5 0a3.25 3.25 0 0 1-6.5 0\"/><path fill=\"currentColor\" d=\"M7.882 2h8.236l1.5 3H23v16H1V5h5.382zM6.75 12.75a5.25 5.25 0 1 0 10.5 0a5.25 5.25 0 0 0-10.5 0\"/>"
},
"camera-off": {
"body": "<path fill=\"currentColor\" d=\"M2 .586L22.414 21L21 22.414L19.586 21H1V5h2.586l-3-3zM5.586 7H3v12h14.586l-2.537-2.537a5 5 0 0 1-7.012-7.012zm3.885 3.885a3 3 0 0 0 4.144 4.144zM7.882 2h8.236l1.5 3H23v14h-2V7h-4.618l-1.5-3H9.118l-.64 1.279l-1.788-.894z\"/>"
},
"camera-off-filled": {
"body": "<path fill=\"currentColor\" d=\"M2.004.59L2 .586L.586 2l3 3H1v16h18.586L22 23.414l1.41-1.41L2 .595zM6.75 12.75c0-1.28.459-2.454 1.22-3.365l1.424 1.423a3.25 3.25 0 0 0 4.548 4.548l1.423 1.424a5.25 5.25 0 0 1-8.615-4.03M23 18.766V5h-5.382l-1.5-3H7.882l-.55 1.099l4.408 4.407a5.25 5.25 0 0 1 5.503 5.503z\"/>"
},
"candy": {
"body": "<path fill=\"currentColor\" d=\"M14.31 3.536c.154-1.69 2.208-2.433 3.407-1.234l3.98 3.981c1.2 1.199.456 3.253-1.233 3.406l-1.314.12a3 3 0 0 1-.357 3.812l-5.172 5.172a3 3 0 0 1-3.812.357l-.12 1.314c-.153 1.689-2.207 2.432-3.406 1.233l-3.98-3.98c-1.2-1.2-.456-3.253 1.233-3.406l1.314-.12a3 3 0 0 1 .357-3.812l5.172-5.172a3 3 0 0 1 3.812-.357zm2.058 3.418l.001.001l.676.675l.001.002a1 1 0 0 0 .796.287l2.441-.222l-3.98-3.98l-.223 2.44a1 1 0 0 0 .288.797m-1.415 1.413l-1.746-1.746a1 1 0 0 0-1.414 0L9.914 8.5l5.586 5.586l1.878-1.88a1 1 0 0 0 0-1.413l-1.745-1.746l-.003-.002l-.675-.676zm-.867 7.133L8.5 9.914l-1.88 1.879a1 1 0 0 0 0 1.414l4.172 4.171a1 1 0 0 0 1.414 0zm-7.462.538l-2.907.264l3.98 3.981l.265-2.907z\"/>"
},
"candy-filled": {
"body": "<path fill=\"currentColor\" d=\"M17.716 2.308a1 1 0 0 0-1.703.617l-.306 3.364l-1.082-1.082a3 3 0 0 0-4.243 0l-1.88 1.88l8.415 8.413l1.88-1.879a3 3 0 0 0 0-4.242l-1.082-1.081l3.365-.306a1 1 0 0 0 .616-1.703zm-15.41 15.41a1 1 0 0 1 .617-1.703l3.373-.307l2 2l-.306 3.374a1 1 0 0 1-1.703.616zm13.197-.803l-1.878 1.878a3 3 0 0 1-4.243 0L5.21 14.62a3 3 0 0 1 0-4.242L7.09 8.5z\"/>"
},
"card": {
"body": "<path fill=\"currentColor\" d=\"M6 3h12v2h4v14h-4v2H6v-2H2V5h4zm0 4H4v10h2zm2 12h8V5H8zM18 7v10h2V7z\"/>"
},
"card-filled": {
"body": "<path fill=\"currentColor\" d=\"M6 3h12v2h4v14h-4v2H6v-2H2V5h4zm0 4H4v10h2zm12 0v10h2V7z\"/>"
},
"cardmembership": {
"body": "<path fill=\"currentColor\" d=\"M23 3v18H1V3zm-2 2H3v4h18zm0 6h-2v6.766l-3.5-2.1l-3.5 2.1V11H3v8h18zm-4 0h-3v3.234l1.5-.9l1.5.9z\"/>"
},
"cardmembership-filled": {
"body": "<path fill=\"currentColor\" d=\"M23 9V3H1v6zm0 2v10H1V11h12v5.497l2.5-2.163l2.5 2.163V11z\"/>"
},
"caret-down": {
"body": "<path fill=\"currentColor\" d=\"M12 17.914L21.414 8.5H2.586zM7.414 10.5h9.172L12 15.086z\"/>"
},
"caret-down-small": {
"body": "<path fill=\"currentColor\" d=\"m12 16.5l7-7H5z\"/>"
},
"caret-left": {
"body": "<path fill=\"currentColor\" d=\"M15.5 2.586v18.828L6.086 12zM8.914 12l4.586 4.586V7.414z\"/>"
},
"caret-left-small": {
"body": "<path fill=\"currentColor\" d=\"M14.5 5v14l-7-7z\"/>"
},
"caret-right": {
"body": "<path fill=\"currentColor\" d=\"M8.5 21.414L17.914 12L8.5 2.586zm2-4.828V7.414L15.086 12z\"/>"
},
"caret-right-small": {
"body": "<path fill=\"currentColor\" d=\"m16.5 12l-7-7v14z\"/>"
},
"caret-up": {
"body": "<path fill=\"currentColor\" d=\"m12 6.086l9.414 9.414H2.586zM7.414 13.5h9.172L12 8.914z\"/>"
},
"caret-up-small": {
"body": "<path fill=\"currentColor\" d=\"m12 7.5l7 7H5z\"/>"
},
"cart": {
"body": "<path fill=\"currentColor\" d=\"M0 1h4.764l.545 2h18.078l-3.666 11H7.78l-.5 2H22v2H4.72l1.246-4.989L3.236 3H0zm7.764 11h10.515l2.334-7H5.855zM4 21a2 2 0 1 1 4 0a2 2 0 0 1-4 0m14 0a2 2 0 1 1 4 0a2 2 0 0 1-4 0\"/>"
},
"cart-add": {
"body": "<path fill=\"currentColor\" d=\"M0 1h4.764l3 11h10.515l3.089-9.265l1.897.633L19.72 14H7.78l-.5 2H22v2H4.72l1.246-4.989L3.236 3H0zm14 1v3h3v2h-3v3h-2V7H9V5h3V2zM4 21a2 2 0 1 1 4 0a2 2 0 0 1-4 0m14 0a2 2 0 1 1 4 0a2 2 0 0 1-4 0\"/>"
},
"cart-add-filled": {
"body": "<path fill=\"currentColor\" d=\"M4.764 1H0v2h3.236l2.73 10.011L4.72 18H22v-2H7.28l.5-2h11.94l3.667-11H5.31zM17 9.5h-2.5V12h-2V9.5H10v-2h2.5V5h2v2.5H17zM6 19a2 2 0 1 0 0 4a2 2 0 0 0 0-4m14 0a2 2 0 1 0 0 4a2 2 0 0 0 0-4\"/>"
},
"cart-filled": {
"body": "<path fill=\"currentColor\" d=\"M0 1h4.764l.545 2h18.078l-3.666 11H7.78l-.5 2H22v2H4.72l1.246-4.989L3.236 3H0zm4 20a2 2 0 1 1 4 0a2 2 0 0 1-4 0m14 0a2 2 0 1 1 4 0a2 2 0 0 1-4 0\"/>"
},
"cast": {
"body": "<path fill=\"currentColor\" d=\"M1 3h22v18H13v-2h8V5H3v4H1zm0 8h1a9 9 0 0 1 9 9v1H9v-1a7 7 0 0 0-7-7H1zm0 4h1a5 5 0 0 1 5 5v1H5v-1a3 3 0 0 0-3-3H1zm0 4h2.004v2.004H1z\"/>"
},
"cast-filled": {
"body": "<path fill=\"currentColor\" d=\"M1 3h22v18H13v-.996c0-6.075-4.925-11-11-11h-.996L1 9z\"/><path fill=\"currentColor\" d=\"M1 11h1a9 9 0 0 1 9 9v1H9v-1a7 7 0 0 0-7-7H1z\"/><path fill=\"currentColor\" d=\"M1 15h1a5 5 0 0 1 5 5v1H5v-1a3 3 0 0 0-3-3H1z\"/><path fill=\"currentColor\" d=\"M3.004 19H1v2.004h2.004z\"/>"
},
"castle": {
"body": "<path fill=\"currentColor\" d=\"M7 2v2h2V2h2v2h2V2h2v2h2V2h2v12h2v-1h2v9H1v-9h2v1h2V2zM5 16H3v4h2zm2 4h2v-7h6v7h2V6H7zm12 0h2v-4h-2zm-6 0v-5h-2v5z\"/>"
},
"castle-1": {
"body": "<path fill=\"currentColor\" d=\"M7 2v2h2V2h2v2h2V2h2v2h2V2h2v4h-1v8h3v-1h2v9H1v-9h2v1h3V6H5V2zm1 4v14h3v-7h2v7h3V6zm10 14h3v-4h-3zM6 20v-4H3v4zM9 7.998h2.004v2.004H9zm4 0h2.004v2.004H13z\"/>"
},
"castle-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M7 4V2H5v4h1v8H3v-1H1v9h10v-9h2v9h10v-9h-2v1h-3V6h1V2h-2v2h-2V2h-2v2h-2V2H9v2zm4.004 3.998v2.004H9V7.998zm4 0v2.004H13V7.998z\"/>"
},
"castle-2": {
"body": "<path fill=\"currentColor\" d=\"M11 2v1.083A6 6 0 0 0 6 9a5 5 0 0 0-5 5v8h22v-8a5 5 0 0 0-5-5a6 6 0 0 0-5-5.917V2zm7 9a3 3 0 0 1 3 3v6h-3zm-2 9h-3v-5h-2v5H8V10h8zM6 20H3v-6a3 3 0 0 1 3-3zM8.126 8a4.002 4.002 0 0 1 7.748 0z\"/>"
},
"castle-2-filled": {
"body": "<path fill=\"currentColor\" d=\"M11 3.083V2h2v1.083c2.838.476 5 2.944 5 5.917a5 5 0 0 1 5 5v8H13v-7h-2v7H1v-8a5 5 0 0 1 5-5a6 6 0 0 1 5-5.917M21 14a3 3 0 0 0-3-3v9h3zM3 20h3v-9a3 3 0 0 0-3 3z\"/>"
},
"castle-3": {
"body": "<path fill=\"currentColor\" d=\"M20 2v1h-4V2h-2v8h-4V2H8v1H4V2H2v20h20V2zM4 5h4v5H6v10H4zm4 15v-8h8v8h-3v-5h-2v5zm10 0V10h-2V5h4v15z\"/>"
},
"castle-3-filled": {
"body": "<path fill=\"currentColor\" d=\"M20 3V2h2v20h-9v-7h-2v7H2V2h2v1h4V2h2v8h4V2h2v1zM8 5H4v15h2V10h2zm8 5h2v10h2V5h-4z\"/>"
},
"castle-4": {
"body": "<path fill=\"currentColor\" d=\"M22 2h-8v6.342a6 6 0 0 0-1-.259V7h-2v1.083a6 6 0 0 0-1 .259V2H2v20h20zM8 9.528A6 6 0 0 0 6 14v6H4V4h4zM8 20v-5h8v5h-3v-3h-2v3zm10 0v-6a6 6 0 0 0-2-4.472V4h4v16zm-2.126-7H8.126a4.003 4.003 0 0 1 7.748 0\"/>"
},
"castle-4-filled": {
"body": "<path fill=\"currentColor\" d=\"M14 2h8v20h-9v-5h-2v5H2V2h8v6.342q.483-.172 1-.259V7h2v1.083q.517.088 1 .259zM6 14c0-1.778.774-3.374 2-4.472V4H4v16h2zm10-4.472A6 6 0 0 1 18 14v6h2V4h-4zM8.126 13h7.748a4.004 4.004 0 0 0-6.273-2.2A4 4 0 0 0 8.126 13\"/>"
},
"castle-5": {
"body": "<path fill=\"currentColor\" d=\"M20 2v1h-4V2h-2v7.131l-2-1.333l-2 1.333V2H8v1H4V2H2v20h20V2zM4 5h4v5H6v10H4zm4 15v-8h1.303L12 10.202L14.697 12H16v8h-3v-5h-2v5zm10 0V10h-2V5h4v15z\"/>"
},
"castle-5-filled": {
"body": "<path fill=\"currentColor\" d=\"M20 3V2h2v20h-9v-7h-2v7H2V2h2v1h4V2h2v7.131l2-1.333l2 1.333V2h2v1zM8 5H4v15h2V10h2zm8 5h2v10h2V5h-4z\"/>"
},
"castle-6": {
"body": "<path fill=\"currentColor\" d=\"M6 2h12v2h-1v4h5v14H2V8h5V4H6zm3 2v4h2V6h2v2h2V4zm-5 8.535A4 4 0 0 1 6 12a4 4 0 0 1 3 1.354A4 4 0 0 1 12 12a4 4 0 0 1 3 1.354A4 4 0 0 1 18 12c.729 0 1.412.195 2 .535V10H4zM8 16a2 2 0 1 0-4 0v4h4zm2 4h4v-4a2 2 0 1 0-4 0zm6 0h4v-4a2 2 0 1 0-4 0z\"/>"
},
"castle-6-filled": {
"body": "<path fill=\"currentColor\" d=\"M6 2h12v2h-1v4h5v4.836A4.64 4.64 0 0 0 19.333 12a4.66 4.66 0 0 0-3.666 1.78A4.66 4.66 0 0 0 12 12a4.66 4.66 0 0 0-3.667 1.78A4.66 4.66 0 0 0 4.667 12c-.992 0-1.911.31-2.667.836V8h5V4H6zm5.02 6h2.002V6.004H11.02zm8.313 6A2.667 2.667 0 0 1 22 16.667V22h-5.333v-5.333A2.667 2.667 0 0 1 19.333 14m-4.666 2.667V22H9.333v-5.333a2.667 2.667 0 1 1 5.334 0m-7.334 0V22H2v-5.333a2.667 2.667 0 1 1 5.333 0\"/>"
},
"castle-7": {
"body": "<path fill=\"currentColor\" d=\"M13 1v1.083c2.838.476 5 2.944 5 5.917h4v14H2V8h4a6 6 0 0 1 5-5.917V1zM8 8h8a4 4 0 0 0-8 0m-4 4.535A4 4 0 0 1 6 12a4 4 0 0 1 3 1.354A4 4 0 0 1 12 12a4 4 0 0 1 3 1.354A4 4 0 0 1 18 12c.729 0 1.412.195 2 .535V10H4zM8 16a2 2 0 1 0-4 0v4h4zm2 4h4v-4a2 2 0 1 0-4 0zm6 0h4v-4a2 2 0 1 0-4 0z\"/>"
},
"castle-7-filled": {
"body": "<path fill=\"currentColor\" d=\"M13 1v1.083c2.838.476 5 2.944 5 5.917H6a6 6 0 0 1 5-5.917V1zm9 7H2v4.836A4.64 4.64 0 0 1 4.667 12c1.487 0 2.812.696 3.666 1.78A4.66 4.66 0 0 1 12 12a4.66 4.66 0 0 1 3.667 1.78A4.66 4.66 0 0 1 19.333 12c.992 0 1.911.31 2.667.836zm0 8.663a2.667 2.667 0 0 0-5.333.004V22H22zM14.667 22v-5.333a2.667 2.667 0 1 0-5.334 0V22zm-7.334 0v-5.333a2.667 2.667 0 1 0-5.333 0V22z\"/>"
},
"castle-filled": {
"body": "<path fill=\"currentColor\" d=\"M7 2v2h2V2h2v2h2V2h2v2h2V2h2v12h2v-1h2v9h-7.5v-8h-7v8H1v-9h2v1h2V2z\"/><path fill=\"currentColor\" d=\"M13.5 22v-6h-3v6z\"/>"
},
"cat": {
"body": "<path fill=\"currentColor\" d=\"M1 .661L7.48 2.58c1.38-.605 2.911-.941 4.52-.941s3.14.336 4.52.94L23 .662v12.053h-.007C22.778 18.458 17.91 23 12 23S1.222 18.458 1.007 12.714H1zm2 5.516a11 11 0 0 1 2.137-2.205L3 3.339zm0 6.143C3 17.083 6.999 21 12 21s9-3.917 9-8.68c0-3.39-2.017-6.344-4.99-7.774A9.2 9.2 0 0 0 12 3.64a9.2 9.2 0 0 0-4.01.907C5.016 5.976 3 8.93 3 12.32m18-6.143V3.34l-2.137.633A11 11 0 0 1 21 6.177M9 9v3H7V9zm8 0v3h-2V9zm-5 3.264l.894 1.789c.379.757.857.985 1.189 1.013c.34.028.759-.131 1.085-.62l.555-.833l1.664 1.11l-.555.832c-.674 1.01-1.755 1.6-2.915 1.504c-.713-.06-1.371-.37-1.917-.885c-.546.515-1.204.826-1.917.885c-1.16.097-2.241-.493-2.915-1.504l-.555-.832l1.664-1.11l.555.832c.326.49.745.65 1.085.621c.332-.028.81-.256 1.189-1.013z\"/>"
},
"cat-filled": {
"body": "<path fill=\"currentColor\" d=\"M7.48 2.58L1 .66v12.053h.007C1.222 18.458 6.091 23 12 23s10.778-4.542 10.993-10.286H23V.661L16.52 2.58A11.2 11.2 0 0 0 12 1.639c-1.609 0-3.14.336-4.52.94M5.137 3.972A11 11 0 0 0 3 6.177V3.34zM21 3.339v2.838a11 11 0 0 0-2.137-2.205zM9 12H7V9h2zm8 0h-2V9h2zm-4.105 2.053c.378.757.856.985 1.188 1.013c.34.028.759-.131 1.085-.62l.555-.833l1.664 1.11l-.555.832c-.674 1.01-1.755 1.6-2.915 1.504c-.713-.06-1.37-.37-1.917-.885c-.546.515-1.204.826-1.917.885c-1.16.097-2.241-.494-2.915-1.504l-.555-.832l1.664-1.11l.555.832c.326.49.745.65 1.085.621c.332-.028.81-.256 1.189-1.013l.894-1.79z\"/>"
},
"catalog": {
"body": "<path fill=\"currentColor\" d=\"M3 1h18v22H3zm2 2v18h14V3zm3 4h8v2H8zm0 4h8v2H8zm0 4h8v2H8z\"/>"
},
"catalog-filled": {
"body": "<path fill=\"currentColor\" d=\"M21 1v22H3V1zm-5 6H8v2h8zm0 4H8v2h8zm0 4H8v2h8z\"/>"
},
"cd": {
"body": "<path fill=\"currentColor\" d=\"M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m10-8h1a8 8 0 0 1 8 8v1h-2v-1a6 6 0 0 0-6-6h-1zm1 6a2 2 0 1 0 0 4a2 2 0 0 0 0-4m-4 2a4 4 0 1 1 8 0a4 4 0 0 1-8 0\"/>"
},
"cd-filled": {
"body": "<path fill=\"currentColor\" d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m14.5 0a3.5 3.5 0 1 0-7 0a3.5 3.5 0 0 0 7 0M12 4.5h-.5v1h.5a6.5 6.5 0 0 1 6.5 6.5v.5h1V12A7.5 7.5 0 0 0 12 4.5\"/>"
},
"celsius": {
"body": "<path fill=\"currentColor\" d=\"M6.5 6a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1M4 6.5a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m7-.5a2 2 0 0 1 2-2h7v2h-7v12h7v2h-7a2 2 0 0 1-2-2z\"/>"
},
"center-focus-strong": {
"body": "<path fill=\"currentColor\" d=\"M2 2h7v2H4v5H2zm13 0h7v7h-2V4h-5zm-3 8a2 2 0 1 0 0 4a2 2 0 0 0 0-4m-4 2a4 4 0 1 1 8 0a4 4 0 0 1-8 0m-4 3v5h5v2H2v-7zm18 0v7h-7v-2h5v-5z\"/>"
},
"center-focus-strong-filled": {
"body": "<path fill=\"currentColor\" d=\"M2 2h7v2H4v5H2zm13 0h7v7h-2V4h-5zM8 12a4 4 0 1 1 8 0a4 4 0 0 1-8 0m-4 3v5h5v2H2v-7zm18 0v7h-7v-2h5v-5z\"/>"
},
"centimeter": {
"body": "<path fill=\"currentColor\" d=\"M11 4h10a2 2 0 0 1 2 2v14h-2V6h-3v14h-2V6h-3v14h-2zM1 6a2 2 0 0 1 2-2h7v2H3v12h7v2H3a2 2 0 0 1-2-2z\"/>"
},
"certificate": {
"body": "<path fill=\"currentColor\" d=\"M1 3h22v18H1zm2 2v14h18V5h-2v6.5l-3-2.25l-3 2.25V5zm12 0v2.5l1-.75l1 .75V5zM5 11h6v2H5zm0 4h14v2H5z\"/>"
},
"certificate-1": {
"body": "<path fill=\"currentColor\" d=\"M21 1v22H3V1zm-8 2v6.5l-3-2.25L7 9.5V3H5v18h14V3zM9 3v2.5l1-.75l1 .75V3zm-2 9h10v2H7zm0 4h8v2H7z\"/>"
},
"certificate-1-filled": {
"body": "<path fill=\"currentColor\" d=\"M21 1v22H3V1zm-4 12H7v2h10zm-2 4H7v2h8zM11 3H7v5.5l2-1.65l2 1.65z\"/>"
},
"certificate-filled": {
"body": "<path fill=\"currentColor\" d=\"M1 3h22v18H1zm4 8v2h6v-2zm0 4v2h14v-2zm11.502-6.312L19 10.75V5h-4.996v5.75z\"/>"
},
"chart": {
"body": "<path fill=\"currentColor\" d=\"M2 2h20v20H2zm2 2v16h16V4zm9 3v11h-2V7zm-5 4v7H6v-7zm10 2v5h-2v-5z\"/>"
},
"chart-3d": {
"body": "<path fill=\"currentColor\" d=\"m12 .845l9.66 5.578v11.154L12 23.155l-9.66-5.578V6.423zm0 2.31L5.34 7L12 10.845L18.66 7zm7.66 5.577L13 12.577v7.69l6.66-3.844zM11 20.268v-7.69L4.34 8.731v7.69zM13 5v4h-2V5zm-3.098 9.366l-3.464 2l-1-1.732l3.464-2zm5.196-1.732l3.464 2l-1 1.732l-3.464-2z\"/>"
},
"chart-3d-filled": {
"body": "<path fill=\"currentColor\" d=\"M20.665 5.847L12 .845L3.338 5.847L12 10.846zM13 3.93v4h-2v-4zm8.66 3.652L13 12.578v10l8.66-5zm-5.634 5.587l3.464 2l-1 1.732l-3.464-2zM11 22.577v-10L2.34 7.58v9.997zM8.975 14.9l-3.464 2l-1-1.732l3.464-2z\"/>"
},
"chart-add": {
"body": "<path fill=\"currentColor\" d=\"M20 0v3h3v2h-3v3h-2V5h-3V3h3V0zM2 2h11v2H4v16h16V10h2v12H2zm11 6v10h-2V8zm-5 3v7H6v-7zm10 2v5h-2v-5z\"/>"
},
"chart-add-filled": {
"body": "<path fill=\"currentColor\" d=\"M20 3V0h-2v3h-3v2h3v3h2V5h3V3z\"/><path fill=\"currentColor\" d=\"M13.5 4c0-.706.132-1.38.374-2H2v20h20V8.61A5.5 5.5 0 0 1 13.5 4M13 18h-2V8h2zm-5 0H6v-7h2zm8 0v-5h2v5z\"/>"
},
"chart-analytics": {
"body": "<path fill=\"currentColor\" d=\"M4 2v18h18v2H2V2zm12 4h6v6h-2V9.423l-1.579 1.575l-2.714 2.708l-.707.707l-4-4l-5 5L4.586 14L11 7.585l4 4l2.009-2.003L18.594 8H16z\"/>"
},
"chart-area": {
"body": "<path fill=\"currentColor\" d=\"M4 2v18h18v2H2V2zm17 2.086V18.21H6v-6.152l6.59-5.99l2.967 3.461zm-2 4.828l-3.556 3.557l-3.033-3.538L8 12.943v3.267h11z\"/>"
},
"chart-area-filled": {
"body": "<path fill=\"currentColor\" d=\"M4 2v18h18v2H2V2zm17 2.086V18.21H6v-6.152l6.59-5.99l2.967 3.461z\"/>"
},
"chart-area-multi": {
"body": "<path fill=\"currentColor\" d=\"M4 2v18h18v2H2V2zm17 2.086V18.21H6v-6.152l6.59-5.99l2.967 3.461zM8.258 16.21H19v-3.796l-3.73 3.73l-3.034-3.539zM19 9.586v-.672l-3.556 3.557l-3.033-3.538L8 12.943v.801l4.415-4.001l2.967 3.46z\"/>"
},
"chart-area-multi-filled": {
"body": "<path fill=\"currentColor\" d=\"M4 20V2H2v20h20v-2z\"/><path fill=\"currentColor\" d=\"M21 18.21V8.586l-5.617 5.617l-2.967-3.46L6 16.557v1.653z\"/><path fill=\"currentColor\" d=\"M6 14.761V12.06l6.59-5.99l2.967 3.46L21 4.086V6.91l-5.558 5.558l-3.031-3.535z\"/>"
},
"chart-bar": {
"body": "<path fill=\"currentColor\" d=\"M4 2v18h2V9h6v11h2V5h6v15h2v2H2V2zm14 18V7h-2v13zm-8 0v-9H8v9z\"/>"
},
"chart-bar-filled": {
"body": "<path fill=\"currentColor\" d=\"M4 2v18h3V9h5v11h3V5h5v15h2v2H2V2z\"/>"
},
"chart-bubble": {
"body": "<path fill=\"currentColor\" d=\"M4 2v18h18v2H2V2zm12 3a1 1 0 1 0 0 2a1 1 0 0 0 0-2m-3 1a3 3 0 1 1 6 0a3 3 0 0 1-6 0m-3 6a2 2 0 1 0 0 4a2 2 0 0 0 0-4m-4 2a4 4 0 1 1 8 0a4 4 0 0 1-8 0m11 0a2 2 0 1 1 4 0a2 2 0 0 1-4 0\"/>"
},
"chart-bubble-filled": {
"body": "<path fill=\"currentColor\" d=\"M4 2v18h18v2H2V2zm9 4a3 3 0 1 1 6 0a3 3 0 0 1-6 0m-7 8a4 4 0 1 1 8 0a4 4 0 0 1-8 0m11 0a2 2 0 1 1 4 0a2 2 0 0 1-4 0\"/>"
},
"chart-column": {
"body": "<path fill=\"currentColor\" d=\"M4 2v2h15v6H4v2h11v6H4v2h18v2H2V2zm0 14h9v-2H4zm0-8h13V6H4z\"/>"