-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSegoeMDL2AssetsFont.cs
1368 lines (1368 loc) · 67.2 KB
/
SegoeMDL2AssetsFont.cs
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
/*!
Segoe MDL2 Assets Font Class - 1.0
Copyright © 2020 Houssem Ayadi
Licensed under the MIT license.
https://github.com/hassou/SegoeMDL2AssetsFontClass
*/
static class IconFont
{
public const string GlobalNavigationButton = "\ue700";
public const string Wifi = "\ue701";
public const string Bluetooth = "\ue702";
public const string Connect = "\ue703";
public const string InternetSharing = "\ue704";
public const string VPN = "\ue705";
public const string Brightness = "\ue706";
public const string MapPin = "\ue707";
public const string QuietHours = "\ue708";
public const string Airplane = "\ue709";
public const string Tablet = "\ue70a";
public const string QuickNote = "\ue70b";
public const string RememberedDevice = "\ue70c";
public const string ChevronDown = "\ue70d";
public const string ChevronUp = "\ue70e";
public const string Edit = "\ue70f";
public const string Add = "\ue710";
public const string Cancel = "\ue711";
public const string More = "\ue712";
public const string Setting = "\ue713";
public const string Video = "\ue714";
public const string Mail = "\ue715";
public const string People = "\ue716";
public const string Phone = "\ue717";
public const string Pin = "\ue718";
public const string Shop = "\ue719";
public const string Stop = "\ue71a";
public const string Link = "\ue71b";
public const string Filter = "\ue71c";
public const string AllApps = "\ue71d";
public const string Zoom = "\ue71e";
public const string ZoomOut = "\ue71f";
public const string Microphone = "\ue720";
public const string Search = "\ue721";
public const string Camera = "\ue722";
public const string Attach = "\ue723";
public const string Send = "\ue724";
public const string SendFill = "\ue725";
public const string WalkSolid = "\ue726";
public const string InPrivate = "\ue727";
public const string FavoriteList = "\ue728";
public const string PageSolid = "\ue729";
public const string Forward = "\ue72a";
public const string Back = "\ue72b";
public const string Refresh = "\ue72c";
public const string Share = "\ue72d";
public const string Lock = "\ue72e";
public const string ReportHacked = "\ue730";
public const string EMI = "\ue731";
public const string FavoriteStar = "\ue734";
public const string FavoriteStarFill = "\ue735";
public const string ReadingMode = "\ue736";
public const string Favicon = "\ue737";
public const string Remove = "\ue738";
public const string Checkbox = "\ue739";
public const string CheckboxComposite = "\ue73a";
public const string CheckboxFill = "\ue73b";
public const string CheckboxIndeterminate = "\ue73c";
public const string CheckboxCompositeReversed = "\ue73d";
public const string CheckMark = "\ue73e";
public const string BackToWindow = "\ue73f";
public const string FullScreen = "\ue740";
public const string ResizeTouchLarger = "\ue741";
public const string ResizeTouchSmaller = "\ue742";
public const string ResizeMouseSmall = "\ue743";
public const string ResizeMouseMedium = "\ue744";
public const string ResizeMouseWide = "\ue745";
public const string ResizeMouseTall = "\ue746";
public const string ResizeMouseLarge = "\ue747";
public const string SwitchUser = "\ue748";
public const string Print = "\ue749";
public const string Up = "\ue74a";
public const string Down = "\ue74b";
public const string OEM = "\ue74c";
public const string Delete = "\ue74d";
public const string Save = "\ue74e";
public const string Mute = "\ue74f";
public const string BackSpaceQWERTY = "\ue750";
public const string ReturnKey = "\ue751";
public const string UpArrowShiftKey = "\ue752";
public const string Cloud = "\ue753";
public const string Flashlight = "\ue754";
public const string RotationLock = "\ue755";
public const string CommandPrompt = "\ue756";
public const string SIPMove = "\ue759";
public const string SIPUndock = "\ue75a";
public const string SIPRedock = "\ue75b";
public const string EraseTool = "\ue75c";
public const string UnderscoreSpace = "\ue75d";
public const string GripperTool = "\ue75e";
public const string Dialpad = "\ue75f";
public const string PageLeft = "\ue760";
public const string PageRight = "\ue761";
public const string MultiSelect = "\ue762";
public const string KeyboardLeftHanded = "\ue763";
public const string KeyboardRightHanded = "\ue764";
public const string KeyboardClassic = "\ue765";
public const string KeyboardSplit = "\ue766";
public const string Volume = "\ue767";
public const string Play = "\ue768";
public const string Pause = "\ue769";
public const string ChevronLeft = "\ue76b";
public const string ChevronRight = "\ue76c";
public const string InkingTool = "\ue76d";
public const string Emoji2 = "\ue76e";
public const string GripperBarHorizontal = "\ue76f";
public const string System = "\ue770";
public const string Personalize = "\ue771";
public const string Devices = "\ue772";
public const string SearchAndApps = "\ue773";
public const string Globe = "\ue774";
public const string TimeLanguage = "\ue775";
public const string EaseOfAccess = "\ue776";
public const string UpdateRestore = "\ue777";
public const string HangUp = "\ue778";
public const string ContactInfo = "\ue779";
public const string Unpin = "\ue77a";
public const string Contact = "\ue77b";
public const string Memo = "\ue77c";
public const string IncomingCall = "\ue77e";
public const string Paste = "\ue77f";
public const string PhoneBook = "\ue780";
public const string LEDLight = "\ue781";
public const string Error = "\ue783";
public const string GripperBarVertical = "\ue784";
public const string Unlock = "\ue785";
public const string Slideshow = "\ue786";
public const string Calendar = "\ue787";
public const string GripperResize = "\ue788";
public const string Megaphone = "\ue789";
public const string Trim = "\ue78a";
public const string NewWindow = "\ue78b";
public const string SaveLocal = "\ue78c";
public const string Color = "\ue790";
public const string DataSense = "\ue791";
public const string SaveAs = "\ue792";
public const string Light = "\ue793";
public const string AspectRatio = "\ue799";
public const string DataSenseBar = "\ue7a5";
public const string Redo = "\ue7a6";
public const string Undo = "\ue7a7";
public const string Crop = "\ue7a8";
public const string OpenWith = "\ue7ac";
public const string Rotate = "\ue7ad";
public const string RedEye = "\ue7b3";
public const string SetlockScreen = "\ue7b5";
public const string MapPin2 = "\ue7b7";
public const string Package = "\ue7b8";
public const string Warning = "\ue7ba";
public const string ReadingList = "\ue7bc";
public const string Education = "\ue7be";
public const string ShoppingCart = "\ue7bf";
public const string Train = "\ue7c0";
public const string Flag = "\ue7c1";
public const string Page = "\ue7c3";
public const string TaskView = "\ue7c4";
public const string BrowsePhotos = "\ue7c5";
public const string HalfStarLeft = "\ue7c6";
public const string HalfStarRight = "\ue7c7";
public const string Record = "\ue7c8";
public const string TouchPointer = "\ue7c9";
public const string LangJPN = "\ue7de";
public const string Ferry = "\ue7e3";
public const string Highlight = "\ue7e6";
public const string ActionCenterNotification = "\ue7e7";
public const string PowerButton = "\ue7e8";
public const string ResizeTouchNarrower = "\ue7ea";
public const string ResizeTouchShorter = "\ue7eb";
public const string DrivingMode = "\ue7ec";
public const string RingerSilent = "\ue7ed";
public const string OtherUser = "\ue7ee";
public const string Admin = "\ue7ef";
public const string CC = "\ue7f0";
public const string SDCard = "\ue7f1";
public const string CallForwarding = "\ue7f2";
public const string SettingsDisplaySound = "\ue7f3";
public const string TVMonitor = "\ue7f4";
public const string Speakers = "\ue7f5";
public const string Headphone = "\ue7f6";
public const string DeviceLaptopPic = "\ue7f7";
public const string DeviceLaptopNoPic = "\ue7f8";
public const string DeviceMonitorRightPic = "\ue7f9";
public const string DeviceMonitorLeftPic = "\ue7fa";
public const string DeviceMonitorNoPic = "\ue7fb";
public const string Game = "\ue7fc";
public const string HorizontalTabKey = "\ue7fd";
public const string StreetsideSplitMinimize = "\ue802";
public const string StreetsideSplitExpand = "\ue803";
public const string Car = "\ue804";
public const string Walk = "\ue805";
public const string Bus = "\ue806";
public const string TiltUp = "\ue809";
public const string TiltDown = "\ue80a";
public const string CallControl = "\ue80b";
public const string RotateMapRight = "\ue80c";
public const string RotateMapLeft = "\ue80d";
public const string Home = "\ue80f";
public const string ParkingLocation = "\ue811";
public const string MapCompassTop = "\ue812";
public const string MapCompassBottom = "\ue813";
public const string IncidentTriangle = "\ue814";
public const string Touch = "\ue815";
public const string MapDirections = "\ue816";
public const string StartPoint = "\ue819";
public const string StopPoint = "\ue81a";
public const string EndPoint = "\ue81b";
public const string History = "\ue81c";
public const string Location = "\ue81d";
public const string MapLayers = "\ue81e";
public const string Accident = "\ue81f";
public const string Work = "\ue821";
public const string Construction = "\ue822";
public const string Recent = "\ue823";
public const string Bank = "\ue825";
public const string DownloadMap = "\ue826";
public const string InkingToolFill2 = "\ue829";
public const string HighlightFill2 = "\ue82a";
public const string EraseToolFill = "\ue82b";
public const string EraseToolFill2 = "\ue82c";
public const string Dictionary = "\ue82d";
public const string DictionaryAdd = "\ue82e";
public const string ToolTip = "\ue82f";
public const string ChromeBack = "\ue830";
public const string ProvisioningPackage = "\ue835";
public const string AddRemoteDevice = "\ue836";
public const string FolderOpen = "\ue838";
public const string Ethernet = "\ue839";
public const string ShareBroadband = "\ue83a";
public const string DirectAccess = "\ue83b";
public const string DialUp = "\ue83c";
public const string DefenderApp = "\ue83d";
public const string BatteryCharging9 = "\ue83e";
public const string Battery10 = "\ue83f";
public const string Pinned = "\ue840";
public const string PinFill = "\ue841";
public const string PinnedFill = "\ue842";
public const string PeriodKey = "\ue843";
public const string PuncKey = "\ue844";
public const string RevToggleKey = "\ue845";
public const string RightArrowKeyTime1 = "\ue846";
public const string RightArrowKeyTime2 = "\ue847";
public const string LeftQuote = "\ue848";
public const string RightQuote = "\ue849";
public const string DownShiftKey = "\ue84a";
public const string UpShiftKey = "\ue84b";
public const string PuncKey0 = "\ue84c";
public const string PuncKeyLeftBottom = "\ue84d";
public const string RightArrowKeyTime3 = "\ue84e";
public const string RightArrowKeyTime4 = "\ue84f";
public const string Battery0 = "\ue850";
public const string Battery1 = "\ue851";
public const string Battery2 = "\ue852";
public const string Battery3 = "\ue853";
public const string Battery4 = "\ue854";
public const string Battery5 = "\ue855";
public const string Battery6 = "\ue856";
public const string Battery7 = "\ue857";
public const string Battery8 = "\ue858";
public const string Battery9 = "\ue859";
public const string BatteryCharging0 = "\ue85a";
public const string BatteryCharging1 = "\ue85b";
public const string BatteryCharging2 = "\ue85c";
public const string BatteryCharging3 = "\ue85d";
public const string BatteryCharging4 = "\ue85e";
public const string BatteryCharging5 = "\ue85f";
public const string BatteryCharging6 = "\ue860";
public const string BatteryCharging7 = "\ue861";
public const string BatteryCharging8 = "\ue862";
public const string BatterySaver0 = "\ue863";
public const string BatterySaver1 = "\ue864";
public const string BatterySaver2 = "\ue865";
public const string BatterySaver3 = "\ue866";
public const string BatterySaver4 = "\ue867";
public const string BatterySaver5 = "\ue868";
public const string BatterySaver6 = "\ue869";
public const string BatterySaver7 = "\ue86a";
public const string BatterySaver8 = "\ue86b";
public const string SignalBars1 = "\ue86c";
public const string SignalBars2 = "\ue86d";
public const string SignalBars3 = "\ue86e";
public const string SignalBars4 = "\ue86f";
public const string SignalBars5 = "\ue870";
public const string SignalNotConnected = "\ue871";
public const string Wifi1 = "\ue872";
public const string Wifi2 = "\ue873";
public const string Wifi3 = "\ue874";
public const string MobSIMLock = "\ue875";
public const string MobSIMMissing = "\ue876";
public const string Vibrate = "\ue877";
public const string RoamingInternational = "\ue878";
public const string RoamingDomestic = "\ue879";
public const string CallForwardInternational = "\ue87a";
public const string CallForwardRoaming = "\ue87b";
public const string JpnRomanji = "\ue87c";
public const string JpnRomanjiLock = "\ue87d";
public const string JpnRomanjiShift = "\ue87e";
public const string JpnRomanjiShiftLock = "\ue87f";
public const string StatusDataTransfer = "\ue880";
public const string StatusDataTransferVPN = "\ue881";
public const string StatusDualSIM2 = "\ue882";
public const string StatusDualSIM2VPN = "\ue883";
public const string StatusDualSIM1 = "\ue884";
public const string StatusDualSIM1VPN = "\ue885";
public const string StatusSGLTE = "\ue886";
public const string StatusSGLTECell = "\ue887";
public const string StatusSGLTEDataVPN = "\ue888";
public const string StatusVPN = "\ue889";
public const string WifiHotspot = "\ue88a";
public const string LanguageKor = "\ue88b";
public const string LanguageCht = "\ue88c";
public const string LanguageChs = "\ue88d";
public const string USB = "\ue88e";
public const string InkingToolFill = "\ue88f";
public const string View = "\ue890";
public const string HighlightFill = "\ue891";
public const string Previous = "\ue892";
public const string Next = "\ue893";
public const string Clear = "\ue894";
public const string Sync = "\ue895";
public const string Download = "\ue896";
public const string Help = "\ue897";
public const string Upload = "\ue898";
public const string Emoji = "\ue899";
public const string TwoPage = "\ue89a";
public const string LeaveChat = "\ue89b";
public const string MailForward = "\ue89c";
public const string RotateCamera = "\ue89e";
public const string ClosePane = "\ue89f";
public const string OpenPane = "\ue8a0";
public const string PreviewLink = "\ue8a1";
public const string AttachCamera = "\ue8a2";
public const string ZoomIn = "\ue8a3";
public const string Bookmarks = "\ue8a4";
public const string Document = "\ue8a5";
public const string ProtectedDocument = "\ue8a6";
public const string OpenInNewWindow = "\ue8a7";
public const string MailFill = "\ue8a8";
public const string ViewAll = "\ue8a9";
public const string VideoChat = "\ue8aa";
public const string Switch = "\ue8ab";
public const string Rename = "\ue8ac";
public const string Go = "\ue8ad";
public const string SurfaceHub = "\ue8ae";
public const string Remote = "\ue8af";
public const string Click = "\ue8b0";
public const string Shuffle = "\ue8b1";
public const string Movies = "\ue8b2";
public const string SelectAll = "\ue8b3";
public const string Orientation = "\ue8b4";
public const string Import = "\ue8b5";
public const string ImportAll = "\ue8b6";
public const string Folder = "\ue8b7";
public const string Webcam = "\ue8b8";
public const string Picture = "\ue8b9";
public const string Caption = "\ue8ba";
public const string ChromeClose = "\ue8bb";
public const string ShowResults = "\ue8bc";
public const string Message = "\ue8bd";
public const string Leaf = "\ue8be";
public const string CalendarDay = "\ue8bf";
public const string CalendarWeek = "\ue8c0";
public const string Characters = "\ue8c1";
public const string MailReplyAll = "\ue8c2";
public const string Read = "\ue8c3";
public const string ShowBcc = "\ue8c4";
public const string HideBcc = "\ue8c5";
public const string Cut = "\ue8c6";
public const string PaymentCard = "\ue8c7";
public const string Copy = "\ue8c8";
public const string Important = "\ue8c9";
public const string MailReply = "\ue8ca";
public const string Sort = "\ue8cb";
public const string MobileTablet = "\ue8cc";
public const string DisconnectDrive = "\ue8cd";
public const string MapDrive = "\ue8ce";
public const string ContactPresence = "\ue8cf";
public const string Priority = "\ue8d0";
public const string GotoToday = "\ue8d1";
public const string Font = "\ue8d2";
public const string FontColor = "\ue8d3";
public const string Contact2 = "\ue8d4";
public const string FolderFill = "\ue8d5";
public const string Audio = "\ue8d6";
public const string Permissions = "\ue8d7";
public const string DisableUpdates = "\ue8d8";
public const string Unfavorite = "\ue8d9";
public const string OpenLocal = "\ue8da";
public const string Italic = "\ue8db";
public const string Underline = "\ue8dc";
public const string Bold = "\ue8dd";
public const string MoveToFolder = "\ue8de";
public const string LikeDislike = "\ue8df";
public const string Dislike = "\ue8e0";
public const string Like = "\ue8e1";
public const string AlignRight = "\ue8e2";
public const string AlignCenter = "\ue8e3";
public const string AlignLeft = "\ue8e4";
public const string OpenFile = "\ue8e5";
public const string ClearSelection = "\ue8e6";
public const string FontDecrease = "\ue8e7";
public const string FontIncrease = "\ue8e8";
public const string FontSize = "\ue8e9";
public const string CellPhone = "\ue8ea";
public const string Reshare = "\ue8eb";
public const string Tag = "\ue8ec";
public const string RepeatOne = "\ue8ed";
public const string RepeatAll = "\ue8ee";
public const string Calculator = "\ue8ef";
public const string Directions = "\ue8f0";
public const string Library = "\ue8f1";
public const string ChatBubbles = "\ue8f2";
public const string PostUpdate = "\ue8f3";
public const string NewFolder = "\ue8f4";
public const string CalendarReply = "\ue8f5";
public const string UnsyncFolder = "\ue8f6";
public const string SyncFolder = "\ue8f7";
public const string BlockContact = "\ue8f8";
public const string SwitchApps = "\ue8f9";
public const string AddFriend = "\ue8fa";
public const string Accept = "\ue8fb";
public const string GoToStart = "\ue8fc";
public const string BulletedList = "\ue8fd";
public const string Scan = "\ue8fe";
public const string Preview = "\ue8ff";
public const string Group = "\ue902";
public const string ZeroBars = "\ue904";
public const string OneBar = "\ue905";
public const string TwoBars = "\ue906";
public const string ThreeBars = "\ue907";
public const string FourBars = "\ue908";
public const string World = "\ue909";
public const string Comment = "\ue90a";
public const string MusicInfo = "\ue90b";
public const string DockLeft = "\ue90c";
public const string DockRight = "\ue90d";
public const string DockBottom = "\ue90e";
public const string Repair = "\ue90f";
public const string Accounts = "\ue910";
public const string DullSound = "\ue911";
public const string Manage = "\ue912";
public const string Street = "\ue913";
public const string Printer3D = "\ue914";
public const string RadioBullet = "\ue915";
public const string Stopwatch = "\ue916";
public const string Photo = "\ue91b";
public const string ActionCenter = "\ue91c";
public const string FullCircleMask = "\ue91f";
public const string ChromeMinimize = "\ue921";
public const string ChromeMaximize = "\ue922";
public const string ChromeRestore = "\ue923";
public const string Annotation = "\ue924";
public const string BackSpaceQWERTYSm = "\ue925";
public const string BackSpaceQWERTYMd = "\ue926";
public const string Swipe = "\ue927";
public const string Fingerprint = "\ue928";
public const string Handwriting = "\ue929";
public const string ChromeBackToWindow = "\ue92c";
public const string ChromeFullScreen = "\ue92d";
public const string KeyboardStandard = "\ue92e";
public const string KeyboardDismiss = "\ue92f";
public const string Completed = "\ue930";
public const string ChromeAnnotate = "\ue931";
public const string Label = "\ue932";
public const string IBeam = "\ue933";
public const string IBeamOutline = "\ue934";
public const string FlickDown = "\ue935";
public const string FlickUp = "\ue936";
public const string FlickLeft = "\ue937";
public const string FlickRight = "\ue938";
public const string FeedbackApp = "\ue939";
public const string MusicAlbum = "\ue93c";
public const string Streaming = "\ue93e";
public const string Code = "\ue943";
public const string ReturnToWindow = "\ue944";
public const string LightningBolt = "\ue945";
public const string Info = "\ue946";
public const string CalculatorMultiply = "\ue947";
public const string CalculatorAddition = "\ue948";
public const string CalculatorSubtract = "\ue949";
public const string CalculatorDivide = "\ue94a";
public const string CalculatorSquareroot = "\ue94b";
public const string CalculatorPercentage = "\ue94c";
public const string CalculatorNegate = "\ue94d";
public const string CalculatorEqualTo = "\ue94e";
public const string CalculatorBackspace = "\ue94f";
public const string Component = "\ue950";
public const string DMC = "\ue951";
public const string Dock = "\ue952";
public const string MultimediaDMS = "\ue953";
public const string MultimediaDVR = "\ue954";
public const string MultimediaPMP = "\ue955";
public const string PrintfaxPrinterFile = "\ue956";
public const string Sensor = "\ue957";
public const string StorageOptical = "\ue958";
public const string Communications = "\ue95a";
public const string Headset = "\ue95b";
public const string Projector = "\ue95d";
public const string Health = "\ue95e";
public const string Wire = "\ue95f";
public const string Webcam2 = "\ue960";
public const string Input = "\ue961";
public const string Mouse = "\ue962";
public const string Smartcard = "\ue963";
public const string SmartcardVirtual = "\ue964";
public const string MediaStorageTower = "\ue965";
public const string ReturnKeySm = "\ue966";
public const string GameConsole = "\ue967";
public const string Network = "\ue968";
public const string StorageNetworkWireless = "\ue969";
public const string StorageTape = "\ue96a";
public const string ChevronUpSmall = "\ue96d";
public const string ChevronDownSmall = "\ue96e";
public const string ChevronLeftSmall = "\ue96f";
public const string ChevronRightSmall = "\ue970";
public const string ChevronUpMed = "\ue971";
public const string ChevronDownMed = "\ue972";
public const string ChevronLeftMed = "\ue973";
public const string ChevronRightMed = "\ue974";
public const string Devices2 = "\ue975";
public const string ExpandTile = "\ue976";
public const string PC1 = "\ue977";
public const string PresenceChicklet = "\ue978";
public const string PresenceChickletVideo = "\ue979";
public const string Reply = "\ue97a";
public const string SetTile = "\ue97b";
public const string Type = "\ue97c";
public const string Korean = "\ue97d";
public const string HalfAlpha = "\ue97e";
public const string FullAlpha = "\ue97f";
public const string Key12On = "\ue980";
public const string ChineseChangjie = "\ue981";
public const string QWERTYOn = "\ue982";
public const string QWERTYOff = "\ue983";
public const string ChineseQuick = "\ue984";
public const string Japanese = "\ue985";
public const string FullHiragana = "\ue986";
public const string FullKatakana = "\ue987";
public const string HalfKatakana = "\ue988";
public const string ChineseBoPoMoFo = "\ue989";
public const string ChinesePinyin = "\ue98a";
public const string ConstructionCone = "\ue98f";
public const string XboxOneConsole = "\ue990";
public const string Volume0 = "\ue992";
public const string Volume1 = "\ue993";
public const string Volume2 = "\ue994";
public const string Volume3 = "\ue995";
public const string BatteryUnknown = "\ue996";
public const string WifiAttentionOverlay = "\ue998";
public const string Robot = "\ue99a";
public const string TapAndSend = "\ue9a1";
public const string FitPage = "\ue9a6";
public const string PasswordKeyShow = "\ue9a8";
public const string PasswordKeyHide = "\ue9a9";
public const string BidiLtr = "\ue9aa";
public const string BidiRtl = "\ue9ab";
public const string ForwardSm = "\ue9ac";
public const string CommaKey = "\ue9ad";
public const string DashKey = "\ue9ae";
public const string DullSoundKey = "\ue9af";
public const string HalfDullSound = "\ue9b0";
public const string RightDoubleQuote = "\ue9b1";
public const string LeftDoubleQuote = "\ue9b2";
public const string PuncKeyRightBottom = "\ue9b3";
public const string PuncKey1 = "\ue9b4";
public const string PuncKey2 = "\ue9b5";
public const string PuncKey3 = "\ue9b6";
public const string PuncKey4 = "\ue9b7";
public const string PuncKey5 = "\ue9b8";
public const string PuncKey6 = "\ue9b9";
public const string PuncKey9 = "\ue9ba";
public const string PuncKey7 = "\ue9bb";
public const string PuncKey8 = "\ue9bc";
public const string Frigid = "\ue9ca";
public const string Unknown = "\ue9ce";
public const string AreaChart = "\ue9d2";
public const string CheckList = "\ue9d5";
public const string Diagnostic = "\ue9d9";
public const string Equalizer = "\ue9e9";
public const string Process = "\ue9f3";
public const string Processing = "\ue9f5";
public const string ReportDocument = "\ue9f9";
public const string VideoSolid = "\uea0c";
public const string MixedMediaBadge = "\uea0d";
public const string DisconnectDisplay = "\uea14";
public const string Shield = "\uea18";
public const string Info2 = "\uea1f";
public const string ActionCenterAsterisk = "\uea21";
public const string Beta = "\uea24";
public const string SaveCopy = "\uea35";
public const string List = "\uea37";
public const string Asterisk = "\uea38";
public const string ErrorBadge = "\uea39";
public const string CircleRing = "\uea3a";
public const string CircleFill = "\uea3b";
public const string MergeCall = "\uea3c";
public const string PrivateCall = "\uea3d";
public const string Record2 = "\uea3f";
public const string AllAppsMirrored = "\uea40";
public const string BookmarksMirrored = "\uea41";
public const string BulletedListMirrored = "\uea42";
public const string CallForwardInternationalMirrored = "\uea43";
public const string CallForwardRoamingMirrored = "\uea44";
public const string ChromeBackMirrored = "\uea47";
public const string ClearSelectionMirrored = "\uea48";
public const string ClosePaneMirrored = "\uea49";
public const string ContactInfoMirrored = "\uea4a";
public const string DockRightMirrored = "\uea4b";
public const string DockLeftMirrored = "\uea4c";
public const string ExpandTileMirrored = "\uea4e";
public const string GoMirrored = "\uea4f";
public const string GripperResizeMirrored = "\uea50";
public const string HelpMirrored = "\uea51";
public const string ImportMirrored = "\uea52";
public const string ImportAllMirrored = "\uea53";
public const string LeaveChatMirrored = "\uea54";
public const string ListMirrored = "\uea55";
public const string MailForwardMirrored = "\uea56";
public const string MailReplyMirrored = "\uea57";
public const string MailReplyAllMirrored = "\uea58";
public const string OpenPaneMirrored = "\uea5b";
public const string OpenWithMirrored = "\uea5c";
public const string ParkingLocationMirrored = "\uea5e";
public const string ResizeMouseMediumMirrored = "\uea5f";
public const string ResizeMouseSmallMirrored = "\uea60";
public const string ResizeMouseTallMirrored = "\uea61";
public const string ResizeTouchNarrowerMirrored = "\uea62";
public const string SendMirrored = "\uea63";
public const string SendFillMirrored = "\uea64";
public const string ShowResultsMirrored = "\uea65";
public const string Media = "\uea69";
public const string SyncError = "\uea6a";
public const string Devices3 = "\uea6c";
public const string SlowMotionOn = "\uea79";
public const string Lightbulb = "\uea80";
public const string StatusCircle = "\uea81";
public const string StatusTriangle = "\uea82";
public const string StatusError = "\uea83";
public const string StatusWarning = "\uea84";
public const string Puzzle = "\uea86";
public const string CalendarSolid = "\uea89";
public const string HomeSolid = "\uea8a";
public const string ParkingLocationSolid = "\uea8b";
public const string ContactSolid = "\uea8c";
public const string ConstructionSolid = "\uea8d";
public const string AccidentSolid = "\uea8e";
public const string Ringer = "\uea8f";
public const string PDF = "\uea90";
public const string ThoughtBubble = "\uea91";
public const string HeartBroken = "\uea92";
public const string BatteryCharging10 = "\uea93";
public const string BatterySaver9 = "\uea94";
public const string BatterySaver10 = "\uea95";
public const string CallForwardingMirrored = "\uea97";
public const string MultiSelectMirrored = "\uea98";
public const string Broom = "\uea99";
public const string ForwardCall = "\ueac2";
public const string Trackers = "\ueadf";
public const string Market = "\ueafc";
public const string PieSingle = "\ueb05";
public const string StockDown = "\ueb0f";
public const string StockUp = "\ueb11";
public const string Design = "\ueb3c";
public const string Website = "\ueb41";
public const string Drop = "\ueb42";
public const string Radar = "\ueb44";
public const string BusSolid = "\ueb47";
public const string FerrySolid = "\ueb48";
public const string StartPointSolid = "\ueb49";
public const string StopPointSolid = "\ueb4a";
public const string EndPointSolid = "\ueb4b";
public const string AirplaneSolid = "\ueb4c";
public const string TrainSolid = "\ueb4d";
public const string WorkSolid = "\ueb4e";
public const string ReminderFill = "\ueb4f";
public const string Reminder = "\ueb50";
public const string Heart = "\ueb51";
public const string HeartFill = "\ueb52";
public const string EthernetError = "\ueb55";
public const string EthernetWarning = "\ueb56";
public const string StatusConnecting1 = "\ueb57";
public const string StatusConnecting2 = "\ueb58";
public const string StatusUnsecure = "\ueb59";
public const string WifiError0 = "\ueb5a";
public const string WifiError1 = "\ueb5b";
public const string WifiError2 = "\ueb5c";
public const string WifiError3 = "\ueb5d";
public const string WifiError4 = "\ueb5e";
public const string WifiWarning0 = "\ueb5f";
public const string WifiWarning1 = "\ueb60";
public const string WifiWarning2 = "\ueb61";
public const string WifiWarning3 = "\ueb62";
public const string WifiWarning4 = "\ueb63";
public const string Devices4 = "\ueb66";
public const string NUIIris = "\ueb67";
public const string NUIFace = "\ueb68";
public const string EditMirrored = "\ueb7e";
public const string NUIFPStartSlideHand = "\ueb82";
public const string NUIFPStartSlideAction = "\ueb83";
public const string NUIFPContinueSlideHand = "\ueb84";
public const string NUIFPContinueSlideAction = "\ueb85";
public const string NUIFPRollRightHand = "\ueb86";
public const string NUIFPRollRightHandAction = "\ueb87";
public const string NUIFPRollLeftHand = "\ueb88";
public const string NUIFPRollLeftAction = "\ueb89";
public const string NUIFPPressHand = "\ueb8a";
public const string NUIFPPressAction = "\ueb8b";
public const string NUIFPPressRepeatHand = "\ueb8c";
public const string NUIFPPressRepeatAction = "\ueb8d";
public const string StatusErrorFull = "\ueb90";
public const string TaskViewExpanded = "\ueb91";
public const string Certificate = "\ueb95";
public const string BackSpaceQWERTYLg = "\ueb96";
public const string ReturnKeyLg = "\ueb97";
public const string FastForward = "\ueb9d";
public const string Rewind = "\ueb9e";
public const string Photo2 = "\ueb9f";
public const string MobBattery0 = "\ueba0";
public const string MobBattery1 = "\ueba1";
public const string MobBattery2 = "\ueba2";
public const string MobBattery3 = "\ueba3";
public const string MobBattery4 = "\ueba4";
public const string MobBattery5 = "\ueba5";
public const string MobBattery6 = "\ueba6";
public const string MobBattery7 = "\ueba7";
public const string MobBattery8 = "\ueba8";
public const string MobBattery9 = "\ueba9";
public const string MobBattery10 = "\uebaa";
public const string MobBatteryCharging0 = "\uebab";
public const string MobBatteryCharging1 = "\uebac";
public const string MobBatteryCharging2 = "\uebad";
public const string MobBatteryCharging3 = "\uebae";
public const string MobBatteryCharging4 = "\uebaf";
public const string MobBatteryCharging5 = "\uebb0";
public const string MobBatteryCharging6 = "\uebb1";
public const string MobBatteryCharging7 = "\uebb2";
public const string MobBatteryCharging8 = "\uebb3";
public const string MobBatteryCharging9 = "\uebb4";
public const string MobBatteryCharging10 = "\uebb5";
public const string MobBatterySaver0 = "\uebb6";
public const string MobBatterySaver1 = "\uebb7";
public const string MobBatterySaver2 = "\uebb8";
public const string MobBatterySaver3 = "\uebb9";
public const string MobBatterySaver4 = "\uebba";
public const string MobBatterySaver5 = "\uebbb";
public const string MobBatterySaver6 = "\uebbc";
public const string MobBatterySaver7 = "\uebbd";
public const string MobBatterySaver8 = "\uebbe";
public const string MobBatterySaver9 = "\uebbf";
public const string MobBatterySaver10 = "\uebc0";
public const string DictionaryCloud = "\uebc3";
public const string ResetDrive = "\uebc4";
public const string VolumeBars = "\uebc5";
public const string Project = "\uebc6";
public const string AdjustHologram = "\uebd2";
public const string WifiCallBars = "\uebd4";
public const string WifiCall0 = "\uebd5";
public const string WifiCall1 = "\uebd6";
public const string WifiCall2 = "\uebd7";
public const string WifiCall3 = "\uebd8";
public const string WifiCall4 = "\uebd9";
public const string Family = "\uebda";
public const string LockFeedback = "\uebdb";
public const string DeviceDiscovery = "\uebde";
public const string WindDirection = "\uebe6";
public const string RightArrowKeyTime0 = "\uebe7";
public const string Bug = "\uebe8";
public const string TabletMode = "\uebfc";
public const string StatusCircleLeft = "\uebfd";
public const string StatusTriangleLeft = "\uebfe";
public const string StatusErrorLeft = "\uebff";
public const string StatusWarningLeft = "\uec00";
public const string MobBatteryUnknown = "\uec02";
public const string NetworkTower = "\uec05";
public const string CityNext = "\uec06";
public const string CityNext2 = "\uec07";
public const string Courthouse = "\uec08";
public const string Groceries = "\uec09";
public const string Sustainable = "\uec0a";
public const string BuildingEnergy = "\uec0b";
public const string ToggleFilled = "\uec11";
public const string ToggleBorder = "\uec12";
public const string SliderThumb = "\uec13";
public const string ToggleThumb = "\uec14";
public const string MiracastLogoSmall = "\uec15";
public const string MiracastLogoLarge = "\uec16";
public const string PLAP = "\uec19";
public const string Badge = "\uec1b";
public const string SignalRoaming = "\uec1e";
public const string MobileLocked = "\uec20";
public const string InsiderHubApp = "\uec24";
public const string PersonalFolder = "\uec25";
public const string HomeGroup = "\uec26";
public const string MyNetwork = "\uec27";
public const string KeyboardFull = "\uec31";
public const string Cafe = "\uec32";
public const string MobSignal1 = "\uec37";
public const string MobSignal2 = "\uec38";
public const string MobSignal3 = "\uec39";
public const string MobSignal4 = "\uec3a";
public const string MobSignal5 = "\uec3b";
public const string MobWifi1 = "\uec3c";
public const string MobWifi2 = "\uec3d";
public const string MobWifi3 = "\uec3e";
public const string MobWifi4 = "\uec3f";
public const string MobAirplane = "\uec40";
public const string MobBluetooth = "\uec41";
public const string MobActionCenter = "\uec42";
public const string MobLocation = "\uec43";
public const string MobWifiHotspot = "\uec44";
public const string LanguageJpn = "\uec45";
public const string MobQuietHours = "\uec46";
public const string MobDrivingMode = "\uec47";
public const string SpeedOff = "\uec48";
public const string SpeedMedium = "\uec49";
public const string SpeedHigh = "\uec4a";
public const string ThisPC = "\uec4e";
public const string MusicNote = "\uec4f";
public const string FileExplorer = "\uec50";
public const string FileExplorerApp = "\uec51";
public const string LeftArrowKeyTime0 = "\uec52";
public const string MicOff = "\uec54";
public const string MicSleep = "\uec55";
public const string MicError = "\uec56";
public const string PlaybackRate1x = "\uec57";
public const string PlaybackRateOther = "\uec58";
public const string CashDrawer = "\uec59";
public const string BarcodeScanner = "\uec5a";
public const string ReceiptPrinter = "\uec5b";
public const string MagStripeReader = "\uec5c";
public const string CompletedSolid = "\uec61";
public const string CompanionApp = "\uec64";
public const string Favicon2 = "\uec6c";
public const string SwipeRevealArt = "\uec6d";
public const string MicOn = "\uec71";
public const string MicClipping = "\uec72";
public const string TabletSelected = "\uec74";
public const string MobileSelected = "\uec75";
public const string LaptopSelected = "\uec76";
public const string TVMonitorSelected = "\uec77";
public const string DeveloperTools = "\uec7a";
public const string MobCallForwarding = "\uec7e";
public const string MobCallForwardingMirrored = "\uec7f";
public const string BodyCam = "\uec80";
public const string PoliceCar = "\uec81";
public const string Draw = "\uec87";
public const string DrawSolid = "\uec88";
public const string LowerBrightness = "\uec8a";
public const string ScrollUpDown = "\uec8f";
public const string DateTime = "\uec92";
public const string Tiles = "\ueca5";
public const string PartyLeader = "\ueca7";
public const string AppIconDefault = "\uecaa";
public const string Calories = "\uecad";
public const string BandBattery0 = "\uecb9";
public const string BandBattery1 = "\uecba";
public const string BandBattery2 = "\uecbb";
public const string BandBattery3 = "\uecbc";
public const string BandBattery4 = "\uecbd";
public const string BandBattery5 = "\uecbe";
public const string BandBattery6 = "\uecbf";
public const string AddSurfaceHub = "\uecc4";
public const string DevUpdate = "\uecc5";
public const string Unit = "\uecc6";
public const string AddTo = "\uecc8";
public const string RemoveFrom = "\uecc9";
public const string RadioBtnOff = "\uecca";
public const string RadioBtnOn = "\ueccb";
public const string RadioBullet2 = "\ueccc";
public const string ExploreContent = "\ueccd";
public const string Blocked2 = "\uece4";
public const string ScrollMode = "\uece7";
public const string ZoomMode = "\uece8";
public const string PanMode = "\uece9";
public const string WiredUSB = "\uecf0";
public const string WirelessUSB = "\uecf1";
public const string USBSafeConnect = "\uecf3";
public const string ActionCenterNotificationMirrored = "\ued0c";
public const string ActionCenterMirrored = "\ued0d";
public const string SubscriptionAdd = "\ued0e";
public const string ResetDevice = "\ued10";
public const string SubscriptionAddMirrored = "\ued11";
public const string QRCode = "\ued14";
public const string Feedback = "\ued15";
public const string Subtitles = "\ued1e";
public const string SubtitlesAudio = "\ued1f";
public const string OpenFolderHorizontal = "\ued25";
public const string CalendarMirrored = "\ued28";
public const string MobeSIM = "\ued2a";
public const string MobeSIMNoProfile = "\ued2b";
public const string MobeSIMLocked = "\ued2c";
public const string MobeSIMBusy = "\ued2d";
public const string SignalError = "\ued2e";
public const string StreamingEnterprise = "\ued2f";
public const string Headphone0 = "\ued30";
public const string Headphone1 = "\ued31";
public const string Headphone2 = "\ued32";
public const string Headphone3 = "\ued33";
public const string Apps = "\ued35";
public const string KeyboardBrightness = "\ued39";
public const string KeyboardLowerBrightness = "\ued3a";
public const string SkipBack10 = "\ued3c";
public const string SkipForward30 = "\ued3d";
public const string TreeFolderFolder = "\ued41";
public const string TreeFolderFolderFill = "\ued42";
public const string TreeFolderFolderOpen = "\ued43";
public const string TreeFolderFolderOpenFill = "\ued44";
public const string MultimediaDMP = "\ued47";
public const string KeyboardOneHanded = "\ued4c";
public const string Narrator = "\ued4d";
public const string EmojiTabPeople = "\ued53";
public const string EmojiTabSmilesAnimals = "\ued54";
public const string EmojiTabCelebrationObjects = "\ued55";
public const string EmojiTabFoodPlants = "\ued56";
public const string EmojiTabTransitPlaces = "\ued57";
public const string EmojiTabSymbols = "\ued58";
public const string EmojiTabTextSmiles = "\ued59";
public const string EmojiTabFavorites = "\ued5a";
public const string EmojiSwatch = "\ued5b";
public const string ConnectApp = "\ued5c";
public const string CompanionDeviceFramework = "\ued5d";
public const string Ruler = "\ued5e";
public const string FingerInking = "\ued5f";
public const string StrokeErase = "\ued60";
public const string PointErase = "\ued61";
public const string ClearAllInk = "\ued62";
public const string Pencil = "\ued63";
public const string Marker = "\ued64";
public const string InkingCaret = "\ued65";
public const string InkingColorOutline = "\ued66";
public const string InkingColorFill = "\ued67";
public const string HardDrive = "\ueda2";
public const string NetworkAdapter = "\ueda3";
public const string Touchscreen = "\ueda4";
public const string NetworkPrinter = "\ueda5";
public const string CloudPrinter = "\ueda6";
public const string KeyboardShortcut = "\ueda7";
public const string BrushSize = "\ueda8";
public const string NarratorForward = "\ueda9";
public const string NarratorForwardMirrored = "\uedaa";
public const string SyncBadge12 = "\uedab";
public const string RingerBadge12 = "\uedac";
public const string AsteriskBadge12 = "\uedad";
public const string ErrorBadge12 = "\uedae";
public const string CircleRingBadge12 = "\uedaf";
public const string CircleFillBadge12 = "\uedb0";
public const string ImportantBadge12 = "\uedb1";
public const string MailBadge12 = "\uedb3";
public const string PauseBadge12 = "\uedb4";
public const string PlayBadge12 = "\uedb5";
public const string PenWorkspace = "\uedc6";
public const string CaretRight8 = "\uedd6";
public const string CaretLeftSolid8 = "\uedd9";
public const string CaretRightSolid8 = "\uedda";
public const string CaretUpSolid8 = "\ueddb";
public const string CaretDownSolid8 = "\ueddc";
public const string Export = "\uede1";
public const string ExportMirrored = "\uede2";
public const string ButtonMenu = "\uede3";
public const string CloudSearch = "\uede4";
public const string PinyinIMELogo = "\uede5";
public const string CalligraphyPen = "\uedfb";
public const string ReplyMirrored = "\uee35";
public const string LockscreenDesktop = "\uee3f";
public const string TaskViewSettings = "\uee40";
public const string Play36 = "\uee4a";
public const string PenPalette = "\uee56";
public const string GuestUser = "\uee57";
public const string SettingsBattery = "\uee63";
public const string TaskbarPhone = "\uee64";
public const string LockScreenGlance = "\uee65";
public const string GenericScan = "\uee6f";
public const string ImageExport = "\uee71";
public const string WifiEthernet = "\uee77";
public const string ActionCenterQuiet = "\uee79";
public const string ActionCenterQuietNotification = "\uee7a";
public const string TrackersMirrored = "\uee92";
public const string DateTimeMirrored = "\uee93";
public const string Wheel = "\uee94";
public const string VirtualMachineGroup = "\ueea3";
public const string ButtonView2 = "\ueeca";
public const string PenWorkspaceMirrored = "\uef15";
public const string PenPaletteMirrored = "\uef16";
public const string StrokeEraseMirrored = "\uef17";
public const string PointEraseMirrored = "\uef18";
public const string ClearAllInkMirrored = "\uef19";
public const string BackgroundToggle = "\uef1f";
public const string Marquee = "\uef20";
public const string ChromeCloseContrast = "\uef2c";
public const string ChromeMinimizeContrast = "\uef2d";
public const string ChromeMaximizeContrast = "\uef2e";
public const string ChromeRestoreContrast = "\uef2f";
public const string TrafficLight = "\uef31";