-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
IconsMaterialSymbols.go
3761 lines (3759 loc) · 166 KB
/
IconsMaterialSymbols.go
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
// Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py
// for Go
// from codepoints https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsOutlined%5BFILL%2CGRAD%2Copsz%2Cwght%5D.codepoints
// for use with font https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsOutlined%5BFILL,GRAD,opsz,wght%5D.ttf, https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsRounded%5BFILL,GRAD,opsz,wght%5D.ttf, https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsSharp%5BFILL,GRAD,opsz,wght%5D.ttf
package IconFontCppHeaders
var IconsMaterialSymbols = Font{
Filenames: [][2]string{
{"MSO", "MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].ttf"},
{"MSR", "MaterialSymbolsRounded[FILL,GRAD,opsz,wght].ttf"},
{"MSS", "MaterialSymbolsSharp[FILL,GRAD,opsz,wght].ttf"},
},
Min: 0xe003,
Max16: 0xf8ff,
Max: 0xf8ff,
Icons: map[string]string{
"10k": "\xee\xa5\x91", // U+e951
"10mp": "\xee\xa5\x92", // U+e952
"11mp": "\xee\xa5\x93", // U+e953
"123": "\xee\xae\x8d", // U+eb8d
"12mp": "\xee\xa5\x94", // U+e954
"13mp": "\xee\xa5\x95", // U+e955
"14mp": "\xee\xa5\x96", // U+e956
"15mp": "\xee\xa5\x97", // U+e957
"16mp": "\xee\xa5\x98", // U+e958
"17mp": "\xee\xa5\x99", // U+e959
"18_up_rating": "\xef\xa3\xbd", // U+f8fd
"18mp": "\xee\xa5\x9a", // U+e95a
"19mp": "\xee\xa5\x9b", // U+e95b
"1k": "\xee\xa5\x9c", // U+e95c
"1k_plus": "\xee\xa5\x9d", // U+e95d
"1x_mobiledata": "\xee\xbf\x8d", // U+efcd
"1x_mobiledata_badge": "\xef\x9f\xb1", // U+f7f1
"20mp": "\xee\xa5\x9e", // U+e95e
"21mp": "\xee\xa5\x9f", // U+e95f
"22mp": "\xee\xa5\xa0", // U+e960
"23mp": "\xee\xa5\xa1", // U+e961
"24fps_select": "\xef\x8f\xb2", // U+f3f2
"24mp": "\xee\xa5\xa2", // U+e962
"2d": "\xee\xbc\xb7", // U+ef37
"2k": "\xee\xa5\xa3", // U+e963
"2k_plus": "\xee\xa5\xa4", // U+e964
"2mp": "\xee\xa5\xa5", // U+e965
"30fps": "\xee\xbf\x8e", // U+efce
"30fps_select": "\xee\xbf\x8f", // U+efcf
"360": "\xee\x95\xb7", // U+e577
"3d_rotation": "\xee\xa1\x8d", // U+e84d
"3g_mobiledata": "\xee\xbf\x90", // U+efd0
"3g_mobiledata_badge": "\xef\x9f\xb0", // U+f7f0
"3k": "\xee\xa5\xa6", // U+e966
"3k_plus": "\xee\xa5\xa7", // U+e967
"3mp": "\xee\xa5\xa8", // U+e968
"3p": "\xee\xbf\x91", // U+efd1
"4g_mobiledata": "\xee\xbf\x92", // U+efd2
"4g_mobiledata_badge": "\xef\x9f\xaf", // U+f7ef
"4g_plus_mobiledata": "\xee\xbf\x93", // U+efd3
"4k": "\xee\x81\xb2", // U+e072
"4k_plus": "\xee\xa5\xa9", // U+e969
"4mp": "\xee\xa5\xaa", // U+e96a
"50mp": "\xef\x9b\xb3", // U+f6f3
"5g": "\xee\xbc\xb8", // U+ef38
"5g_mobiledata_badge": "\xef\x9f\xae", // U+f7ee
"5k": "\xee\xa5\xab", // U+e96b
"5k_plus": "\xee\xa5\xac", // U+e96c
"5mp": "\xee\xa5\xad", // U+e96d
"60fps": "\xee\xbf\x94", // U+efd4
"60fps_select": "\xee\xbf\x95", // U+efd5
"6_ft_apart": "\xef\x88\x9e", // U+f21e
"6k": "\xee\xa5\xae", // U+e96e
"6k_plus": "\xee\xa5\xaf", // U+e96f
"6mp": "\xee\xa5\xb0", // U+e970
"7k": "\xee\xa5\xb1", // U+e971
"7k_plus": "\xee\xa5\xb2", // U+e972
"7mp": "\xee\xa5\xb3", // U+e973
"8k": "\xee\xa5\xb4", // U+e974
"8k_plus": "\xee\xa5\xb5", // U+e975
"8mp": "\xee\xa5\xb6", // U+e976
"9k": "\xee\xa5\xb7", // U+e977
"9k_plus": "\xee\xa5\xb8", // U+e978
"9mp": "\xee\xa5\xb9", // U+e979
"Abc": "\xee\xae\x94", // U+eb94
"Ac_unit": "\xee\xac\xbb", // U+eb3b
"Access_alarm": "\xee\xa1\x95", // U+e855
"Access_alarms": "\xee\xa1\x95", // U+e855
"Access_time": "\xee\xbf\x96", // U+efd6
"Access_time_filled": "\xee\xbf\x96", // U+efd6
"Accessibility": "\xee\xa1\x8e", // U+e84e
"Accessibility_new": "\xee\xa4\xac", // U+e92c
"Accessible": "\xee\xa4\x94", // U+e914
"Accessible_forward": "\xee\xa4\xb4", // U+e934
"Account_balance": "\xee\xa1\x8f", // U+e84f
"Account_balance_wallet": "\xee\xa1\x90", // U+e850
"Account_box": "\xee\xa1\x91", // U+e851
"Account_child": "\xee\xa1\x92", // U+e852
"Account_child_invert": "\xee\x99\x99", // U+e659
"Account_circle": "\xef\x88\x8b", // U+f20b
"Account_circle_filled": "\xef\x88\x8b", // U+f20b
"Account_circle_off": "\xef\x9e\xb3", // U+f7b3
"Account_tree": "\xee\xa5\xba", // U+e97a
"Action_key": "\xef\x94\x82", // U+f502
"Activity_zone": "\xee\x87\xa6", // U+e1e6
"Acute": "\xee\x93\x8b", // U+e4cb
"Ad": "\xee\x99\x9a", // U+e65a
"Ad_group": "\xee\x99\x9b", // U+e65b
"Ad_group_off": "\xee\xab\xa5", // U+eae5
"Ad_off": "\xef\x9e\xb2", // U+f7b2
"Ad_units": "\xee\xbc\xb9", // U+ef39
"Adaptive_audio_mic": "\xef\x93\x8c", // U+f4cc
"Adaptive_audio_mic_off": "\xef\x93\x8b", // U+f4cb
"Adb": "\xee\x98\x8e", // U+e60e
"Add": "\xee\x85\x85", // U+e145
"Add_2": "\xef\x8f\x9d", // U+f3dd
"Add_a_photo": "\xee\x90\xb9", // U+e439
"Add_ad": "\xee\x9c\xaa", // U+e72a
"Add_alarm": "\xee\xa1\x96", // U+e856
"Add_alert": "\xee\x80\x83", // U+e003
"Add_box": "\xee\x85\x86", // U+e146
"Add_business": "\xee\x9c\xa9", // U+e729
"Add_call": "\xef\x82\xb7", // U+f0b7
"Add_card": "\xee\xae\x86", // U+eb86
"Add_chart": "\xee\xbc\xbc", // U+ef3c
"Add_circle": "\xee\x8e\xba", // U+e3ba
"Add_circle_outline": "\xee\x8e\xba", // U+e3ba
"Add_column_left": "\xef\x90\xa5", // U+f425
"Add_column_right": "\xef\x90\xa4", // U+f424
"Add_comment": "\xee\x89\xa6", // U+e266
"Add_diamond": "\xef\x92\x9c", // U+f49c
"Add_home": "\xef\xa3\xab", // U+f8eb
"Add_home_work": "\xef\xa3\xad", // U+f8ed
"Add_ic_call": "\xef\x82\xb7", // U+f0b7
"Add_link": "\xee\x85\xb8", // U+e178
"Add_location": "\xee\x95\xa7", // U+e567
"Add_location_alt": "\xee\xbc\xba", // U+ef3a
"Add_moderator": "\xee\xa5\xbd", // U+e97d
"Add_notes": "\xee\x82\x91", // U+e091
"Add_photo_alternate": "\xee\x90\xbe", // U+e43e
"Add_reaction": "\xee\x87\x93", // U+e1d3
"Add_road": "\xee\xbc\xbb", // U+ef3b
"Add_row_above": "\xef\x90\xa3", // U+f423
"Add_row_below": "\xef\x90\xa2", // U+f422
"Add_shopping_cart": "\xee\xa1\x94", // U+e854
"Add_task": "\xef\x88\xba", // U+f23a
"Add_to_drive": "\xee\x99\x9c", // U+e65c
"Add_to_home_screen": "\xee\x87\xbe", // U+e1fe
"Add_to_photos": "\xee\x8e\x9d", // U+e39d
"Add_to_queue": "\xee\x81\x9c", // U+e05c
"Add_triangle": "\xef\x92\x8e", // U+f48e
"Addchart": "\xee\xbc\xbc", // U+ef3c
"Adf_scanner": "\xee\xab\x9a", // U+eada
"Adjust": "\xee\x8e\x9e", // U+e39e
"Admin_meds": "\xee\x92\x8d", // U+e48d
"Admin_panel_settings": "\xee\xbc\xbd", // U+ef3d
"Ads_click": "\xee\x9d\xa2", // U+e762
"Agender": "\xef\xa2\x88", // U+f888
"Agriculture": "\xee\xa9\xb9", // U+ea79
"Air": "\xee\xbf\x98", // U+efd8
"Air_freshener": "\xee\x8b\x8a", // U+e2ca
"Air_purifier": "\xee\xa5\xbe", // U+e97e
"Air_purifier_gen": "\xee\xa0\xa9", // U+e829
"Airline_seat_flat": "\xee\x98\xb0", // U+e630
"Airline_seat_flat_angled": "\xee\x98\xb1", // U+e631
"Airline_seat_individual_suite": "\xee\x98\xb2", // U+e632
"Airline_seat_legroom_extra": "\xee\x98\xb3", // U+e633
"Airline_seat_legroom_normal": "\xee\x98\xb4", // U+e634
"Airline_seat_legroom_reduced": "\xee\x98\xb5", // U+e635
"Airline_seat_recline_extra": "\xee\x98\xb6", // U+e636
"Airline_seat_recline_normal": "\xee\x98\xb7", // U+e637
"Airline_stops": "\xee\x9f\x90", // U+e7d0
"Airlines": "\xee\x9f\x8a", // U+e7ca
"Airplane_ticket": "\xee\xbf\x99", // U+efd9
"Airplanemode_active": "\xee\x94\xbd", // U+e53d
"Airplanemode_inactive": "\xee\x86\x94", // U+e194
"Airplay": "\xee\x81\x95", // U+e055
"Airport_shuttle": "\xee\xac\xbc", // U+eb3c
"Airware": "\xef\x85\x94", // U+f154
"Airwave": "\xef\x85\x94", // U+f154
"Alarm": "\xee\xa1\x95", // U+e855
"Alarm_add": "\xee\xa1\x96", // U+e856
"Alarm_off": "\xee\xa1\x97", // U+e857
"Alarm_on": "\xee\xa1\x98", // U+e858
"Alarm_smart_wake": "\xef\x9a\xb0", // U+f6b0
"Album": "\xee\x80\x99", // U+e019
"Align_center": "\xee\x8d\x96", // U+e356
"Align_end": "\xef\x9e\x97", // U+f797
"Align_flex_center": "\xef\x9e\x96", // U+f796
"Align_flex_end": "\xef\x9e\x95", // U+f795
"Align_flex_start": "\xef\x9e\x94", // U+f794
"Align_horizontal_center": "\xee\x80\x8f", // U+e00f
"Align_horizontal_left": "\xee\x80\x8d", // U+e00d
"Align_horizontal_right": "\xee\x80\x90", // U+e010
"Align_items_stretch": "\xef\x9e\x93", // U+f793
"Align_justify_center": "\xef\x9e\x92", // U+f792
"Align_justify_flex_end": "\xef\x9e\x91", // U+f791
"Align_justify_flex_start": "\xef\x9e\x90", // U+f790
"Align_justify_space_around": "\xef\x9e\x8f", // U+f78f
"Align_justify_space_between": "\xef\x9e\x8e", // U+f78e
"Align_justify_space_even": "\xef\x9e\x8d", // U+f78d
"Align_justify_stretch": "\xef\x9e\x8c", // U+f78c
"Align_self_stretch": "\xef\x9e\x8b", // U+f78b
"Align_space_around": "\xef\x9e\x8a", // U+f78a
"Align_space_between": "\xef\x9e\x89", // U+f789
"Align_space_even": "\xef\x9e\x88", // U+f788
"Align_start": "\xef\x9e\x87", // U+f787
"Align_stretch": "\xef\x9e\x86", // U+f786
"Align_vertical_bottom": "\xee\x80\x95", // U+e015
"Align_vertical_center": "\xee\x80\x91", // U+e011
"Align_vertical_top": "\xee\x80\x8c", // U+e00c
"All_inbox": "\xee\xa5\xbf", // U+e97f
"All_inclusive": "\xee\xac\xbd", // U+eb3d
"All_match": "\xee\x82\x93", // U+e093
"All_out": "\xee\xa4\x8b", // U+e90b
"Allergies": "\xee\x82\x94", // U+e094
"Allergy": "\xee\x99\x8e", // U+e64e
"Alt_route": "\xef\x86\x84", // U+f184
"Alternate_email": "\xee\x83\xa6", // U+e0e6
"Altitude": "\xef\xa1\xb3", // U+f873
"Ambient_screen": "\xef\x9b\x84", // U+f6c4
"Ambulance": "\xef\xa0\x83", // U+f803
"Amend": "\xef\xa0\x82", // U+f802
"Amp_stories": "\xee\xa8\x93", // U+ea13
"Analytics": "\xee\xbc\xbe", // U+ef3e
"Anchor": "\xef\x87\x8d", // U+f1cd
"Android": "\xee\xa1\x99", // U+e859
"Animated_images": "\xef\x92\x9a", // U+f49a
"Animation": "\xee\x9c\x9c", // U+e71c
"Announcement": "\xee\xa1\xbf", // U+e87f
"Aod": "\xee\xbf\x9a", // U+efda
"Aod_tablet": "\xef\xa2\x9f", // U+f89f
"Aod_watch": "\xef\x9a\xac", // U+f6ac
"Apartment": "\xee\xa9\x80", // U+ea40
"Api": "\xef\x86\xb7", // U+f1b7
"Apk_document": "\xef\xa2\x8e", // U+f88e
"Apk_install": "\xef\xa2\x8f", // U+f88f
"App_badging": "\xef\x9c\xaf", // U+f72f
"App_blocking": "\xee\xbc\xbf", // U+ef3f
"App_promo": "\xee\xa6\x81", // U+e981
"App_registration": "\xee\xbd\x80", // U+ef40
"App_settings_alt": "\xee\xbd\x81", // U+ef41
"App_shortcut": "\xee\xab\xa4", // U+eae4
"Apparel": "\xee\xbd\xbb", // U+ef7b
"Approval": "\xee\xa6\x82", // U+e982
"Approval_delegation": "\xef\xa1\x8a", // U+f84a
"Apps": "\xee\x97\x83", // U+e5c3
"Apps_outage": "\xee\x9f\x8c", // U+e7cc
"Aq": "\xef\x95\x9a", // U+f55a
"Aq_indoor": "\xef\x95\x9b", // U+f55b
"Ar_on_you": "\xee\xbd\xbc", // U+ef7c
"Ar_stickers": "\xee\xa6\x83", // U+e983
"Architecture": "\xee\xa8\xbb", // U+ea3b
"Archive": "\xee\x85\x89", // U+e149
"Area_chart": "\xee\x9d\xb0", // U+e770
"Arming_countdown": "\xee\x9e\x8a", // U+e78a
"Arrow_and_edge": "\xef\x97\x97", // U+f5d7
"Arrow_back": "\xee\x97\x84", // U+e5c4
"Arrow_back_2": "\xef\x90\xba", // U+f43a
"Arrow_back_ios": "\xee\x97\xa0", // U+e5e0
"Arrow_back_ios_new": "\xee\x8b\xaa", // U+e2ea
"Arrow_circle_down": "\xef\x86\x81", // U+f181
"Arrow_circle_left": "\xee\xaa\xa7", // U+eaa7
"Arrow_circle_right": "\xee\xaa\xaa", // U+eaaa
"Arrow_circle_up": "\xef\x86\x82", // U+f182
"Arrow_cool_down": "\xef\x92\xb6", // U+f4b6
"Arrow_downward": "\xee\x97\x9b", // U+e5db
"Arrow_downward_alt": "\xee\xa6\x84", // U+e984
"Arrow_drop_down": "\xee\x97\x85", // U+e5c5
"Arrow_drop_down_circle": "\xee\x97\x86", // U+e5c6
"Arrow_drop_up": "\xee\x97\x87", // U+e5c7
"Arrow_forward": "\xee\x97\x88", // U+e5c8
"Arrow_forward_ios": "\xee\x97\xa1", // U+e5e1
"Arrow_insert": "\xef\xa0\xb7", // U+f837
"Arrow_left": "\xee\x97\x9e", // U+e5de
"Arrow_left_alt": "\xee\xbd\xbd", // U+ef7d
"Arrow_menu_close": "\xef\x8f\x93", // U+f3d3
"Arrow_menu_open": "\xef\x8f\x92", // U+f3d2
"Arrow_or_edge": "\xef\x97\x96", // U+f5d6
"Arrow_outward": "\xef\xa3\x8e", // U+f8ce
"Arrow_range": "\xef\x9a\x9b", // U+f69b
"Arrow_right": "\xee\x97\x9f", // U+e5df
"Arrow_right_alt": "\xee\xa5\x81", // U+e941
"Arrow_selector_tool": "\xef\xa0\xaf", // U+f82f
"Arrow_split": "\xee\xa8\x84", // U+ea04
"Arrow_top_left": "\xef\x9c\xae", // U+f72e
"Arrow_top_right": "\xef\x9c\xad", // U+f72d
"Arrow_upload_progress": "\xef\x8f\xb4", // U+f3f4
"Arrow_upload_ready": "\xef\x8f\xb5", // U+f3f5
"Arrow_upward": "\xee\x97\x98", // U+e5d8
"Arrow_upward_alt": "\xee\xa6\x86", // U+e986
"Arrow_warm_up": "\xef\x92\xb5", // U+f4b5
"Arrows_more_down": "\xef\xa2\xab", // U+f8ab
"Arrows_more_up": "\xef\xa2\xac", // U+f8ac
"Arrows_outward": "\xef\x9c\xac", // U+f72c
"Art_track": "\xee\x81\xa0", // U+e060
"Article": "\xee\xbd\x82", // U+ef42
"Article_shortcut": "\xef\x96\x87", // U+f587
"Artist": "\xee\x80\x9a", // U+e01a
"Aspect_ratio": "\xee\xa1\x9b", // U+e85b
"Assessment": "\xef\x83\x8c", // U+f0cc
"Assignment": "\xee\xa1\x9d", // U+e85d
"Assignment_add": "\xef\xa1\x88", // U+f848
"Assignment_ind": "\xee\xa1\x9e", // U+e85e
"Assignment_late": "\xee\xa1\x9f", // U+e85f
"Assignment_return": "\xee\xa1\xa0", // U+e860
"Assignment_returned": "\xee\xa1\xa1", // U+e861
"Assignment_turned_in": "\xee\xa1\xa2", // U+e862
"Assist_walker": "\xef\xa3\x95", // U+f8d5
"Assistant": "\xee\x8e\x9f", // U+e39f
"Assistant_device": "\xee\xa6\x87", // U+e987
"Assistant_direction": "\xee\xa6\x88", // U+e988
"Assistant_navigation": "\xee\xa6\x89", // U+e989
"Assistant_on_hub": "\xef\x9b\x81", // U+f6c1
"Assistant_photo": "\xef\x83\x86", // U+f0c6
"Assured_workload": "\xee\xad\xaf", // U+eb6f
"Asterisk": "\xef\x94\xa5", // U+f525
"Astrophotography_auto": "\xef\x87\x99", // U+f1d9
"Astrophotography_off": "\xef\x87\x9a", // U+f1da
"Atm": "\xee\x95\xb3", // U+e573
"Atr": "\xee\xaf\x87", // U+ebc7
"Attach_email": "\xee\xa9\x9e", // U+ea5e
"Attach_file": "\xee\x88\xa6", // U+e226
"Attach_file_add": "\xef\xa1\x81", // U+f841
"Attach_file_off": "\xef\x93\x99", // U+f4d9
"Attach_money": "\xee\x88\xa7", // U+e227
"Attachment": "\xee\x8a\xbc", // U+e2bc
"Attractions": "\xee\xa9\x92", // U+ea52
"Attribution": "\xee\xbf\x9b", // U+efdb
"Audio_description": "\xef\x96\x8c", // U+f58c
"Audio_file": "\xee\xae\x82", // U+eb82
"Audio_video_receiver": "\xef\x97\x93", // U+f5d3
"Audiotrack": "\xee\x90\x85", // U+e405
"Auto_activity_zone": "\xef\xa2\xad", // U+f8ad
"Auto_awesome": "\xee\x99\x9f", // U+e65f
"Auto_awesome_mosaic": "\xee\x99\xa0", // U+e660
"Auto_awesome_motion": "\xee\x99\xa1", // U+e661
"Auto_delete": "\xee\xa9\x8c", // U+ea4c
"Auto_detect_voice": "\xef\xa0\xbe", // U+f83e
"Auto_draw_solid": "\xee\xa6\x8a", // U+e98a
"Auto_fix": "\xee\x99\xa3", // U+e663
"Auto_fix_high": "\xee\x99\xa3", // U+e663
"Auto_fix_normal": "\xee\x99\xa4", // U+e664
"Auto_fix_off": "\xee\x99\xa5", // U+e665
"Auto_graph": "\xee\x93\xbb", // U+e4fb
"Auto_label": "\xef\x9a\xbe", // U+f6be
"Auto_meeting_room": "\xef\x9a\xbf", // U+f6bf
"Auto_mode": "\xee\xb0\xa0", // U+ec20
"Auto_read_pause": "\xef\x88\x99", // U+f219
"Auto_read_play": "\xef\x88\x96", // U+f216
"Auto_schedule": "\xee\x88\x94", // U+e214
"Auto_stories": "\xee\x99\xa6", // U+e666
"Auto_timer": "\xee\xbd\xbf", // U+ef7f
"Auto_towing": "\xee\x9c\x9e", // U+e71e
"Auto_transmission": "\xef\x94\xbf", // U+f53f
"Auto_videocam": "\xef\x9b\x80", // U+f6c0
"Autofps_select": "\xee\xbf\x9c", // U+efdc
"Automation": "\xef\x90\xa1", // U+f421
"Autopause": "\xef\x9a\xb6", // U+f6b6
"Autopay": "\xef\xa1\x8b", // U+f84b
"Autoplay": "\xef\x9a\xb5", // U+f6b5
"Autorenew": "\xee\xa1\xa3", // U+e863
"Autostop": "\xef\x9a\x82", // U+f682
"Av1": "\xef\x92\xb0", // U+f4b0
"Av_timer": "\xee\x80\x9b", // U+e01b
"Avc": "\xef\x92\xaf", // U+f4af
"Avg_pace": "\xef\x9a\xbb", // U+f6bb
"Avg_time": "\xef\xa0\x93", // U+f813
"Award_star": "\xef\x98\x92", // U+f612
"Azm": "\xef\x9b\xac", // U+f6ec
"Baby_changing_station": "\xef\x86\x9b", // U+f19b
"Back_hand": "\xee\x9d\xa4", // U+e764
"Back_to_tab": "\xef\x9c\xab", // U+f72b
"Background_dot_large": "\xef\x9e\x9e", // U+f79e
"Background_dot_small": "\xef\x94\x94", // U+f514
"Background_grid_small": "\xef\x9e\x9d", // U+f79d
"Background_replace": "\xef\x88\x8a", // U+f20a
"Backlight_high": "\xef\x9f\xad", // U+f7ed
"Backlight_high_off": "\xef\x93\xaf", // U+f4ef
"Backlight_low": "\xef\x9f\xac", // U+f7ec
"Backpack": "\xef\x86\x9c", // U+f19c
"Backspace": "\xee\x85\x8a", // U+e14a
"Backup": "\xee\xa1\xa4", // U+e864
"Backup_table": "\xee\xbd\x83", // U+ef43
"Badge": "\xee\xa9\xa7", // U+ea67
"Badge_critical_battery": "\xef\x85\x96", // U+f156
"Bakery_dining": "\xee\xa9\x93", // U+ea53
"Balance": "\xee\xab\xb6", // U+eaf6
"Balcony": "\xee\x96\x8f", // U+e58f
"Ballot": "\xee\x85\xb2", // U+e172
"Bar_chart": "\xee\x89\xab", // U+e26b
"Bar_chart_4_bars": "\xef\x9a\x81", // U+f681
"Bar_chart_off": "\xef\x90\x91", // U+f411
"Barcode": "\xee\x9c\x8b", // U+e70b
"Barcode_reader": "\xef\xa1\x9c", // U+f85c
"Barcode_scanner": "\xee\x9c\x8c", // U+e70c
"Barefoot": "\xef\xa1\xb1", // U+f871
"Batch_prediction": "\xef\x83\xb5", // U+f0f5
"Bath_outdoor": "\xef\x9b\xbb", // U+f6fb
"Bath_private": "\xef\x9b\xba", // U+f6fa
"Bath_public_large": "\xef\x9b\xb9", // U+f6f9
"Bathroom": "\xee\xbf\x9d", // U+efdd
"Bathtub": "\xee\xa9\x81", // U+ea41
"Battery_0_bar": "\xee\xaf\x9c", // U+ebdc
"Battery_1_bar": "\xef\x82\x9c", // U+f09c
"Battery_20": "\xef\x82\x9c", // U+f09c
"Battery_2_bar": "\xef\x82\x9d", // U+f09d
"Battery_30": "\xef\x82\x9d", // U+f09d
"Battery_3_bar": "\xef\x82\x9e", // U+f09e
"Battery_4_bar": "\xef\x82\x9f", // U+f09f
"Battery_50": "\xef\x82\x9e", // U+f09e
"Battery_5_bar": "\xef\x82\xa0", // U+f0a0
"Battery_60": "\xef\x82\x9f", // U+f09f
"Battery_6_bar": "\xef\x82\xa1", // U+f0a1
"Battery_80": "\xef\x82\xa0", // U+f0a0
"Battery_90": "\xef\x82\xa1", // U+f0a1
"Battery_alert": "\xee\x86\x9c", // U+e19c
"Battery_change": "\xef\x9f\xab", // U+f7eb
"Battery_charging_20": "\xef\x82\xa2", // U+f0a2
"Battery_charging_30": "\xef\x82\xa3", // U+f0a3
"Battery_charging_50": "\xef\x82\xa4", // U+f0a4
"Battery_charging_60": "\xef\x82\xa5", // U+f0a5
"Battery_charging_80": "\xef\x82\xa6", // U+f0a6
"Battery_charging_90": "\xef\x82\xa7", // U+f0a7
"Battery_charging_full": "\xee\x86\xa3", // U+e1a3
"Battery_error": "\xef\x9f\xaa", // U+f7ea
"Battery_full": "\xee\x86\xa5", // U+e1a5
"Battery_full_alt": "\xef\x84\xbb", // U+f13b
"Battery_horiz_000": "\xef\xa2\xae", // U+f8ae
"Battery_horiz_050": "\xef\xa2\xaf", // U+f8af
"Battery_horiz_075": "\xef\xa2\xb0", // U+f8b0
"Battery_low": "\xef\x85\x95", // U+f155
"Battery_plus": "\xef\x9f\xa9", // U+f7e9
"Battery_profile": "\xee\x88\x86", // U+e206
"Battery_saver": "\xee\xbf\x9e", // U+efde
"Battery_share": "\xef\x99\xbe", // U+f67e
"Battery_status_good": "\xef\x99\xbd", // U+f67d
"Battery_std": "\xee\x86\xa5", // U+e1a5
"Battery_unknown": "\xee\x86\xa6", // U+e1a6
"Battery_vert_005": "\xef\xa2\xb1", // U+f8b1
"Battery_vert_020": "\xef\xa2\xb2", // U+f8b2
"Battery_vert_050": "\xef\xa2\xb3", // U+f8b3
"Battery_very_low": "\xef\x85\x96", // U+f156
"Beach_access": "\xee\xac\xbe", // U+eb3e
"Bed": "\xee\xbf\x9f", // U+efdf
"Bedroom_baby": "\xee\xbf\xa0", // U+efe0
"Bedroom_child": "\xee\xbf\xa1", // U+efe1
"Bedroom_parent": "\xee\xbf\xa2", // U+efe2
"Bedtime": "\xef\x85\x99", // U+f159
"Bedtime_off": "\xee\xad\xb6", // U+eb76
"Beenhere": "\xee\x94\xad", // U+e52d
"Bento": "\xef\x87\xb4", // U+f1f4
"Bia": "\xef\x9b\xab", // U+f6eb
"Bid_landscape": "\xee\x99\xb8", // U+e678
"Bid_landscape_disabled": "\xee\xbe\x81", // U+ef81
"Bigtop_updates": "\xee\x99\xa9", // U+e669
"Bike_dock": "\xef\x91\xbb", // U+f47b
"Bike_lane": "\xef\x91\xba", // U+f47a
"Bike_scooter": "\xee\xbd\x85", // U+ef45
"Biotech": "\xee\xa8\xba", // U+ea3a
"Blanket": "\xee\xa0\xa8", // U+e828
"Blender": "\xee\xbf\xa3", // U+efe3
"Blind": "\xef\xa3\x96", // U+f8d6
"Blinds": "\xee\x8a\x86", // U+e286
"Blinds_closed": "\xee\xb0\x9f", // U+ec1f
"Block": "\xef\x82\x8c", // U+f08c
"Blood_pressure": "\xee\x82\x97", // U+e097
"Bloodtype": "\xee\xbf\xa4", // U+efe4
"Bluetooth": "\xee\x86\xa7", // U+e1a7
"Bluetooth_audio": "\xee\x98\x8f", // U+e60f
"Bluetooth_connected": "\xee\x86\xa8", // U+e1a8
"Bluetooth_disabled": "\xee\x86\xa9", // U+e1a9
"Bluetooth_drive": "\xee\xbf\xa5", // U+efe5
"Bluetooth_searching": "\xee\x98\x8f", // U+e60f
"Blur_circular": "\xee\x8e\xa2", // U+e3a2
"Blur_linear": "\xee\x8e\xa3", // U+e3a3
"Blur_medium": "\xee\xa1\x8c", // U+e84c
"Blur_off": "\xee\x8e\xa4", // U+e3a4
"Blur_on": "\xee\x8e\xa5", // U+e3a5
"Blur_short": "\xee\xa3\x8f", // U+e8cf
"Body_fat": "\xee\x82\x98", // U+e098
"Body_system": "\xee\x82\x99", // U+e099
"Bolt": "\xee\xa8\x8b", // U+ea0b
"Bomb": "\xef\x95\xa8", // U+f568
"Book": "\xee\xa1\xae", // U+e86e
"Book_2": "\xef\x94\xbe", // U+f53e
"Book_3": "\xef\x94\xbd", // U+f53d
"Book_4": "\xef\x94\xbc", // U+f53c
"Book_4_spark": "\xef\x8f\xa0", // U+f3e0
"Book_5": "\xef\x94\xbb", // U+f53b
"Book_6": "\xef\x8f\x9f", // U+f3df
"Book_online": "\xef\x88\x97", // U+f217
"Book_ribbon": "\xef\x8f\xa7", // U+f3e7
"Bookmark": "\xee\xa3\xa7", // U+e8e7
"Bookmark_add": "\xee\x96\x98", // U+e598
"Bookmark_added": "\xee\x96\x99", // U+e599
"Bookmark_bag": "\xef\x90\x90", // U+f410
"Bookmark_border": "\xee\xa3\xa7", // U+e8e7
"Bookmark_check": "\xef\x91\x97", // U+f457
"Bookmark_flag": "\xef\x91\x96", // U+f456
"Bookmark_heart": "\xef\x91\x95", // U+f455
"Bookmark_manager": "\xef\x9e\xb1", // U+f7b1
"Bookmark_remove": "\xee\x96\x9a", // U+e59a
"Bookmark_star": "\xef\x91\x94", // U+f454
"Bookmarks": "\xee\xa6\x8b", // U+e98b
"Books_movies_and_music": "\xee\xbe\x82", // U+ef82
"Border_all": "\xee\x88\xa8", // U+e228
"Border_bottom": "\xee\x88\xa9", // U+e229
"Border_clear": "\xee\x88\xaa", // U+e22a
"Border_color": "\xee\x88\xab", // U+e22b
"Border_horizontal": "\xee\x88\xac", // U+e22c
"Border_inner": "\xee\x88\xad", // U+e22d
"Border_left": "\xee\x88\xae", // U+e22e
"Border_outer": "\xee\x88\xaf", // U+e22f
"Border_right": "\xee\x88\xb0", // U+e230
"Border_style": "\xee\x88\xb1", // U+e231
"Border_top": "\xee\x88\xb2", // U+e232
"Border_vertical": "\xee\x88\xb3", // U+e233
"Borg": "\xef\x90\x8d", // U+f40d
"Bottom_app_bar": "\xee\x9c\xb0", // U+e730
"Bottom_drawer": "\xee\x9c\xad", // U+e72d
"Bottom_navigation": "\xee\xa6\x8c", // U+e98c
"Bottom_panel_close": "\xef\x9c\xaa", // U+f72a
"Bottom_panel_open": "\xef\x9c\xa9", // U+f729
"Bottom_right_click": "\xef\x9a\x84", // U+f684
"Bottom_sheets": "\xee\xa6\x8d", // U+e98d
"Box": "\xef\x96\xa4", // U+f5a4
"Box_add": "\xef\x96\xa5", // U+f5a5
"Box_edit": "\xef\x96\xa6", // U+f5a6
"Boy": "\xee\xad\xa7", // U+eb67
"Brand_awareness": "\xee\xa6\x8e", // U+e98e
"Brand_family": "\xef\x93\xb1", // U+f4f1
"Branding_watermark": "\xee\x81\xab", // U+e06b
"Breakfast_dining": "\xee\xa9\x94", // U+ea54
"Breaking_news": "\xee\xa8\x88", // U+ea08
"Breaking_news_alt_1": "\xef\x82\xba", // U+f0ba
"Breastfeeding": "\xef\xa1\x96", // U+f856
"Brightness_1": "\xee\x8f\xba", // U+e3fa
"Brightness_2": "\xef\x80\xb6", // U+f036
"Brightness_3": "\xee\x8e\xa8", // U+e3a8
"Brightness_4": "\xee\x8e\xa9", // U+e3a9
"Brightness_5": "\xee\x8e\xaa", // U+e3aa
"Brightness_6": "\xee\x8e\xab", // U+e3ab
"Brightness_7": "\xee\x8e\xac", // U+e3ac
"Brightness_alert": "\xef\x97\x8f", // U+f5cf
"Brightness_auto": "\xee\x86\xab", // U+e1ab
"Brightness_empty": "\xef\x9f\xa8", // U+f7e8
"Brightness_high": "\xee\x86\xac", // U+e1ac
"Brightness_low": "\xee\x86\xad", // U+e1ad
"Brightness_medium": "\xee\x86\xae", // U+e1ae
"Bring_your_own_ip": "\xee\x80\x96", // U+e016
"Broadcast_on_home": "\xef\xa3\xb8", // U+f8f8
"Broadcast_on_personal": "\xef\xa3\xb9", // U+f8f9
"Broken_image": "\xee\x8e\xad", // U+e3ad
"Browse": "\xee\xac\x93", // U+eb13
"Browse_activity": "\xef\xa2\xa5", // U+f8a5
"Browse_gallery": "\xee\xaf\x91", // U+ebd1
"Browser_not_supported": "\xee\xbd\x87", // U+ef47
"Browser_updated": "\xee\x9f\x8f", // U+e7cf
"Brunch_dining": "\xee\xa9\xb3", // U+ea73
"Brush": "\xee\x8e\xae", // U+e3ae
"Bubble": "\xee\xbe\x83", // U+ef83
"Bubble_chart": "\xee\x9b\x9d", // U+e6dd
"Bubbles": "\xef\x99\x8e", // U+f64e
"Bug_report": "\xee\xa1\xa8", // U+e868
"Build": "\xef\xa3\x8d", // U+f8cd
"Build_circle": "\xee\xbd\x88", // U+ef48
"Bungalow": "\xee\x96\x91", // U+e591
"Burst_mode": "\xee\x90\xbc", // U+e43c
"Bus_alert": "\xee\xa6\x8f", // U+e98f
"Business": "\xee\x9f\xae", // U+e7ee
"Business_center": "\xee\xac\xbf", // U+eb3f
"Business_chip": "\xef\xa1\x8c", // U+f84c
"Business_messages": "\xee\xbe\x84", // U+ef84
"Buttons_alt": "\xee\x9c\xaf", // U+e72f
"Cabin": "\xee\x96\x89", // U+e589
"Cable": "\xee\xbf\xa6", // U+efe6
"Cable_car": "\xef\x91\xb9", // U+f479
"Cached": "\xee\xa1\xaa", // U+e86a
"Cadence": "\xef\x92\xb4", // U+f4b4
"Cake": "\xee\x9f\xa9", // U+e7e9
"Cake_add": "\xef\xa1\x9b", // U+f85b
"Calculate": "\xee\xa9\x9f", // U+ea5f
"Calendar_add_on": "\xee\xbe\x85", // U+ef85
"Calendar_apps_script": "\xef\x82\xbb", // U+f0bb
"Calendar_clock": "\xef\x95\x80", // U+f540
"Calendar_month": "\xee\xaf\x8c", // U+ebcc
"Calendar_today": "\xee\xa4\xb5", // U+e935
"Calendar_view_day": "\xee\xa4\xb6", // U+e936
"Calendar_view_month": "\xee\xbf\xa7", // U+efe7
"Calendar_view_week": "\xee\xbf\xa8", // U+efe8
"Call": "\xef\x83\x94", // U+f0d4
"Call_end": "\xef\x82\xbc", // U+f0bc
"Call_end_alt": "\xef\x82\xbc", // U+f0bc
"Call_log": "\xee\x82\x8e", // U+e08e
"Call_made": "\xee\x82\xb2", // U+e0b2
"Call_merge": "\xee\x82\xb3", // U+e0b3
"Call_missed": "\xee\x82\xb4", // U+e0b4
"Call_missed_outgoing": "\xee\x83\xa4", // U+e0e4
"Call_quality": "\xef\x99\x92", // U+f652
"Call_received": "\xee\x82\xb5", // U+e0b5
"Call_split": "\xee\x82\xb6", // U+e0b6
"Call_to_action": "\xee\x81\xac", // U+e06c
"Camera": "\xee\x8e\xaf", // U+e3af
"Camera_alt": "\xee\x90\x92", // U+e412
"Camera_enhance": "\xee\xa3\xbc", // U+e8fc
"Camera_front": "\xee\x8e\xb1", // U+e3b1
"Camera_indoor": "\xee\xbf\xa9", // U+efe9
"Camera_outdoor": "\xee\xbf\xaa", // U+efea
"Camera_rear": "\xee\x8e\xb2", // U+e3b2
"Camera_roll": "\xee\x8e\xb3", // U+e3b3
"Camera_video": "\xef\x9e\xa6", // U+f7a6
"Cameraswitch": "\xee\xbf\xab", // U+efeb
"Campaign": "\xee\xbd\x89", // U+ef49
"Camping": "\xef\xa2\xa2", // U+f8a2
"Cancel": "\xee\xa2\x88", // U+e888
"Cancel_presentation": "\xee\x83\xa9", // U+e0e9
"Cancel_schedule_send": "\xee\xa8\xb9", // U+ea39
"Candle": "\xef\x96\x88", // U+f588
"Candlestick_chart": "\xee\xab\x94", // U+ead4
"Captive_portal": "\xef\x9c\xa8", // U+f728
"Capture": "\xef\x9c\xa7", // U+f727
"Car_crash": "\xee\xaf\xb2", // U+ebf2
"Car_rental": "\xee\xa9\x95", // U+ea55
"Car_repair": "\xee\xa9\x96", // U+ea56
"Car_tag": "\xef\x93\xa3", // U+f4e3
"Card_giftcard": "\xee\xa3\xb6", // U+e8f6
"Card_membership": "\xee\xa3\xb7", // U+e8f7
"Card_travel": "\xee\xa3\xb8", // U+e8f8
"Cardio_load": "\xef\x92\xb9", // U+f4b9
"Cardiology": "\xee\x82\x9c", // U+e09c
"Cards": "\xee\xa6\x91", // U+e991
"Carpenter": "\xef\x87\xb8", // U+f1f8
"Carry_on_bag": "\xee\xac\x88", // U+eb08
"Carry_on_bag_checked": "\xee\xac\x8b", // U+eb0b
"Carry_on_bag_inactive": "\xee\xac\x8a", // U+eb0a
"Carry_on_bag_question": "\xee\xac\x89", // U+eb09
"Cases": "\xee\xa6\x92", // U+e992
"Casino": "\xee\xad\x80", // U+eb40
"Cast": "\xee\x8c\x87", // U+e307
"Cast_connected": "\xee\x8c\x88", // U+e308
"Cast_for_education": "\xee\xbf\xac", // U+efec
"Cast_pause": "\xef\x97\xb0", // U+f5f0
"Cast_warning": "\xef\x97\xaf", // U+f5ef
"Castle": "\xee\xaa\xb1", // U+eab1
"Category": "\xee\x95\xb4", // U+e574
"Category_search": "\xef\x90\xb7", // U+f437
"Celebration": "\xee\xa9\xa5", // U+ea65
"Cell_merge": "\xef\xa0\xae", // U+f82e
"Cell_tower": "\xee\xae\xba", // U+ebba
"Cell_wifi": "\xee\x83\xac", // U+e0ec
"Center_focus_strong": "\xee\x8e\xb4", // U+e3b4
"Center_focus_weak": "\xee\x8e\xb5", // U+e3b5
"Chair": "\xee\xbf\xad", // U+efed
"Chair_alt": "\xee\xbf\xae", // U+efee
"Chalet": "\xee\x96\x85", // U+e585
"Change_circle": "\xee\x8b\xa7", // U+e2e7
"Change_history": "\xee\xa1\xab", // U+e86b
"Charger": "\xee\x8a\xae", // U+e2ae
"Charging_station": "\xef\x86\x9d", // U+f19d
"Chart_data": "\xee\x91\xb3", // U+e473
"Chat": "\xee\x83\x89", // U+e0c9
"Chat_add_on": "\xef\x83\xb3", // U+f0f3
"Chat_apps_script": "\xef\x82\xbd", // U+f0bd
"Chat_bubble": "\xee\x83\x8b", // U+e0cb
"Chat_bubble_outline": "\xee\x83\x8b", // U+e0cb
"Chat_error": "\xef\x9e\xac", // U+f7ac
"Chat_info": "\xef\x94\xab", // U+f52b
"Chat_paste_go": "\xef\x9a\xbd", // U+f6bd
"Chat_paste_go_2": "\xef\x8f\x8b", // U+f3cb
"Check": "\xee\x97\x8a", // U+e5ca
"Check_box": "\xee\xa0\xb4", // U+e834
"Check_box_outline_blank": "\xee\xa0\xb5", // U+e835
"Check_circle": "\xef\x82\xbe", // U+f0be
"Check_circle_filled": "\xef\x82\xbe", // U+f0be
"Check_circle_outline": "\xef\x82\xbe", // U+f0be
"Check_in_out": "\xef\x9b\xb6", // U+f6f6
"Check_indeterminate_small": "\xef\xa2\x8a", // U+f88a
"Check_small": "\xef\xa2\x8b", // U+f88b
"Checkbook": "\xee\x9c\x8d", // U+e70d
"Checked_bag": "\xee\xac\x8c", // U+eb0c
"Checked_bag_question": "\xee\xac\x8d", // U+eb0d
"Checklist": "\xee\x9a\xb1", // U+e6b1
"Checklist_rtl": "\xee\x9a\xb3", // U+e6b3
"Checkroom": "\xef\x86\x9e", // U+f19e
"Cheer": "\xef\x9a\xa8", // U+f6a8
"Chess": "\xef\x97\xa7", // U+f5e7
"Chess_pawn": "\xef\x8e\xb6", // U+f3b6
"Chevron_backward": "\xef\x91\xab", // U+f46b
"Chevron_forward": "\xef\x91\xaa", // U+f46a
"Chevron_left": "\xee\x97\x8b", // U+e5cb
"Chevron_right": "\xee\x97\x8c", // U+e5cc
"Child_care": "\xee\xad\x81", // U+eb41
"Child_friendly": "\xee\xad\x82", // U+eb42
"Chip_extraction": "\xef\xa0\xa1", // U+f821
"Chips": "\xee\xa6\x93", // U+e993
"Chrome_reader_mode": "\xee\xa1\xad", // U+e86d
"Chromecast_2": "\xef\x85\xbb", // U+f17b
"Chromecast_device": "\xee\xa0\xbc", // U+e83c
"Chronic": "\xee\xae\xb2", // U+ebb2
"Church": "\xee\xaa\xae", // U+eaae
"Cinematic_blur": "\xef\xa1\x93", // U+f853
"Circle": "\xee\xbd\x8a", // U+ef4a
"Circle_notifications": "\xee\xa6\x94", // U+e994
"Circles": "\xee\x9f\xaa", // U+e7ea
"Circles_ext": "\xee\x9f\xac", // U+e7ec
"Clarify": "\xef\x82\xbf", // U+f0bf
"Class": "\xee\xa1\xae", // U+e86e
"Clean_hands": "\xef\x88\x9f", // U+f21f
"Cleaning": "\xee\xa6\x95", // U+e995
"Cleaning_bucket": "\xef\xa2\xb4", // U+f8b4
"Cleaning_services": "\xef\x83\xbf", // U+f0ff
"Clear": "\xee\x97\x8d", // U+e5cd
"Clear_all": "\xee\x82\xb8", // U+e0b8
"Clear_day": "\xef\x85\x97", // U+f157
"Clear_night": "\xef\x85\x99", // U+f159
"Climate_mini_split": "\xef\xa2\xb5", // U+f8b5
"Clinical_notes": "\xee\x82\x9e", // U+e09e
"Clock_loader_10": "\xef\x9c\xa6", // U+f726
"Clock_loader_20": "\xef\x9c\xa5", // U+f725
"Clock_loader_40": "\xef\x9c\xa4", // U+f724
"Clock_loader_60": "\xef\x9c\xa3", // U+f723
"Clock_loader_80": "\xef\x9c\xa2", // U+f722
"Clock_loader_90": "\xef\x9c\xa1", // U+f721
"Close": "\xee\x97\x8d", // U+e5cd
"Close_fullscreen": "\xef\x87\x8f", // U+f1cf
"Close_small": "\xef\x94\x88", // U+f508
"Closed_caption": "\xee\xa6\x96", // U+e996
"Closed_caption_add": "\xef\x92\xae", // U+f4ae
"Closed_caption_disabled": "\xef\x87\x9c", // U+f1dc
"Closed_caption_off": "\xee\xa6\x96", // U+e996
"Cloud": "\xef\x85\x9c", // U+f15c
"Cloud_alert": "\xef\x8f\x8c", // U+f3cc
"Cloud_circle": "\xee\x8a\xbe", // U+e2be
"Cloud_done": "\xee\x8a\xbf", // U+e2bf
"Cloud_download": "\xee\x8b\x80", // U+e2c0
"Cloud_off": "\xee\x8b\x81", // U+e2c1
"Cloud_queue": "\xef\x85\x9c", // U+f15c
"Cloud_sync": "\xee\xad\x9a", // U+eb5a
"Cloud_upload": "\xee\x8b\x83", // U+e2c3
"Cloudy": "\xef\x85\x9c", // U+f15c
"Cloudy_filled": "\xef\x85\x9c", // U+f15c
"Cloudy_snowing": "\xee\xa0\x90", // U+e810
"Co2": "\xee\x9e\xb0", // U+e7b0
"Co_present": "\xee\xab\xb0", // U+eaf0
"Code": "\xee\xa1\xaf", // U+e86f
"Code_blocks": "\xef\xa1\x8d", // U+f84d
"Code_off": "\xee\x93\xb3", // U+e4f3
"Coffee": "\xee\xbf\xaf", // U+efef
"Coffee_maker": "\xee\xbf\xb0", // U+eff0
"Cognition": "\xee\x82\x9f", // U+e09f
"Cognition_2": "\xef\x8e\xb5", // U+f3b5
"Collapse_all": "\xee\xa5\x84", // U+e944
"Collapse_content": "\xef\x94\x87", // U+f507
"Collections": "\xee\x8f\x93", // U+e3d3
"Collections_bookmark": "\xee\x90\xb1", // U+e431
"Color_lens": "\xee\x90\x8a", // U+e40a
"Colorize": "\xee\x8e\xb8", // U+e3b8
"Colors": "\xee\xa6\x97", // U+e997
"Combine_columns": "\xef\x90\xa0", // U+f420
"Comedy_mask": "\xef\x93\x96", // U+f4d6
"Comic_bubble": "\xef\x97\x9d", // U+f5dd
"Comment": "\xee\x89\x8c", // U+e24c
"Comment_bank": "\xee\xa9\x8e", // U+ea4e
"Comments_disabled": "\xee\x9e\xa2", // U+e7a2
"Commit": "\xee\xab\xb5", // U+eaf5
"Communication": "\xee\x89\xbc", // U+e27c
"Communities": "\xee\xac\x96", // U+eb16
"Communities_filled": "\xee\xac\x96", // U+eb16
"Commute": "\xee\xa5\x80", // U+e940
"Compare": "\xee\x8e\xb9", // U+e3b9
"Compare_arrows": "\xee\xa4\x95", // U+e915
"Compass_calibration": "\xee\x95\xbc", // U+e57c
"Component_exchange": "\xef\x87\xa7", // U+f1e7
"Compost": "\xee\x9d\xa1", // U+e761
"Compress": "\xee\xa5\x8d", // U+e94d
"Computer": "\xee\x8c\x9e", // U+e31e
"Concierge": "\xef\x95\xa1", // U+f561
"Conditions": "\xee\x82\xa0", // U+e0a0
"Confirmation_number": "\xee\x98\xb8", // U+e638
"Congenital": "\xee\x82\xa1", // U+e0a1
"Connect_without_contact": "\xef\x88\xa3", // U+f223
"Connected_tv": "\xee\xa6\x98", // U+e998
"Connecting_airports": "\xee\x9f\x89", // U+e7c9
"Construction": "\xee\xa8\xbc", // U+ea3c
"Contact_emergency": "\xef\xa3\x91", // U+f8d1
"Contact_mail": "\xee\x83\x90", // U+e0d0
"Contact_page": "\xef\x88\xae", // U+f22e
"Contact_phone": "\xef\x83\x80", // U+f0c0
"Contact_phone_filled": "\xef\x83\x80", // U+f0c0
"Contact_support": "\xee\xa5\x8c", // U+e94c
"Contactless": "\xee\xa9\xb1", // U+ea71
"Contactless_off": "\xef\xa1\x98", // U+f858
"Contacts": "\xee\x82\xba", // U+e0ba
"Contacts_product": "\xee\xa6\x99", // U+e999
"Content_copy": "\xee\x85\x8d", // U+e14d
"Content_cut": "\xee\x85\x8e", // U+e14e
"Content_paste": "\xee\x85\x8f", // U+e14f
"Content_paste_go": "\xee\xaa\x8e", // U+ea8e
"Content_paste_off": "\xee\x93\xb8", // U+e4f8
"Content_paste_search": "\xee\xaa\x9b", // U+ea9b
"Contextual_token": "\xef\x92\x86", // U+f486
"Contextual_token_add": "\xef\x92\x85", // U+f485
"Contract": "\xef\x96\xa0", // U+f5a0
"Contract_delete": "\xef\x96\xa2", // U+f5a2
"Contract_edit": "\xef\x96\xa1", // U+f5a1
"Contrast": "\xee\xac\xb7", // U+eb37
"Contrast_circle": "\xef\x92\x9f", // U+f49f
"Contrast_rtl_off": "\xee\xb1\xb2", // U+ec72
"Contrast_square": "\xef\x92\xa0", // U+f4a0
"Control_camera": "\xee\x81\xb4", // U+e074
"Control_point": "\xee\x8e\xba", // U+e3ba
"Control_point_duplicate": "\xee\x8e\xbb", // U+e3bb
"Controller_gen": "\xee\xa0\xbd", // U+e83d
"Conversion_path": "\xef\x83\x81", // U+f0c1
"Conversion_path_off": "\xef\x9e\xb4", // U+f7b4
"Convert_to_text": "\xef\x90\x9f", // U+f41f
"Conveyor_belt": "\xef\xa1\xa7", // U+f867
"Cookie": "\xee\xaa\xac", // U+eaac
"Cookie_off": "\xef\x9e\x9a", // U+f79a
"Cooking": "\xee\x8a\xb6", // U+e2b6
"Cool_to_dry": "\xee\x89\xb6", // U+e276
"Copy_all": "\xee\x8b\xac", // U+e2ec
"Copyright": "\xee\xa4\x8c", // U+e90c
"Coronavirus": "\xef\x88\xa1", // U+f221
"Corporate_fare": "\xef\x87\x90", // U+f1d0
"Cottage": "\xee\x96\x87", // U+e587
"Counter_0": "\xef\x9e\x85", // U+f785
"Counter_1": "\xef\x9e\x84", // U+f784
"Counter_2": "\xef\x9e\x83", // U+f783
"Counter_3": "\xef\x9e\x82", // U+f782
"Counter_4": "\xef\x9e\x81", // U+f781
"Counter_5": "\xef\x9e\x80", // U+f780
"Counter_6": "\xef\x9d\xbf", // U+f77f
"Counter_7": "\xef\x9d\xbe", // U+f77e
"Counter_8": "\xef\x9d\xbd", // U+f77d
"Counter_9": "\xef\x9d\xbc", // U+f77c
"Countertops": "\xef\x87\xb7", // U+f1f7
"Create": "\xef\x82\x97", // U+f097
"Create_new_folder": "\xee\x8b\x8c", // U+e2cc
"Credit_card": "\xee\xa2\xa1", // U+e8a1
"Credit_card_clock": "\xef\x90\xb8", // U+f438
"Credit_card_gear": "\xef\x94\xad", // U+f52d
"Credit_card_heart": "\xef\x94\xac", // U+f52c
"Credit_card_off": "\xee\x93\xb4", // U+e4f4
"Credit_score": "\xee\xbf\xb1", // U+eff1
"Crib": "\xee\x96\x88", // U+e588
"Crisis_alert": "\xee\xaf\xa9", // U+ebe9
"Crop": "\xee\x8e\xbe", // U+e3be
"Crop_16_9": "\xee\x8e\xbc", // U+e3bc
"Crop_3_2": "\xee\x8e\xbd", // U+e3bd
"Crop_5_4": "\xee\x8e\xbf", // U+e3bf
"Crop_7_5": "\xee\x8f\x80", // U+e3c0
"Crop_9_16": "\xef\x95\x89", // U+f549
"Crop_din": "\xee\x8f\x86", // U+e3c6
"Crop_free": "\xee\x8f\x82", // U+e3c2
"Crop_landscape": "\xee\x8f\x83", // U+e3c3
"Crop_original": "\xee\x8f\xb4", // U+e3f4
"Crop_portrait": "\xee\x8f\x85", // U+e3c5
"Crop_rotate": "\xee\x90\xb7", // U+e437
"Crop_square": "\xee\x8f\x86", // U+e3c6
"Crossword": "\xef\x97\xa5", // U+f5e5
"Crowdsource": "\xee\xac\x98", // U+eb18
"Cruelty_free": "\xee\x9e\x99", // U+e799
"Css": "\xee\xae\x93", // U+eb93
"Csv": "\xee\x9b\x8f", // U+e6cf
"Currency_bitcoin": "\xee\xaf\x85", // U+ebc5
"Currency_exchange": "\xee\xad\xb0", // U+eb70
"Currency_franc": "\xee\xab\xba", // U+eafa
"Currency_lira": "\xee\xab\xaf", // U+eaef
"Currency_pound": "\xee\xab\xb1", // U+eaf1
"Currency_ruble": "\xee\xab\xac", // U+eaec
"Currency_rupee": "\xee\xab\xb7", // U+eaf7
"Currency_rupee_circle": "\xef\x91\xa0", // U+f460
"Currency_yen": "\xee\xab\xbb", // U+eafb
"Currency_yuan": "\xee\xab\xb9", // U+eaf9
"Curtains": "\xee\xb0\x9e", // U+ec1e
"Curtains_closed": "\xee\xb0\x9d", // U+ec1d
"Custom_typography": "\xee\x9c\xb2", // U+e732
"Cut": "\xef\x82\x8b", // U+f08b
"Cycle": "\xef\xa1\x94", // U+f854
"Cyclone": "\xee\xaf\x95", // U+ebd5
"Dangerous": "\xee\xa6\x9a", // U+e99a
"Dark_mode": "\xee\x94\x9c", // U+e51c
"Dashboard": "\xee\xa1\xb1", // U+e871
"Dashboard_2": "\xef\x8f\xaa", // U+f3ea
"Dashboard_customize": "\xee\xa6\x9b", // U+e99b
"Data_alert": "\xef\x9f\xb6", // U+f7f6
"Data_array": "\xee\xab\x91", // U+ead1
"Data_check": "\xef\x9f\xb2", // U+f7f2
"Data_exploration": "\xee\x9d\xaf", // U+e76f
"Data_info_alert": "\xef\x9f\xb5", // U+f7f5
"Data_loss_prevention": "\xee\x8b\x9c", // U+e2dc
"Data_object": "\xee\xab\x93", // U+ead3
"Data_saver_off": "\xee\xbf\xb2", // U+eff2
"Data_saver_on": "\xee\xbf\xb3", // U+eff3
"Data_table": "\xee\xa6\x9c", // U+e99c
"Data_thresholding": "\xee\xae\x9f", // U+eb9f
"Data_usage": "\xee\xbf\xb2", // U+eff2
"Database": "\xef\x88\x8e", // U+f20e
"Database_off": "\xef\x90\x94", // U+f414
"Database_upload": "\xef\x8f\x9c", // U+f3dc
"Dataset": "\xef\xa3\xae", // U+f8ee
"Dataset_linked": "\xef\xa3\xaf", // U+f8ef
"Date_range": "\xee\xa4\x96", // U+e916
"Deblur": "\xee\xad\xb7", // U+eb77
"Deceased": "\xee\x82\xa5", // U+e0a5
"Decimal_decrease": "\xef\xa0\xad", // U+f82d
"Decimal_increase": "\xef\xa0\xac", // U+f82c
"Deck": "\xee\xa9\x82", // U+ea42
"Dehaze": "\xee\x8f\x87", // U+e3c7
"Delete": "\xee\xa4\xae", // U+e92e
"Delete_forever": "\xee\xa4\xab", // U+e92b
"Delete_history": "\xef\x94\x98", // U+f518
"Delete_outline": "\xee\xa4\xae", // U+e92e
"Delete_sweep": "\xee\x85\xac", // U+e16c
"Delivery_dining": "\xee\xac\xa8", // U+eb28
"Demography": "\xee\x92\x89", // U+e489
"Density_large": "\xee\xae\xa9", // U+eba9
"Density_medium": "\xee\xae\x9e", // U+eb9e
"Density_small": "\xee\xae\xa8", // U+eba8
"Dentistry": "\xee\x82\xa6", // U+e0a6
"Departure_board": "\xee\x95\xb6", // U+e576
"Deployed_code": "\xef\x9c\xa0", // U+f720
"Deployed_code_account": "\xef\x94\x9b", // U+f51b
"Deployed_code_alert": "\xef\x97\xb2", // U+f5f2
"Deployed_code_history": "\xef\x97\xb3", // U+f5f3
"Deployed_code_update": "\xef\x97\xb4", // U+f5f4
"Dermatology": "\xee\x82\xa7", // U+e0a7
"Description": "\xee\xa1\xb3", // U+e873
"Deselect": "\xee\xae\xb6", // U+ebb6
"Design_services": "\xef\x84\x8a", // U+f10a
"Desk": "\xef\xa3\xb4", // U+f8f4
"Deskphone": "\xef\x9f\xba", // U+f7fa
"Desktop_access_disabled": "\xee\xa6\x9d", // U+e99d
"Desktop_cloud": "\xef\x8f\x9b", // U+f3db
"Desktop_cloud_stack": "\xef\x8e\xbe", // U+f3be
"Desktop_landscape": "\xef\x91\x9e", // U+f45e
"Desktop_landscape_add": "\xef\x90\xb9", // U+f439
"Desktop_mac": "\xee\x8c\x8b", // U+e30b
"Desktop_portrait": "\xef\x91\x9d", // U+f45d
"Desktop_windows": "\xee\x8c\x8c", // U+e30c
"Destruction": "\xef\x96\x85", // U+f585
"Details": "\xee\x8f\x88", // U+e3c8
"Detection_and_zone": "\xee\x8a\x9f", // U+e29f
"Detector": "\xee\x8a\x82", // U+e282
"Detector_alarm": "\xee\x87\xb7", // U+e1f7
"Detector_battery": "\xee\x88\x84", // U+e204
"Detector_co": "\xee\x8a\xaf", // U+e2af
"Detector_offline": "\xee\x88\xa3", // U+e223
"Detector_smoke": "\xee\x8a\x85", // U+e285
"Detector_status": "\xee\x87\xa8", // U+e1e8
"Developer_board": "\xee\x8c\x8d", // U+e30d
"Developer_board_off": "\xee\x93\xbf", // U+e4ff
"Developer_guide": "\xee\xa6\x9e", // U+e99e
"Developer_mode": "\xee\x86\xb0", // U+e1b0
"Developer_mode_tv": "\xee\xa1\xb4", // U+e874
"Device_hub": "\xee\x8c\xb5", // U+e335
"Device_reset": "\xee\xa2\xb3", // U+e8b3
"Device_thermostat": "\xee\x87\xbf", // U+e1ff
"Device_unknown": "\xee\x8c\xb9", // U+e339
"Devices": "\xee\x8c\xa6", // U+e326
"Devices_fold": "\xee\xaf\x9e", // U+ebde
"Devices_fold_2": "\xef\x90\x86", // U+f406
"Devices_off": "\xef\x9e\xa5", // U+f7a5
"Devices_other": "\xee\x8c\xb7", // U+e337
"Devices_wearables": "\xef\x9a\xab", // U+f6ab
"Dew_point": "\xef\xa1\xb9", // U+f879
"Diagnosis": "\xee\x82\xa8", // U+e0a8
"Diagonal_line": "\xef\x90\x9e", // U+f41e
"Dialer_sip": "\xee\x82\xbb", // U+e0bb
"Dialogs": "\xee\xa6\x9f", // U+e99f
"Dialpad": "\xee\x82\xbc", // U+e0bc
"Diamond": "\xee\xab\x95", // U+ead5
"Dictionary": "\xef\x94\xb9", // U+f539
"Difference": "\xee\xad\xbd", // U+eb7d
"Digital_out_of_home": "\xef\x87\x9e", // U+f1de
"Digital_wellbeing": "\xee\xbe\x86", // U+ef86
"Dining": "\xee\xbf\xb4", // U+eff4
"Dinner_dining": "\xee\xa9\x97", // U+ea57
"Directions": "\xee\x94\xae", // U+e52e
"Directions_alt": "\xef\xa2\x80", // U+f880
"Directions_alt_off": "\xef\xa2\x81", // U+f881
"Directions_bike": "\xee\x94\xaf", // U+e52f
"Directions_boat": "\xee\xbf\xb5", // U+eff5
"Directions_boat_filled": "\xee\xbf\xb5", // U+eff5
"Directions_bus": "\xee\xbf\xb6", // U+eff6
"Directions_bus_filled": "\xee\xbf\xb6", // U+eff6
"Directions_car": "\xee\xbf\xb7", // U+eff7
"Directions_car_filled": "\xee\xbf\xb7", // U+eff7
"Directions_off": "\xef\x84\x8f", // U+f10f
"Directions_railway": "\xee\xbf\xb8", // U+eff8
"Directions_railway_2": "\xef\x91\xa2", // U+f462
"Directions_railway_filled": "\xee\xbf\xb8", // U+eff8
"Directions_run": "\xee\x95\xa6", // U+e566
"Directions_subway": "\xee\xbf\xba", // U+effa
"Directions_subway_filled": "\xee\xbf\xba", // U+effa
"Directions_transit": "\xee\xbf\xba", // U+effa
"Directions_transit_filled": "\xee\xbf\xba", // U+effa
"Directions_walk": "\xee\x94\xb6", // U+e536
"Directory_sync": "\xee\x8e\x94", // U+e394
"Dirty_lens": "\xee\xbd\x8b", // U+ef4b
"Disabled_by_default": "\xef\x88\xb0", // U+f230