IconFontCppHeaders

package module
v0.0.0-...-c92a21f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 22, 2025 License: Zlib Imports: 0 Imported by: 1

README

Support development of IconFontCppHeaders through GitHub Sponsors or Patreon

Become a Patron

IconFontCppHeaders

https://github.com/juliettef/IconFontCppHeaders

C and C++ headers, C# and Python classes, Rust files and Go package for icon fonts Font Awesome, Fork Awesome, Google Material Design, Pictogrammers Material Design icons, Kenney game icons, Fontaudio, Codicons and Lucide.

A set of header files and classes for using icon fonts in C, C++, C#, Python, Rust and Go, along with the python generator used to create the files.

Each header contains defines for one font, with each icon code point defined as ICON_*, along with the min, max and max 16 bit code points for font loading purposes. The min excludes the ASCII characters code points. The max 16 bit is for use with libraries that only support 16 bit code points, for example Dear ImGui.

In addition the python script can be used to convert ttf font files to C and C++ headers. Each ttf icon font file is converted to a C and C++ header file containing a single array of bytes. To enable conversion, run the GenerateIconFontCppHeaders.py script with ttf2headerC = True.

Icon Fonts

Font Awesome [ FA ]
Font Awesome 4
Font Awesome 5 free
Font Awesome 5 pro
Font Awesome 6 free
Font Awesome 6 pro
Fork Awesome [ FK ]
Google Material Design Icons [ MD ] and Material Symbols [ MS ]
Material Design Icons [ MD ]
Material Symbols [ MS ]
Pictogrammers Material Design Icons [ MDI ]
Kenney Game Icons and Expansion [ KI ]
Fontaudio [ FAD ]
Codicons [ CI ]
Lucide [ LC ]
Ionicons
  • Unsupported as of 29 Apr 2020. See Issue #16.
Notes about Font Awesome 5 and 6
Codepoints grouping

Font Awesome 5 and 6 split the different styles of icons into different font files with identical codepoints for light, regular and solid styles, and a different set of codepoints for brands. We have put the brands into a separate header file.

Generating Pro header files (Font Awesome 5)

Download the Font Awesome Pro Web package from fontawesome.com. To generate the headers, drop icons.yml in the same directory as GenerateIconFontCppHeaders.py before running the script. The file icons.yml is under ..\fontawesome-pro-n.n.n-web\metadata\icons.yml where n.n.n is the version number.

Icon files:

  • ..\fontawesome-pro-n.n.n-web\metadata\icons.yml
  • ..\fontawesome-pro-n.n.n-web\webfonts\fa-brands-400.ttf
  • ..\fontawesome-pro-n.n.n-web\webfonts\fa-light-300.ttf
  • ..\fontawesome-pro-n.n.n-web\webfonts\fa-regular-400.ttf
  • ..\fontawesome-pro-n.n.n-web\webfonts\fa-solid-900.ttf

Example Code

Using Dear ImGui as an example UI library:


#include "IconsFontAwesome5.h"

ImGuiIO& io = ImGui::GetIO();
io.Fonts->AddFontDefault();
float baseFontSize = 13.0f; // 13.0f is the size of the default font. Change to the font size you use.
float iconFontSize = baseFontSize * 2.0f / 3.0f; // FontAwesome fonts need to have their sizes reduced by 2.0f/3.0f in order to align correctly

// merge in icons from Font Awesome
static const ImWchar icons_ranges[] = { ICON_MIN_FA, ICON_MAX_16_FA, 0 };
ImFontConfig icons_config; 
icons_config.MergeMode = true; 
icons_config.PixelSnapH = true; 
icons_config.GlyphMinAdvanceX = iconFontSize;
io.Fonts->AddFontFromFileTTF( FONT_ICON_FILE_NAME_FAS, iconFontSize, &icons_config, icons_ranges );
// use FONT_ICON_FILE_NAME_FAR if you want regular instead of solid

// in an imgui window somewhere...
ImGui::Text( ICON_FA_PAINT_BRUSH "  Paint" ); // use string literal concatenation
// outputs a paint brush icon and 'Paint' as a string.

Projects using the font icon header files

Avoyd

Voxel editor and 6 degree of freedom FPS game with editable environments. The voxel editor's UI uses Dear ImGui with Font Awesome icon fonts.
www.avoyd.com

Screenshot of the the game Avoyd's Voxel Editor UI using an IconFontCppHeaders header file for Font Awesome with Dear ImGui

bgfx

Cross-platform rendering library
bkaradzic.github.io/bgfx/overview
github.com/bkaradzic/bgfx

glChAoS.P

Real time 3D strange attractors scout
www.michelemorrone.eu/glchaosp
github.com/BrutPitt/glChAoS.P

Screenshot of glChAoS.P UI using IconFontCppHeaders header file for Font Awesome with Dear ImGui

iPlug2

Cross platform C++ audio plug-in framework
iplug2.github.io
github.com/iplug2/iplug2

Lumix Engine

3D C++ open source game engine
github.com/nem0/LumixEngine

Screenshot of Lumix Engine editor using IconFontCppHeaders header file for Font Awesome with Dear ImGui

Tracy Profiler

Real time, nanosecond resolution, remote telemetry frame profiler for games and other applications.
bitbucket.org/wolfpld/tracy

New features in Tracy Profiler v0.6

Visual 6502 Remix

Transistor level 6502 Hardware Simulation
floooh.github.io/visual6502remix
github.com/floooh/v6502r

Games
ImGuiFontStudio

Create font subsets
github.com/aiekick/ImGuiFontStudio

Contributing

Thanks to everyone who has contributed to IconFontCppHeaders so far. In order to make things easier please bear in mind the following:

  • I regularly update the repository. If you urgently need an update and can't run the generator yourself, raise an issue specifying the icon set(s) you need updated.
    • Don't submit PRs for updating the defines (the output of the generator).
  • Before submitting a PR, please raise an issue describing the problem or the enhancement you suggest. If you're able, propose an implementation.
  • If you use IconFontCppHeaders and would like your project to be featured on this page, raise an issue or email me at juliette@enkisoftware.com.

Credits

Development - Juliette Foucaut - @juliettef
Requirements - Doug Binks - @dougbinks
None language implementation and refactoring - Leonard Ritter - @paniq
Suggestion to add a define for the ttf file name - Sean Barrett - @nothings
Initial Font Awesome 5 implementation - Codecat - @codecat
Suggestion to add Fork Awesome - Julien Deswaef - @xuv
Suggestion to add Ionicons - Omar Cornut - @ocornut
C# language implementation - Rokas Kupstys - @rokups
Suggestion to add Material Design Icons - Gustav Madeso - @madeso
Fontaudio implementation - Oli Larkin - @olilarkin
Initial ttf to C and C++ headers conversion implementation - Charles Mailly - @Caerind
Python language implementation - Hang Yu - @yhyu13
Go language implementation - Matt Pharr - @mpp
Codicons implementation - Robert Ryan - @rtryan98
Rust language implementation - Gaeel Bradshaw-Rodriguez - @Bradshaw
Pictogrammers Material Design icons implementation - Bobby Anguelov - @BobbyAnguelov
Lucide icons implementation - Lucide Contributors - @lucide-icons

Documentation

Overview

Package IconFontCppHeaders provides mappings from human-friendly icon names to the corresponding Unicode code points for a variety of freely-available icon fonts (e.g., FontAwesome.)

Index

Constants

This section is empty.

Variables

View Source
var IconsCodicons = Font{
	Filenames: [][2]string{
		{"CI", "codicon.ttf"},
	},
	Min:   0xea60,
	Max16: 0xf101,
	Max:   0xf101,
	Icons: map[string]string{
		"Add":                                  "\xee\xa9\xa0",
		"Plus":                                 "\xee\xa9\xa0",
		"GistNew":                              "\xee\xa9\xa0",
		"RepoCreate":                           "\xee\xa9\xa0",
		"Lightbulb":                            "\xee\xa9\xa1",
		"LightBulb":                            "\xee\xa9\xa1",
		"Repo":                                 "\xee\xa9\xa2",
		"RepoDelete":                           "\xee\xa9\xa2",
		"GistFork":                             "\xee\xa9\xa3",
		"RepoForked":                           "\xee\xa9\xa3",
		"GitPullRequest":                       "\xee\xa9\xa4",
		"GitPullRequestAbandoned":              "\xee\xa9\xa4",
		"RecordKeys":                           "\xee\xa9\xa5",
		"Keyboard":                             "\xee\xa9\xa5",
		"Tag":                                  "\xee\xa9\xa6",
		"GitPullRequestLabel":                  "\xee\xa9\xa6",
		"TagAdd":                               "\xee\xa9\xa6",
		"TagRemove":                            "\xee\xa9\xa6",
		"Person":                               "\xee\xa9\xa7",
		"PersonFollow":                         "\xee\xa9\xa7",
		"PersonOutline":                        "\xee\xa9\xa7",
		"PersonFilled":                         "\xee\xa9\xa7",
		"GitBranch":                            "\xee\xa9\xa8",
		"GitBranchCreate":                      "\xee\xa9\xa8",
		"GitBranchDelete":                      "\xee\xa9\xa8",
		"SourceControl":                        "\xee\xa9\xa8",
		"Mirror":                               "\xee\xa9\xa9",
		"MirrorPublic":                         "\xee\xa9\xa9",
		"Star":                                 "\xee\xa9\xaa",
		"StarAdd":                              "\xee\xa9\xaa",
		"StarDelete":                           "\xee\xa9\xaa",
		"StarEmpty":                            "\xee\xa9\xaa",
		"Comment":                              "\xee\xa9\xab",
		"CommentAdd":                           "\xee\xa9\xab",
		"Alert":                                "\xee\xa9\xac",
		"Warning":                              "\xee\xa9\xac",
		"Search":                               "\xee\xa9\xad",
		"SearchSave":                           "\xee\xa9\xad",
		"LogOut":                               "\xee\xa9\xae",
		"SignOut":                              "\xee\xa9\xae",
		"LogIn":                                "\xee\xa9\xaf",
		"SignIn":                               "\xee\xa9\xaf",
		"Eye":                                  "\xee\xa9\xb0",
		"EyeUnwatch":                           "\xee\xa9\xb0",
		"EyeWatch":                             "\xee\xa9\xb0",
		"CircleFilled":                         "\xee\xa9\xb1",
		"PrimitiveDot":                         "\xee\xa9\xb1",
		"CloseDirty":                           "\xee\xa9\xb1",
		"DebugBreakpoint":                      "\xee\xa9\xb1",
		"DebugBreakpointDisabled":              "\xee\xa9\xb1",
		"DebugHint":                            "\xee\xa9\xb1",
		"TerminalDecorationSuccess":            "\xee\xa9\xb1",
		"PrimitiveSquare":                      "\xee\xa9\xb2",
		"Edit":                                 "\xee\xa9\xb3",
		"Pencil":                               "\xee\xa9\xb3",
		"Info":                                 "\xee\xa9\xb4",
		"IssueOpened":                          "\xee\xa9\xb4",
		"GistPrivate":                          "\xee\xa9\xb5",
		"GitForkPrivate":                       "\xee\xa9\xb5",
		"Lock":                                 "\xee\xa9\xb5",
		"MirrorPrivate":                        "\xee\xa9\xb5",
		"Close":                                "\xee\xa9\xb6",
		"RemoveClose":                          "\xee\xa9\xb6",
		"X":                                    "\xee\xa9\xb6",
		"RepoSync":                             "\xee\xa9\xb7",
		"Sync":                                 "\xee\xa9\xb7",
		"Clone":                                "\xee\xa9\xb8",
		"DesktopDownload":                      "\xee\xa9\xb8",
		"Beaker":                               "\xee\xa9\xb9",
		"Microscope":                           "\xee\xa9\xb9",
		"Vm":                                   "\xee\xa9\xba",
		"DeviceDesktop":                        "\xee\xa9\xba",
		"File":                                 "\xee\xa9\xbb",
		"FileText":                             "\xee\xa9\xbb",
		"More":                                 "\xee\xa9\xbc",
		"Ellipsis":                             "\xee\xa9\xbc",
		"KebabHorizontal":                      "\xee\xa9\xbc",
		"MailReply":                            "\xee\xa9\xbd",
		"Reply":                                "\xee\xa9\xbd",
		"Organization":                         "\xee\xa9\xbe",
		"OrganizationFilled":                   "\xee\xa9\xbe",
		"OrganizationOutline":                  "\xee\xa9\xbe",
		"NewFile":                              "\xee\xa9\xbf",
		"FileAdd":                              "\xee\xa9\xbf",
		"NewFolder":                            "\xee\xaa\x80",
		"FileDirectoryCreate":                  "\xee\xaa\x80",
		"Trash":                                "\xee\xaa\x81",
		"Trashcan":                             "\xee\xaa\x81",
		"History":                              "\xee\xaa\x82",
		"Clock":                                "\xee\xaa\x82",
		"Folder":                               "\xee\xaa\x83",
		"FileDirectory":                        "\xee\xaa\x83",
		"SymbolFolder":                         "\xee\xaa\x83",
		"LogoGithub":                           "\xee\xaa\x84",
		"MarkGithub":                           "\xee\xaa\x84",
		"Github":                               "\xee\xaa\x84",
		"Terminal":                             "\xee\xaa\x85",
		"Console":                              "\xee\xaa\x85",
		"Repl":                                 "\xee\xaa\x85",
		"Zap":                                  "\xee\xaa\x86",
		"SymbolEvent":                          "\xee\xaa\x86",
		"Error":                                "\xee\xaa\x87",
		"Stop":                                 "\xee\xaa\x87",
		"Variable":                             "\xee\xaa\x88",
		"SymbolVariable":                       "\xee\xaa\x88",
		"Array":                                "\xee\xaa\x8a",
		"SymbolArray":                          "\xee\xaa\x8a",
		"SymbolModule":                         "\xee\xaa\x8b",
		"SymbolPackage":                        "\xee\xaa\x8b",
		"SymbolNamespace":                      "\xee\xaa\x8b",
		"SymbolObject":                         "\xee\xaa\x8b",
		"SymbolMethod":                         "\xee\xaa\x8c",
		"SymbolFunction":                       "\xee\xaa\x8c",
		"SymbolConstructor":                    "\xee\xaa\x8c",
		"SymbolBoolean":                        "\xee\xaa\x8f",
		"SymbolNull":                           "\xee\xaa\x8f",
		"SymbolNumeric":                        "\xee\xaa\x90",
		"SymbolNumber":                         "\xee\xaa\x90",
		"SymbolStructure":                      "\xee\xaa\x91",
		"SymbolStruct":                         "\xee\xaa\x91",
		"SymbolParameter":                      "\xee\xaa\x92",
		"SymbolTypeParameter":                  "\xee\xaa\x92",
		"SymbolKey":                            "\xee\xaa\x93",
		"SymbolText":                           "\xee\xaa\x93",
		"SymbolReference":                      "\xee\xaa\x94",
		"GoToFile":                             "\xee\xaa\x94",
		"SymbolEnum":                           "\xee\xaa\x95",
		"SymbolValue":                          "\xee\xaa\x95",
		"SymbolRuler":                          "\xee\xaa\x96",
		"SymbolUnit":                           "\xee\xaa\x96",
		"ActivateBreakpoints":                  "\xee\xaa\x97",
		"Archive":                              "\xee\xaa\x98",
		"ArrowBoth":                            "\xee\xaa\x99",
		"ArrowDown":                            "\xee\xaa\x9a",
		"ArrowLeft":                            "\xee\xaa\x9b",
		"ArrowRight":                           "\xee\xaa\x9c",
		"ArrowSmallDown":                       "\xee\xaa\x9d",
		"ArrowSmallLeft":                       "\xee\xaa\x9e",
		"ArrowSmallRight":                      "\xee\xaa\x9f",
		"ArrowSmallUp":                         "\xee\xaa\xa0",
		"ArrowUp":                              "\xee\xaa\xa1",
		"Bell":                                 "\xee\xaa\xa2",
		"Bold":                                 "\xee\xaa\xa3",
		"Book":                                 "\xee\xaa\xa4",
		"Bookmark":                             "\xee\xaa\xa5",
		"DebugBreakpointConditionalUnverified": "\xee\xaa\xa6",
		"DebugBreakpointConditional":           "\xee\xaa\xa7",
		"DebugBreakpointConditionalDisabled":   "\xee\xaa\xa7",
		"DebugBreakpointDataUnverified":        "\xee\xaa\xa8",
		"DebugBreakpointData":                  "\xee\xaa\xa9",
		"DebugBreakpointDataDisabled":          "\xee\xaa\xa9",
		"DebugBreakpointLogUnverified":         "\xee\xaa\xaa",
		"DebugBreakpointLog":                   "\xee\xaa\xab",
		"DebugBreakpointLogDisabled":           "\xee\xaa\xab",
		"Briefcase":                            "\xee\xaa\xac",
		"Broadcast":                            "\xee\xaa\xad",
		"Browser":                              "\xee\xaa\xae",
		"Bug":                                  "\xee\xaa\xaf",
		"Calendar":                             "\xee\xaa\xb0",
		"CaseSensitive":                        "\xee\xaa\xb1",
		"Check":                                "\xee\xaa\xb2",
		"Checklist":                            "\xee\xaa\xb3",
		"ChevronDown":                          "\xee\xaa\xb4",
		"ChevronLeft":                          "\xee\xaa\xb5",
		"ChevronRight":                         "\xee\xaa\xb6",
		"ChevronUp":                            "\xee\xaa\xb7",
		"ChromeClose":                          "\xee\xaa\xb8",
		"ChromeMaximize":                       "\xee\xaa\xb9",
		"ChromeMinimize":                       "\xee\xaa\xba",
		"ChromeRestore":                        "\xee\xaa\xbb",
		"CircleOutline":                        "\xee\xaa\xbc",
		"Circle":                               "\xee\xaa\xbc",
		"DebugBreakpointUnverified":            "\xee\xaa\xbc",
		"TerminalDecorationIncomplete":         "\xee\xaa\xbc",
		"CircleSlash":                          "\xee\xaa\xbd",
		"CircuitBoard":                         "\xee\xaa\xbe",
		"ClearAll":                             "\xee\xaa\xbf",
		"Clippy":                               "\xee\xab\x80",
		"CloseAll":                             "\xee\xab\x81",
		"CloudDownload":                        "\xee\xab\x82",
		"CloudUpload":                          "\xee\xab\x83",
		"Code":                                 "\xee\xab\x84",
		"CollapseAll":                          "\xee\xab\x85",
		"ColorMode":                            "\xee\xab\x86",
		"CommentDiscussion":                    "\xee\xab\x87",
		"CreditCard":                           "\xee\xab\x89",
		"Dash":                                 "\xee\xab\x8c",
		"Dashboard":                            "\xee\xab\x8d",
		"Database":                             "\xee\xab\x8e",
		"DebugContinue":                        "\xee\xab\x8f",
		"DebugDisconnect":                      "\xee\xab\x90",
		"DebugPause":                           "\xee\xab\x91",
		"DebugRestart":                         "\xee\xab\x92",
		"DebugStart":                           "\xee\xab\x93",
		"DebugStepInto":                        "\xee\xab\x94",
		"DebugStepOut":                         "\xee\xab\x95",
		"DebugStepOver":                        "\xee\xab\x96",
		"DebugStop":                            "\xee\xab\x97",
		"Debug":                                "\xee\xab\x98",
		"DeviceCameraVideo":                    "\xee\xab\x99",
		"DeviceCamera":                         "\xee\xab\x9a",
		"DeviceMobile":                         "\xee\xab\x9b",
		"DiffAdded":                            "\xee\xab\x9c",
		"DiffIgnored":                          "\xee\xab\x9d",
		"DiffModified":                         "\xee\xab\x9e",
		"DiffRemoved":                          "\xee\xab\x9f",
		"DiffRenamed":                          "\xee\xab\xa0",
		"Diff":                                 "\xee\xab\xa1",
		"DiffSidebyside":                       "\xee\xab\xa1",
		"Discard":                              "\xee\xab\xa2",
		"EditorLayout":                         "\xee\xab\xa3",
		"EmptyWindow":                          "\xee\xab\xa4",
		"Exclude":                              "\xee\xab\xa5",
		"Extensions":                           "\xee\xab\xa6",
		"EyeClosed":                            "\xee\xab\xa7",
		"FileBinary":                           "\xee\xab\xa8",
		"FileCode":                             "\xee\xab\xa9",
		"FileMedia":                            "\xee\xab\xaa",
		"FilePdf":                              "\xee\xab\xab",
		"FileSubmodule":                        "\xee\xab\xac",
		"FileSymlinkDirectory":                 "\xee\xab\xad",
		"FileSymlinkFile":                      "\xee\xab\xae",
		"FileZip":                              "\xee\xab\xaf",
		"Files":                                "\xee\xab\xb0",
		"Filter":                               "\xee\xab\xb1",
		"Flame":                                "\xee\xab\xb2",
		"FoldDown":                             "\xee\xab\xb3",
		"FoldUp":                               "\xee\xab\xb4",
		"Fold":                                 "\xee\xab\xb5",
		"FolderActive":                         "\xee\xab\xb6",
		"FolderOpened":                         "\xee\xab\xb7",
		"Gear":                                 "\xee\xab\xb8",
		"Gift":                                 "\xee\xab\xb9",
		"GistSecret":                           "\xee\xab\xba",
		"Gist":                                 "\xee\xab\xbb",
		"GitCommit":                            "\xee\xab\xbc",
		"GitCompare":                           "\xee\xab\xbd",
		"CompareChanges":                       "\xee\xab\xbd",
		"GitMerge":                             "\xee\xab\xbe",
		"GithubAction":                         "\xee\xab\xbf",
		"GithubAlt":                            "\xee\xac\x80",
		"Globe":                                "\xee\xac\x81",
		"Grabber":                              "\xee\xac\x82",
		"Graph":                                "\xee\xac\x83",
		"Gripper":                              "\xee\xac\x84",
		"Heart":                                "\xee\xac\x85",
		"Home":                                 "\xee\xac\x86",
		"HorizontalRule":                       "\xee\xac\x87",
		"Hubot":                                "\xee\xac\x88",
		"Inbox":                                "\xee\xac\x89",
		"IssueReopened":                        "\xee\xac\x8b",
		"Issues":                               "\xee\xac\x8c",
		"Italic":                               "\xee\xac\x8d",
		"Jersey":                               "\xee\xac\x8e",
		"Json":                                 "\xee\xac\x8f",
		"KebabVertical":                        "\xee\xac\x90",
		"Key":                                  "\xee\xac\x91",
		"Law":                                  "\xee\xac\x92",
		"LightbulbAutofix":                     "\xee\xac\x93",
		"LinkExternal":                         "\xee\xac\x94",
		"Link":                                 "\xee\xac\x95",
		"ListOrdered":                          "\xee\xac\x96",
		"ListUnordered":                        "\xee\xac\x97",
		"LiveShare":                            "\xee\xac\x98",
		"Loading":                              "\xee\xac\x99",
		"Location":                             "\xee\xac\x9a",
		"MailRead":                             "\xee\xac\x9b",
		"Mail":                                 "\xee\xac\x9c",
		"Markdown":                             "\xee\xac\x9d",
		"Megaphone":                            "\xee\xac\x9e",
		"Mention":                              "\xee\xac\x9f",
		"Milestone":                            "\xee\xac\xa0",
		"GitPullRequestMilestone":              "\xee\xac\xa0",
		"MortarBoard":                          "\xee\xac\xa1",
		"Move":                                 "\xee\xac\xa2",
		"MultipleWindows":                      "\xee\xac\xa3",
		"Mute":                                 "\xee\xac\xa4",
		"NoNewline":                            "\xee\xac\xa5",
		"Note":                                 "\xee\xac\xa6",
		"Octoface":                             "\xee\xac\xa7",
		"OpenPreview":                          "\xee\xac\xa8",
		"Package":                              "\xee\xac\xa9",
		"Paintcan":                             "\xee\xac\xaa",
		"Pin":                                  "\xee\xac\xab",
		"Play":                                 "\xee\xac\xac",
		"Run":                                  "\xee\xac\xac",
		"Plug":                                 "\xee\xac\xad",
		"PreserveCase":                         "\xee\xac\xae",
		"Preview":                              "\xee\xac\xaf",
		"Project":                              "\xee\xac\xb0",
		"Pulse":                                "\xee\xac\xb1",
		"Question":                             "\xee\xac\xb2",
		"Quote":                                "\xee\xac\xb3",
		"RadioTower":                           "\xee\xac\xb4",
		"Reactions":                            "\xee\xac\xb5",
		"References":                           "\xee\xac\xb6",
		"Refresh":                              "\xee\xac\xb7",
		"Regex":                                "\xee\xac\xb8",
		"RemoteExplorer":                       "\xee\xac\xb9",
		"Remote":                               "\xee\xac\xba",
		"Remove":                               "\xee\xac\xbb",
		"ReplaceAll":                           "\xee\xac\xbc",
		"Replace":                              "\xee\xac\xbd",
		"RepoClone":                            "\xee\xac\xbe",
		"RepoForcePush":                        "\xee\xac\xbf",
		"RepoPull":                             "\xee\xad\x80",
		"RepoPush":                             "\xee\xad\x81",
		"Report":                               "\xee\xad\x82",
		"RequestChanges":                       "\xee\xad\x83",
		"Rocket":                               "\xee\xad\x84",
		"RootFolderOpened":                     "\xee\xad\x85",
		"RootFolder":                           "\xee\xad\x86",
		"Rss":                                  "\xee\xad\x87",
		"Ruby":                                 "\xee\xad\x88",
		"SaveAll":                              "\xee\xad\x89",
		"SaveAs":                               "\xee\xad\x8a",
		"Save":                                 "\xee\xad\x8b",
		"ScreenFull":                           "\xee\xad\x8c",
		"ScreenNormal":                         "\xee\xad\x8d",
		"SearchStop":                           "\xee\xad\x8e",
		"Server":                               "\xee\xad\x90",
		"SettingsGear":                         "\xee\xad\x91",
		"Settings":                             "\xee\xad\x92",
		"Shield":                               "\xee\xad\x93",
		"Smiley":                               "\xee\xad\x94",
		"SortPrecedence":                       "\xee\xad\x95",
		"SplitHorizontal":                      "\xee\xad\x96",
		"SplitVertical":                        "\xee\xad\x97",
		"Squirrel":                             "\xee\xad\x98",
		"StarFull":                             "\xee\xad\x99",
		"StarHalf":                             "\xee\xad\x9a",
		"SymbolClass":                          "\xee\xad\x9b",
		"SymbolColor":                          "\xee\xad\x9c",
		"SymbolConstant":                       "\xee\xad\x9d",
		"SymbolEnumMember":                     "\xee\xad\x9e",
		"SymbolField":                          "\xee\xad\x9f",
		"SymbolFile":                           "\xee\xad\xa0",
		"SymbolInterface":                      "\xee\xad\xa1",
		"SymbolKeyword":                        "\xee\xad\xa2",
		"SymbolMisc":                           "\xee\xad\xa3",
		"SymbolOperator":                       "\xee\xad\xa4",
		"SymbolProperty":                       "\xee\xad\xa5",
		"Wrench":                               "\xee\xad\xa5",
		"WrenchSubaction":                      "\xee\xad\xa5",
		"SymbolSnippet":                        "\xee\xad\xa6",
		"Tasklist":                             "\xee\xad\xa7",
		"Telescope":                            "\xee\xad\xa8",
		"TextSize":                             "\xee\xad\xa9",
		"ThreeBars":                            "\xee\xad\xaa",
		"Thumbsdown":                           "\xee\xad\xab",
		"Thumbsup":                             "\xee\xad\xac",
		"Tools":                                "\xee\xad\xad",
		"TriangleDown":                         "\xee\xad\xae",
		"TriangleLeft":                         "\xee\xad\xaf",
		"TriangleRight":                        "\xee\xad\xb0",
		"TriangleUp":                           "\xee\xad\xb1",
		"Twitter":                              "\xee\xad\xb2",
		"Unfold":                               "\xee\xad\xb3",
		"Unlock":                               "\xee\xad\xb4",
		"Unmute":                               "\xee\xad\xb5",
		"Unverified":                           "\xee\xad\xb6",
		"Verified":                             "\xee\xad\xb7",
		"Versions":                             "\xee\xad\xb8",
		"VmActive":                             "\xee\xad\xb9",
		"VmOutline":                            "\xee\xad\xba",
		"VmRunning":                            "\xee\xad\xbb",
		"Watch":                                "\xee\xad\xbc",
		"Whitespace":                           "\xee\xad\xbd",
		"WholeWord":                            "\xee\xad\xbe",
		"Window":                               "\xee\xad\xbf",
		"WordWrap":                             "\xee\xae\x80",
		"ZoomIn":                               "\xee\xae\x81",
		"ZoomOut":                              "\xee\xae\x82",
		"ListFilter":                           "\xee\xae\x83",
		"ListFlat":                             "\xee\xae\x84",
		"ListSelection":                        "\xee\xae\x85",
		"Selection":                            "\xee\xae\x85",
		"ListTree":                             "\xee\xae\x86",
		"DebugBreakpointFunctionUnverified":    "\xee\xae\x87",
		"DebugBreakpointFunction":              "\xee\xae\x88",
		"DebugBreakpointFunctionDisabled":      "\xee\xae\x88",
		"DebugStackframeActive":                "\xee\xae\x89",
		"CircleSmallFilled":                    "\xee\xae\x8a",
		"DebugStackframeDot":                   "\xee\xae\x8a",
		"TerminalDecorationMark":               "\xee\xae\x8a",
		"DebugStackframe":                      "\xee\xae\x8b",
		"DebugStackframeFocused":               "\xee\xae\x8b",
		"DebugBreakpointUnsupported":           "\xee\xae\x8c",
		"SymbolString":                         "\xee\xae\x8d",
		"DebugReverseContinue":                 "\xee\xae\x8e",
		"DebugStepBack":                        "\xee\xae\x8f",
		"DebugRestartFrame":                    "\xee\xae\x90",
		"DebugAlt":                             "\xee\xae\x91",
		"CallIncoming":                         "\xee\xae\x92",
		"CallOutgoing":                         "\xee\xae\x93",
		"Menu":                                 "\xee\xae\x94",
		"ExpandAll":                            "\xee\xae\x95",
		"Feedback":                             "\xee\xae\x96",
		"GitPullRequestReviewer":               "\xee\xae\x96",
		"GroupByRefType":                       "\xee\xae\x97",
		"UngroupByRefType":                     "\xee\xae\x98",
		"Account":                              "\xee\xae\x99",
		"GitPullRequestAssignee":               "\xee\xae\x99",
		"BellDot":                              "\xee\xae\x9a",
		"DebugConsole":                         "\xee\xae\x9b",
		"Library":                              "\xee\xae\x9c",
		"Output":                               "\xee\xae\x9d",
		"RunAll":                               "\xee\xae\x9e",
		"SyncIgnored":                          "\xee\xae\x9f",
		"Pinned":                               "\xee\xae\xa0",
		"GithubInverted":                       "\xee\xae\xa1",
		"ServerProcess":                        "\xee\xae\xa2",
		"ServerEnvironment":                    "\xee\xae\xa3",
		"Pass":                                 "\xee\xae\xa4",
		"IssueClosed":                          "\xee\xae\xa4",
		"StopCircle":                           "\xee\xae\xa5",
		"PlayCircle":                           "\xee\xae\xa6",
		"Record":                               "\xee\xae\xa7",
		"DebugAltSmall":                        "\xee\xae\xa8",
		"VmConnect":                            "\xee\xae\xa9",
		"Cloud":                                "\xee\xae\xaa",
		"Merge":                                "\xee\xae\xab",
		"Export":                               "\xee\xae\xac",
		"GraphLeft":                            "\xee\xae\xad",
		"Magnet":                               "\xee\xae\xae",
		"Notebook":                             "\xee\xae\xaf",
		"Redo":                                 "\xee\xae\xb0",
		"CheckAll":                             "\xee\xae\xb1",
		"PinnedDirty":                          "\xee\xae\xb2",
		"PassFilled":                           "\xee\xae\xb3",
		"CircleLargeFilled":                    "\xee\xae\xb4",
		"CircleLarge":                          "\xee\xae\xb5",
		"CircleLargeOutline":                   "\xee\xae\xb5",
		"Combine":                              "\xee\xae\xb6",
		"Gather":                               "\xee\xae\xb6",
		"Table":                                "\xee\xae\xb7",
		"VariableGroup":                        "\xee\xae\xb8",
		"TypeHierarchy":                        "\xee\xae\xb9",
		"TypeHierarchySub":                     "\xee\xae\xba",
		"TypeHierarchySuper":                   "\xee\xae\xbb",
		"GitPullRequestCreate":                 "\xee\xae\xbc",
		"RunAbove":                             "\xee\xae\xbd",
		"RunBelow":                             "\xee\xae\xbe",
		"NotebookTemplate":                     "\xee\xae\xbf",
		"DebugRerun":                           "\xee\xaf\x80",
		"WorkspaceTrusted":                     "\xee\xaf\x81",
		"WorkspaceUntrusted":                   "\xee\xaf\x82",
		"WorkspaceUnknown":                     "\xee\xaf\x83",
		"TerminalCmd":                          "\xee\xaf\x84",
		"TerminalDebian":                       "\xee\xaf\x85",
		"TerminalLinux":                        "\xee\xaf\x86",
		"TerminalPowershell":                   "\xee\xaf\x87",
		"TerminalTmux":                         "\xee\xaf\x88",
		"TerminalUbuntu":                       "\xee\xaf\x89",
		"TerminalBash":                         "\xee\xaf\x8a",
		"ArrowSwap":                            "\xee\xaf\x8b",
		"Copy":                                 "\xee\xaf\x8c",
		"PersonAdd":                            "\xee\xaf\x8d",
		"FilterFilled":                         "\xee\xaf\x8e",
		"Wand":                                 "\xee\xaf\x8f",
		"DebugLineByLine":                      "\xee\xaf\x90",
		"Inspect":                              "\xee\xaf\x91",
		"Layers":                               "\xee\xaf\x92",
		"LayersDot":                            "\xee\xaf\x93",
		"LayersActive":                         "\xee\xaf\x94",
		"Compass":                              "\xee\xaf\x95",
		"CompassDot":                           "\xee\xaf\x96",
		"CompassActive":                        "\xee\xaf\x97",
		"Azure":                                "\xee\xaf\x98",
		"IssueDraft":                           "\xee\xaf\x99",
		"GitPullRequestClosed":                 "\xee\xaf\x9a",
		"GitPullRequestDraft":                  "\xee\xaf\x9b",
		"DebugAll":                             "\xee\xaf\x9c",
		"DebugCoverage":                        "\xee\xaf\x9d",
		"RunErrors":                            "\xee\xaf\x9e",
		"FolderLibrary":                        "\xee\xaf\x9f",
		"DebugContinueSmall":                   "\xee\xaf\xa0",
		"BeakerStop":                           "\xee\xaf\xa1",
		"GraphLine":                            "\xee\xaf\xa2",
		"GraphScatter":                         "\xee\xaf\xa3",
		"PieChart":                             "\xee\xaf\xa4",
		"Bracket":                              "\xee\xac\x8f",
		"BracketDot":                           "\xee\xaf\xa5",
		"BracketError":                         "\xee\xaf\xa6",
		"LockSmall":                            "\xee\xaf\xa7",
		"AzureDevops":                          "\xee\xaf\xa8",
		"VerifiedFilled":                       "\xee\xaf\xa9",
		"Newline":                              "\xee\xaf\xaa",
		"Layout":                               "\xee\xaf\xab",
		"LayoutActivitybarLeft":                "\xee\xaf\xac",
		"LayoutActivitybarRight":               "\xee\xaf\xad",
		"LayoutPanelLeft":                      "\xee\xaf\xae",
		"LayoutPanelCenter":                    "\xee\xaf\xaf",
		"LayoutPanelJustify":                   "\xee\xaf\xb0",
		"LayoutPanelRight":                     "\xee\xaf\xb1",
		"LayoutPanel":                          "\xee\xaf\xb2",
		"LayoutSidebarLeft":                    "\xee\xaf\xb3",
		"LayoutSidebarRight":                   "\xee\xaf\xb4",
		"LayoutStatusbar":                      "\xee\xaf\xb5",
		"LayoutMenubar":                        "\xee\xaf\xb6",
		"LayoutCentered":                       "\xee\xaf\xb7",
		"Target":                               "\xee\xaf\xb8",
		"Indent":                               "\xee\xaf\xb9",
		"RecordSmall":                          "\xee\xaf\xba",
		"ErrorSmall":                           "\xee\xaf\xbb",
		"TerminalDecorationError":              "\xee\xaf\xbb",
		"ArrowCircleDown":                      "\xee\xaf\xbc",
		"ArrowCircleLeft":                      "\xee\xaf\xbd",
		"ArrowCircleRight":                     "\xee\xaf\xbe",
		"ArrowCircleUp":                        "\xee\xaf\xbf",
		"LayoutSidebarRightOff":                "\xee\xb0\x80",
		"LayoutPanelOff":                       "\xee\xb0\x81",
		"LayoutSidebarLeftOff":                 "\xee\xb0\x82",
		"Blank":                                "\xee\xb0\x83",
		"HeartFilled":                          "\xee\xb0\x84",
		"Map":                                  "\xee\xb0\x85",
		"MapHorizontal":                        "\xee\xb0\x85",
		"FoldHorizontal":                       "\xee\xb0\x85",
		"MapFilled":                            "\xee\xb0\x86",
		"MapHorizontalFilled":                  "\xee\xb0\x86",
		"FoldHorizontalFilled":                 "\xee\xb0\x86",
		"CircleSmall":                          "\xee\xb0\x87",
		"BellSlash":                            "\xee\xb0\x88",
		"BellSlashDot":                         "\xee\xb0\x89",
		"CommentUnresolved":                    "\xee\xb0\x8a",
		"GitPullRequestGoToChanges":            "\xee\xb0\x8b",
		"GitPullRequestNewChanges":             "\xee\xb0\x8c",
		"SearchFuzzy":                          "\xee\xb0\x8d",
		"CommentDraft":                         "\xee\xb0\x8e",
		"Send":                                 "\xee\xb0\x8f",
		"Sparkle":                              "\xee\xb0\x90",
		"Insert":                               "\xee\xb0\x91",
		"Mic":                                  "\xee\xb0\x92",
		"ThumbsdownFilled":                     "\xee\xb0\x93",
		"ThumbsupFilled":                       "\xee\xb0\x94",
		"Coffee":                               "\xee\xb0\x95",
		"Snake":                                "\xee\xb0\x96",
		"Game":                                 "\xee\xb0\x97",
		"Vr":                                   "\xee\xb0\x98",
		"Chip":                                 "\xee\xb0\x99",
		"Piano":                                "\xee\xb0\x9a",
		"Music":                                "\xee\xb0\x9b",
		"MicFilled":                            "\xee\xb0\x9c",
		"RepoFetch":                            "\xee\xb0\x9d",
		"Copilot":                              "\xee\xb0\x9e",
		"LightbulbSparkle":                     "\xee\xb0\x9f",
		"Robot":                                "\xee\xb0\xa0",
		"SparkleFilled":                        "\xee\xb0\xa1",
		"DiffSingle":                           "\xee\xb0\xa2",
		"DiffMultiple":                         "\xee\xb0\xa3",
		"SurroundWith":                         "\xee\xb0\xa4",
		"Share":                                "\xee\xb0\xa5",
		"GitStash":                             "\xee\xb0\xa6",
		"GitStashApply":                        "\xee\xb0\xa7",
		"GitStashPop":                          "\xee\xb0\xa8",
		"Vscode":                               "\xee\xb0\xa9",
		"VscodeInsiders":                       "\xee\xb0\xaa",
		"CodeOss":                              "\xee\xb0\xab",
		"RunCoverage":                          "\xee\xb0\xac",
		"RunAllCoverage":                       "\xee\xb0\xad",
		"Coverage":                             "\xee\xb0\xae",
		"GithubProject":                        "\xee\xb0\xaf",
		"MapVertical":                          "\xee\xb0\xb0",
		"FoldVertical":                         "\xee\xb0\xb0",
		"MapVerticalFilled":                    "\xee\xb0\xb1",
		"FoldVerticalFilled":                   "\xee\xb0\xb1",
		"GoToSearch":                           "\xee\xb0\xb2",
		"Percentage":                           "\xee\xb0\xb3",
		"SortPercentage":                       "\xee\xb0\xb3",
		"Attach":                               "\xee\xb0\xb4",
		"GoToEditingSession":                   "\xee\xb0\xb5",
		"EditSession":                          "\xee\xb0\xb6",
		"CodeReview":                           "\xee\xb0\xb7",
		"CopilotWarning":                       "\xee\xb0\xb8",
		"Python":                               "\xee\xb0\xb9",
		"CopilotLarge":                         "\xee\xb0\xba",
		"CopilotWarningLarge":                  "\xee\xb0\xbb",
		"KeyboardTab":                          "\xee\xb0\xbc",
		"CopilotBlocked":                       "\xee\xb0\xbd",
		"CopilotNotConnected":                  "\xee\xb0\xbe",
		"Flag":                                 "\xee\xb0\xbf",
		"LightbulbEmpty":                       "\xee\xb1\x80",
		"SymbolMethodArrow":                    "\xee\xb1\x81",
		"CopilotUnavailable":                   "\xee\xb1\x82",
		"RepoPinned":                           "\xee\xb1\x83",
		"KeyboardTabAbove":                     "\xee\xb1\x84",
		"KeyboardTabBelow":                     "\xee\xb1\x85",
		"GitFetch":                             "\xef\x84\x81",
	},
}
View Source
var IconsFontAwesome4 = Font{
	Filenames: [][2]string{
		{"FA", "fontawesome-webfont.ttf"},
	},
	Min:   0xf000,
	Max16: 0xf2e0,
	Max:   0xf2e0,
	Icons: map[string]string{
		"Glass":                            "\xef\x80\x80",
		"Music":                            "\xef\x80\x81",
		"Search":                           "\xef\x80\x82",
		"EnvelopeO":                        "\xef\x80\x83",
		"Heart":                            "\xef\x80\x84",
		"Star":                             "\xef\x80\x85",
		"StarO":                            "\xef\x80\x86",
		"User":                             "\xef\x80\x87",
		"Film":                             "\xef\x80\x88",
		"ThLarge":                          "\xef\x80\x89",
		"Th":                               "\xef\x80\x8a",
		"ThList":                           "\xef\x80\x8b",
		"Check":                            "\xef\x80\x8c",
		"Times":                            "\xef\x80\x8d",
		"SearchPlus":                       "\xef\x80\x8e",
		"SearchMinus":                      "\xef\x80\x90",
		"PowerOff":                         "\xef\x80\x91",
		"Signal":                           "\xef\x80\x92",
		"Cog":                              "\xef\x80\x93",
		"TrashO":                           "\xef\x80\x94",
		"Home":                             "\xef\x80\x95",
		"FileO":                            "\xef\x80\x96",
		"ClockO":                           "\xef\x80\x97",
		"Road":                             "\xef\x80\x98",
		"Download":                         "\xef\x80\x99",
		"ArrowCircleODown":                 "\xef\x80\x9a",
		"ArrowCircleOUp":                   "\xef\x80\x9b",
		"Inbox":                            "\xef\x80\x9c",
		"PlayCircleO":                      "\xef\x80\x9d",
		"Repeat":                           "\xef\x80\x9e",
		"Refresh":                          "\xef\x80\xa1",
		"ListAlt":                          "\xef\x80\xa2",
		"Lock":                             "\xef\x80\xa3",
		"Flag":                             "\xef\x80\xa4",
		"Headphones":                       "\xef\x80\xa5",
		"VolumeOff":                        "\xef\x80\xa6",
		"VolumeDown":                       "\xef\x80\xa7",
		"VolumeUp":                         "\xef\x80\xa8",
		"Qrcode":                           "\xef\x80\xa9",
		"Barcode":                          "\xef\x80\xaa",
		"Tag":                              "\xef\x80\xab",
		"Tags":                             "\xef\x80\xac",
		"Book":                             "\xef\x80\xad",
		"Bookmark":                         "\xef\x80\xae",
		"Print":                            "\xef\x80\xaf",
		"Camera":                           "\xef\x80\xb0",
		"Font":                             "\xef\x80\xb1",
		"Bold":                             "\xef\x80\xb2",
		"Italic":                           "\xef\x80\xb3",
		"TextHeight":                       "\xef\x80\xb4",
		"TextWidth":                        "\xef\x80\xb5",
		"AlignLeft":                        "\xef\x80\xb6",
		"AlignCenter":                      "\xef\x80\xb7",
		"AlignRight":                       "\xef\x80\xb8",
		"AlignJustify":                     "\xef\x80\xb9",
		"List":                             "\xef\x80\xba",
		"Outdent":                          "\xef\x80\xbb",
		"Indent":                           "\xef\x80\xbc",
		"VideoCamera":                      "\xef\x80\xbd",
		"PictureO":                         "\xef\x80\xbe",
		"Pencil":                           "\xef\x81\x80",
		"MapMarker":                        "\xef\x81\x81",
		"Adjust":                           "\xef\x81\x82",
		"Tint":                             "\xef\x81\x83",
		"PencilSquareO":                    "\xef\x81\x84",
		"ShareSquareO":                     "\xef\x81\x85",
		"CheckSquareO":                     "\xef\x81\x86",
		"Arrows":                           "\xef\x81\x87",
		"StepBackward":                     "\xef\x81\x88",
		"FastBackward":                     "\xef\x81\x89",
		"Backward":                         "\xef\x81\x8a",
		"Play":                             "\xef\x81\x8b",
		"Pause":                            "\xef\x81\x8c",
		"Stop":                             "\xef\x81\x8d",
		"Forward":                          "\xef\x81\x8e",
		"FastForward":                      "\xef\x81\x90",
		"StepForward":                      "\xef\x81\x91",
		"Eject":                            "\xef\x81\x92",
		"ChevronLeft":                      "\xef\x81\x93",
		"ChevronRight":                     "\xef\x81\x94",
		"PlusCircle":                       "\xef\x81\x95",
		"MinusCircle":                      "\xef\x81\x96",
		"TimesCircle":                      "\xef\x81\x97",
		"CheckCircle":                      "\xef\x81\x98",
		"QuestionCircle":                   "\xef\x81\x99",
		"InfoCircle":                       "\xef\x81\x9a",
		"Crosshairs":                       "\xef\x81\x9b",
		"TimesCircleO":                     "\xef\x81\x9c",
		"CheckCircleO":                     "\xef\x81\x9d",
		"Ban":                              "\xef\x81\x9e",
		"ArrowLeft":                        "\xef\x81\xa0",
		"ArrowRight":                       "\xef\x81\xa1",
		"ArrowUp":                          "\xef\x81\xa2",
		"ArrowDown":                        "\xef\x81\xa3",
		"Share":                            "\xef\x81\xa4",
		"Expand":                           "\xef\x81\xa5",
		"Compress":                         "\xef\x81\xa6",
		"Plus":                             "\xef\x81\xa7",
		"Minus":                            "\xef\x81\xa8",
		"Asterisk":                         "\xef\x81\xa9",
		"ExclamationCircle":                "\xef\x81\xaa",
		"Gift":                             "\xef\x81\xab",
		"Leaf":                             "\xef\x81\xac",
		"Fire":                             "\xef\x81\xad",
		"Eye":                              "\xef\x81\xae",
		"EyeSlash":                         "\xef\x81\xb0",
		"ExclamationTriangle":              "\xef\x81\xb1",
		"Plane":                            "\xef\x81\xb2",
		"Calendar":                         "\xef\x81\xb3",
		"Random":                           "\xef\x81\xb4",
		"Comment":                          "\xef\x81\xb5",
		"Magnet":                           "\xef\x81\xb6",
		"ChevronUp":                        "\xef\x81\xb7",
		"ChevronDown":                      "\xef\x81\xb8",
		"Retweet":                          "\xef\x81\xb9",
		"ShoppingCart":                     "\xef\x81\xba",
		"Folder":                           "\xef\x81\xbb",
		"FolderOpen":                       "\xef\x81\xbc",
		"ArrowsV":                          "\xef\x81\xbd",
		"ArrowsH":                          "\xef\x81\xbe",
		"BarChart":                         "\xef\x82\x80",
		"TwitterSquare":                    "\xef\x82\x81",
		"FacebookSquare":                   "\xef\x82\x82",
		"CameraRetro":                      "\xef\x82\x83",
		"Key":                              "\xef\x82\x84",
		"Cogs":                             "\xef\x82\x85",
		"Comments":                         "\xef\x82\x86",
		"ThumbsOUp":                        "\xef\x82\x87",
		"ThumbsODown":                      "\xef\x82\x88",
		"StarHalf":                         "\xef\x82\x89",
		"HeartO":                           "\xef\x82\x8a",
		"SignOut":                          "\xef\x82\x8b",
		"LinkedinSquare":                   "\xef\x82\x8c",
		"ThumbTack":                        "\xef\x82\x8d",
		"ExternalLink":                     "\xef\x82\x8e",
		"SignIn":                           "\xef\x82\x90",
		"Trophy":                           "\xef\x82\x91",
		"GithubSquare":                     "\xef\x82\x92",
		"Upload":                           "\xef\x82\x93",
		"LemonO":                           "\xef\x82\x94",
		"Phone":                            "\xef\x82\x95",
		"SquareO":                          "\xef\x82\x96",
		"BookmarkO":                        "\xef\x82\x97",
		"PhoneSquare":                      "\xef\x82\x98",
		"Twitter":                          "\xef\x82\x99",
		"Facebook":                         "\xef\x82\x9a",
		"Github":                           "\xef\x82\x9b",
		"Unlock":                           "\xef\x82\x9c",
		"CreditCard":                       "\xef\x82\x9d",
		"Rss":                              "\xef\x82\x9e",
		"HddO":                             "\xef\x82\xa0",
		"Bullhorn":                         "\xef\x82\xa1",
		"Bell":                             "\xef\x83\xb3",
		"Certificate":                      "\xef\x82\xa3",
		"HandORight":                       "\xef\x82\xa4",
		"HandOLeft":                        "\xef\x82\xa5",
		"HandOUp":                          "\xef\x82\xa6",
		"HandODown":                        "\xef\x82\xa7",
		"ArrowCircleLeft":                  "\xef\x82\xa8",
		"ArrowCircleRight":                 "\xef\x82\xa9",
		"ArrowCircleUp":                    "\xef\x82\xaa",
		"ArrowCircleDown":                  "\xef\x82\xab",
		"Globe":                            "\xef\x82\xac",
		"Wrench":                           "\xef\x82\xad",
		"Tasks":                            "\xef\x82\xae",
		"Filter":                           "\xef\x82\xb0",
		"Briefcase":                        "\xef\x82\xb1",
		"ArrowsAlt":                        "\xef\x82\xb2",
		"Users":                            "\xef\x83\x80",
		"Link":                             "\xef\x83\x81",
		"Cloud":                            "\xef\x83\x82",
		"Flask":                            "\xef\x83\x83",
		"Scissors":                         "\xef\x83\x84",
		"FilesO":                           "\xef\x83\x85",
		"Paperclip":                        "\xef\x83\x86",
		"FloppyO":                          "\xef\x83\x87",
		"Square":                           "\xef\x83\x88",
		"Bars":                             "\xef\x83\x89",
		"ListUl":                           "\xef\x83\x8a",
		"ListOl":                           "\xef\x83\x8b",
		"Strikethrough":                    "\xef\x83\x8c",
		"Underline":                        "\xef\x83\x8d",
		"Table":                            "\xef\x83\x8e",
		"Magic":                            "\xef\x83\x90",
		"Truck":                            "\xef\x83\x91",
		"Pinterest":                        "\xef\x83\x92",
		"PinterestSquare":                  "\xef\x83\x93",
		"GooglePlusSquare":                 "\xef\x83\x94",
		"GooglePlus":                       "\xef\x83\x95",
		"Money":                            "\xef\x83\x96",
		"CaretDown":                        "\xef\x83\x97",
		"CaretUp":                          "\xef\x83\x98",
		"CaretLeft":                        "\xef\x83\x99",
		"CaretRight":                       "\xef\x83\x9a",
		"Columns":                          "\xef\x83\x9b",
		"Sort":                             "\xef\x83\x9c",
		"SortDesc":                         "\xef\x83\x9d",
		"SortAsc":                          "\xef\x83\x9e",
		"Envelope":                         "\xef\x83\xa0",
		"Linkedin":                         "\xef\x83\xa1",
		"Undo":                             "\xef\x83\xa2",
		"Gavel":                            "\xef\x83\xa3",
		"Tachometer":                       "\xef\x83\xa4",
		"CommentO":                         "\xef\x83\xa5",
		"CommentsO":                        "\xef\x83\xa6",
		"Bolt":                             "\xef\x83\xa7",
		"Sitemap":                          "\xef\x83\xa8",
		"Umbrella":                         "\xef\x83\xa9",
		"Clipboard":                        "\xef\x83\xaa",
		"LightbulbO":                       "\xef\x83\xab",
		"Exchange":                         "\xef\x83\xac",
		"CloudDownload":                    "\xef\x83\xad",
		"CloudUpload":                      "\xef\x83\xae",
		"UserMd":                           "\xef\x83\xb0",
		"Stethoscope":                      "\xef\x83\xb1",
		"Suitcase":                         "\xef\x83\xb2",
		"BellO":                            "\xef\x82\xa2",
		"Coffee":                           "\xef\x83\xb4",
		"Cutlery":                          "\xef\x83\xb5",
		"FileTextO":                        "\xef\x83\xb6",
		"BuildingO":                        "\xef\x83\xb7",
		"HospitalO":                        "\xef\x83\xb8",
		"Ambulance":                        "\xef\x83\xb9",
		"Medkit":                           "\xef\x83\xba",
		"FighterJet":                       "\xef\x83\xbb",
		"Beer":                             "\xef\x83\xbc",
		"HSquare":                          "\xef\x83\xbd",
		"PlusSquare":                       "\xef\x83\xbe",
		"AngleDoubleLeft":                  "\xef\x84\x80",
		"AngleDoubleRight":                 "\xef\x84\x81",
		"AngleDoubleUp":                    "\xef\x84\x82",
		"AngleDoubleDown":                  "\xef\x84\x83",
		"AngleLeft":                        "\xef\x84\x84",
		"AngleRight":                       "\xef\x84\x85",
		"AngleUp":                          "\xef\x84\x86",
		"AngleDown":                        "\xef\x84\x87",
		"Desktop":                          "\xef\x84\x88",
		"Laptop":                           "\xef\x84\x89",
		"Tablet":                           "\xef\x84\x8a",
		"Mobile":                           "\xef\x84\x8b",
		"CircleO":                          "\xef\x84\x8c",
		"QuoteLeft":                        "\xef\x84\x8d",
		"QuoteRight":                       "\xef\x84\x8e",
		"Spinner":                          "\xef\x84\x90",
		"Circle":                           "\xef\x84\x91",
		"Reply":                            "\xef\x84\x92",
		"GithubAlt":                        "\xef\x84\x93",
		"FolderO":                          "\xef\x84\x94",
		"FolderOpenO":                      "\xef\x84\x95",
		"SmileO":                           "\xef\x84\x98",
		"FrownO":                           "\xef\x84\x99",
		"MehO":                             "\xef\x84\x9a",
		"Gamepad":                          "\xef\x84\x9b",
		"KeyboardO":                        "\xef\x84\x9c",
		"FlagO":                            "\xef\x84\x9d",
		"FlagCheckered":                    "\xef\x84\x9e",
		"Terminal":                         "\xef\x84\xa0",
		"Code":                             "\xef\x84\xa1",
		"ReplyAll":                         "\xef\x84\xa2",
		"StarHalfO":                        "\xef\x84\xa3",
		"LocationArrow":                    "\xef\x84\xa4",
		"Crop":                             "\xef\x84\xa5",
		"CodeFork":                         "\xef\x84\xa6",
		"ChainBroken":                      "\xef\x84\xa7",
		"Question":                         "\xef\x84\xa8",
		"Info":                             "\xef\x84\xa9",
		"Exclamation":                      "\xef\x84\xaa",
		"Superscript":                      "\xef\x84\xab",
		"Subscript":                        "\xef\x84\xac",
		"Eraser":                           "\xef\x84\xad",
		"PuzzlePiece":                      "\xef\x84\xae",
		"Microphone":                       "\xef\x84\xb0",
		"MicrophoneSlash":                  "\xef\x84\xb1",
		"Shield":                           "\xef\x84\xb2",
		"CalendarO":                        "\xef\x84\xb3",
		"FireExtinguisher":                 "\xef\x84\xb4",
		"Rocket":                           "\xef\x84\xb5",
		"Maxcdn":                           "\xef\x84\xb6",
		"ChevronCircleLeft":                "\xef\x84\xb7",
		"ChevronCircleRight":               "\xef\x84\xb8",
		"ChevronCircleUp":                  "\xef\x84\xb9",
		"ChevronCircleDown":                "\xef\x84\xba",
		"Html5":                            "\xef\x84\xbb",
		"Css3":                             "\xef\x84\xbc",
		"Anchor":                           "\xef\x84\xbd",
		"UnlockAlt":                        "\xef\x84\xbe",
		"Bullseye":                         "\xef\x85\x80",
		"EllipsisH":                        "\xef\x85\x81",
		"EllipsisV":                        "\xef\x85\x82",
		"RssSquare":                        "\xef\x85\x83",
		"PlayCircle":                       "\xef\x85\x84",
		"Ticket":                           "\xef\x85\x85",
		"MinusSquare":                      "\xef\x85\x86",
		"MinusSquareO":                     "\xef\x85\x87",
		"LevelUp":                          "\xef\x85\x88",
		"LevelDown":                        "\xef\x85\x89",
		"CheckSquare":                      "\xef\x85\x8a",
		"PencilSquare":                     "\xef\x85\x8b",
		"ExternalLinkSquare":               "\xef\x85\x8c",
		"ShareSquare":                      "\xef\x85\x8d",
		"Compass":                          "\xef\x85\x8e",
		"CaretSquareODown":                 "\xef\x85\x90",
		"CaretSquareOUp":                   "\xef\x85\x91",
		"CaretSquareORight":                "\xef\x85\x92",
		"Eur":                              "\xef\x85\x93",
		"Gbp":                              "\xef\x85\x94",
		"Usd":                              "\xef\x85\x95",
		"Inr":                              "\xef\x85\x96",
		"Jpy":                              "\xef\x85\x97",
		"Rub":                              "\xef\x85\x98",
		"Krw":                              "\xef\x85\x99",
		"Btc":                              "\xef\x85\x9a",
		"File":                             "\xef\x85\x9b",
		"FileText":                         "\xef\x85\x9c",
		"SortAlphaAsc":                     "\xef\x85\x9d",
		"SortAlphaDesc":                    "\xef\x85\x9e",
		"SortAmountAsc":                    "\xef\x85\xa0",
		"SortAmountDesc":                   "\xef\x85\xa1",
		"SortNumericAsc":                   "\xef\x85\xa2",
		"SortNumericDesc":                  "\xef\x85\xa3",
		"ThumbsUp":                         "\xef\x85\xa4",
		"ThumbsDown":                       "\xef\x85\xa5",
		"YoutubeSquare":                    "\xef\x85\xa6",
		"Youtube":                          "\xef\x85\xa7",
		"Xing":                             "\xef\x85\xa8",
		"XingSquare":                       "\xef\x85\xa9",
		"YoutubePlay":                      "\xef\x85\xaa",
		"Dropbox":                          "\xef\x85\xab",
		"StackOverflow":                    "\xef\x85\xac",
		"Instagram":                        "\xef\x85\xad",
		"Flickr":                           "\xef\x85\xae",
		"Adn":                              "\xef\x85\xb0",
		"Bitbucket":                        "\xef\x85\xb1",
		"BitbucketSquare":                  "\xef\x85\xb2",
		"Tumblr":                           "\xef\x85\xb3",
		"TumblrSquare":                     "\xef\x85\xb4",
		"LongArrowDown":                    "\xef\x85\xb5",
		"LongArrowUp":                      "\xef\x85\xb6",
		"LongArrowLeft":                    "\xef\x85\xb7",
		"LongArrowRight":                   "\xef\x85\xb8",
		"Apple":                            "\xef\x85\xb9",
		"Windows":                          "\xef\x85\xba",
		"Android":                          "\xef\x85\xbb",
		"Linux":                            "\xef\x85\xbc",
		"Dribbble":                         "\xef\x85\xbd",
		"Skype":                            "\xef\x85\xbe",
		"Foursquare":                       "\xef\x86\x80",
		"Trello":                           "\xef\x86\x81",
		"Female":                           "\xef\x86\x82",
		"Male":                             "\xef\x86\x83",
		"Gratipay":                         "\xef\x86\x84",
		"SunO":                             "\xef\x86\x85",
		"MoonO":                            "\xef\x86\x86",
		"Archive":                          "\xef\x86\x87",
		"Bug":                              "\xef\x86\x88",
		"Vk":                               "\xef\x86\x89",
		"Weibo":                            "\xef\x86\x8a",
		"Renren":                           "\xef\x86\x8b",
		"Pagelines":                        "\xef\x86\x8c",
		"StackExchange":                    "\xef\x86\x8d",
		"ArrowCircleORight":                "\xef\x86\x8e",
		"ArrowCircleOLeft":                 "\xef\x86\x90",
		"CaretSquareOLeft":                 "\xef\x86\x91",
		"DotCircleO":                       "\xef\x86\x92",
		"Wheelchair":                       "\xef\x86\x93",
		"VimeoSquare":                      "\xef\x86\x94",
		"Try":                              "\xef\x86\x95",
		"PlusSquareO":                      "\xef\x86\x96",
		"SpaceShuttle":                     "\xef\x86\x97",
		"Slack":                            "\xef\x86\x98",
		"EnvelopeSquare":                   "\xef\x86\x99",
		"Wordpress":                        "\xef\x86\x9a",
		"Openid":                           "\xef\x86\x9b",
		"University":                       "\xef\x86\x9c",
		"GraduationCap":                    "\xef\x86\x9d",
		"Yahoo":                            "\xef\x86\x9e",
		"Google":                           "\xef\x86\xa0",
		"Reddit":                           "\xef\x86\xa1",
		"RedditSquare":                     "\xef\x86\xa2",
		"StumbleuponCircle":                "\xef\x86\xa3",
		"Stumbleupon":                      "\xef\x86\xa4",
		"Delicious":                        "\xef\x86\xa5",
		"Digg":                             "\xef\x86\xa6",
		"PiedPiperPp":                      "\xef\x86\xa7",
		"PiedPiperAlt":                     "\xef\x86\xa8",
		"Drupal":                           "\xef\x86\xa9",
		"Joomla":                           "\xef\x86\xaa",
		"Language":                         "\xef\x86\xab",
		"Fax":                              "\xef\x86\xac",
		"Building":                         "\xef\x86\xad",
		"Child":                            "\xef\x86\xae",
		"Paw":                              "\xef\x86\xb0",
		"Spoon":                            "\xef\x86\xb1",
		"Cube":                             "\xef\x86\xb2",
		"Cubes":                            "\xef\x86\xb3",
		"Behance":                          "\xef\x86\xb4",
		"BehanceSquare":                    "\xef\x86\xb5",
		"Steam":                            "\xef\x86\xb6",
		"SteamSquare":                      "\xef\x86\xb7",
		"Recycle":                          "\xef\x86\xb8",
		"Car":                              "\xef\x86\xb9",
		"Taxi":                             "\xef\x86\xba",
		"Tree":                             "\xef\x86\xbb",
		"Spotify":                          "\xef\x86\xbc",
		"Deviantart":                       "\xef\x86\xbd",
		"Soundcloud":                       "\xef\x86\xbe",
		"Database":                         "\xef\x87\x80",
		"FilePdfO":                         "\xef\x87\x81",
		"FileWordO":                        "\xef\x87\x82",
		"FileExcelO":                       "\xef\x87\x83",
		"FilePowerpointO":                  "\xef\x87\x84",
		"FileImageO":                       "\xef\x87\x85",
		"FileArchiveO":                     "\xef\x87\x86",
		"FileAudioO":                       "\xef\x87\x87",
		"FileVideoO":                       "\xef\x87\x88",
		"FileCodeO":                        "\xef\x87\x89",
		"Vine":                             "\xef\x87\x8a",
		"Codepen":                          "\xef\x87\x8b",
		"Jsfiddle":                         "\xef\x87\x8c",
		"LifeRing":                         "\xef\x87\x8d",
		"CircleONotch":                     "\xef\x87\x8e",
		"Rebel":                            "\xef\x87\x90",
		"Empire":                           "\xef\x87\x91",
		"GitSquare":                        "\xef\x87\x92",
		"Git":                              "\xef\x87\x93",
		"HackerNews":                       "\xef\x87\x94",
		"TencentWeibo":                     "\xef\x87\x95",
		"Qq":                               "\xef\x87\x96",
		"Weixin":                           "\xef\x87\x97",
		"PaperPlane":                       "\xef\x87\x98",
		"PaperPlaneO":                      "\xef\x87\x99",
		"History":                          "\xef\x87\x9a",
		"CircleThin":                       "\xef\x87\x9b",
		"Header":                           "\xef\x87\x9c",
		"Paragraph":                        "\xef\x87\x9d",
		"Sliders":                          "\xef\x87\x9e",
		"ShareAlt":                         "\xef\x87\xa0",
		"ShareAltSquare":                   "\xef\x87\xa1",
		"Bomb":                             "\xef\x87\xa2",
		"FutbolO":                          "\xef\x87\xa3",
		"Tty":                              "\xef\x87\xa4",
		"Binoculars":                       "\xef\x87\xa5",
		"Plug":                             "\xef\x87\xa6",
		"Slideshare":                       "\xef\x87\xa7",
		"Twitch":                           "\xef\x87\xa8",
		"Yelp":                             "\xef\x87\xa9",
		"NewspaperO":                       "\xef\x87\xaa",
		"Wifi":                             "\xef\x87\xab",
		"Calculator":                       "\xef\x87\xac",
		"Paypal":                           "\xef\x87\xad",
		"GoogleWallet":                     "\xef\x87\xae",
		"CcVisa":                           "\xef\x87\xb0",
		"CcMastercard":                     "\xef\x87\xb1",
		"CcDiscover":                       "\xef\x87\xb2",
		"CcAmex":                           "\xef\x87\xb3",
		"CcPaypal":                         "\xef\x87\xb4",
		"CcStripe":                         "\xef\x87\xb5",
		"BellSlash":                        "\xef\x87\xb6",
		"BellSlashO":                       "\xef\x87\xb7",
		"Trash":                            "\xef\x87\xb8",
		"Copyright":                        "\xef\x87\xb9",
		"At":                               "\xef\x87\xba",
		"Eyedropper":                       "\xef\x87\xbb",
		"PaintBrush":                       "\xef\x87\xbc",
		"BirthdayCake":                     "\xef\x87\xbd",
		"AreaChart":                        "\xef\x87\xbe",
		"PieChart":                         "\xef\x88\x80",
		"LineChart":                        "\xef\x88\x81",
		"Lastfm":                           "\xef\x88\x82",
		"LastfmSquare":                     "\xef\x88\x83",
		"ToggleOff":                        "\xef\x88\x84",
		"ToggleOn":                         "\xef\x88\x85",
		"Bicycle":                          "\xef\x88\x86",
		"Bus":                              "\xef\x88\x87",
		"Ioxhost":                          "\xef\x88\x88",
		"Angellist":                        "\xef\x88\x89",
		"Cc":                               "\xef\x88\x8a",
		"Ils":                              "\xef\x88\x8b",
		"Meanpath":                         "\xef\x88\x8c",
		"Buysellads":                       "\xef\x88\x8d",
		"Connectdevelop":                   "\xef\x88\x8e",
		"Dashcube":                         "\xef\x88\x90",
		"Forumbee":                         "\xef\x88\x91",
		"Leanpub":                          "\xef\x88\x92",
		"Sellsy":                           "\xef\x88\x93",
		"Shirtsinbulk":                     "\xef\x88\x94",
		"Simplybuilt":                      "\xef\x88\x95",
		"Skyatlas":                         "\xef\x88\x96",
		"CartPlus":                         "\xef\x88\x97",
		"CartArrowDown":                    "\xef\x88\x98",
		"Diamond":                          "\xef\x88\x99",
		"Ship":                             "\xef\x88\x9a",
		"UserSecret":                       "\xef\x88\x9b",
		"Motorcycle":                       "\xef\x88\x9c",
		"StreetView":                       "\xef\x88\x9d",
		"Heartbeat":                        "\xef\x88\x9e",
		"Venus":                            "\xef\x88\xa1",
		"Mars":                             "\xef\x88\xa2",
		"Mercury":                          "\xef\x88\xa3",
		"Transgender":                      "\xef\x88\xa4",
		"TransgenderAlt":                   "\xef\x88\xa5",
		"VenusDouble":                      "\xef\x88\xa6",
		"MarsDouble":                       "\xef\x88\xa7",
		"VenusMars":                        "\xef\x88\xa8",
		"MarsStroke":                       "\xef\x88\xa9",
		"MarsStrokeV":                      "\xef\x88\xaa",
		"MarsStrokeH":                      "\xef\x88\xab",
		"Neuter":                           "\xef\x88\xac",
		"Genderless":                       "\xef\x88\xad",
		"FacebookOfficial":                 "\xef\x88\xb0",
		"PinterestP":                       "\xef\x88\xb1",
		"Whatsapp":                         "\xef\x88\xb2",
		"Server":                           "\xef\x88\xb3",
		"UserPlus":                         "\xef\x88\xb4",
		"UserTimes":                        "\xef\x88\xb5",
		"Bed":                              "\xef\x88\xb6",
		"Viacoin":                          "\xef\x88\xb7",
		"Train":                            "\xef\x88\xb8",
		"Subway":                           "\xef\x88\xb9",
		"Medium":                           "\xef\x88\xba",
		"YCombinator":                      "\xef\x88\xbb",
		"OptinMonster":                     "\xef\x88\xbc",
		"Opencart":                         "\xef\x88\xbd",
		"Expeditedssl":                     "\xef\x88\xbe",
		"BatteryFull":                      "\xef\x89\x80",
		"BatteryThreeQuarters":             "\xef\x89\x81",
		"BatteryHalf":                      "\xef\x89\x82",
		"BatteryQuarter":                   "\xef\x89\x83",
		"BatteryEmpty":                     "\xef\x89\x84",
		"MousePointer":                     "\xef\x89\x85",
		"ICursor":                          "\xef\x89\x86",
		"ObjectGroup":                      "\xef\x89\x87",
		"ObjectUngroup":                    "\xef\x89\x88",
		"StickyNote":                       "\xef\x89\x89",
		"StickyNoteO":                      "\xef\x89\x8a",
		"CcJcb":                            "\xef\x89\x8b",
		"CcDinersClub":                     "\xef\x89\x8c",
		"Clone":                            "\xef\x89\x8d",
		"BalanceScale":                     "\xef\x89\x8e",
		"HourglassO":                       "\xef\x89\x90",
		"HourglassStart":                   "\xef\x89\x91",
		"HourglassHalf":                    "\xef\x89\x92",
		"HourglassEnd":                     "\xef\x89\x93",
		"Hourglass":                        "\xef\x89\x94",
		"HandRockO":                        "\xef\x89\x95",
		"HandPaperO":                       "\xef\x89\x96",
		"HandScissorsO":                    "\xef\x89\x97",
		"HandLizardO":                      "\xef\x89\x98",
		"HandSpockO":                       "\xef\x89\x99",
		"HandPointerO":                     "\xef\x89\x9a",
		"HandPeaceO":                       "\xef\x89\x9b",
		"Trademark":                        "\xef\x89\x9c",
		"Registered":                       "\xef\x89\x9d",
		"CreativeCommons":                  "\xef\x89\x9e",
		"Gg":                               "\xef\x89\xa0",
		"GgCircle":                         "\xef\x89\xa1",
		"Tripadvisor":                      "\xef\x89\xa2",
		"Odnoklassniki":                    "\xef\x89\xa3",
		"OdnoklassnikiSquare":              "\xef\x89\xa4",
		"GetPocket":                        "\xef\x89\xa5",
		"WikipediaW":                       "\xef\x89\xa6",
		"Safari":                           "\xef\x89\xa7",
		"Chrome":                           "\xef\x89\xa8",
		"Firefox":                          "\xef\x89\xa9",
		"Opera":                            "\xef\x89\xaa",
		"InternetExplorer":                 "\xef\x89\xab",
		"Television":                       "\xef\x89\xac",
		"Contao":                           "\xef\x89\xad",
		"500px":                            "\xef\x89\xae",
		"Amazon":                           "\xef\x89\xb0",
		"CalendarPlusO":                    "\xef\x89\xb1",
		"CalendarMinusO":                   "\xef\x89\xb2",
		"CalendarTimesO":                   "\xef\x89\xb3",
		"CalendarCheckO":                   "\xef\x89\xb4",
		"Industry":                         "\xef\x89\xb5",
		"MapPin":                           "\xef\x89\xb6",
		"MapSigns":                         "\xef\x89\xb7",
		"MapO":                             "\xef\x89\xb8",
		"Map":                              "\xef\x89\xb9",
		"Commenting":                       "\xef\x89\xba",
		"CommentingO":                      "\xef\x89\xbb",
		"Houzz":                            "\xef\x89\xbc",
		"Vimeo":                            "\xef\x89\xbd",
		"BlackTie":                         "\xef\x89\xbe",
		"Fonticons":                        "\xef\x8a\x80",
		"RedditAlien":                      "\xef\x8a\x81",
		"Edge":                             "\xef\x8a\x82",
		"CreditCardAlt":                    "\xef\x8a\x83",
		"Codiepie":                         "\xef\x8a\x84",
		"Modx":                             "\xef\x8a\x85",
		"FortAwesome":                      "\xef\x8a\x86",
		"Usb":                              "\xef\x8a\x87",
		"ProductHunt":                      "\xef\x8a\x88",
		"Mixcloud":                         "\xef\x8a\x89",
		"Scribd":                           "\xef\x8a\x8a",
		"PauseCircle":                      "\xef\x8a\x8b",
		"PauseCircleO":                     "\xef\x8a\x8c",
		"StopCircle":                       "\xef\x8a\x8d",
		"StopCircleO":                      "\xef\x8a\x8e",
		"ShoppingBag":                      "\xef\x8a\x90",
		"ShoppingBasket":                   "\xef\x8a\x91",
		"Hashtag":                          "\xef\x8a\x92",
		"Bluetooth":                        "\xef\x8a\x93",
		"BluetoothB":                       "\xef\x8a\x94",
		"Percent":                          "\xef\x8a\x95",
		"Gitlab":                           "\xef\x8a\x96",
		"Wpbeginner":                       "\xef\x8a\x97",
		"Wpforms":                          "\xef\x8a\x98",
		"Envira":                           "\xef\x8a\x99",
		"UniversalAccess":                  "\xef\x8a\x9a",
		"WheelchairAlt":                    "\xef\x8a\x9b",
		"QuestionCircleO":                  "\xef\x8a\x9c",
		"Blind":                            "\xef\x8a\x9d",
		"AudioDescription":                 "\xef\x8a\x9e",
		"VolumeControlPhone":               "\xef\x8a\xa0",
		"Braille":                          "\xef\x8a\xa1",
		"AssistiveListeningSystems":        "\xef\x8a\xa2",
		"AmericanSignLanguageInterpreting": "\xef\x8a\xa3",
		"Deaf":                             "\xef\x8a\xa4",
		"Glide":                            "\xef\x8a\xa5",
		"GlideG":                           "\xef\x8a\xa6",
		"SignLanguage":                     "\xef\x8a\xa7",
		"LowVision":                        "\xef\x8a\xa8",
		"Viadeo":                           "\xef\x8a\xa9",
		"ViadeoSquare":                     "\xef\x8a\xaa",
		"Snapchat":                         "\xef\x8a\xab",
		"SnapchatGhost":                    "\xef\x8a\xac",
		"SnapchatSquare":                   "\xef\x8a\xad",
		"PiedPiper":                        "\xef\x8a\xae",
		"FirstOrder":                       "\xef\x8a\xb0",
		"Yoast":                            "\xef\x8a\xb1",
		"Themeisle":                        "\xef\x8a\xb2",
		"GooglePlusOfficial":               "\xef\x8a\xb3",
		"FontAwesome":                      "\xef\x8a\xb4",
		"HandshakeO":                       "\xef\x8a\xb5",
		"EnvelopeOpen":                     "\xef\x8a\xb6",
		"EnvelopeOpenO":                    "\xef\x8a\xb7",
		"Linode":                           "\xef\x8a\xb8",
		"AddressBook":                      "\xef\x8a\xb9",
		"AddressBookO":                     "\xef\x8a\xba",
		"AddressCard":                      "\xef\x8a\xbb",
		"AddressCardO":                     "\xef\x8a\xbc",
		"UserCircle":                       "\xef\x8a\xbd",
		"UserCircleO":                      "\xef\x8a\xbe",
		"UserO":                            "\xef\x8b\x80",
		"IdBadge":                          "\xef\x8b\x81",
		"IdCard":                           "\xef\x8b\x82",
		"IdCardO":                          "\xef\x8b\x83",
		"Quora":                            "\xef\x8b\x84",
		"FreeCodeCamp":                     "\xef\x8b\x85",
		"Telegram":                         "\xef\x8b\x86",
		"ThermometerFull":                  "\xef\x8b\x87",
		"ThermometerThreeQuarters":         "\xef\x8b\x88",
		"ThermometerHalf":                  "\xef\x8b\x89",
		"ThermometerQuarter":               "\xef\x8b\x8a",
		"ThermometerEmpty":                 "\xef\x8b\x8b",
		"Shower":                           "\xef\x8b\x8c",
		"Bath":                             "\xef\x8b\x8d",
		"Podcast":                          "\xef\x8b\x8e",
		"WindowMaximize":                   "\xef\x8b\x90",
		"WindowMinimize":                   "\xef\x8b\x91",
		"WindowRestore":                    "\xef\x8b\x92",
		"WindowClose":                      "\xef\x8b\x93",
		"WindowCloseO":                     "\xef\x8b\x94",
		"Bandcamp":                         "\xef\x8b\x95",
		"Grav":                             "\xef\x8b\x96",
		"Etsy":                             "\xef\x8b\x97",
		"Imdb":                             "\xef\x8b\x98",
		"Ravelry":                          "\xef\x8b\x99",
		"Eercast":                          "\xef\x8b\x9a",
		"Microchip":                        "\xef\x8b\x9b",
		"SnowflakeO":                       "\xef\x8b\x9c",
		"Superpowers":                      "\xef\x8b\x9d",
		"Wpexplorer":                       "\xef\x8b\x9e",
		"Meetup":                           "\xef\x8b\xa0",
	},
}
View Source
var IconsFontAwesome5 = Font{
	Filenames: [][2]string{
		{"FAR", "fa-regular-400.ttf"},
		{"FAS", "fa-solid-900.ttf"},
	},
	Min:   0xe005,
	Max16: 0xf8ff,
	Max:   0xf8ff,
	Icons: map[string]string{
		"Ad":                               "\xef\x99\x81",
		"AddressBook":                      "\xef\x8a\xb9",
		"AddressCard":                      "\xef\x8a\xbb",
		"Adjust":                           "\xef\x81\x82",
		"AirFreshener":                     "\xef\x97\x90",
		"AlignCenter":                      "\xef\x80\xb7",
		"AlignJustify":                     "\xef\x80\xb9",
		"AlignLeft":                        "\xef\x80\xb6",
		"AlignRight":                       "\xef\x80\xb8",
		"Allergies":                        "\xef\x91\xa1",
		"Ambulance":                        "\xef\x83\xb9",
		"AmericanSignLanguageInterpreting": "\xef\x8a\xa3",
		"Anchor":                           "\xef\x84\xbd",
		"AngleDoubleDown":                  "\xef\x84\x83",
		"AngleDoubleLeft":                  "\xef\x84\x80",
		"AngleDoubleRight":                 "\xef\x84\x81",
		"AngleDoubleUp":                    "\xef\x84\x82",
		"AngleDown":                        "\xef\x84\x87",
		"AngleLeft":                        "\xef\x84\x84",
		"AngleRight":                       "\xef\x84\x85",
		"AngleUp":                          "\xef\x84\x86",
		"Angry":                            "\xef\x95\x96",
		"Ankh":                             "\xef\x99\x84",
		"AppleAlt":                         "\xef\x97\x91",
		"Archive":                          "\xef\x86\x87",
		"Archway":                          "\xef\x95\x97",
		"ArrowAltCircleDown":               "\xef\x8d\x98",
		"ArrowAltCircleLeft":               "\xef\x8d\x99",
		"ArrowAltCircleRight":              "\xef\x8d\x9a",
		"ArrowAltCircleUp":                 "\xef\x8d\x9b",
		"ArrowCircleDown":                  "\xef\x82\xab",
		"ArrowCircleLeft":                  "\xef\x82\xa8",
		"ArrowCircleRight":                 "\xef\x82\xa9",
		"ArrowCircleUp":                    "\xef\x82\xaa",
		"ArrowDown":                        "\xef\x81\xa3",
		"ArrowLeft":                        "\xef\x81\xa0",
		"ArrowRight":                       "\xef\x81\xa1",
		"ArrowUp":                          "\xef\x81\xa2",
		"ArrowsAlt":                        "\xef\x82\xb2",
		"ArrowsAltH":                       "\xef\x8c\xb7",
		"ArrowsAltV":                       "\xef\x8c\xb8",
		"AssistiveListeningSystems":        "\xef\x8a\xa2",
		"Asterisk":                         "\xef\x81\xa9",
		"At":                               "\xef\x87\xba",
		"Atlas":                            "\xef\x95\x98",
		"Atom":                             "\xef\x97\x92",
		"AudioDescription":                 "\xef\x8a\x9e",
		"Award":                            "\xef\x95\x99",
		"Baby":                             "\xef\x9d\xbc",
		"BabyCarriage":                     "\xef\x9d\xbd",
		"Backspace":                        "\xef\x95\x9a",
		"Backward":                         "\xef\x81\x8a",
		"Bacon":                            "\xef\x9f\xa5",
		"Bacteria":                         "\xee\x81\x99",
		"Bacterium":                        "\xee\x81\x9a",
		"Bahai":                            "\xef\x99\xa6",
		"BalanceScale":                     "\xef\x89\x8e",
		"BalanceScaleLeft":                 "\xef\x94\x95",
		"BalanceScaleRight":                "\xef\x94\x96",
		"Ban":                              "\xef\x81\x9e",
		"BandAid":                          "\xef\x91\xa2",
		"Barcode":                          "\xef\x80\xaa",
		"Bars":                             "\xef\x83\x89",
		"BaseballBall":                     "\xef\x90\xb3",
		"BasketballBall":                   "\xef\x90\xb4",
		"Bath":                             "\xef\x8b\x8d",
		"BatteryEmpty":                     "\xef\x89\x84",
		"BatteryFull":                      "\xef\x89\x80",
		"BatteryHalf":                      "\xef\x89\x82",
		"BatteryQuarter":                   "\xef\x89\x83",
		"BatteryThreeQuarters":             "\xef\x89\x81",
		"Bed":                              "\xef\x88\xb6",
		"Beer":                             "\xef\x83\xbc",
		"Bell":                             "\xef\x83\xb3",
		"BellSlash":                        "\xef\x87\xb6",
		"BezierCurve":                      "\xef\x95\x9b",
		"Bible":                            "\xef\x99\x87",
		"Bicycle":                          "\xef\x88\x86",
		"Biking":                           "\xef\xa1\x8a",
		"Binoculars":                       "\xef\x87\xa5",
		"Biohazard":                        "\xef\x9e\x80",
		"BirthdayCake":                     "\xef\x87\xbd",
		"Blender":                          "\xef\x94\x97",
		"BlenderPhone":                     "\xef\x9a\xb6",
		"Blind":                            "\xef\x8a\x9d",
		"Blog":                             "\xef\x9e\x81",
		"Bold":                             "\xef\x80\xb2",
		"Bolt":                             "\xef\x83\xa7",
		"Bomb":                             "\xef\x87\xa2",
		"Bone":                             "\xef\x97\x97",
		"Bong":                             "\xef\x95\x9c",
		"Book":                             "\xef\x80\xad",
		"BookDead":                         "\xef\x9a\xb7",
		"BookMedical":                      "\xef\x9f\xa6",
		"BookOpen":                         "\xef\x94\x98",
		"BookReader":                       "\xef\x97\x9a",
		"Bookmark":                         "\xef\x80\xae",
		"BorderAll":                        "\xef\xa1\x8c",
		"BorderNone":                       "\xef\xa1\x90",
		"BorderStyle":                      "\xef\xa1\x93",
		"BowlingBall":                      "\xef\x90\xb6",
		"Box":                              "\xef\x91\xa6",
		"BoxOpen":                          "\xef\x92\x9e",
		"BoxTissue":                        "\xee\x81\x9b",
		"Boxes":                            "\xef\x91\xa8",
		"Braille":                          "\xef\x8a\xa1",
		"Brain":                            "\xef\x97\x9c",
		"BreadSlice":                       "\xef\x9f\xac",
		"Briefcase":                        "\xef\x82\xb1",
		"BriefcaseMedical":                 "\xef\x91\xa9",
		"BroadcastTower":                   "\xef\x94\x99",
		"Broom":                            "\xef\x94\x9a",
		"Brush":                            "\xef\x95\x9d",
		"Bug":                              "\xef\x86\x88",
		"Building":                         "\xef\x86\xad",
		"Bullhorn":                         "\xef\x82\xa1",
		"Bullseye":                         "\xef\x85\x80",
		"Burn":                             "\xef\x91\xaa",
		"Bus":                              "\xef\x88\x87",
		"BusAlt":                           "\xef\x95\x9e",
		"BusinessTime":                     "\xef\x99\x8a",
		"Calculator":                       "\xef\x87\xac",
		"Calendar":                         "\xef\x84\xb3",
		"CalendarAlt":                      "\xef\x81\xb3",
		"CalendarCheck":                    "\xef\x89\xb4",
		"CalendarDay":                      "\xef\x9e\x83",
		"CalendarMinus":                    "\xef\x89\xb2",
		"CalendarPlus":                     "\xef\x89\xb1",
		"CalendarTimes":                    "\xef\x89\xb3",
		"CalendarWeek":                     "\xef\x9e\x84",
		"Camera":                           "\xef\x80\xb0",
		"CameraRetro":                      "\xef\x82\x83",
		"Campground":                       "\xef\x9a\xbb",
		"CandyCane":                        "\xef\x9e\x86",
		"Cannabis":                         "\xef\x95\x9f",
		"Capsules":                         "\xef\x91\xab",
		"Car":                              "\xef\x86\xb9",
		"CarAlt":                           "\xef\x97\x9e",
		"CarBattery":                       "\xef\x97\x9f",
		"CarCrash":                         "\xef\x97\xa1",
		"CarSide":                          "\xef\x97\xa4",
		"Caravan":                          "\xef\xa3\xbf",
		"CaretDown":                        "\xef\x83\x97",
		"CaretLeft":                        "\xef\x83\x99",
		"CaretRight":                       "\xef\x83\x9a",
		"CaretSquareDown":                  "\xef\x85\x90",
		"CaretSquareLeft":                  "\xef\x86\x91",
		"CaretSquareRight":                 "\xef\x85\x92",
		"CaretSquareUp":                    "\xef\x85\x91",
		"CaretUp":                          "\xef\x83\x98",
		"Carrot":                           "\xef\x9e\x87",
		"CartArrowDown":                    "\xef\x88\x98",
		"CartPlus":                         "\xef\x88\x97",
		"CashRegister":                     "\xef\x9e\x88",
		"Cat":                              "\xef\x9a\xbe",
		"Certificate":                      "\xef\x82\xa3",
		"Chair":                            "\xef\x9b\x80",
		"Chalkboard":                       "\xef\x94\x9b",
		"ChalkboardTeacher":                "\xef\x94\x9c",
		"ChargingStation":                  "\xef\x97\xa7",
		"ChartArea":                        "\xef\x87\xbe",
		"ChartBar":                         "\xef\x82\x80",
		"ChartLine":                        "\xef\x88\x81",
		"ChartPie":                         "\xef\x88\x80",
		"Check":                            "\xef\x80\x8c",
		"CheckCircle":                      "\xef\x81\x98",
		"CheckDouble":                      "\xef\x95\xa0",
		"CheckSquare":                      "\xef\x85\x8a",
		"Cheese":                           "\xef\x9f\xaf",
		"Chess":                            "\xef\x90\xb9",
		"ChessBishop":                      "\xef\x90\xba",
		"ChessBoard":                       "\xef\x90\xbc",
		"ChessKing":                        "\xef\x90\xbf",
		"ChessKnight":                      "\xef\x91\x81",
		"ChessPawn":                        "\xef\x91\x83",
		"ChessQueen":                       "\xef\x91\x85",
		"ChessRook":                        "\xef\x91\x87",
		"ChevronCircleDown":                "\xef\x84\xba",
		"ChevronCircleLeft":                "\xef\x84\xb7",
		"ChevronCircleRight":               "\xef\x84\xb8",
		"ChevronCircleUp":                  "\xef\x84\xb9",
		"ChevronDown":                      "\xef\x81\xb8",
		"ChevronLeft":                      "\xef\x81\x93",
		"ChevronRight":                     "\xef\x81\x94",
		"ChevronUp":                        "\xef\x81\xb7",
		"Child":                            "\xef\x86\xae",
		"Church":                           "\xef\x94\x9d",
		"Circle":                           "\xef\x84\x91",
		"CircleNotch":                      "\xef\x87\x8e",
		"City":                             "\xef\x99\x8f",
		"ClinicMedical":                    "\xef\x9f\xb2",
		"Clipboard":                        "\xef\x8c\xa8",
		"ClipboardCheck":                   "\xef\x91\xac",
		"ClipboardList":                    "\xef\x91\xad",
		"Clock":                            "\xef\x80\x97",
		"Clone":                            "\xef\x89\x8d",
		"ClosedCaptioning":                 "\xef\x88\x8a",
		"Cloud":                            "\xef\x83\x82",
		"CloudDownloadAlt":                 "\xef\x8e\x81",
		"CloudMeatball":                    "\xef\x9c\xbb",
		"CloudMoon":                        "\xef\x9b\x83",
		"CloudMoonRain":                    "\xef\x9c\xbc",
		"CloudRain":                        "\xef\x9c\xbd",
		"CloudShowersHeavy":                "\xef\x9d\x80",
		"CloudSun":                         "\xef\x9b\x84",
		"CloudSunRain":                     "\xef\x9d\x83",
		"CloudUploadAlt":                   "\xef\x8e\x82",
		"Cocktail":                         "\xef\x95\xa1",
		"Code":                             "\xef\x84\xa1",
		"CodeBranch":                       "\xef\x84\xa6",
		"Coffee":                           "\xef\x83\xb4",
		"Cog":                              "\xef\x80\x93",
		"Cogs":                             "\xef\x82\x85",
		"Coins":                            "\xef\x94\x9e",
		"Columns":                          "\xef\x83\x9b",
		"Comment":                          "\xef\x81\xb5",
		"CommentAlt":                       "\xef\x89\xba",
		"CommentDollar":                    "\xef\x99\x91",
		"CommentDots":                      "\xef\x92\xad",
		"CommentMedical":                   "\xef\x9f\xb5",
		"CommentSlash":                     "\xef\x92\xb3",
		"Comments":                         "\xef\x82\x86",
		"CommentsDollar":                   "\xef\x99\x93",
		"CompactDisc":                      "\xef\x94\x9f",
		"Compass":                          "\xef\x85\x8e",
		"Compress":                         "\xef\x81\xa6",
		"CompressAlt":                      "\xef\x90\xa2",
		"CompressArrowsAlt":                "\xef\x9e\x8c",
		"ConciergeBell":                    "\xef\x95\xa2",
		"Cookie":                           "\xef\x95\xa3",
		"CookieBite":                       "\xef\x95\xa4",
		"Copy":                             "\xef\x83\x85",
		"Copyright":                        "\xef\x87\xb9",
		"Couch":                            "\xef\x92\xb8",
		"CreditCard":                       "\xef\x82\x9d",
		"Crop":                             "\xef\x84\xa5",
		"CropAlt":                          "\xef\x95\xa5",
		"Cross":                            "\xef\x99\x94",
		"Crosshairs":                       "\xef\x81\x9b",
		"Crow":                             "\xef\x94\xa0",
		"Crown":                            "\xef\x94\xa1",
		"Crutch":                           "\xef\x9f\xb7",
		"Cube":                             "\xef\x86\xb2",
		"Cubes":                            "\xef\x86\xb3",
		"Cut":                              "\xef\x83\x84",
		"Database":                         "\xef\x87\x80",
		"Deaf":                             "\xef\x8a\xa4",
		"Democrat":                         "\xef\x9d\x87",
		"Desktop":                          "\xef\x84\x88",
		"Dharmachakra":                     "\xef\x99\x95",
		"Diagnoses":                        "\xef\x91\xb0",
		"Dice":                             "\xef\x94\xa2",
		"DiceD20":                          "\xef\x9b\x8f",
		"DiceD6":                           "\xef\x9b\x91",
		"DiceFive":                         "\xef\x94\xa3",
		"DiceFour":                         "\xef\x94\xa4",
		"DiceOne":                          "\xef\x94\xa5",
		"DiceSix":                          "\xef\x94\xa6",
		"DiceThree":                        "\xef\x94\xa7",
		"DiceTwo":                          "\xef\x94\xa8",
		"DigitalTachograph":                "\xef\x95\xa6",
		"Directions":                       "\xef\x97\xab",
		"Disease":                          "\xef\x9f\xba",
		"Divide":                           "\xef\x94\xa9",
		"Dizzy":                            "\xef\x95\xa7",
		"Dna":                              "\xef\x91\xb1",
		"Dog":                              "\xef\x9b\x93",
		"DollarSign":                       "\xef\x85\x95",
		"Dolly":                            "\xef\x91\xb2",
		"DollyFlatbed":                     "\xef\x91\xb4",
		"Donate":                           "\xef\x92\xb9",
		"DoorClosed":                       "\xef\x94\xaa",
		"DoorOpen":                         "\xef\x94\xab",
		"DotCircle":                        "\xef\x86\x92",
		"Dove":                             "\xef\x92\xba",
		"Download":                         "\xef\x80\x99",
		"DraftingCompass":                  "\xef\x95\xa8",
		"Dragon":                           "\xef\x9b\x95",
		"DrawPolygon":                      "\xef\x97\xae",
		"Drum":                             "\xef\x95\xa9",
		"DrumSteelpan":                     "\xef\x95\xaa",
		"DrumstickBite":                    "\xef\x9b\x97",
		"Dumbbell":                         "\xef\x91\x8b",
		"Dumpster":                         "\xef\x9e\x93",
		"DumpsterFire":                     "\xef\x9e\x94",
		"Dungeon":                          "\xef\x9b\x99",
		"Edit":                             "\xef\x81\x84",
		"Egg":                              "\xef\x9f\xbb",
		"Eject":                            "\xef\x81\x92",
		"EllipsisH":                        "\xef\x85\x81",
		"EllipsisV":                        "\xef\x85\x82",
		"Envelope":                         "\xef\x83\xa0",
		"EnvelopeOpen":                     "\xef\x8a\xb6",
		"EnvelopeOpenText":                 "\xef\x99\x98",
		"EnvelopeSquare":                   "\xef\x86\x99",
		"Equals":                           "\xef\x94\xac",
		"Eraser":                           "\xef\x84\xad",
		"Ethernet":                         "\xef\x9e\x96",
		"EuroSign":                         "\xef\x85\x93",
		"ExchangeAlt":                      "\xef\x8d\xa2",
		"Exclamation":                      "\xef\x84\xaa",
		"ExclamationCircle":                "\xef\x81\xaa",
		"ExclamationTriangle":              "\xef\x81\xb1",
		"Expand":                           "\xef\x81\xa5",
		"ExpandAlt":                        "\xef\x90\xa4",
		"ExpandArrowsAlt":                  "\xef\x8c\x9e",
		"ExternalLinkAlt":                  "\xef\x8d\x9d",
		"ExternalLinkSquareAlt":            "\xef\x8d\xa0",
		"Eye":                              "\xef\x81\xae",
		"EyeDropper":                       "\xef\x87\xbb",
		"EyeSlash":                         "\xef\x81\xb0",
		"Fan":                              "\xef\xa1\xa3",
		"FastBackward":                     "\xef\x81\x89",
		"FastForward":                      "\xef\x81\x90",
		"Faucet":                           "\xee\x80\x85",
		"Fax":                              "\xef\x86\xac",
		"Feather":                          "\xef\x94\xad",
		"FeatherAlt":                       "\xef\x95\xab",
		"Female":                           "\xef\x86\x82",
		"FighterJet":                       "\xef\x83\xbb",
		"File":                             "\xef\x85\x9b",
		"FileAlt":                          "\xef\x85\x9c",
		"FileArchive":                      "\xef\x87\x86",
		"FileAudio":                        "\xef\x87\x87",
		"FileCode":                         "\xef\x87\x89",
		"FileContract":                     "\xef\x95\xac",
		"FileCsv":                          "\xef\x9b\x9d",
		"FileDownload":                     "\xef\x95\xad",
		"FileExcel":                        "\xef\x87\x83",
		"FileExport":                       "\xef\x95\xae",
		"FileImage":                        "\xef\x87\x85",
		"FileImport":                       "\xef\x95\xaf",
		"FileInvoice":                      "\xef\x95\xb0",
		"FileInvoiceDollar":                "\xef\x95\xb1",
		"FileMedical":                      "\xef\x91\xb7",
		"FileMedicalAlt":                   "\xef\x91\xb8",
		"FilePdf":                          "\xef\x87\x81",
		"FilePowerpoint":                   "\xef\x87\x84",
		"FilePrescription":                 "\xef\x95\xb2",
		"FileSignature":                    "\xef\x95\xb3",
		"FileUpload":                       "\xef\x95\xb4",
		"FileVideo":                        "\xef\x87\x88",
		"FileWord":                         "\xef\x87\x82",
		"Fill":                             "\xef\x95\xb5",
		"FillDrip":                         "\xef\x95\xb6",
		"Film":                             "\xef\x80\x88",
		"Filter":                           "\xef\x82\xb0",
		"Fingerprint":                      "\xef\x95\xb7",
		"Fire":                             "\xef\x81\xad",
		"FireAlt":                          "\xef\x9f\xa4",
		"FireExtinguisher":                 "\xef\x84\xb4",
		"FirstAid":                         "\xef\x91\xb9",
		"Fish":                             "\xef\x95\xb8",
		"FistRaised":                       "\xef\x9b\x9e",
		"Flag":                             "\xef\x80\xa4",
		"FlagCheckered":                    "\xef\x84\x9e",
		"FlagUsa":                          "\xef\x9d\x8d",
		"Flask":                            "\xef\x83\x83",
		"Flushed":                          "\xef\x95\xb9",
		"Folder":                           "\xef\x81\xbb",
		"FolderMinus":                      "\xef\x99\x9d",
		"FolderOpen":                       "\xef\x81\xbc",
		"FolderPlus":                       "\xef\x99\x9e",
		"Font":                             "\xef\x80\xb1",
		"FontAwesomeLogoFull":              "\xef\x93\xa6",
		"FootballBall":                     "\xef\x91\x8e",
		"Forward":                          "\xef\x81\x8e",
		"Frog":                             "\xef\x94\xae",
		"Frown":                            "\xef\x84\x99",
		"FrownOpen":                        "\xef\x95\xba",
		"FunnelDollar":                     "\xef\x99\xa2",
		"Futbol":                           "\xef\x87\xa3",
		"Gamepad":                          "\xef\x84\x9b",
		"GasPump":                          "\xef\x94\xaf",
		"Gavel":                            "\xef\x83\xa3",
		"Gem":                              "\xef\x8e\xa5",
		"Genderless":                       "\xef\x88\xad",
		"Ghost":                            "\xef\x9b\xa2",
		"Gift":                             "\xef\x81\xab",
		"Gifts":                            "\xef\x9e\x9c",
		"GlassCheers":                      "\xef\x9e\x9f",
		"GlassMartini":                     "\xef\x80\x80",
		"GlassMartiniAlt":                  "\xef\x95\xbb",
		"GlassWhiskey":                     "\xef\x9e\xa0",
		"Glasses":                          "\xef\x94\xb0",
		"Globe":                            "\xef\x82\xac",
		"GlobeAfrica":                      "\xef\x95\xbc",
		"GlobeAmericas":                    "\xef\x95\xbd",
		"GlobeAsia":                        "\xef\x95\xbe",
		"GlobeEurope":                      "\xef\x9e\xa2",
		"GolfBall":                         "\xef\x91\x90",
		"Gopuram":                          "\xef\x99\xa4",
		"GraduationCap":                    "\xef\x86\x9d",
		"GreaterThan":                      "\xef\x94\xb1",
		"GreaterThanEqual":                 "\xef\x94\xb2",
		"Grimace":                          "\xef\x95\xbf",
		"Grin":                             "\xef\x96\x80",
		"GrinAlt":                          "\xef\x96\x81",
		"GrinBeam":                         "\xef\x96\x82",
		"GrinBeamSweat":                    "\xef\x96\x83",
		"GrinHearts":                       "\xef\x96\x84",
		"GrinSquint":                       "\xef\x96\x85",
		"GrinSquintTears":                  "\xef\x96\x86",
		"GrinStars":                        "\xef\x96\x87",
		"GrinTears":                        "\xef\x96\x88",
		"GrinTongue":                       "\xef\x96\x89",
		"GrinTongueSquint":                 "\xef\x96\x8a",
		"GrinTongueWink":                   "\xef\x96\x8b",
		"GrinWink":                         "\xef\x96\x8c",
		"GripHorizontal":                   "\xef\x96\x8d",
		"GripLines":                        "\xef\x9e\xa4",
		"GripLinesVertical":                "\xef\x9e\xa5",
		"GripVertical":                     "\xef\x96\x8e",
		"Guitar":                           "\xef\x9e\xa6",
		"HSquare":                          "\xef\x83\xbd",
		"Hamburger":                        "\xef\xa0\x85",
		"Hammer":                           "\xef\x9b\xa3",
		"Hamsa":                            "\xef\x99\xa5",
		"HandHolding":                      "\xef\x92\xbd",
		"HandHoldingHeart":                 "\xef\x92\xbe",
		"HandHoldingMedical":               "\xee\x81\x9c",
		"HandHoldingUsd":                   "\xef\x93\x80",
		"HandHoldingWater":                 "\xef\x93\x81",
		"HandLizard":                       "\xef\x89\x98",
		"HandMiddleFinger":                 "\xef\xa0\x86",
		"HandPaper":                        "\xef\x89\x96",
		"HandPeace":                        "\xef\x89\x9b",
		"HandPointDown":                    "\xef\x82\xa7",
		"HandPointLeft":                    "\xef\x82\xa5",
		"HandPointRight":                   "\xef\x82\xa4",
		"HandPointUp":                      "\xef\x82\xa6",
		"HandPointer":                      "\xef\x89\x9a",
		"HandRock":                         "\xef\x89\x95",
		"HandScissors":                     "\xef\x89\x97",
		"HandSparkles":                     "\xee\x81\x9d",
		"HandSpock":                        "\xef\x89\x99",
		"Hands":                            "\xef\x93\x82",
		"HandsHelping":                     "\xef\x93\x84",
		"HandsWash":                        "\xee\x81\x9e",
		"Handshake":                        "\xef\x8a\xb5",
		"HandshakeAltSlash":                "\xee\x81\x9f",
		"HandshakeSlash":                   "\xee\x81\xa0",
		"Hanukiah":                         "\xef\x9b\xa6",
		"HardHat":                          "\xef\xa0\x87",
		"Hashtag":                          "\xef\x8a\x92",
		"HatCowboy":                        "\xef\xa3\x80",
		"HatCowboySide":                    "\xef\xa3\x81",
		"HatWizard":                        "\xef\x9b\xa8",
		"Hdd":                              "\xef\x82\xa0",
		"HeadSideCough":                    "\xee\x81\xa1",
		"HeadSideCoughSlash":               "\xee\x81\xa2",
		"HeadSideMask":                     "\xee\x81\xa3",
		"HeadSideVirus":                    "\xee\x81\xa4",
		"Heading":                          "\xef\x87\x9c",
		"Headphones":                       "\xef\x80\xa5",
		"HeadphonesAlt":                    "\xef\x96\x8f",
		"Headset":                          "\xef\x96\x90",
		"Heart":                            "\xef\x80\x84",
		"HeartBroken":                      "\xef\x9e\xa9",
		"Heartbeat":                        "\xef\x88\x9e",
		"Helicopter":                       "\xef\x94\xb3",
		"Highlighter":                      "\xef\x96\x91",
		"Hiking":                           "\xef\x9b\xac",
		"Hippo":                            "\xef\x9b\xad",
		"History":                          "\xef\x87\x9a",
		"HockeyPuck":                       "\xef\x91\x93",
		"HollyBerry":                       "\xef\x9e\xaa",
		"Home":                             "\xef\x80\x95",
		"Horse":                            "\xef\x9b\xb0",
		"HorseHead":                        "\xef\x9e\xab",
		"Hospital":                         "\xef\x83\xb8",
		"HospitalAlt":                      "\xef\x91\xbd",
		"HospitalSymbol":                   "\xef\x91\xbe",
		"HospitalUser":                     "\xef\xa0\x8d",
		"HotTub":                           "\xef\x96\x93",
		"Hotdog":                           "\xef\xa0\x8f",
		"Hotel":                            "\xef\x96\x94",
		"Hourglass":                        "\xef\x89\x94",
		"HourglassEnd":                     "\xef\x89\x93",
		"HourglassHalf":                    "\xef\x89\x92",
		"HourglassStart":                   "\xef\x89\x91",
		"HouseDamage":                      "\xef\x9b\xb1",
		"HouseUser":                        "\xee\x81\xa5",
		"Hryvnia":                          "\xef\x9b\xb2",
		"ICursor":                          "\xef\x89\x86",
		"IceCream":                         "\xef\xa0\x90",
		"Icicles":                          "\xef\x9e\xad",
		"Icons":                            "\xef\xa1\xad",
		"IdBadge":                          "\xef\x8b\x81",
		"IdCard":                           "\xef\x8b\x82",
		"IdCardAlt":                        "\xef\x91\xbf",
		"Igloo":                            "\xef\x9e\xae",
		"Image":                            "\xef\x80\xbe",
		"Images":                           "\xef\x8c\x82",
		"Inbox":                            "\xef\x80\x9c",
		"Indent":                           "\xef\x80\xbc",
		"Industry":                         "\xef\x89\xb5",
		"Infinity":                         "\xef\x94\xb4",
		"Info":                             "\xef\x84\xa9",
		"InfoCircle":                       "\xef\x81\x9a",
		"Italic":                           "\xef\x80\xb3",
		"Jedi":                             "\xef\x99\xa9",
		"Joint":                            "\xef\x96\x95",
		"JournalWhills":                    "\xef\x99\xaa",
		"Kaaba":                            "\xef\x99\xab",
		"Key":                              "\xef\x82\x84",
		"Keyboard":                         "\xef\x84\x9c",
		"Khanda":                           "\xef\x99\xad",
		"Kiss":                             "\xef\x96\x96",
		"KissBeam":                         "\xef\x96\x97",
		"KissWinkHeart":                    "\xef\x96\x98",
		"KiwiBird":                         "\xef\x94\xb5",
		"Landmark":                         "\xef\x99\xaf",
		"Language":                         "\xef\x86\xab",
		"Laptop":                           "\xef\x84\x89",
		"LaptopCode":                       "\xef\x97\xbc",
		"LaptopHouse":                      "\xee\x81\xa6",
		"LaptopMedical":                    "\xef\xa0\x92",
		"Laugh":                            "\xef\x96\x99",
		"LaughBeam":                        "\xef\x96\x9a",
		"LaughSquint":                      "\xef\x96\x9b",
		"LaughWink":                        "\xef\x96\x9c",
		"LayerGroup":                       "\xef\x97\xbd",
		"Leaf":                             "\xef\x81\xac",
		"Lemon":                            "\xef\x82\x94",
		"LessThan":                         "\xef\x94\xb6",
		"LessThanEqual":                    "\xef\x94\xb7",
		"LevelDownAlt":                     "\xef\x8e\xbe",
		"LevelUpAlt":                       "\xef\x8e\xbf",
		"LifeRing":                         "\xef\x87\x8d",
		"Lightbulb":                        "\xef\x83\xab",
		"Link":                             "\xef\x83\x81",
		"LiraSign":                         "\xef\x86\x95",
		"List":                             "\xef\x80\xba",
		"ListAlt":                          "\xef\x80\xa2",
		"ListOl":                           "\xef\x83\x8b",
		"ListUl":                           "\xef\x83\x8a",
		"LocationArrow":                    "\xef\x84\xa4",
		"Lock":                             "\xef\x80\xa3",
		"LockOpen":                         "\xef\x8f\x81",
		"LongArrowAltDown":                 "\xef\x8c\x89",
		"LongArrowAltLeft":                 "\xef\x8c\x8a",
		"LongArrowAltRight":                "\xef\x8c\x8b",
		"LongArrowAltUp":                   "\xef\x8c\x8c",
		"LowVision":                        "\xef\x8a\xa8",
		"LuggageCart":                      "\xef\x96\x9d",
		"Lungs":                            "\xef\x98\x84",
		"LungsVirus":                       "\xee\x81\xa7",
		"Magic":                            "\xef\x83\x90",
		"Magnet":                           "\xef\x81\xb6",
		"MailBulk":                         "\xef\x99\xb4",
		"Male":                             "\xef\x86\x83",
		"Map":                              "\xef\x89\xb9",
		"MapMarked":                        "\xef\x96\x9f",
		"MapMarkedAlt":                     "\xef\x96\xa0",
		"MapMarker":                        "\xef\x81\x81",
		"MapMarkerAlt":                     "\xef\x8f\x85",
		"MapPin":                           "\xef\x89\xb6",
		"MapSigns":                         "\xef\x89\xb7",
		"Marker":                           "\xef\x96\xa1",
		"Mars":                             "\xef\x88\xa2",
		"MarsDouble":                       "\xef\x88\xa7",
		"MarsStroke":                       "\xef\x88\xa9",
		"MarsStrokeH":                      "\xef\x88\xab",
		"MarsStrokeV":                      "\xef\x88\xaa",
		"Mask":                             "\xef\x9b\xba",
		"Medal":                            "\xef\x96\xa2",
		"Medkit":                           "\xef\x83\xba",
		"Meh":                              "\xef\x84\x9a",
		"MehBlank":                         "\xef\x96\xa4",
		"MehRollingEyes":                   "\xef\x96\xa5",
		"Memory":                           "\xef\x94\xb8",
		"Menorah":                          "\xef\x99\xb6",
		"Mercury":                          "\xef\x88\xa3",
		"Meteor":                           "\xef\x9d\x93",
		"Microchip":                        "\xef\x8b\x9b",
		"Microphone":                       "\xef\x84\xb0",
		"MicrophoneAlt":                    "\xef\x8f\x89",
		"MicrophoneAltSlash":               "\xef\x94\xb9",
		"MicrophoneSlash":                  "\xef\x84\xb1",
		"Microscope":                       "\xef\x98\x90",
		"Minus":                            "\xef\x81\xa8",
		"MinusCircle":                      "\xef\x81\x96",
		"MinusSquare":                      "\xef\x85\x86",
		"Mitten":                           "\xef\x9e\xb5",
		"Mobile":                           "\xef\x84\x8b",
		"MobileAlt":                        "\xef\x8f\x8d",
		"MoneyBill":                        "\xef\x83\x96",
		"MoneyBillAlt":                     "\xef\x8f\x91",
		"MoneyBillWave":                    "\xef\x94\xba",
		"MoneyBillWaveAlt":                 "\xef\x94\xbb",
		"MoneyCheck":                       "\xef\x94\xbc",
		"MoneyCheckAlt":                    "\xef\x94\xbd",
		"Monument":                         "\xef\x96\xa6",
		"Moon":                             "\xef\x86\x86",
		"MortarPestle":                     "\xef\x96\xa7",
		"Mosque":                           "\xef\x99\xb8",
		"Motorcycle":                       "\xef\x88\x9c",
		"Mountain":                         "\xef\x9b\xbc",
		"Mouse":                            "\xef\xa3\x8c",
		"MousePointer":                     "\xef\x89\x85",
		"MugHot":                           "\xef\x9e\xb6",
		"Music":                            "\xef\x80\x81",
		"NetworkWired":                     "\xef\x9b\xbf",
		"Neuter":                           "\xef\x88\xac",
		"Newspaper":                        "\xef\x87\xaa",
		"NotEqual":                         "\xef\x94\xbe",
		"NotesMedical":                     "\xef\x92\x81",
		"ObjectGroup":                      "\xef\x89\x87",
		"ObjectUngroup":                    "\xef\x89\x88",
		"OilCan":                           "\xef\x98\x93",
		"Om":                               "\xef\x99\xb9",
		"Otter":                            "\xef\x9c\x80",
		"Outdent":                          "\xef\x80\xbb",
		"Pager":                            "\xef\xa0\x95",
		"PaintBrush":                       "\xef\x87\xbc",
		"PaintRoller":                      "\xef\x96\xaa",
		"Palette":                          "\xef\x94\xbf",
		"Pallet":                           "\xef\x92\x82",
		"PaperPlane":                       "\xef\x87\x98",
		"Paperclip":                        "\xef\x83\x86",
		"ParachuteBox":                     "\xef\x93\x8d",
		"Paragraph":                        "\xef\x87\x9d",
		"Parking":                          "\xef\x95\x80",
		"Passport":                         "\xef\x96\xab",
		"Pastafarianism":                   "\xef\x99\xbb",
		"Paste":                            "\xef\x83\xaa",
		"Pause":                            "\xef\x81\x8c",
		"PauseCircle":                      "\xef\x8a\x8b",
		"Paw":                              "\xef\x86\xb0",
		"Peace":                            "\xef\x99\xbc",
		"Pen":                              "\xef\x8c\x84",
		"PenAlt":                           "\xef\x8c\x85",
		"PenFancy":                         "\xef\x96\xac",
		"PenNib":                           "\xef\x96\xad",
		"PenSquare":                        "\xef\x85\x8b",
		"PencilAlt":                        "\xef\x8c\x83",
		"PencilRuler":                      "\xef\x96\xae",
		"PeopleArrows":                     "\xee\x81\xa8",
		"PeopleCarry":                      "\xef\x93\x8e",
		"PepperHot":                        "\xef\xa0\x96",
		"Percent":                          "\xef\x8a\x95",
		"Percentage":                       "\xef\x95\x81",
		"PersonBooth":                      "\xef\x9d\x96",
		"Phone":                            "\xef\x82\x95",
		"PhoneAlt":                         "\xef\xa1\xb9",
		"PhoneSlash":                       "\xef\x8f\x9d",
		"PhoneSquare":                      "\xef\x82\x98",
		"PhoneSquareAlt":                   "\xef\xa1\xbb",
		"PhoneVolume":                      "\xef\x8a\xa0",
		"PhotoVideo":                       "\xef\xa1\xbc",
		"PiggyBank":                        "\xef\x93\x93",
		"Pills":                            "\xef\x92\x84",
		"PizzaSlice":                       "\xef\xa0\x98",
		"PlaceOfWorship":                   "\xef\x99\xbf",
		"Plane":                            "\xef\x81\xb2",
		"PlaneArrival":                     "\xef\x96\xaf",
		"PlaneDeparture":                   "\xef\x96\xb0",
		"PlaneSlash":                       "\xee\x81\xa9",
		"Play":                             "\xef\x81\x8b",
		"PlayCircle":                       "\xef\x85\x84",
		"Plug":                             "\xef\x87\xa6",
		"Plus":                             "\xef\x81\xa7",
		"PlusCircle":                       "\xef\x81\x95",
		"PlusSquare":                       "\xef\x83\xbe",
		"Podcast":                          "\xef\x8b\x8e",
		"Poll":                             "\xef\x9a\x81",
		"PollH":                            "\xef\x9a\x82",
		"Poo":                              "\xef\x8b\xbe",
		"PooStorm":                         "\xef\x9d\x9a",
		"Poop":                             "\xef\x98\x99",
		"Portrait":                         "\xef\x8f\xa0",
		"PoundSign":                        "\xef\x85\x94",
		"PowerOff":                         "\xef\x80\x91",
		"Pray":                             "\xef\x9a\x83",
		"PrayingHands":                     "\xef\x9a\x84",
		"Prescription":                     "\xef\x96\xb1",
		"PrescriptionBottle":               "\xef\x92\x85",
		"PrescriptionBottleAlt":            "\xef\x92\x86",
		"Print":                            "\xef\x80\xaf",
		"Procedures":                       "\xef\x92\x87",
		"ProjectDiagram":                   "\xef\x95\x82",
		"PumpMedical":                      "\xee\x81\xaa",
		"PumpSoap":                         "\xee\x81\xab",
		"PuzzlePiece":                      "\xef\x84\xae",
		"Qrcode":                           "\xef\x80\xa9",
		"Question":                         "\xef\x84\xa8",
		"QuestionCircle":                   "\xef\x81\x99",
		"Quidditch":                        "\xef\x91\x98",
		"QuoteLeft":                        "\xef\x84\x8d",
		"QuoteRight":                       "\xef\x84\x8e",
		"Quran":                            "\xef\x9a\x87",
		"Radiation":                        "\xef\x9e\xb9",
		"RadiationAlt":                     "\xef\x9e\xba",
		"Rainbow":                          "\xef\x9d\x9b",
		"Random":                           "\xef\x81\xb4",
		"Receipt":                          "\xef\x95\x83",
		"RecordVinyl":                      "\xef\xa3\x99",
		"Recycle":                          "\xef\x86\xb8",
		"Redo":                             "\xef\x80\x9e",
		"RedoAlt":                          "\xef\x8b\xb9",
		"Registered":                       "\xef\x89\x9d",
		"RemoveFormat":                     "\xef\xa1\xbd",
		"Reply":                            "\xef\x8f\xa5",
		"ReplyAll":                         "\xef\x84\xa2",
		"Republican":                       "\xef\x9d\x9e",
		"Restroom":                         "\xef\x9e\xbd",
		"Retweet":                          "\xef\x81\xb9",
		"Ribbon":                           "\xef\x93\x96",
		"Ring":                             "\xef\x9c\x8b",
		"Road":                             "\xef\x80\x98",
		"Robot":                            "\xef\x95\x84",
		"Rocket":                           "\xef\x84\xb5",
		"Route":                            "\xef\x93\x97",
		"Rss":                              "\xef\x82\x9e",
		"RssSquare":                        "\xef\x85\x83",
		"RubleSign":                        "\xef\x85\x98",
		"Ruler":                            "\xef\x95\x85",
		"RulerCombined":                    "\xef\x95\x86",
		"RulerHorizontal":                  "\xef\x95\x87",
		"RulerVertical":                    "\xef\x95\x88",
		"Running":                          "\xef\x9c\x8c",
		"RupeeSign":                        "\xef\x85\x96",
		"SadCry":                           "\xef\x96\xb3",
		"SadTear":                          "\xef\x96\xb4",
		"Satellite":                        "\xef\x9e\xbf",
		"SatelliteDish":                    "\xef\x9f\x80",
		"Save":                             "\xef\x83\x87",
		"School":                           "\xef\x95\x89",
		"Screwdriver":                      "\xef\x95\x8a",
		"Scroll":                           "\xef\x9c\x8e",
		"SdCard":                           "\xef\x9f\x82",
		"Search":                           "\xef\x80\x82",
		"SearchDollar":                     "\xef\x9a\x88",
		"SearchLocation":                   "\xef\x9a\x89",
		"SearchMinus":                      "\xef\x80\x90",
		"SearchPlus":                       "\xef\x80\x8e",
		"Seedling":                         "\xef\x93\x98",
		"Server":                           "\xef\x88\xb3",
		"Shapes":                           "\xef\x98\x9f",
		"Share":                            "\xef\x81\xa4",
		"ShareAlt":                         "\xef\x87\xa0",
		"ShareAltSquare":                   "\xef\x87\xa1",
		"ShareSquare":                      "\xef\x85\x8d",
		"ShekelSign":                       "\xef\x88\x8b",
		"ShieldAlt":                        "\xef\x8f\xad",
		"ShieldVirus":                      "\xee\x81\xac",
		"Ship":                             "\xef\x88\x9a",
		"ShippingFast":                     "\xef\x92\x8b",
		"ShoePrints":                       "\xef\x95\x8b",
		"ShoppingBag":                      "\xef\x8a\x90",
		"ShoppingBasket":                   "\xef\x8a\x91",
		"ShoppingCart":                     "\xef\x81\xba",
		"Shower":                           "\xef\x8b\x8c",
		"ShuttleVan":                       "\xef\x96\xb6",
		"Sign":                             "\xef\x93\x99",
		"SignInAlt":                        "\xef\x8b\xb6",
		"SignLanguage":                     "\xef\x8a\xa7",
		"SignOutAlt":                       "\xef\x8b\xb5",
		"Signal":                           "\xef\x80\x92",
		"Signature":                        "\xef\x96\xb7",
		"SimCard":                          "\xef\x9f\x84",
		"Sink":                             "\xee\x81\xad",
		"Sitemap":                          "\xef\x83\xa8",
		"Skating":                          "\xef\x9f\x85",
		"Skiing":                           "\xef\x9f\x89",
		"SkiingNordic":                     "\xef\x9f\x8a",
		"Skull":                            "\xef\x95\x8c",
		"SkullCrossbones":                  "\xef\x9c\x94",
		"Slash":                            "\xef\x9c\x95",
		"Sleigh":                           "\xef\x9f\x8c",
		"SlidersH":                         "\xef\x87\x9e",
		"Smile":                            "\xef\x84\x98",
		"SmileBeam":                        "\xef\x96\xb8",
		"SmileWink":                        "\xef\x93\x9a",
		"Smog":                             "\xef\x9d\x9f",
		"Smoking":                          "\xef\x92\x8d",
		"SmokingBan":                       "\xef\x95\x8d",
		"Sms":                              "\xef\x9f\x8d",
		"Snowboarding":                     "\xef\x9f\x8e",
		"Snowflake":                        "\xef\x8b\x9c",
		"Snowman":                          "\xef\x9f\x90",
		"Snowplow":                         "\xef\x9f\x92",
		"Soap":                             "\xee\x81\xae",
		"Socks":                            "\xef\x9a\x96",
		"SolarPanel":                       "\xef\x96\xba",
		"Sort":                             "\xef\x83\x9c",
		"SortAlphaDown":                    "\xef\x85\x9d",
		"SortAlphaDownAlt":                 "\xef\xa2\x81",
		"SortAlphaUp":                      "\xef\x85\x9e",
		"SortAlphaUpAlt":                   "\xef\xa2\x82",
		"SortAmountDown":                   "\xef\x85\xa0",
		"SortAmountDownAlt":                "\xef\xa2\x84",
		"SortAmountUp":                     "\xef\x85\xa1",
		"SortAmountUpAlt":                  "\xef\xa2\x85",
		"SortDown":                         "\xef\x83\x9d",
		"SortNumericDown":                  "\xef\x85\xa2",
		"SortNumericDownAlt":               "\xef\xa2\x86",
		"SortNumericUp":                    "\xef\x85\xa3",
		"SortNumericUpAlt":                 "\xef\xa2\x87",
		"SortUp":                           "\xef\x83\x9e",
		"Spa":                              "\xef\x96\xbb",
		"SpaceShuttle":                     "\xef\x86\x97",
		"SpellCheck":                       "\xef\xa2\x91",
		"Spider":                           "\xef\x9c\x97",
		"Spinner":                          "\xef\x84\x90",
		"Splotch":                          "\xef\x96\xbc",
		"SprayCan":                         "\xef\x96\xbd",
		"Square":                           "\xef\x83\x88",
		"SquareFull":                       "\xef\x91\x9c",
		"SquareRootAlt":                    "\xef\x9a\x98",
		"Stamp":                            "\xef\x96\xbf",
		"Star":                             "\xef\x80\x85",
		"StarAndCrescent":                  "\xef\x9a\x99",
		"StarHalf":                         "\xef\x82\x89",
		"StarHalfAlt":                      "\xef\x97\x80",
		"StarOfDavid":                      "\xef\x9a\x9a",
		"StarOfLife":                       "\xef\x98\xa1",
		"StepBackward":                     "\xef\x81\x88",
		"StepForward":                      "\xef\x81\x91",
		"Stethoscope":                      "\xef\x83\xb1",
		"StickyNote":                       "\xef\x89\x89",
		"Stop":                             "\xef\x81\x8d",
		"StopCircle":                       "\xef\x8a\x8d",
		"Stopwatch":                        "\xef\x8b\xb2",
		"Stopwatch20":                      "\xee\x81\xaf",
		"Store":                            "\xef\x95\x8e",
		"StoreAlt":                         "\xef\x95\x8f",
		"StoreAltSlash":                    "\xee\x81\xb0",
		"StoreSlash":                       "\xee\x81\xb1",
		"Stream":                           "\xef\x95\x90",
		"StreetView":                       "\xef\x88\x9d",
		"Strikethrough":                    "\xef\x83\x8c",
		"Stroopwafel":                      "\xef\x95\x91",
		"Subscript":                        "\xef\x84\xac",
		"Subway":                           "\xef\x88\xb9",
		"Suitcase":                         "\xef\x83\xb2",
		"SuitcaseRolling":                  "\xef\x97\x81",
		"Sun":                              "\xef\x86\x85",
		"Superscript":                      "\xef\x84\xab",
		"Surprise":                         "\xef\x97\x82",
		"Swatchbook":                       "\xef\x97\x83",
		"Swimmer":                          "\xef\x97\x84",
		"SwimmingPool":                     "\xef\x97\x85",
		"Synagogue":                        "\xef\x9a\x9b",
		"Sync":                             "\xef\x80\xa1",
		"SyncAlt":                          "\xef\x8b\xb1",
		"Syringe":                          "\xef\x92\x8e",
		"Table":                            "\xef\x83\x8e",
		"TableTennis":                      "\xef\x91\x9d",
		"Tablet":                           "\xef\x84\x8a",
		"TabletAlt":                        "\xef\x8f\xba",
		"Tablets":                          "\xef\x92\x90",
		"TachometerAlt":                    "\xef\x8f\xbd",
		"Tag":                              "\xef\x80\xab",
		"Tags":                             "\xef\x80\xac",
		"Tape":                             "\xef\x93\x9b",
		"Tasks":                            "\xef\x82\xae",
		"Taxi":                             "\xef\x86\xba",
		"Teeth":                            "\xef\x98\xae",
		"TeethOpen":                        "\xef\x98\xaf",
		"TemperatureHigh":                  "\xef\x9d\xa9",
		"TemperatureLow":                   "\xef\x9d\xab",
		"Tenge":                            "\xef\x9f\x97",
		"Terminal":                         "\xef\x84\xa0",
		"TextHeight":                       "\xef\x80\xb4",
		"TextWidth":                        "\xef\x80\xb5",
		"Th":                               "\xef\x80\x8a",
		"ThLarge":                          "\xef\x80\x89",
		"ThList":                           "\xef\x80\x8b",
		"TheaterMasks":                     "\xef\x98\xb0",
		"Thermometer":                      "\xef\x92\x91",
		"ThermometerEmpty":                 "\xef\x8b\x8b",
		"ThermometerFull":                  "\xef\x8b\x87",
		"ThermometerHalf":                  "\xef\x8b\x89",
		"ThermometerQuarter":               "\xef\x8b\x8a",
		"ThermometerThreeQuarters":         "\xef\x8b\x88",
		"ThumbsDown":                       "\xef\x85\xa5",
		"ThumbsUp":                         "\xef\x85\xa4",
		"Thumbtack":                        "\xef\x82\x8d",
		"TicketAlt":                        "\xef\x8f\xbf",
		"Times":                            "\xef\x80\x8d",
		"TimesCircle":                      "\xef\x81\x97",
		"Tint":                             "\xef\x81\x83",
		"TintSlash":                        "\xef\x97\x87",
		"Tired":                            "\xef\x97\x88",
		"ToggleOff":                        "\xef\x88\x84",
		"ToggleOn":                         "\xef\x88\x85",
		"Toilet":                           "\xef\x9f\x98",
		"ToiletPaper":                      "\xef\x9c\x9e",
		"ToiletPaperSlash":                 "\xee\x81\xb2",
		"Toolbox":                          "\xef\x95\x92",
		"Tools":                            "\xef\x9f\x99",
		"Tooth":                            "\xef\x97\x89",
		"Torah":                            "\xef\x9a\xa0",
		"ToriiGate":                        "\xef\x9a\xa1",
		"Tractor":                          "\xef\x9c\xa2",
		"Trademark":                        "\xef\x89\x9c",
		"TrafficLight":                     "\xef\x98\xb7",
		"Trailer":                          "\xee\x81\x81",
		"Train":                            "\xef\x88\xb8",
		"Tram":                             "\xef\x9f\x9a",
		"Transgender":                      "\xef\x88\xa4",
		"TransgenderAlt":                   "\xef\x88\xa5",
		"Trash":                            "\xef\x87\xb8",
		"TrashAlt":                         "\xef\x8b\xad",
		"TrashRestore":                     "\xef\xa0\xa9",
		"TrashRestoreAlt":                  "\xef\xa0\xaa",
		"Tree":                             "\xef\x86\xbb",
		"Trophy":                           "\xef\x82\x91",
		"Truck":                            "\xef\x83\x91",
		"TruckLoading":                     "\xef\x93\x9e",
		"TruckMonster":                     "\xef\x98\xbb",
		"TruckMoving":                      "\xef\x93\x9f",
		"TruckPickup":                      "\xef\x98\xbc",
		"Tshirt":                           "\xef\x95\x93",
		"Tty":                              "\xef\x87\xa4",
		"Tv":                               "\xef\x89\xac",
		"Umbrella":                         "\xef\x83\xa9",
		"UmbrellaBeach":                    "\xef\x97\x8a",
		"Underline":                        "\xef\x83\x8d",
		"Undo":                             "\xef\x83\xa2",
		"UndoAlt":                          "\xef\x8b\xaa",
		"UniversalAccess":                  "\xef\x8a\x9a",
		"University":                       "\xef\x86\x9c",
		"Unlink":                           "\xef\x84\xa7",
		"Unlock":                           "\xef\x82\x9c",
		"UnlockAlt":                        "\xef\x84\xbe",
		"Upload":                           "\xef\x82\x93",
		"User":                             "\xef\x80\x87",
		"UserAlt":                          "\xef\x90\x86",
		"UserAltSlash":                     "\xef\x93\xba",
		"UserAstronaut":                    "\xef\x93\xbb",
		"UserCheck":                        "\xef\x93\xbc",
		"UserCircle":                       "\xef\x8a\xbd",
		"UserClock":                        "\xef\x93\xbd",
		"UserCog":                          "\xef\x93\xbe",
		"UserEdit":                         "\xef\x93\xbf",
		"UserFriends":                      "\xef\x94\x80",
		"UserGraduate":                     "\xef\x94\x81",
		"UserInjured":                      "\xef\x9c\xa8",
		"UserLock":                         "\xef\x94\x82",
		"UserMd":                           "\xef\x83\xb0",
		"UserMinus":                        "\xef\x94\x83",
		"UserNinja":                        "\xef\x94\x84",
		"UserNurse":                        "\xef\xa0\xaf",
		"UserPlus":                         "\xef\x88\xb4",
		"UserSecret":                       "\xef\x88\x9b",
		"UserShield":                       "\xef\x94\x85",
		"UserSlash":                        "\xef\x94\x86",
		"UserTag":                          "\xef\x94\x87",
		"UserTie":                          "\xef\x94\x88",
		"UserTimes":                        "\xef\x88\xb5",
		"Users":                            "\xef\x83\x80",
		"UsersCog":                         "\xef\x94\x89",
		"UsersSlash":                       "\xee\x81\xb3",
		"UtensilSpoon":                     "\xef\x8b\xa5",
		"Utensils":                         "\xef\x8b\xa7",
		"VectorSquare":                     "\xef\x97\x8b",
		"Venus":                            "\xef\x88\xa1",
		"VenusDouble":                      "\xef\x88\xa6",
		"VenusMars":                        "\xef\x88\xa8",
		"Vest":                             "\xee\x82\x85",
		"VestPatches":                      "\xee\x82\x86",
		"Vial":                             "\xef\x92\x92",
		"Vials":                            "\xef\x92\x93",
		"Video":                            "\xef\x80\xbd",
		"VideoSlash":                       "\xef\x93\xa2",
		"Vihara":                           "\xef\x9a\xa7",
		"Virus":                            "\xee\x81\xb4",
		"VirusSlash":                       "\xee\x81\xb5",
		"Viruses":                          "\xee\x81\xb6",
		"Voicemail":                        "\xef\xa2\x97",
		"VolleyballBall":                   "\xef\x91\x9f",
		"VolumeDown":                       "\xef\x80\xa7",
		"VolumeMute":                       "\xef\x9a\xa9",
		"VolumeOff":                        "\xef\x80\xa6",
		"VolumeUp":                         "\xef\x80\xa8",
		"VoteYea":                          "\xef\x9d\xb2",
		"VrCardboard":                      "\xef\x9c\xa9",
		"Walking":                          "\xef\x95\x94",
		"Wallet":                           "\xef\x95\x95",
		"Warehouse":                        "\xef\x92\x94",
		"Water":                            "\xef\x9d\xb3",
		"WaveSquare":                       "\xef\xa0\xbe",
		"Weight":                           "\xef\x92\x96",
		"WeightHanging":                    "\xef\x97\x8d",
		"Wheelchair":                       "\xef\x86\x93",
		"Wifi":                             "\xef\x87\xab",
		"Wind":                             "\xef\x9c\xae",
		"WindowClose":                      "\xef\x90\x90",
		"WindowMaximize":                   "\xef\x8b\x90",
		"WindowMinimize":                   "\xef\x8b\x91",
		"WindowRestore":                    "\xef\x8b\x92",
		"WineBottle":                       "\xef\x9c\xaf",
		"WineGlass":                        "\xef\x93\xa3",
		"WineGlassAlt":                     "\xef\x97\x8e",
		"WonSign":                          "\xef\x85\x99",
		"Wrench":                           "\xef\x82\xad",
		"XRay":                             "\xef\x92\x97",
		"YenSign":                          "\xef\x85\x97",
		"YinYang":                          "\xef\x9a\xad",
	},
}
View Source
var IconsFontAwesome5Brands = Font{
	Filenames: [][2]string{
		{"FAB", "fa-brands-400.ttf"},
	},
	Min:   0xe007,
	Max16: 0xf8e8,
	Max:   0xf8e8,
	Icons: map[string]string{
		"500px":                       "\xef\x89\xae",
		"AccessibleIcon":              "\xef\x8d\xa8",
		"Accusoft":                    "\xef\x8d\xa9",
		"AcquisitionsIncorporated":    "\xef\x9a\xaf",
		"Adn":                         "\xef\x85\xb0",
		"Adversal":                    "\xef\x8d\xaa",
		"Affiliatetheme":              "\xef\x8d\xab",
		"Airbnb":                      "\xef\xa0\xb4",
		"Algolia":                     "\xef\x8d\xac",
		"Alipay":                      "\xef\x99\x82",
		"Amazon":                      "\xef\x89\xb0",
		"AmazonPay":                   "\xef\x90\xac",
		"Amilia":                      "\xef\x8d\xad",
		"Android":                     "\xef\x85\xbb",
		"Angellist":                   "\xef\x88\x89",
		"Angrycreative":               "\xef\x8d\xae",
		"Angular":                     "\xef\x90\xa0",
		"AppStore":                    "\xef\x8d\xaf",
		"AppStoreIos":                 "\xef\x8d\xb0",
		"Apper":                       "\xef\x8d\xb1",
		"Apple":                       "\xef\x85\xb9",
		"ApplePay":                    "\xef\x90\x95",
		"Artstation":                  "\xef\x9d\xba",
		"Asymmetrik":                  "\xef\x8d\xb2",
		"Atlassian":                   "\xef\x9d\xbb",
		"Audible":                     "\xef\x8d\xb3",
		"Autoprefixer":                "\xef\x90\x9c",
		"Avianex":                     "\xef\x8d\xb4",
		"Aviato":                      "\xef\x90\xa1",
		"Aws":                         "\xef\x8d\xb5",
		"Bandcamp":                    "\xef\x8b\x95",
		"BattleNet":                   "\xef\xa0\xb5",
		"Behance":                     "\xef\x86\xb4",
		"BehanceSquare":               "\xef\x86\xb5",
		"Bimobject":                   "\xef\x8d\xb8",
		"Bitbucket":                   "\xef\x85\xb1",
		"Bitcoin":                     "\xef\x8d\xb9",
		"Bity":                        "\xef\x8d\xba",
		"BlackTie":                    "\xef\x89\xbe",
		"Blackberry":                  "\xef\x8d\xbb",
		"Blogger":                     "\xef\x8d\xbc",
		"BloggerB":                    "\xef\x8d\xbd",
		"Bluetooth":                   "\xef\x8a\x93",
		"BluetoothB":                  "\xef\x8a\x94",
		"Bootstrap":                   "\xef\xa0\xb6",
		"Btc":                         "\xef\x85\x9a",
		"Buffer":                      "\xef\xa0\xb7",
		"Buromobelexperte":            "\xef\x8d\xbf",
		"BuyNLarge":                   "\xef\xa2\xa6",
		"Buysellads":                  "\xef\x88\x8d",
		"CanadianMapleLeaf":           "\xef\x9e\x85",
		"CcAmazonPay":                 "\xef\x90\xad",
		"CcAmex":                      "\xef\x87\xb3",
		"CcApplePay":                  "\xef\x90\x96",
		"CcDinersClub":                "\xef\x89\x8c",
		"CcDiscover":                  "\xef\x87\xb2",
		"CcJcb":                       "\xef\x89\x8b",
		"CcMastercard":                "\xef\x87\xb1",
		"CcPaypal":                    "\xef\x87\xb4",
		"CcStripe":                    "\xef\x87\xb5",
		"CcVisa":                      "\xef\x87\xb0",
		"Centercode":                  "\xef\x8e\x80",
		"Centos":                      "\xef\x9e\x89",
		"Chrome":                      "\xef\x89\xa8",
		"Chromecast":                  "\xef\xa0\xb8",
		"Cloudflare":                  "\xee\x81\xbd",
		"Cloudscale":                  "\xef\x8e\x83",
		"Cloudsmith":                  "\xef\x8e\x84",
		"Cloudversify":                "\xef\x8e\x85",
		"Codepen":                     "\xef\x87\x8b",
		"Codiepie":                    "\xef\x8a\x84",
		"Confluence":                  "\xef\x9e\x8d",
		"Connectdevelop":              "\xef\x88\x8e",
		"Contao":                      "\xef\x89\xad",
		"CottonBureau":                "\xef\xa2\x9e",
		"Cpanel":                      "\xef\x8e\x88",
		"CreativeCommons":             "\xef\x89\x9e",
		"CreativeCommonsBy":           "\xef\x93\xa7",
		"CreativeCommonsNc":           "\xef\x93\xa8",
		"CreativeCommonsNcEu":         "\xef\x93\xa9",
		"CreativeCommonsNcJp":         "\xef\x93\xaa",
		"CreativeCommonsNd":           "\xef\x93\xab",
		"CreativeCommonsPd":           "\xef\x93\xac",
		"CreativeCommonsPdAlt":        "\xef\x93\xad",
		"CreativeCommonsRemix":        "\xef\x93\xae",
		"CreativeCommonsSa":           "\xef\x93\xaf",
		"CreativeCommonsSampling":     "\xef\x93\xb0",
		"CreativeCommonsSamplingPlus": "\xef\x93\xb1",
		"CreativeCommonsShare":        "\xef\x93\xb2",
		"CreativeCommonsZero":         "\xef\x93\xb3",
		"CriticalRole":                "\xef\x9b\x89",
		"Css3":                        "\xef\x84\xbc",
		"Css3Alt":                     "\xef\x8e\x8b",
		"Cuttlefish":                  "\xef\x8e\x8c",
		"DAndD":                       "\xef\x8e\x8d",
		"DAndDBeyond":                 "\xef\x9b\x8a",
		"Dailymotion":                 "\xee\x81\x92",
		"Dashcube":                    "\xef\x88\x90",
		"Deezer":                      "\xee\x81\xb7",
		"Delicious":                   "\xef\x86\xa5",
		"Deploydog":                   "\xef\x8e\x8e",
		"Deskpro":                     "\xef\x8e\x8f",
		"Dev":                         "\xef\x9b\x8c",
		"Deviantart":                  "\xef\x86\xbd",
		"Dhl":                         "\xef\x9e\x90",
		"Diaspora":                    "\xef\x9e\x91",
		"Digg":                        "\xef\x86\xa6",
		"DigitalOcean":                "\xef\x8e\x91",
		"Discord":                     "\xef\x8e\x92",
		"Discourse":                   "\xef\x8e\x93",
		"Dochub":                      "\xef\x8e\x94",
		"Docker":                      "\xef\x8e\x95",
		"Draft2digital":               "\xef\x8e\x96",
		"Dribbble":                    "\xef\x85\xbd",
		"DribbbleSquare":              "\xef\x8e\x97",
		"Dropbox":                     "\xef\x85\xab",
		"Drupal":                      "\xef\x86\xa9",
		"Dyalog":                      "\xef\x8e\x99",
		"Earlybirds":                  "\xef\x8e\x9a",
		"Ebay":                        "\xef\x93\xb4",
		"Edge":                        "\xef\x8a\x82",
		"EdgeLegacy":                  "\xee\x81\xb8",
		"Elementor":                   "\xef\x90\xb0",
		"Ello":                        "\xef\x97\xb1",
		"Ember":                       "\xef\x90\xa3",
		"Empire":                      "\xef\x87\x91",
		"Envira":                      "\xef\x8a\x99",
		"Erlang":                      "\xef\x8e\x9d",
		"Ethereum":                    "\xef\x90\xae",
		"Etsy":                        "\xef\x8b\x97",
		"Evernote":                    "\xef\xa0\xb9",
		"Expeditedssl":                "\xef\x88\xbe",
		"Facebook":                    "\xef\x82\x9a",
		"FacebookF":                   "\xef\x8e\x9e",
		"FacebookMessenger":           "\xef\x8e\x9f",
		"FacebookSquare":              "\xef\x82\x82",
		"FantasyFlightGames":          "\xef\x9b\x9c",
		"Fedex":                       "\xef\x9e\x97",
		"Fedora":                      "\xef\x9e\x98",
		"Figma":                       "\xef\x9e\x99",
		"Firefox":                     "\xef\x89\xa9",
		"FirefoxBrowser":              "\xee\x80\x87",
		"FirstOrder":                  "\xef\x8a\xb0",
		"FirstOrderAlt":               "\xef\x94\x8a",
		"Firstdraft":                  "\xef\x8e\xa1",
		"Flickr":                      "\xef\x85\xae",
		"Flipboard":                   "\xef\x91\x8d",
		"Fly":                         "\xef\x90\x97",
		"FontAwesome":                 "\xef\x8a\xb4",
		"FontAwesomeAlt":              "\xef\x8d\x9c",
		"FontAwesomeFlag":             "\xef\x90\xa5",
		"FontAwesomeLogoFull":         "\xef\x93\xa6",
		"Fonticons":                   "\xef\x8a\x80",
		"FonticonsFi":                 "\xef\x8e\xa2",
		"FortAwesome":                 "\xef\x8a\x86",
		"FortAwesomeAlt":              "\xef\x8e\xa3",
		"Forumbee":                    "\xef\x88\x91",
		"Foursquare":                  "\xef\x86\x80",
		"FreeCodeCamp":                "\xef\x8b\x85",
		"Freebsd":                     "\xef\x8e\xa4",
		"Fulcrum":                     "\xef\x94\x8b",
		"GalacticRepublic":            "\xef\x94\x8c",
		"GalacticSenate":              "\xef\x94\x8d",
		"GetPocket":                   "\xef\x89\xa5",
		"Gg":                          "\xef\x89\xa0",
		"GgCircle":                    "\xef\x89\xa1",
		"Git":                         "\xef\x87\x93",
		"GitAlt":                      "\xef\xa1\x81",
		"GitSquare":                   "\xef\x87\x92",
		"Github":                      "\xef\x82\x9b",
		"GithubAlt":                   "\xef\x84\x93",
		"GithubSquare":                "\xef\x82\x92",
		"Gitkraken":                   "\xef\x8e\xa6",
		"Gitlab":                      "\xef\x8a\x96",
		"Gitter":                      "\xef\x90\xa6",
		"Glide":                       "\xef\x8a\xa5",
		"GlideG":                      "\xef\x8a\xa6",
		"Gofore":                      "\xef\x8e\xa7",
		"Goodreads":                   "\xef\x8e\xa8",
		"GoodreadsG":                  "\xef\x8e\xa9",
		"Google":                      "\xef\x86\xa0",
		"GoogleDrive":                 "\xef\x8e\xaa",
		"GooglePay":                   "\xee\x81\xb9",
		"GooglePlay":                  "\xef\x8e\xab",
		"GooglePlus":                  "\xef\x8a\xb3",
		"GooglePlusG":                 "\xef\x83\x95",
		"GooglePlusSquare":            "\xef\x83\x94",
		"GoogleWallet":                "\xef\x87\xae",
		"Gratipay":                    "\xef\x86\x84",
		"Grav":                        "\xef\x8b\x96",
		"Gripfire":                    "\xef\x8e\xac",
		"Grunt":                       "\xef\x8e\xad",
		"Guilded":                     "\xee\x81\xbe",
		"Gulp":                        "\xef\x8e\xae",
		"HackerNews":                  "\xef\x87\x94",
		"HackerNewsSquare":            "\xef\x8e\xaf",
		"Hackerrank":                  "\xef\x97\xb7",
		"Hips":                        "\xef\x91\x92",
		"HireAHelper":                 "\xef\x8e\xb0",
		"Hive":                        "\xee\x81\xbf",
		"Hooli":                       "\xef\x90\xa7",
		"Hornbill":                    "\xef\x96\x92",
		"Hotjar":                      "\xef\x8e\xb1",
		"Houzz":                       "\xef\x89\xbc",
		"Html5":                       "\xef\x84\xbb",
		"Hubspot":                     "\xef\x8e\xb2",
		"Ideal":                       "\xee\x80\x93",
		"Imdb":                        "\xef\x8b\x98",
		"Innosoft":                    "\xee\x82\x80",
		"Instagram":                   "\xef\x85\xad",
		"InstagramSquare":             "\xee\x81\x95",
		"Instalod":                    "\xee\x82\x81",
		"Intercom":                    "\xef\x9e\xaf",
		"InternetExplorer":            "\xef\x89\xab",
		"Invision":                    "\xef\x9e\xb0",
		"Ioxhost":                     "\xef\x88\x88",
		"ItchIo":                      "\xef\xa0\xba",
		"Itunes":                      "\xef\x8e\xb4",
		"ItunesNote":                  "\xef\x8e\xb5",
		"Java":                        "\xef\x93\xa4",
		"JediOrder":                   "\xef\x94\x8e",
		"Jenkins":                     "\xef\x8e\xb6",
		"Jira":                        "\xef\x9e\xb1",
		"Joget":                       "\xef\x8e\xb7",
		"Joomla":                      "\xef\x86\xaa",
		"Js":                          "\xef\x8e\xb8",
		"JsSquare":                    "\xef\x8e\xb9",
		"Jsfiddle":                    "\xef\x87\x8c",
		"Kaggle":                      "\xef\x97\xba",
		"Keybase":                     "\xef\x93\xb5",
		"Keycdn":                      "\xef\x8e\xba",
		"Kickstarter":                 "\xef\x8e\xbb",
		"KickstarterK":                "\xef\x8e\xbc",
		"Korvue":                      "\xef\x90\xaf",
		"Laravel":                     "\xef\x8e\xbd",
		"Lastfm":                      "\xef\x88\x82",
		"LastfmSquare":                "\xef\x88\x83",
		"Leanpub":                     "\xef\x88\x92",
		"Less":                        "\xef\x90\x9d",
		"Line":                        "\xef\x8f\x80",
		"Linkedin":                    "\xef\x82\x8c",
		"LinkedinIn":                  "\xef\x83\xa1",
		"Linode":                      "\xef\x8a\xb8",
		"Linux":                       "\xef\x85\xbc",
		"Lyft":                        "\xef\x8f\x83",
		"Magento":                     "\xef\x8f\x84",
		"Mailchimp":                   "\xef\x96\x9e",
		"Mandalorian":                 "\xef\x94\x8f",
		"Markdown":                    "\xef\x98\x8f",
		"Mastodon":                    "\xef\x93\xb6",
		"Maxcdn":                      "\xef\x84\xb6",
		"Mdb":                         "\xef\xa3\x8a",
		"Medapps":                     "\xef\x8f\x86",
		"Medium":                      "\xef\x88\xba",
		"MediumM":                     "\xef\x8f\x87",
		"Medrt":                       "\xef\x8f\x88",
		"Meetup":                      "\xef\x8b\xa0",
		"Megaport":                    "\xef\x96\xa3",
		"Mendeley":                    "\xef\x9e\xb3",
		"Microblog":                   "\xee\x80\x9a",
		"Microsoft":                   "\xef\x8f\x8a",
		"Mix":                         "\xef\x8f\x8b",
		"Mixcloud":                    "\xef\x8a\x89",
		"Mixer":                       "\xee\x81\x96",
		"Mizuni":                      "\xef\x8f\x8c",
		"Modx":                        "\xef\x8a\x85",
		"Monero":                      "\xef\x8f\x90",
		"Napster":                     "\xef\x8f\x92",
		"Neos":                        "\xef\x98\x92",
		"Nimblr":                      "\xef\x96\xa8",
		"Node":                        "\xef\x90\x99",
		"NodeJs":                      "\xef\x8f\x93",
		"Npm":                         "\xef\x8f\x94",
		"Ns8":                         "\xef\x8f\x95",
		"Nutritionix":                 "\xef\x8f\x96",
		"OctopusDeploy":               "\xee\x82\x82",
		"Odnoklassniki":               "\xef\x89\xa3",
		"OdnoklassnikiSquare":         "\xef\x89\xa4",
		"OldRepublic":                 "\xef\x94\x90",
		"Opencart":                    "\xef\x88\xbd",
		"Openid":                      "\xef\x86\x9b",
		"Opera":                       "\xef\x89\xaa",
		"OptinMonster":                "\xef\x88\xbc",
		"Orcid":                       "\xef\xa3\x92",
		"Osi":                         "\xef\x90\x9a",
		"Page4":                       "\xef\x8f\x97",
		"Pagelines":                   "\xef\x86\x8c",
		"Palfed":                      "\xef\x8f\x98",
		"Patreon":                     "\xef\x8f\x99",
		"Paypal":                      "\xef\x87\xad",
		"PennyArcade":                 "\xef\x9c\x84",
		"Perbyte":                     "\xee\x82\x83",
		"Periscope":                   "\xef\x8f\x9a",
		"Phabricator":                 "\xef\x8f\x9b",
		"PhoenixFramework":            "\xef\x8f\x9c",
		"PhoenixSquadron":             "\xef\x94\x91",
		"Php":                         "\xef\x91\x97",
		"PiedPiper":                   "\xef\x8a\xae",
		"PiedPiperAlt":                "\xef\x86\xa8",
		"PiedPiperHat":                "\xef\x93\xa5",
		"PiedPiperPp":                 "\xef\x86\xa7",
		"PiedPiperSquare":             "\xee\x80\x9e",
		"Pinterest":                   "\xef\x83\x92",
		"PinterestP":                  "\xef\x88\xb1",
		"PinterestSquare":             "\xef\x83\x93",
		"Playstation":                 "\xef\x8f\x9f",
		"ProductHunt":                 "\xef\x8a\x88",
		"Pushed":                      "\xef\x8f\xa1",
		"Python":                      "\xef\x8f\xa2",
		"Qq":                          "\xef\x87\x96",
		"Quinscape":                   "\xef\x91\x99",
		"Quora":                       "\xef\x8b\x84",
		"RProject":                    "\xef\x93\xb7",
		"RaspberryPi":                 "\xef\x9e\xbb",
		"Ravelry":                     "\xef\x8b\x99",
		"React":                       "\xef\x90\x9b",
		"Reacteurope":                 "\xef\x9d\x9d",
		"Readme":                      "\xef\x93\x95",
		"Rebel":                       "\xef\x87\x90",
		"RedRiver":                    "\xef\x8f\xa3",
		"Reddit":                      "\xef\x86\xa1",
		"RedditAlien":                 "\xef\x8a\x81",
		"RedditSquare":                "\xef\x86\xa2",
		"Redhat":                      "\xef\x9e\xbc",
		"Renren":                      "\xef\x86\x8b",
		"Replyd":                      "\xef\x8f\xa6",
		"Researchgate":                "\xef\x93\xb8",
		"Resolving":                   "\xef\x8f\xa7",
		"Rev":                         "\xef\x96\xb2",
		"Rocketchat":                  "\xef\x8f\xa8",
		"Rockrms":                     "\xef\x8f\xa9",
		"Rust":                        "\xee\x81\xba",
		"Safari":                      "\xef\x89\xa7",
		"Salesforce":                  "\xef\xa0\xbb",
		"Sass":                        "\xef\x90\x9e",
		"Schlix":                      "\xef\x8f\xaa",
		"Scribd":                      "\xef\x8a\x8a",
		"Searchengin":                 "\xef\x8f\xab",
		"Sellcast":                    "\xef\x8b\x9a",
		"Sellsy":                      "\xef\x88\x93",
		"Servicestack":                "\xef\x8f\xac",
		"Shirtsinbulk":                "\xef\x88\x94",
		"Shopify":                     "\xee\x81\x97",
		"Shopware":                    "\xef\x96\xb5",
		"Simplybuilt":                 "\xef\x88\x95",
		"Sistrix":                     "\xef\x8f\xae",
		"Sith":                        "\xef\x94\x92",
		"Sketch":                      "\xef\x9f\x86",
		"Skyatlas":                    "\xef\x88\x96",
		"Skype":                       "\xef\x85\xbe",
		"Slack":                       "\xef\x86\x98",
		"SlackHash":                   "\xef\x8f\xaf",
		"Slideshare":                  "\xef\x87\xa7",
		"Snapchat":                    "\xef\x8a\xab",
		"SnapchatGhost":               "\xef\x8a\xac",
		"SnapchatSquare":              "\xef\x8a\xad",
		"Soundcloud":                  "\xef\x86\xbe",
		"Sourcetree":                  "\xef\x9f\x93",
		"Speakap":                     "\xef\x8f\xb3",
		"SpeakerDeck":                 "\xef\xa0\xbc",
		"Spotify":                     "\xef\x86\xbc",
		"Squarespace":                 "\xef\x96\xbe",
		"StackExchange":               "\xef\x86\x8d",
		"StackOverflow":               "\xef\x85\xac",
		"Stackpath":                   "\xef\xa1\x82",
		"Staylinked":                  "\xef\x8f\xb5",
		"Steam":                       "\xef\x86\xb6",
		"SteamSquare":                 "\xef\x86\xb7",
		"SteamSymbol":                 "\xef\x8f\xb6",
		"StickerMule":                 "\xef\x8f\xb7",
		"Strava":                      "\xef\x90\xa8",
		"Stripe":                      "\xef\x90\xa9",
		"StripeS":                     "\xef\x90\xaa",
		"Studiovinari":                "\xef\x8f\xb8",
		"Stumbleupon":                 "\xef\x86\xa4",
		"StumbleuponCircle":           "\xef\x86\xa3",
		"Superpowers":                 "\xef\x8b\x9d",
		"Supple":                      "\xef\x8f\xb9",
		"Suse":                        "\xef\x9f\x96",
		"Swift":                       "\xef\xa3\xa1",
		"Symfony":                     "\xef\xa0\xbd",
		"Teamspeak":                   "\xef\x93\xb9",
		"Telegram":                    "\xef\x8b\x86",
		"TelegramPlane":               "\xef\x8f\xbe",
		"TencentWeibo":                "\xef\x87\x95",
		"TheRedYeti":                  "\xef\x9a\x9d",
		"Themeco":                     "\xef\x97\x86",
		"Themeisle":                   "\xef\x8a\xb2",
		"ThinkPeaks":                  "\xef\x9c\xb1",
		"Tiktok":                      "\xee\x81\xbb",
		"TradeFederation":             "\xef\x94\x93",
		"Trello":                      "\xef\x86\x81",
		"Tumblr":                      "\xef\x85\xb3",
		"TumblrSquare":                "\xef\x85\xb4",
		"Twitch":                      "\xef\x87\xa8",
		"Twitter":                     "\xef\x82\x99",
		"TwitterSquare":               "\xef\x82\x81",
		"Typo3":                       "\xef\x90\xab",
		"Uber":                        "\xef\x90\x82",
		"Ubuntu":                      "\xef\x9f\x9f",
		"Uikit":                       "\xef\x90\x83",
		"Umbraco":                     "\xef\xa3\xa8",
		"Uncharted":                   "\xee\x82\x84",
		"Uniregistry":                 "\xef\x90\x84",
		"Unity":                       "\xee\x81\x89",
		"Unsplash":                    "\xee\x81\xbc",
		"Untappd":                     "\xef\x90\x85",
		"Ups":                         "\xef\x9f\xa0",
		"Usb":                         "\xef\x8a\x87",
		"Usps":                        "\xef\x9f\xa1",
		"Ussunnah":                    "\xef\x90\x87",
		"Vaadin":                      "\xef\x90\x88",
		"Viacoin":                     "\xef\x88\xb7",
		"Viadeo":                      "\xef\x8a\xa9",
		"ViadeoSquare":                "\xef\x8a\xaa",
		"Viber":                       "\xef\x90\x89",
		"Vimeo":                       "\xef\x90\x8a",
		"VimeoSquare":                 "\xef\x86\x94",
		"VimeoV":                      "\xef\x89\xbd",
		"Vine":                        "\xef\x87\x8a",
		"Vk":                          "\xef\x86\x89",
		"Vnv":                         "\xef\x90\x8b",
		"Vuejs":                       "\xef\x90\x9f",
		"WatchmanMonitoring":          "\xee\x82\x87",
		"Waze":                        "\xef\xa0\xbf",
		"Weebly":                      "\xef\x97\x8c",
		"Weibo":                       "\xef\x86\x8a",
		"Weixin":                      "\xef\x87\x97",
		"Whatsapp":                    "\xef\x88\xb2",
		"WhatsappSquare":              "\xef\x90\x8c",
		"Whmcs":                       "\xef\x90\x8d",
		"WikipediaW":                  "\xef\x89\xa6",
		"Windows":                     "\xef\x85\xba",
		"Wix":                         "\xef\x97\x8f",
		"WizardsOfTheCoast":           "\xef\x9c\xb0",
		"Wodu":                        "\xee\x82\x88",
		"WolfPackBattalion":           "\xef\x94\x94",
		"Wordpress":                   "\xef\x86\x9a",
		"WordpressSimple":             "\xef\x90\x91",
		"Wpbeginner":                  "\xef\x8a\x97",
		"Wpexplorer":                  "\xef\x8b\x9e",
		"Wpforms":                     "\xef\x8a\x98",
		"Wpressr":                     "\xef\x8f\xa4",
		"Xbox":                        "\xef\x90\x92",
		"Xing":                        "\xef\x85\xa8",
		"XingSquare":                  "\xef\x85\xa9",
		"YCombinator":                 "\xef\x88\xbb",
		"Yahoo":                       "\xef\x86\x9e",
		"Yammer":                      "\xef\xa1\x80",
		"Yandex":                      "\xef\x90\x93",
		"YandexInternational":         "\xef\x90\x94",
		"Yarn":                        "\xef\x9f\xa3",
		"Yelp":                        "\xef\x87\xa9",
		"Yoast":                       "\xef\x8a\xb1",
		"Youtube":                     "\xef\x85\xa7",
		"YoutubeSquare":               "\xef\x90\xb1",
		"Zhihu":                       "\xef\x98\xbf",
	},
}
View Source
var IconsFontAwesome5Pro = Font{
	Filenames: [][2]string{
		{"FAL", "fa-light-300.ttf"},
		{"FAR", "fa-regular-400.ttf"},
		{"FAS", "fa-solid-900.ttf"},
	},
	Min:   0xe000,
	Max16: 0xf8ff,
	Max:   0xf8ff,
	Icons: map[string]string{
		"Abacus":                           "\xef\x99\x80",
		"Acorn":                            "\xef\x9a\xae",
		"Ad":                               "\xef\x99\x81",
		"AddressBook":                      "\xef\x8a\xb9",
		"AddressCard":                      "\xef\x8a\xbb",
		"Adjust":                           "\xef\x81\x82",
		"AirConditioner":                   "\xef\xa3\xb4",
		"AirFreshener":                     "\xef\x97\x90",
		"AlarmClock":                       "\xef\x8d\x8e",
		"AlarmExclamation":                 "\xef\xa1\x83",
		"AlarmPlus":                        "\xef\xa1\x84",
		"AlarmSnooze":                      "\xef\xa1\x85",
		"Album":                            "\xef\xa2\x9f",
		"AlbumCollection":                  "\xef\xa2\xa0",
		"Alicorn":                          "\xef\x9a\xb0",
		"Alien":                            "\xef\xa3\xb5",
		"AlienMonster":                     "\xef\xa3\xb6",
		"AlignCenter":                      "\xef\x80\xb7",
		"AlignJustify":                     "\xef\x80\xb9",
		"AlignLeft":                        "\xef\x80\xb6",
		"AlignRight":                       "\xef\x80\xb8",
		"AlignSlash":                       "\xef\xa1\x86",
		"Allergies":                        "\xef\x91\xa1",
		"Ambulance":                        "\xef\x83\xb9",
		"AmericanSignLanguageInterpreting": "\xef\x8a\xa3",
		"AmpGuitar":                        "\xef\xa2\xa1",
		"Analytics":                        "\xef\x99\x83",
		"Anchor":                           "\xef\x84\xbd",
		"Angel":                            "\xef\x9d\xb9",
		"AngleDoubleDown":                  "\xef\x84\x83",
		"AngleDoubleLeft":                  "\xef\x84\x80",
		"AngleDoubleRight":                 "\xef\x84\x81",
		"AngleDoubleUp":                    "\xef\x84\x82",
		"AngleDown":                        "\xef\x84\x87",
		"AngleLeft":                        "\xef\x84\x84",
		"AngleRight":                       "\xef\x84\x85",
		"AngleUp":                          "\xef\x84\x86",
		"Angry":                            "\xef\x95\x96",
		"Ankh":                             "\xef\x99\x84",
		"AppleAlt":                         "\xef\x97\x91",
		"AppleCrate":                       "\xef\x9a\xb1",
		"Archive":                          "\xef\x86\x87",
		"Archway":                          "\xef\x95\x97",
		"ArrowAltCircleDown":               "\xef\x8d\x98",
		"ArrowAltCircleLeft":               "\xef\x8d\x99",
		"ArrowAltCircleRight":              "\xef\x8d\x9a",
		"ArrowAltCircleUp":                 "\xef\x8d\x9b",
		"ArrowAltDown":                     "\xef\x8d\x94",
		"ArrowAltFromBottom":               "\xef\x8d\x86",
		"ArrowAltFromLeft":                 "\xef\x8d\x87",
		"ArrowAltFromRight":                "\xef\x8d\x88",
		"ArrowAltFromTop":                  "\xef\x8d\x89",
		"ArrowAltLeft":                     "\xef\x8d\x95",
		"ArrowAltRight":                    "\xef\x8d\x96",
		"ArrowAltSquareDown":               "\xef\x8d\x90",
		"ArrowAltSquareLeft":               "\xef\x8d\x91",
		"ArrowAltSquareRight":              "\xef\x8d\x92",
		"ArrowAltSquareUp":                 "\xef\x8d\x93",
		"ArrowAltToBottom":                 "\xef\x8d\x8a",
		"ArrowAltToLeft":                   "\xef\x8d\x8b",
		"ArrowAltToRight":                  "\xef\x8d\x8c",
		"ArrowAltToTop":                    "\xef\x8d\x8d",
		"ArrowAltUp":                       "\xef\x8d\x97",
		"ArrowCircleDown":                  "\xef\x82\xab",
		"ArrowCircleLeft":                  "\xef\x82\xa8",
		"ArrowCircleRight":                 "\xef\x82\xa9",
		"ArrowCircleUp":                    "\xef\x82\xaa",
		"ArrowDown":                        "\xef\x81\xa3",
		"ArrowFromBottom":                  "\xef\x8d\x82",
		"ArrowFromLeft":                    "\xef\x8d\x83",
		"ArrowFromRight":                   "\xef\x8d\x84",
		"ArrowFromTop":                     "\xef\x8d\x85",
		"ArrowLeft":                        "\xef\x81\xa0",
		"ArrowRight":                       "\xef\x81\xa1",
		"ArrowSquareDown":                  "\xef\x8c\xb9",
		"ArrowSquareLeft":                  "\xef\x8c\xba",
		"ArrowSquareRight":                 "\xef\x8c\xbb",
		"ArrowSquareUp":                    "\xef\x8c\xbc",
		"ArrowToBottom":                    "\xef\x8c\xbd",
		"ArrowToLeft":                      "\xef\x8c\xbe",
		"ArrowToRight":                     "\xef\x8d\x80",
		"ArrowToTop":                       "\xef\x8d\x81",
		"ArrowUp":                          "\xef\x81\xa2",
		"Arrows":                           "\xef\x81\x87",
		"ArrowsAlt":                        "\xef\x82\xb2",
		"ArrowsAltH":                       "\xef\x8c\xb7",
		"ArrowsAltV":                       "\xef\x8c\xb8",
		"ArrowsH":                          "\xef\x81\xbe",
		"ArrowsV":                          "\xef\x81\xbd",
		"AssistiveListeningSystems":        "\xef\x8a\xa2",
		"Asterisk":                         "\xef\x81\xa9",
		"At":                               "\xef\x87\xba",
		"Atlas":                            "\xef\x95\x98",
		"Atom":                             "\xef\x97\x92",
		"AtomAlt":                          "\xef\x97\x93",
		"AudioDescription":                 "\xef\x8a\x9e",
		"Award":                            "\xef\x95\x99",
		"Axe":                              "\xef\x9a\xb2",
		"AxeBattle":                        "\xef\x9a\xb3",
		"Baby":                             "\xef\x9d\xbc",
		"BabyCarriage":                     "\xef\x9d\xbd",
		"Backpack":                         "\xef\x97\x94",
		"Backspace":                        "\xef\x95\x9a",
		"Backward":                         "\xef\x81\x8a",
		"Bacon":                            "\xef\x9f\xa5",
		"Bacteria":                         "\xee\x81\x99",
		"Bacterium":                        "\xee\x81\x9a",
		"Badge":                            "\xef\x8c\xb5",
		"BadgeCheck":                       "\xef\x8c\xb6",
		"BadgeDollar":                      "\xef\x99\x85",
		"BadgePercent":                     "\xef\x99\x86",
		"BadgeSheriff":                     "\xef\xa2\xa2",
		"BadgerHoney":                      "\xef\x9a\xb4",
		"BagsShopping":                     "\xef\xa1\x87",
		"Bahai":                            "\xef\x99\xa6",
		"BalanceScale":                     "\xef\x89\x8e",
		"BalanceScaleLeft":                 "\xef\x94\x95",
		"BalanceScaleRight":                "\xef\x94\x96",
		"BallPile":                         "\xef\x9d\xbe",
		"Ballot":                           "\xef\x9c\xb2",
		"BallotCheck":                      "\xef\x9c\xb3",
		"Ban":                              "\xef\x81\x9e",
		"BandAid":                          "\xef\x91\xa2",
		"Banjo":                            "\xef\xa2\xa3",
		"Barcode":                          "\xef\x80\xaa",
		"BarcodeAlt":                       "\xef\x91\xa3",
		"BarcodeRead":                      "\xef\x91\xa4",
		"BarcodeScan":                      "\xef\x91\xa5",
		"Bars":                             "\xef\x83\x89",
		"Baseball":                         "\xef\x90\xb2",
		"BaseballBall":                     "\xef\x90\xb3",
		"BasketballBall":                   "\xef\x90\xb4",
		"BasketballHoop":                   "\xef\x90\xb5",
		"Bat":                              "\xef\x9a\xb5",
		"Bath":                             "\xef\x8b\x8d",
		"BatteryBolt":                      "\xef\x8d\xb6",
		"BatteryEmpty":                     "\xef\x89\x84",
		"BatteryFull":                      "\xef\x89\x80",
		"BatteryHalf":                      "\xef\x89\x82",
		"BatteryQuarter":                   "\xef\x89\x83",
		"BatterySlash":                     "\xef\x8d\xb7",
		"BatteryThreeQuarters":             "\xef\x89\x81",
		"Bed":                              "\xef\x88\xb6",
		"BedAlt":                           "\xef\xa3\xb7",
		"BedBunk":                          "\xef\xa3\xb8",
		"BedEmpty":                         "\xef\xa3\xb9",
		"Beer":                             "\xef\x83\xbc",
		"Bell":                             "\xef\x83\xb3",
		"BellExclamation":                  "\xef\xa1\x88",
		"BellOn":                           "\xef\xa3\xba",
		"BellPlus":                         "\xef\xa1\x89",
		"BellSchool":                       "\xef\x97\x95",
		"BellSchoolSlash":                  "\xef\x97\x96",
		"BellSlash":                        "\xef\x87\xb6",
		"Bells":                            "\xef\x9d\xbf",
		"Betamax":                          "\xef\xa2\xa4",
		"BezierCurve":                      "\xef\x95\x9b",
		"Bible":                            "\xef\x99\x87",
		"Bicycle":                          "\xef\x88\x86",
		"Biking":                           "\xef\xa1\x8a",
		"BikingMountain":                   "\xef\xa1\x8b",
		"Binoculars":                       "\xef\x87\xa5",
		"Biohazard":                        "\xef\x9e\x80",
		"BirthdayCake":                     "\xef\x87\xbd",
		"Blanket":                          "\xef\x92\x98",
		"Blender":                          "\xef\x94\x97",
		"BlenderPhone":                     "\xef\x9a\xb6",
		"Blind":                            "\xef\x8a\x9d",
		"Blinds":                           "\xef\xa3\xbb",
		"BlindsOpen":                       "\xef\xa3\xbc",
		"BlindsRaised":                     "\xef\xa3\xbd",
		"Blog":                             "\xef\x9e\x81",
		"Bold":                             "\xef\x80\xb2",
		"Bolt":                             "\xef\x83\xa7",
		"Bomb":                             "\xef\x87\xa2",
		"Bone":                             "\xef\x97\x97",
		"BoneBreak":                        "\xef\x97\x98",
		"Bong":                             "\xef\x95\x9c",
		"Book":                             "\xef\x80\xad",
		"BookAlt":                          "\xef\x97\x99",
		"BookDead":                         "\xef\x9a\xb7",
		"BookHeart":                        "\xef\x92\x99",
		"BookMedical":                      "\xef\x9f\xa6",
		"BookOpen":                         "\xef\x94\x98",
		"BookReader":                       "\xef\x97\x9a",
		"BookSpells":                       "\xef\x9a\xb8",
		"BookUser":                         "\xef\x9f\xa7",
		"Bookmark":                         "\xef\x80\xae",
		"Books":                            "\xef\x97\x9b",
		"BooksMedical":                     "\xef\x9f\xa8",
		"Boombox":                          "\xef\xa2\xa5",
		"Boot":                             "\xef\x9e\x82",
		"BoothCurtain":                     "\xef\x9c\xb4",
		"BorderAll":                        "\xef\xa1\x8c",
		"BorderBottom":                     "\xef\xa1\x8d",
		"BorderCenterH":                    "\xef\xa2\x9c",
		"BorderCenterV":                    "\xef\xa2\x9d",
		"BorderInner":                      "\xef\xa1\x8e",
		"BorderLeft":                       "\xef\xa1\x8f",
		"BorderNone":                       "\xef\xa1\x90",
		"BorderOuter":                      "\xef\xa1\x91",
		"BorderRight":                      "\xef\xa1\x92",
		"BorderStyle":                      "\xef\xa1\x93",
		"BorderStyleAlt":                   "\xef\xa1\x94",
		"BorderTop":                        "\xef\xa1\x95",
		"BowArrow":                         "\xef\x9a\xb9",
		"BowlingBall":                      "\xef\x90\xb6",
		"BowlingPins":                      "\xef\x90\xb7",
		"Box":                              "\xef\x91\xa6",
		"BoxAlt":                           "\xef\x92\x9a",
		"BoxBallot":                        "\xef\x9c\xb5",
		"BoxCheck":                         "\xef\x91\xa7",
		"BoxFragile":                       "\xef\x92\x9b",
		"BoxFull":                          "\xef\x92\x9c",
		"BoxHeart":                         "\xef\x92\x9d",
		"BoxOpen":                          "\xef\x92\x9e",
		"BoxTissue":                        "\xee\x81\x9b",
		"BoxUp":                            "\xef\x92\x9f",
		"BoxUsd":                           "\xef\x92\xa0",
		"Boxes":                            "\xef\x91\xa8",
		"BoxesAlt":                         "\xef\x92\xa1",
		"BoxingGlove":                      "\xef\x90\xb8",
		"Brackets":                         "\xef\x9f\xa9",
		"BracketsCurly":                    "\xef\x9f\xaa",
		"Braille":                          "\xef\x8a\xa1",
		"Brain":                            "\xef\x97\x9c",
		"BreadLoaf":                        "\xef\x9f\xab",
		"BreadSlice":                       "\xef\x9f\xac",
		"Briefcase":                        "\xef\x82\xb1",
		"BriefcaseMedical":                 "\xef\x91\xa9",
		"BringForward":                     "\xef\xa1\x96",
		"BringFront":                       "\xef\xa1\x97",
		"BroadcastTower":                   "\xef\x94\x99",
		"Broom":                            "\xef\x94\x9a",
		"Browser":                          "\xef\x8d\xbe",
		"Brush":                            "\xef\x95\x9d",
		"Bug":                              "\xef\x86\x88",
		"Building":                         "\xef\x86\xad",
		"Bullhorn":                         "\xef\x82\xa1",
		"Bullseye":                         "\xef\x85\x80",
		"BullseyeArrow":                    "\xef\x99\x88",
		"BullseyePointer":                  "\xef\x99\x89",
		"BurgerSoda":                       "\xef\xa1\x98",
		"Burn":                             "\xef\x91\xaa",
		"Burrito":                          "\xef\x9f\xad",
		"Bus":                              "\xef\x88\x87",
		"BusAlt":                           "\xef\x95\x9e",
		"BusSchool":                        "\xef\x97\x9d",
		"BusinessTime":                     "\xef\x99\x8a",
		"CabinetFiling":                    "\xef\x99\x8b",
		"Cactus":                           "\xef\xa2\xa7",
		"Calculator":                       "\xef\x87\xac",
		"CalculatorAlt":                    "\xef\x99\x8c",
		"Calendar":                         "\xef\x84\xb3",
		"CalendarAlt":                      "\xef\x81\xb3",
		"CalendarCheck":                    "\xef\x89\xb4",
		"CalendarDay":                      "\xef\x9e\x83",
		"CalendarEdit":                     "\xef\x8c\xb3",
		"CalendarExclamation":              "\xef\x8c\xb4",
		"CalendarMinus":                    "\xef\x89\xb2",
		"CalendarPlus":                     "\xef\x89\xb1",
		"CalendarStar":                     "\xef\x9c\xb6",
		"CalendarTimes":                    "\xef\x89\xb3",
		"CalendarWeek":                     "\xef\x9e\x84",
		"Camcorder":                        "\xef\xa2\xa8",
		"Camera":                           "\xef\x80\xb0",
		"CameraAlt":                        "\xef\x8c\xb2",
		"CameraHome":                       "\xef\xa3\xbe",
		"CameraMovie":                      "\xef\xa2\xa9",
		"CameraPolaroid":                   "\xef\xa2\xaa",
		"CameraRetro":                      "\xef\x82\x83",
		"Campfire":                         "\xef\x9a\xba",
		"Campground":                       "\xef\x9a\xbb",
		"CandleHolder":                     "\xef\x9a\xbc",
		"CandyCane":                        "\xef\x9e\x86",
		"CandyCorn":                        "\xef\x9a\xbd",
		"Cannabis":                         "\xef\x95\x9f",
		"Capsules":                         "\xef\x91\xab",
		"Car":                              "\xef\x86\xb9",
		"CarAlt":                           "\xef\x97\x9e",
		"CarBattery":                       "\xef\x97\x9f",
		"CarBuilding":                      "\xef\xa1\x99",
		"CarBump":                          "\xef\x97\xa0",
		"CarBus":                           "\xef\xa1\x9a",
		"CarCrash":                         "\xef\x97\xa1",
		"CarGarage":                        "\xef\x97\xa2",
		"CarMechanic":                      "\xef\x97\xa3",
		"CarSide":                          "\xef\x97\xa4",
		"CarTilt":                          "\xef\x97\xa5",
		"CarWash":                          "\xef\x97\xa6",
		"Caravan":                          "\xef\xa3\xbf",
		"CaravanAlt":                       "\xee\x80\x80",
		"CaretCircleDown":                  "\xef\x8c\xad",
		"CaretCircleLeft":                  "\xef\x8c\xae",
		"CaretCircleRight":                 "\xef\x8c\xb0",
		"CaretCircleUp":                    "\xef\x8c\xb1",
		"CaretDown":                        "\xef\x83\x97",
		"CaretLeft":                        "\xef\x83\x99",
		"CaretRight":                       "\xef\x83\x9a",
		"CaretSquareDown":                  "\xef\x85\x90",
		"CaretSquareLeft":                  "\xef\x86\x91",
		"CaretSquareRight":                 "\xef\x85\x92",
		"CaretSquareUp":                    "\xef\x85\x91",
		"CaretUp":                          "\xef\x83\x98",
		"Carrot":                           "\xef\x9e\x87",
		"Cars":                             "\xef\xa1\x9b",
		"CartArrowDown":                    "\xef\x88\x98",
		"CartPlus":                         "\xef\x88\x97",
		"CashRegister":                     "\xef\x9e\x88",
		"CassetteTape":                     "\xef\xa2\xab",
		"Cat":                              "\xef\x9a\xbe",
		"CatSpace":                         "\xee\x80\x81",
		"Cauldron":                         "\xef\x9a\xbf",
		"Cctv":                             "\xef\xa2\xac",
		"Certificate":                      "\xef\x82\xa3",
		"Chair":                            "\xef\x9b\x80",
		"ChairOffice":                      "\xef\x9b\x81",
		"Chalkboard":                       "\xef\x94\x9b",
		"ChalkboardTeacher":                "\xef\x94\x9c",
		"ChargingStation":                  "\xef\x97\xa7",
		"ChartArea":                        "\xef\x87\xbe",
		"ChartBar":                         "\xef\x82\x80",
		"ChartLine":                        "\xef\x88\x81",
		"ChartLineDown":                    "\xef\x99\x8d",
		"ChartNetwork":                     "\xef\x9e\x8a",
		"ChartPie":                         "\xef\x88\x80",
		"ChartPieAlt":                      "\xef\x99\x8e",
		"ChartScatter":                     "\xef\x9f\xae",
		"Check":                            "\xef\x80\x8c",
		"CheckCircle":                      "\xef\x81\x98",
		"CheckDouble":                      "\xef\x95\xa0",
		"CheckSquare":                      "\xef\x85\x8a",
		"Cheese":                           "\xef\x9f\xaf",
		"CheeseSwiss":                      "\xef\x9f\xb0",
		"Cheeseburger":                     "\xef\x9f\xb1",
		"Chess":                            "\xef\x90\xb9",
		"ChessBishop":                      "\xef\x90\xba",
		"ChessBishopAlt":                   "\xef\x90\xbb",
		"ChessBoard":                       "\xef\x90\xbc",
		"ChessClock":                       "\xef\x90\xbd",
		"ChessClockAlt":                    "\xef\x90\xbe",
		"ChessKing":                        "\xef\x90\xbf",
		"ChessKingAlt":                     "\xef\x91\x80",
		"ChessKnight":                      "\xef\x91\x81",
		"ChessKnightAlt":                   "\xef\x91\x82",
		"ChessPawn":                        "\xef\x91\x83",
		"ChessPawnAlt":                     "\xef\x91\x84",
		"ChessQueen":                       "\xef\x91\x85",
		"ChessQueenAlt":                    "\xef\x91\x86",
		"ChessRook":                        "\xef\x91\x87",
		"ChessRookAlt":                     "\xef\x91\x88",
		"ChevronCircleDown":                "\xef\x84\xba",
		"ChevronCircleLeft":                "\xef\x84\xb7",
		"ChevronCircleRight":               "\xef\x84\xb8",
		"ChevronCircleUp":                  "\xef\x84\xb9",
		"ChevronDoubleDown":                "\xef\x8c\xa2",
		"ChevronDoubleLeft":                "\xef\x8c\xa3",
		"ChevronDoubleRight":               "\xef\x8c\xa4",
		"ChevronDoubleUp":                  "\xef\x8c\xa5",
		"ChevronDown":                      "\xef\x81\xb8",
		"ChevronLeft":                      "\xef\x81\x93",
		"ChevronRight":                     "\xef\x81\x94",
		"ChevronSquareDown":                "\xef\x8c\xa9",
		"ChevronSquareLeft":                "\xef\x8c\xaa",
		"ChevronSquareRight":               "\xef\x8c\xab",
		"ChevronSquareUp":                  "\xef\x8c\xac",
		"ChevronUp":                        "\xef\x81\xb7",
		"Child":                            "\xef\x86\xae",
		"Chimney":                          "\xef\x9e\x8b",
		"Church":                           "\xef\x94\x9d",
		"Circle":                           "\xef\x84\x91",
		"CircleNotch":                      "\xef\x87\x8e",
		"City":                             "\xef\x99\x8f",
		"Clarinet":                         "\xef\xa2\xad",
		"ClawMarks":                        "\xef\x9b\x82",
		"ClinicMedical":                    "\xef\x9f\xb2",
		"Clipboard":                        "\xef\x8c\xa8",
		"ClipboardCheck":                   "\xef\x91\xac",
		"ClipboardList":                    "\xef\x91\xad",
		"ClipboardListCheck":               "\xef\x9c\xb7",
		"ClipboardPrescription":            "\xef\x97\xa8",
		"ClipboardUser":                    "\xef\x9f\xb3",
		"Clock":                            "\xef\x80\x97",
		"Clone":                            "\xef\x89\x8d",
		"ClosedCaptioning":                 "\xef\x88\x8a",
		"Cloud":                            "\xef\x83\x82",
		"CloudDownload":                    "\xef\x83\xad",
		"CloudDownloadAlt":                 "\xef\x8e\x81",
		"CloudDrizzle":                     "\xef\x9c\xb8",
		"CloudHail":                        "\xef\x9c\xb9",
		"CloudHailMixed":                   "\xef\x9c\xba",
		"CloudMeatball":                    "\xef\x9c\xbb",
		"CloudMoon":                        "\xef\x9b\x83",
		"CloudMoonRain":                    "\xef\x9c\xbc",
		"CloudMusic":                       "\xef\xa2\xae",
		"CloudRain":                        "\xef\x9c\xbd",
		"CloudRainbow":                     "\xef\x9c\xbe",
		"CloudShowers":                     "\xef\x9c\xbf",
		"CloudShowersHeavy":                "\xef\x9d\x80",
		"CloudSleet":                       "\xef\x9d\x81",
		"CloudSnow":                        "\xef\x9d\x82",
		"CloudSun":                         "\xef\x9b\x84",
		"CloudSunRain":                     "\xef\x9d\x83",
		"CloudUpload":                      "\xef\x83\xae",
		"CloudUploadAlt":                   "\xef\x8e\x82",
		"Clouds":                           "\xef\x9d\x84",
		"CloudsMoon":                       "\xef\x9d\x85",
		"CloudsSun":                        "\xef\x9d\x86",
		"Club":                             "\xef\x8c\xa7",
		"Cocktail":                         "\xef\x95\xa1",
		"Code":                             "\xef\x84\xa1",
		"CodeBranch":                       "\xef\x84\xa6",
		"CodeCommit":                       "\xef\x8e\x86",
		"CodeMerge":                        "\xef\x8e\x87",
		"Coffee":                           "\xef\x83\xb4",
		"CoffeePot":                        "\xee\x80\x82",
		"CoffeeTogo":                       "\xef\x9b\x85",
		"Coffin":                           "\xef\x9b\x86",
		"CoffinCross":                      "\xee\x81\x91",
		"Cog":                              "\xef\x80\x93",
		"Cogs":                             "\xef\x82\x85",
		"Coin":                             "\xef\xa1\x9c",
		"Coins":                            "\xef\x94\x9e",
		"Columns":                          "\xef\x83\x9b",
		"Comet":                            "\xee\x80\x83",
		"Comment":                          "\xef\x81\xb5",
		"CommentAlt":                       "\xef\x89\xba",
		"CommentAltCheck":                  "\xef\x92\xa2",
		"CommentAltDollar":                 "\xef\x99\x90",
		"CommentAltDots":                   "\xef\x92\xa3",
		"CommentAltEdit":                   "\xef\x92\xa4",
		"CommentAltExclamation":            "\xef\x92\xa5",
		"CommentAltLines":                  "\xef\x92\xa6",
		"CommentAltMedical":                "\xef\x9f\xb4",
		"CommentAltMinus":                  "\xef\x92\xa7",
		"CommentAltMusic":                  "\xef\xa2\xaf",
		"CommentAltPlus":                   "\xef\x92\xa8",
		"CommentAltSlash":                  "\xef\x92\xa9",
		"CommentAltSmile":                  "\xef\x92\xaa",
		"CommentAltTimes":                  "\xef\x92\xab",
		"CommentCheck":                     "\xef\x92\xac",
		"CommentDollar":                    "\xef\x99\x91",
		"CommentDots":                      "\xef\x92\xad",
		"CommentEdit":                      "\xef\x92\xae",
		"CommentExclamation":               "\xef\x92\xaf",
		"CommentLines":                     "\xef\x92\xb0",
		"CommentMedical":                   "\xef\x9f\xb5",
		"CommentMinus":                     "\xef\x92\xb1",
		"CommentMusic":                     "\xef\xa2\xb0",
		"CommentPlus":                      "\xef\x92\xb2",
		"CommentSlash":                     "\xef\x92\xb3",
		"CommentSmile":                     "\xef\x92\xb4",
		"CommentTimes":                     "\xef\x92\xb5",
		"Comments":                         "\xef\x82\x86",
		"CommentsAlt":                      "\xef\x92\xb6",
		"CommentsAltDollar":                "\xef\x99\x92",
		"CommentsDollar":                   "\xef\x99\x93",
		"CompactDisc":                      "\xef\x94\x9f",
		"Compass":                          "\xef\x85\x8e",
		"CompassSlash":                     "\xef\x97\xa9",
		"Compress":                         "\xef\x81\xa6",
		"CompressAlt":                      "\xef\x90\xa2",
		"CompressArrowsAlt":                "\xef\x9e\x8c",
		"CompressWide":                     "\xef\x8c\xa6",
		"ComputerClassic":                  "\xef\xa2\xb1",
		"ComputerSpeaker":                  "\xef\xa2\xb2",
		"ConciergeBell":                    "\xef\x95\xa2",
		"Construction":                     "\xef\xa1\x9d",
		"ContainerStorage":                 "\xef\x92\xb7",
		"ConveyorBelt":                     "\xef\x91\xae",
		"ConveyorBeltAlt":                  "\xef\x91\xaf",
		"Cookie":                           "\xef\x95\xa3",
		"CookieBite":                       "\xef\x95\xa4",
		"Copy":                             "\xef\x83\x85",
		"Copyright":                        "\xef\x87\xb9",
		"Corn":                             "\xef\x9b\x87",
		"Couch":                            "\xef\x92\xb8",
		"Cow":                              "\xef\x9b\x88",
		"Cowbell":                          "\xef\xa2\xb3",
		"CowbellMore":                      "\xef\xa2\xb4",
		"CreditCard":                       "\xef\x82\x9d",
		"CreditCardBlank":                  "\xef\x8e\x89",
		"CreditCardFront":                  "\xef\x8e\x8a",
		"Cricket":                          "\xef\x91\x89",
		"Croissant":                        "\xef\x9f\xb6",
		"Crop":                             "\xef\x84\xa5",
		"CropAlt":                          "\xef\x95\xa5",
		"Cross":                            "\xef\x99\x94",
		"Crosshairs":                       "\xef\x81\x9b",
		"Crow":                             "\xef\x94\xa0",
		"Crown":                            "\xef\x94\xa1",
		"Crutch":                           "\xef\x9f\xb7",
		"Crutches":                         "\xef\x9f\xb8",
		"Cube":                             "\xef\x86\xb2",
		"Cubes":                            "\xef\x86\xb3",
		"Curling":                          "\xef\x91\x8a",
		"Cut":                              "\xef\x83\x84",
		"Dagger":                           "\xef\x9b\x8b",
		"Database":                         "\xef\x87\x80",
		"Deaf":                             "\xef\x8a\xa4",
		"Debug":                            "\xef\x9f\xb9",
		"Deer":                             "\xef\x9e\x8e",
		"DeerRudolph":                      "\xef\x9e\x8f",
		"Democrat":                         "\xef\x9d\x87",
		"Desktop":                          "\xef\x84\x88",
		"DesktopAlt":                       "\xef\x8e\x90",
		"Dewpoint":                         "\xef\x9d\x88",
		"Dharmachakra":                     "\xef\x99\x95",
		"Diagnoses":                        "\xef\x91\xb0",
		"Diamond":                          "\xef\x88\x99",
		"Dice":                             "\xef\x94\xa2",
		"DiceD10":                          "\xef\x9b\x8d",
		"DiceD12":                          "\xef\x9b\x8e",
		"DiceD20":                          "\xef\x9b\x8f",
		"DiceD4":                           "\xef\x9b\x90",
		"DiceD6":                           "\xef\x9b\x91",
		"DiceD8":                           "\xef\x9b\x92",
		"DiceFive":                         "\xef\x94\xa3",
		"DiceFour":                         "\xef\x94\xa4",
		"DiceOne":                          "\xef\x94\xa5",
		"DiceSix":                          "\xef\x94\xa6",
		"DiceThree":                        "\xef\x94\xa7",
		"DiceTwo":                          "\xef\x94\xa8",
		"Digging":                          "\xef\xa1\x9e",
		"DigitalTachograph":                "\xef\x95\xa6",
		"Diploma":                          "\xef\x97\xaa",
		"Directions":                       "\xef\x97\xab",
		"DiscDrive":                        "\xef\xa2\xb5",
		"Disease":                          "\xef\x9f\xba",
		"Divide":                           "\xef\x94\xa9",
		"Dizzy":                            "\xef\x95\xa7",
		"Dna":                              "\xef\x91\xb1",
		"DoNotEnter":                       "\xef\x97\xac",
		"Dog":                              "\xef\x9b\x93",
		"DogLeashed":                       "\xef\x9b\x94",
		"DollarSign":                       "\xef\x85\x95",
		"Dolly":                            "\xef\x91\xb2",
		"DollyEmpty":                       "\xef\x91\xb3",
		"DollyFlatbed":                     "\xef\x91\xb4",
		"DollyFlatbedAlt":                  "\xef\x91\xb5",
		"DollyFlatbedEmpty":                "\xef\x91\xb6",
		"Donate":                           "\xef\x92\xb9",
		"DoorClosed":                       "\xef\x94\xaa",
		"DoorOpen":                         "\xef\x94\xab",
		"DotCircle":                        "\xef\x86\x92",
		"Dove":                             "\xef\x92\xba",
		"Download":                         "\xef\x80\x99",
		"DraftingCompass":                  "\xef\x95\xa8",
		"Dragon":                           "\xef\x9b\x95",
		"DrawCircle":                       "\xef\x97\xad",
		"DrawPolygon":                      "\xef\x97\xae",
		"DrawSquare":                       "\xef\x97\xaf",
		"Dreidel":                          "\xef\x9e\x92",
		"Drone":                            "\xef\xa1\x9f",
		"DroneAlt":                         "\xef\xa1\xa0",
		"Drum":                             "\xef\x95\xa9",
		"DrumSteelpan":                     "\xef\x95\xaa",
		"Drumstick":                        "\xef\x9b\x96",
		"DrumstickBite":                    "\xef\x9b\x97",
		"Dryer":                            "\xef\xa1\xa1",
		"DryerAlt":                         "\xef\xa1\xa2",
		"Duck":                             "\xef\x9b\x98",
		"Dumbbell":                         "\xef\x91\x8b",
		"Dumpster":                         "\xef\x9e\x93",
		"DumpsterFire":                     "\xef\x9e\x94",
		"Dungeon":                          "\xef\x9b\x99",
		"Ear":                              "\xef\x97\xb0",
		"EarMuffs":                         "\xef\x9e\x95",
		"Eclipse":                          "\xef\x9d\x89",
		"EclipseAlt":                       "\xef\x9d\x8a",
		"Edit":                             "\xef\x81\x84",
		"Egg":                              "\xef\x9f\xbb",
		"EggFried":                         "\xef\x9f\xbc",
		"Eject":                            "\xef\x81\x92",
		"Elephant":                         "\xef\x9b\x9a",
		"EllipsisH":                        "\xef\x85\x81",
		"EllipsisHAlt":                     "\xef\x8e\x9b",
		"EllipsisV":                        "\xef\x85\x82",
		"EllipsisVAlt":                     "\xef\x8e\x9c",
		"EmptySet":                         "\xef\x99\x96",
		"EngineWarning":                    "\xef\x97\xb2",
		"Envelope":                         "\xef\x83\xa0",
		"EnvelopeOpen":                     "\xef\x8a\xb6",
		"EnvelopeOpenDollar":               "\xef\x99\x97",
		"EnvelopeOpenText":                 "\xef\x99\x98",
		"EnvelopeSquare":                   "\xef\x86\x99",
		"Equals":                           "\xef\x94\xac",
		"Eraser":                           "\xef\x84\xad",
		"Ethernet":                         "\xef\x9e\x96",
		"EuroSign":                         "\xef\x85\x93",
		"Exchange":                         "\xef\x83\xac",
		"ExchangeAlt":                      "\xef\x8d\xa2",
		"Exclamation":                      "\xef\x84\xaa",
		"ExclamationCircle":                "\xef\x81\xaa",
		"ExclamationSquare":                "\xef\x8c\xa1",
		"ExclamationTriangle":              "\xef\x81\xb1",
		"Expand":                           "\xef\x81\xa5",
		"ExpandAlt":                        "\xef\x90\xa4",
		"ExpandArrows":                     "\xef\x8c\x9d",
		"ExpandArrowsAlt":                  "\xef\x8c\x9e",
		"ExpandWide":                       "\xef\x8c\xa0",
		"ExternalLink":                     "\xef\x82\x8e",
		"ExternalLinkAlt":                  "\xef\x8d\x9d",
		"ExternalLinkSquare":               "\xef\x85\x8c",
		"ExternalLinkSquareAlt":            "\xef\x8d\xa0",
		"Eye":                              "\xef\x81\xae",
		"EyeDropper":                       "\xef\x87\xbb",
		"EyeEvil":                          "\xef\x9b\x9b",
		"EyeSlash":                         "\xef\x81\xb0",
		"Fan":                              "\xef\xa1\xa3",
		"FanTable":                         "\xee\x80\x84",
		"Farm":                             "\xef\xa1\xa4",
		"FastBackward":                     "\xef\x81\x89",
		"FastForward":                      "\xef\x81\x90",
		"Faucet":                           "\xee\x80\x85",
		"FaucetDrip":                       "\xee\x80\x86",
		"Fax":                              "\xef\x86\xac",
		"Feather":                          "\xef\x94\xad",
		"FeatherAlt":                       "\xef\x95\xab",
		"Female":                           "\xef\x86\x82",
		"FieldHockey":                      "\xef\x91\x8c",
		"FighterJet":                       "\xef\x83\xbb",
		"File":                             "\xef\x85\x9b",
		"FileAlt":                          "\xef\x85\x9c",
		"FileArchive":                      "\xef\x87\x86",
		"FileAudio":                        "\xef\x87\x87",
		"FileCertificate":                  "\xef\x97\xb3",
		"FileChartLine":                    "\xef\x99\x99",
		"FileChartPie":                     "\xef\x99\x9a",
		"FileCheck":                        "\xef\x8c\x96",
		"FileCode":                         "\xef\x87\x89",
		"FileContract":                     "\xef\x95\xac",
		"FileCsv":                          "\xef\x9b\x9d",
		"FileDownload":                     "\xef\x95\xad",
		"FileEdit":                         "\xef\x8c\x9c",
		"FileExcel":                        "\xef\x87\x83",
		"FileExclamation":                  "\xef\x8c\x9a",
		"FileExport":                       "\xef\x95\xae",
		"FileImage":                        "\xef\x87\x85",
		"FileImport":                       "\xef\x95\xaf",
		"FileInvoice":                      "\xef\x95\xb0",
		"FileInvoiceDollar":                "\xef\x95\xb1",
		"FileMedical":                      "\xef\x91\xb7",
		"FileMedicalAlt":                   "\xef\x91\xb8",
		"FileMinus":                        "\xef\x8c\x98",
		"FileMusic":                        "\xef\xa2\xb6",
		"FilePdf":                          "\xef\x87\x81",
		"FilePlus":                         "\xef\x8c\x99",
		"FilePowerpoint":                   "\xef\x87\x84",
		"FilePrescription":                 "\xef\x95\xb2",
		"FileSearch":                       "\xef\xa1\xa5",
		"FileSignature":                    "\xef\x95\xb3",
		"FileSpreadsheet":                  "\xef\x99\x9b",
		"FileTimes":                        "\xef\x8c\x97",
		"FileUpload":                       "\xef\x95\xb4",
		"FileUser":                         "\xef\x99\x9c",
		"FileVideo":                        "\xef\x87\x88",
		"FileWord":                         "\xef\x87\x82",
		"FilesMedical":                     "\xef\x9f\xbd",
		"Fill":                             "\xef\x95\xb5",
		"FillDrip":                         "\xef\x95\xb6",
		"Film":                             "\xef\x80\x88",
		"FilmAlt":                          "\xef\x8e\xa0",
		"FilmCanister":                     "\xef\xa2\xb7",
		"Filter":                           "\xef\x82\xb0",
		"Fingerprint":                      "\xef\x95\xb7",
		"Fire":                             "\xef\x81\xad",
		"FireAlt":                          "\xef\x9f\xa4",
		"FireExtinguisher":                 "\xef\x84\xb4",
		"FireSmoke":                        "\xef\x9d\x8b",
		"Fireplace":                        "\xef\x9e\x9a",
		"FirstAid":                         "\xef\x91\xb9",
		"Fish":                             "\xef\x95\xb8",
		"FishCooked":                       "\xef\x9f\xbe",
		"FistRaised":                       "\xef\x9b\x9e",
		"Flag":                             "\xef\x80\xa4",
		"FlagAlt":                          "\xef\x9d\x8c",
		"FlagCheckered":                    "\xef\x84\x9e",
		"FlagUsa":                          "\xef\x9d\x8d",
		"Flame":                            "\xef\x9b\x9f",
		"Flashlight":                       "\xef\xa2\xb8",
		"Flask":                            "\xef\x83\x83",
		"FlaskPoison":                      "\xef\x9b\xa0",
		"FlaskPotion":                      "\xef\x9b\xa1",
		"Flower":                           "\xef\x9f\xbf",
		"FlowerDaffodil":                   "\xef\xa0\x80",
		"FlowerTulip":                      "\xef\xa0\x81",
		"Flushed":                          "\xef\x95\xb9",
		"Flute":                            "\xef\xa2\xb9",
		"FluxCapacitor":                    "\xef\xa2\xba",
		"Fog":                              "\xef\x9d\x8e",
		"Folder":                           "\xef\x81\xbb",
		"FolderDownload":                   "\xee\x81\x93",
		"FolderMinus":                      "\xef\x99\x9d",
		"FolderOpen":                       "\xef\x81\xbc",
		"FolderPlus":                       "\xef\x99\x9e",
		"FolderTimes":                      "\xef\x99\x9f",
		"FolderTree":                       "\xef\xa0\x82",
		"FolderUpload":                     "\xee\x81\x94",
		"Folders":                          "\xef\x99\xa0",
		"Font":                             "\xef\x80\xb1",
		"FontAwesomeLogoFull":              "\xef\x93\xa6",
		"FontCase":                         "\xef\xa1\xa6",
		"FootballBall":                     "\xef\x91\x8e",
		"FootballHelmet":                   "\xef\x91\x8f",
		"Forklift":                         "\xef\x91\xba",
		"Forward":                          "\xef\x81\x8e",
		"Fragile":                          "\xef\x92\xbb",
		"FrenchFries":                      "\xef\xa0\x83",
		"Frog":                             "\xef\x94\xae",
		"FrostyHead":                       "\xef\x9e\x9b",
		"Frown":                            "\xef\x84\x99",
		"FrownOpen":                        "\xef\x95\xba",
		"Function":                         "\xef\x99\xa1",
		"FunnelDollar":                     "\xef\x99\xa2",
		"Futbol":                           "\xef\x87\xa3",
		"Galaxy":                           "\xee\x80\x88",
		"GameBoard":                        "\xef\xa1\xa7",
		"GameBoardAlt":                     "\xef\xa1\xa8",
		"GameConsoleHandheld":              "\xef\xa2\xbb",
		"Gamepad":                          "\xef\x84\x9b",
		"GamepadAlt":                       "\xef\xa2\xbc",
		"Garage":                           "\xee\x80\x89",
		"GarageCar":                        "\xee\x80\x8a",
		"GarageOpen":                       "\xee\x80\x8b",
		"GasPump":                          "\xef\x94\xaf",
		"GasPumpSlash":                     "\xef\x97\xb4",
		"Gavel":                            "\xef\x83\xa3",
		"Gem":                              "\xef\x8e\xa5",
		"Genderless":                       "\xef\x88\xad",
		"Ghost":                            "\xef\x9b\xa2",
		"Gift":                             "\xef\x81\xab",
		"GiftCard":                         "\xef\x99\xa3",
		"Gifts":                            "\xef\x9e\x9c",
		"GingerbreadMan":                   "\xef\x9e\x9d",
		"Glass":                            "\xef\xa0\x84",
		"GlassChampagne":                   "\xef\x9e\x9e",
		"GlassCheers":                      "\xef\x9e\x9f",
		"GlassCitrus":                      "\xef\xa1\xa9",
		"GlassMartini":                     "\xef\x80\x80",
		"GlassMartiniAlt":                  "\xef\x95\xbb",
		"GlassWhiskey":                     "\xef\x9e\xa0",
		"GlassWhiskeyRocks":                "\xef\x9e\xa1",
		"Glasses":                          "\xef\x94\xb0",
		"GlassesAlt":                       "\xef\x97\xb5",
		"Globe":                            "\xef\x82\xac",
		"GlobeAfrica":                      "\xef\x95\xbc",
		"GlobeAmericas":                    "\xef\x95\xbd",
		"GlobeAsia":                        "\xef\x95\xbe",
		"GlobeEurope":                      "\xef\x9e\xa2",
		"GlobeSnow":                        "\xef\x9e\xa3",
		"GlobeStand":                       "\xef\x97\xb6",
		"GolfBall":                         "\xef\x91\x90",
		"GolfClub":                         "\xef\x91\x91",
		"Gopuram":                          "\xef\x99\xa4",
		"GraduationCap":                    "\xef\x86\x9d",
		"Gramophone":                       "\xef\xa2\xbd",
		"GreaterThan":                      "\xef\x94\xb1",
		"GreaterThanEqual":                 "\xef\x94\xb2",
		"Grimace":                          "\xef\x95\xbf",
		"Grin":                             "\xef\x96\x80",
		"GrinAlt":                          "\xef\x96\x81",
		"GrinBeam":                         "\xef\x96\x82",
		"GrinBeamSweat":                    "\xef\x96\x83",
		"GrinHearts":                       "\xef\x96\x84",
		"GrinSquint":                       "\xef\x96\x85",
		"GrinSquintTears":                  "\xef\x96\x86",
		"GrinStars":                        "\xef\x96\x87",
		"GrinTears":                        "\xef\x96\x88",
		"GrinTongue":                       "\xef\x96\x89",
		"GrinTongueSquint":                 "\xef\x96\x8a",
		"GrinTongueWink":                   "\xef\x96\x8b",
		"GrinWink":                         "\xef\x96\x8c",
		"GripHorizontal":                   "\xef\x96\x8d",
		"GripLines":                        "\xef\x9e\xa4",
		"GripLinesVertical":                "\xef\x9e\xa5",
		"GripVertical":                     "\xef\x96\x8e",
		"Guitar":                           "\xef\x9e\xa6",
		"GuitarElectric":                   "\xef\xa2\xbe",
		"Guitars":                          "\xef\xa2\xbf",
		"HSquare":                          "\xef\x83\xbd",
		"H1":                               "\xef\x8c\x93",
		"H2":                               "\xef\x8c\x94",
		"H3":                               "\xef\x8c\x95",
		"H4":                               "\xef\xa1\xaa",
		"Hamburger":                        "\xef\xa0\x85",
		"Hammer":                           "\xef\x9b\xa3",
		"HammerWar":                        "\xef\x9b\xa4",
		"Hamsa":                            "\xef\x99\xa5",
		"HandHeart":                        "\xef\x92\xbc",
		"HandHolding":                      "\xef\x92\xbd",
		"HandHoldingBox":                   "\xef\x91\xbb",
		"HandHoldingHeart":                 "\xef\x92\xbe",
		"HandHoldingMagic":                 "\xef\x9b\xa5",
		"HandHoldingMedical":               "\xee\x81\x9c",
		"HandHoldingSeedling":              "\xef\x92\xbf",
		"HandHoldingUsd":                   "\xef\x93\x80",
		"HandHoldingWater":                 "\xef\x93\x81",
		"HandLizard":                       "\xef\x89\x98",
		"HandMiddleFinger":                 "\xef\xa0\x86",
		"HandPaper":                        "\xef\x89\x96",
		"HandPeace":                        "\xef\x89\x9b",
		"HandPointDown":                    "\xef\x82\xa7",
		"HandPointLeft":                    "\xef\x82\xa5",
		"HandPointRight":                   "\xef\x82\xa4",
		"HandPointUp":                      "\xef\x82\xa6",
		"HandPointer":                      "\xef\x89\x9a",
		"HandReceiving":                    "\xef\x91\xbc",
		"HandRock":                         "\xef\x89\x95",
		"HandScissors":                     "\xef\x89\x97",
		"HandSparkles":                     "\xee\x81\x9d",
		"HandSpock":                        "\xef\x89\x99",
		"Hands":                            "\xef\x93\x82",
		"HandsHeart":                       "\xef\x93\x83",
		"HandsHelping":                     "\xef\x93\x84",
		"HandsUsd":                         "\xef\x93\x85",
		"HandsWash":                        "\xee\x81\x9e",
		"Handshake":                        "\xef\x8a\xb5",
		"HandshakeAlt":                     "\xef\x93\x86",
		"HandshakeAltSlash":                "\xee\x81\x9f",
		"HandshakeSlash":                   "\xee\x81\xa0",
		"Hanukiah":                         "\xef\x9b\xa6",
		"HardHat":                          "\xef\xa0\x87",
		"Hashtag":                          "\xef\x8a\x92",
		"HatChef":                          "\xef\xa1\xab",
		"HatCowboy":                        "\xef\xa3\x80",
		"HatCowboySide":                    "\xef\xa3\x81",
		"HatSanta":                         "\xef\x9e\xa7",
		"HatWinter":                        "\xef\x9e\xa8",
		"HatWitch":                         "\xef\x9b\xa7",
		"HatWizard":                        "\xef\x9b\xa8",
		"Hdd":                              "\xef\x82\xa0",
		"HeadSide":                         "\xef\x9b\xa9",
		"HeadSideBrain":                    "\xef\xa0\x88",
		"HeadSideCough":                    "\xee\x81\xa1",
		"HeadSideCoughSlash":               "\xee\x81\xa2",
		"HeadSideHeadphones":               "\xef\xa3\x82",
		"HeadSideMask":                     "\xee\x81\xa3",
		"HeadSideMedical":                  "\xef\xa0\x89",
		"HeadSideVirus":                    "\xee\x81\xa4",
		"HeadVr":                           "\xef\x9b\xaa",
		"Heading":                          "\xef\x87\x9c",
		"Headphones":                       "\xef\x80\xa5",
		"HeadphonesAlt":                    "\xef\x96\x8f",
		"Headset":                          "\xef\x96\x90",
		"Heart":                            "\xef\x80\x84",
		"HeartBroken":                      "\xef\x9e\xa9",
		"HeartCircle":                      "\xef\x93\x87",
		"HeartRate":                        "\xef\x97\xb8",
		"HeartSquare":                      "\xef\x93\x88",
		"Heartbeat":                        "\xef\x88\x9e",
		"Heat":                             "\xee\x80\x8c",
		"Helicopter":                       "\xef\x94\xb3",
		"HelmetBattle":                     "\xef\x9b\xab",
		"Hexagon":                          "\xef\x8c\x92",
		"Highlighter":                      "\xef\x96\x91",
		"Hiking":                           "\xef\x9b\xac",
		"Hippo":                            "\xef\x9b\xad",
		"History":                          "\xef\x87\x9a",
		"HockeyMask":                       "\xef\x9b\xae",
		"HockeyPuck":                       "\xef\x91\x93",
		"HockeySticks":                     "\xef\x91\x94",
		"HollyBerry":                       "\xef\x9e\xaa",
		"Home":                             "\xef\x80\x95",
		"HomeAlt":                          "\xef\xa0\x8a",
		"HomeHeart":                        "\xef\x93\x89",
		"HomeLg":                           "\xef\xa0\x8b",
		"HomeLgAlt":                        "\xef\xa0\x8c",
		"HoodCloak":                        "\xef\x9b\xaf",
		"HorizontalRule":                   "\xef\xa1\xac",
		"Horse":                            "\xef\x9b\xb0",
		"HorseHead":                        "\xef\x9e\xab",
		"HorseSaddle":                      "\xef\xa3\x83",
		"Hospital":                         "\xef\x83\xb8",
		"HospitalAlt":                      "\xef\x91\xbd",
		"HospitalSymbol":                   "\xef\x91\xbe",
		"HospitalUser":                     "\xef\xa0\x8d",
		"Hospitals":                        "\xef\xa0\x8e",
		"HotTub":                           "\xef\x96\x93",
		"Hotdog":                           "\xef\xa0\x8f",
		"Hotel":                            "\xef\x96\x94",
		"Hourglass":                        "\xef\x89\x94",
		"HourglassEnd":                     "\xef\x89\x93",
		"HourglassHalf":                    "\xef\x89\x92",
		"HourglassStart":                   "\xef\x89\x91",
		"House":                            "\xee\x80\x8d",
		"HouseDamage":                      "\xef\x9b\xb1",
		"HouseDay":                         "\xee\x80\x8e",
		"HouseFlood":                       "\xef\x9d\x8f",
		"HouseLeave":                       "\xee\x80\x8f",
		"HouseNight":                       "\xee\x80\x90",
		"HouseReturn":                      "\xee\x80\x91",
		"HouseSignal":                      "\xee\x80\x92",
		"HouseUser":                        "\xee\x81\xa5",
		"Hryvnia":                          "\xef\x9b\xb2",
		"Humidity":                         "\xef\x9d\x90",
		"Hurricane":                        "\xef\x9d\x91",
		"ICursor":                          "\xef\x89\x86",
		"IceCream":                         "\xef\xa0\x90",
		"IceSkate":                         "\xef\x9e\xac",
		"Icicles":                          "\xef\x9e\xad",
		"Icons":                            "\xef\xa1\xad",
		"IconsAlt":                         "\xef\xa1\xae",
		"IdBadge":                          "\xef\x8b\x81",
		"IdCard":                           "\xef\x8b\x82",
		"IdCardAlt":                        "\xef\x91\xbf",
		"Igloo":                            "\xef\x9e\xae",
		"Image":                            "\xef\x80\xbe",
		"ImagePolaroid":                    "\xef\xa3\x84",
		"Images":                           "\xef\x8c\x82",
		"Inbox":                            "\xef\x80\x9c",
		"InboxIn":                          "\xef\x8c\x90",
		"InboxOut":                         "\xef\x8c\x91",
		"Indent":                           "\xef\x80\xbc",
		"Industry":                         "\xef\x89\xb5",
		"IndustryAlt":                      "\xef\x8e\xb3",
		"Infinity":                         "\xef\x94\xb4",
		"Info":                             "\xef\x84\xa9",
		"InfoCircle":                       "\xef\x81\x9a",
		"InfoSquare":                       "\xef\x8c\x8f",
		"Inhaler":                          "\xef\x97\xb9",
		"Integral":                         "\xef\x99\xa7",
		"Intersection":                     "\xef\x99\xa8",
		"Inventory":                        "\xef\x92\x80",
		"IslandTropical":                   "\xef\xa0\x91",
		"Italic":                           "\xef\x80\xb3",
		"JackOLantern":                     "\xef\x8c\x8e",
		"Jedi":                             "\xef\x99\xa9",
		"Joint":                            "\xef\x96\x95",
		"JournalWhills":                    "\xef\x99\xaa",
		"Joystick":                         "\xef\xa3\x85",
		"Jug":                              "\xef\xa3\x86",
		"Kaaba":                            "\xef\x99\xab",
		"Kazoo":                            "\xef\xa3\x87",
		"Kerning":                          "\xef\xa1\xaf",
		"Key":                              "\xef\x82\x84",
		"KeySkeleton":                      "\xef\x9b\xb3",
		"Keyboard":                         "\xef\x84\x9c",
		"Keynote":                          "\xef\x99\xac",
		"Khanda":                           "\xef\x99\xad",
		"Kidneys":                          "\xef\x97\xbb",
		"Kiss":                             "\xef\x96\x96",
		"KissBeam":                         "\xef\x96\x97",
		"KissWinkHeart":                    "\xef\x96\x98",
		"Kite":                             "\xef\x9b\xb4",
		"KiwiBird":                         "\xef\x94\xb5",
		"KnifeKitchen":                     "\xef\x9b\xb5",
		"Lambda":                           "\xef\x99\xae",
		"Lamp":                             "\xef\x93\x8a",
		"LampDesk":                         "\xee\x80\x94",
		"LampFloor":                        "\xee\x80\x95",
		"Landmark":                         "\xef\x99\xaf",
		"LandmarkAlt":                      "\xef\x9d\x92",
		"Language":                         "\xef\x86\xab",
		"Laptop":                           "\xef\x84\x89",
		"LaptopCode":                       "\xef\x97\xbc",
		"LaptopHouse":                      "\xee\x81\xa6",
		"LaptopMedical":                    "\xef\xa0\x92",
		"Lasso":                            "\xef\xa3\x88",
		"Laugh":                            "\xef\x96\x99",
		"LaughBeam":                        "\xef\x96\x9a",
		"LaughSquint":                      "\xef\x96\x9b",
		"LaughWink":                        "\xef\x96\x9c",
		"LayerGroup":                       "\xef\x97\xbd",
		"LayerMinus":                       "\xef\x97\xbe",
		"LayerPlus":                        "\xef\x97\xbf",
		"Leaf":                             "\xef\x81\xac",
		"LeafHeart":                        "\xef\x93\x8b",
		"LeafMaple":                        "\xef\x9b\xb6",
		"LeafOak":                          "\xef\x9b\xb7",
		"Lemon":                            "\xef\x82\x94",
		"LessThan":                         "\xef\x94\xb6",
		"LessThanEqual":                    "\xef\x94\xb7",
		"LevelDown":                        "\xef\x85\x89",
		"LevelDownAlt":                     "\xef\x8e\xbe",
		"LevelUp":                          "\xef\x85\x88",
		"LevelUpAlt":                       "\xef\x8e\xbf",
		"LifeRing":                         "\xef\x87\x8d",
		"LightCeiling":                     "\xee\x80\x96",
		"LightSwitch":                      "\xee\x80\x97",
		"LightSwitchOff":                   "\xee\x80\x98",
		"LightSwitchOn":                    "\xee\x80\x99",
		"Lightbulb":                        "\xef\x83\xab",
		"LightbulbDollar":                  "\xef\x99\xb0",
		"LightbulbExclamation":             "\xef\x99\xb1",
		"LightbulbOn":                      "\xef\x99\xb2",
		"LightbulbSlash":                   "\xef\x99\xb3",
		"LightsHoliday":                    "\xef\x9e\xb2",
		"LineColumns":                      "\xef\xa1\xb0",
		"LineHeight":                       "\xef\xa1\xb1",
		"Link":                             "\xef\x83\x81",
		"Lips":                             "\xef\x98\x80",
		"LiraSign":                         "\xef\x86\x95",
		"List":                             "\xef\x80\xba",
		"ListAlt":                          "\xef\x80\xa2",
		"ListMusic":                        "\xef\xa3\x89",
		"ListOl":                           "\xef\x83\x8b",
		"ListUl":                           "\xef\x83\x8a",
		"Location":                         "\xef\x98\x81",
		"LocationArrow":                    "\xef\x84\xa4",
		"LocationCircle":                   "\xef\x98\x82",
		"LocationSlash":                    "\xef\x98\x83",
		"Lock":                             "\xef\x80\xa3",
		"LockAlt":                          "\xef\x8c\x8d",
		"LockOpen":                         "\xef\x8f\x81",
		"LockOpenAlt":                      "\xef\x8f\x82",
		"LongArrowAltDown":                 "\xef\x8c\x89",
		"LongArrowAltLeft":                 "\xef\x8c\x8a",
		"LongArrowAltRight":                "\xef\x8c\x8b",
		"LongArrowAltUp":                   "\xef\x8c\x8c",
		"LongArrowDown":                    "\xef\x85\xb5",
		"LongArrowLeft":                    "\xef\x85\xb7",
		"LongArrowRight":                   "\xef\x85\xb8",
		"LongArrowUp":                      "\xef\x85\xb6",
		"Loveseat":                         "\xef\x93\x8c",
		"LowVision":                        "\xef\x8a\xa8",
		"Luchador":                         "\xef\x91\x95",
		"LuggageCart":                      "\xef\x96\x9d",
		"Lungs":                            "\xef\x98\x84",
		"LungsVirus":                       "\xee\x81\xa7",
		"Mace":                             "\xef\x9b\xb8",
		"Magic":                            "\xef\x83\x90",
		"Magnet":                           "\xef\x81\xb6",
		"MailBulk":                         "\xef\x99\xb4",
		"Mailbox":                          "\xef\xa0\x93",
		"Male":                             "\xef\x86\x83",
		"Mandolin":                         "\xef\x9b\xb9",
		"Map":                              "\xef\x89\xb9",
		"MapMarked":                        "\xef\x96\x9f",
		"MapMarkedAlt":                     "\xef\x96\xa0",
		"MapMarker":                        "\xef\x81\x81",
		"MapMarkerAlt":                     "\xef\x8f\x85",
		"MapMarkerAltSlash":                "\xef\x98\x85",
		"MapMarkerCheck":                   "\xef\x98\x86",
		"MapMarkerEdit":                    "\xef\x98\x87",
		"MapMarkerExclamation":             "\xef\x98\x88",
		"MapMarkerMinus":                   "\xef\x98\x89",
		"MapMarkerPlus":                    "\xef\x98\x8a",
		"MapMarkerQuestion":                "\xef\x98\x8b",
		"MapMarkerSlash":                   "\xef\x98\x8c",
		"MapMarkerSmile":                   "\xef\x98\x8d",
		"MapMarkerTimes":                   "\xef\x98\x8e",
		"MapPin":                           "\xef\x89\xb6",
		"MapSigns":                         "\xef\x89\xb7",
		"Marker":                           "\xef\x96\xa1",
		"Mars":                             "\xef\x88\xa2",
		"MarsDouble":                       "\xef\x88\xa7",
		"MarsStroke":                       "\xef\x88\xa9",
		"MarsStrokeH":                      "\xef\x88\xab",
		"MarsStrokeV":                      "\xef\x88\xaa",
		"Mask":                             "\xef\x9b\xba",
		"Meat":                             "\xef\xa0\x94",
		"Medal":                            "\xef\x96\xa2",
		"Medkit":                           "\xef\x83\xba",
		"Megaphone":                        "\xef\x99\xb5",
		"Meh":                              "\xef\x84\x9a",
		"MehBlank":                         "\xef\x96\xa4",
		"MehRollingEyes":                   "\xef\x96\xa5",
		"Memory":                           "\xef\x94\xb8",
		"Menorah":                          "\xef\x99\xb6",
		"Mercury":                          "\xef\x88\xa3",
		"Meteor":                           "\xef\x9d\x93",
		"Microchip":                        "\xef\x8b\x9b",
		"Microphone":                       "\xef\x84\xb0",
		"MicrophoneAlt":                    "\xef\x8f\x89",
		"MicrophoneAltSlash":               "\xef\x94\xb9",
		"MicrophoneSlash":                  "\xef\x84\xb1",
		"MicrophoneStand":                  "\xef\xa3\x8b",
		"Microscope":                       "\xef\x98\x90",
		"Microwave":                        "\xee\x80\x9b",
		"MindShare":                        "\xef\x99\xb7",
		"Minus":                            "\xef\x81\xa8",
		"MinusCircle":                      "\xef\x81\x96",
		"MinusHexagon":                     "\xef\x8c\x87",
		"MinusOctagon":                     "\xef\x8c\x88",
		"MinusSquare":                      "\xef\x85\x86",
		"Mistletoe":                        "\xef\x9e\xb4",
		"Mitten":                           "\xef\x9e\xb5",
		"Mobile":                           "\xef\x84\x8b",
		"MobileAlt":                        "\xef\x8f\x8d",
		"MobileAndroid":                    "\xef\x8f\x8e",
		"MobileAndroidAlt":                 "\xef\x8f\x8f",
		"MoneyBill":                        "\xef\x83\x96",
		"MoneyBillAlt":                     "\xef\x8f\x91",
		"MoneyBillWave":                    "\xef\x94\xba",
		"MoneyBillWaveAlt":                 "\xef\x94\xbb",
		"MoneyCheck":                       "\xef\x94\xbc",
		"MoneyCheckAlt":                    "\xef\x94\xbd",
		"MoneyCheckEdit":                   "\xef\xa1\xb2",
		"MoneyCheckEditAlt":                "\xef\xa1\xb3",
		"MonitorHeartRate":                 "\xef\x98\x91",
		"Monkey":                           "\xef\x9b\xbb",
		"Monument":                         "\xef\x96\xa6",
		"Moon":                             "\xef\x86\x86",
		"MoonCloud":                        "\xef\x9d\x94",
		"MoonStars":                        "\xef\x9d\x95",
		"MortarPestle":                     "\xef\x96\xa7",
		"Mosque":                           "\xef\x99\xb8",
		"Motorcycle":                       "\xef\x88\x9c",
		"Mountain":                         "\xef\x9b\xbc",
		"Mountains":                        "\xef\x9b\xbd",
		"Mouse":                            "\xef\xa3\x8c",
		"MouseAlt":                         "\xef\xa3\x8d",
		"MousePointer":                     "\xef\x89\x85",
		"Mp3Player":                        "\xef\xa3\x8e",
		"Mug":                              "\xef\xa1\xb4",
		"MugHot":                           "\xef\x9e\xb6",
		"MugMarshmallows":                  "\xef\x9e\xb7",
		"MugTea":                           "\xef\xa1\xb5",
		"Music":                            "\xef\x80\x81",
		"MusicAlt":                         "\xef\xa3\x8f",
		"MusicAltSlash":                    "\xef\xa3\x90",
		"MusicSlash":                       "\xef\xa3\x91",
		"Narwhal":                          "\xef\x9b\xbe",
		"NetworkWired":                     "\xef\x9b\xbf",
		"Neuter":                           "\xef\x88\xac",
		"Newspaper":                        "\xef\x87\xaa",
		"NotEqual":                         "\xef\x94\xbe",
		"NotesMedical":                     "\xef\x92\x81",
		"ObjectGroup":                      "\xef\x89\x87",
		"ObjectUngroup":                    "\xef\x89\x88",
		"Octagon":                          "\xef\x8c\x86",
		"OilCan":                           "\xef\x98\x93",
		"OilTemp":                          "\xef\x98\x94",
		"Om":                               "\xef\x99\xb9",
		"Omega":                            "\xef\x99\xba",
		"Ornament":                         "\xef\x9e\xb8",
		"Otter":                            "\xef\x9c\x80",
		"Outdent":                          "\xef\x80\xbb",
		"Outlet":                           "\xee\x80\x9c",
		"Oven":                             "\xee\x80\x9d",
		"Overline":                         "\xef\xa1\xb6",
		"PageBreak":                        "\xef\xa1\xb7",
		"Pager":                            "\xef\xa0\x95",
		"PaintBrush":                       "\xef\x87\xbc",
		"PaintBrushAlt":                    "\xef\x96\xa9",
		"PaintRoller":                      "\xef\x96\xaa",
		"Palette":                          "\xef\x94\xbf",
		"Pallet":                           "\xef\x92\x82",
		"PalletAlt":                        "\xef\x92\x83",
		"PaperPlane":                       "\xef\x87\x98",
		"Paperclip":                        "\xef\x83\x86",
		"ParachuteBox":                     "\xef\x93\x8d",
		"Paragraph":                        "\xef\x87\x9d",
		"ParagraphRtl":                     "\xef\xa1\xb8",
		"Parking":                          "\xef\x95\x80",
		"ParkingCircle":                    "\xef\x98\x95",
		"ParkingCircleSlash":               "\xef\x98\x96",
		"ParkingSlash":                     "\xef\x98\x97",
		"Passport":                         "\xef\x96\xab",
		"Pastafarianism":                   "\xef\x99\xbb",
		"Paste":                            "\xef\x83\xaa",
		"Pause":                            "\xef\x81\x8c",
		"PauseCircle":                      "\xef\x8a\x8b",
		"Paw":                              "\xef\x86\xb0",
		"PawAlt":                           "\xef\x9c\x81",
		"PawClaws":                         "\xef\x9c\x82",
		"Peace":                            "\xef\x99\xbc",
		"Pegasus":                          "\xef\x9c\x83",
		"Pen":                              "\xef\x8c\x84",
		"PenAlt":                           "\xef\x8c\x85",
		"PenFancy":                         "\xef\x96\xac",
		"PenNib":                           "\xef\x96\xad",
		"PenSquare":                        "\xef\x85\x8b",
		"Pencil":                           "\xef\x81\x80",
		"PencilAlt":                        "\xef\x8c\x83",
		"PencilPaintbrush":                 "\xef\x98\x98",
		"PencilRuler":                      "\xef\x96\xae",
		"Pennant":                          "\xef\x91\x96",
		"PeopleArrows":                     "\xee\x81\xa8",
		"PeopleCarry":                      "\xef\x93\x8e",
		"PepperHot":                        "\xef\xa0\x96",
		"Percent":                          "\xef\x8a\x95",
		"Percentage":                       "\xef\x95\x81",
		"PersonBooth":                      "\xef\x9d\x96",
		"PersonCarry":                      "\xef\x93\x8f",
		"PersonDolly":                      "\xef\x93\x90",
		"PersonDollyEmpty":                 "\xef\x93\x91",
		"PersonSign":                       "\xef\x9d\x97",
		"Phone":                            "\xef\x82\x95",
		"PhoneAlt":                         "\xef\xa1\xb9",
		"PhoneLaptop":                      "\xef\xa1\xba",
		"PhoneOffice":                      "\xef\x99\xbd",
		"PhonePlus":                        "\xef\x93\x92",
		"PhoneRotary":                      "\xef\xa3\x93",
		"PhoneSlash":                       "\xef\x8f\x9d",
		"PhoneSquare":                      "\xef\x82\x98",
		"PhoneSquareAlt":                   "\xef\xa1\xbb",
		"PhoneVolume":                      "\xef\x8a\xa0",
		"PhotoVideo":                       "\xef\xa1\xbc",
		"Pi":                               "\xef\x99\xbe",
		"Piano":                            "\xef\xa3\x94",
		"PianoKeyboard":                    "\xef\xa3\x95",
		"Pie":                              "\xef\x9c\x85",
		"Pig":                              "\xef\x9c\x86",
		"PiggyBank":                        "\xef\x93\x93",
		"Pills":                            "\xef\x92\x84",
		"Pizza":                            "\xef\xa0\x97",
		"PizzaSlice":                       "\xef\xa0\x98",
		"PlaceOfWorship":                   "\xef\x99\xbf",
		"Plane":                            "\xef\x81\xb2",
		"PlaneAlt":                         "\xef\x8f\x9e",
		"PlaneArrival":                     "\xef\x96\xaf",
		"PlaneDeparture":                   "\xef\x96\xb0",
		"PlaneSlash":                       "\xee\x81\xa9",
		"PlanetMoon":                       "\xee\x80\x9f",
		"PlanetRinged":                     "\xee\x80\xa0",
		"Play":                             "\xef\x81\x8b",
		"PlayCircle":                       "\xef\x85\x84",
		"Plug":                             "\xef\x87\xa6",
		"Plus":                             "\xef\x81\xa7",
		"PlusCircle":                       "\xef\x81\x95",
		"PlusHexagon":                      "\xef\x8c\x80",
		"PlusOctagon":                      "\xef\x8c\x81",
		"PlusSquare":                       "\xef\x83\xbe",
		"Podcast":                          "\xef\x8b\x8e",
		"Podium":                           "\xef\x9a\x80",
		"PodiumStar":                       "\xef\x9d\x98",
		"PoliceBox":                        "\xee\x80\xa1",
		"Poll":                             "\xef\x9a\x81",
		"PollH":                            "\xef\x9a\x82",
		"PollPeople":                       "\xef\x9d\x99",
		"Poo":                              "\xef\x8b\xbe",
		"PooStorm":                         "\xef\x9d\x9a",
		"Poop":                             "\xef\x98\x99",
		"Popcorn":                          "\xef\xa0\x99",
		"PortalEnter":                      "\xee\x80\xa2",
		"PortalExit":                       "\xee\x80\xa3",
		"Portrait":                         "\xef\x8f\xa0",
		"PoundSign":                        "\xef\x85\x94",
		"PowerOff":                         "\xef\x80\x91",
		"Pray":                             "\xef\x9a\x83",
		"PrayingHands":                     "\xef\x9a\x84",
		"Prescription":                     "\xef\x96\xb1",
		"PrescriptionBottle":               "\xef\x92\x85",
		"PrescriptionBottleAlt":            "\xef\x92\x86",
		"Presentation":                     "\xef\x9a\x85",
		"Print":                            "\xef\x80\xaf",
		"PrintSearch":                      "\xef\xa0\x9a",
		"PrintSlash":                       "\xef\x9a\x86",
		"Procedures":                       "\xef\x92\x87",
		"ProjectDiagram":                   "\xef\x95\x82",
		"Projector":                        "\xef\xa3\x96",
		"PumpMedical":                      "\xee\x81\xaa",
		"PumpSoap":                         "\xee\x81\xab",
		"Pumpkin":                          "\xef\x9c\x87",
		"PuzzlePiece":                      "\xef\x84\xae",
		"Qrcode":                           "\xef\x80\xa9",
		"Question":                         "\xef\x84\xa8",
		"QuestionCircle":                   "\xef\x81\x99",
		"QuestionSquare":                   "\xef\x8b\xbd",
		"Quidditch":                        "\xef\x91\x98",
		"QuoteLeft":                        "\xef\x84\x8d",
		"QuoteRight":                       "\xef\x84\x8e",
		"Quran":                            "\xef\x9a\x87",
		"Rabbit":                           "\xef\x9c\x88",
		"RabbitFast":                       "\xef\x9c\x89",
		"Racquet":                          "\xef\x91\x9a",
		"Radar":                            "\xee\x80\xa4",
		"Radiation":                        "\xef\x9e\xb9",
		"RadiationAlt":                     "\xef\x9e\xba",
		"Radio":                            "\xef\xa3\x97",
		"RadioAlt":                         "\xef\xa3\x98",
		"Rainbow":                          "\xef\x9d\x9b",
		"Raindrops":                        "\xef\x9d\x9c",
		"Ram":                              "\xef\x9c\x8a",
		"RampLoading":                      "\xef\x93\x94",
		"Random":                           "\xef\x81\xb4",
		"Raygun":                           "\xee\x80\xa5",
		"Receipt":                          "\xef\x95\x83",
		"RecordVinyl":                      "\xef\xa3\x99",
		"RectangleLandscape":               "\xef\x8b\xba",
		"RectanglePortrait":                "\xef\x8b\xbb",
		"RectangleWide":                    "\xef\x8b\xbc",
		"Recycle":                          "\xef\x86\xb8",
		"Redo":                             "\xef\x80\x9e",
		"RedoAlt":                          "\xef\x8b\xb9",
		"Refrigerator":                     "\xee\x80\xa6",
		"Registered":                       "\xef\x89\x9d",
		"RemoveFormat":                     "\xef\xa1\xbd",
		"Repeat":                           "\xef\x8d\xa3",
		"Repeat1":                          "\xef\x8d\xa5",
		"Repeat1Alt":                       "\xef\x8d\xa6",
		"RepeatAlt":                        "\xef\x8d\xa4",
		"Reply":                            "\xef\x8f\xa5",
		"ReplyAll":                         "\xef\x84\xa2",
		"Republican":                       "\xef\x9d\x9e",
		"Restroom":                         "\xef\x9e\xbd",
		"Retweet":                          "\xef\x81\xb9",
		"RetweetAlt":                       "\xef\x8d\xa1",
		"Ribbon":                           "\xef\x93\x96",
		"Ring":                             "\xef\x9c\x8b",
		"RingsWedding":                     "\xef\xa0\x9b",
		"Road":                             "\xef\x80\x98",
		"Robot":                            "\xef\x95\x84",
		"Rocket":                           "\xef\x84\xb5",
		"RocketLaunch":                     "\xee\x80\xa7",
		"Route":                            "\xef\x93\x97",
		"RouteHighway":                     "\xef\x98\x9a",
		"RouteInterstate":                  "\xef\x98\x9b",
		"Router":                           "\xef\xa3\x9a",
		"Rss":                              "\xef\x82\x9e",
		"RssSquare":                        "\xef\x85\x83",
		"RubleSign":                        "\xef\x85\x98",
		"Ruler":                            "\xef\x95\x85",
		"RulerCombined":                    "\xef\x95\x86",
		"RulerHorizontal":                  "\xef\x95\x87",
		"RulerTriangle":                    "\xef\x98\x9c",
		"RulerVertical":                    "\xef\x95\x88",
		"Running":                          "\xef\x9c\x8c",
		"RupeeSign":                        "\xef\x85\x96",
		"Rv":                               "\xef\x9e\xbe",
		"Sack":                             "\xef\xa0\x9c",
		"SackDollar":                       "\xef\xa0\x9d",
		"SadCry":                           "\xef\x96\xb3",
		"SadTear":                          "\xef\x96\xb4",
		"Salad":                            "\xef\xa0\x9e",
		"Sandwich":                         "\xef\xa0\x9f",
		"Satellite":                        "\xef\x9e\xbf",
		"SatelliteDish":                    "\xef\x9f\x80",
		"Sausage":                          "\xef\xa0\xa0",
		"Save":                             "\xef\x83\x87",
		"SaxHot":                           "\xef\xa3\x9b",
		"Saxophone":                        "\xef\xa3\x9c",
		"Scalpel":                          "\xef\x98\x9d",
		"ScalpelPath":                      "\xef\x98\x9e",
		"Scanner":                          "\xef\x92\x88",
		"ScannerImage":                     "\xef\xa3\xb3",
		"ScannerKeyboard":                  "\xef\x92\x89",
		"ScannerTouchscreen":               "\xef\x92\x8a",
		"Scarecrow":                        "\xef\x9c\x8d",
		"Scarf":                            "\xef\x9f\x81",
		"School":                           "\xef\x95\x89",
		"Screwdriver":                      "\xef\x95\x8a",
		"Scroll":                           "\xef\x9c\x8e",
		"ScrollOld":                        "\xef\x9c\x8f",
		"Scrubber":                         "\xef\x8b\xb8",
		"Scythe":                           "\xef\x9c\x90",
		"SdCard":                           "\xef\x9f\x82",
		"Search":                           "\xef\x80\x82",
		"SearchDollar":                     "\xef\x9a\x88",
		"SearchLocation":                   "\xef\x9a\x89",
		"SearchMinus":                      "\xef\x80\x90",
		"SearchPlus":                       "\xef\x80\x8e",
		"Seedling":                         "\xef\x93\x98",
		"SendBack":                         "\xef\xa1\xbe",
		"SendBackward":                     "\xef\xa1\xbf",
		"Sensor":                           "\xee\x80\xa8",
		"SensorAlert":                      "\xee\x80\xa9",
		"SensorFire":                       "\xee\x80\xaa",
		"SensorOn":                         "\xee\x80\xab",
		"SensorSmoke":                      "\xee\x80\xac",
		"Server":                           "\xef\x88\xb3",
		"Shapes":                           "\xef\x98\x9f",
		"Share":                            "\xef\x81\xa4",
		"ShareAll":                         "\xef\x8d\xa7",
		"ShareAlt":                         "\xef\x87\xa0",
		"ShareAltSquare":                   "\xef\x87\xa1",
		"ShareSquare":                      "\xef\x85\x8d",
		"Sheep":                            "\xef\x9c\x91",
		"ShekelSign":                       "\xef\x88\x8b",
		"Shield":                           "\xef\x84\xb2",
		"ShieldAlt":                        "\xef\x8f\xad",
		"ShieldCheck":                      "\xef\x8b\xb7",
		"ShieldCross":                      "\xef\x9c\x92",
		"ShieldVirus":                      "\xee\x81\xac",
		"Ship":                             "\xef\x88\x9a",
		"ShippingFast":                     "\xef\x92\x8b",
		"ShippingTimed":                    "\xef\x92\x8c",
		"ShishKebab":                       "\xef\xa0\xa1",
		"ShoePrints":                       "\xef\x95\x8b",
		"ShoppingBag":                      "\xef\x8a\x90",
		"ShoppingBasket":                   "\xef\x8a\x91",
		"ShoppingCart":                     "\xef\x81\xba",
		"Shovel":                           "\xef\x9c\x93",
		"ShovelSnow":                       "\xef\x9f\x83",
		"Shower":                           "\xef\x8b\x8c",
		"Shredder":                         "\xef\x9a\x8a",
		"ShuttleVan":                       "\xef\x96\xb6",
		"Shuttlecock":                      "\xef\x91\x9b",
		"Sickle":                           "\xef\xa0\xa2",
		"Sigma":                            "\xef\x9a\x8b",
		"Sign":                             "\xef\x93\x99",
		"SignIn":                           "\xef\x82\x90",
		"SignInAlt":                        "\xef\x8b\xb6",
		"SignLanguage":                     "\xef\x8a\xa7",
		"SignOut":                          "\xef\x82\x8b",
		"SignOutAlt":                       "\xef\x8b\xb5",
		"Signal":                           "\xef\x80\x92",
		"Signal1":                          "\xef\x9a\x8c",
		"Signal2":                          "\xef\x9a\x8d",
		"Signal3":                          "\xef\x9a\x8e",
		"Signal4":                          "\xef\x9a\x8f",
		"SignalAlt":                        "\xef\x9a\x90",
		"SignalAlt1":                       "\xef\x9a\x91",
		"SignalAlt2":                       "\xef\x9a\x92",
		"SignalAlt3":                       "\xef\x9a\x93",
		"SignalAltSlash":                   "\xef\x9a\x94",
		"SignalSlash":                      "\xef\x9a\x95",
		"SignalStream":                     "\xef\xa3\x9d",
		"Signature":                        "\xef\x96\xb7",
		"SimCard":                          "\xef\x9f\x84",
		"Sink":                             "\xee\x81\xad",
		"Siren":                            "\xee\x80\xad",
		"SirenOn":                          "\xee\x80\xae",
		"Sitemap":                          "\xef\x83\xa8",
		"Skating":                          "\xef\x9f\x85",
		"Skeleton":                         "\xef\x98\xa0",
		"SkiJump":                          "\xef\x9f\x87",
		"SkiLift":                          "\xef\x9f\x88",
		"Skiing":                           "\xef\x9f\x89",
		"SkiingNordic":                     "\xef\x9f\x8a",
		"Skull":                            "\xef\x95\x8c",
		"SkullCow":                         "\xef\xa3\x9e",
		"SkullCrossbones":                  "\xef\x9c\x94",
		"Slash":                            "\xef\x9c\x95",
		"Sledding":                         "\xef\x9f\x8b",
		"Sleigh":                           "\xef\x9f\x8c",
		"SlidersH":                         "\xef\x87\x9e",
		"SlidersHSquare":                   "\xef\x8f\xb0",
		"SlidersV":                         "\xef\x8f\xb1",
		"SlidersVSquare":                   "\xef\x8f\xb2",
		"Smile":                            "\xef\x84\x98",
		"SmileBeam":                        "\xef\x96\xb8",
		"SmilePlus":                        "\xef\x96\xb9",
		"SmileWink":                        "\xef\x93\x9a",
		"Smog":                             "\xef\x9d\x9f",
		"Smoke":                            "\xef\x9d\xa0",
		"Smoking":                          "\xef\x92\x8d",
		"SmokingBan":                       "\xef\x95\x8d",
		"Sms":                              "\xef\x9f\x8d",
		"Snake":                            "\xef\x9c\x96",
		"Snooze":                           "\xef\xa2\x80",
		"SnowBlowing":                      "\xef\x9d\xa1",
		"Snowboarding":                     "\xef\x9f\x8e",
		"Snowflake":                        "\xef\x8b\x9c",
		"Snowflakes":                       "\xef\x9f\x8f",
		"Snowman":                          "\xef\x9f\x90",
		"Snowmobile":                       "\xef\x9f\x91",
		"Snowplow":                         "\xef\x9f\x92",
		"Soap":                             "\xee\x81\xae",
		"Socks":                            "\xef\x9a\x96",
		"SolarPanel":                       "\xef\x96\xba",
		"SolarSystem":                      "\xee\x80\xaf",
		"Sort":                             "\xef\x83\x9c",
		"SortAlphaDown":                    "\xef\x85\x9d",
		"SortAlphaDownAlt":                 "\xef\xa2\x81",
		"SortAlphaUp":                      "\xef\x85\x9e",
		"SortAlphaUpAlt":                   "\xef\xa2\x82",
		"SortAlt":                          "\xef\xa2\x83",
		"SortAmountDown":                   "\xef\x85\xa0",
		"SortAmountDownAlt":                "\xef\xa2\x84",
		"SortAmountUp":                     "\xef\x85\xa1",
		"SortAmountUpAlt":                  "\xef\xa2\x85",
		"SortCircle":                       "\xee\x80\xb0",
		"SortCircleDown":                   "\xee\x80\xb1",
		"SortCircleUp":                     "\xee\x80\xb2",
		"SortDown":                         "\xef\x83\x9d",
		"SortNumericDown":                  "\xef\x85\xa2",
		"SortNumericDownAlt":               "\xef\xa2\x86",
		"SortNumericUp":                    "\xef\x85\xa3",
		"SortNumericUpAlt":                 "\xef\xa2\x87",
		"SortShapesDown":                   "\xef\xa2\x88",
		"SortShapesDownAlt":                "\xef\xa2\x89",
		"SortShapesUp":                     "\xef\xa2\x8a",
		"SortShapesUpAlt":                  "\xef\xa2\x8b",
		"SortSizeDown":                     "\xef\xa2\x8c",
		"SortSizeDownAlt":                  "\xef\xa2\x8d",
		"SortSizeUp":                       "\xef\xa2\x8e",
		"SortSizeUpAlt":                    "\xef\xa2\x8f",
		"SortUp":                           "\xef\x83\x9e",
		"Soup":                             "\xef\xa0\xa3",
		"Spa":                              "\xef\x96\xbb",
		"SpaceShuttle":                     "\xef\x86\x97",
		"SpaceStationMoon":                 "\xee\x80\xb3",
		"SpaceStationMoonAlt":              "\xee\x80\xb4",
		"Spade":                            "\xef\x8b\xb4",
		"Sparkles":                         "\xef\xa2\x90",
		"Speaker":                          "\xef\xa3\x9f",
		"Speakers":                         "\xef\xa3\xa0",
		"SpellCheck":                       "\xef\xa2\x91",
		"Spider":                           "\xef\x9c\x97",
		"SpiderBlackWidow":                 "\xef\x9c\x98",
		"SpiderWeb":                        "\xef\x9c\x99",
		"Spinner":                          "\xef\x84\x90",
		"SpinnerThird":                     "\xef\x8f\xb4",
		"Splotch":                          "\xef\x96\xbc",
		"SprayCan":                         "\xef\x96\xbd",
		"Sprinkler":                        "\xee\x80\xb5",
		"Square":                           "\xef\x83\x88",
		"SquareFull":                       "\xef\x91\x9c",
		"SquareRoot":                       "\xef\x9a\x97",
		"SquareRootAlt":                    "\xef\x9a\x98",
		"Squirrel":                         "\xef\x9c\x9a",
		"Staff":                            "\xef\x9c\x9b",
		"Stamp":                            "\xef\x96\xbf",
		"Star":                             "\xef\x80\x85",
		"StarAndCrescent":                  "\xef\x9a\x99",
		"StarChristmas":                    "\xef\x9f\x94",
		"StarExclamation":                  "\xef\x8b\xb3",
		"StarHalf":                         "\xef\x82\x89",
		"StarHalfAlt":                      "\xef\x97\x80",
		"StarOfDavid":                      "\xef\x9a\x9a",
		"StarOfLife":                       "\xef\x98\xa1",
		"StarShooting":                     "\xee\x80\xb6",
		"Starfighter":                      "\xee\x80\xb7",
		"StarfighterAlt":                   "\xee\x80\xb8",
		"Stars":                            "\xef\x9d\xa2",
		"Starship":                         "\xee\x80\xb9",
		"StarshipFreighter":                "\xee\x80\xba",
		"Steak":                            "\xef\xa0\xa4",
		"SteeringWheel":                    "\xef\x98\xa2",
		"StepBackward":                     "\xef\x81\x88",
		"StepForward":                      "\xef\x81\x91",
		"Stethoscope":                      "\xef\x83\xb1",
		"StickyNote":                       "\xef\x89\x89",
		"Stocking":                         "\xef\x9f\x95",
		"Stomach":                          "\xef\x98\xa3",
		"Stop":                             "\xef\x81\x8d",
		"StopCircle":                       "\xef\x8a\x8d",
		"Stopwatch":                        "\xef\x8b\xb2",
		"Stopwatch20":                      "\xee\x81\xaf",
		"Store":                            "\xef\x95\x8e",
		"StoreAlt":                         "\xef\x95\x8f",
		"StoreAltSlash":                    "\xee\x81\xb0",
		"StoreSlash":                       "\xee\x81\xb1",
		"Stream":                           "\xef\x95\x90",
		"StreetView":                       "\xef\x88\x9d",
		"Stretcher":                        "\xef\xa0\xa5",
		"Strikethrough":                    "\xef\x83\x8c",
		"Stroopwafel":                      "\xef\x95\x91",
		"Subscript":                        "\xef\x84\xac",
		"Subway":                           "\xef\x88\xb9",
		"Suitcase":                         "\xef\x83\xb2",
		"SuitcaseRolling":                  "\xef\x97\x81",
		"Sun":                              "\xef\x86\x85",
		"SunCloud":                         "\xef\x9d\xa3",
		"SunDust":                          "\xef\x9d\xa4",
		"SunHaze":                          "\xef\x9d\xa5",
		"Sunglasses":                       "\xef\xa2\x92",
		"Sunrise":                          "\xef\x9d\xa6",
		"Sunset":                           "\xef\x9d\xa7",
		"Superscript":                      "\xef\x84\xab",
		"Surprise":                         "\xef\x97\x82",
		"Swatchbook":                       "\xef\x97\x83",
		"Swimmer":                          "\xef\x97\x84",
		"SwimmingPool":                     "\xef\x97\x85",
		"Sword":                            "\xef\x9c\x9c",
		"SwordLaser":                       "\xee\x80\xbb",
		"SwordLaserAlt":                    "\xee\x80\xbc",
		"Swords":                           "\xef\x9c\x9d",
		"SwordsLaser":                      "\xee\x80\xbd",
		"Synagogue":                        "\xef\x9a\x9b",
		"Sync":                             "\xef\x80\xa1",
		"SyncAlt":                          "\xef\x8b\xb1",
		"Syringe":                          "\xef\x92\x8e",
		"Table":                            "\xef\x83\x8e",
		"TableTennis":                      "\xef\x91\x9d",
		"Tablet":                           "\xef\x84\x8a",
		"TabletAlt":                        "\xef\x8f\xba",
		"TabletAndroid":                    "\xef\x8f\xbb",
		"TabletAndroidAlt":                 "\xef\x8f\xbc",
		"TabletRugged":                     "\xef\x92\x8f",
		"Tablets":                          "\xef\x92\x90",
		"Tachometer":                       "\xef\x83\xa4",
		"TachometerAlt":                    "\xef\x8f\xbd",
		"TachometerAltAverage":             "\xef\x98\xa4",
		"TachometerAltFast":                "\xef\x98\xa5",
		"TachometerAltFastest":             "\xef\x98\xa6",
		"TachometerAltSlow":                "\xef\x98\xa7",
		"TachometerAltSlowest":             "\xef\x98\xa8",
		"TachometerAverage":                "\xef\x98\xa9",
		"TachometerFast":                   "\xef\x98\xaa",
		"TachometerFastest":                "\xef\x98\xab",
		"TachometerSlow":                   "\xef\x98\xac",
		"TachometerSlowest":                "\xef\x98\xad",
		"Taco":                             "\xef\xa0\xa6",
		"Tag":                              "\xef\x80\xab",
		"Tags":                             "\xef\x80\xac",
		"Tally":                            "\xef\x9a\x9c",
		"Tanakh":                           "\xef\xa0\xa7",
		"Tape":                             "\xef\x93\x9b",
		"Tasks":                            "\xef\x82\xae",
		"TasksAlt":                         "\xef\xa0\xa8",
		"Taxi":                             "\xef\x86\xba",
		"Teeth":                            "\xef\x98\xae",
		"TeethOpen":                        "\xef\x98\xaf",
		"Telescope":                        "\xee\x80\xbe",
		"TemperatureDown":                  "\xee\x80\xbf",
		"TemperatureFrigid":                "\xef\x9d\xa8",
		"TemperatureHigh":                  "\xef\x9d\xa9",
		"TemperatureHot":                   "\xef\x9d\xaa",
		"TemperatureLow":                   "\xef\x9d\xab",
		"TemperatureUp":                    "\xee\x81\x80",
		"Tenge":                            "\xef\x9f\x97",
		"TennisBall":                       "\xef\x91\x9e",
		"Terminal":                         "\xef\x84\xa0",
		"Text":                             "\xef\xa2\x93",
		"TextHeight":                       "\xef\x80\xb4",
		"TextSize":                         "\xef\xa2\x94",
		"TextWidth":                        "\xef\x80\xb5",
		"Th":                               "\xef\x80\x8a",
		"ThLarge":                          "\xef\x80\x89",
		"ThList":                           "\xef\x80\x8b",
		"TheaterMasks":                     "\xef\x98\xb0",
		"Thermometer":                      "\xef\x92\x91",
		"ThermometerEmpty":                 "\xef\x8b\x8b",
		"ThermometerFull":                  "\xef\x8b\x87",
		"ThermometerHalf":                  "\xef\x8b\x89",
		"ThermometerQuarter":               "\xef\x8b\x8a",
		"ThermometerThreeQuarters":         "\xef\x8b\x88",
		"Theta":                            "\xef\x9a\x9e",
		"ThumbsDown":                       "\xef\x85\xa5",
		"ThumbsUp":                         "\xef\x85\xa4",
		"Thumbtack":                        "\xef\x82\x8d",
		"Thunderstorm":                     "\xef\x9d\xac",
		"ThunderstormMoon":                 "\xef\x9d\xad",
		"ThunderstormSun":                  "\xef\x9d\xae",
		"Ticket":                           "\xef\x85\x85",
		"TicketAlt":                        "\xef\x8f\xbf",
		"Tilde":                            "\xef\x9a\x9f",
		"Times":                            "\xef\x80\x8d",
		"TimesCircle":                      "\xef\x81\x97",
		"TimesHexagon":                     "\xef\x8b\xae",
		"TimesOctagon":                     "\xef\x8b\xb0",
		"TimesSquare":                      "\xef\x8b\x93",
		"Tint":                             "\xef\x81\x83",
		"TintSlash":                        "\xef\x97\x87",
		"Tire":                             "\xef\x98\xb1",
		"TireFlat":                         "\xef\x98\xb2",
		"TirePressureWarning":              "\xef\x98\xb3",
		"TireRugged":                       "\xef\x98\xb4",
		"Tired":                            "\xef\x97\x88",
		"ToggleOff":                        "\xef\x88\x84",
		"ToggleOn":                         "\xef\x88\x85",
		"Toilet":                           "\xef\x9f\x98",
		"ToiletPaper":                      "\xef\x9c\x9e",
		"ToiletPaperAlt":                   "\xef\x9c\x9f",
		"ToiletPaperSlash":                 "\xee\x81\xb2",
		"Tombstone":                        "\xef\x9c\xa0",
		"TombstoneAlt":                     "\xef\x9c\xa1",
		"Toolbox":                          "\xef\x95\x92",
		"Tools":                            "\xef\x9f\x99",
		"Tooth":                            "\xef\x97\x89",
		"Toothbrush":                       "\xef\x98\xb5",
		"Torah":                            "\xef\x9a\xa0",
		"ToriiGate":                        "\xef\x9a\xa1",
		"Tornado":                          "\xef\x9d\xaf",
		"Tractor":                          "\xef\x9c\xa2",
		"Trademark":                        "\xef\x89\x9c",
		"TrafficCone":                      "\xef\x98\xb6",
		"TrafficLight":                     "\xef\x98\xb7",
		"TrafficLightGo":                   "\xef\x98\xb8",
		"TrafficLightSlow":                 "\xef\x98\xb9",
		"TrafficLightStop":                 "\xef\x98\xba",
		"Trailer":                          "\xee\x81\x81",
		"Train":                            "\xef\x88\xb8",
		"Tram":                             "\xef\x9f\x9a",
		"Transgender":                      "\xef\x88\xa4",
		"TransgenderAlt":                   "\xef\x88\xa5",
		"Transporter":                      "\xee\x81\x82",
		"Transporter1":                     "\xee\x81\x83",
		"Transporter2":                     "\xee\x81\x84",
		"Transporter3":                     "\xee\x81\x85",
		"TransporterEmpty":                 "\xee\x81\x86",
		"Trash":                            "\xef\x87\xb8",
		"TrashAlt":                         "\xef\x8b\xad",
		"TrashRestore":                     "\xef\xa0\xa9",
		"TrashRestoreAlt":                  "\xef\xa0\xaa",
		"TrashUndo":                        "\xef\xa2\x95",
		"TrashUndoAlt":                     "\xef\xa2\x96",
		"TreasureChest":                    "\xef\x9c\xa3",
		"Tree":                             "\xef\x86\xbb",
		"TreeAlt":                          "\xef\x90\x80",
		"TreeChristmas":                    "\xef\x9f\x9b",
		"TreeDecorated":                    "\xef\x9f\x9c",
		"TreeLarge":                        "\xef\x9f\x9d",
		"TreePalm":                         "\xef\xa0\xab",
		"Trees":                            "\xef\x9c\xa4",
		"Triangle":                         "\xef\x8b\xac",
		"TriangleMusic":                    "\xef\xa3\xa2",
		"Trophy":                           "\xef\x82\x91",
		"TrophyAlt":                        "\xef\x8b\xab",
		"Truck":                            "\xef\x83\x91",
		"TruckContainer":                   "\xef\x93\x9c",
		"TruckCouch":                       "\xef\x93\x9d",
		"TruckLoading":                     "\xef\x93\x9e",
		"TruckMonster":                     "\xef\x98\xbb",
		"TruckMoving":                      "\xef\x93\x9f",
		"TruckPickup":                      "\xef\x98\xbc",
		"TruckPlow":                        "\xef\x9f\x9e",
		"TruckRamp":                        "\xef\x93\xa0",
		"Trumpet":                          "\xef\xa3\xa3",
		"Tshirt":                           "\xef\x95\x93",
		"Tty":                              "\xef\x87\xa4",
		"Turkey":                           "\xef\x9c\xa5",
		"Turntable":                        "\xef\xa3\xa4",
		"Turtle":                           "\xef\x9c\xa6",
		"Tv":                               "\xef\x89\xac",
		"TvAlt":                            "\xef\xa3\xa5",
		"TvMusic":                          "\xef\xa3\xa6",
		"TvRetro":                          "\xef\x90\x81",
		"Typewriter":                       "\xef\xa3\xa7",
		"Ufo":                              "\xee\x81\x87",
		"UfoBeam":                          "\xee\x81\x88",
		"Umbrella":                         "\xef\x83\xa9",
		"UmbrellaBeach":                    "\xef\x97\x8a",
		"Underline":                        "\xef\x83\x8d",
		"Undo":                             "\xef\x83\xa2",
		"UndoAlt":                          "\xef\x8b\xaa",
		"Unicorn":                          "\xef\x9c\xa7",
		"Union":                            "\xef\x9a\xa2",
		"UniversalAccess":                  "\xef\x8a\x9a",
		"University":                       "\xef\x86\x9c",
		"Unlink":                           "\xef\x84\xa7",
		"Unlock":                           "\xef\x82\x9c",
		"UnlockAlt":                        "\xef\x84\xbe",
		"Upload":                           "\xef\x82\x93",
		"UsbDrive":                         "\xef\xa3\xa9",
		"UsdCircle":                        "\xef\x8b\xa8",
		"UsdSquare":                        "\xef\x8b\xa9",
		"User":                             "\xef\x80\x87",
		"UserAlien":                        "\xee\x81\x8a",
		"UserAlt":                          "\xef\x90\x86",
		"UserAltSlash":                     "\xef\x93\xba",
		"UserAstronaut":                    "\xef\x93\xbb",
		"UserChart":                        "\xef\x9a\xa3",
		"UserCheck":                        "\xef\x93\xbc",
		"UserCircle":                       "\xef\x8a\xbd",
		"UserClock":                        "\xef\x93\xbd",
		"UserCog":                          "\xef\x93\xbe",
		"UserCowboy":                       "\xef\xa3\xaa",
		"UserCrown":                        "\xef\x9a\xa4",
		"UserEdit":                         "\xef\x93\xbf",
		"UserFriends":                      "\xef\x94\x80",
		"UserGraduate":                     "\xef\x94\x81",
		"UserHardHat":                      "\xef\xa0\xac",
		"UserHeadset":                      "\xef\xa0\xad",
		"UserInjured":                      "\xef\x9c\xa8",
		"UserLock":                         "\xef\x94\x82",
		"UserMd":                           "\xef\x83\xb0",
		"UserMdChat":                       "\xef\xa0\xae",
		"UserMinus":                        "\xef\x94\x83",
		"UserMusic":                        "\xef\xa3\xab",
		"UserNinja":                        "\xef\x94\x84",
		"UserNurse":                        "\xef\xa0\xaf",
		"UserPlus":                         "\xef\x88\xb4",
		"UserRobot":                        "\xee\x81\x8b",
		"UserSecret":                       "\xef\x88\x9b",
		"UserShield":                       "\xef\x94\x85",
		"UserSlash":                        "\xef\x94\x86",
		"UserTag":                          "\xef\x94\x87",
		"UserTie":                          "\xef\x94\x88",
		"UserTimes":                        "\xef\x88\xb5",
		"UserUnlock":                       "\xee\x81\x98",
		"UserVisor":                        "\xee\x81\x8c",
		"Users":                            "\xef\x83\x80",
		"UsersClass":                       "\xef\x98\xbd",
		"UsersCog":                         "\xef\x94\x89",
		"UsersCrown":                       "\xef\x9a\xa5",
		"UsersMedical":                     "\xef\xa0\xb0",
		"UsersSlash":                       "\xee\x81\xb3",
		"UtensilFork":                      "\xef\x8b\xa3",
		"UtensilKnife":                     "\xef\x8b\xa4",
		"UtensilSpoon":                     "\xef\x8b\xa5",
		"Utensils":                         "\xef\x8b\xa7",
		"UtensilsAlt":                      "\xef\x8b\xa6",
		"Vacuum":                           "\xee\x81\x8d",
		"VacuumRobot":                      "\xee\x81\x8e",
		"ValueAbsolute":                    "\xef\x9a\xa6",
		"VectorSquare":                     "\xef\x97\x8b",
		"Venus":                            "\xef\x88\xa1",
		"VenusDouble":                      "\xef\x88\xa6",
		"VenusMars":                        "\xef\x88\xa8",
		"Vest":                             "\xee\x82\x85",
		"VestPatches":                      "\xee\x82\x86",
		"Vhs":                              "\xef\xa3\xac",
		"Vial":                             "\xef\x92\x92",
		"Vials":                            "\xef\x92\x93",
		"Video":                            "\xef\x80\xbd",
		"VideoPlus":                        "\xef\x93\xa1",
		"VideoSlash":                       "\xef\x93\xa2",
		"Vihara":                           "\xef\x9a\xa7",
		"Violin":                           "\xef\xa3\xad",
		"Virus":                            "\xee\x81\xb4",
		"VirusSlash":                       "\xee\x81\xb5",
		"Viruses":                          "\xee\x81\xb6",
		"Voicemail":                        "\xef\xa2\x97",
		"Volcano":                          "\xef\x9d\xb0",
		"VolleyballBall":                   "\xef\x91\x9f",
		"Volume":                           "\xef\x9a\xa8",
		"VolumeDown":                       "\xef\x80\xa7",
		"VolumeMute":                       "\xef\x9a\xa9",
		"VolumeOff":                        "\xef\x80\xa6",
		"VolumeSlash":                      "\xef\x8b\xa2",
		"VolumeUp":                         "\xef\x80\xa8",
		"VoteNay":                          "\xef\x9d\xb1",
		"VoteYea":                          "\xef\x9d\xb2",
		"VrCardboard":                      "\xef\x9c\xa9",
		"WagonCovered":                     "\xef\xa3\xae",
		"Walker":                           "\xef\xa0\xb1",
		"WalkieTalkie":                     "\xef\xa3\xaf",
		"Walking":                          "\xef\x95\x94",
		"Wallet":                           "\xef\x95\x95",
		"Wand":                             "\xef\x9c\xaa",
		"WandMagic":                        "\xef\x9c\xab",
		"Warehouse":                        "\xef\x92\x94",
		"WarehouseAlt":                     "\xef\x92\x95",
		"Washer":                           "\xef\xa2\x98",
		"Watch":                            "\xef\x8b\xa1",
		"WatchCalculator":                  "\xef\xa3\xb0",
		"WatchFitness":                     "\xef\x98\xbe",
		"Water":                            "\xef\x9d\xb3",
		"WaterLower":                       "\xef\x9d\xb4",
		"WaterRise":                        "\xef\x9d\xb5",
		"WaveSine":                         "\xef\xa2\x99",
		"WaveSquare":                       "\xef\xa0\xbe",
		"WaveTriangle":                     "\xef\xa2\x9a",
		"Waveform":                         "\xef\xa3\xb1",
		"WaveformPath":                     "\xef\xa3\xb2",
		"Webcam":                           "\xef\xa0\xb2",
		"WebcamSlash":                      "\xef\xa0\xb3",
		"Weight":                           "\xef\x92\x96",
		"WeightHanging":                    "\xef\x97\x8d",
		"Whale":                            "\xef\x9c\xac",
		"Wheat":                            "\xef\x9c\xad",
		"Wheelchair":                       "\xef\x86\x93",
		"Whistle":                          "\xef\x91\xa0",
		"Wifi":                             "\xef\x87\xab",
		"Wifi1":                            "\xef\x9a\xaa",
		"Wifi2":                            "\xef\x9a\xab",
		"WifiSlash":                        "\xef\x9a\xac",
		"Wind":                             "\xef\x9c\xae",
		"WindTurbine":                      "\xef\xa2\x9b",
		"WindWarning":                      "\xef\x9d\xb6",
		"Window":                           "\xef\x90\x8e",
		"WindowAlt":                        "\xef\x90\x8f",
		"WindowClose":                      "\xef\x90\x90",
		"WindowFrame":                      "\xee\x81\x8f",
		"WindowFrameOpen":                  "\xee\x81\x90",
		"WindowMaximize":                   "\xef\x8b\x90",
		"WindowMinimize":                   "\xef\x8b\x91",
		"WindowRestore":                    "\xef\x8b\x92",
		"Windsock":                         "\xef\x9d\xb7",
		"WineBottle":                       "\xef\x9c\xaf",
		"WineGlass":                        "\xef\x93\xa3",
		"WineGlassAlt":                     "\xef\x97\x8e",
		"WonSign":                          "\xef\x85\x99",
		"Wreath":                           "\xef\x9f\xa2",
		"Wrench":                           "\xef\x82\xad",
		"XRay":                             "\xef\x92\x97",
		"YenSign":                          "\xef\x85\x97",
		"YinYang":                          "\xef\x9a\xad",
	},
}
View Source
var IconsFontAwesome5ProBrands = Font{
	Filenames: [][2]string{
		{"FAB", "fa-brands-400.ttf"},
	},
	Min:   0xe007,
	Max16: 0xf8e8,
	Max:   0xf8e8,
	Icons: map[string]string{
		"500px":                       "\xef\x89\xae",
		"AccessibleIcon":              "\xef\x8d\xa8",
		"Accusoft":                    "\xef\x8d\xa9",
		"AcquisitionsIncorporated":    "\xef\x9a\xaf",
		"Adn":                         "\xef\x85\xb0",
		"Adversal":                    "\xef\x8d\xaa",
		"Affiliatetheme":              "\xef\x8d\xab",
		"Airbnb":                      "\xef\xa0\xb4",
		"Algolia":                     "\xef\x8d\xac",
		"Alipay":                      "\xef\x99\x82",
		"Amazon":                      "\xef\x89\xb0",
		"AmazonPay":                   "\xef\x90\xac",
		"Amilia":                      "\xef\x8d\xad",
		"Android":                     "\xef\x85\xbb",
		"Angellist":                   "\xef\x88\x89",
		"Angrycreative":               "\xef\x8d\xae",
		"Angular":                     "\xef\x90\xa0",
		"AppStore":                    "\xef\x8d\xaf",
		"AppStoreIos":                 "\xef\x8d\xb0",
		"Apper":                       "\xef\x8d\xb1",
		"Apple":                       "\xef\x85\xb9",
		"ApplePay":                    "\xef\x90\x95",
		"Artstation":                  "\xef\x9d\xba",
		"Asymmetrik":                  "\xef\x8d\xb2",
		"Atlassian":                   "\xef\x9d\xbb",
		"Audible":                     "\xef\x8d\xb3",
		"Autoprefixer":                "\xef\x90\x9c",
		"Avianex":                     "\xef\x8d\xb4",
		"Aviato":                      "\xef\x90\xa1",
		"Aws":                         "\xef\x8d\xb5",
		"Bandcamp":                    "\xef\x8b\x95",
		"BattleNet":                   "\xef\xa0\xb5",
		"Behance":                     "\xef\x86\xb4",
		"BehanceSquare":               "\xef\x86\xb5",
		"Bimobject":                   "\xef\x8d\xb8",
		"Bitbucket":                   "\xef\x85\xb1",
		"Bitcoin":                     "\xef\x8d\xb9",
		"Bity":                        "\xef\x8d\xba",
		"BlackTie":                    "\xef\x89\xbe",
		"Blackberry":                  "\xef\x8d\xbb",
		"Blogger":                     "\xef\x8d\xbc",
		"BloggerB":                    "\xef\x8d\xbd",
		"Bluetooth":                   "\xef\x8a\x93",
		"BluetoothB":                  "\xef\x8a\x94",
		"Bootstrap":                   "\xef\xa0\xb6",
		"Btc":                         "\xef\x85\x9a",
		"Buffer":                      "\xef\xa0\xb7",
		"Buromobelexperte":            "\xef\x8d\xbf",
		"BuyNLarge":                   "\xef\xa2\xa6",
		"Buysellads":                  "\xef\x88\x8d",
		"CanadianMapleLeaf":           "\xef\x9e\x85",
		"CcAmazonPay":                 "\xef\x90\xad",
		"CcAmex":                      "\xef\x87\xb3",
		"CcApplePay":                  "\xef\x90\x96",
		"CcDinersClub":                "\xef\x89\x8c",
		"CcDiscover":                  "\xef\x87\xb2",
		"CcJcb":                       "\xef\x89\x8b",
		"CcMastercard":                "\xef\x87\xb1",
		"CcPaypal":                    "\xef\x87\xb4",
		"CcStripe":                    "\xef\x87\xb5",
		"CcVisa":                      "\xef\x87\xb0",
		"Centercode":                  "\xef\x8e\x80",
		"Centos":                      "\xef\x9e\x89",
		"Chrome":                      "\xef\x89\xa8",
		"Chromecast":                  "\xef\xa0\xb8",
		"Cloudflare":                  "\xee\x81\xbd",
		"Cloudscale":                  "\xef\x8e\x83",
		"Cloudsmith":                  "\xef\x8e\x84",
		"Cloudversify":                "\xef\x8e\x85",
		"Codepen":                     "\xef\x87\x8b",
		"Codiepie":                    "\xef\x8a\x84",
		"Confluence":                  "\xef\x9e\x8d",
		"Connectdevelop":              "\xef\x88\x8e",
		"Contao":                      "\xef\x89\xad",
		"CottonBureau":                "\xef\xa2\x9e",
		"Cpanel":                      "\xef\x8e\x88",
		"CreativeCommons":             "\xef\x89\x9e",
		"CreativeCommonsBy":           "\xef\x93\xa7",
		"CreativeCommonsNc":           "\xef\x93\xa8",
		"CreativeCommonsNcEu":         "\xef\x93\xa9",
		"CreativeCommonsNcJp":         "\xef\x93\xaa",
		"CreativeCommonsNd":           "\xef\x93\xab",
		"CreativeCommonsPd":           "\xef\x93\xac",
		"CreativeCommonsPdAlt":        "\xef\x93\xad",
		"CreativeCommonsRemix":        "\xef\x93\xae",
		"CreativeCommonsSa":           "\xef\x93\xaf",
		"CreativeCommonsSampling":     "\xef\x93\xb0",
		"CreativeCommonsSamplingPlus": "\xef\x93\xb1",
		"CreativeCommonsShare":        "\xef\x93\xb2",
		"CreativeCommonsZero":         "\xef\x93\xb3",
		"CriticalRole":                "\xef\x9b\x89",
		"Css3":                        "\xef\x84\xbc",
		"Css3Alt":                     "\xef\x8e\x8b",
		"Cuttlefish":                  "\xef\x8e\x8c",
		"DAndD":                       "\xef\x8e\x8d",
		"DAndDBeyond":                 "\xef\x9b\x8a",
		"Dailymotion":                 "\xee\x81\x92",
		"Dashcube":                    "\xef\x88\x90",
		"Deezer":                      "\xee\x81\xb7",
		"Delicious":                   "\xef\x86\xa5",
		"Deploydog":                   "\xef\x8e\x8e",
		"Deskpro":                     "\xef\x8e\x8f",
		"Dev":                         "\xef\x9b\x8c",
		"Deviantart":                  "\xef\x86\xbd",
		"Dhl":                         "\xef\x9e\x90",
		"Diaspora":                    "\xef\x9e\x91",
		"Digg":                        "\xef\x86\xa6",
		"DigitalOcean":                "\xef\x8e\x91",
		"Discord":                     "\xef\x8e\x92",
		"Discourse":                   "\xef\x8e\x93",
		"Dochub":                      "\xef\x8e\x94",
		"Docker":                      "\xef\x8e\x95",
		"Draft2digital":               "\xef\x8e\x96",
		"Dribbble":                    "\xef\x85\xbd",
		"DribbbleSquare":              "\xef\x8e\x97",
		"Dropbox":                     "\xef\x85\xab",
		"Drupal":                      "\xef\x86\xa9",
		"Dyalog":                      "\xef\x8e\x99",
		"Earlybirds":                  "\xef\x8e\x9a",
		"Ebay":                        "\xef\x93\xb4",
		"Edge":                        "\xef\x8a\x82",
		"EdgeLegacy":                  "\xee\x81\xb8",
		"Elementor":                   "\xef\x90\xb0",
		"Ello":                        "\xef\x97\xb1",
		"Ember":                       "\xef\x90\xa3",
		"Empire":                      "\xef\x87\x91",
		"Envira":                      "\xef\x8a\x99",
		"Erlang":                      "\xef\x8e\x9d",
		"Ethereum":                    "\xef\x90\xae",
		"Etsy":                        "\xef\x8b\x97",
		"Evernote":                    "\xef\xa0\xb9",
		"Expeditedssl":                "\xef\x88\xbe",
		"Facebook":                    "\xef\x82\x9a",
		"FacebookF":                   "\xef\x8e\x9e",
		"FacebookMessenger":           "\xef\x8e\x9f",
		"FacebookSquare":              "\xef\x82\x82",
		"FantasyFlightGames":          "\xef\x9b\x9c",
		"Fedex":                       "\xef\x9e\x97",
		"Fedora":                      "\xef\x9e\x98",
		"Figma":                       "\xef\x9e\x99",
		"Firefox":                     "\xef\x89\xa9",
		"FirefoxBrowser":              "\xee\x80\x87",
		"FirstOrder":                  "\xef\x8a\xb0",
		"FirstOrderAlt":               "\xef\x94\x8a",
		"Firstdraft":                  "\xef\x8e\xa1",
		"Flickr":                      "\xef\x85\xae",
		"Flipboard":                   "\xef\x91\x8d",
		"Fly":                         "\xef\x90\x97",
		"FontAwesome":                 "\xef\x8a\xb4",
		"FontAwesomeAlt":              "\xef\x8d\x9c",
		"FontAwesomeFlag":             "\xef\x90\xa5",
		"FontAwesomeLogoFull":         "\xef\x93\xa6",
		"Fonticons":                   "\xef\x8a\x80",
		"FonticonsFi":                 "\xef\x8e\xa2",
		"FortAwesome":                 "\xef\x8a\x86",
		"FortAwesomeAlt":              "\xef\x8e\xa3",
		"Forumbee":                    "\xef\x88\x91",
		"Foursquare":                  "\xef\x86\x80",
		"FreeCodeCamp":                "\xef\x8b\x85",
		"Freebsd":                     "\xef\x8e\xa4",
		"Fulcrum":                     "\xef\x94\x8b",
		"GalacticRepublic":            "\xef\x94\x8c",
		"GalacticSenate":              "\xef\x94\x8d",
		"GetPocket":                   "\xef\x89\xa5",
		"Gg":                          "\xef\x89\xa0",
		"GgCircle":                    "\xef\x89\xa1",
		"Git":                         "\xef\x87\x93",
		"GitAlt":                      "\xef\xa1\x81",
		"GitSquare":                   "\xef\x87\x92",
		"Github":                      "\xef\x82\x9b",
		"GithubAlt":                   "\xef\x84\x93",
		"GithubSquare":                "\xef\x82\x92",
		"Gitkraken":                   "\xef\x8e\xa6",
		"Gitlab":                      "\xef\x8a\x96",
		"Gitter":                      "\xef\x90\xa6",
		"Glide":                       "\xef\x8a\xa5",
		"GlideG":                      "\xef\x8a\xa6",
		"Gofore":                      "\xef\x8e\xa7",
		"Goodreads":                   "\xef\x8e\xa8",
		"GoodreadsG":                  "\xef\x8e\xa9",
		"Google":                      "\xef\x86\xa0",
		"GoogleDrive":                 "\xef\x8e\xaa",
		"GooglePay":                   "\xee\x81\xb9",
		"GooglePlay":                  "\xef\x8e\xab",
		"GooglePlus":                  "\xef\x8a\xb3",
		"GooglePlusG":                 "\xef\x83\x95",
		"GooglePlusSquare":            "\xef\x83\x94",
		"GoogleWallet":                "\xef\x87\xae",
		"Gratipay":                    "\xef\x86\x84",
		"Grav":                        "\xef\x8b\x96",
		"Gripfire":                    "\xef\x8e\xac",
		"Grunt":                       "\xef\x8e\xad",
		"Guilded":                     "\xee\x81\xbe",
		"Gulp":                        "\xef\x8e\xae",
		"HackerNews":                  "\xef\x87\x94",
		"HackerNewsSquare":            "\xef\x8e\xaf",
		"Hackerrank":                  "\xef\x97\xb7",
		"Hips":                        "\xef\x91\x92",
		"HireAHelper":                 "\xef\x8e\xb0",
		"Hive":                        "\xee\x81\xbf",
		"Hooli":                       "\xef\x90\xa7",
		"Hornbill":                    "\xef\x96\x92",
		"Hotjar":                      "\xef\x8e\xb1",
		"Houzz":                       "\xef\x89\xbc",
		"Html5":                       "\xef\x84\xbb",
		"Hubspot":                     "\xef\x8e\xb2",
		"Ideal":                       "\xee\x80\x93",
		"Imdb":                        "\xef\x8b\x98",
		"Innosoft":                    "\xee\x82\x80",
		"Instagram":                   "\xef\x85\xad",
		"InstagramSquare":             "\xee\x81\x95",
		"Instalod":                    "\xee\x82\x81",
		"Intercom":                    "\xef\x9e\xaf",
		"InternetExplorer":            "\xef\x89\xab",
		"Invision":                    "\xef\x9e\xb0",
		"Ioxhost":                     "\xef\x88\x88",
		"ItchIo":                      "\xef\xa0\xba",
		"Itunes":                      "\xef\x8e\xb4",
		"ItunesNote":                  "\xef\x8e\xb5",
		"Java":                        "\xef\x93\xa4",
		"JediOrder":                   "\xef\x94\x8e",
		"Jenkins":                     "\xef\x8e\xb6",
		"Jira":                        "\xef\x9e\xb1",
		"Joget":                       "\xef\x8e\xb7",
		"Joomla":                      "\xef\x86\xaa",
		"Js":                          "\xef\x8e\xb8",
		"JsSquare":                    "\xef\x8e\xb9",
		"Jsfiddle":                    "\xef\x87\x8c",
		"Kaggle":                      "\xef\x97\xba",
		"Keybase":                     "\xef\x93\xb5",
		"Keycdn":                      "\xef\x8e\xba",
		"Kickstarter":                 "\xef\x8e\xbb",
		"KickstarterK":                "\xef\x8e\xbc",
		"Korvue":                      "\xef\x90\xaf",
		"Laravel":                     "\xef\x8e\xbd",
		"Lastfm":                      "\xef\x88\x82",
		"LastfmSquare":                "\xef\x88\x83",
		"Leanpub":                     "\xef\x88\x92",
		"Less":                        "\xef\x90\x9d",
		"Line":                        "\xef\x8f\x80",
		"Linkedin":                    "\xef\x82\x8c",
		"LinkedinIn":                  "\xef\x83\xa1",
		"Linode":                      "\xef\x8a\xb8",
		"Linux":                       "\xef\x85\xbc",
		"Lyft":                        "\xef\x8f\x83",
		"Magento":                     "\xef\x8f\x84",
		"Mailchimp":                   "\xef\x96\x9e",
		"Mandalorian":                 "\xef\x94\x8f",
		"Markdown":                    "\xef\x98\x8f",
		"Mastodon":                    "\xef\x93\xb6",
		"Maxcdn":                      "\xef\x84\xb6",
		"Mdb":                         "\xef\xa3\x8a",
		"Medapps":                     "\xef\x8f\x86",
		"Medium":                      "\xef\x88\xba",
		"MediumM":                     "\xef\x8f\x87",
		"Medrt":                       "\xef\x8f\x88",
		"Meetup":                      "\xef\x8b\xa0",
		"Megaport":                    "\xef\x96\xa3",
		"Mendeley":                    "\xef\x9e\xb3",
		"Microblog":                   "\xee\x80\x9a",
		"Microsoft":                   "\xef\x8f\x8a",
		"Mix":                         "\xef\x8f\x8b",
		"Mixcloud":                    "\xef\x8a\x89",
		"Mixer":                       "\xee\x81\x96",
		"Mizuni":                      "\xef\x8f\x8c",
		"Modx":                        "\xef\x8a\x85",
		"Monero":                      "\xef\x8f\x90",
		"Napster":                     "\xef\x8f\x92",
		"Neos":                        "\xef\x98\x92",
		"Nimblr":                      "\xef\x96\xa8",
		"Node":                        "\xef\x90\x99",
		"NodeJs":                      "\xef\x8f\x93",
		"Npm":                         "\xef\x8f\x94",
		"Ns8":                         "\xef\x8f\x95",
		"Nutritionix":                 "\xef\x8f\x96",
		"OctopusDeploy":               "\xee\x82\x82",
		"Odnoklassniki":               "\xef\x89\xa3",
		"OdnoklassnikiSquare":         "\xef\x89\xa4",
		"OldRepublic":                 "\xef\x94\x90",
		"Opencart":                    "\xef\x88\xbd",
		"Openid":                      "\xef\x86\x9b",
		"Opera":                       "\xef\x89\xaa",
		"OptinMonster":                "\xef\x88\xbc",
		"Orcid":                       "\xef\xa3\x92",
		"Osi":                         "\xef\x90\x9a",
		"Page4":                       "\xef\x8f\x97",
		"Pagelines":                   "\xef\x86\x8c",
		"Palfed":                      "\xef\x8f\x98",
		"Patreon":                     "\xef\x8f\x99",
		"Paypal":                      "\xef\x87\xad",
		"PennyArcade":                 "\xef\x9c\x84",
		"Perbyte":                     "\xee\x82\x83",
		"Periscope":                   "\xef\x8f\x9a",
		"Phabricator":                 "\xef\x8f\x9b",
		"PhoenixFramework":            "\xef\x8f\x9c",
		"PhoenixSquadron":             "\xef\x94\x91",
		"Php":                         "\xef\x91\x97",
		"PiedPiper":                   "\xef\x8a\xae",
		"PiedPiperAlt":                "\xef\x86\xa8",
		"PiedPiperHat":                "\xef\x93\xa5",
		"PiedPiperPp":                 "\xef\x86\xa7",
		"PiedPiperSquare":             "\xee\x80\x9e",
		"Pinterest":                   "\xef\x83\x92",
		"PinterestP":                  "\xef\x88\xb1",
		"PinterestSquare":             "\xef\x83\x93",
		"Playstation":                 "\xef\x8f\x9f",
		"ProductHunt":                 "\xef\x8a\x88",
		"Pushed":                      "\xef\x8f\xa1",
		"Python":                      "\xef\x8f\xa2",
		"Qq":                          "\xef\x87\x96",
		"Quinscape":                   "\xef\x91\x99",
		"Quora":                       "\xef\x8b\x84",
		"RProject":                    "\xef\x93\xb7",
		"RaspberryPi":                 "\xef\x9e\xbb",
		"Ravelry":                     "\xef\x8b\x99",
		"React":                       "\xef\x90\x9b",
		"Reacteurope":                 "\xef\x9d\x9d",
		"Readme":                      "\xef\x93\x95",
		"Rebel":                       "\xef\x87\x90",
		"RedRiver":                    "\xef\x8f\xa3",
		"Reddit":                      "\xef\x86\xa1",
		"RedditAlien":                 "\xef\x8a\x81",
		"RedditSquare":                "\xef\x86\xa2",
		"Redhat":                      "\xef\x9e\xbc",
		"Renren":                      "\xef\x86\x8b",
		"Replyd":                      "\xef\x8f\xa6",
		"Researchgate":                "\xef\x93\xb8",
		"Resolving":                   "\xef\x8f\xa7",
		"Rev":                         "\xef\x96\xb2",
		"Rocketchat":                  "\xef\x8f\xa8",
		"Rockrms":                     "\xef\x8f\xa9",
		"Rust":                        "\xee\x81\xba",
		"Safari":                      "\xef\x89\xa7",
		"Salesforce":                  "\xef\xa0\xbb",
		"Sass":                        "\xef\x90\x9e",
		"Schlix":                      "\xef\x8f\xaa",
		"Scribd":                      "\xef\x8a\x8a",
		"Searchengin":                 "\xef\x8f\xab",
		"Sellcast":                    "\xef\x8b\x9a",
		"Sellsy":                      "\xef\x88\x93",
		"Servicestack":                "\xef\x8f\xac",
		"Shirtsinbulk":                "\xef\x88\x94",
		"Shopify":                     "\xee\x81\x97",
		"Shopware":                    "\xef\x96\xb5",
		"Simplybuilt":                 "\xef\x88\x95",
		"Sistrix":                     "\xef\x8f\xae",
		"Sith":                        "\xef\x94\x92",
		"Sketch":                      "\xef\x9f\x86",
		"Skyatlas":                    "\xef\x88\x96",
		"Skype":                       "\xef\x85\xbe",
		"Slack":                       "\xef\x86\x98",
		"SlackHash":                   "\xef\x8f\xaf",
		"Slideshare":                  "\xef\x87\xa7",
		"Snapchat":                    "\xef\x8a\xab",
		"SnapchatGhost":               "\xef\x8a\xac",
		"SnapchatSquare":              "\xef\x8a\xad",
		"Soundcloud":                  "\xef\x86\xbe",
		"Sourcetree":                  "\xef\x9f\x93",
		"Speakap":                     "\xef\x8f\xb3",
		"SpeakerDeck":                 "\xef\xa0\xbc",
		"Spotify":                     "\xef\x86\xbc",
		"Squarespace":                 "\xef\x96\xbe",
		"StackExchange":               "\xef\x86\x8d",
		"StackOverflow":               "\xef\x85\xac",
		"Stackpath":                   "\xef\xa1\x82",
		"Staylinked":                  "\xef\x8f\xb5",
		"Steam":                       "\xef\x86\xb6",
		"SteamSquare":                 "\xef\x86\xb7",
		"SteamSymbol":                 "\xef\x8f\xb6",
		"StickerMule":                 "\xef\x8f\xb7",
		"Strava":                      "\xef\x90\xa8",
		"Stripe":                      "\xef\x90\xa9",
		"StripeS":                     "\xef\x90\xaa",
		"Studiovinari":                "\xef\x8f\xb8",
		"Stumbleupon":                 "\xef\x86\xa4",
		"StumbleuponCircle":           "\xef\x86\xa3",
		"Superpowers":                 "\xef\x8b\x9d",
		"Supple":                      "\xef\x8f\xb9",
		"Suse":                        "\xef\x9f\x96",
		"Swift":                       "\xef\xa3\xa1",
		"Symfony":                     "\xef\xa0\xbd",
		"Teamspeak":                   "\xef\x93\xb9",
		"Telegram":                    "\xef\x8b\x86",
		"TelegramPlane":               "\xef\x8f\xbe",
		"TencentWeibo":                "\xef\x87\x95",
		"TheRedYeti":                  "\xef\x9a\x9d",
		"Themeco":                     "\xef\x97\x86",
		"Themeisle":                   "\xef\x8a\xb2",
		"ThinkPeaks":                  "\xef\x9c\xb1",
		"Tiktok":                      "\xee\x81\xbb",
		"TradeFederation":             "\xef\x94\x93",
		"Trello":                      "\xef\x86\x81",
		"Tumblr":                      "\xef\x85\xb3",
		"TumblrSquare":                "\xef\x85\xb4",
		"Twitch":                      "\xef\x87\xa8",
		"Twitter":                     "\xef\x82\x99",
		"TwitterSquare":               "\xef\x82\x81",
		"Typo3":                       "\xef\x90\xab",
		"Uber":                        "\xef\x90\x82",
		"Ubuntu":                      "\xef\x9f\x9f",
		"Uikit":                       "\xef\x90\x83",
		"Umbraco":                     "\xef\xa3\xa8",
		"Uncharted":                   "\xee\x82\x84",
		"Uniregistry":                 "\xef\x90\x84",
		"Unity":                       "\xee\x81\x89",
		"Unsplash":                    "\xee\x81\xbc",
		"Untappd":                     "\xef\x90\x85",
		"Ups":                         "\xef\x9f\xa0",
		"Usb":                         "\xef\x8a\x87",
		"Usps":                        "\xef\x9f\xa1",
		"Ussunnah":                    "\xef\x90\x87",
		"Vaadin":                      "\xef\x90\x88",
		"Viacoin":                     "\xef\x88\xb7",
		"Viadeo":                      "\xef\x8a\xa9",
		"ViadeoSquare":                "\xef\x8a\xaa",
		"Viber":                       "\xef\x90\x89",
		"Vimeo":                       "\xef\x90\x8a",
		"VimeoSquare":                 "\xef\x86\x94",
		"VimeoV":                      "\xef\x89\xbd",
		"Vine":                        "\xef\x87\x8a",
		"Vk":                          "\xef\x86\x89",
		"Vnv":                         "\xef\x90\x8b",
		"Vuejs":                       "\xef\x90\x9f",
		"WatchmanMonitoring":          "\xee\x82\x87",
		"Waze":                        "\xef\xa0\xbf",
		"Weebly":                      "\xef\x97\x8c",
		"Weibo":                       "\xef\x86\x8a",
		"Weixin":                      "\xef\x87\x97",
		"Whatsapp":                    "\xef\x88\xb2",
		"WhatsappSquare":              "\xef\x90\x8c",
		"Whmcs":                       "\xef\x90\x8d",
		"WikipediaW":                  "\xef\x89\xa6",
		"Windows":                     "\xef\x85\xba",
		"Wix":                         "\xef\x97\x8f",
		"WizardsOfTheCoast":           "\xef\x9c\xb0",
		"Wodu":                        "\xee\x82\x88",
		"WolfPackBattalion":           "\xef\x94\x94",
		"Wordpress":                   "\xef\x86\x9a",
		"WordpressSimple":             "\xef\x90\x91",
		"Wpbeginner":                  "\xef\x8a\x97",
		"Wpexplorer":                  "\xef\x8b\x9e",
		"Wpforms":                     "\xef\x8a\x98",
		"Wpressr":                     "\xef\x8f\xa4",
		"Xbox":                        "\xef\x90\x92",
		"Xing":                        "\xef\x85\xa8",
		"XingSquare":                  "\xef\x85\xa9",
		"YCombinator":                 "\xef\x88\xbb",
		"Yahoo":                       "\xef\x86\x9e",
		"Yammer":                      "\xef\xa1\x80",
		"Yandex":                      "\xef\x90\x93",
		"YandexInternational":         "\xef\x90\x94",
		"Yarn":                        "\xef\x9f\xa3",
		"Yelp":                        "\xef\x87\xa9",
		"Yoast":                       "\xef\x8a\xb1",
		"Youtube":                     "\xef\x85\xa7",
		"YoutubeSquare":               "\xef\x90\xb1",
		"Zhihu":                       "\xef\x98\xbf",
	},
}
View Source
var IconsFontAwesome6 = Font{
	Filenames: [][2]string{
		{"FAR", "fa-regular-400.ttf"},
		{"FAS", "fa-solid-900.ttf"},
	},
	Min:   0xe005,
	Max16: 0xf8ff,
	Max:   0xf8ff,
	Icons: map[string]string{
		"0":                                 "0",
		"1":                                 "1",
		"2":                                 "2",
		"3":                                 "3",
		"4":                                 "4",
		"5":                                 "5",
		"6":                                 "6",
		"7":                                 "7",
		"8":                                 "8",
		"9":                                 "9",
		"A":                                 "A",
		"AddressBook":                       "\xef\x8a\xb9",
		"AddressCard":                       "\xef\x8a\xbb",
		"AlignCenter":                       "\xef\x80\xb7",
		"AlignJustify":                      "\xef\x80\xb9",
		"AlignLeft":                         "\xef\x80\xb6",
		"AlignRight":                        "\xef\x80\xb8",
		"Anchor":                            "\xef\x84\xbd",
		"AnchorCircleCheck":                 "\xee\x92\xaa",
		"AnchorCircleExclamation":           "\xee\x92\xab",
		"AnchorCircleXmark":                 "\xee\x92\xac",
		"AnchorLock":                        "\xee\x92\xad",
		"AngleDown":                         "\xef\x84\x87",
		"AngleLeft":                         "\xef\x84\x84",
		"AngleRight":                        "\xef\x84\x85",
		"AngleUp":                           "\xef\x84\x86",
		"AnglesDown":                        "\xef\x84\x83",
		"AnglesLeft":                        "\xef\x84\x80",
		"AnglesRight":                       "\xef\x84\x81",
		"AnglesUp":                          "\xef\x84\x82",
		"Ankh":                              "\xef\x99\x84",
		"AppleWhole":                        "\xef\x97\x91",
		"Archway":                           "\xef\x95\x97",
		"ArrowDown":                         "\xef\x81\xa3",
		"ArrowDown19":                       "\xef\x85\xa2",
		"ArrowDown91":                       "\xef\xa2\x86",
		"ArrowDownAZ":                       "\xef\x85\x9d",
		"ArrowDownLong":                     "\xef\x85\xb5",
		"ArrowDownShortWide":                "\xef\xa2\x84",
		"ArrowDownUpAcrossLine":             "\xee\x92\xaf",
		"ArrowDownUpLock":                   "\xee\x92\xb0",
		"ArrowDownWideShort":                "\xef\x85\xa0",
		"ArrowDownZA":                       "\xef\xa2\x81",
		"ArrowLeft":                         "\xef\x81\xa0",
		"ArrowLeftLong":                     "\xef\x85\xb7",
		"ArrowPointer":                      "\xef\x89\x85",
		"ArrowRight":                        "\xef\x81\xa1",
		"ArrowRightArrowLeft":               "\xef\x83\xac",
		"ArrowRightFromBracket":             "\xef\x82\x8b",
		"ArrowRightLong":                    "\xef\x85\xb8",
		"ArrowRightToBracket":               "\xef\x82\x90",
		"ArrowRightToCity":                  "\xee\x92\xb3",
		"ArrowRotateLeft":                   "\xef\x83\xa2",
		"ArrowRotateRight":                  "\xef\x80\x9e",
		"ArrowTrendDown":                    "\xee\x82\x97",
		"ArrowTrendUp":                      "\xee\x82\x98",
		"ArrowTurnDown":                     "\xef\x85\x89",
		"ArrowTurnUp":                       "\xef\x85\x88",
		"ArrowUp":                           "\xef\x81\xa2",
		"ArrowUp19":                         "\xef\x85\xa3",
		"ArrowUp91":                         "\xef\xa2\x87",
		"ArrowUpAZ":                         "\xef\x85\x9e",
		"ArrowUpFromBracket":                "\xee\x82\x9a",
		"ArrowUpFromGroundWater":            "\xee\x92\xb5",
		"ArrowUpFromWaterPump":              "\xee\x92\xb6",
		"ArrowUpLong":                       "\xef\x85\xb6",
		"ArrowUpRightDots":                  "\xee\x92\xb7",
		"ArrowUpRightFromSquare":            "\xef\x82\x8e",
		"ArrowUpShortWide":                  "\xef\xa2\x85",
		"ArrowUpWideShort":                  "\xef\x85\xa1",
		"ArrowUpZA":                         "\xef\xa2\x82",
		"ArrowsDownToLine":                  "\xee\x92\xb8",
		"ArrowsDownToPeople":                "\xee\x92\xb9",
		"ArrowsLeftRight":                   "\xef\x81\xbe",
		"ArrowsLeftRightToLine":             "\xee\x92\xba",
		"ArrowsRotate":                      "\xef\x80\xa1",
		"ArrowsSpin":                        "\xee\x92\xbb",
		"ArrowsSplitUpAndLeft":              "\xee\x92\xbc",
		"ArrowsToCircle":                    "\xee\x92\xbd",
		"ArrowsToDot":                       "\xee\x92\xbe",
		"ArrowsToEye":                       "\xee\x92\xbf",
		"ArrowsTurnRight":                   "\xee\x93\x80",
		"ArrowsTurnToDots":                  "\xee\x93\x81",
		"ArrowsUpDown":                      "\xef\x81\xbd",
		"ArrowsUpDownLeftRight":             "\xef\x81\x87",
		"ArrowsUpToLine":                    "\xee\x93\x82",
		"Asterisk":                          "*",
		"At":                                "@",
		"Atom":                              "\xef\x97\x92",
		"AudioDescription":                  "\xef\x8a\x9e",
		"AustralSign":                       "\xee\x82\xa9",
		"Award":                             "\xef\x95\x99",
		"B":                                 "B",
		"Baby":                              "\xef\x9d\xbc",
		"BabyCarriage":                      "\xef\x9d\xbd",
		"Backward":                          "\xef\x81\x8a",
		"BackwardFast":                      "\xef\x81\x89",
		"BackwardStep":                      "\xef\x81\x88",
		"Bacon":                             "\xef\x9f\xa5",
		"Bacteria":                          "\xee\x81\x99",
		"Bacterium":                         "\xee\x81\x9a",
		"BagShopping":                       "\xef\x8a\x90",
		"Bahai":                             "\xef\x99\xa6",
		"BahtSign":                          "\xee\x82\xac",
		"Ban":                               "\xef\x81\x9e",
		"BanSmoking":                        "\xef\x95\x8d",
		"Bandage":                           "\xef\x91\xa2",
		"BangladeshiTakaSign":               "\xee\x8b\xa6",
		"Barcode":                           "\xef\x80\xaa",
		"Bars":                              "\xef\x83\x89",
		"BarsProgress":                      "\xef\xa0\xa8",
		"BarsStaggered":                     "\xef\x95\x90",
		"Baseball":                          "\xef\x90\xb3",
		"BaseballBatBall":                   "\xef\x90\xb2",
		"BasketShopping":                    "\xef\x8a\x91",
		"Basketball":                        "\xef\x90\xb4",
		"Bath":                              "\xef\x8b\x8d",
		"BatteryEmpty":                      "\xef\x89\x84",
		"BatteryFull":                       "\xef\x89\x80",
		"BatteryHalf":                       "\xef\x89\x82",
		"BatteryQuarter":                    "\xef\x89\x83",
		"BatteryThreeQuarters":              "\xef\x89\x81",
		"Bed":                               "\xef\x88\xb6",
		"BedPulse":                          "\xef\x92\x87",
		"BeerMugEmpty":                      "\xef\x83\xbc",
		"Bell":                              "\xef\x83\xb3",
		"BellConcierge":                     "\xef\x95\xa2",
		"BellSlash":                         "\xef\x87\xb6",
		"BezierCurve":                       "\xef\x95\x9b",
		"Bicycle":                           "\xef\x88\x86",
		"Binoculars":                        "\xef\x87\xa5",
		"Biohazard":                         "\xef\x9e\x80",
		"BitcoinSign":                       "\xee\x82\xb4",
		"Blender":                           "\xef\x94\x97",
		"BlenderPhone":                      "\xef\x9a\xb6",
		"Blog":                              "\xef\x9e\x81",
		"Bold":                              "\xef\x80\xb2",
		"Bolt":                              "\xef\x83\xa7",
		"BoltLightning":                     "\xee\x82\xb7",
		"Bomb":                              "\xef\x87\xa2",
		"Bone":                              "\xef\x97\x97",
		"Bong":                              "\xef\x95\x9c",
		"Book":                              "\xef\x80\xad",
		"BookAtlas":                         "\xef\x95\x98",
		"BookBible":                         "\xef\x99\x87",
		"BookBookmark":                      "\xee\x82\xbb",
		"BookJournalWhills":                 "\xef\x99\xaa",
		"BookMedical":                       "\xef\x9f\xa6",
		"BookOpen":                          "\xef\x94\x98",
		"BookOpenReader":                    "\xef\x97\x9a",
		"BookQuran":                         "\xef\x9a\x87",
		"BookSkull":                         "\xef\x9a\xb7",
		"BookTanakh":                        "\xef\xa0\xa7",
		"Bookmark":                          "\xef\x80\xae",
		"BorderAll":                         "\xef\xa1\x8c",
		"BorderNone":                        "\xef\xa1\x90",
		"BorderTopLeft":                     "\xef\xa1\x93",
		"BoreHole":                          "\xee\x93\x83",
		"BottleDroplet":                     "\xee\x93\x84",
		"BottleWater":                       "\xee\x93\x85",
		"BowlFood":                          "\xee\x93\x86",
		"BowlRice":                          "\xee\x8b\xab",
		"BowlingBall":                       "\xef\x90\xb6",
		"Box":                               "\xef\x91\xa6",
		"BoxArchive":                        "\xef\x86\x87",
		"BoxOpen":                           "\xef\x92\x9e",
		"BoxTissue":                         "\xee\x81\x9b",
		"BoxesPacking":                      "\xee\x93\x87",
		"BoxesStacked":                      "\xef\x91\xa8",
		"Braille":                           "\xef\x8a\xa1",
		"Brain":                             "\xef\x97\x9c",
		"BrazilianRealSign":                 "\xee\x91\xac",
		"BreadSlice":                        "\xef\x9f\xac",
		"Bridge":                            "\xee\x93\x88",
		"BridgeCircleCheck":                 "\xee\x93\x89",
		"BridgeCircleExclamation":           "\xee\x93\x8a",
		"BridgeCircleXmark":                 "\xee\x93\x8b",
		"BridgeLock":                        "\xee\x93\x8c",
		"BridgeWater":                       "\xee\x93\x8e",
		"Briefcase":                         "\xef\x82\xb1",
		"BriefcaseMedical":                  "\xef\x91\xa9",
		"Broom":                             "\xef\x94\x9a",
		"BroomBall":                         "\xef\x91\x98",
		"Brush":                             "\xef\x95\x9d",
		"Bucket":                            "\xee\x93\x8f",
		"Bug":                               "\xef\x86\x88",
		"BugSlash":                          "\xee\x92\x90",
		"Bugs":                              "\xee\x93\x90",
		"Building":                          "\xef\x86\xad",
		"BuildingCircleArrowRight":          "\xee\x93\x91",
		"BuildingCircleCheck":               "\xee\x93\x92",
		"BuildingCircleExclamation":         "\xee\x93\x93",
		"BuildingCircleXmark":               "\xee\x93\x94",
		"BuildingColumns":                   "\xef\x86\x9c",
		"BuildingFlag":                      "\xee\x93\x95",
		"BuildingLock":                      "\xee\x93\x96",
		"BuildingNgo":                       "\xee\x93\x97",
		"BuildingShield":                    "\xee\x93\x98",
		"BuildingUn":                        "\xee\x93\x99",
		"BuildingUser":                      "\xee\x93\x9a",
		"BuildingWheat":                     "\xee\x93\x9b",
		"Bullhorn":                          "\xef\x82\xa1",
		"Bullseye":                          "\xef\x85\x80",
		"Burger":                            "\xef\xa0\x85",
		"Burst":                             "\xee\x93\x9c",
		"Bus":                               "\xef\x88\x87",
		"BusSimple":                         "\xef\x95\x9e",
		"BusinessTime":                      "\xef\x99\x8a",
		"C":                                 "C",
		"CableCar":                          "\xef\x9f\x9a",
		"CakeCandles":                       "\xef\x87\xbd",
		"Calculator":                        "\xef\x87\xac",
		"Calendar":                          "\xef\x84\xb3",
		"CalendarCheck":                     "\xef\x89\xb4",
		"CalendarDay":                       "\xef\x9e\x83",
		"CalendarDays":                      "\xef\x81\xb3",
		"CalendarMinus":                     "\xef\x89\xb2",
		"CalendarPlus":                      "\xef\x89\xb1",
		"CalendarWeek":                      "\xef\x9e\x84",
		"CalendarXmark":                     "\xef\x89\xb3",
		"Camera":                            "\xef\x80\xb0",
		"CameraRetro":                       "\xef\x82\x83",
		"CameraRotate":                      "\xee\x83\x98",
		"Campground":                        "\xef\x9a\xbb",
		"CandyCane":                         "\xef\x9e\x86",
		"Cannabis":                          "\xef\x95\x9f",
		"Capsules":                          "\xef\x91\xab",
		"Car":                               "\xef\x86\xb9",
		"CarBattery":                        "\xef\x97\x9f",
		"CarBurst":                          "\xef\x97\xa1",
		"CarOn":                             "\xee\x93\x9d",
		"CarRear":                           "\xef\x97\x9e",
		"CarSide":                           "\xef\x97\xa4",
		"CarTunnel":                         "\xee\x93\x9e",
		"Caravan":                           "\xef\xa3\xbf",
		"CaretDown":                         "\xef\x83\x97",
		"CaretLeft":                         "\xef\x83\x99",
		"CaretRight":                        "\xef\x83\x9a",
		"CaretUp":                           "\xef\x83\x98",
		"Carrot":                            "\xef\x9e\x87",
		"CartArrowDown":                     "\xef\x88\x98",
		"CartFlatbed":                       "\xef\x91\xb4",
		"CartFlatbedSuitcase":               "\xef\x96\x9d",
		"CartPlus":                          "\xef\x88\x97",
		"CartShopping":                      "\xef\x81\xba",
		"CashRegister":                      "\xef\x9e\x88",
		"Cat":                               "\xef\x9a\xbe",
		"CediSign":                          "\xee\x83\x9f",
		"CentSign":                          "\xee\x8f\xb5",
		"Certificate":                       "\xef\x82\xa3",
		"Chair":                             "\xef\x9b\x80",
		"Chalkboard":                        "\xef\x94\x9b",
		"ChalkboardUser":                    "\xef\x94\x9c",
		"ChampagneGlasses":                  "\xef\x9e\x9f",
		"ChargingStation":                   "\xef\x97\xa7",
		"ChartArea":                         "\xef\x87\xbe",
		"ChartBar":                          "\xef\x82\x80",
		"ChartColumn":                       "\xee\x83\xa3",
		"ChartDiagram":                      "\xee\x9a\x95",
		"ChartGantt":                        "\xee\x83\xa4",
		"ChartLine":                         "\xef\x88\x81",
		"ChartPie":                          "\xef\x88\x80",
		"ChartSimple":                       "\xee\x91\xb3",
		"Check":                             "\xef\x80\x8c",
		"CheckDouble":                       "\xef\x95\xa0",
		"CheckToSlot":                       "\xef\x9d\xb2",
		"Cheese":                            "\xef\x9f\xaf",
		"Chess":                             "\xef\x90\xb9",
		"ChessBishop":                       "\xef\x90\xba",
		"ChessBoard":                        "\xef\x90\xbc",
		"ChessKing":                         "\xef\x90\xbf",
		"ChessKnight":                       "\xef\x91\x81",
		"ChessPawn":                         "\xef\x91\x83",
		"ChessQueen":                        "\xef\x91\x85",
		"ChessRook":                         "\xef\x91\x87",
		"ChevronDown":                       "\xef\x81\xb8",
		"ChevronLeft":                       "\xef\x81\x93",
		"ChevronRight":                      "\xef\x81\x94",
		"ChevronUp":                         "\xef\x81\xb7",
		"Child":                             "\xef\x86\xae",
		"ChildCombatant":                    "\xee\x93\xa0",
		"ChildDress":                        "\xee\x96\x9c",
		"ChildReaching":                     "\xee\x96\x9d",
		"Children":                          "\xee\x93\xa1",
		"Church":                            "\xef\x94\x9d",
		"Circle":                            "\xef\x84\x91",
		"CircleArrowDown":                   "\xef\x82\xab",
		"CircleArrowLeft":                   "\xef\x82\xa8",
		"CircleArrowRight":                  "\xef\x82\xa9",
		"CircleArrowUp":                     "\xef\x82\xaa",
		"CircleCheck":                       "\xef\x81\x98",
		"CircleChevronDown":                 "\xef\x84\xba",
		"CircleChevronLeft":                 "\xef\x84\xb7",
		"CircleChevronRight":                "\xef\x84\xb8",
		"CircleChevronUp":                   "\xef\x84\xb9",
		"CircleDollarToSlot":                "\xef\x92\xb9",
		"CircleDot":                         "\xef\x86\x92",
		"CircleDown":                        "\xef\x8d\x98",
		"CircleExclamation":                 "\xef\x81\xaa",
		"CircleH":                           "\xef\x91\xbe",
		"CircleHalfStroke":                  "\xef\x81\x82",
		"CircleInfo":                        "\xef\x81\x9a",
		"CircleLeft":                        "\xef\x8d\x99",
		"CircleMinus":                       "\xef\x81\x96",
		"CircleNodes":                       "\xee\x93\xa2",
		"CircleNotch":                       "\xef\x87\x8e",
		"CirclePause":                       "\xef\x8a\x8b",
		"CirclePlay":                        "\xef\x85\x84",
		"CirclePlus":                        "\xef\x81\x95",
		"CircleQuestion":                    "\xef\x81\x99",
		"CircleRadiation":                   "\xef\x9e\xba",
		"CircleRight":                       "\xef\x8d\x9a",
		"CircleStop":                        "\xef\x8a\x8d",
		"CircleUp":                          "\xef\x8d\x9b",
		"CircleUser":                        "\xef\x8a\xbd",
		"CircleXmark":                       "\xef\x81\x97",
		"City":                              "\xef\x99\x8f",
		"Clapperboard":                      "\xee\x84\xb1",
		"Clipboard":                         "\xef\x8c\xa8",
		"ClipboardCheck":                    "\xef\x91\xac",
		"ClipboardList":                     "\xef\x91\xad",
		"ClipboardQuestion":                 "\xee\x93\xa3",
		"ClipboardUser":                     "\xef\x9f\xb3",
		"Clock":                             "\xef\x80\x97",
		"ClockRotateLeft":                   "\xef\x87\x9a",
		"Clone":                             "\xef\x89\x8d",
		"ClosedCaptioning":                  "\xef\x88\x8a",
		"Cloud":                             "\xef\x83\x82",
		"CloudArrowDown":                    "\xef\x83\xad",
		"CloudArrowUp":                      "\xef\x83\xae",
		"CloudBolt":                         "\xef\x9d\xac",
		"CloudMeatball":                     "\xef\x9c\xbb",
		"CloudMoon":                         "\xef\x9b\x83",
		"CloudMoonRain":                     "\xef\x9c\xbc",
		"CloudRain":                         "\xef\x9c\xbd",
		"CloudShowersHeavy":                 "\xef\x9d\x80",
		"CloudShowersWater":                 "\xee\x93\xa4",
		"CloudSun":                          "\xef\x9b\x84",
		"CloudSunRain":                      "\xef\x9d\x83",
		"Clover":                            "\xee\x84\xb9",
		"Code":                              "\xef\x84\xa1",
		"CodeBranch":                        "\xef\x84\xa6",
		"CodeCommit":                        "\xef\x8e\x86",
		"CodeCompare":                       "\xee\x84\xba",
		"CodeFork":                          "\xee\x84\xbb",
		"CodeMerge":                         "\xef\x8e\x87",
		"CodePullRequest":                   "\xee\x84\xbc",
		"Coins":                             "\xef\x94\x9e",
		"ColonSign":                         "\xee\x85\x80",
		"Comment":                           "\xef\x81\xb5",
		"CommentDollar":                     "\xef\x99\x91",
		"CommentDots":                       "\xef\x92\xad",
		"CommentMedical":                    "\xef\x9f\xb5",
		"CommentNodes":                      "\xee\x9a\x96",
		"CommentSlash":                      "\xef\x92\xb3",
		"CommentSms":                        "\xef\x9f\x8d",
		"Comments":                          "\xef\x82\x86",
		"CommentsDollar":                    "\xef\x99\x93",
		"CompactDisc":                       "\xef\x94\x9f",
		"Compass":                           "\xef\x85\x8e",
		"CompassDrafting":                   "\xef\x95\xa8",
		"Compress":                          "\xef\x81\xa6",
		"Computer":                          "\xee\x93\xa5",
		"ComputerMouse":                     "\xef\xa3\x8c",
		"Cookie":                            "\xef\x95\xa3",
		"CookieBite":                        "\xef\x95\xa4",
		"Copy":                              "\xef\x83\x85",
		"Copyright":                         "\xef\x87\xb9",
		"Couch":                             "\xef\x92\xb8",
		"Cow":                               "\xef\x9b\x88",
		"CreditCard":                        "\xef\x82\x9d",
		"Crop":                              "\xef\x84\xa5",
		"CropSimple":                        "\xef\x95\xa5",
		"Cross":                             "\xef\x99\x94",
		"Crosshairs":                        "\xef\x81\x9b",
		"Crow":                              "\xef\x94\xa0",
		"Crown":                             "\xef\x94\xa1",
		"Crutch":                            "\xef\x9f\xb7",
		"CruzeiroSign":                      "\xee\x85\x92",
		"Cube":                              "\xef\x86\xb2",
		"Cubes":                             "\xef\x86\xb3",
		"CubesStacked":                      "\xee\x93\xa6",
		"D":                                 "D",
		"Database":                          "\xef\x87\x80",
		"DeleteLeft":                        "\xef\x95\x9a",
		"Democrat":                          "\xef\x9d\x87",
		"Desktop":                           "\xef\x8e\x90",
		"Dharmachakra":                      "\xef\x99\x95",
		"DiagramNext":                       "\xee\x91\xb6",
		"DiagramPredecessor":                "\xee\x91\xb7",
		"DiagramProject":                    "\xef\x95\x82",
		"DiagramSuccessor":                  "\xee\x91\xba",
		"Diamond":                           "\xef\x88\x99",
		"DiamondTurnRight":                  "\xef\x97\xab",
		"Dice":                              "\xef\x94\xa2",
		"DiceD20":                           "\xef\x9b\x8f",
		"DiceD6":                            "\xef\x9b\x91",
		"DiceFive":                          "\xef\x94\xa3",
		"DiceFour":                          "\xef\x94\xa4",
		"DiceOne":                           "\xef\x94\xa5",
		"DiceSix":                           "\xef\x94\xa6",
		"DiceThree":                         "\xef\x94\xa7",
		"DiceTwo":                           "\xef\x94\xa8",
		"Disease":                           "\xef\x9f\xba",
		"Display":                           "\xee\x85\xa3",
		"Divide":                            "\xef\x94\xa9",
		"Dna":                               "\xef\x91\xb1",
		"Dog":                               "\xef\x9b\x93",
		"DollarSign":                        "$",
		"Dolly":                             "\xef\x91\xb2",
		"DongSign":                          "\xee\x85\xa9",
		"DoorClosed":                        "\xef\x94\xaa",
		"DoorOpen":                          "\xef\x94\xab",
		"Dove":                              "\xef\x92\xba",
		"DownLeftAndUpRightToCenter":        "\xef\x90\xa2",
		"DownLong":                          "\xef\x8c\x89",
		"Download":                          "\xef\x80\x99",
		"Dragon":                            "\xef\x9b\x95",
		"DrawPolygon":                       "\xef\x97\xae",
		"Droplet":                           "\xef\x81\x83",
		"DropletSlash":                      "\xef\x97\x87",
		"Drum":                              "\xef\x95\xa9",
		"DrumSteelpan":                      "\xef\x95\xaa",
		"DrumstickBite":                     "\xef\x9b\x97",
		"Dumbbell":                          "\xef\x91\x8b",
		"Dumpster":                          "\xef\x9e\x93",
		"DumpsterFire":                      "\xef\x9e\x94",
		"Dungeon":                           "\xef\x9b\x99",
		"E":                                 "E",
		"EarDeaf":                           "\xef\x8a\xa4",
		"EarListen":                         "\xef\x8a\xa2",
		"EarthAfrica":                       "\xef\x95\xbc",
		"EarthAmericas":                     "\xef\x95\xbd",
		"EarthAsia":                         "\xef\x95\xbe",
		"EarthEurope":                       "\xef\x9e\xa2",
		"EarthOceania":                      "\xee\x91\xbb",
		"Egg":                               "\xef\x9f\xbb",
		"Eject":                             "\xef\x81\x92",
		"Elevator":                          "\xee\x85\xad",
		"Ellipsis":                          "\xef\x85\x81",
		"EllipsisVertical":                  "\xef\x85\x82",
		"Envelope":                          "\xef\x83\xa0",
		"EnvelopeCircleCheck":               "\xee\x93\xa8",
		"EnvelopeOpen":                      "\xef\x8a\xb6",
		"EnvelopeOpenText":                  "\xef\x99\x98",
		"EnvelopesBulk":                     "\xef\x99\xb4",
		"Equals":                            "=",
		"Eraser":                            "\xef\x84\xad",
		"Ethernet":                          "\xef\x9e\x96",
		"EuroSign":                          "\xef\x85\x93",
		"Exclamation":                       "!",
		"Expand":                            "\xef\x81\xa5",
		"Explosion":                         "\xee\x93\xa9",
		"Eye":                               "\xef\x81\xae",
		"EyeDropper":                        "\xef\x87\xbb",
		"EyeLowVision":                      "\xef\x8a\xa8",
		"EyeSlash":                          "\xef\x81\xb0",
		"F":                                 "F",
		"FaceAngry":                         "\xef\x95\x96",
		"FaceDizzy":                         "\xef\x95\xa7",
		"FaceFlushed":                       "\xef\x95\xb9",
		"FaceFrown":                         "\xef\x84\x99",
		"FaceFrownOpen":                     "\xef\x95\xba",
		"FaceGrimace":                       "\xef\x95\xbf",
		"FaceGrin":                          "\xef\x96\x80",
		"FaceGrinBeam":                      "\xef\x96\x82",
		"FaceGrinBeamSweat":                 "\xef\x96\x83",
		"FaceGrinHearts":                    "\xef\x96\x84",
		"FaceGrinSquint":                    "\xef\x96\x85",
		"FaceGrinSquintTears":               "\xef\x96\x86",
		"FaceGrinStars":                     "\xef\x96\x87",
		"FaceGrinTears":                     "\xef\x96\x88",
		"FaceGrinTongue":                    "\xef\x96\x89",
		"FaceGrinTongueSquint":              "\xef\x96\x8a",
		"FaceGrinTongueWink":                "\xef\x96\x8b",
		"FaceGrinWide":                      "\xef\x96\x81",
		"FaceGrinWink":                      "\xef\x96\x8c",
		"FaceKiss":                          "\xef\x96\x96",
		"FaceKissBeam":                      "\xef\x96\x97",
		"FaceKissWinkHeart":                 "\xef\x96\x98",
		"FaceLaugh":                         "\xef\x96\x99",
		"FaceLaughBeam":                     "\xef\x96\x9a",
		"FaceLaughSquint":                   "\xef\x96\x9b",
		"FaceLaughWink":                     "\xef\x96\x9c",
		"FaceMeh":                           "\xef\x84\x9a",
		"FaceMehBlank":                      "\xef\x96\xa4",
		"FaceRollingEyes":                   "\xef\x96\xa5",
		"FaceSadCry":                        "\xef\x96\xb3",
		"FaceSadTear":                       "\xef\x96\xb4",
		"FaceSmile":                         "\xef\x84\x98",
		"FaceSmileBeam":                     "\xef\x96\xb8",
		"FaceSmileWink":                     "\xef\x93\x9a",
		"FaceSurprise":                      "\xef\x97\x82",
		"FaceTired":                         "\xef\x97\x88",
		"Fan":                               "\xef\xa1\xa3",
		"Faucet":                            "\xee\x80\x85",
		"FaucetDrip":                        "\xee\x80\x86",
		"Fax":                               "\xef\x86\xac",
		"Feather":                           "\xef\x94\xad",
		"FeatherPointed":                    "\xef\x95\xab",
		"Ferry":                             "\xee\x93\xaa",
		"File":                              "\xef\x85\x9b",
		"FileArrowDown":                     "\xef\x95\xad",
		"FileArrowUp":                       "\xef\x95\xb4",
		"FileAudio":                         "\xef\x87\x87",
		"FileCircleCheck":                   "\xee\x96\xa0",
		"FileCircleExclamation":             "\xee\x93\xab",
		"FileCircleMinus":                   "\xee\x93\xad",
		"FileCirclePlus":                    "\xee\x92\x94",
		"FileCircleQuestion":                "\xee\x93\xaf",
		"FileCircleXmark":                   "\xee\x96\xa1",
		"FileCode":                          "\xef\x87\x89",
		"FileContract":                      "\xef\x95\xac",
		"FileCsv":                           "\xef\x9b\x9d",
		"FileExcel":                         "\xef\x87\x83",
		"FileExport":                        "\xef\x95\xae",
		"FileFragment":                      "\xee\x9a\x97",
		"FileHalfDashed":                    "\xee\x9a\x98",
		"FileImage":                         "\xef\x87\x85",
		"FileImport":                        "\xef\x95\xaf",
		"FileInvoice":                       "\xef\x95\xb0",
		"FileInvoiceDollar":                 "\xef\x95\xb1",
		"FileLines":                         "\xef\x85\x9c",
		"FileMedical":                       "\xef\x91\xb7",
		"FilePdf":                           "\xef\x87\x81",
		"FilePen":                           "\xef\x8c\x9c",
		"FilePowerpoint":                    "\xef\x87\x84",
		"FilePrescription":                  "\xef\x95\xb2",
		"FileShield":                        "\xee\x93\xb0",
		"FileSignature":                     "\xef\x95\xb3",
		"FileVideo":                         "\xef\x87\x88",
		"FileWaveform":                      "\xef\x91\xb8",
		"FileWord":                          "\xef\x87\x82",
		"FileZipper":                        "\xef\x87\x86",
		"Fill":                              "\xef\x95\xb5",
		"FillDrip":                          "\xef\x95\xb6",
		"Film":                              "\xef\x80\x88",
		"Filter":                            "\xef\x82\xb0",
		"FilterCircleDollar":                "\xef\x99\xa2",
		"FilterCircleXmark":                 "\xee\x85\xbb",
		"Fingerprint":                       "\xef\x95\xb7",
		"Fire":                              "\xef\x81\xad",
		"FireBurner":                        "\xee\x93\xb1",
		"FireExtinguisher":                  "\xef\x84\xb4",
		"FireFlameCurved":                   "\xef\x9f\xa4",
		"FireFlameSimple":                   "\xef\x91\xaa",
		"Fish":                              "\xef\x95\xb8",
		"FishFins":                          "\xee\x93\xb2",
		"Flag":                              "\xef\x80\xa4",
		"FlagCheckered":                     "\xef\x84\x9e",
		"FlagUsa":                           "\xef\x9d\x8d",
		"Flask":                             "\xef\x83\x83",
		"FlaskVial":                         "\xee\x93\xb3",
		"FloppyDisk":                        "\xef\x83\x87",
		"FlorinSign":                        "\xee\x86\x84",
		"Folder":                            "\xef\x81\xbb",
		"FolderClosed":                      "\xee\x86\x85",
		"FolderMinus":                       "\xef\x99\x9d",
		"FolderOpen":                        "\xef\x81\xbc",
		"FolderPlus":                        "\xef\x99\x9e",
		"FolderTree":                        "\xef\xa0\x82",
		"Font":                              "\xef\x80\xb1",
		"FontAwesome":                       "\xef\x8a\xb4",
		"Football":                          "\xef\x91\x8e",
		"Forward":                           "\xef\x81\x8e",
		"ForwardFast":                       "\xef\x81\x90",
		"ForwardStep":                       "\xef\x81\x91",
		"FrancSign":                         "\xee\x86\x8f",
		"Frog":                              "\xef\x94\xae",
		"Futbol":                            "\xef\x87\xa3",
		"G":                                 "G",
		"Gamepad":                           "\xef\x84\x9b",
		"GasPump":                           "\xef\x94\xaf",
		"Gauge":                             "\xef\x98\xa4",
		"GaugeHigh":                         "\xef\x98\xa5",
		"GaugeSimple":                       "\xef\x98\xa9",
		"GaugeSimpleHigh":                   "\xef\x98\xaa",
		"Gavel":                             "\xef\x83\xa3",
		"Gear":                              "\xef\x80\x93",
		"Gears":                             "\xef\x82\x85",
		"Gem":                               "\xef\x8e\xa5",
		"Genderless":                        "\xef\x88\xad",
		"Ghost":                             "\xef\x9b\xa2",
		"Gift":                              "\xef\x81\xab",
		"Gifts":                             "\xef\x9e\x9c",
		"GlassWater":                        "\xee\x93\xb4",
		"GlassWaterDroplet":                 "\xee\x93\xb5",
		"Glasses":                           "\xef\x94\xb0",
		"Globe":                             "\xef\x82\xac",
		"GolfBallTee":                       "\xef\x91\x90",
		"Gopuram":                           "\xef\x99\xa4",
		"GraduationCap":                     "\xef\x86\x9d",
		"GreaterThan":                       ">",
		"GreaterThanEqual":                  "\xef\x94\xb2",
		"Grip":                              "\xef\x96\x8d",
		"GripLines":                         "\xef\x9e\xa4",
		"GripLinesVertical":                 "\xef\x9e\xa5",
		"GripVertical":                      "\xef\x96\x8e",
		"GroupArrowsRotate":                 "\xee\x93\xb6",
		"GuaraniSign":                       "\xee\x86\x9a",
		"Guitar":                            "\xef\x9e\xa6",
		"Gun":                               "\xee\x86\x9b",
		"H":                                 "H",
		"Hammer":                            "\xef\x9b\xa3",
		"Hamsa":                             "\xef\x99\xa5",
		"Hand":                              "\xef\x89\x96",
		"HandBackFist":                      "\xef\x89\x95",
		"HandDots":                          "\xef\x91\xa1",
		"HandFist":                          "\xef\x9b\x9e",
		"HandHolding":                       "\xef\x92\xbd",
		"HandHoldingDollar":                 "\xef\x93\x80",
		"HandHoldingDroplet":                "\xef\x93\x81",
		"HandHoldingHand":                   "\xee\x93\xb7",
		"HandHoldingHeart":                  "\xef\x92\xbe",
		"HandHoldingMedical":                "\xee\x81\x9c",
		"HandLizard":                        "\xef\x89\x98",
		"HandMiddleFinger":                  "\xef\xa0\x86",
		"HandPeace":                         "\xef\x89\x9b",
		"HandPointDown":                     "\xef\x82\xa7",
		"HandPointLeft":                     "\xef\x82\xa5",
		"HandPointRight":                    "\xef\x82\xa4",
		"HandPointUp":                       "\xef\x82\xa6",
		"HandPointer":                       "\xef\x89\x9a",
		"HandScissors":                      "\xef\x89\x97",
		"HandSparkles":                      "\xee\x81\x9d",
		"HandSpock":                         "\xef\x89\x99",
		"Handcuffs":                         "\xee\x93\xb8",
		"Hands":                             "\xef\x8a\xa7",
		"HandsAslInterpreting":              "\xef\x8a\xa3",
		"HandsBound":                        "\xee\x93\xb9",
		"HandsBubbles":                      "\xee\x81\x9e",
		"HandsClapping":                     "\xee\x86\xa8",
		"HandsHolding":                      "\xef\x93\x82",
		"HandsHoldingChild":                 "\xee\x93\xba",
		"HandsHoldingCircle":                "\xee\x93\xbb",
		"HandsPraying":                      "\xef\x9a\x84",
		"Handshake":                         "\xef\x8a\xb5",
		"HandshakeAngle":                    "\xef\x93\x84",
		"HandshakeSimple":                   "\xef\x93\x86",
		"HandshakeSimpleSlash":              "\xee\x81\x9f",
		"HandshakeSlash":                    "\xee\x81\xa0",
		"Hanukiah":                          "\xef\x9b\xa6",
		"HardDrive":                         "\xef\x82\xa0",
		"Hashtag":                           "#",
		"HatCowboy":                         "\xef\xa3\x80",
		"HatCowboySide":                     "\xef\xa3\x81",
		"HatWizard":                         "\xef\x9b\xa8",
		"HeadSideCough":                     "\xee\x81\xa1",
		"HeadSideCoughSlash":                "\xee\x81\xa2",
		"HeadSideMask":                      "\xee\x81\xa3",
		"HeadSideVirus":                     "\xee\x81\xa4",
		"Heading":                           "\xef\x87\x9c",
		"Headphones":                        "\xef\x80\xa5",
		"HeadphonesSimple":                  "\xef\x96\x8f",
		"Headset":                           "\xef\x96\x90",
		"Heart":                             "\xef\x80\x84",
		"HeartCircleBolt":                   "\xee\x93\xbc",
		"HeartCircleCheck":                  "\xee\x93\xbd",
		"HeartCircleExclamation":            "\xee\x93\xbe",
		"HeartCircleMinus":                  "\xee\x93\xbf",
		"HeartCirclePlus":                   "\xee\x94\x80",
		"HeartCircleXmark":                  "\xee\x94\x81",
		"HeartCrack":                        "\xef\x9e\xa9",
		"HeartPulse":                        "\xef\x88\x9e",
		"Helicopter":                        "\xef\x94\xb3",
		"HelicopterSymbol":                  "\xee\x94\x82",
		"HelmetSafety":                      "\xef\xa0\x87",
		"HelmetUn":                          "\xee\x94\x83",
		"HexagonNodes":                      "\xee\x9a\x99",
		"HexagonNodesBolt":                  "\xee\x9a\x9a",
		"Highlighter":                       "\xef\x96\x91",
		"HillAvalanche":                     "\xee\x94\x87",
		"HillRockslide":                     "\xee\x94\x88",
		"Hippo":                             "\xef\x9b\xad",
		"HockeyPuck":                        "\xef\x91\x93",
		"HollyBerry":                        "\xef\x9e\xaa",
		"Horse":                             "\xef\x9b\xb0",
		"HorseHead":                         "\xef\x9e\xab",
		"Hospital":                          "\xef\x83\xb8",
		"HospitalUser":                      "\xef\xa0\x8d",
		"HotTubPerson":                      "\xef\x96\x93",
		"Hotdog":                            "\xef\xa0\x8f",
		"Hotel":                             "\xef\x96\x94",
		"Hourglass":                         "\xef\x89\x94",
		"HourglassEnd":                      "\xef\x89\x93",
		"HourglassHalf":                     "\xef\x89\x92",
		"HourglassStart":                    "\xef\x89\x91",
		"House":                             "\xef\x80\x95",
		"HouseChimney":                      "\xee\x8e\xaf",
		"HouseChimneyCrack":                 "\xef\x9b\xb1",
		"HouseChimneyMedical":               "\xef\x9f\xb2",
		"HouseChimneyUser":                  "\xee\x81\xa5",
		"HouseChimneyWindow":                "\xee\x80\x8d",
		"HouseCircleCheck":                  "\xee\x94\x89",
		"HouseCircleExclamation":            "\xee\x94\x8a",
		"HouseCircleXmark":                  "\xee\x94\x8b",
		"HouseCrack":                        "\xee\x8e\xb1",
		"HouseFire":                         "\xee\x94\x8c",
		"HouseFlag":                         "\xee\x94\x8d",
		"HouseFloodWater":                   "\xee\x94\x8e",
		"HouseFloodWaterCircleArrowRight":   "\xee\x94\x8f",
		"HouseLaptop":                       "\xee\x81\xa6",
		"HouseLock":                         "\xee\x94\x90",
		"HouseMedical":                      "\xee\x8e\xb2",
		"HouseMedicalCircleCheck":           "\xee\x94\x91",
		"HouseMedicalCircleExclamation":     "\xee\x94\x92",
		"HouseMedicalCircleXmark":           "\xee\x94\x93",
		"HouseMedicalFlag":                  "\xee\x94\x94",
		"HouseSignal":                       "\xee\x80\x92",
		"HouseTsunami":                      "\xee\x94\x95",
		"HouseUser":                         "\xee\x86\xb0",
		"HryvniaSign":                       "\xef\x9b\xb2",
		"Hurricane":                         "\xef\x9d\x91",
		"I":                                 "I",
		"ICursor":                           "\xef\x89\x86",
		"IceCream":                          "\xef\xa0\x90",
		"Icicles":                           "\xef\x9e\xad",
		"Icons":                             "\xef\xa1\xad",
		"IdBadge":                           "\xef\x8b\x81",
		"IdCard":                            "\xef\x8b\x82",
		"IdCardClip":                        "\xef\x91\xbf",
		"Igloo":                             "\xef\x9e\xae",
		"Image":                             "\xef\x80\xbe",
		"ImagePortrait":                     "\xef\x8f\xa0",
		"Images":                            "\xef\x8c\x82",
		"Inbox":                             "\xef\x80\x9c",
		"Indent":                            "\xef\x80\xbc",
		"IndianRupeeSign":                   "\xee\x86\xbc",
		"Industry":                          "\xef\x89\xb5",
		"Infinity":                          "\xef\x94\xb4",
		"Info":                              "\xef\x84\xa9",
		"Italic":                            "\xef\x80\xb3",
		"J":                                 "J",
		"Jar":                               "\xee\x94\x96",
		"JarWheat":                          "\xee\x94\x97",
		"Jedi":                              "\xef\x99\xa9",
		"JetFighter":                        "\xef\x83\xbb",
		"JetFighterUp":                      "\xee\x94\x98",
		"Joint":                             "\xef\x96\x95",
		"JugDetergent":                      "\xee\x94\x99",
		"K":                                 "K",
		"Kaaba":                             "\xef\x99\xab",
		"Key":                               "\xef\x82\x84",
		"Keyboard":                          "\xef\x84\x9c",
		"Khanda":                            "\xef\x99\xad",
		"KipSign":                           "\xee\x87\x84",
		"KitMedical":                        "\xef\x91\xb9",
		"KitchenSet":                        "\xee\x94\x9a",
		"KiwiBird":                          "\xef\x94\xb5",
		"L":                                 "L",
		"LandMineOn":                        "\xee\x94\x9b",
		"Landmark":                          "\xef\x99\xaf",
		"LandmarkDome":                      "\xef\x9d\x92",
		"LandmarkFlag":                      "\xee\x94\x9c",
		"Language":                          "\xef\x86\xab",
		"Laptop":                            "\xef\x84\x89",
		"LaptopCode":                        "\xef\x97\xbc",
		"LaptopFile":                        "\xee\x94\x9d",
		"LaptopMedical":                     "\xef\xa0\x92",
		"LariSign":                          "\xee\x87\x88",
		"LayerGroup":                        "\xef\x97\xbd",
		"Leaf":                              "\xef\x81\xac",
		"LeftLong":                          "\xef\x8c\x8a",
		"LeftRight":                         "\xef\x8c\xb7",
		"Lemon":                             "\xef\x82\x94",
		"LessThan":                          "<",
		"LessThanEqual":                     "\xef\x94\xb7",
		"LifeRing":                          "\xef\x87\x8d",
		"Lightbulb":                         "\xef\x83\xab",
		"LinesLeaning":                      "\xee\x94\x9e",
		"Link":                              "\xef\x83\x81",
		"LinkSlash":                         "\xef\x84\xa7",
		"LiraSign":                          "\xef\x86\x95",
		"List":                              "\xef\x80\xba",
		"ListCheck":                         "\xef\x82\xae",
		"ListOl":                            "\xef\x83\x8b",
		"ListUl":                            "\xef\x83\x8a",
		"LitecoinSign":                      "\xee\x87\x93",
		"LocationArrow":                     "\xef\x84\xa4",
		"LocationCrosshairs":                "\xef\x98\x81",
		"LocationDot":                       "\xef\x8f\x85",
		"LocationPin":                       "\xef\x81\x81",
		"LocationPinLock":                   "\xee\x94\x9f",
		"Lock":                              "\xef\x80\xa3",
		"LockOpen":                          "\xef\x8f\x81",
		"Locust":                            "\xee\x94\xa0",
		"Lungs":                             "\xef\x98\x84",
		"LungsVirus":                        "\xee\x81\xa7",
		"M":                                 "M",
		"Magnet":                            "\xef\x81\xb6",
		"MagnifyingGlass":                   "\xef\x80\x82",
		"MagnifyingGlassArrowRight":         "\xee\x94\xa1",
		"MagnifyingGlassChart":              "\xee\x94\xa2",
		"MagnifyingGlassDollar":             "\xef\x9a\x88",
		"MagnifyingGlassLocation":           "\xef\x9a\x89",
		"MagnifyingGlassMinus":              "\xef\x80\x90",
		"MagnifyingGlassPlus":               "\xef\x80\x8e",
		"ManatSign":                         "\xee\x87\x95",
		"Map":                               "\xef\x89\xb9",
		"MapLocation":                       "\xef\x96\x9f",
		"MapLocationDot":                    "\xef\x96\xa0",
		"MapPin":                            "\xef\x89\xb6",
		"Marker":                            "\xef\x96\xa1",
		"Mars":                              "\xef\x88\xa2",
		"MarsAndVenus":                      "\xef\x88\xa4",
		"MarsAndVenusBurst":                 "\xee\x94\xa3",
		"MarsDouble":                        "\xef\x88\xa7",
		"MarsStroke":                        "\xef\x88\xa9",
		"MarsStrokeRight":                   "\xef\x88\xab",
		"MarsStrokeUp":                      "\xef\x88\xaa",
		"MartiniGlass":                      "\xef\x95\xbb",
		"MartiniGlassCitrus":                "\xef\x95\xa1",
		"MartiniGlassEmpty":                 "\xef\x80\x80",
		"Mask":                              "\xef\x9b\xba",
		"MaskFace":                          "\xee\x87\x97",
		"MaskVentilator":                    "\xee\x94\xa4",
		"MasksTheater":                      "\xef\x98\xb0",
		"MattressPillow":                    "\xee\x94\xa5",
		"Maximize":                          "\xef\x8c\x9e",
		"Medal":                             "\xef\x96\xa2",
		"Memory":                            "\xef\x94\xb8",
		"Menorah":                           "\xef\x99\xb6",
		"Mercury":                           "\xef\x88\xa3",
		"Message":                           "\xef\x89\xba",
		"Meteor":                            "\xef\x9d\x93",
		"Microchip":                         "\xef\x8b\x9b",
		"Microphone":                        "\xef\x84\xb0",
		"MicrophoneLines":                   "\xef\x8f\x89",
		"MicrophoneLinesSlash":              "\xef\x94\xb9",
		"MicrophoneSlash":                   "\xef\x84\xb1",
		"Microscope":                        "\xef\x98\x90",
		"MillSign":                          "\xee\x87\xad",
		"Minimize":                          "\xef\x9e\x8c",
		"Minus":                             "\xef\x81\xa8",
		"Mitten":                            "\xef\x9e\xb5",
		"Mobile":                            "\xef\x8f\x8e",
		"MobileButton":                      "\xef\x84\x8b",
		"MobileRetro":                       "\xee\x94\xa7",
		"MobileScreen":                      "\xef\x8f\x8f",
		"MobileScreenButton":                "\xef\x8f\x8d",
		"MoneyBill":                         "\xef\x83\x96",
		"MoneyBill1":                        "\xef\x8f\x91",
		"MoneyBill1Wave":                    "\xef\x94\xbb",
		"MoneyBillTransfer":                 "\xee\x94\xa8",
		"MoneyBillTrendUp":                  "\xee\x94\xa9",
		"MoneyBillWave":                     "\xef\x94\xba",
		"MoneyBillWheat":                    "\xee\x94\xaa",
		"MoneyBills":                        "\xee\x87\xb3",
		"MoneyCheck":                        "\xef\x94\xbc",
		"MoneyCheckDollar":                  "\xef\x94\xbd",
		"Monument":                          "\xef\x96\xa6",
		"Moon":                              "\xef\x86\x86",
		"MortarPestle":                      "\xef\x96\xa7",
		"Mosque":                            "\xef\x99\xb8",
		"Mosquito":                          "\xee\x94\xab",
		"MosquitoNet":                       "\xee\x94\xac",
		"Motorcycle":                        "\xef\x88\x9c",
		"Mound":                             "\xee\x94\xad",
		"Mountain":                          "\xef\x9b\xbc",
		"MountainCity":                      "\xee\x94\xae",
		"MountainSun":                       "\xee\x94\xaf",
		"MugHot":                            "\xef\x9e\xb6",
		"MugSaucer":                         "\xef\x83\xb4",
		"Music":                             "\xef\x80\x81",
		"N":                                 "N",
		"NairaSign":                         "\xee\x87\xb6",
		"NetworkWired":                      "\xef\x9b\xbf",
		"Neuter":                            "\xef\x88\xac",
		"Newspaper":                         "\xef\x87\xaa",
		"NotEqual":                          "\xef\x94\xbe",
		"Notdef":                            "\xee\x87\xbe",
		"NoteSticky":                        "\xef\x89\x89",
		"NotesMedical":                      "\xef\x92\x81",
		"O":                                 "O",
		"ObjectGroup":                       "\xef\x89\x87",
		"ObjectUngroup":                     "\xef\x89\x88",
		"OilCan":                            "\xef\x98\x93",
		"OilWell":                           "\xee\x94\xb2",
		"Om":                                "\xef\x99\xb9",
		"Otter":                             "\xef\x9c\x80",
		"Outdent":                           "\xef\x80\xbb",
		"P":                                 "P",
		"Pager":                             "\xef\xa0\x95",
		"PaintRoller":                       "\xef\x96\xaa",
		"Paintbrush":                        "\xef\x87\xbc",
		"Palette":                           "\xef\x94\xbf",
		"Pallet":                            "\xef\x92\x82",
		"Panorama":                          "\xee\x88\x89",
		"PaperPlane":                        "\xef\x87\x98",
		"Paperclip":                         "\xef\x83\x86",
		"ParachuteBox":                      "\xef\x93\x8d",
		"Paragraph":                         "\xef\x87\x9d",
		"Passport":                          "\xef\x96\xab",
		"Paste":                             "\xef\x83\xaa",
		"Pause":                             "\xef\x81\x8c",
		"Paw":                               "\xef\x86\xb0",
		"Peace":                             "\xef\x99\xbc",
		"Pen":                               "\xef\x8c\x84",
		"PenClip":                           "\xef\x8c\x85",
		"PenFancy":                          "\xef\x96\xac",
		"PenNib":                            "\xef\x96\xad",
		"PenRuler":                          "\xef\x96\xae",
		"PenToSquare":                       "\xef\x81\x84",
		"Pencil":                            "\xef\x8c\x83",
		"PeopleArrows":                      "\xee\x81\xa8",
		"PeopleCarryBox":                    "\xef\x93\x8e",
		"PeopleGroup":                       "\xee\x94\xb3",
		"PeopleLine":                        "\xee\x94\xb4",
		"PeoplePulling":                     "\xee\x94\xb5",
		"PeopleRobbery":                     "\xee\x94\xb6",
		"PeopleRoof":                        "\xee\x94\xb7",
		"PepperHot":                         "\xef\xa0\x96",
		"Percent":                           "%",
		"Person":                            "\xef\x86\x83",
		"PersonArrowDownToLine":             "\xee\x94\xb8",
		"PersonArrowUpFromLine":             "\xee\x94\xb9",
		"PersonBiking":                      "\xef\xa1\x8a",
		"PersonBooth":                       "\xef\x9d\x96",
		"PersonBreastfeeding":               "\xee\x94\xba",
		"PersonBurst":                       "\xee\x94\xbb",
		"PersonCane":                        "\xee\x94\xbc",
		"PersonChalkboard":                  "\xee\x94\xbd",
		"PersonCircleCheck":                 "\xee\x94\xbe",
		"PersonCircleExclamation":           "\xee\x94\xbf",
		"PersonCircleMinus":                 "\xee\x95\x80",
		"PersonCirclePlus":                  "\xee\x95\x81",
		"PersonCircleQuestion":              "\xee\x95\x82",
		"PersonCircleXmark":                 "\xee\x95\x83",
		"PersonDigging":                     "\xef\xa1\x9e",
		"PersonDotsFromLine":                "\xef\x91\xb0",
		"PersonDress":                       "\xef\x86\x82",
		"PersonDressBurst":                  "\xee\x95\x84",
		"PersonDrowning":                    "\xee\x95\x85",
		"PersonFalling":                     "\xee\x95\x86",
		"PersonFallingBurst":                "\xee\x95\x87",
		"PersonHalfDress":                   "\xee\x95\x88",
		"PersonHarassing":                   "\xee\x95\x89",
		"PersonHiking":                      "\xef\x9b\xac",
		"PersonMilitaryPointing":            "\xee\x95\x8a",
		"PersonMilitaryRifle":               "\xee\x95\x8b",
		"PersonMilitaryToPerson":            "\xee\x95\x8c",
		"PersonPraying":                     "\xef\x9a\x83",
		"PersonPregnant":                    "\xee\x8c\x9e",
		"PersonRays":                        "\xee\x95\x8d",
		"PersonRifle":                       "\xee\x95\x8e",
		"PersonRunning":                     "\xef\x9c\x8c",
		"PersonShelter":                     "\xee\x95\x8f",
		"PersonSkating":                     "\xef\x9f\x85",
		"PersonSkiing":                      "\xef\x9f\x89",
		"PersonSkiingNordic":                "\xef\x9f\x8a",
		"PersonSnowboarding":                "\xef\x9f\x8e",
		"PersonSwimming":                    "\xef\x97\x84",
		"PersonThroughWindow":               "\xee\x96\xa9",
		"PersonWalking":                     "\xef\x95\x94",
		"PersonWalkingArrowLoopLeft":        "\xee\x95\x91",
		"PersonWalkingArrowRight":           "\xee\x95\x92",
		"PersonWalkingDashedLineArrowRight": "\xee\x95\x93",
		"PersonWalkingLuggage":              "\xee\x95\x94",
		"PersonWalkingWithCane":             "\xef\x8a\x9d",
		"PesetaSign":                        "\xee\x88\xa1",
		"PesoSign":                          "\xee\x88\xa2",
		"Phone":                             "\xef\x82\x95",
		"PhoneFlip":                         "\xef\xa1\xb9",
		"PhoneSlash":                        "\xef\x8f\x9d",
		"PhoneVolume":                       "\xef\x8a\xa0",
		"PhotoFilm":                         "\xef\xa1\xbc",
		"PiggyBank":                         "\xef\x93\x93",
		"Pills":                             "\xef\x92\x84",
		"PizzaSlice":                        "\xef\xa0\x98",
		"PlaceOfWorship":                    "\xef\x99\xbf",
		"Plane":                             "\xef\x81\xb2",
		"PlaneArrival":                      "\xef\x96\xaf",
		"PlaneCircleCheck":                  "\xee\x95\x95",
		"PlaneCircleExclamation":            "\xee\x95\x96",
		"PlaneCircleXmark":                  "\xee\x95\x97",
		"PlaneDeparture":                    "\xef\x96\xb0",
		"PlaneLock":                         "\xee\x95\x98",
		"PlaneSlash":                        "\xee\x81\xa9",
		"PlaneUp":                           "\xee\x88\xad",
		"PlantWilt":                         "\xee\x96\xaa",
		"PlateWheat":                        "\xee\x95\x9a",
		"Play":                              "\xef\x81\x8b",
		"Plug":                              "\xef\x87\xa6",
		"PlugCircleBolt":                    "\xee\x95\x9b",
		"PlugCircleCheck":                   "\xee\x95\x9c",
		"PlugCircleExclamation":             "\xee\x95\x9d",
		"PlugCircleMinus":                   "\xee\x95\x9e",
		"PlugCirclePlus":                    "\xee\x95\x9f",
		"PlugCircleXmark":                   "\xee\x95\xa0",
		"Plus":                              "+",
		"PlusMinus":                         "\xee\x90\xbc",
		"Podcast":                           "\xef\x8b\x8e",
		"Poo":                               "\xef\x8b\xbe",
		"PooStorm":                          "\xef\x9d\x9a",
		"Poop":                              "\xef\x98\x99",
		"PowerOff":                          "\xef\x80\x91",
		"Prescription":                      "\xef\x96\xb1",
		"PrescriptionBottle":                "\xef\x92\x85",
		"PrescriptionBottleMedical":         "\xef\x92\x86",
		"Print":                             "\xef\x80\xaf",
		"PumpMedical":                       "\xee\x81\xaa",
		"PumpSoap":                          "\xee\x81\xab",
		"PuzzlePiece":                       "\xef\x84\xae",
		"Q":                                 "Q",
		"Qrcode":                            "\xef\x80\xa9",
		"Question":                          "?",
		"QuoteLeft":                         "\xef\x84\x8d",
		"QuoteRight":                        "\xef\x84\x8e",
		"R":                                 "R",
		"Radiation":                         "\xef\x9e\xb9",
		"Radio":                             "\xef\xa3\x97",
		"Rainbow":                           "\xef\x9d\x9b",
		"RankingStar":                       "\xee\x95\xa1",
		"Receipt":                           "\xef\x95\x83",
		"RecordVinyl":                       "\xef\xa3\x99",
		"RectangleAd":                       "\xef\x99\x81",
		"RectangleList":                     "\xef\x80\xa2",
		"RectangleXmark":                    "\xef\x90\x90",
		"Recycle":                           "\xef\x86\xb8",
		"Registered":                        "\xef\x89\x9d",
		"Repeat":                            "\xef\x8d\xa3",
		"Reply":                             "\xef\x8f\xa5",
		"ReplyAll":                          "\xef\x84\xa2",
		"Republican":                        "\xef\x9d\x9e",
		"Restroom":                          "\xef\x9e\xbd",
		"Retweet":                           "\xef\x81\xb9",
		"Ribbon":                            "\xef\x93\x96",
		"RightFromBracket":                  "\xef\x8b\xb5",
		"RightLeft":                         "\xef\x8d\xa2",
		"RightLong":                         "\xef\x8c\x8b",
		"RightToBracket":                    "\xef\x8b\xb6",
		"Ring":                              "\xef\x9c\x8b",
		"Road":                              "\xef\x80\x98",
		"RoadBarrier":                       "\xee\x95\xa2",
		"RoadBridge":                        "\xee\x95\xa3",
		"RoadCircleCheck":                   "\xee\x95\xa4",
		"RoadCircleExclamation":             "\xee\x95\xa5",
		"RoadCircleXmark":                   "\xee\x95\xa6",
		"RoadLock":                          "\xee\x95\xa7",
		"RoadSpikes":                        "\xee\x95\xa8",
		"Robot":                             "\xef\x95\x84",
		"Rocket":                            "\xef\x84\xb5",
		"Rotate":                            "\xef\x8b\xb1",
		"RotateLeft":                        "\xef\x8b\xaa",
		"RotateRight":                       "\xef\x8b\xb9",
		"Route":                             "\xef\x93\x97",
		"Rss":                               "\xef\x82\x9e",
		"RubleSign":                         "\xef\x85\x98",
		"Rug":                               "\xee\x95\xa9",
		"Ruler":                             "\xef\x95\x85",
		"RulerCombined":                     "\xef\x95\x86",
		"RulerHorizontal":                   "\xef\x95\x87",
		"RulerVertical":                     "\xef\x95\x88",
		"RupeeSign":                         "\xef\x85\x96",
		"RupiahSign":                        "\xee\x88\xbd",
		"S":                                 "S",
		"SackDollar":                        "\xef\xa0\x9d",
		"SackXmark":                         "\xee\x95\xaa",
		"Sailboat":                          "\xee\x91\x85",
		"Satellite":                         "\xef\x9e\xbf",
		"SatelliteDish":                     "\xef\x9f\x80",
		"ScaleBalanced":                     "\xef\x89\x8e",
		"ScaleUnbalanced":                   "\xef\x94\x95",
		"ScaleUnbalancedFlip":               "\xef\x94\x96",
		"School":                            "\xef\x95\x89",
		"SchoolCircleCheck":                 "\xee\x95\xab",
		"SchoolCircleExclamation":           "\xee\x95\xac",
		"SchoolCircleXmark":                 "\xee\x95\xad",
		"SchoolFlag":                        "\xee\x95\xae",
		"SchoolLock":                        "\xee\x95\xaf",
		"Scissors":                          "\xef\x83\x84",
		"Screwdriver":                       "\xef\x95\x8a",
		"ScrewdriverWrench":                 "\xef\x9f\x99",
		"Scroll":                            "\xef\x9c\x8e",
		"ScrollTorah":                       "\xef\x9a\xa0",
		"SdCard":                            "\xef\x9f\x82",
		"Section":                           "\xee\x91\x87",
		"Seedling":                          "\xef\x93\x98",
		"Server":                            "\xef\x88\xb3",
		"Shapes":                            "\xef\x98\x9f",
		"Share":                             "\xef\x81\xa4",
		"ShareFromSquare":                   "\xef\x85\x8d",
		"ShareNodes":                        "\xef\x87\xa0",
		"SheetPlastic":                      "\xee\x95\xb1",
		"ShekelSign":                        "\xef\x88\x8b",
		"Shield":                            "\xef\x84\xb2",
		"ShieldCat":                         "\xee\x95\xb2",
		"ShieldDog":                         "\xee\x95\xb3",
		"ShieldHalved":                      "\xef\x8f\xad",
		"ShieldHeart":                       "\xee\x95\xb4",
		"ShieldVirus":                       "\xee\x81\xac",
		"Ship":                              "\xef\x88\x9a",
		"Shirt":                             "\xef\x95\x93",
		"ShoePrints":                        "\xef\x95\x8b",
		"Shop":                              "\xef\x95\x8f",
		"ShopLock":                          "\xee\x92\xa5",
		"ShopSlash":                         "\xee\x81\xb0",
		"Shower":                            "\xef\x8b\x8c",
		"Shrimp":                            "\xee\x91\x88",
		"Shuffle":                           "\xef\x81\xb4",
		"ShuttleSpace":                      "\xef\x86\x97",
		"SignHanging":                       "\xef\x93\x99",
		"Signal":                            "\xef\x80\x92",
		"Signature":                         "\xef\x96\xb7",
		"SignsPost":                         "\xef\x89\xb7",
		"SimCard":                           "\xef\x9f\x84",
		"Sink":                              "\xee\x81\xad",
		"Sitemap":                           "\xef\x83\xa8",
		"Skull":                             "\xef\x95\x8c",
		"SkullCrossbones":                   "\xef\x9c\x94",
		"Slash":                             "\xef\x9c\x95",
		"Sleigh":                            "\xef\x9f\x8c",
		"Sliders":                           "\xef\x87\x9e",
		"Smog":                              "\xef\x9d\x9f",
		"Smoking":                           "\xef\x92\x8d",
		"Snowflake":                         "\xef\x8b\x9c",
		"Snowman":                           "\xef\x9f\x90",
		"Snowplow":                          "\xef\x9f\x92",
		"Soap":                              "\xee\x81\xae",
		"Socks":                             "\xef\x9a\x96",
		"SolarPanel":                        "\xef\x96\xba",
		"Sort":                              "\xef\x83\x9c",
		"SortDown":                          "\xef\x83\x9d",
		"SortUp":                            "\xef\x83\x9e",
		"Spa":                               "\xef\x96\xbb",
		"SpaghettiMonsterFlying":            "\xef\x99\xbb",
		"SpellCheck":                        "\xef\xa2\x91",
		"Spider":                            "\xef\x9c\x97",
		"Spinner":                           "\xef\x84\x90",
		"Splotch":                           "\xef\x96\xbc",
		"Spoon":                             "\xef\x8b\xa5",
		"SprayCan":                          "\xef\x96\xbd",
		"SprayCanSparkles":                  "\xef\x97\x90",
		"Square":                            "\xef\x83\x88",
		"SquareArrowUpRight":                "\xef\x85\x8c",
		"SquareBinary":                      "\xee\x9a\x9b",
		"SquareCaretDown":                   "\xef\x85\x90",
		"SquareCaretLeft":                   "\xef\x86\x91",
		"SquareCaretRight":                  "\xef\x85\x92",
		"SquareCaretUp":                     "\xef\x85\x91",
		"SquareCheck":                       "\xef\x85\x8a",
		"SquareEnvelope":                    "\xef\x86\x99",
		"SquareFull":                        "\xef\x91\x9c",
		"SquareH":                           "\xef\x83\xbd",
		"SquareMinus":                       "\xef\x85\x86",
		"SquareNfi":                         "\xee\x95\xb6",
		"SquareParking":                     "\xef\x95\x80",
		"SquarePen":                         "\xef\x85\x8b",
		"SquarePersonConfined":              "\xee\x95\xb7",
		"SquarePhone":                       "\xef\x82\x98",
		"SquarePhoneFlip":                   "\xef\xa1\xbb",
		"SquarePlus":                        "\xef\x83\xbe",
		"SquarePollHorizontal":              "\xef\x9a\x82",
		"SquarePollVertical":                "\xef\x9a\x81",
		"SquareRootVariable":                "\xef\x9a\x98",
		"SquareRss":                         "\xef\x85\x83",
		"SquareShareNodes":                  "\xef\x87\xa1",
		"SquareUpRight":                     "\xef\x8d\xa0",
		"SquareVirus":                       "\xee\x95\xb8",
		"SquareXmark":                       "\xef\x8b\x93",
		"StaffSnake":                        "\xee\x95\xb9",
		"Stairs":                            "\xee\x8a\x89",
		"Stamp":                             "\xef\x96\xbf",
		"Stapler":                           "\xee\x96\xaf",
		"Star":                              "\xef\x80\x85",
		"StarAndCrescent":                   "\xef\x9a\x99",
		"StarHalf":                          "\xef\x82\x89",
		"StarHalfStroke":                    "\xef\x97\x80",
		"StarOfDavid":                       "\xef\x9a\x9a",
		"StarOfLife":                        "\xef\x98\xa1",
		"SterlingSign":                      "\xef\x85\x94",
		"Stethoscope":                       "\xef\x83\xb1",
		"Stop":                              "\xef\x81\x8d",
		"Stopwatch":                         "\xef\x8b\xb2",
		"Stopwatch20":                       "\xee\x81\xaf",
		"Store":                             "\xef\x95\x8e",
		"StoreSlash":                        "\xee\x81\xb1",
		"StreetView":                        "\xef\x88\x9d",
		"Strikethrough":                     "\xef\x83\x8c",
		"Stroopwafel":                       "\xef\x95\x91",
		"Subscript":                         "\xef\x84\xac",
		"Suitcase":                          "\xef\x83\xb2",
		"SuitcaseMedical":                   "\xef\x83\xba",
		"SuitcaseRolling":                   "\xef\x97\x81",
		"Sun":                               "\xef\x86\x85",
		"SunPlantWilt":                      "\xee\x95\xba",
		"Superscript":                       "\xef\x84\xab",
		"Swatchbook":                        "\xef\x97\x83",
		"Synagogue":                         "\xef\x9a\x9b",
		"Syringe":                           "\xef\x92\x8e",
		"T":                                 "T",
		"Table":                             "\xef\x83\x8e",
		"TableCells":                        "\xef\x80\x8a",
		"TableCellsColumnLock":              "\xee\x99\xb8",
		"TableCellsLarge":                   "\xef\x80\x89",
		"TableCellsRowLock":                 "\xee\x99\xba",
		"TableCellsRowUnlock":               "\xee\x9a\x91",
		"TableColumns":                      "\xef\x83\x9b",
		"TableList":                         "\xef\x80\x8b",
		"TableTennisPaddleBall":             "\xef\x91\x9d",
		"Tablet":                            "\xef\x8f\xbb",
		"TabletButton":                      "\xef\x84\x8a",
		"TabletScreenButton":                "\xef\x8f\xba",
		"Tablets":                           "\xef\x92\x90",
		"TachographDigital":                 "\xef\x95\xa6",
		"Tag":                               "\xef\x80\xab",
		"Tags":                              "\xef\x80\xac",
		"Tape":                              "\xef\x93\x9b",
		"Tarp":                              "\xee\x95\xbb",
		"TarpDroplet":                       "\xee\x95\xbc",
		"Taxi":                              "\xef\x86\xba",
		"Teeth":                             "\xef\x98\xae",
		"TeethOpen":                         "\xef\x98\xaf",
		"TemperatureArrowDown":              "\xee\x80\xbf",
		"TemperatureArrowUp":                "\xee\x81\x80",
		"TemperatureEmpty":                  "\xef\x8b\x8b",
		"TemperatureFull":                   "\xef\x8b\x87",
		"TemperatureHalf":                   "\xef\x8b\x89",
		"TemperatureHigh":                   "\xef\x9d\xa9",
		"TemperatureLow":                    "\xef\x9d\xab",
		"TemperatureQuarter":                "\xef\x8b\x8a",
		"TemperatureThreeQuarters":          "\xef\x8b\x88",
		"TengeSign":                         "\xef\x9f\x97",
		"Tent":                              "\xee\x95\xbd",
		"TentArrowDownToLine":               "\xee\x95\xbe",
		"TentArrowLeftRight":                "\xee\x95\xbf",
		"TentArrowTurnLeft":                 "\xee\x96\x80",
		"TentArrowsDown":                    "\xee\x96\x81",
		"Tents":                             "\xee\x96\x82",
		"Terminal":                          "\xef\x84\xa0",
		"TextHeight":                        "\xef\x80\xb4",
		"TextSlash":                         "\xef\xa1\xbd",
		"TextWidth":                         "\xef\x80\xb5",
		"Thermometer":                       "\xef\x92\x91",
		"ThumbsDown":                        "\xef\x85\xa5",
		"ThumbsUp":                          "\xef\x85\xa4",
		"Thumbtack":                         "\xef\x82\x8d",
		"ThumbtackSlash":                    "\xee\x9a\x8f",
		"Ticket":                            "\xef\x85\x85",
		"TicketSimple":                      "\xef\x8f\xbf",
		"Timeline":                          "\xee\x8a\x9c",
		"ToggleOff":                         "\xef\x88\x84",
		"ToggleOn":                          "\xef\x88\x85",
		"Toilet":                            "\xef\x9f\x98",
		"ToiletPaper":                       "\xef\x9c\x9e",
		"ToiletPaperSlash":                  "\xee\x81\xb2",
		"ToiletPortable":                    "\xee\x96\x83",
		"ToiletsPortable":                   "\xee\x96\x84",
		"Toolbox":                           "\xef\x95\x92",
		"Tooth":                             "\xef\x97\x89",
		"ToriiGate":                         "\xef\x9a\xa1",
		"Tornado":                           "\xef\x9d\xaf",
		"TowerBroadcast":                    "\xef\x94\x99",
		"TowerCell":                         "\xee\x96\x85",
		"TowerObservation":                  "\xee\x96\x86",
		"Tractor":                           "\xef\x9c\xa2",
		"Trademark":                         "\xef\x89\x9c",
		"TrafficLight":                      "\xef\x98\xb7",
		"Trailer":                           "\xee\x81\x81",
		"Train":                             "\xef\x88\xb8",
		"TrainSubway":                       "\xef\x88\xb9",
		"TrainTram":                         "\xee\x96\xb4",
		"Transgender":                       "\xef\x88\xa5",
		"Trash":                             "\xef\x87\xb8",
		"TrashArrowUp":                      "\xef\xa0\xa9",
		"TrashCan":                          "\xef\x8b\xad",
		"TrashCanArrowUp":                   "\xef\xa0\xaa",
		"Tree":                              "\xef\x86\xbb",
		"TreeCity":                          "\xee\x96\x87",
		"TriangleExclamation":               "\xef\x81\xb1",
		"Trophy":                            "\xef\x82\x91",
		"Trowel":                            "\xee\x96\x89",
		"TrowelBricks":                      "\xee\x96\x8a",
		"Truck":                             "\xef\x83\x91",
		"TruckArrowRight":                   "\xee\x96\x8b",
		"TruckDroplet":                      "\xee\x96\x8c",
		"TruckFast":                         "\xef\x92\x8b",
		"TruckField":                        "\xee\x96\x8d",
		"TruckFieldUn":                      "\xee\x96\x8e",
		"TruckFront":                        "\xee\x8a\xb7",
		"TruckMedical":                      "\xef\x83\xb9",
		"TruckMonster":                      "\xef\x98\xbb",
		"TruckMoving":                       "\xef\x93\x9f",
		"TruckPickup":                       "\xef\x98\xbc",
		"TruckPlane":                        "\xee\x96\x8f",
		"TruckRampBox":                      "\xef\x93\x9e",
		"Tty":                               "\xef\x87\xa4",
		"TurkishLiraSign":                   "\xee\x8a\xbb",
		"TurnDown":                          "\xef\x8e\xbe",
		"TurnUp":                            "\xef\x8e\xbf",
		"Tv":                                "\xef\x89\xac",
		"U":                                 "U",
		"Umbrella":                          "\xef\x83\xa9",
		"UmbrellaBeach":                     "\xef\x97\x8a",
		"Underline":                         "\xef\x83\x8d",
		"UniversalAccess":                   "\xef\x8a\x9a",
		"Unlock":                            "\xef\x82\x9c",
		"UnlockKeyhole":                     "\xef\x84\xbe",
		"UpDown":                            "\xef\x8c\xb8",
		"UpDownLeftRight":                   "\xef\x82\xb2",
		"UpLong":                            "\xef\x8c\x8c",
		"UpRightAndDownLeftFromCenter":      "\xef\x90\xa4",
		"UpRightFromSquare":                 "\xef\x8d\x9d",
		"Upload":                            "\xef\x82\x93",
		"User":                              "\xef\x80\x87",
		"UserAstronaut":                     "\xef\x93\xbb",
		"UserCheck":                         "\xef\x93\xbc",
		"UserClock":                         "\xef\x93\xbd",
		"UserDoctor":                        "\xef\x83\xb0",
		"UserGear":                          "\xef\x93\xbe",
		"UserGraduate":                      "\xef\x94\x81",
		"UserGroup":                         "\xef\x94\x80",
		"UserInjured":                       "\xef\x9c\xa8",
		"UserLarge":                         "\xef\x90\x86",
		"UserLargeSlash":                    "\xef\x93\xba",
		"UserLock":                          "\xef\x94\x82",
		"UserMinus":                         "\xef\x94\x83",
		"UserNinja":                         "\xef\x94\x84",
		"UserNurse":                         "\xef\xa0\xaf",
		"UserPen":                           "\xef\x93\xbf",
		"UserPlus":                          "\xef\x88\xb4",
		"UserSecret":                        "\xef\x88\x9b",
		"UserShield":                        "\xef\x94\x85",
		"UserSlash":                         "\xef\x94\x86",
		"UserTag":                           "\xef\x94\x87",
		"UserTie":                           "\xef\x94\x88",
		"UserXmark":                         "\xef\x88\xb5",
		"Users":                             "\xef\x83\x80",
		"UsersBetweenLines":                 "\xee\x96\x91",
		"UsersGear":                         "\xef\x94\x89",
		"UsersLine":                         "\xee\x96\x92",
		"UsersRays":                         "\xee\x96\x93",
		"UsersRectangle":                    "\xee\x96\x94",
		"UsersSlash":                        "\xee\x81\xb3",
		"UsersViewfinder":                   "\xee\x96\x95",
		"Utensils":                          "\xef\x8b\xa7",
		"V":                                 "V",
		"VanShuttle":                        "\xef\x96\xb6",
		"Vault":                             "\xee\x8b\x85",
		"VectorSquare":                      "\xef\x97\x8b",
		"Venus":                             "\xef\x88\xa1",
		"VenusDouble":                       "\xef\x88\xa6",
		"VenusMars":                         "\xef\x88\xa8",
		"Vest":                              "\xee\x82\x85",
		"VestPatches":                       "\xee\x82\x86",
		"Vial":                              "\xef\x92\x92",
		"VialCircleCheck":                   "\xee\x96\x96",
		"VialVirus":                         "\xee\x96\x97",
		"Vials":                             "\xef\x92\x93",
		"Video":                             "\xef\x80\xbd",
		"VideoSlash":                        "\xef\x93\xa2",
		"Vihara":                            "\xef\x9a\xa7",
		"Virus":                             "\xee\x81\xb4",
		"VirusCovid":                        "\xee\x92\xa8",
		"VirusCovidSlash":                   "\xee\x92\xa9",
		"VirusSlash":                        "\xee\x81\xb5",
		"Viruses":                           "\xee\x81\xb6",
		"Voicemail":                         "\xef\xa2\x97",
		"Volcano":                           "\xef\x9d\xb0",
		"Volleyball":                        "\xef\x91\x9f",
		"VolumeHigh":                        "\xef\x80\xa8",
		"VolumeLow":                         "\xef\x80\xa7",
		"VolumeOff":                         "\xef\x80\xa6",
		"VolumeXmark":                       "\xef\x9a\xa9",
		"VrCardboard":                       "\xef\x9c\xa9",
		"W":                                 "W",
		"WalkieTalkie":                      "\xef\xa3\xaf",
		"Wallet":                            "\xef\x95\x95",
		"WandMagic":                         "\xef\x83\x90",
		"WandMagicSparkles":                 "\xee\x8b\x8a",
		"WandSparkles":                      "\xef\x9c\xab",
		"Warehouse":                         "\xef\x92\x94",
		"Water":                             "\xef\x9d\xb3",
		"WaterLadder":                       "\xef\x97\x85",
		"WaveSquare":                        "\xef\xa0\xbe",
		"WebAwesome":                        "\xee\x9a\x82",
		"WeightHanging":                     "\xef\x97\x8d",
		"WeightScale":                       "\xef\x92\x96",
		"WheatAwn":                          "\xee\x8b\x8d",
		"WheatAwnCircleExclamation":         "\xee\x96\x98",
		"Wheelchair":                        "\xef\x86\x93",
		"WheelchairMove":                    "\xee\x8b\x8e",
		"WhiskeyGlass":                      "\xef\x9e\xa0",
		"Wifi":                              "\xef\x87\xab",
		"Wind":                              "\xef\x9c\xae",
		"WindowMaximize":                    "\xef\x8b\x90",
		"WindowMinimize":                    "\xef\x8b\x91",
		"WindowRestore":                     "\xef\x8b\x92",
		"WineBottle":                        "\xef\x9c\xaf",
		"WineGlass":                         "\xef\x93\xa3",
		"WineGlassEmpty":                    "\xef\x97\x8e",
		"WonSign":                           "\xef\x85\x99",
		"Worm":                              "\xee\x96\x99",
		"Wrench":                            "\xef\x82\xad",
		"X":                                 "X",
		"XRay":                              "\xef\x92\x97",
		"Xmark":                             "\xef\x80\x8d",
		"XmarksLines":                       "\xee\x96\x9a",
		"Y":                                 "Y",
		"YenSign":                           "\xef\x85\x97",
		"YinYang":                           "\xef\x9a\xad",
		"Z":                                 "Z",
	},
}
View Source
var IconsFontAwesome6Brands = Font{
	Filenames: [][2]string{
		{"FAB", "fa-brands-400.ttf"},
	},
	Min:   0xe007,
	Max16: 0xf8e8,
	Max:   0xf8e8,
	Icons: map[string]string{
		"42Group":                     "\xee\x82\x80",
		"500px":                       "\xef\x89\xae",
		"AccessibleIcon":              "\xef\x8d\xa8",
		"Accusoft":                    "\xef\x8d\xa9",
		"Adn":                         "\xef\x85\xb0",
		"Adversal":                    "\xef\x8d\xaa",
		"Affiliatetheme":              "\xef\x8d\xab",
		"Airbnb":                      "\xef\xa0\xb4",
		"Algolia":                     "\xef\x8d\xac",
		"Alipay":                      "\xef\x99\x82",
		"Amazon":                      "\xef\x89\xb0",
		"AmazonPay":                   "\xef\x90\xac",
		"Amilia":                      "\xef\x8d\xad",
		"Android":                     "\xef\x85\xbb",
		"Angellist":                   "\xef\x88\x89",
		"Angrycreative":               "\xef\x8d\xae",
		"Angular":                     "\xef\x90\xa0",
		"AppStore":                    "\xef\x8d\xaf",
		"AppStoreIos":                 "\xef\x8d\xb0",
		"Apper":                       "\xef\x8d\xb1",
		"Apple":                       "\xef\x85\xb9",
		"ApplePay":                    "\xef\x90\x95",
		"Artstation":                  "\xef\x9d\xba",
		"Asymmetrik":                  "\xef\x8d\xb2",
		"Atlassian":                   "\xef\x9d\xbb",
		"Audible":                     "\xef\x8d\xb3",
		"Autoprefixer":                "\xef\x90\x9c",
		"Avianex":                     "\xef\x8d\xb4",
		"Aviato":                      "\xef\x90\xa1",
		"Aws":                         "\xef\x8d\xb5",
		"Bandcamp":                    "\xef\x8b\x95",
		"BattleNet":                   "\xef\xa0\xb5",
		"Behance":                     "\xef\x86\xb4",
		"Bilibili":                    "\xee\x8f\x99",
		"Bimobject":                   "\xef\x8d\xb8",
		"Bitbucket":                   "\xef\x85\xb1",
		"Bitcoin":                     "\xef\x8d\xb9",
		"Bity":                        "\xef\x8d\xba",
		"BlackTie":                    "\xef\x89\xbe",
		"Blackberry":                  "\xef\x8d\xbb",
		"Blogger":                     "\xef\x8d\xbc",
		"BloggerB":                    "\xef\x8d\xbd",
		"Bluesky":                     "\xee\x99\xb1",
		"Bluetooth":                   "\xef\x8a\x93",
		"BluetoothB":                  "\xef\x8a\x94",
		"Bootstrap":                   "\xef\xa0\xb6",
		"Bots":                        "\xee\x8d\x80",
		"Brave":                       "\xee\x98\xbc",
		"BraveReverse":                "\xee\x98\xbd",
		"Btc":                         "\xef\x85\x9a",
		"Buffer":                      "\xef\xa0\xb7",
		"Buromobelexperte":            "\xef\x8d\xbf",
		"BuyNLarge":                   "\xef\xa2\xa6",
		"Buysellads":                  "\xef\x88\x8d",
		"CanadianMapleLeaf":           "\xef\x9e\x85",
		"CcAmazonPay":                 "\xef\x90\xad",
		"CcAmex":                      "\xef\x87\xb3",
		"CcApplePay":                  "\xef\x90\x96",
		"CcDinersClub":                "\xef\x89\x8c",
		"CcDiscover":                  "\xef\x87\xb2",
		"CcJcb":                       "\xef\x89\x8b",
		"CcMastercard":                "\xef\x87\xb1",
		"CcPaypal":                    "\xef\x87\xb4",
		"CcStripe":                    "\xef\x87\xb5",
		"CcVisa":                      "\xef\x87\xb0",
		"Centercode":                  "\xef\x8e\x80",
		"Centos":                      "\xef\x9e\x89",
		"Chrome":                      "\xef\x89\xa8",
		"Chromecast":                  "\xef\xa0\xb8",
		"Cloudflare":                  "\xee\x81\xbd",
		"Cloudscale":                  "\xef\x8e\x83",
		"Cloudsmith":                  "\xef\x8e\x84",
		"Cloudversify":                "\xef\x8e\x85",
		"Cmplid":                      "\xee\x8d\xa0",
		"Codepen":                     "\xef\x87\x8b",
		"Codiepie":                    "\xef\x8a\x84",
		"Confluence":                  "\xef\x9e\x8d",
		"Connectdevelop":              "\xef\x88\x8e",
		"Contao":                      "\xef\x89\xad",
		"CottonBureau":                "\xef\xa2\x9e",
		"Cpanel":                      "\xef\x8e\x88",
		"CreativeCommons":             "\xef\x89\x9e",
		"CreativeCommonsBy":           "\xef\x93\xa7",
		"CreativeCommonsNc":           "\xef\x93\xa8",
		"CreativeCommonsNcEu":         "\xef\x93\xa9",
		"CreativeCommonsNcJp":         "\xef\x93\xaa",
		"CreativeCommonsNd":           "\xef\x93\xab",
		"CreativeCommonsPd":           "\xef\x93\xac",
		"CreativeCommonsPdAlt":        "\xef\x93\xad",
		"CreativeCommonsRemix":        "\xef\x93\xae",
		"CreativeCommonsSa":           "\xef\x93\xaf",
		"CreativeCommonsSampling":     "\xef\x93\xb0",
		"CreativeCommonsSamplingPlus": "\xef\x93\xb1",
		"CreativeCommonsShare":        "\xef\x93\xb2",
		"CreativeCommonsZero":         "\xef\x93\xb3",
		"CriticalRole":                "\xef\x9b\x89",
		"Css":                         "\xee\x9a\xa2",
		"Css3":                        "\xef\x84\xbc",
		"Css3Alt":                     "\xef\x8e\x8b",
		"Cuttlefish":                  "\xef\x8e\x8c",
		"DAndD":                       "\xef\x8e\x8d",
		"DAndDBeyond":                 "\xef\x9b\x8a",
		"Dailymotion":                 "\xee\x81\x92",
		"DartLang":                    "\xee\x9a\x93",
		"Dashcube":                    "\xef\x88\x90",
		"Debian":                      "\xee\x98\x8b",
		"Deezer":                      "\xee\x81\xb7",
		"Delicious":                   "\xef\x86\xa5",
		"Deploydog":                   "\xef\x8e\x8e",
		"Deskpro":                     "\xef\x8e\x8f",
		"Dev":                         "\xef\x9b\x8c",
		"Deviantart":                  "\xef\x86\xbd",
		"Dhl":                         "\xef\x9e\x90",
		"Diaspora":                    "\xef\x9e\x91",
		"Digg":                        "\xef\x86\xa6",
		"DigitalOcean":                "\xef\x8e\x91",
		"Discord":                     "\xef\x8e\x92",
		"Discourse":                   "\xef\x8e\x93",
		"Dochub":                      "\xef\x8e\x94",
		"Docker":                      "\xef\x8e\x95",
		"Draft2digital":               "\xef\x8e\x96",
		"Dribbble":                    "\xef\x85\xbd",
		"Dropbox":                     "\xef\x85\xab",
		"Drupal":                      "\xef\x86\xa9",
		"Dyalog":                      "\xef\x8e\x99",
		"Earlybirds":                  "\xef\x8e\x9a",
		"Ebay":                        "\xef\x93\xb4",
		"Edge":                        "\xef\x8a\x82",
		"EdgeLegacy":                  "\xee\x81\xb8",
		"Elementor":                   "\xef\x90\xb0",
		"Ello":                        "\xef\x97\xb1",
		"Ember":                       "\xef\x90\xa3",
		"Empire":                      "\xef\x87\x91",
		"Envira":                      "\xef\x8a\x99",
		"Erlang":                      "\xef\x8e\x9d",
		"Ethereum":                    "\xef\x90\xae",
		"Etsy":                        "\xef\x8b\x97",
		"Evernote":                    "\xef\xa0\xb9",
		"Expeditedssl":                "\xef\x88\xbe",
		"Facebook":                    "\xef\x82\x9a",
		"FacebookF":                   "\xef\x8e\x9e",
		"FacebookMessenger":           "\xef\x8e\x9f",
		"FantasyFlightGames":          "\xef\x9b\x9c",
		"Fedex":                       "\xef\x9e\x97",
		"Fedora":                      "\xef\x9e\x98",
		"Figma":                       "\xef\x9e\x99",
		"FilesPinwheel":               "\xee\x9a\x9f",
		"Firefox":                     "\xef\x89\xa9",
		"FirefoxBrowser":              "\xee\x80\x87",
		"FirstOrder":                  "\xef\x8a\xb0",
		"FirstOrderAlt":               "\xef\x94\x8a",
		"Firstdraft":                  "\xef\x8e\xa1",
		"Flickr":                      "\xef\x85\xae",
		"Flipboard":                   "\xef\x91\x8d",
		"Flutter":                     "\xee\x9a\x94",
		"Fly":                         "\xef\x90\x97",
		"FontAwesome":                 "\xef\x8a\xb4",
		"Fonticons":                   "\xef\x8a\x80",
		"FonticonsFi":                 "\xef\x8e\xa2",
		"FortAwesome":                 "\xef\x8a\x86",
		"FortAwesomeAlt":              "\xef\x8e\xa3",
		"Forumbee":                    "\xef\x88\x91",
		"Foursquare":                  "\xef\x86\x80",
		"FreeCodeCamp":                "\xef\x8b\x85",
		"Freebsd":                     "\xef\x8e\xa4",
		"Fulcrum":                     "\xef\x94\x8b",
		"GalacticRepublic":            "\xef\x94\x8c",
		"GalacticSenate":              "\xef\x94\x8d",
		"GetPocket":                   "\xef\x89\xa5",
		"Gg":                          "\xef\x89\xa0",
		"GgCircle":                    "\xef\x89\xa1",
		"Git":                         "\xef\x87\x93",
		"GitAlt":                      "\xef\xa1\x81",
		"Github":                      "\xef\x82\x9b",
		"GithubAlt":                   "\xef\x84\x93",
		"Gitkraken":                   "\xef\x8e\xa6",
		"Gitlab":                      "\xef\x8a\x96",
		"Gitter":                      "\xef\x90\xa6",
		"Glide":                       "\xef\x8a\xa5",
		"GlideG":                      "\xef\x8a\xa6",
		"Gofore":                      "\xef\x8e\xa7",
		"Golang":                      "\xee\x90\x8f",
		"Goodreads":                   "\xef\x8e\xa8",
		"GoodreadsG":                  "\xef\x8e\xa9",
		"Google":                      "\xef\x86\xa0",
		"GoogleDrive":                 "\xef\x8e\xaa",
		"GooglePay":                   "\xee\x81\xb9",
		"GooglePlay":                  "\xef\x8e\xab",
		"GooglePlus":                  "\xef\x8a\xb3",
		"GooglePlusG":                 "\xef\x83\x95",
		"GoogleScholar":               "\xee\x98\xbb",
		"GoogleWallet":                "\xef\x87\xae",
		"Gratipay":                    "\xef\x86\x84",
		"Grav":                        "\xef\x8b\x96",
		"Gripfire":                    "\xef\x8e\xac",
		"Grunt":                       "\xef\x8e\xad",
		"Guilded":                     "\xee\x81\xbe",
		"Gulp":                        "\xef\x8e\xae",
		"HackerNews":                  "\xef\x87\x94",
		"Hackerrank":                  "\xef\x97\xb7",
		"Hashnode":                    "\xee\x92\x99",
		"Hips":                        "\xef\x91\x92",
		"HireAHelper":                 "\xef\x8e\xb0",
		"Hive":                        "\xee\x81\xbf",
		"Hooli":                       "\xef\x90\xa7",
		"Hornbill":                    "\xef\x96\x92",
		"Hotjar":                      "\xef\x8e\xb1",
		"Houzz":                       "\xef\x89\xbc",
		"Html5":                       "\xef\x84\xbb",
		"Hubspot":                     "\xef\x8e\xb2",
		"Ideal":                       "\xee\x80\x93",
		"Imdb":                        "\xef\x8b\x98",
		"Instagram":                   "\xef\x85\xad",
		"Instalod":                    "\xee\x82\x81",
		"Intercom":                    "\xef\x9e\xaf",
		"InternetExplorer":            "\xef\x89\xab",
		"Invision":                    "\xef\x9e\xb0",
		"Ioxhost":                     "\xef\x88\x88",
		"ItchIo":                      "\xef\xa0\xba",
		"Itunes":                      "\xef\x8e\xb4",
		"ItunesNote":                  "\xef\x8e\xb5",
		"Java":                        "\xef\x93\xa4",
		"JediOrder":                   "\xef\x94\x8e",
		"Jenkins":                     "\xef\x8e\xb6",
		"Jira":                        "\xef\x9e\xb1",
		"Joget":                       "\xef\x8e\xb7",
		"Joomla":                      "\xef\x86\xaa",
		"Js":                          "\xef\x8e\xb8",
		"Jsfiddle":                    "\xef\x87\x8c",
		"Jxl":                         "\xee\x99\xbb",
		"Kaggle":                      "\xef\x97\xba",
		"Keybase":                     "\xef\x93\xb5",
		"Keycdn":                      "\xef\x8e\xba",
		"Kickstarter":                 "\xef\x8e\xbb",
		"KickstarterK":                "\xef\x8e\xbc",
		"Korvue":                      "\xef\x90\xaf",
		"Laravel":                     "\xef\x8e\xbd",
		"Lastfm":                      "\xef\x88\x82",
		"Leanpub":                     "\xef\x88\x92",
		"Less":                        "\xef\x90\x9d",
		"Letterboxd":                  "\xee\x98\xad",
		"Line":                        "\xef\x8f\x80",
		"Linkedin":                    "\xef\x82\x8c",
		"LinkedinIn":                  "\xef\x83\xa1",
		"Linode":                      "\xef\x8a\xb8",
		"Linux":                       "\xef\x85\xbc",
		"Lyft":                        "\xef\x8f\x83",
		"Magento":                     "\xef\x8f\x84",
		"Mailchimp":                   "\xef\x96\x9e",
		"Mandalorian":                 "\xef\x94\x8f",
		"Markdown":                    "\xef\x98\x8f",
		"Mastodon":                    "\xef\x93\xb6",
		"Maxcdn":                      "\xef\x84\xb6",
		"Mdb":                         "\xef\xa3\x8a",
		"Medapps":                     "\xef\x8f\x86",
		"Medium":                      "\xef\x88\xba",
		"Medrt":                       "\xef\x8f\x88",
		"Meetup":                      "\xef\x8b\xa0",
		"Megaport":                    "\xef\x96\xa3",
		"Mendeley":                    "\xef\x9e\xb3",
		"Meta":                        "\xee\x92\x9b",
		"Microblog":                   "\xee\x80\x9a",
		"Microsoft":                   "\xef\x8f\x8a",
		"Mintbit":                     "\xee\x98\xaf",
		"Mix":                         "\xef\x8f\x8b",
		"Mixcloud":                    "\xef\x8a\x89",
		"Mixer":                       "\xee\x81\x96",
		"Mizuni":                      "\xef\x8f\x8c",
		"Modx":                        "\xef\x8a\x85",
		"Monero":                      "\xef\x8f\x90",
		"Napster":                     "\xef\x8f\x92",
		"Neos":                        "\xef\x98\x92",
		"NfcDirectional":              "\xee\x94\xb0",
		"NfcSymbol":                   "\xee\x94\xb1",
		"Nimblr":                      "\xef\x96\xa8",
		"Node":                        "\xef\x90\x99",
		"NodeJs":                      "\xef\x8f\x93",
		"Npm":                         "\xef\x8f\x94",
		"Ns8":                         "\xef\x8f\x95",
		"Nutritionix":                 "\xef\x8f\x96",
		"OctopusDeploy":               "\xee\x82\x82",
		"Odnoklassniki":               "\xef\x89\xa3",
		"Odysee":                      "\xee\x97\x86",
		"OldRepublic":                 "\xef\x94\x90",
		"Opencart":                    "\xef\x88\xbd",
		"Openid":                      "\xef\x86\x9b",
		"Opensuse":                    "\xee\x98\xab",
		"Opera":                       "\xef\x89\xaa",
		"OptinMonster":                "\xef\x88\xbc",
		"Orcid":                       "\xef\xa3\x92",
		"Osi":                         "\xef\x90\x9a",
		"Padlet":                      "\xee\x92\xa0",
		"Page4":                       "\xef\x8f\x97",
		"Pagelines":                   "\xef\x86\x8c",
		"Palfed":                      "\xef\x8f\x98",
		"Patreon":                     "\xef\x8f\x99",
		"Paypal":                      "\xef\x87\xad",
		"Perbyte":                     "\xee\x82\x83",
		"Periscope":                   "\xef\x8f\x9a",
		"Phabricator":                 "\xef\x8f\x9b",
		"PhoenixFramework":            "\xef\x8f\x9c",
		"PhoenixSquadron":             "\xef\x94\x91",
		"Php":                         "\xef\x91\x97",
		"PiedPiper":                   "\xef\x8a\xae",
		"PiedPiperAlt":                "\xef\x86\xa8",
		"PiedPiperHat":                "\xef\x93\xa5",
		"PiedPiperPp":                 "\xef\x86\xa7",
		"Pinterest":                   "\xef\x83\x92",
		"PinterestP":                  "\xef\x88\xb1",
		"Pix":                         "\xee\x90\xba",
		"Pixiv":                       "\xee\x99\x80",
		"Playstation":                 "\xef\x8f\x9f",
		"ProductHunt":                 "\xef\x8a\x88",
		"Pushed":                      "\xef\x8f\xa1",
		"Python":                      "\xef\x8f\xa2",
		"Qq":                          "\xef\x87\x96",
		"Quinscape":                   "\xef\x91\x99",
		"Quora":                       "\xef\x8b\x84",
		"RProject":                    "\xef\x93\xb7",
		"RaspberryPi":                 "\xef\x9e\xbb",
		"Ravelry":                     "\xef\x8b\x99",
		"React":                       "\xef\x90\x9b",
		"Reacteurope":                 "\xef\x9d\x9d",
		"Readme":                      "\xef\x93\x95",
		"Rebel":                       "\xef\x87\x90",
		"RedRiver":                    "\xef\x8f\xa3",
		"Reddit":                      "\xef\x86\xa1",
		"RedditAlien":                 "\xef\x8a\x81",
		"Redhat":                      "\xef\x9e\xbc",
		"Renren":                      "\xef\x86\x8b",
		"Replyd":                      "\xef\x8f\xa6",
		"Researchgate":                "\xef\x93\xb8",
		"Resolving":                   "\xef\x8f\xa7",
		"Rev":                         "\xef\x96\xb2",
		"Rocketchat":                  "\xef\x8f\xa8",
		"Rockrms":                     "\xef\x8f\xa9",
		"Rust":                        "\xee\x81\xba",
		"Safari":                      "\xef\x89\xa7",
		"Salesforce":                  "\xef\xa0\xbb",
		"Sass":                        "\xef\x90\x9e",
		"Schlix":                      "\xef\x8f\xaa",
		"Screenpal":                   "\xee\x95\xb0",
		"Scribd":                      "\xef\x8a\x8a",
		"Searchengin":                 "\xef\x8f\xab",
		"Sellcast":                    "\xef\x8b\x9a",
		"Sellsy":                      "\xef\x88\x93",
		"Servicestack":                "\xef\x8f\xac",
		"Shirtsinbulk":                "\xef\x88\x94",
		"Shoelace":                    "\xee\x98\x8c",
		"Shopify":                     "\xee\x81\x97",
		"Shopware":                    "\xef\x96\xb5",
		"SignalMessenger":             "\xee\x99\xa3",
		"Simplybuilt":                 "\xef\x88\x95",
		"Sistrix":                     "\xef\x8f\xae",
		"Sith":                        "\xef\x94\x92",
		"Sitrox":                      "\xee\x91\x8a",
		"Sketch":                      "\xef\x9f\x86",
		"Skyatlas":                    "\xef\x88\x96",
		"Skype":                       "\xef\x85\xbe",
		"Slack":                       "\xef\x86\x98",
		"Slideshare":                  "\xef\x87\xa7",
		"Snapchat":                    "\xef\x8a\xab",
		"Soundcloud":                  "\xef\x86\xbe",
		"Sourcetree":                  "\xef\x9f\x93",
		"SpaceAwesome":                "\xee\x96\xac",
		"Speakap":                     "\xef\x8f\xb3",
		"SpeakerDeck":                 "\xef\xa0\xbc",
		"Spotify":                     "\xef\x86\xbc",
		"SquareBehance":               "\xef\x86\xb5",
		"SquareBluesky":               "\xee\x9a\xa3",
		"SquareDribbble":              "\xef\x8e\x97",
		"SquareFacebook":              "\xef\x82\x82",
		"SquareFontAwesome":           "\xee\x96\xad",
		"SquareFontAwesomeStroke":     "\xef\x8d\x9c",
		"SquareGit":                   "\xef\x87\x92",
		"SquareGithub":                "\xef\x82\x92",
		"SquareGitlab":                "\xee\x96\xae",
		"SquareGooglePlus":            "\xef\x83\x94",
		"SquareHackerNews":            "\xef\x8e\xaf",
		"SquareInstagram":             "\xee\x81\x95",
		"SquareJs":                    "\xef\x8e\xb9",
		"SquareLastfm":                "\xef\x88\x83",
		"SquareLetterboxd":            "\xee\x98\xae",
		"SquareOdnoklassniki":         "\xef\x89\xa4",
		"SquarePiedPiper":             "\xee\x80\x9e",
		"SquarePinterest":             "\xef\x83\x93",
		"SquareReddit":                "\xef\x86\xa2",
		"SquareSnapchat":              "\xef\x8a\xad",
		"SquareSteam":                 "\xef\x86\xb7",
		"SquareThreads":               "\xee\x98\x99",
		"SquareTumblr":                "\xef\x85\xb4",
		"SquareTwitter":               "\xef\x82\x81",
		"SquareUpwork":                "\xee\x99\xbc",
		"SquareViadeo":                "\xef\x8a\xaa",
		"SquareVimeo":                 "\xef\x86\x94",
		"SquareWebAwesome":            "\xee\x9a\x83",
		"SquareWebAwesomeStroke":      "\xee\x9a\x84",
		"SquareWhatsapp":              "\xef\x90\x8c",
		"SquareXTwitter":              "\xee\x98\x9a",
		"SquareXing":                  "\xef\x85\xa9",
		"SquareYoutube":               "\xef\x90\xb1",
		"Squarespace":                 "\xef\x96\xbe",
		"StackExchange":               "\xef\x86\x8d",
		"StackOverflow":               "\xef\x85\xac",
		"Stackpath":                   "\xef\xa1\x82",
		"Staylinked":                  "\xef\x8f\xb5",
		"Steam":                       "\xef\x86\xb6",
		"SteamSymbol":                 "\xef\x8f\xb6",
		"StickerMule":                 "\xef\x8f\xb7",
		"Strava":                      "\xef\x90\xa8",
		"Stripe":                      "\xef\x90\xa9",
		"StripeS":                     "\xef\x90\xaa",
		"Stubber":                     "\xee\x97\x87",
		"Studiovinari":                "\xef\x8f\xb8",
		"Stumbleupon":                 "\xef\x86\xa4",
		"StumbleuponCircle":           "\xef\x86\xa3",
		"Superpowers":                 "\xef\x8b\x9d",
		"Supple":                      "\xef\x8f\xb9",
		"Suse":                        "\xef\x9f\x96",
		"Swift":                       "\xef\xa3\xa1",
		"Symfony":                     "\xef\xa0\xbd",
		"Teamspeak":                   "\xef\x93\xb9",
		"Telegram":                    "\xef\x8b\x86",
		"TencentWeibo":                "\xef\x87\x95",
		"TheRedYeti":                  "\xef\x9a\x9d",
		"Themeco":                     "\xef\x97\x86",
		"Themeisle":                   "\xef\x8a\xb2",
		"ThinkPeaks":                  "\xef\x9c\xb1",
		"Threads":                     "\xee\x98\x98",
		"Tiktok":                      "\xee\x81\xbb",
		"TradeFederation":             "\xef\x94\x93",
		"Trello":                      "\xef\x86\x81",
		"Tumblr":                      "\xef\x85\xb3",
		"Twitch":                      "\xef\x87\xa8",
		"Twitter":                     "\xef\x82\x99",
		"Typo3":                       "\xef\x90\xab",
		"Uber":                        "\xef\x90\x82",
		"Ubuntu":                      "\xef\x9f\x9f",
		"Uikit":                       "\xef\x90\x83",
		"Umbraco":                     "\xef\xa3\xa8",
		"Uncharted":                   "\xee\x82\x84",
		"Uniregistry":                 "\xef\x90\x84",
		"Unity":                       "\xee\x81\x89",
		"Unsplash":                    "\xee\x81\xbc",
		"Untappd":                     "\xef\x90\x85",
		"Ups":                         "\xef\x9f\xa0",
		"Upwork":                      "\xee\x99\x81",
		"Usb":                         "\xef\x8a\x87",
		"Usps":                        "\xef\x9f\xa1",
		"Ussunnah":                    "\xef\x90\x87",
		"Vaadin":                      "\xef\x90\x88",
		"Viacoin":                     "\xef\x88\xb7",
		"Viadeo":                      "\xef\x8a\xa9",
		"Viber":                       "\xef\x90\x89",
		"Vimeo":                       "\xef\x90\x8a",
		"VimeoV":                      "\xef\x89\xbd",
		"Vine":                        "\xef\x87\x8a",
		"Vk":                          "\xef\x86\x89",
		"Vnv":                         "\xef\x90\x8b",
		"Vuejs":                       "\xef\x90\x9f",
		"WatchmanMonitoring":          "\xee\x82\x87",
		"Waze":                        "\xef\xa0\xbf",
		"WebAwesome":                  "\xee\x9a\x82",
		"Webflow":                     "\xee\x99\x9c",
		"Weebly":                      "\xef\x97\x8c",
		"Weibo":                       "\xef\x86\x8a",
		"Weixin":                      "\xef\x87\x97",
		"Whatsapp":                    "\xef\x88\xb2",
		"Whmcs":                       "\xef\x90\x8d",
		"WikipediaW":                  "\xef\x89\xa6",
		"Windows":                     "\xef\x85\xba",
		"Wirsindhandwerk":             "\xee\x8b\x90",
		"Wix":                         "\xef\x97\x8f",
		"WizardsOfTheCoast":           "\xef\x9c\xb0",
		"Wodu":                        "\xee\x82\x88",
		"WolfPackBattalion":           "\xef\x94\x94",
		"Wordpress":                   "\xef\x86\x9a",
		"WordpressSimple":             "\xef\x90\x91",
		"Wpbeginner":                  "\xef\x8a\x97",
		"Wpexplorer":                  "\xef\x8b\x9e",
		"Wpforms":                     "\xef\x8a\x98",
		"Wpressr":                     "\xef\x8f\xa4",
		"XTwitter":                    "\xee\x98\x9b",
		"Xbox":                        "\xef\x90\x92",
		"Xing":                        "\xef\x85\xa8",
		"YCombinator":                 "\xef\x88\xbb",
		"Yahoo":                       "\xef\x86\x9e",
		"Yammer":                      "\xef\xa1\x80",
		"Yandex":                      "\xef\x90\x93",
		"YandexInternational":         "\xef\x90\x94",
		"Yarn":                        "\xef\x9f\xa3",
		"Yelp":                        "\xef\x87\xa9",
		"Yoast":                       "\xef\x8a\xb1",
		"Youtube":                     "\xef\x85\xa7",
		"Zhihu":                       "\xef\x98\xbf",
	},
}
View Source
var IconsFontaudio = Font{
	Filenames: [][2]string{
		{"FAD", "fontaudio.ttf"},
	},
	Min:   0xf101,
	Max16: 0xf19b,
	Max:   0xf19b,
	Icons: map[string]string{
		"Adr":               "\xef\x84\x81",
		"Adsr":              "\xef\x84\x82",
		"Ahdsr":             "\xef\x84\x83",
		"Ar":                "\xef\x84\x84",
		"Armrecording":      "\xef\x84\x85",
		"Arpchord":          "\xef\x84\x86",
		"Arpdown":           "\xef\x84\x87",
		"Arpdownandup":      "\xef\x84\x88",
		"Arpdownup":         "\xef\x84\x89",
		"Arpplayorder":      "\xef\x84\x8a",
		"Arprandom":         "\xef\x84\x8b",
		"Arpup":             "\xef\x84\x8c",
		"Arpupandown":       "\xef\x84\x8d",
		"Arpupdown":         "\xef\x84\x8e",
		"ArrowsHorz":        "\xef\x84\x8f",
		"ArrowsVert":        "\xef\x84\x90",
		"Automation2p":      "\xef\x84\x91",
		"Automation3p":      "\xef\x84\x92",
		"Automation4p":      "\xef\x84\x93",
		"Backward":          "\xef\x84\x94",
		"Bluetooth":         "\xef\x84\x95",
		"CaretDown":         "\xef\x84\x96",
		"CaretLeft":         "\xef\x84\x97",
		"CaretRight":        "\xef\x84\x98",
		"CaretUp":           "\xef\x84\x99",
		"Close":             "\xef\x84\x9a",
		"Copy":              "\xef\x84\x9b",
		"Cpu":               "\xef\x84\x9c",
		"Cutter":            "\xef\x84\x9d",
		"DigitalColon":      "\xef\x84\x9e",
		"DigitalDot":        "\xef\x84\x9f",
		"Digital0":          "\xef\x84\xa0",
		"Digital1":          "\xef\x84\xa1",
		"Digital2":          "\xef\x84\xa2",
		"Digital3":          "\xef\x84\xa3",
		"Digital4":          "\xef\x84\xa4",
		"Digital5":          "\xef\x84\xa5",
		"Digital6":          "\xef\x84\xa6",
		"Digital7":          "\xef\x84\xa7",
		"Digital8":          "\xef\x84\xa8",
		"Digital9":          "\xef\x84\xa9",
		"Diskio":            "\xef\x84\xaa",
		"Drumpad":           "\xef\x84\xab",
		"Duplicate":         "\xef\x84\xac",
		"Eraser":            "\xef\x84\xad",
		"Ffwd":              "\xef\x84\xae",
		"FilterBandpass":    "\xef\x84\xaf",
		"FilterBell":        "\xef\x84\xb0",
		"FilterBypass":      "\xef\x84\xb1",
		"FilterHighpass":    "\xef\x84\xb2",
		"FilterLowpass":     "\xef\x84\xb3",
		"FilterNotch":       "\xef\x84\xb4",
		"FilterRezHighpass": "\xef\x84\xb5",
		"FilterRezLowpass":  "\xef\x84\xb6",
		"FilterShelvingHi":  "\xef\x84\xb7",
		"FilterShelvingLo":  "\xef\x84\xb8",
		"Foldback":          "\xef\x84\xb9",
		"Forward":           "\xef\x84\xba",
		"HExpand":           "\xef\x84\xbb",
		"Hardclip":          "\xef\x84\xbc",
		"Hardclipcurve":     "\xef\x84\xbd",
		"Headphones":        "\xef\x84\xbe",
		"Keyboard":          "\xef\x84\xbf",
		"Lock":              "\xef\x85\x80",
		"LogoAax":           "\xef\x85\x81",
		"LogoAbletonlink":   "\xef\x85\x82",
		"LogoAu":            "\xef\x85\x83",
		"LogoAudacity":      "\xef\x85\x84",
		"LogoAudiobus":      "\xef\x85\x85",
		"LogoCubase":        "\xef\x85\x86",
		"LogoFl":            "\xef\x85\x87",
		"LogoJuce":          "\xef\x85\x88",
		"LogoLadspa":        "\xef\x85\x89",
		"LogoLive":          "\xef\x85\x8a",
		"LogoLv2":           "\xef\x85\x8b",
		"LogoProtools":      "\xef\x85\x8c",
		"LogoRackext":       "\xef\x85\x8d",
		"LogoReaper":        "\xef\x85\x8e",
		"LogoReason":        "\xef\x85\x8f",
		"LogoRewire":        "\xef\x85\x90",
		"LogoStudioone":     "\xef\x85\x91",
		"LogoTracktion":     "\xef\x85\x92",
		"LogoVst":           "\xef\x85\x93",
		"LogoWaveform":      "\xef\x85\x94",
		"Loop":              "\xef\x85\x95",
		"Metronome":         "\xef\x85\x96",
		"Microphone":        "\xef\x85\x97",
		"Midiplug":          "\xef\x85\x98",
		"Modrandom":         "\xef\x85\x99",
		"Modsawdown":        "\xef\x85\x9a",
		"Modsawup":          "\xef\x85\x9b",
		"Modsh":             "\xef\x85\x9c",
		"Modsine":           "\xef\x85\x9d",
		"Modsquare":         "\xef\x85\x9e",
		"Modtri":            "\xef\x85\x9f",
		"Modularplug":       "\xef\x85\xa0",
		"Mono":              "\xef\x85\xa1",
		"Mute":              "\xef\x85\xa2",
		"Next":              "\xef\x85\xa3",
		"Open":              "\xef\x85\xa4",
		"Paste":             "\xef\x85\xa5",
		"Pause":             "\xef\x85\xa6",
		"Pen":               "\xef\x85\xa7",
		"Phase":             "\xef\x85\xa8",
		"Play":              "\xef\x85\xa9",
		"Pointer":           "\xef\x85\xaa",
		"Powerswitch":       "\xef\x85\xab",
		"PresetA":           "\xef\x85\xac",
		"PresetAb":          "\xef\x85\xad",
		"PresetB":           "\xef\x85\xae",
		"PresetBa":          "\xef\x85\xaf",
		"Prev":              "\xef\x85\xb0",
		"PunchIn":           "\xef\x85\xb1",
		"PunchOut":          "\xef\x85\xb2",
		"Ram":               "\xef\x85\xb3",
		"Random1dice":       "\xef\x85\xb4",
		"Random2dice":       "\xef\x85\xb5",
		"Record":            "\xef\x85\xb6",
		"Redo":              "\xef\x85\xb7",
		"RepeatOne":         "\xef\x85\xb8",
		"Repeat":            "\xef\x85\xb9",
		"Rew":               "\xef\x85\xba",
		"RoundswitchOff":    "\xef\x85\xbb",
		"RoundswitchOn":     "\xef\x85\xbc",
		"Save":              "\xef\x85\xbd",
		"Saveas":            "\xef\x85\xbe",
		"Scissors":          "\xef\x85\xbf",
		"Shuffle":           "\xef\x86\x80",
		"SliderRound1":      "\xef\x86\x81",
		"SliderRound2":      "\xef\x86\x82",
		"SliderRound3":      "\xef\x86\x83",
		"Sliderhandle1":     "\xef\x86\x84",
		"Sliderhandle2":     "\xef\x86\x85",
		"Softclip":          "\xef\x86\x86",
		"Softclipcurve":     "\xef\x86\x87",
		"Solo":              "\xef\x86\x88",
		"Speaker":           "\xef\x86\x89",
		"SquareswitchOff":   "\xef\x86\x8a",
		"SquareswitchOn":    "\xef\x86\x8b",
		"Stereo":            "\xef\x86\x8c",
		"Stop":              "\xef\x86\x8d",
		"Thunderbolt":       "\xef\x86\x8e",
		"Timeselect":        "\xef\x86\x8f",
		"Undo":              "\xef\x86\x90",
		"Unlock":            "\xef\x86\x91",
		"Usb":               "\xef\x86\x92",
		"VExpand":           "\xef\x86\x93",
		"VroundswitchOff":   "\xef\x86\x94",
		"VroundswitchOn":    "\xef\x86\x95",
		"VsquareswitchOff":  "\xef\x86\x96",
		"VsquareswitchOn":   "\xef\x86\x97",
		"Waveform":          "\xef\x86\x98",
		"Xlrplug":           "\xef\x86\x99",
		"Zoomin":            "\xef\x86\x9a",
		"Zoomout":           "\xef\x86\x9b",
	},
}
View Source
var IconsForkAwesome = Font{
	Filenames: [][2]string{
		{"FK", "forkawesome-webfont.ttf"},
	},
	Min:   0xf000,
	Max16: 0xf372,
	Max:   0xf372,
	Icons: map[string]string{
		"Glass":                            "\xef\x80\x80",
		"Music":                            "\xef\x80\x81",
		"Search":                           "\xef\x80\x82",
		"EnvelopeO":                        "\xef\x80\x83",
		"Heart":                            "\xef\x80\x84",
		"Star":                             "\xef\x80\x85",
		"StarO":                            "\xef\x80\x86",
		"User":                             "\xef\x80\x87",
		"Film":                             "\xef\x80\x88",
		"ThLarge":                          "\xef\x80\x89",
		"Th":                               "\xef\x80\x8a",
		"ThList":                           "\xef\x80\x8b",
		"Check":                            "\xef\x80\x8c",
		"Times":                            "\xef\x80\x8d",
		"SearchPlus":                       "\xef\x80\x8e",
		"SearchMinus":                      "\xef\x80\x90",
		"PowerOff":                         "\xef\x80\x91",
		"Signal":                           "\xef\x80\x92",
		"Cog":                              "\xef\x80\x93",
		"TrashO":                           "\xef\x80\x94",
		"Home":                             "\xef\x80\x95",
		"FileO":                            "\xef\x80\x96",
		"ClockO":                           "\xef\x80\x97",
		"Road":                             "\xef\x80\x98",
		"Download":                         "\xef\x80\x99",
		"ArrowCircleODown":                 "\xef\x80\x9a",
		"ArrowCircleOUp":                   "\xef\x80\x9b",
		"Inbox":                            "\xef\x80\x9c",
		"PlayCircleO":                      "\xef\x80\x9d",
		"Repeat":                           "\xef\x80\x9e",
		"Refresh":                          "\xef\x80\xa1",
		"ListAlt":                          "\xef\x80\xa2",
		"Lock":                             "\xef\x80\xa3",
		"Flag":                             "\xef\x80\xa4",
		"Headphones":                       "\xef\x80\xa5",
		"VolumeOff":                        "\xef\x80\xa6",
		"VolumeDown":                       "\xef\x80\xa7",
		"VolumeUp":                         "\xef\x80\xa8",
		"Qrcode":                           "\xef\x80\xa9",
		"Barcode":                          "\xef\x80\xaa",
		"Tag":                              "\xef\x80\xab",
		"Tags":                             "\xef\x80\xac",
		"Book":                             "\xef\x80\xad",
		"Bookmark":                         "\xef\x80\xae",
		"Print":                            "\xef\x80\xaf",
		"Camera":                           "\xef\x80\xb0",
		"Font":                             "\xef\x80\xb1",
		"Bold":                             "\xef\x80\xb2",
		"Italic":                           "\xef\x80\xb3",
		"TextHeight":                       "\xef\x80\xb4",
		"TextWidth":                        "\xef\x80\xb5",
		"AlignLeft":                        "\xef\x80\xb6",
		"AlignCenter":                      "\xef\x80\xb7",
		"AlignRight":                       "\xef\x80\xb8",
		"AlignJustify":                     "\xef\x80\xb9",
		"List":                             "\xef\x80\xba",
		"Outdent":                          "\xef\x80\xbb",
		"Indent":                           "\xef\x80\xbc",
		"VideoCamera":                      "\xef\x80\xbd",
		"PictureO":                         "\xef\x80\xbe",
		"Pencil":                           "\xef\x81\x80",
		"MapMarker":                        "\xef\x81\x81",
		"Adjust":                           "\xef\x81\x82",
		"Tint":                             "\xef\x81\x83",
		"PencilSquareO":                    "\xef\x81\x84",
		"ShareSquareO":                     "\xef\x81\x85",
		"CheckSquareO":                     "\xef\x81\x86",
		"Arrows":                           "\xef\x81\x87",
		"StepBackward":                     "\xef\x81\x88",
		"FastBackward":                     "\xef\x81\x89",
		"Backward":                         "\xef\x81\x8a",
		"Play":                             "\xef\x81\x8b",
		"Pause":                            "\xef\x81\x8c",
		"Stop":                             "\xef\x81\x8d",
		"Forward":                          "\xef\x81\x8e",
		"FastForward":                      "\xef\x81\x90",
		"StepForward":                      "\xef\x81\x91",
		"Eject":                            "\xef\x81\x92",
		"ChevronLeft":                      "\xef\x81\x93",
		"ChevronRight":                     "\xef\x81\x94",
		"PlusCircle":                       "\xef\x81\x95",
		"MinusCircle":                      "\xef\x81\x96",
		"TimesCircle":                      "\xef\x81\x97",
		"CheckCircle":                      "\xef\x81\x98",
		"QuestionCircle":                   "\xef\x81\x99",
		"InfoCircle":                       "\xef\x81\x9a",
		"Crosshairs":                       "\xef\x81\x9b",
		"TimesCircleO":                     "\xef\x81\x9c",
		"CheckCircleO":                     "\xef\x81\x9d",
		"Ban":                              "\xef\x81\x9e",
		"ArrowLeft":                        "\xef\x81\xa0",
		"ArrowRight":                       "\xef\x81\xa1",
		"ArrowUp":                          "\xef\x81\xa2",
		"ArrowDown":                        "\xef\x81\xa3",
		"Share":                            "\xef\x81\xa4",
		"Expand":                           "\xef\x81\xa5",
		"Compress":                         "\xef\x81\xa6",
		"Plus":                             "\xef\x81\xa7",
		"Minus":                            "\xef\x81\xa8",
		"Asterisk":                         "\xef\x81\xa9",
		"ExclamationCircle":                "\xef\x81\xaa",
		"Gift":                             "\xef\x81\xab",
		"Leaf":                             "\xef\x81\xac",
		"Fire":                             "\xef\x81\xad",
		"Eye":                              "\xef\x81\xae",
		"EyeSlash":                         "\xef\x81\xb0",
		"ExclamationTriangle":              "\xef\x81\xb1",
		"Plane":                            "\xef\x81\xb2",
		"Calendar":                         "\xef\x81\xb3",
		"Random":                           "\xef\x81\xb4",
		"Comment":                          "\xef\x81\xb5",
		"Magnet":                           "\xef\x81\xb6",
		"ChevronUp":                        "\xef\x81\xb7",
		"ChevronDown":                      "\xef\x81\xb8",
		"Retweet":                          "\xef\x81\xb9",
		"ShoppingCart":                     "\xef\x81\xba",
		"Folder":                           "\xef\x81\xbb",
		"FolderOpen":                       "\xef\x81\xbc",
		"ArrowsV":                          "\xef\x81\xbd",
		"ArrowsH":                          "\xef\x81\xbe",
		"BarChart":                         "\xef\x82\x80",
		"TwitterSquare":                    "\xef\x82\x81",
		"FacebookSquare":                   "\xef\x82\x82",
		"CameraRetro":                      "\xef\x82\x83",
		"Key":                              "\xef\x82\x84",
		"Cogs":                             "\xef\x82\x85",
		"Comments":                         "\xef\x82\x86",
		"ThumbsOUp":                        "\xef\x82\x87",
		"ThumbsODown":                      "\xef\x82\x88",
		"StarHalf":                         "\xef\x82\x89",
		"HeartO":                           "\xef\x82\x8a",
		"SignOut":                          "\xef\x82\x8b",
		"LinkedinSquare":                   "\xef\x82\x8c",
		"ThumbTack":                        "\xef\x82\x8d",
		"ExternalLink":                     "\xef\x82\x8e",
		"SignIn":                           "\xef\x82\x90",
		"Trophy":                           "\xef\x82\x91",
		"GithubSquare":                     "\xef\x82\x92",
		"Upload":                           "\xef\x82\x93",
		"LemonO":                           "\xef\x82\x94",
		"Phone":                            "\xef\x82\x95",
		"SquareO":                          "\xef\x82\x96",
		"BookmarkO":                        "\xef\x82\x97",
		"PhoneSquare":                      "\xef\x82\x98",
		"Twitter":                          "\xef\x82\x99",
		"Facebook":                         "\xef\x82\x9a",
		"Github":                           "\xef\x82\x9b",
		"Unlock":                           "\xef\x82\x9c",
		"CreditCard":                       "\xef\x82\x9d",
		"Rss":                              "\xef\x82\x9e",
		"HddO":                             "\xef\x82\xa0",
		"Bullhorn":                         "\xef\x82\xa1",
		"BellO":                            "\xef\x83\xb3",
		"Certificate":                      "\xef\x82\xa3",
		"HandORight":                       "\xef\x82\xa4",
		"HandOLeft":                        "\xef\x82\xa5",
		"HandOUp":                          "\xef\x82\xa6",
		"HandODown":                        "\xef\x82\xa7",
		"ArrowCircleLeft":                  "\xef\x82\xa8",
		"ArrowCircleRight":                 "\xef\x82\xa9",
		"ArrowCircleUp":                    "\xef\x82\xaa",
		"ArrowCircleDown":                  "\xef\x82\xab",
		"Globe":                            "\xef\x82\xac",
		"GlobeE":                           "\xef\x8c\x84",
		"GlobeW":                           "\xef\x8c\x85",
		"Wrench":                           "\xef\x82\xad",
		"Tasks":                            "\xef\x82\xae",
		"Filter":                           "\xef\x82\xb0",
		"Briefcase":                        "\xef\x82\xb1",
		"ArrowsAlt":                        "\xef\x82\xb2",
		"Users":                            "\xef\x83\x80",
		"Link":                             "\xef\x83\x81",
		"Cloud":                            "\xef\x83\x82",
		"Flask":                            "\xef\x83\x83",
		"Scissors":                         "\xef\x83\x84",
		"FilesO":                           "\xef\x83\x85",
		"Paperclip":                        "\xef\x83\x86",
		"FloppyO":                          "\xef\x83\x87",
		"Square":                           "\xef\x83\x88",
		"Bars":                             "\xef\x83\x89",
		"ListUl":                           "\xef\x83\x8a",
		"ListOl":                           "\xef\x83\x8b",
		"Strikethrough":                    "\xef\x83\x8c",
		"Underline":                        "\xef\x83\x8d",
		"Table":                            "\xef\x83\x8e",
		"Magic":                            "\xef\x83\x90",
		"Truck":                            "\xef\x83\x91",
		"Pinterest":                        "\xef\x83\x92",
		"PinterestSquare":                  "\xef\x83\x93",
		"GooglePlusSquare":                 "\xef\x83\x94",
		"GooglePlus":                       "\xef\x83\x95",
		"Money":                            "\xef\x83\x96",
		"CaretDown":                        "\xef\x83\x97",
		"CaretUp":                          "\xef\x83\x98",
		"CaretLeft":                        "\xef\x83\x99",
		"CaretRight":                       "\xef\x83\x9a",
		"Columns":                          "\xef\x83\x9b",
		"Sort":                             "\xef\x83\x9c",
		"SortDesc":                         "\xef\x83\x9d",
		"SortAsc":                          "\xef\x83\x9e",
		"Envelope":                         "\xef\x83\xa0",
		"Linkedin":                         "\xef\x83\xa1",
		"Undo":                             "\xef\x83\xa2",
		"Gavel":                            "\xef\x83\xa3",
		"Tachometer":                       "\xef\x83\xa4",
		"CommentO":                         "\xef\x83\xa5",
		"CommentsO":                        "\xef\x83\xa6",
		"Bolt":                             "\xef\x83\xa7",
		"Sitemap":                          "\xef\x83\xa8",
		"Umbrella":                         "\xef\x83\xa9",
		"Clipboard":                        "\xef\x83\xaa",
		"LightbulbO":                       "\xef\x83\xab",
		"Exchange":                         "\xef\x83\xac",
		"CloudDownload":                    "\xef\x83\xad",
		"CloudUpload":                      "\xef\x83\xae",
		"UserMd":                           "\xef\x83\xb0",
		"Stethoscope":                      "\xef\x83\xb1",
		"Suitcase":                         "\xef\x83\xb2",
		"Bell":                             "\xef\x82\xa2",
		"Coffee":                           "\xef\x83\xb4",
		"Cutlery":                          "\xef\x83\xb5",
		"FileTextO":                        "\xef\x83\xb6",
		"BuildingO":                        "\xef\x83\xb7",
		"HospitalO":                        "\xef\x83\xb8",
		"Ambulance":                        "\xef\x83\xb9",
		"Medkit":                           "\xef\x83\xba",
		"FighterJet":                       "\xef\x83\xbb",
		"Beer":                             "\xef\x83\xbc",
		"HSquare":                          "\xef\x83\xbd",
		"PlusSquare":                       "\xef\x83\xbe",
		"AngleDoubleLeft":                  "\xef\x84\x80",
		"AngleDoubleRight":                 "\xef\x84\x81",
		"AngleDoubleUp":                    "\xef\x84\x82",
		"AngleDoubleDown":                  "\xef\x84\x83",
		"AngleLeft":                        "\xef\x84\x84",
		"AngleRight":                       "\xef\x84\x85",
		"AngleUp":                          "\xef\x84\x86",
		"AngleDown":                        "\xef\x84\x87",
		"Desktop":                          "\xef\x84\x88",
		"Laptop":                           "\xef\x84\x89",
		"Tablet":                           "\xef\x84\x8a",
		"Mobile":                           "\xef\x84\x8b",
		"CircleO":                          "\xef\x84\x8c",
		"QuoteLeft":                        "\xef\x84\x8d",
		"QuoteRight":                       "\xef\x84\x8e",
		"Spinner":                          "\xef\x84\x90",
		"Circle":                           "\xef\x84\x91",
		"Reply":                            "\xef\x84\x92",
		"GithubAlt":                        "\xef\x84\x93",
		"FolderO":                          "\xef\x84\x94",
		"FolderOpenO":                      "\xef\x84\x95",
		"SmileO":                           "\xef\x84\x98",
		"FrownO":                           "\xef\x84\x99",
		"MehO":                             "\xef\x84\x9a",
		"Gamepad":                          "\xef\x84\x9b",
		"KeyboardO":                        "\xef\x84\x9c",
		"FlagO":                            "\xef\x84\x9d",
		"FlagCheckered":                    "\xef\x84\x9e",
		"Terminal":                         "\xef\x84\xa0",
		"Code":                             "\xef\x84\xa1",
		"ReplyAll":                         "\xef\x84\xa2",
		"StarHalfO":                        "\xef\x84\xa3",
		"LocationArrow":                    "\xef\x84\xa4",
		"Crop":                             "\xef\x84\xa5",
		"CodeFork":                         "\xef\x84\xa6",
		"ChainBroken":                      "\xef\x84\xa7",
		"Question":                         "\xef\x84\xa8",
		"Info":                             "\xef\x84\xa9",
		"Exclamation":                      "\xef\x84\xaa",
		"Superscript":                      "\xef\x84\xab",
		"Subscript":                        "\xef\x84\xac",
		"Eraser":                           "\xef\x84\xad",
		"PuzzlePiece":                      "\xef\x84\xae",
		"Microphone":                       "\xef\x84\xb0",
		"MicrophoneSlash":                  "\xef\x84\xb1",
		"Shield":                           "\xef\x84\xb2",
		"CalendarO":                        "\xef\x84\xb3",
		"FireExtinguisher":                 "\xef\x84\xb4",
		"Rocket":                           "\xef\x84\xb5",
		"Maxcdn":                           "\xef\x84\xb6",
		"ChevronCircleLeft":                "\xef\x84\xb7",
		"ChevronCircleRight":               "\xef\x84\xb8",
		"ChevronCircleUp":                  "\xef\x84\xb9",
		"ChevronCircleDown":                "\xef\x84\xba",
		"Html5":                            "\xef\x84\xbb",
		"Css3":                             "\xef\x84\xbc",
		"Anchor":                           "\xef\x84\xbd",
		"UnlockAlt":                        "\xef\x84\xbe",
		"Bullseye":                         "\xef\x85\x80",
		"EllipsisH":                        "\xef\x85\x81",
		"EllipsisV":                        "\xef\x85\x82",
		"RssSquare":                        "\xef\x85\x83",
		"PlayCircle":                       "\xef\x85\x84",
		"Ticket":                           "\xef\x85\x85",
		"MinusSquare":                      "\xef\x85\x86",
		"MinusSquareO":                     "\xef\x85\x87",
		"LevelUp":                          "\xef\x85\x88",
		"LevelDown":                        "\xef\x85\x89",
		"CheckSquare":                      "\xef\x85\x8a",
		"PencilSquare":                     "\xef\x85\x8b",
		"ExternalLinkSquare":               "\xef\x85\x8c",
		"ShareSquare":                      "\xef\x85\x8d",
		"Compass":                          "\xef\x85\x8e",
		"CaretSquareODown":                 "\xef\x85\x90",
		"CaretSquareOUp":                   "\xef\x85\x91",
		"CaretSquareORight":                "\xef\x85\x92",
		"Eur":                              "\xef\x85\x93",
		"Gbp":                              "\xef\x85\x94",
		"Usd":                              "\xef\x85\x95",
		"Inr":                              "\xef\x85\x96",
		"Jpy":                              "\xef\x85\x97",
		"Rub":                              "\xef\x85\x98",
		"Krw":                              "\xef\x85\x99",
		"Btc":                              "\xef\x85\x9a",
		"File":                             "\xef\x85\x9b",
		"FileText":                         "\xef\x85\x9c",
		"SortAlphaAsc":                     "\xef\x85\x9d",
		"SortAlphaDesc":                    "\xef\x85\x9e",
		"SortAmountAsc":                    "\xef\x85\xa0",
		"SortAmountDesc":                   "\xef\x85\xa1",
		"SortNumericAsc":                   "\xef\x85\xa2",
		"SortNumericDesc":                  "\xef\x85\xa3",
		"ThumbsUp":                         "\xef\x85\xa4",
		"ThumbsDown":                       "\xef\x85\xa5",
		"YoutubeSquare":                    "\xef\x85\xa6",
		"Youtube":                          "\xef\x85\xa7",
		"Xing":                             "\xef\x85\xa8",
		"XingSquare":                       "\xef\x85\xa9",
		"YoutubePlay":                      "\xef\x85\xaa",
		"Dropbox":                          "\xef\x85\xab",
		"StackOverflow":                    "\xef\x85\xac",
		"Instagram":                        "\xef\x85\xad",
		"Flickr":                           "\xef\x85\xae",
		"Adn":                              "\xef\x85\xb0",
		"Bitbucket":                        "\xef\x85\xb1",
		"BitbucketSquare":                  "\xef\x85\xb2",
		"Tumblr":                           "\xef\x85\xb3",
		"TumblrSquare":                     "\xef\x85\xb4",
		"LongArrowDown":                    "\xef\x85\xb5",
		"LongArrowUp":                      "\xef\x85\xb6",
		"LongArrowLeft":                    "\xef\x85\xb7",
		"LongArrowRight":                   "\xef\x85\xb8",
		"Apple":                            "\xef\x85\xb9",
		"Windows":                          "\xef\x85\xba",
		"Android":                          "\xef\x85\xbb",
		"Linux":                            "\xef\x85\xbc",
		"Dribbble":                         "\xef\x85\xbd",
		"Skype":                            "\xef\x85\xbe",
		"Foursquare":                       "\xef\x86\x80",
		"Trello":                           "\xef\x86\x81",
		"Female":                           "\xef\x86\x82",
		"Male":                             "\xef\x86\x83",
		"Gratipay":                         "\xef\x86\x84",
		"SunO":                             "\xef\x86\x85",
		"MoonO":                            "\xef\x86\x86",
		"Archive":                          "\xef\x86\x87",
		"Bug":                              "\xef\x86\x88",
		"Vk":                               "\xef\x86\x89",
		"Weibo":                            "\xef\x86\x8a",
		"Renren":                           "\xef\x86\x8b",
		"Pagelines":                        "\xef\x86\x8c",
		"StackExchange":                    "\xef\x86\x8d",
		"ArrowCircleORight":                "\xef\x86\x8e",
		"ArrowCircleOLeft":                 "\xef\x86\x90",
		"CaretSquareOLeft":                 "\xef\x86\x91",
		"DotCircleO":                       "\xef\x86\x92",
		"Wheelchair":                       "\xef\x86\x93",
		"VimeoSquare":                      "\xef\x86\x94",
		"Try":                              "\xef\x86\x95",
		"PlusSquareO":                      "\xef\x86\x96",
		"SpaceShuttle":                     "\xef\x86\x97",
		"Slack":                            "\xef\x86\x98",
		"EnvelopeSquare":                   "\xef\x86\x99",
		"Wordpress":                        "\xef\x86\x9a",
		"Openid":                           "\xef\x86\x9b",
		"University":                       "\xef\x86\x9c",
		"GraduationCap":                    "\xef\x86\x9d",
		"Yahoo":                            "\xef\x86\x9e",
		"Google":                           "\xef\x86\xa0",
		"Reddit":                           "\xef\x86\xa1",
		"RedditSquare":                     "\xef\x86\xa2",
		"StumbleuponCircle":                "\xef\x86\xa3",
		"Stumbleupon":                      "\xef\x86\xa4",
		"Delicious":                        "\xef\x86\xa5",
		"Digg":                             "\xef\x86\xa6",
		"Drupal":                           "\xef\x86\xa9",
		"Joomla":                           "\xef\x86\xaa",
		"Language":                         "\xef\x86\xab",
		"Fax":                              "\xef\x86\xac",
		"Building":                         "\xef\x86\xad",
		"Child":                            "\xef\x86\xae",
		"Paw":                              "\xef\x86\xb0",
		"Spoon":                            "\xef\x86\xb1",
		"Cube":                             "\xef\x86\xb2",
		"Cubes":                            "\xef\x86\xb3",
		"Behance":                          "\xef\x86\xb4",
		"BehanceSquare":                    "\xef\x86\xb5",
		"Steam":                            "\xef\x86\xb6",
		"SteamSquare":                      "\xef\x86\xb7",
		"Recycle":                          "\xef\x86\xb8",
		"Car":                              "\xef\x86\xb9",
		"Taxi":                             "\xef\x86\xba",
		"Tree":                             "\xef\x86\xbb",
		"Spotify":                          "\xef\x86\xbc",
		"Deviantart":                       "\xef\x86\xbd",
		"Soundcloud":                       "\xef\x86\xbe",
		"Database":                         "\xef\x87\x80",
		"FilePdfO":                         "\xef\x87\x81",
		"FileWordO":                        "\xef\x87\x82",
		"FileExcelO":                       "\xef\x87\x83",
		"FilePowerpointO":                  "\xef\x87\x84",
		"FileImageO":                       "\xef\x87\x85",
		"FileArchiveO":                     "\xef\x87\x86",
		"FileAudioO":                       "\xef\x87\x87",
		"FileVideoO":                       "\xef\x87\x88",
		"FileCodeO":                        "\xef\x87\x89",
		"Vine":                             "\xef\x87\x8a",
		"Codepen":                          "\xef\x87\x8b",
		"Jsfiddle":                         "\xef\x87\x8c",
		"LifeRing":                         "\xef\x87\x8d",
		"CircleONotch":                     "\xef\x87\x8e",
		"Rebel":                            "\xef\x87\x90",
		"Empire":                           "\xef\x87\x91",
		"GitSquare":                        "\xef\x87\x92",
		"Git":                              "\xef\x87\x93",
		"HackerNews":                       "\xef\x87\x94",
		"TencentWeibo":                     "\xef\x87\x95",
		"Qq":                               "\xef\x87\x96",
		"Weixin":                           "\xef\x87\x97",
		"PaperPlane":                       "\xef\x87\x98",
		"PaperPlaneO":                      "\xef\x87\x99",
		"History":                          "\xef\x87\x9a",
		"CircleThin":                       "\xef\x87\x9b",
		"Header":                           "\xef\x87\x9c",
		"Paragraph":                        "\xef\x87\x9d",
		"Sliders":                          "\xef\x87\x9e",
		"ShareAlt":                         "\xef\x87\xa0",
		"ShareAltSquare":                   "\xef\x87\xa1",
		"Bomb":                             "\xef\x87\xa2",
		"FutbolO":                          "\xef\x87\xa3",
		"Tty":                              "\xef\x87\xa4",
		"Binoculars":                       "\xef\x87\xa5",
		"Plug":                             "\xef\x87\xa6",
		"Slideshare":                       "\xef\x87\xa7",
		"Twitch":                           "\xef\x87\xa8",
		"Yelp":                             "\xef\x87\xa9",
		"NewspaperO":                       "\xef\x87\xaa",
		"Wifi":                             "\xef\x87\xab",
		"Calculator":                       "\xef\x87\xac",
		"Paypal":                           "\xef\x87\xad",
		"GoogleWallet":                     "\xef\x87\xae",
		"CcVisa":                           "\xef\x87\xb0",
		"CcMastercard":                     "\xef\x87\xb1",
		"CcDiscover":                       "\xef\x87\xb2",
		"CcAmex":                           "\xef\x87\xb3",
		"CcPaypal":                         "\xef\x87\xb4",
		"CcStripe":                         "\xef\x87\xb5",
		"BellSlash":                        "\xef\x87\xb6",
		"BellSlashO":                       "\xef\x87\xb7",
		"Trash":                            "\xef\x87\xb8",
		"Copyright":                        "\xef\x87\xb9",
		"At":                               "\xef\x87\xba",
		"Eyedropper":                       "\xef\x87\xbb",
		"PaintBrush":                       "\xef\x87\xbc",
		"BirthdayCake":                     "\xef\x87\xbd",
		"AreaChart":                        "\xef\x87\xbe",
		"PieChart":                         "\xef\x88\x80",
		"LineChart":                        "\xef\x88\x81",
		"Lastfm":                           "\xef\x88\x82",
		"LastfmSquare":                     "\xef\x88\x83",
		"ToggleOff":                        "\xef\x88\x84",
		"ToggleOn":                         "\xef\x88\x85",
		"Bicycle":                          "\xef\x88\x86",
		"Bus":                              "\xef\x88\x87",
		"Ioxhost":                          "\xef\x88\x88",
		"Angellist":                        "\xef\x88\x89",
		"Cc":                               "\xef\x88\x8a",
		"Ils":                              "\xef\x88\x8b",
		"Meanpath":                         "\xef\x88\x8c",
		"Buysellads":                       "\xef\x88\x8d",
		"Connectdevelop":                   "\xef\x88\x8e",
		"Dashcube":                         "\xef\x88\x90",
		"Forumbee":                         "\xef\x88\x91",
		"Leanpub":                          "\xef\x88\x92",
		"Sellsy":                           "\xef\x88\x93",
		"Shirtsinbulk":                     "\xef\x88\x94",
		"Simplybuilt":                      "\xef\x88\x95",
		"Skyatlas":                         "\xef\x88\x96",
		"CartPlus":                         "\xef\x88\x97",
		"CartArrowDown":                    "\xef\x88\x98",
		"Diamond":                          "\xef\x88\x99",
		"Ship":                             "\xef\x88\x9a",
		"UserSecret":                       "\xef\x88\x9b",
		"Motorcycle":                       "\xef\x88\x9c",
		"StreetView":                       "\xef\x88\x9d",
		"Heartbeat":                        "\xef\x88\x9e",
		"Venus":                            "\xef\x88\xa1",
		"Mars":                             "\xef\x88\xa2",
		"Mercury":                          "\xef\x88\xa3",
		"Transgender":                      "\xef\x88\xa4",
		"TransgenderAlt":                   "\xef\x88\xa5",
		"VenusDouble":                      "\xef\x88\xa6",
		"MarsDouble":                       "\xef\x88\xa7",
		"VenusMars":                        "\xef\x88\xa8",
		"MarsStroke":                       "\xef\x88\xa9",
		"MarsStrokeV":                      "\xef\x88\xaa",
		"MarsStrokeH":                      "\xef\x88\xab",
		"Neuter":                           "\xef\x88\xac",
		"Genderless":                       "\xef\x88\xad",
		"FacebookOfficial":                 "\xef\x88\xb0",
		"PinterestP":                       "\xef\x88\xb1",
		"Whatsapp":                         "\xef\x88\xb2",
		"Server":                           "\xef\x88\xb3",
		"UserPlus":                         "\xef\x88\xb4",
		"UserTimes":                        "\xef\x88\xb5",
		"Bed":                              "\xef\x88\xb6",
		"Viacoin":                          "\xef\x88\xb7",
		"Train":                            "\xef\x88\xb8",
		"Subway":                           "\xef\x88\xb9",
		"Medium":                           "\xef\x88\xba",
		"MediumSquare":                     "\xef\x8b\xb8",
		"YCombinator":                      "\xef\x88\xbb",
		"OptinMonster":                     "\xef\x88\xbc",
		"Opencart":                         "\xef\x88\xbd",
		"Expeditedssl":                     "\xef\x88\xbe",
		"BatteryFull":                      "\xef\x89\x80",
		"BatteryThreeQuarters":             "\xef\x89\x81",
		"BatteryHalf":                      "\xef\x89\x82",
		"BatteryQuarter":                   "\xef\x89\x83",
		"BatteryEmpty":                     "\xef\x89\x84",
		"MousePointer":                     "\xef\x89\x85",
		"ICursor":                          "\xef\x89\x86",
		"ObjectGroup":                      "\xef\x89\x87",
		"ObjectUngroup":                    "\xef\x89\x88",
		"StickyNote":                       "\xef\x89\x89",
		"StickyNoteO":                      "\xef\x89\x8a",
		"CcJcb":                            "\xef\x89\x8b",
		"CcDinersClub":                     "\xef\x89\x8c",
		"Clone":                            "\xef\x89\x8d",
		"BalanceScale":                     "\xef\x89\x8e",
		"HourglassO":                       "\xef\x89\x90",
		"HourglassStart":                   "\xef\x89\x91",
		"HourglassHalf":                    "\xef\x89\x92",
		"HourglassEnd":                     "\xef\x89\x93",
		"Hourglass":                        "\xef\x89\x94",
		"HandRockO":                        "\xef\x89\x95",
		"HandPaperO":                       "\xef\x89\x96",
		"HandScissorsO":                    "\xef\x89\x97",
		"HandLizardO":                      "\xef\x89\x98",
		"HandSpockO":                       "\xef\x89\x99",
		"HandPointerO":                     "\xef\x89\x9a",
		"HandPeaceO":                       "\xef\x89\x9b",
		"Trademark":                        "\xef\x89\x9c",
		"Registered":                       "\xef\x89\x9d",
		"CreativeCommons":                  "\xef\x89\x9e",
		"Gg":                               "\xef\x89\xa0",
		"GgCircle":                         "\xef\x89\xa1",
		"Tripadvisor":                      "\xef\x89\xa2",
		"Odnoklassniki":                    "\xef\x89\xa3",
		"OdnoklassnikiSquare":              "\xef\x89\xa4",
		"GetPocket":                        "\xef\x89\xa5",
		"WikipediaW":                       "\xef\x89\xa6",
		"Safari":                           "\xef\x89\xa7",
		"Chrome":                           "\xef\x89\xa8",
		"Firefox":                          "\xef\x89\xa9",
		"Opera":                            "\xef\x89\xaa",
		"InternetExplorer":                 "\xef\x89\xab",
		"Television":                       "\xef\x89\xac",
		"Contao":                           "\xef\x89\xad",
		"500px":                            "\xef\x89\xae",
		"Amazon":                           "\xef\x89\xb0",
		"CalendarPlusO":                    "\xef\x89\xb1",
		"CalendarMinusO":                   "\xef\x89\xb2",
		"CalendarTimesO":                   "\xef\x89\xb3",
		"CalendarCheckO":                   "\xef\x89\xb4",
		"Industry":                         "\xef\x89\xb5",
		"MapPin":                           "\xef\x89\xb6",
		"MapSigns":                         "\xef\x89\xb7",
		"MapO":                             "\xef\x89\xb8",
		"Map":                              "\xef\x89\xb9",
		"Commenting":                       "\xef\x89\xba",
		"CommentingO":                      "\xef\x89\xbb",
		"Houzz":                            "\xef\x89\xbc",
		"Vimeo":                            "\xef\x89\xbd",
		"BlackTie":                         "\xef\x89\xbe",
		"Fonticons":                        "\xef\x8a\x80",
		"RedditAlien":                      "\xef\x8a\x81",
		"Edge":                             "\xef\x8a\x82",
		"CreditCardAlt":                    "\xef\x8a\x83",
		"Codiepie":                         "\xef\x8a\x84",
		"Modx":                             "\xef\x8a\x85",
		"FortAwesome":                      "\xef\x8a\x86",
		"Usb":                              "\xef\x8a\x87",
		"ProductHunt":                      "\xef\x8a\x88",
		"Mixcloud":                         "\xef\x8a\x89",
		"Scribd":                           "\xef\x8a\x8a",
		"PauseCircle":                      "\xef\x8a\x8b",
		"PauseCircleO":                     "\xef\x8a\x8c",
		"StopCircle":                       "\xef\x8a\x8d",
		"StopCircleO":                      "\xef\x8a\x8e",
		"ShoppingBag":                      "\xef\x8a\x90",
		"ShoppingBasket":                   "\xef\x8a\x91",
		"Hashtag":                          "\xef\x8a\x92",
		"Bluetooth":                        "\xef\x8a\x93",
		"BluetoothB":                       "\xef\x8a\x94",
		"Percent":                          "\xef\x8a\x95",
		"Gitlab":                           "\xef\x8a\x96",
		"Wpbeginner":                       "\xef\x8a\x97",
		"Wpforms":                          "\xef\x8a\x98",
		"Envira":                           "\xef\x8a\x99",
		"UniversalAccess":                  "\xef\x8a\x9a",
		"WheelchairAlt":                    "\xef\x8a\x9b",
		"QuestionCircleO":                  "\xef\x8a\x9c",
		"Blind":                            "\xef\x8a\x9d",
		"AudioDescription":                 "\xef\x8a\x9e",
		"VolumeControlPhone":               "\xef\x8a\xa0",
		"Braille":                          "\xef\x8a\xa1",
		"AssistiveListeningSystems":        "\xef\x8a\xa2",
		"AmericanSignLanguageInterpreting": "\xef\x8a\xa3",
		"Deaf":                             "\xef\x8a\xa4",
		"Glide":                            "\xef\x8a\xa5",
		"GlideG":                           "\xef\x8a\xa6",
		"SignLanguage":                     "\xef\x8a\xa7",
		"LowVision":                        "\xef\x8a\xa8",
		"Viadeo":                           "\xef\x8a\xa9",
		"ViadeoSquare":                     "\xef\x8a\xaa",
		"Snapchat":                         "\xef\x8a\xab",
		"SnapchatGhost":                    "\xef\x8a\xac",
		"SnapchatSquare":                   "\xef\x8a\xad",
		"FirstOrder":                       "\xef\x8a\xb0",
		"Yoast":                            "\xef\x8a\xb1",
		"Themeisle":                        "\xef\x8a\xb2",
		"GooglePlusOfficial":               "\xef\x8a\xb3",
		"FontAwesome":                      "\xef\x8a\xb4",
		"HandshakeO":                       "\xef\x8a\xb5",
		"EnvelopeOpen":                     "\xef\x8a\xb6",
		"EnvelopeOpenO":                    "\xef\x8a\xb7",
		"Linode":                           "\xef\x8a\xb8",
		"AddressBook":                      "\xef\x8a\xb9",
		"AddressBookO":                     "\xef\x8a\xba",
		"AddressCard":                      "\xef\x8a\xbb",
		"AddressCardO":                     "\xef\x8a\xbc",
		"UserCircle":                       "\xef\x8a\xbd",
		"UserCircleO":                      "\xef\x8a\xbe",
		"UserO":                            "\xef\x8b\x80",
		"IdBadge":                          "\xef\x8b\x81",
		"IdCard":                           "\xef\x8b\x82",
		"IdCardO":                          "\xef\x8b\x83",
		"Quora":                            "\xef\x8b\x84",
		"FreeCodeCamp":                     "\xef\x8b\x85",
		"Telegram":                         "\xef\x8b\x86",
		"ThermometerFull":                  "\xef\x8b\x87",
		"ThermometerThreeQuarters":         "\xef\x8b\x88",
		"ThermometerHalf":                  "\xef\x8b\x89",
		"ThermometerQuarter":               "\xef\x8b\x8a",
		"ThermometerEmpty":                 "\xef\x8b\x8b",
		"Shower":                           "\xef\x8b\x8c",
		"Bath":                             "\xef\x8b\x8d",
		"Podcast":                          "\xef\x8b\x8e",
		"WindowMaximize":                   "\xef\x8b\x90",
		"WindowMinimize":                   "\xef\x8b\x91",
		"WindowRestore":                    "\xef\x8b\x92",
		"WindowClose":                      "\xef\x8b\x93",
		"WindowCloseO":                     "\xef\x8b\x94",
		"Bandcamp":                         "\xef\x8b\x95",
		"Grav":                             "\xef\x8b\x96",
		"Etsy":                             "\xef\x8b\x97",
		"Imdb":                             "\xef\x8b\x98",
		"Ravelry":                          "\xef\x8b\x99",
		"Eercast":                          "\xef\x8b\x9a",
		"Microchip":                        "\xef\x8b\x9b",
		"SnowflakeO":                       "\xef\x8b\x9c",
		"Superpowers":                      "\xef\x8b\x9d",
		"Wpexplorer":                       "\xef\x8b\x9e",
		"Meetup":                           "\xef\x8b\xa0",
		"Mastodon":                         "\xef\x8b\xa1",
		"MastodonAlt":                      "\xef\x8b\xa2",
		"ForkAwesome":                      "\xef\x8b\xa3",
		"Peertube":                         "\xef\x8b\xa4",
		"Diaspora":                         "\xef\x8b\xa5",
		"Friendica":                        "\xef\x8b\xa6",
		"GnuSocial":                        "\xef\x8b\xa7",
		"LiberapaySquare":                  "\xef\x8b\xa8",
		"Liberapay":                        "\xef\x8b\xa9",
		"Scuttlebutt":                      "\xef\x8b\xaa",
		"Hubzilla":                         "\xef\x8b\xab",
		"SocialHome":                       "\xef\x8b\xac",
		"Artstation":                       "\xef\x8b\xad",
		"Discord":                          "\xef\x8b\xae",
		"DiscordAlt":                       "\xef\x8b\xaf",
		"Patreon":                          "\xef\x8b\xb0",
		"Snowdrift":                        "\xef\x8b\xb1",
		"Activitypub":                      "\xef\x8b\xb2",
		"Ethereum":                         "\xef\x8b\xb3",
		"Keybase":                          "\xef\x8b\xb4",
		"Shaarli":                          "\xef\x8b\xb5",
		"ShaarliO":                         "\xef\x8b\xb6",
		"KeyModern":                        "\xef\x8b\xb7",
		"Xmpp":                             "\xef\x8b\xb9",
		"ArchiveOrg":                       "\xef\x8b\xbc",
		"Freedombox":                       "\xef\x8b\xbd",
		"FacebookMessenger":                "\xef\x8b\xbe",
		"Debian":                           "\xef\x8b\xbf",
		"MastodonSquare":                   "\xef\x8c\x80",
		"Tipeee":                           "\xef\x8c\x81",
		"React":                            "\xef\x8c\x82",
		"Dogmazic":                         "\xef\x8c\x83",
		"Zotero":                           "\xef\x8c\x89",
		"Nodejs":                           "\xef\x8c\x88",
		"Nextcloud":                        "\xef\x8c\x86",
		"NextcloudSquare":                  "\xef\x8c\x87",
		"Hackaday":                         "\xef\x8c\x8a",
		"Laravel":                          "\xef\x8c\x8b",
		"Signalapp":                        "\xef\x8c\x8c",
		"Gnupg":                            "\xef\x8c\x8d",
		"Php":                              "\xef\x8c\x8e",
		"Ffmpeg":                           "\xef\x8c\x8f",
		"Joplin":                           "\xef\x8c\x90",
		"Syncthing":                        "\xef\x8c\x91",
		"Inkscape":                         "\xef\x8c\x92",
		"MatrixOrg":                        "\xef\x8c\x93",
		"Pixelfed":                         "\xef\x8c\x94",
		"Bootstrap":                        "\xef\x8c\x95",
		"DevTo":                            "\xef\x8c\x96",
		"Hashnode":                         "\xef\x8c\x97",
		"Jirafeau":                         "\xef\x8c\x98",
		"Emby":                             "\xef\x8c\x99",
		"Wikidata":                         "\xef\x8c\x9a",
		"Gimp":                             "\xef\x8c\x9b",
		"C":                                "\xef\x8c\x9c",
		"Digitalocean":                     "\xef\x8c\x9d",
		"Att":                              "\xef\x8c\x9e",
		"Gitea":                            "\xef\x8c\x9f",
		"FileEpub":                         "\xef\x8c\xa1",
		"Python":                           "\xef\x8c\xa2",
		"Archlinux":                        "\xef\x8c\xa3",
		"Pleroma":                          "\xef\x8c\xa4",
		"Unsplash":                         "\xef\x8c\xa5",
		"Hackster":                         "\xef\x8c\xa6",
		"SpellCheck":                       "\xef\x8c\xa7",
		"Moon":                             "\xef\x8c\xa8",
		"Sun":                              "\xef\x8c\xa9",
		"FDroid":                           "\xef\x8c\xaa",
		"Biometric":                        "\xef\x8c\xab",
		"Wire":                             "\xef\x8c\xac",
		"TorOnion":                         "\xef\x8c\xae",
		"VolumeMute":                       "\xef\x8c\xaf",
		"BellRinging":                      "\xef\x8c\xad",
		"BellRingingO":                     "\xef\x8c\xb0",
		"Hal":                              "\xef\x8c\xb3",
		"Jupyter":                          "\xef\x8c\xb5",
		"Julia":                            "\xef\x8c\xb4",
		"Classicpress":                     "\xef\x8c\xb1",
		"ClassicpressCircle":               "\xef\x8c\xb2",
		"OpenCollective":                   "\xef\x8c\xb6",
		"Orcid":                            "\xef\x8c\xb7",
		"Researchgate":                     "\xef\x8c\xb8",
		"Funkwhale":                        "\xef\x8c\xb9",
		"Askfm":                            "\xef\x8c\xba",
		"Blockstack":                       "\xef\x8c\xbb",
		"Boardgamegeek":                    "\xef\x8c\xbc",
		"Bunny":                            "\xef\x8d\x9f",
		"Buymeacoffee":                     "\xef\x8c\xbd",
		"CcBy":                             "\xef\x8c\xbe",
		"CcCc":                             "\xef\x8c\xbf",
		"CcNcEu":                           "\xef\x8d\x81",
		"CcNcJp":                           "\xef\x8d\x82",
		"CcNc":                             "\xef\x8d\x80",
		"CcNd":                             "\xef\x8d\x83",
		"CcPd":                             "\xef\x8d\x84",
		"CcRemix":                          "\xef\x8d\x85",
		"CcSa":                             "\xef\x8d\x86",
		"CcShare":                          "\xef\x8d\x87",
		"CcZero":                           "\xef\x8d\x88",
		"ConwayGlider":                     "\xef\x8d\x89",
		"Csharp":                           "\xef\x8d\x8a",
		"EmailBulk":                        "\xef\x8d\x8b",
		"EmailBulkO":                       "\xef\x8d\x8c",
		"Gnu":                              "\xef\x8d\x8d",
		"GooglePlay":                       "\xef\x8d\x8e",
		"Heroku":                           "\xef\x8d\x8f",
		"HomeAssistant":                    "\xef\x8d\x90",
		"Java":                             "\xef\x8d\x91",
		"Mariadb":                          "\xef\x8d\x92",
		"Markdown":                         "\xef\x8d\x93",
		"Mysql":                            "\xef\x8d\x94",
		"Nordcast":                         "\xef\x8d\x95",
		"Plume":                            "\xef\x8d\x96",
		"Postgresql":                       "\xef\x8d\x97",
		"SassAlt":                          "\xef\x8d\x99",
		"Sass":                             "\xef\x8d\x98",
		"Skate":                            "\xef\x8d\x9a",
		"Sketchfab":                        "\xef\x8d\x9b",
		"Tex":                              "\xef\x8d\x9c",
		"Textpattern":                      "\xef\x8d\x9d",
		"Unity":                            "\xef\x8d\x9e",
		"Hedgedoc":                         "\xef\x8d\xa0",
		"Fediverse":                        "\xef\x8d\xa1",
		"Proftpd":                          "\xef\x8d\xa2",
		"Osi":                              "\xef\x8d\xa3",
		"Eyeem":                            "\xef\x8d\xa4",
		"EyeemO":                           "\xef\x8d\xa5",
		"Codeberg":                         "\xef\x8d\xa6",
		"Discourse":                        "\xef\x8d\xa7",
		"Mumble":                           "\xef\x8d\xa8",
		"Freedesktop":                      "\xef\x8d\xa9",
		"Javascript":                       "\xef\x8d\xb0",
		"Lemmy":                            "\xef\x8d\xb1",
		"Ipfs":                             "\xef\x8d\xb2",
		"Canonical":                        "\xef\x8d\xaa",
		"Ubuntu":                           "\xef\x8d\xab",
	},
}
View Source
var IconsKenney = Font{
	Filenames: [][2]string{
		{"KI", "kenney-icon-font.ttf"},
	},
	Min:   0xe900,
	Max16: 0xe9e3,
	Max:   0xe9e3,
	Icons: map[string]string{
		"Home":                "\xee\xa4\x80",
		"Adjust":              "\xee\xa4\x81",
		"Wrench":              "\xee\xa4\x82",
		"Cog":                 "\xee\xa4\x83",
		"Off":                 "\xee\xa4\x84",
		"Expand":              "\xee\xa4\x85",
		"Reduce":              "\xee\xa4\x86",
		"Movie":               "\xee\xa4\x87",
		"Flap":                "\xee\xa4\x88",
		"ShoppingCart":        "\xee\xa4\x89",
		"ShoppingCase":        "\xee\xa4\x8a",
		"External":            "\xee\xa4\x8b",
		"Network":             "\xee\xa4\x8c",
		"Check":               "\xee\xa4\x8d",
		"Times":               "\xee\xa4\x8e",
		"TimesCircle":         "\xee\xa4\x8f",
		"Plus":                "\xee\xa4\x90",
		"PlusCircle":          "\xee\xa4\x91",
		"Minus":               "\xee\xa4\x92",
		"MinusCircle":         "\xee\xa4\x93",
		"Info":                "\xee\xa4\x94",
		"InfoCircle":          "\xee\xa4\x95",
		"Question":            "\xee\xa4\x96",
		"QuestionCircle":      "\xee\xa4\x97",
		"Exlamation":          "\xee\xa4\x98",
		"ExclamationCircle":   "\xee\xa4\x99",
		"ExclamationTriangle": "\xee\xa4\x9a",
		"PaintBrush":          "\xee\xa4\x9b",
		"Pencil":              "\xee\xa4\x9c",
		"Checkbox":            "\xee\xa4\x9d",
		"CheckboxChecked":     "\xee\xa4\x9e",
		"Radio":               "\xee\xa4\x9f",
		"RadioChecked":        "\xee\xa4\xa0",
		"SortVertical":        "\xee\xa4\xa1",
		"SortHorizontal":      "\xee\xa4\xa2",
		"Grid":                "\xee\xa4\xa3",
		"List":                "\xee\xa4\xa4",
		"Rows":                "\xee\xa4\xa5",
		"Cells":               "\xee\xa4\xa6",
		"SignalLow":           "\xee\xa4\xa7",
		"SignalMedium":        "\xee\xa4\xa8",
		"SignalHigh":          "\xee\xa4\xa9",
		"Trash":               "\xee\xa4\xaa",
		"TrashAlt":            "\xee\xa4\xab",
		"ReloadInverse":       "\xee\xa4\xac",
		"Reload":              "\xee\xa4\xad",
		"Top":                 "\xee\xa4\xae",
		"Bottom":              "\xee\xa4\xaf",
		"Upload":              "\xee\xa4\xb0",
		"Download":            "\xee\xa4\xb1",
		"Cloud":               "\xee\xa4\xb2",
		"CloudUpload":         "\xee\xa4\xb3",
		"CloudDownload":       "\xee\xa4\xb4",
		"Search":              "\xee\xa4\xb5",
		"SearchPlus":          "\xee\xa4\xb6",
		"SearchMinus":         "\xee\xa4\xb7",
		"SearchEqual":         "\xee\xa4\xb8",
		"Lock":                "\xee\xa4\xb9",
		"Unlock":              "\xee\xa4\xba",
		"User":                "\xee\xa4\xbb",
		"Users":               "\xee\xa4\xbc",
		"UsersAlt":            "\xee\xa4\xbd",
		"SignIn":              "\xee\xa4\xbe",
		"SignInInverse":       "\xee\xa4\xbf",
		"SignOut":             "\xee\xa5\x80",
		"SignOutInverse":      "\xee\xa5\x81",
		"ArrowTop":            "\xee\xa5\x82",
		"ArrowRight":          "\xee\xa5\x83",
		"ArrowBottom":         "\xee\xa5\x84",
		"ArrowLeft":           "\xee\xa5\x85",
		"ArrowTopLeft":        "\xee\xa5\x86",
		"ArrowTopRight":       "\xee\xa5\x87",
		"ArrowBottomRight":    "\xee\xa5\x88",
		"ArrowBottomLeft":     "\xee\xa5\x89",
		"CaretTop":            "\xee\xa5\x8a",
		"CaretRight":          "\xee\xa5\x8b",
		"CaretBottom":         "\xee\xa5\x8c",
		"CaretLeft":           "\xee\xa5\x8d",
		"NextAlt":             "\xee\xa5\x8e",
		"Next":                "\xee\xa5\x8f",
		"Previous":            "\xee\xa5\x90",
		"PreviousAlt":         "\xee\xa5\x91",
		"Fill":                "\xee\xa5\x92",
		"Eraser":              "\xee\xa5\x93",
		"Save":                "\xee\xa5\x94",
		"StepBackward":        "\xee\xa5\x95",
		"Backward":            "\xee\xa5\x96",
		"Pause":               "\xee\xa5\x97",
		"Forward":             "\xee\xa5\x98",
		"StepForward":         "\xee\xa5\x99",
		"Stop":                "\xee\xa5\x9a",
		"Rec":                 "\xee\xa5\x9b",
		"Cursor":              "\xee\xa5\x9c",
		"Pointer":             "\xee\xa5\x9d",
		"Exit":                "\xee\xa5\x9e",
		"Figure":              "\xee\xa5\x9f",
		"Car":                 "\xee\xa5\xa0",
		"Coin":                "\xee\xa5\xa1",
		"Key":                 "\xee\xa5\xa2",
		"Cub":                 "\xee\xa5\xa3",
		"Diamond":             "\xee\xa5\xa4",
		"Badge":               "\xee\xa5\xa5",
		"BadgeAlt":            "\xee\xa5\xa6",
		"Podium":              "\xee\xa5\xa7",
		"PodiumAlt":           "\xee\xa5\xa8",
		"Flag":                "\xee\xa5\xa9",
		"Fist":                "\xee\xa5\xaa",
		"FistCircle":          "\xee\xa5\xab",
		"Heart":               "\xee\xa5\xac",
		"HeartHalf":           "\xee\xa5\xad",
		"HeartHalfO":          "\xee\xa5\xae",
		"HeartO":              "\xee\xa5\xaf",
		"Star":                "\xee\xa5\xb0",
		"StarHalf":            "\xee\xa5\xb1",
		"StarHalfO":           "\xee\xa5\xb2",
		"StarO":               "\xee\xa5\xb3",
		"ButtonB":             "\xee\xa5\xb4",
		"MusicOn":             "\xee\xa5\xb5",
		"MusicOff":            "\xee\xa5\xb6",
		"SoundOn":             "\xee\xa5\xb7",
		"SoundOff":            "\xee\xa5\xb8",
		"SoundOffAlt":         "\xee\xa5\xb9",
		"Robot":               "\xee\xa5\xba",
		"Computer":            "\xee\xa5\xbb",
		"Tablet":              "\xee\xa5\xbc",
		"Smartphone":          "\xee\xa5\xbd",
		"Device":              "\xee\xa5\xbe",
		"DeviceTiltLeft":      "\xee\xa5\xbf",
		"DeviceTiltRight":     "\xee\xa6\x80",
		"Gamepad":             "\xee\xa6\x81",
		"GamepadAlt":          "\xee\xa6\x82",
		"GamepadTiltLeft":     "\xee\xa6\x83",
		"GamepadTiltRight":    "\xee\xa6\x84",
		"PlayerOne":           "\xee\xa6\x85",
		"PlayerTwo":           "\xee\xa6\x86",
		"PlayerThree":         "\xee\xa6\x87",
		"PlayerFour":          "\xee\xa6\x88",
		"Joystick":            "\xee\xa6\x89",
		"JoystickAlt":         "\xee\xa6\x8a",
		"JoystickLeft":        "\xee\xa6\x8b",
		"JoystickRight":       "\xee\xa6\x8c",
		"MouseAlt":            "\xee\xa6\x8d",
		"Mouse":               "\xee\xa6\x8e",
		"MouseLeftButton":     "\xee\xa6\x8f",
		"MouseRightButton":    "\xee\xa6\x90",
		"ButtonOne":           "\xee\xa6\x91",
		"ButtonTwo":           "\xee\xa6\x92",
		"ButtonThree":         "\xee\xa6\x93",
		"ButtonA":             "\xee\xa6\x94",
		"ButtonX":             "\xee\xa6\x95",
		"ButonY":              "\xee\xa6\x96",
		"ButtonTimes":         "\xee\xa6\x97",
		"ButtonSquare":        "\xee\xa6\x98",
		"ButtonCircle":        "\xee\xa6\x99",
		"ButtonTriangle":      "\xee\xa6\x9a",
		"ButtonLeft":          "\xee\xa6\x9b",
		"ButtonL":             "\xee\xa6\x9c",
		"ButtonL1":            "\xee\xa6\x9d",
		"ButtonL2":            "\xee\xa6\x9e",
		"ButtonLb":            "\xee\xa6\x9f",
		"ButtonLt":            "\xee\xa6\xa0",
		"ButtonRt":            "\xee\xa6\xa1",
		"ButtonRb":            "\xee\xa6\xa2",
		"ButtonR2":            "\xee\xa6\xa3",
		"ButtonR1":            "\xee\xa6\xa4",
		"ButtonR":             "\xee\xa6\xa5",
		"ButtonRight":         "\xee\xa6\xa6",
		"ButtonEmpty":         "\xee\xa6\xa7",
		"ButtonStart":         "\xee\xa6\xa8",
		"ButtonSelect":        "\xee\xa6\xa9",
		"Dpad":                "\xee\xa6\xaa",
		"DpadAlt":             "\xee\xa6\xab",
		"DpadTop":             "\xee\xa6\xac",
		"DpadRight":           "\xee\xa6\xad",
		"DpadBottom":          "\xee\xa6\xae",
		"DpadLeft":            "\xee\xa6\xaf",
		"KeyLarge":            "\xee\xa6\xb0",
		"KeyLarge3d":          "\xee\xa6\xb1",
		"KeySmall":            "\xee\xa6\xb2",
		"KeySmall3d":          "\xee\xa6\xb3",
		"StickLeftTop":        "\xee\xa6\xb4",
		"StickLeftSide":       "\xee\xa6\xb5",
		"StickRightSide":      "\xee\xa6\xb6",
		"StickRightTop":       "\xee\xa6\xb7",
		"StickSide":           "\xee\xa6\xb8",
		"StickTiltLeft":       "\xee\xa6\xb9",
		"StickTiltRight":      "\xee\xa6\xba",
		"MoveBl":              "\xee\xa6\xbb",
		"MoveBr":              "\xee\xa6\xbc",
		"MoveBt":              "\xee\xa6\xbd",
		"MoveBtAlt":           "\xee\xa6\xbe",
		"MoveLb":              "\xee\xa6\xbf",
		"MoveLr":              "\xee\xa7\x80",
		"MoveLrAlt":           "\xee\xa7\x81",
		"MoveLt":              "\xee\xa7\x82",
		"MoveRb":              "\xee\xa7\x83",
		"MoveRl":              "\xee\xa7\x84",
		"MoveRlAlt":           "\xee\xa7\x85",
		"MoveRt":              "\xee\xa7\x86",
		"MoveTb":              "\xee\xa7\x87",
		"MoveTbAlt":           "\xee\xa7\x88",
		"MoveTl":              "\xee\xa7\x89",
		"MoveTr":              "\xee\xa7\x8a",
		"StickMoveBl":         "\xee\xa7\x8b",
		"StickMoveBr":         "\xee\xa7\x8c",
		"StickMoveBt":         "\xee\xa7\x8d",
		"StickMoveBtAlt":      "\xee\xa7\x8e",
		"StickMoveLb":         "\xee\xa7\x8f",
		"StickMoveLr":         "\xee\xa7\x90",
		"StickMoveLrAlt":      "\xee\xa7\x91",
		"StickMoveLt":         "\xee\xa7\x92",
		"StickMoveRb":         "\xee\xa7\x93",
		"StickMoveRl":         "\xee\xa7\x94",
		"StickMoveRlAlt":      "\xee\xa7\x95",
		"StickMoveRt":         "\xee\xa7\x96",
		"StickMoveTb":         "\xee\xa7\x97",
		"StickMoveTbAlt":      "\xee\xa7\x98",
		"StickMoveTl":         "\xee\xa7\x99",
		"StickMoveTr":         "\xee\xa7\x9a",
		"Github":              "\xee\xa7\x9b",
		"GithubAlt":           "\xee\xa7\x9c",
		"Twitter":             "\xee\xa7\x9d",
		"Facebook":            "\xee\xa7\x9e",
		"GooglePlus":          "\xee\xa7\x9f",
		"Youtube":             "\xee\xa7\xa2",
		"WeHeart":             "\xee\xa7\xa3",
		"Wolfcms":             "\xee\xa7\xa0",
		"WolfcmsAlt":          "\xee\xa7\xa1",
	},
}
View Source
var IconsLucide = Font{
	Filenames: [][2]string{
		{"LC", "lucide.ttf"},
	},
	Min:   0xe038,
	Max16: 0xe668,
	Max:   0xe668,
	Icons: map[string]string{
		"AArrowDown":                      "\xee\x96\x8a",
		"AArrowUp":                        "\xee\x96\x8b",
		"ALargeSmall":                     "\xee\x96\x8c",
		"Accessibility":                   "\xee\x8a\x97",
		"Activity":                        "\xee\x80\xb8",
		"AirVent":                         "\xee\x8d\x91",
		"Airplay":                         "\xee\x80\xb9",
		"AlarmClockCheck":                 "\xee\x87\xac",
		"AlarmClockMinus":                 "\xee\x87\xad",
		"AlarmClockOff":                   "\xee\x88\xbb",
		"AlarmClockPlus":                  "\xee\x87\xae",
		"AlarmClock":                      "\xee\x80\xba",
		"AlarmSmoke":                      "\xee\x96\x80",
		"Album":                           "\xee\x80\xbb",
		"AlignCenterHorizontal":           "\xee\x89\xac",
		"AlignCenterVertical":             "\xee\x89\xad",
		"AlignCenter":                     "\xee\x80\xbc",
		"AlignEndHorizontal":              "\xee\x89\xae",
		"AlignEndVertical":                "\xee\x89\xaf",
		"AlignHorizontalDistributeCenter": "\xee\x80\xbd",
		"AlignHorizontalDistributeEnd":    "\xee\x80\xbe",
		"AlignHorizontalDistributeStart":  "\xee\x80\xbf",
		"AlignHorizontalJustifyCenter":    "\xee\x89\xb2",
		"AlignHorizontalJustifyEnd":       "\xee\x89\xb3",
		"AlignHorizontalJustifyStart":     "\xee\x89\xb4",
		"AlignHorizontalSpaceAround":      "\xee\x89\xb5",
		"AlignHorizontalSpaceBetween":     "\xee\x89\xb6",
		"AlignJustify":                    "\xee\x81\x80",
		"AlignLeft":                       "\xee\x81\x81",
		"AlignRight":                      "\xee\x81\x82",
		"AlignStartHorizontal":            "\xee\x89\xb0",
		"AlignStartVertical":              "\xee\x89\xb1",
		"AlignVerticalDistributeCenter":   "\xee\x89\xbe",
		"AlignVerticalDistributeEnd":      "\xee\x89\xbf",
		"AlignVerticalDistributeStart":    "\xee\x8a\x80",
		"AlignVerticalJustifyCenter":      "\xee\x89\xb7",
		"AlignVerticalJustifyEnd":         "\xee\x89\xb8",
		"AlignVerticalJustifyStart":       "\xee\x89\xb9",
		"AlignVerticalSpaceAround":        "\xee\x89\xba",
		"AlignVerticalSpaceBetween":       "\xee\x89\xbb",
		"Ambulance":                       "\xee\x97\x80",
		"Ampersand":                       "\xee\x92\xa1",
		"Ampersands":                      "\xee\x92\xa2",
		"Amphora":                         "\xee\x98\xa0",
		"Anchor":                          "\xee\x81\x83",
		"Angry":                           "\xee\x8b\xbc",
		"Annoyed":                         "\xee\x8b\xbd",
		"Antenna":                         "\xee\x93\xa7",
		"Anvil":                           "\xee\x96\x85",
		"Aperture":                        "\xee\x81\x84",
		"AppWindowMac":                    "\xee\x97\x97",
		"AppWindow":                       "\xee\x90\xab",
		"Apple":                           "\xee\x8d\x92",
		"ArchiveRestore":                  "\xee\x8b\x8d",
		"ArchiveX":                        "\xee\x94\x91",
		"Archive":                         "\xee\x81\x85",
		"Armchair":                        "\xee\x8b\x80",
		"ArrowBigDownDash":                "\xee\x90\xa2",
		"ArrowBigDown":                    "\xee\x87\xa1",
		"ArrowBigLeftDash":                "\xee\x90\xa3",
		"ArrowBigLeft":                    "\xee\x87\xa2",
		"ArrowBigRightDash":               "\xee\x90\xa4",
		"ArrowBigRight":                   "\xee\x87\xa3",
		"ArrowBigUpDash":                  "\xee\x90\xa5",
		"ArrowBigUp":                      "\xee\x87\xa4",
		"ArrowDown01":                     "\xee\x90\x98",
		"ArrowDown10":                     "\xee\x90\x99",
		"ArrowDownAZ":                     "\xee\x90\x9a",
		"ArrowDownFromLine":               "\xee\x91\x99",
		"ArrowDownLeft":                   "\xee\x81\x87",
		"ArrowDownNarrowWide":             "\xee\x81\x88",
		"ArrowDownRight":                  "\xee\x81\x89",
		"ArrowDownToDot":                  "\xee\x91\x92",
		"ArrowDownToLine":                 "\xee\x91\x9a",
		"ArrowDownUp":                     "\xee\x81\x8a",
		"ArrowDownWideNarrow":             "\xee\x81\x8b",
		"ArrowDownZA":                     "\xee\x90\x9b",
		"ArrowDown":                       "\xee\x81\x86",
		"ArrowLeftFromLine":               "\xee\x91\x9b",
		"ArrowLeftRight":                  "\xee\x89\x8a",
		"ArrowLeftToLine":                 "\xee\x91\x9c",
		"ArrowLeft":                       "\xee\x81\x8c",
		"ArrowRightFromLine":              "\xee\x91\x9d",
		"ArrowRightLeft":                  "\xee\x90\x9c",
		"ArrowRightToLine":                "\xee\x91\x9e",
		"ArrowRight":                      "\xee\x81\x8d",
		"ArrowUp01":                       "\xee\x90\x9d",
		"ArrowUp10":                       "\xee\x90\x9e",
		"ArrowUpAZ":                       "\xee\x90\x9f",
		"ArrowUpDown":                     "\xee\x8e\x81",
		"ArrowUpFromDot":                  "\xee\x91\x93",
		"ArrowUpFromLine":                 "\xee\x91\x9f",
		"ArrowUpLeft":                     "\xee\x81\x8f",
		"ArrowUpNarrowWide":               "\xee\x81\x90",
		"ArrowUpRight":                    "\xee\x81\x91",
		"ArrowUpToLine":                   "\xee\x91\xa0",
		"ArrowUpWideNarrow":               "\xee\x90\xa0",
		"ArrowUpZA":                       "\xee\x90\xa1",
		"ArrowUp":                         "\xee\x81\x8e",
		"ArrowsUpFromLine":                "\xee\x93\x99",
		"Asterisk":                        "\xee\x87\xaf",
		"AtSign":                          "\xee\x81\x92",
		"Atom":                            "\xee\x8f\x9b",
		"AudioLines":                      "\xee\x95\x9f",
		"AudioWaveform":                   "\xee\x95\xa0",
		"Award":                           "\xee\x81\x93",
		"Axe":                             "\xee\x81\x94",
		"Axis3d":                          "\xee\x8b\xbe",
		"Baby":                            "\xee\x8b\x8e",
		"Backpack":                        "\xee\x8b\x88",
		"BadgeAlert":                      "\xee\x91\xba",
		"BadgeCent":                       "\xee\x94\x94",
		"BadgeCheck":                      "\xee\x89\x81",
		"BadgeDollarSign":                 "\xee\x91\xbb",
		"BadgeEuro":                       "\xee\x94\x95",
		"BadgeHelp":                       "\xee\x91\xbc",
		"BadgeIndianRupee":                "\xee\x94\x96",
		"BadgeInfo":                       "\xee\x91\xbd",
		"BadgeJapaneseYen":                "\xee\x94\x97",
		"BadgeMinus":                      "\xee\x91\xbe",
		"BadgePercent":                    "\xee\x91\xbf",
		"BadgePlus":                       "\xee\x92\x80",
		"BadgePoundSterling":              "\xee\x94\x98",
		"BadgeRussianRuble":               "\xee\x94\x99",
		"BadgeSwissFranc":                 "\xee\x94\x9a",
		"BadgeX":                          "\xee\x92\x81",
		"Badge":                           "\xee\x91\xb9",
		"BaggageClaim":                    "\xee\x8b\x89",
		"Ban":                             "\xee\x81\x95",
		"Banana":                          "\xee\x8d\x93",
		"Bandage":                         "\xee\x98\xa2",
		"BanknoteArrowDown":               "\xee\x99\x91",
		"BanknoteArrowUp":                 "\xee\x99\x92",
		"BanknoteX":                       "\xee\x99\x93",
		"Banknote":                        "\xee\x81\x96",
		"Barcode":                         "\xee\x94\xb8",
		"Baseline":                        "\xee\x8a\x85",
		"Bath":                            "\xee\x8a\xab",
		"BatteryCharging":                 "\xee\x81\x98",
		"BatteryFull":                     "\xee\x81\x99",
		"BatteryLow":                      "\xee\x81\x9a",
		"BatteryMedium":                   "\xee\x81\x9b",
		"BatteryPlus":                     "\xee\x99\x83",
		"BatteryWarning":                  "\xee\x8e\xb0",
		"Battery":                         "\xee\x81\x97",
		"Beaker":                          "\xee\x81\x9c",
		"BeanOff":                         "\xee\x8e\x94",
		"Bean":                            "\xee\x8e\x93",
		"BedDouble":                       "\xee\x8b\x82",
		"BedSingle":                       "\xee\x8b\x83",
		"Bed":                             "\xee\x8b\x81",
		"Beef":                            "\xee\x8e\xa9",
		"BeerOff":                         "\xee\x97\x9e",
		"Beer":                            "\xee\x8b\x8f",
		"BellDot":                         "\xee\x90\xb0",
		"BellElectric":                    "\xee\x96\x81",
		"BellMinus":                       "\xee\x87\xb0",
		"BellOff":                         "\xee\x81\x9e",
		"BellPlus":                        "\xee\x87\xb1",
		"BellRing":                        "\xee\x88\xa4",
		"Bell":                            "\xee\x81\x9d",
		"BetweenHorizontalEnd":            "\xee\x96\x96",
		"BetweenHorizontalStart":          "\xee\x96\x97",
		"BetweenVerticalEnd":              "\xee\x96\x98",
		"BetweenVerticalStart":            "\xee\x96\x99",
		"BicepsFlexed":                    "\xee\x97\xb0",
		"Bike":                            "\xee\x87\x92",
		"Binary":                          "\xee\x87\xb2",
		"Binoculars":                      "\xee\x98\xa6",
		"Biohazard":                       "\xee\x91\x86",
		"Bird":                            "\xee\x8f\x89",
		"Bitcoin":                         "\xee\x81\x9f",
		"Blend":                           "\xee\x96\xa1",
		"Blinds":                          "\xee\x8f\x84",
		"Blocks":                          "\xee\x93\xbf",
		"BluetoothConnected":              "\xee\x86\xb8",
		"BluetoothOff":                    "\xee\x86\xb9",
		"BluetoothSearching":              "\xee\x86\xba",
		"Bluetooth":                       "\xee\x81\xa0",
		"Bold":                            "\xee\x81\xa1",
		"Bolt":                            "\xee\x96\x91",
		"Bomb":                            "\xee\x8b\xbf",
		"Bone":                            "\xee\x8d\x9c",
		"BookA":                           "\xee\x95\x89",
		"BookAudio":                       "\xee\x95\x8a",
		"BookCheck":                       "\xee\x95\x8b",
		"BookCopy":                        "\xee\x8f\xb1",
		"BookDashed":                      "\xee\x8f\xb2",
		"BookDown":                        "\xee\x8f\xb3",
		"BookHeadphones":                  "\xee\x95\x8c",
		"BookHeart":                       "\xee\x95\x8d",
		"BookImage":                       "\xee\x95\x8e",
		"BookKey":                         "\xee\x8f\xb4",
		"BookLock":                        "\xee\x8f\xb5",
		"BookMarked":                      "\xee\x8f\xb6",
		"BookMinus":                       "\xee\x8f\xb7",
		"BookOpenCheck":                   "\xee\x8e\x85",
		"BookOpenText":                    "\xee\x95\x8f",
		"BookOpen":                        "\xee\x81\xa3",
		"BookPlus":                        "\xee\x8f\xb8",
		"BookText":                        "\xee\x95\x90",
		"BookType":                        "\xee\x95\x91",
		"BookUp2":                         "\xee\x92\xab",
		"BookUp":                          "\xee\x8f\xb9",
		"BookUser":                        "\xee\x95\x92",
		"BookX":                           "\xee\x8f\xba",
		"Book":                            "\xee\x81\xa2",
		"BookmarkCheck":                   "\xee\x94\xa4",
		"BookmarkMinus":                   "\xee\x88\xbc",
		"BookmarkPlus":                    "\xee\x88\xbd",
		"BookmarkX":                       "\xee\x94\xa5",
		"Bookmark":                        "\xee\x81\xa4",
		"BoomBox":                         "\xee\x93\xb3",
		"BotMessageSquare":                "\xee\x97\x93",
		"BotOff":                          "\xee\x97\xa5",
		"Bot":                             "\xee\x86\xbb",
		"BowArrow":                        "\xee\x99\xa3",
		"Box":                             "\xee\x81\xa5",
		"Boxes":                           "\xee\x8b\x90",
		"Braces":                          "\xee\x8d\xae",
		"Brackets":                        "\xee\x91\x88",
		"BrainCircuit":                    "\xee\x8f\x8b",
		"BrainCog":                        "\xee\x8f\x8c",
		"Brain":                           "\xee\x8f\x8a",
		"BrickWallFire":                   "\xee\x99\x98",
		"BrickWall":                       "\xee\x96\x86",
		"BriefcaseBusiness":               "\xee\x97\x9a",
		"BriefcaseConveyorBelt":           "\xee\x98\xb0",
		"BriefcaseMedical":                "\xee\x97\x9b",
		"Briefcase":                       "\xee\x81\xa6",
		"BringToFront":                    "\xee\x93\xb4",
		"Brush":                           "\xee\x87\x93",
		"Bubbles":                         "\xee\x99\x99",
		"BugOff":                          "\xee\x94\x92",
		"BugPlay":                         "\xee\x94\x93",
		"Bug":                             "\xee\x88\x8c",
		"Building2":                       "\xee\x8a\x90",
		"Building":                        "\xee\x87\x8c",
		"BusFront":                        "\xee\x94\x80",
		"Bus":                             "\xee\x87\x94",
		"CableCar":                        "\xee\x94\x81",
		"Cable":                           "\xee\x93\xa8",
		"CakeSlice":                       "\xee\x92\xbe",
		"Cake":                            "\xee\x8d\x88",
		"Calculator":                      "\xee\x86\xbc",
		"Calendar1":                       "\xee\x98\xb5",
		"CalendarArrowDown":               "\xee\x98\x83",
		"CalendarArrowUp":                 "\xee\x98\x84",
		"CalendarCheck2":                  "\xee\x8a\xb8",
		"CalendarCheck":                   "\xee\x8a\xb7",
		"CalendarClock":                   "\xee\x8c\x84",
		"CalendarCog":                     "\xee\x97\xb2",
		"CalendarDays":                    "\xee\x8a\xb9",
		"CalendarFold":                    "\xee\x96\xb9",
		"CalendarHeart":                   "\xee\x8c\x85",
		"CalendarMinus2":                  "\xee\x96\xba",
		"CalendarMinus":                   "\xee\x8a\xba",
		"CalendarOff":                     "\xee\x8a\xbb",
		"CalendarPlus2":                   "\xee\x96\xbb",
		"CalendarPlus":                    "\xee\x8a\xbc",
		"CalendarRange":                   "\xee\x8a\xbd",
		"CalendarSearch":                  "\xee\x8c\x86",
		"CalendarSync":                    "\xee\x98\xbb",
		"CalendarX2":                      "\xee\x8a\xbf",
		"CalendarX":                       "\xee\x8a\xbe",
		"Calendar":                        "\xee\x81\xa7",
		"CameraOff":                       "\xee\x81\xa9",
		"Camera":                          "\xee\x81\xa8",
		"CandyCane":                       "\xee\x92\xbf",
		"CandyOff":                        "\xee\x8e\x96",
		"Candy":                           "\xee\x8e\x95",
		"Cannabis":                        "\xee\x97\x99",
		"CaptionsOff":                     "\xee\x97\x86",
		"Captions":                        "\xee\x8e\xa8",
		"CarFront":                        "\xee\x94\x82",
		"CarTaxiFront":                    "\xee\x94\x83",
		"Car":                             "\xee\x87\x95",
		"Caravan":                         "\xee\x94\xbe",
		"Carrot":                          "\xee\x89\x9a",
		"CaseLower":                       "\xee\x8f\x9c",
		"CaseSensitive":                   "\xee\x8f\x9d",
		"CaseUpper":                       "\xee\x8f\x9e",
		"CassetteTape":                    "\xee\x93\x8f",
		"Cast":                            "\xee\x81\xaa",
		"Castle":                          "\xee\x8f\xa4",
		"Cat":                             "\xee\x8e\x90",
		"Cctv":                            "\xee\x96\x82",
		"ChartArea":                       "\xee\x93\x98",
		"ChartBarBig":                     "\xee\x92\xac",
		"ChartBarDecreasing":              "\xee\x98\x8c",
		"ChartBarIncreasing":              "\xee\x98\x8d",
		"ChartBarStacked":                 "\xee\x98\x8e",
		"ChartBar":                        "\xee\x8a\xa2",
		"ChartCandlestick":                "\xee\x92\xad",
		"ChartColumnBig":                  "\xee\x92\xae",
		"ChartColumnDecreasing":           "\xee\x81\xab",
		"ChartColumnIncreasing":           "\xee\x8a\xa4",
		"ChartColumnStacked":              "\xee\x98\x8f",
		"ChartColumn":                     "\xee\x8a\xa3",
		"ChartGantt":                      "\xee\x98\xa9",
		"ChartLine":                       "\xee\x8a\xa5",
		"ChartNetwork":                    "\xee\x98\x90",
		"ChartNoAxesColumnDecreasing":     "\xee\x81\xad",
		"ChartNoAxesColumnIncreasing":     "\xee\x81\xae",
		"ChartNoAxesColumn":               "\xee\x81\xac",
		"ChartNoAxesCombined":             "\xee\x98\x91",
		"ChartNoAxesGantt":                "\xee\x93\x89",
		"ChartPie":                        "\xee\x81\xaf",
		"ChartScatter":                    "\xee\x92\x8f",
		"ChartSpline":                     "\xee\x98\x92",
		"CheckCheck":                      "\xee\x8e\x92",
		"Check":                           "\xee\x81\xb0",
		"ChefHat":                         "\xee\x8a\xac",
		"Cherry":                          "\xee\x8d\x94",
		"ChevronDown":                     "\xee\x81\xb1",
		"ChevronFirst":                    "\xee\x89\x83",
		"ChevronLast":                     "\xee\x89\x84",
		"ChevronLeft":                     "\xee\x81\xb2",
		"ChevronRight":                    "\xee\x81\xb3",
		"ChevronUp":                       "\xee\x81\xb4",
		"ChevronsDownUp":                  "\xee\x88\xa8",
		"ChevronsDown":                    "\xee\x81\xb5",
		"ChevronsLeftRightEllipsis":       "\xee\x98\xa4",
		"ChevronsLeftRight":               "\xee\x8a\x93",
		"ChevronsLeft":                    "\xee\x81\xb6",
		"ChevronsRightLeft":               "\xee\x8a\x94",
		"ChevronsRight":                   "\xee\x81\xb7",
		"ChevronsUpDown":                  "\xee\x88\x91",
		"ChevronsUp":                      "\xee\x81\xb8",
		"Chrome":                          "\xee\x81\xb9",
		"Church":                          "\xee\x8f\xa5",
		"CigaretteOff":                    "\xee\x8b\x87",
		"Cigarette":                       "\xee\x8b\x86",
		"CircleAlert":                     "\xee\x81\xbb",
		"CircleArrowDown":                 "\xee\x81\xbc",
		"CircleArrowLeft":                 "\xee\x81\xbd",
		"CircleArrowOutDownLeft":          "\xee\x8f\xbc",
		"CircleArrowOutDownRight":         "\xee\x8f\xbd",
		"CircleArrowOutUpLeft":            "\xee\x8f\xbe",
		"CircleArrowOutUpRight":           "\xee\x8f\xbf",
		"CircleArrowRight":                "\xee\x81\xbe",
		"CircleArrowUp":                   "\xee\x81\xbf",
		"CircleCheckBig":                  "\xee\x82\x80",
		"CircleCheck":                     "\xee\x88\xa6",
		"CircleChevronDown":               "\xee\x93\xa2",
		"CircleChevronLeft":               "\xee\x93\xa3",
		"CircleChevronRight":              "\xee\x93\xa4",
		"CircleChevronUp":                 "\xee\x93\xa5",
		"CircleDashed":                    "\xee\x92\xb5",
		"CircleDivide":                    "\xee\x82\x81",
		"CircleDollarSign":                "\xee\x92\x82",
		"CircleDotDashed":                 "\xee\x92\xb6",
		"CircleDot":                       "\xee\x8d\x89",
		"CircleEllipsis":                  "\xee\x8d\x8a",
		"CircleEqual":                     "\xee\x90\x85",
		"CircleFadingArrowUp":             "\xee\x98\x9d",
		"CircleFadingPlus":                "\xee\x97\x81",
		"CircleGauge":                     "\xee\x93\xa6",
		"CircleHelp":                      "\xee\x82\x82",
		"CircleMinus":                     "\xee\x82\x83",
		"CircleOff":                       "\xee\x90\x86",
		"CircleParkingOff":                "\xee\x8f\x8e",
		"CircleParking":                   "\xee\x8f\x8d",
		"CirclePause":                     "\xee\x82\x84",
		"CirclePercent":                   "\xee\x94\x9f",
		"CirclePlay":                      "\xee\x82\x85",
		"CirclePlus":                      "\xee\x82\x86",
		"CirclePower":                     "\xee\x95\x95",
		"CircleSlash2":                    "\xee\x88\x93",
		"CircleSlash":                     "\xee\x90\x87",
		"CircleSmall":                     "\xee\x99\x85",
		"CircleStop":                      "\xee\x82\x87",
		"CircleUserRound":                 "\xee\x91\xa7",
		"CircleUser":                      "\xee\x91\xa6",
		"CircleX":                         "\xee\x82\x88",
		"Circle":                          "\xee\x81\xba",
		"CircuitBoard":                    "\xee\x90\x88",
		"Citrus":                          "\xee\x8d\xb9",
		"Clapperboard":                    "\xee\x8a\x9b",
		"ClipboardCheck":                  "\xee\x88\x99",
		"ClipboardCopy":                   "\xee\x88\xa5",
		"ClipboardList":                   "\xee\x82\x8a",
		"ClipboardMinus":                  "\xee\x97\x83",
		"ClipboardPaste":                  "\xee\x8f\xac",
		"ClipboardPenLine":                "\xee\x8c\x88",
		"ClipboardPen":                    "\xee\x8c\x87",
		"ClipboardPlus":                   "\xee\x97\x84",
		"ClipboardType":                   "\xee\x8c\x89",
		"ClipboardX":                      "\xee\x88\xa2",
		"Clipboard":                       "\xee\x82\x89",
		"Clock1":                          "\xee\x89\x8b",
		"Clock10":                         "\xee\x89\x8c",
		"Clock11":                         "\xee\x89\x8d",
		"Clock12":                         "\xee\x89\x8e",
		"Clock2":                          "\xee\x89\x8f",
		"Clock3":                          "\xee\x89\x90",
		"Clock4":                          "\xee\x89\x91",
		"Clock5":                          "\xee\x89\x92",
		"Clock6":                          "\xee\x89\x93",
		"Clock7":                          "\xee\x89\x94",
		"Clock8":                          "\xee\x89\x95",
		"Clock9":                          "\xee\x89\x96",
		"ClockAlert":                      "\xee\x98\xaf",
		"ClockArrowDown":                  "\xee\x98\x85",
		"ClockArrowUp":                    "\xee\x98\x86",
		"ClockFading":                     "\xee\x99\x8f",
		"Clock":                           "\xee\x82\x8b",
		"CloudAlert":                      "\xee\x98\xb8",
		"CloudCog":                        "\xee\x8c\x8a",
		"CloudDownload":                   "\xee\x82\x8d",
		"CloudDrizzle":                    "\xee\x82\x8e",
		"CloudFog":                        "\xee\x88\x94",
		"CloudHail":                       "\xee\x82\x8f",
		"CloudLightning":                  "\xee\x82\x90",
		"CloudMoonRain":                   "\xee\x8b\xba",
		"CloudMoon":                       "\xee\x88\x95",
		"CloudOff":                        "\xee\x82\x91",
		"CloudRainWind":                   "\xee\x82\x93",
		"CloudRain":                       "\xee\x82\x92",
		"CloudSnow":                       "\xee\x82\x94",
		"CloudSunRain":                    "\xee\x8b\xbb",
		"CloudSun":                        "\xee\x88\x96",
		"CloudUpload":                     "\xee\x82\x95",
		"Cloud":                           "\xee\x82\x8c",
		"Cloudy":                          "\xee\x88\x97",
		"Clover":                          "\xee\x82\x96",
		"Club":                            "\xee\x92\x9b",
		"CodeXml":                         "\xee\x88\x86",
		"Code":                            "\xee\x82\x97",
		"Codepen":                         "\xee\x82\x98",
		"Codesandbox":                     "\xee\x82\x99",
		"Coffee":                          "\xee\x82\x9a",
		"Cog":                             "\xee\x8c\x8b",
		"Coins":                           "\xee\x82\x9b",
		"Columns2":                        "\xee\x82\x9c",
		"Columns3Cog":                     "\xee\x99\xa6",
		"Columns3":                        "\xee\x82\x9d",
		"Columns4":                        "\xee\x96\x8e",
		"Combine":                         "\xee\x91\x91",
		"Command":                         "\xee\x82\x9e",
		"Compass":                         "\xee\x82\x9f",
		"Component":                       "\xee\x8a\xad",
		"Computer":                        "\xee\x93\xa9",
		"ConciergeBell":                   "\xee\x8d\xbc",
		"Cone":                            "\xee\x94\xa8",
		"Construction":                    "\xee\x8e\xb8",
		"ContactRound":                    "\xee\x91\xa8",
		"Contact":                         "\xee\x82\xa0",
		"Container":                       "\xee\x93\x9a",
		"Contrast":                        "\xee\x82\xa1",
		"Cookie":                          "\xee\x89\xab",
		"CookingPot":                      "\xee\x96\x89",
		"CopyCheck":                       "\xee\x90\x80",
		"CopyMinus":                       "\xee\x90\x81",
		"CopyPlus":                        "\xee\x90\x82",
		"CopySlash":                       "\xee\x90\x83",
		"CopyX":                           "\xee\x90\x84",
		"Copy":                            "\xee\x82\xa2",
		"Copyleft":                        "\xee\x82\xa3",
		"Copyright":                       "\xee\x82\xa4",
		"CornerDownLeft":                  "\xee\x82\xa5",
		"CornerDownRight":                 "\xee\x82\xa6",
		"CornerLeftDown":                  "\xee\x82\xa7",
		"CornerLeftUp":                    "\xee\x82\xa8",
		"CornerRightDown":                 "\xee\x82\xa9",
		"CornerRightUp":                   "\xee\x82\xaa",
		"CornerUpLeft":                    "\xee\x82\xab",
		"CornerUpRight":                   "\xee\x82\xac",
		"Cpu":                             "\xee\x82\xad",
		"CreativeCommons":                 "\xee\x8e\xb6",
		"CreditCard":                      "\xee\x82\xae",
		"Croissant":                       "\xee\x8a\xae",
		"Crop":                            "\xee\x82\xaf",
		"Cross":                           "\xee\x87\xa5",
		"Crosshair":                       "\xee\x82\xb0",
		"Crown":                           "\xee\x87\x96",
		"Cuboid":                          "\xee\x94\xa9",
		"CupSoda":                         "\xee\x8b\x91",
		"Currency":                        "\xee\x88\xb0",
		"Cylinder":                        "\xee\x94\xaa",
		"Dam":                             "\xee\x98\x8b",
		"DatabaseBackup":                  "\xee\x8e\xaf",
		"DatabaseZap":                     "\xee\x94\x90",
		"Database":                        "\xee\x82\xb1",
		"DecimalsArrowLeft":               "\xee\x99\xa1",
		"DecimalsArrowRight":              "\xee\x99\xa2",
		"Delete":                          "\xee\x82\xb2",
		"Dessert":                         "\xee\x93\x80",
		"Diameter":                        "\xee\x94\xab",
		"DiamondMinus":                    "\xee\x97\xa6",
		"DiamondPercent":                  "\xee\x94\xa0",
		"DiamondPlus":                     "\xee\x97\xa7",
		"Diamond":                         "\xee\x8b\x92",
		"Dice1":                           "\xee\x8a\x87",
		"Dice2":                           "\xee\x8a\x88",
		"Dice3":                           "\xee\x8a\x89",
		"Dice4":                           "\xee\x8a\x8a",
		"Dice5":                           "\xee\x8a\x8b",
		"Dice6":                           "\xee\x8a\x8c",
		"Dices":                           "\xee\x8b\x85",
		"Diff":                            "\xee\x8c\x8c",
		"Disc2":                           "\xee\x8f\xbb",
		"Disc3":                           "\xee\x92\x99",
		"DiscAlbum":                       "\xee\x95\xa1",
		"Disc":                            "\xee\x82\xb3",
		"Divide":                          "\xee\x82\xb4",
		"DnaOff":                          "\xee\x8e\x98",
		"Dna":                             "\xee\x8e\x97",
		"Dock":                            "\xee\x97\x98",
		"Dog":                             "\xee\x8e\x91",
		"DollarSign":                      "\xee\x82\xb5",
		"Donut":                           "\xee\x93\x81",
		"DoorClosed":                      "\xee\x8f\x99",
		"DoorOpen":                        "\xee\x8f\x9a",
		"Dot":                             "\xee\x91\x94",
		"Download":                        "\xee\x82\xb6",
		"DraftingCompass":                 "\xee\x94\xac",
		"Drama":                           "\xee\x94\xa6",
		"Dribbble":                        "\xee\x82\xb7",
		"Drill":                           "\xee\x96\x92",
		"DropletOff":                      "\xee\x98\xbd",
		"Droplet":                         "\xee\x82\xb8",
		"Droplets":                        "\xee\x82\xb9",
		"Drum":                            "\xee\x95\xa2",
		"Drumstick":                       "\xee\x89\x9b",
		"Dumbbell":                        "\xee\x8e\xa5",
		"EarOff":                          "\xee\x8e\x87",
		"Ear":                             "\xee\x8e\x86",
		"EarthLock":                       "\xee\x97\x91",
		"Earth":                           "\xee\x87\xb3",
		"Eclipse":                         "\xee\x96\xa2",
		"EggFried":                        "\xee\x8d\x95",
		"EggOff":                          "\xee\x8e\x99",
		"Egg":                             "\xee\x89\x9d",
		"EllipsisVertical":                "\xee\x82\xbb",
		"Ellipsis":                        "\xee\x82\xba",
		"EqualApproximately":              "\xee\x98\xb9",
		"EqualNot":                        "\xee\x86\xbe",
		"Equal":                           "\xee\x86\xbd",
		"Eraser":                          "\xee\x8a\x8f",
		"EthernetPort":                    "\xee\x98\xa5",
		"Euro":                            "\xee\x82\xbc",
		"Expand":                          "\xee\x88\x9a",
		"ExternalLink":                    "\xee\x82\xbd",
		"EyeClosed":                       "\xee\x98\xb3",
		"EyeOff":                          "\xee\x82\xbf",
		"Eye":                             "\xee\x82\xbe",
		"Facebook":                        "\xee\x83\x80",
		"Factory":                         "\xee\x8a\x9f",
		"Fan":                             "\xee\x8d\xbd",
		"FastForward":                     "\xee\x83\x81",
		"Feather":                         "\xee\x83\x82",
		"Fence":                           "\xee\x96\x87",
		"FerrisWheel":                     "\xee\x92\x84",
		"Figma":                           "\xee\x83\x83",
		"FileArchive":                     "\xee\x8c\x8d",
		"FileAudio2":                      "\xee\x8c\x8f",
		"FileAudio":                       "\xee\x8c\x8e",
		"FileAxis3d":                      "\xee\x8c\x90",
		"FileBadge2":                      "\xee\x8c\x92",
		"FileBadge":                       "\xee\x8c\x91",
		"FileBox":                         "\xee\x8c\x93",
		"FileChartColumnIncreasing":       "\xee\x8c\x95",
		"FileChartColumn":                 "\xee\x8c\x94",
		"FileChartLine":                   "\xee\x8c\x96",
		"FileChartPie":                    "\xee\x8c\x97",
		"FileCheck2":                      "\xee\x83\x86",
		"FileCheck":                       "\xee\x83\x85",
		"FileClock":                       "\xee\x8c\x98",
		"FileCode2":                       "\xee\x91\xa3",
		"FileCode":                        "\xee\x83\x87",
		"FileCog":                         "\xee\x8c\x99",
		"FileDiff":                        "\xee\x8c\x9a",
		"FileDigit":                       "\xee\x83\x88",
		"FileDown":                        "\xee\x8c\x9b",
		"FileHeart":                       "\xee\x8c\x9c",
		"FileImage":                       "\xee\x8c\x9d",
		"FileInput":                       "\xee\x83\x89",
		"FileJson2":                       "\xee\x8d\xb0",
		"FileJson":                        "\xee\x8d\xaf",
		"FileKey2":                        "\xee\x8c\x9f",
		"FileKey":                         "\xee\x8c\x9e",
		"FileLock2":                       "\xee\x8c\xa1",
		"FileLock":                        "\xee\x8c\xa0",
		"FileMinus2":                      "\xee\x83\x8b",
		"FileMinus":                       "\xee\x83\x8a",
		"FileMusic":                       "\xee\x95\xa3",
		"FileOutput":                      "\xee\x83\x8c",
		"FilePenLine":                     "\xee\x8c\xa3",
		"FilePen":                         "\xee\x8c\xa2",
		"FilePlus2":                       "\xee\x83\x8e",
		"FilePlus":                        "\xee\x83\x8d",
		"FileQuestion":                    "\xee\x8c\xa4",
		"FileScan":                        "\xee\x8c\xa5",
		"FileSearch2":                     "\xee\x8c\xa6",
		"FileSearch":                      "\xee\x83\x8f",
		"FileSliders":                     "\xee\x96\xa5",
		"FileSpreadsheet":                 "\xee\x8c\xa7",
		"FileStack":                       "\xee\x92\xa6",
		"FileSymlink":                     "\xee\x8c\xa8",
		"FileTerminal":                    "\xee\x8c\xa9",
		"FileText":                        "\xee\x83\x90",
		"FileType2":                       "\xee\x8d\xb1",
		"FileType":                        "\xee\x8c\xaa",
		"FileUp":                          "\xee\x8c\xab",
		"FileUser":                        "\xee\x98\xb2",
		"FileVideo2":                      "\xee\x8c\xad",
		"FileVideo":                       "\xee\x8c\xac",
		"FileVolume2":                     "\xee\x8c\xaf",
		"FileVolume":                      "\xee\x8c\xae",
		"FileWarning":                     "\xee\x8c\xb0",
		"FileX2":                          "\xee\x83\x92",
		"FileX":                           "\xee\x83\x91",
		"File":                            "\xee\x83\x84",
		"Files":                           "\xee\x83\x93",
		"Film":                            "\xee\x83\x94",
		"Fingerprint":                     "\xee\x8b\x8b",
		"FireExtinguisher":                "\xee\x96\x83",
		"FishOff":                         "\xee\x8e\xb4",
		"FishSymbol":                      "\xee\x93\xb9",
		"Fish":                            "\xee\x8e\xaa",
		"FlagOff":                         "\xee\x8a\x92",
		"FlagTriangleLeft":                "\xee\x88\xb7",
		"FlagTriangleRight":               "\xee\x88\xb8",
		"Flag":                            "\xee\x83\x95",
		"FlameKindling":                   "\xee\x94\xbf",
		"Flame":                           "\xee\x83\x96",
		"FlashlightOff":                   "\xee\x83\x98",
		"Flashlight":                      "\xee\x83\x97",
		"FlaskConicalOff":                 "\xee\x8e\x9a",
		"FlaskConical":                    "\xee\x83\x99",
		"FlaskRound":                      "\xee\x83\x9a",
		"FlipHorizontal2":                 "\xee\x8d\xa2",
		"FlipHorizontal":                  "\xee\x8d\xa1",
		"FlipVertical2":                   "\xee\x8d\xa4",
		"FlipVertical":                    "\xee\x8d\xa3",
		"Flower2":                         "\xee\x8b\x94",
		"Flower":                          "\xee\x8b\x93",
		"Focus":                           "\xee\x8a\x9e",
		"FoldHorizontal":                  "\xee\x91\x80",
		"FoldVertical":                    "\xee\x91\x81",
		"FolderArchive":                   "\xee\x8c\xb1",
		"FolderCheck":                     "\xee\x8c\xb2",
		"FolderClock":                     "\xee\x8c\xb3",
		"FolderClosed":                    "\xee\x8c\xb4",
		"FolderCode":                      "\xee\x98\x80",
		"FolderCog":                       "\xee\x8c\xb5",
		"FolderDot":                       "\xee\x93\x8a",
		"FolderDown":                      "\xee\x8c\xb6",
		"FolderGit2":                      "\xee\x90\x8f",
		"FolderGit":                       "\xee\x90\x8e",
		"FolderHeart":                     "\xee\x8c\xb7",
		"FolderInput":                     "\xee\x8c\xb8",
		"FolderKanban":                    "\xee\x93\x8b",
		"FolderKey":                       "\xee\x8c\xb9",
		"FolderLock":                      "\xee\x8c\xba",
		"FolderMinus":                     "\xee\x83\x9c",
		"FolderOpenDot":                   "\xee\x93\x8c",
		"FolderOpen":                      "\xee\x89\x87",
		"FolderOutput":                    "\xee\x8c\xbb",
		"FolderPen":                       "\xee\x8c\xbc",
		"FolderPlus":                      "\xee\x83\x9d",
		"FolderRoot":                      "\xee\x93\x8d",
		"FolderSearch2":                   "\xee\x8c\xbe",
		"FolderSearch":                    "\xee\x8c\xbd",
		"FolderSymlink":                   "\xee\x8c\xbf",
		"FolderSync":                      "\xee\x93\x8e",
		"FolderTree":                      "\xee\x8d\x80",
		"FolderUp":                        "\xee\x8d\x81",
		"FolderX":                         "\xee\x8d\x82",
		"Folder":                          "\xee\x83\x9b",
		"Folders":                         "\xee\x8d\x83",
		"Footprints":                      "\xee\x8e\xbd",
		"Forklift":                        "\xee\x8f\x85",
		"Forward":                         "\xee\x88\xa9",
		"Frame":                           "\xee\x8a\x91",
		"Framer":                          "\xee\x83\x9e",
		"Frown":                           "\xee\x83\x9f",
		"Fuel":                            "\xee\x8a\xaf",
		"Fullscreen":                      "\xee\x94\xb9",
		"FunnelPlus":                      "\xee\x83\xa1",
		"FunnelX":                         "\xee\x8e\xb9",
		"Funnel":                          "\xee\x83\xa0",
		"GalleryHorizontalEnd":            "\xee\x93\x94",
		"GalleryHorizontal":               "\xee\x93\x93",
		"GalleryThumbnails":               "\xee\x93\x95",
		"GalleryVerticalEnd":              "\xee\x93\x97",
		"GalleryVertical":                 "\xee\x93\x96",
		"Gamepad2":                        "\xee\x83\xa3",
		"Gamepad":                         "\xee\x83\xa2",
		"Gauge":                           "\xee\x86\xbf",
		"Gavel":                           "\xee\x83\xa4",
		"Gem":                             "\xee\x89\x82",
		"Ghost":                           "\xee\x88\x8e",
		"Gift":                            "\xee\x83\xa5",
		"GitBranchPlus":                   "\xee\x87\xb4",
		"GitBranch":                       "\xee\x83\xa6",
		"GitCommitHorizontal":             "\xee\x83\xa7",
		"GitCommitVertical":               "\xee\x95\x97",
		"GitCompareArrows":                "\xee\x95\x98",
		"GitCompare":                      "\xee\x8d\x9d",
		"GitFork":                         "\xee\x8a\x8d",
		"GitGraph":                        "\xee\x95\x99",
		"GitMerge":                        "\xee\x83\xa8",
		"GitPullRequestArrow":             "\xee\x95\x9a",
		"GitPullRequestClosed":            "\xee\x8d\x9e",
		"GitPullRequestCreateArrow":       "\xee\x95\x9c",
		"GitPullRequestCreate":            "\xee\x95\x9b",
		"GitPullRequestDraft":             "\xee\x8d\x9f",
		"GitPullRequest":                  "\xee\x83\xa9",
		"Github":                          "\xee\x83\xaa",
		"Gitlab":                          "\xee\x83\xab",
		"GlassWater":                      "\xee\x8b\x95",
		"Glasses":                         "\xee\x88\x8d",
		"GlobeLock":                       "\xee\x97\x92",
		"Globe":                           "\xee\x83\xac",
		"Goal":                            "\xee\x92\xaa",
		"Grab":                            "\xee\x87\xa6",
		"GraduationCap":                   "\xee\x88\xb4",
		"Grape":                           "\xee\x8d\x96",
		"Grid2x2Check":                    "\xee\x97\xa9",
		"Grid2x2Plus":                     "\xee\x98\xad",
		"Grid2x2X":                        "\xee\x97\xaa",
		"Grid2x2":                         "\xee\x94\x84",
		"Grid3x3":                         "\xee\x83\xad",
		"GripHorizontal":                  "\xee\x83\xae",
		"GripVertical":                    "\xee\x83\xaf",
		"Grip":                            "\xee\x8e\xb5",
		"Group":                           "\xee\x91\xa9",
		"Guitar":                          "\xee\x95\xa4",
		"Ham":                             "\xee\x97\x9c",
		"Hammer":                          "\xee\x83\xb0",
		"HandCoins":                       "\xee\x96\xbd",
		"HandHeart":                       "\xee\x96\xbe",
		"HandHelping":                     "\xee\x8e\xbc",
		"HandMetal":                       "\xee\x88\xac",
		"HandPlatter":                     "\xee\x96\xbf",
		"Hand":                            "\xee\x87\x97",
		"Handshake":                       "\xee\x97\x85",
		"HardDriveDownload":               "\xee\x93\xaa",
		"HardDriveUpload":                 "\xee\x93\xab",
		"HardDrive":                       "\xee\x83\xb1",
		"HardHat":                         "\xee\x83\xb2",
		"Hash":                            "\xee\x83\xb3",
		"Haze":                            "\xee\x83\xb4",
		"HdmiPort":                        "\xee\x93\xac",
		"Heading1":                        "\xee\x8e\x89",
		"Heading2":                        "\xee\x8e\x8a",
		"Heading3":                        "\xee\x8e\x8b",
		"Heading4":                        "\xee\x8e\x8c",
		"Heading5":                        "\xee\x8e\x8d",
		"Heading6":                        "\xee\x8e\x8e",
		"Heading":                         "\xee\x8e\x88",
		"HeadphoneOff":                    "\xee\x98\xae",
		"Headphones":                      "\xee\x83\xb5",
		"Headset":                         "\xee\x97\x82",
		"HeartCrack":                      "\xee\x8b\x96",
		"HeartHandshake":                  "\xee\x8b\x97",
		"HeartMinus":                      "\xee\x99\x96",
		"HeartOff":                        "\xee\x8a\x95",
		"HeartPlus":                       "\xee\x99\x97",
		"HeartPulse":                      "\xee\x8d\xb2",
		"Heart":                           "\xee\x83\xb6",
		"Heater":                          "\xee\x96\x93",
		"Hexagon":                         "\xee\x83\xb7",
		"Highlighter":                     "\xee\x83\xb8",
		"History":                         "\xee\x87\xb5",
		"HopOff":                          "\xee\x8e\x9c",
		"Hop":                             "\xee\x8e\x9b",
		"Hospital":                        "\xee\x97\x9d",
		"Hotel":                           "\xee\x8f\xa6",
		"Hourglass":                       "\xee\x8a\x96",
		"HousePlug":                       "\xee\x97\xb5",
		"HousePlus":                       "\xee\x97\xb6",
		"HouseWifi":                       "\xee\x99\x81",
		"House":                           "\xee\x83\xb9",
		"IceCreamBowl":                    "\xee\x8e\xab",
		"IceCreamCone":                    "\xee\x8d\x97",
		"IdCard":                          "\xee\x98\x9c",
		"ImageDown":                       "\xee\x95\x81",
		"ImageMinus":                      "\xee\x87\xb6",
		"ImageOff":                        "\xee\x87\x80",
		"ImagePlay":                       "\xee\x97\xa4",
		"ImagePlus":                       "\xee\x87\xb7",
		"ImageUp":                         "\xee\x97\x90",
		"ImageUpscale":                    "\xee\x98\xbc",
		"Image":                           "\xee\x83\xba",
		"Images":                          "\xee\x97\x89",
		"Import":                          "\xee\x88\xaf",
		"Inbox":                           "\xee\x83\xbb",
		"IndentDecrease":                  "\xee\x83\xbc",
		"IndentIncrease":                  "\xee\x83\xbd",
		"IndianRupee":                     "\xee\x83\xbe",
		"Infinity":                        "\xee\x87\xa7",
		"Info":                            "\xee\x83\xbf",
		"InspectionPanel":                 "\xee\x96\x88",
		"Instagram":                       "\xee\x84\x80",
		"Italic":                          "\xee\x84\x81",
		"IterationCcw":                    "\xee\x90\xa8",
		"IterationCw":                     "\xee\x90\xa9",
		"JapaneseYen":                     "\xee\x84\x82",
		"Joystick":                        "\xee\x8d\x99",
		"Kanban":                          "\xee\x93\xa1",
		"KeyRound":                        "\xee\x92\xa8",
		"KeySquare":                       "\xee\x92\xa9",
		"Key":                             "\xee\x84\x83",
		"KeyboardMusic":                   "\xee\x95\xa5",
		"KeyboardOff":                     "\xee\x97\xa3",
		"Keyboard":                        "\xee\x8a\x84",
		"LampCeiling":                     "\xee\x8b\x99",
		"LampDesk":                        "\xee\x8b\x9a",
		"LampFloor":                       "\xee\x8b\x9b",
		"LampWallDown":                    "\xee\x8b\x9c",
		"LampWallUp":                      "\xee\x8b\x9d",
		"Lamp":                            "\xee\x8b\x98",
		"LandPlot":                        "\xee\x94\xad",
		"Landmark":                        "\xee\x88\xba",
		"Languages":                       "\xee\x84\x84",
		"LaptopMinimalCheck":              "\xee\x98\xb7",
		"LaptopMinimal":                   "\xee\x87\x98",
		"Laptop":                          "\xee\x87\x8d",
		"LassoSelect":                     "\xee\x87\x8f",
		"Lasso":                           "\xee\x87\x8e",
		"Laugh":                           "\xee\x8c\x80",
		"Layers2":                         "\xee\x94\xaf",
		"Layers":                          "\xee\x94\xae",
		"LayoutDashboard":                 "\xee\x87\x81",
		"LayoutGrid":                      "\xee\x84\x85",
		"LayoutList":                      "\xee\x87\x99",
		"LayoutPanelLeft":                 "\xee\x91\xb5",
		"LayoutPanelTop":                  "\xee\x91\xb6",
		"LayoutTemplate":                  "\xee\x88\x87",
		"Leaf":                            "\xee\x8b\x9e",
		"LeafyGreen":                      "\xee\x91\xb4",
		"Lectern":                         "\xee\x97\xae",
		"LetterText":                      "\xee\x98\x8a",
		"LibraryBig":                      "\xee\x95\x93",
		"Library":                         "\xee\x84\x86",
		"LifeBuoy":                        "\xee\x84\x87",
		"Ligature":                        "\xee\x90\xbf",
		"LightbulbOff":                    "\xee\x88\x88",
		"Lightbulb":                       "\xee\x87\x82",
		"Link2Off":                        "\xee\x84\x8a",
		"Link2":                           "\xee\x84\x89",
		"Link":                            "\xee\x84\x88",
		"Linkedin":                        "\xee\x84\x8b",
		"ListCheck":                       "\xee\x97\xbf",
		"ListChecks":                      "\xee\x87\x90",
		"ListCollapse":                    "\xee\x96\xa0",
		"ListEnd":                         "\xee\x8b\x9f",
		"ListFilterPlus":                  "\xee\x98\xbe",
		"ListFilter":                      "\xee\x91\xa5",
		"ListMinus":                       "\xee\x88\xbe",
		"ListMusic":                       "\xee\x8b\xa0",
		"ListOrdered":                     "\xee\x87\x91",
		"ListPlus":                        "\xee\x88\xbf",
		"ListRestart":                     "\xee\x91\x97",
		"ListStart":                       "\xee\x8b\xa1",
		"ListTodo":                        "\xee\x93\x88",
		"ListTree":                        "\xee\x90\x8d",
		"ListVideo":                       "\xee\x8b\xa2",
		"ListX":                           "\xee\x89\x80",
		"List":                            "\xee\x84\x8c",
		"LoaderCircle":                    "\xee\x84\x8e",
		"LoaderPinwheel":                  "\xee\x97\xab",
		"Loader":                          "\xee\x84\x8d",
		"LocateFixed":                     "\xee\x87\x9b",
		"LocateOff":                       "\xee\x8a\x82",
		"Locate":                          "\xee\x87\x9a",
		"LocationEdit":                    "\xee\x99\x9a",
		"LockKeyholeOpen":                 "\xee\x94\xb7",
		"LockKeyhole":                     "\xee\x94\xb6",
		"LockOpen":                        "\xee\x84\x90",
		"Lock":                            "\xee\x84\x8f",
		"LogIn":                           "\xee\x84\x91",
		"LogOut":                          "\xee\x84\x92",
		"Logs":                            "\xee\x97\xb9",
		"Lollipop":                        "\xee\x93\x82",
		"Luggage":                         "\xee\x8b\x8a",
		"Magnet":                          "\xee\x8a\xb5",
		"MailCheck":                       "\xee\x8d\xa5",
		"MailMinus":                       "\xee\x8d\xa6",
		"MailOpen":                        "\xee\x8d\xa7",
		"MailPlus":                        "\xee\x8d\xa8",
		"MailQuestion":                    "\xee\x8d\xa9",
		"MailSearch":                      "\xee\x8d\xaa",
		"MailWarning":                     "\xee\x8d\xab",
		"MailX":                           "\xee\x8d\xac",
		"Mail":                            "\xee\x84\x93",
		"Mailbox":                         "\xee\x8f\x98",
		"Mails":                           "\xee\x8d\xad",
		"MapPinCheckInside":               "\xee\x98\x95",
		"MapPinCheck":                     "\xee\x98\x94",
		"MapPinHouse":                     "\xee\x98\xa1",
		"MapPinMinusInside":               "\xee\x98\x97",
		"MapPinMinus":                     "\xee\x98\x96",
		"MapPinOff":                       "\xee\x8a\xa6",
		"MapPinPlusInside":                "\xee\x98\x99",
		"MapPinPlus":                      "\xee\x98\x98",
		"MapPinXInside":                   "\xee\x98\x9b",
		"MapPinX":                         "\xee\x98\x9a",
		"MapPin":                          "\xee\x84\x95",
		"MapPinned":                       "\xee\x95\x82",
		"MapPlus":                         "\xee\x99\x84",
		"Map":                             "\xee\x84\x94",
		"MarsStroke":                      "\xee\x99\x87",
		"Mars":                            "\xee\x99\x86",
		"Martini":                         "\xee\x8b\xa3",
		"Maximize2":                       "\xee\x84\x97",
		"Maximize":                        "\xee\x84\x96",
		"Medal":                           "\xee\x8d\xb3",
		"MegaphoneOff":                    "\xee\x8d\xb4",
		"Megaphone":                       "\xee\x88\xb5",
		"Meh":                             "\xee\x84\x98",
		"MemoryStick":                     "\xee\x91\x8a",
		"Menu":                            "\xee\x84\x99",
		"Merge":                           "\xee\x91\x84",
		"MessageCircleCode":               "\xee\x95\xa7",
		"MessageCircleDashed":             "\xee\x95\xa8",
		"MessageCircleHeart":              "\xee\x95\xa9",
		"MessageCircleMore":               "\xee\x95\xaa",
		"MessageCircleOff":                "\xee\x95\xab",
		"MessageCirclePlus":               "\xee\x95\xac",
		"MessageCircleQuestion":           "\xee\x95\xad",
		"MessageCircleReply":              "\xee\x95\xae",
		"MessageCircleWarning":            "\xee\x95\xaf",
		"MessageCircleX":                  "\xee\x95\xb0",
		"MessageCircle":                   "\xee\x84\x9a",
		"MessageSquareCode":               "\xee\x95\xb1",
		"MessageSquareDashed":             "\xee\x90\x90",
		"MessageSquareDiff":               "\xee\x95\xb2",
		"MessageSquareDot":                "\xee\x95\xb3",
		"MessageSquareHeart":              "\xee\x95\xb4",
		"MessageSquareLock":               "\xee\x98\xb1",
		"MessageSquareMore":               "\xee\x95\xb5",
		"MessageSquareOff":                "\xee\x95\xb6",
		"MessageSquarePlus":               "\xee\x90\x91",
		"MessageSquareQuote":              "\xee\x95\xb7",
		"MessageSquareReply":              "\xee\x95\xb8",
		"MessageSquareShare":              "\xee\x95\xb9",
		"MessageSquareText":               "\xee\x95\xba",
		"MessageSquareWarning":            "\xee\x95\xbb",
		"MessageSquareX":                  "\xee\x95\xbc",
		"MessageSquare":                   "\xee\x84\x9b",
		"MessagesSquare":                  "\xee\x90\x92",
		"MicOff":                          "\xee\x84\x9d",
		"MicVocal":                        "\xee\x8d\x8d",
		"Mic":                             "\xee\x84\x9c",
		"Microchip":                       "\xee\x98\x9f",
		"Microscope":                      "\xee\x8b\xa4",
		"Microwave":                       "\xee\x8d\xbe",
		"Milestone":                       "\xee\x8a\x98",
		"MilkOff":                         "\xee\x8e\x9e",
		"Milk":                            "\xee\x8e\x9d",
		"Minimize2":                       "\xee\x84\x9f",
		"Minimize":                        "\xee\x84\x9e",
		"Minus":                           "\xee\x84\xa0",
		"MonitorCheck":                    "\xee\x92\x87",
		"MonitorCog":                      "\xee\x98\x88",
		"MonitorDot":                      "\xee\x92\x88",
		"MonitorDown":                     "\xee\x90\xa6",
		"MonitorOff":                      "\xee\x87\x9c",
		"MonitorPause":                    "\xee\x92\x89",
		"MonitorPlay":                     "\xee\x92\x8a",
		"MonitorSmartphone":               "\xee\x8e\xa6",
		"MonitorSpeaker":                  "\xee\x88\x90",
		"MonitorStop":                     "\xee\x92\x8b",
		"MonitorUp":                       "\xee\x90\xa7",
		"MonitorX":                        "\xee\x92\x8c",
		"Monitor":                         "\xee\x84\xa1",
		"MoonStar":                        "\xee\x90\x95",
		"Moon":                            "\xee\x84\xa2",
		"MountainSnow":                    "\xee\x88\xb2",
		"Mountain":                        "\xee\x88\xb1",
		"MouseOff":                        "\xee\x97\xa0",
		"MousePointer2":                   "\xee\x87\x83",
		"MousePointerBan":                 "\xee\x97\xac",
		"MousePointerClick":               "\xee\x84\xa4",
		"MousePointer":                    "\xee\x84\xa3",
		"Mouse":                           "\xee\x8a\x8e",
		"Move3d":                          "\xee\x8b\xa5",
		"MoveDiagonal2":                   "\xee\x87\x85",
		"MoveDiagonal":                    "\xee\x87\x84",
		"MoveDownLeft":                    "\xee\x92\x92",
		"MoveDownRight":                   "\xee\x92\x93",
		"MoveDown":                        "\xee\x92\x91",
		"MoveHorizontal":                  "\xee\x87\x86",
		"MoveLeft":                        "\xee\x92\x94",
		"MoveRight":                       "\xee\x92\x95",
		"MoveUpLeft":                      "\xee\x92\x97",
		"MoveUpRight":                     "\xee\x92\x98",
		"MoveUp":                          "\xee\x92\x96",
		"MoveVertical":                    "\xee\x87\x87",
		"Move":                            "\xee\x84\xa5",
		"Music2":                          "\xee\x8d\x8e",
		"Music3":                          "\xee\x8d\x8f",
		"Music4":                          "\xee\x8d\x90",
		"Music":                           "\xee\x84\xa6",
		"Navigation2Off":                  "\xee\x8a\xa7",
		"Navigation2":                     "\xee\x84\xa8",
		"NavigationOff":                   "\xee\x8a\xa8",
		"Navigation":                      "\xee\x84\xa7",
		"Network":                         "\xee\x84\xa9",
		"Newspaper":                       "\xee\x8d\x8c",
		"Nfc":                             "\xee\x8f\x87",
		"NonBinary":                       "\xee\x99\x88",
		"NotebookPen":                     "\xee\x96\x9b",
		"NotebookTabs":                    "\xee\x96\x9c",
		"NotebookText":                    "\xee\x96\x9d",
		"Notebook":                        "\xee\x96\x9a",
		"NotepadTextDashed":               "\xee\x96\x9f",
		"NotepadText":                     "\xee\x96\x9e",
		"NutOff":                          "\xee\x8e\xa0",
		"Nut":                             "\xee\x8e\x9f",
		"OctagonAlert":                    "\xee\x84\xab",
		"OctagonMinus":                    "\xee\x98\xac",
		"OctagonPause":                    "\xee\x88\x9b",
		"OctagonX":                        "\xee\x84\xac",
		"Octagon":                         "\xee\x84\xaa",
		"Omega":                           "\xee\x98\x9e",
		"Option":                          "\xee\x87\xb8",
		"Orbit":                           "\xee\x8f\xab",
		"Origami":                         "\xee\x97\xa8",
		"Package2":                        "\xee\x8d\x84",
		"PackageCheck":                    "\xee\x89\xa6",
		"PackageMinus":                    "\xee\x89\xa7",
		"PackageOpen":                     "\xee\x8b\x8c",
		"PackagePlus":                     "\xee\x89\xa8",
		"PackageSearch":                   "\xee\x89\xa9",
		"PackageX":                        "\xee\x89\xaa",
		"Package":                         "\xee\x84\xad",
		"PaintBucket":                     "\xee\x8b\xa6",
		"PaintRoller":                     "\xee\x96\xa3",
		"PaintbrushVertical":              "\xee\x8b\xa8",
		"Paintbrush":                      "\xee\x8b\xa7",
		"Palette":                         "\xee\x87\x9d",
		"PanelBottomClose":                "\xee\x90\xb2",
		"PanelBottomDashed":               "\xee\x90\xb3",
		"PanelBottomOpen":                 "\xee\x90\xb4",
		"PanelBottom":                     "\xee\x90\xb1",
		"PanelLeftClose":                  "\xee\x88\x9c",
		"PanelLeftDashed":                 "\xee\x90\xb5",
		"PanelLeftOpen":                   "\xee\x88\x9d",
		"PanelLeft":                       "\xee\x84\xae",
		"PanelRightClose":                 "\xee\x90\xb7",
		"PanelRightDashed":                "\xee\x90\xb8",
		"PanelRightOpen":                  "\xee\x90\xb9",
		"PanelRight":                      "\xee\x90\xb6",
		"PanelTopClose":                   "\xee\x90\xbb",
		"PanelTopDashed":                  "\xee\x90\xbc",
		"PanelTopOpen":                    "\xee\x90\xbd",
		"PanelTop":                        "\xee\x90\xba",
		"PanelsLeftBottom":                "\xee\x84\xaf",
		"PanelsRightBottom":               "\xee\x96\x8d",
		"PanelsTopLeft":                   "\xee\x84\xb0",
		"Paperclip":                       "\xee\x84\xb1",
		"Parentheses":                     "\xee\x91\x89",
		"ParkingMeter":                    "\xee\x94\x85",
		"PartyPopper":                     "\xee\x8d\x87",
		"Pause":                           "\xee\x84\xb2",
		"PawPrint":                        "\xee\x93\xba",
		"PcCase":                          "\xee\x91\x8b",
		"PenLine":                         "\xee\x84\xb4",
		"PenOff":                          "\xee\x97\xb3",
		"PenTool":                         "\xee\x84\xb5",
		"Pen":                             "\xee\x84\xb3",
		"PencilLine":                      "\xee\x93\xb5",
		"PencilOff":                       "\xee\x97\xb4",
		"PencilRuler":                     "\xee\x93\xb6",
		"Pencil":                          "\xee\x87\xb9",
		"Pentagon":                        "\xee\x94\xb0",
		"Percent":                         "\xee\x84\xb6",
		"PersonStanding":                  "\xee\x88\x9e",
		"PhilippinePeso":                  "\xee\x98\x89",
		"PhoneCall":                       "\xee\x84\xb8",
		"PhoneForwarded":                  "\xee\x84\xb9",
		"PhoneIncoming":                   "\xee\x84\xba",
		"PhoneMissed":                     "\xee\x84\xbb",
		"PhoneOff":                        "\xee\x84\xbc",
		"PhoneOutgoing":                   "\xee\x84\xbd",
		"Phone":                           "\xee\x84\xb7",
		"Pi":                              "\xee\x91\xb7",
		"Piano":                           "\xee\x95\xa6",
		"Pickaxe":                         "\xee\x97\x8b",
		"PictureInPicture2":               "\xee\x8e\xb3",
		"PictureInPicture":                "\xee\x8e\xb2",
		"PiggyBank":                       "\xee\x84\xbe",
		"PilcrowLeft":                     "\xee\x97\xa1",
		"PilcrowRight":                    "\xee\x97\xa2",
		"Pilcrow":                         "\xee\x8e\xa7",
		"PillBottle":                      "\xee\x97\xaf",
		"Pill":                            "\xee\x8f\x81",
		"PinOff":                          "\xee\x8a\xb6",
		"Pin":                             "\xee\x89\x99",
		"Pipette":                         "\xee\x84\xbf",
		"Pizza":                           "\xee\x8d\x98",
		"PlaneLanding":                    "\xee\x8f\x91",
		"PlaneTakeoff":                    "\xee\x8f\x92",
		"Plane":                           "\xee\x87\x9e",
		"Play":                            "\xee\x85\x80",
		"Plug2":                           "\xee\x8e\x84",
		"PlugZap":                         "\xee\x91\xa1",
		"Plug":                            "\xee\x8e\x83",
		"Plus":                            "\xee\x85\x81",
		"PocketKnife":                     "\xee\x92\xa5",
		"Pocket":                          "\xee\x85\x82",
		"Podcast":                         "\xee\x87\xba",
		"PointerOff":                      "\xee\x96\x84",
		"Pointer":                         "\xee\x87\xa8",
		"Popcorn":                         "\xee\x93\x83",
		"Popsicle":                        "\xee\x93\x84",
		"PoundSterling":                   "\xee\x85\x83",
		"PowerOff":                        "\xee\x88\x89",
		"Power":                           "\xee\x85\x84",
		"Presentation":                    "\xee\x92\xb3",
		"PrinterCheck":                    "\xee\x97\xba",
		"Printer":                         "\xee\x85\x85",
		"Projector":                       "\xee\x92\xb4",
		"Proportions":                     "\xee\x97\x94",
		"Puzzle":                          "\xee\x8a\x9c",
		"Pyramid":                         "\xee\x94\xb1",
		"QrCode":                          "\xee\x87\x9f",
		"Quote":                           "\xee\x88\xb9",
		"Rabbit":                          "\xee\x93\xbb",
		"Radar":                           "\xee\x92\x9c",
		"Radiation":                       "\xee\x91\x87",
		"Radical":                         "\xee\x97\x87",
		"RadioReceiver":                   "\xee\x87\xbb",
		"RadioTower":                      "\xee\x90\x89",
		"Radio":                           "\xee\x85\x86",
		"Radius":                          "\xee\x94\xb2",
		"RailSymbol":                      "\xee\x94\x86",
		"Rainbow":                         "\xee\x93\x87",
		"Rat":                             "\xee\x8f\xb0",
		"Ratio":                           "\xee\x93\xad",
		"ReceiptCent":                     "\xee\x96\xaa",
		"ReceiptEuro":                     "\xee\x96\xab",
		"ReceiptIndianRupee":              "\xee\x96\xac",
		"ReceiptJapaneseYen":              "\xee\x96\xad",
		"ReceiptPoundSterling":            "\xee\x96\xae",
		"ReceiptRussianRuble":             "\xee\x96\xaf",
		"ReceiptSwissFranc":               "\xee\x96\xb0",
		"ReceiptText":                     "\xee\x96\xb1",
		"Receipt":                         "\xee\x8f\x97",
		"RectangleEllipsis":               "\xee\x88\x9f",
		"RectangleGoggles":                "\xee\x99\x9b",
		"RectangleHorizontal":             "\xee\x8d\xba",
		"RectangleVertical":               "\xee\x8d\xbb",
		"Recycle":                         "\xee\x8b\xa9",
		"Redo2":                           "\xee\x8a\xa0",
		"RedoDot":                         "\xee\x91\x95",
		"Redo":                            "\xee\x85\x87",
		"RefreshCcwDot":                   "\xee\x92\xb7",
		"RefreshCcw":                      "\xee\x85\x88",
		"RefreshCwOff":                    "\xee\x92\x9d",
		"RefreshCw":                       "\xee\x85\x89",
		"Refrigerator":                    "\xee\x8d\xbf",
		"Regex":                           "\xee\x87\xbc",
		"RemoveFormatting":                "\xee\x8e\xb7",
		"Repeat1":                         "\xee\x87\xbd",
		"Repeat2":                         "\xee\x90\x96",
		"Repeat":                          "\xee\x85\x8a",
		"ReplaceAll":                      "\xee\x8f\xa0",
		"Replace":                         "\xee\x8f\x9f",
		"ReplyAll":                        "\xee\x88\xab",
		"Reply":                           "\xee\x88\xaa",
		"Rewind":                          "\xee\x85\x8b",
		"Ribbon":                          "\xee\x95\x9d",
		"Rocket":                          "\xee\x8a\x86",
		"RockingChair":                    "\xee\x88\xb3",
		"RollerCoaster":                   "\xee\x92\x85",
		"Rotate3d":                        "\xee\x8b\xaa",
		"RotateCcwKey":                    "\xee\x99\x95",
		"RotateCcwSquare":                 "\xee\x97\x95",
		"RotateCcw":                       "\xee\x85\x8c",
		"RotateCwSquare":                  "\xee\x97\x96",
		"RotateCw":                        "\xee\x85\x8d",
		"RouteOff":                        "\xee\x95\x84",
		"Route":                           "\xee\x95\x83",
		"Router":                          "\xee\x8f\x83",
		"Rows2":                           "\xee\x90\xbe",
		"Rows3":                           "\xee\x96\x8f",
		"Rows4":                           "\xee\x96\x90",
		"Rss":                             "\xee\x85\x8e",
		"RulerDimensionLine":              "\xee\x99\xa7",
		"Ruler":                           "\xee\x85\x8f",
		"RussianRuble":                    "\xee\x85\x90",
		"Sailboat":                        "\xee\x8e\x82",
		"Salad":                           "\xee\x8e\xac",
		"Sandwich":                        "\xee\x8e\xad",
		"SatelliteDish":                   "\xee\x91\x8d",
		"Satellite":                       "\xee\x91\x8c",
		"SaudiRiyal":                      "\xee\x99\x90",
		"SaveAll":                         "\xee\x90\x94",
		"SaveOff":                         "\xee\x97\xb8",
		"Save":                            "\xee\x85\x91",
		"Scale3d":                         "\xee\x8b\xab",
		"Scale":                           "\xee\x88\x92",
		"Scaling":                         "\xee\x8b\xac",
		"ScanBarcode":                     "\xee\x94\xba",
		"ScanEye":                         "\xee\x94\xbb",
		"ScanFace":                        "\xee\x8d\xb5",
		"ScanHeart":                       "\xee\x98\xbf",
		"ScanLine":                        "\xee\x89\x98",
		"ScanQrCode":                      "\xee\x97\xbb",
		"ScanSearch":                      "\xee\x94\xbc",
		"ScanText":                        "\xee\x94\xbd",
		"Scan":                            "\xee\x89\x97",
		"School":                          "\xee\x8f\xa7",
		"ScissorsLineDashed":              "\xee\x93\xae",
		"Scissors":                        "\xee\x85\x92",
		"ScreenShareOff":                  "\xee\x85\x94",
		"ScreenShare":                     "\xee\x85\x93",
		"ScrollText":                      "\xee\x91\xa4",
		"Scroll":                          "\xee\x8b\xad",
		"SearchCheck":                     "\xee\x92\xaf",
		"SearchCode":                      "\xee\x92\xb0",
		"SearchSlash":                     "\xee\x92\xb1",
		"SearchX":                         "\xee\x92\xb2",
		"Search":                          "\xee\x85\x95",
		"Section":                         "\xee\x97\xad",
		"SendHorizontal":                  "\xee\x93\xb7",
		"SendToBack":                      "\xee\x93\xb8",
		"Send":                            "\xee\x85\x96",
		"SeparatorHorizontal":             "\xee\x87\x88",
		"SeparatorVertical":               "\xee\x87\x89",
		"ServerCog":                       "\xee\x8d\x85",
		"ServerCrash":                     "\xee\x87\xa9",
		"ServerOff":                       "\xee\x87\xaa",
		"Server":                          "\xee\x85\x97",
		"Settings2":                       "\xee\x89\x85",
		"Settings":                        "\xee\x85\x98",
		"Shapes":                          "\xee\x92\xb8",
		"Share2":                          "\xee\x85\x9a",
		"Share":                           "\xee\x85\x99",
		"Sheet":                           "\xee\x85\x9b",
		"Shell":                           "\xee\x93\xbc",
		"ShieldAlert":                     "\xee\x87\xbe",
		"ShieldBan":                       "\xee\x85\x9d",
		"ShieldCheck":                     "\xee\x87\xbf",
		"ShieldEllipsis":                  "\xee\x94\x9b",
		"ShieldHalf":                      "\xee\x94\x9c",
		"ShieldMinus":                     "\xee\x94\x9d",
		"ShieldOff":                       "\xee\x85\x9e",
		"ShieldPlus":                      "\xee\x94\x9e",
		"ShieldQuestion":                  "\xee\x90\x93",
		"ShieldUser":                      "\xee\x99\x8c",
		"ShieldX":                         "\xee\x88\x80",
		"Shield":                          "\xee\x85\x9c",
		"ShipWheel":                       "\xee\x94\x87",
		"Ship":                            "\xee\x8e\xbe",
		"Shirt":                           "\xee\x87\x8a",
		"ShoppingBag":                     "\xee\x85\x9f",
		"ShoppingBasket":                  "\xee\x93\xaf",
		"ShoppingCart":                    "\xee\x85\xa0",
		"Shovel":                          "\xee\x85\xa1",
		"ShowerHead":                      "\xee\x8e\x80",
		"Shredder":                        "\xee\x99\xa0",
		"Shrimp":                          "\xee\x99\x8e",
		"Shrink":                          "\xee\x88\xa0",
		"Shrub":                           "\xee\x8b\xae",
		"Shuffle":                         "\xee\x85\xa2",
		"Sigma":                           "\xee\x88\x81",
		"SignalHigh":                      "\xee\x89\xa0",
		"SignalLow":                       "\xee\x89\xa1",
		"SignalMedium":                    "\xee\x89\xa2",
		"SignalZero":                      "\xee\x89\xa3",
		"Signal":                          "\xee\x89\x9f",
		"Signature":                       "\xee\x97\xb7",
		"SignpostBig":                     "\xee\x95\x86",
		"Signpost":                        "\xee\x95\x85",
		"Siren":                           "\xee\x8b\xaf",
		"SkipBack":                        "\xee\x85\xa3",
		"SkipForward":                     "\xee\x85\xa4",
		"Skull":                           "\xee\x88\xa1",
		"Slack":                           "\xee\x85\xa5",
		"Slash":                           "\xee\x94\xa2",
		"Slice":                           "\xee\x8b\xb0",
		"SlidersHorizontal":               "\xee\x8a\x9a",
		"SlidersVertical":                 "\xee\x85\xa6",
		"SmartphoneCharging":              "\xee\x88\xae",
		"SmartphoneNfc":                   "\xee\x8f\x88",
		"Smartphone":                      "\xee\x85\xa7",
		"SmilePlus":                       "\xee\x8c\x81",
		"Smile":                           "\xee\x85\xa8",
		"Snail":                           "\xee\x93\xbd",
		"Snowflake":                       "\xee\x85\xa9",
		"Sofa":                            "\xee\x8b\x84",
		"Soup":                            "\xee\x8e\xae",
		"Space":                           "\xee\x8f\xa1",
		"Spade":                           "\xee\x92\x9e",
		"Sparkle":                         "\xee\x92\x83",
		"Sparkles":                        "\xee\x90\x97",
		"Speaker":                         "\xee\x85\xaa",
		"Speech":                          "\xee\x94\xa3",
		"SpellCheck2":                     "\xee\x92\xa0",
		"SpellCheck":                      "\xee\x92\x9f",
		"SplinePointer":                   "\xee\x99\x94",
		"Spline":                          "\xee\x8e\x8f",
		"Split":                           "\xee\x91\x85",
		"SprayCan":                        "\xee\x92\x9a",
		"Sprout":                          "\xee\x87\xab",
		"SquareActivity":                  "\xee\x92\xb9",
		"SquareArrowDownLeft":             "\xee\x92\xba",
		"SquareArrowDownRight":            "\xee\x92\xbb",
		"SquareArrowDown":                 "\xee\x90\xac",
		"SquareArrowLeft":                 "\xee\x90\xad",
		"SquareArrowOutDownLeft":          "\xee\x96\xa6",
		"SquareArrowOutDownRight":         "\xee\x96\xa7",
		"SquareArrowOutUpLeft":            "\xee\x96\xa8",
		"SquareArrowOutUpRight":           "\xee\x96\xa9",
		"SquareArrowRight":                "\xee\x90\xae",
		"SquareArrowUpLeft":               "\xee\x92\xbc",
		"SquareArrowUpRight":              "\xee\x92\xbd",
		"SquareArrowUp":                   "\xee\x90\xaf",
		"SquareAsterisk":                  "\xee\x85\xac",
		"SquareBottomDashedScissors":      "\xee\x93\xb0",
		"SquareChartGantt":                "\xee\x85\xad",
		"SquareCheckBig":                  "\xee\x85\xae",
		"SquareCheck":                     "\xee\x95\x9e",
		"SquareChevronDown":               "\xee\x8f\x93",
		"SquareChevronLeft":               "\xee\x8f\x94",
		"SquareChevronRight":              "\xee\x8f\x95",
		"SquareChevronUp":                 "\xee\x8f\x96",
		"SquareCode":                      "\xee\x85\xaf",
		"SquareDashedBottomCode":          "\xee\x93\x86",
		"SquareDashedBottom":              "\xee\x93\x85",
		"SquareDashedKanban":              "\xee\x85\xb0",
		"SquareDashedMousePointer":        "\xee\x94\x8e",
		"SquareDashed":                    "\xee\x87\x8b",
		"SquareDivide":                    "\xee\x85\xb1",
		"SquareDot":                       "\xee\x85\xb2",
		"SquareEqual":                     "\xee\x85\xb3",
		"SquareFunction":                  "\xee\x88\xad",
		"SquareKanban":                    "\xee\x85\xb4",
		"SquareLibrary":                   "\xee\x95\x94",
		"SquareM":                         "\xee\x94\x88",
		"SquareMenu":                      "\xee\x91\x98",
		"SquareMinus":                     "\xee\x85\xb5",
		"SquareMousePointer":              "\xee\x88\x82",
		"SquareParkingOff":                "\xee\x8f\x90",
		"SquareParking":                   "\xee\x8f\x8f",
		"SquarePen":                       "\xee\x85\xb6",
		"SquarePercent":                   "\xee\x94\xa1",
		"SquarePi":                        "\xee\x92\x8d",
		"SquarePilcrow":                   "\xee\x92\x90",
		"SquarePlay":                      "\xee\x92\x86",
		"SquarePlus":                      "\xee\x85\xb7",
		"SquarePower":                     "\xee\x95\x96",
		"SquareRadical":                   "\xee\x97\x88",
		"SquareRoundCorner":               "\xee\x99\x8d",
		"SquareScissors":                  "\xee\x93\xb1",
		"SquareSigma":                     "\xee\x92\x8e",
		"SquareSlash":                     "\xee\x85\xb8",
		"SquareSplitHorizontal":           "\xee\x8e\xba",
		"SquareSplitVertical":             "\xee\x8e\xbb",
		"SquareSquare":                    "\xee\x98\x93",
		"SquareStack":                     "\xee\x92\xa7",
		"SquareTerminal":                  "\xee\x88\x8a",
		"SquareUserRound":                 "\xee\x91\xab",
		"SquareUser":                      "\xee\x91\xaa",
		"SquareX":                         "\xee\x85\xb9",
		"Square":                          "\xee\x85\xab",
		"SquaresExclude":                  "\xee\x99\x9c",
		"SquaresIntersect":                "\xee\x99\x9d",
		"SquaresSubtract":                 "\xee\x99\x9e",
		"SquaresUnite":                    "\xee\x99\x9f",
		"Squircle":                        "\xee\x95\xbf",
		"Squirrel":                        "\xee\x92\xa4",
		"Stamp":                           "\xee\x8e\xbf",
		"StarHalf":                        "\xee\x88\x8b",
		"StarOff":                         "\xee\x8a\xb0",
		"Star":                            "\xee\x85\xba",
		"StepBack":                        "\xee\x8f\xad",
		"StepForward":                     "\xee\x8f\xae",
		"Stethoscope":                     "\xee\x8b\xb1",
		"Sticker":                         "\xee\x8c\x82",
		"StickyNote":                      "\xee\x8c\x83",
		"Store":                           "\xee\x8f\xa8",
		"StretchHorizontal":               "\xee\x89\xbc",
		"StretchVertical":                 "\xee\x89\xbd",
		"Strikethrough":                   "\xee\x85\xbb",
		"Subscript":                       "\xee\x89\x9c",
		"SunDim":                          "\xee\x8a\x99",
		"SunMedium":                       "\xee\x8a\xb1",
		"SunMoon":                         "\xee\x8a\xb2",
		"SunSnow":                         "\xee\x8d\xb6",
		"Sun":                             "\xee\x85\xbc",
		"Sunrise":                         "\xee\x85\xbd",
		"Sunset":                          "\xee\x85\xbe",
		"Superscript":                     "\xee\x89\x9e",
		"SwatchBook":                      "\xee\x96\xa4",
		"SwissFranc":                      "\xee\x85\xbf",
		"SwitchCamera":                    "\xee\x86\x80",
		"Sword":                           "\xee\x8a\xb3",
		"Swords":                          "\xee\x8a\xb4",
		"Syringe":                         "\xee\x8b\xb2",
		"Table2":                          "\xee\x8b\xb9",
		"TableCellsMerge":                 "\xee\x97\x8c",
		"TableCellsSplit":                 "\xee\x97\x8d",
		"TableColumnsSplit":               "\xee\x97\x8e",
		"TableOfContents":                 "\xee\x98\xa3",
		"TableProperties":                 "\xee\x93\xa0",
		"TableRowsSplit":                  "\xee\x97\x8f",
		"Table":                           "\xee\x86\x81",
		"TabletSmartphone":                "\xee\x94\x8f",
		"Tablet":                          "\xee\x86\x82",
		"Tablets":                         "\xee\x8f\x82",
		"Tag":                             "\xee\x86\x83",
		"Tags":                            "\xee\x8d\xa0",
		"Tally1":                          "\xee\x93\x9b",
		"Tally2":                          "\xee\x93\x9c",
		"Tally3":                          "\xee\x93\x9d",
		"Tally4":                          "\xee\x93\x9e",
		"Tally5":                          "\xee\x93\x9f",
		"Tangent":                         "\xee\x94\xb3",
		"Target":                          "\xee\x86\x84",
		"Telescope":                       "\xee\x97\x8a",
		"TentTree":                        "\xee\x95\x80",
		"Tent":                            "\xee\x88\xa7",
		"Terminal":                        "\xee\x86\x85",
		"TestTubeDiagonal":                "\xee\x90\x8b",
		"TestTube":                        "\xee\x90\x8a",
		"TestTubes":                       "\xee\x90\x8c",
		"TextCursorInput":                 "\xee\x89\xa5",
		"TextCursor":                      "\xee\x89\xa4",
		"TextQuote":                       "\xee\x92\xa3",
		"TextSearch":                      "\xee\x96\xb2",
		"TextSelect":                      "\xee\x8f\xa2",
		"Text":                            "\xee\x8f\xaf",
		"Theater":                         "\xee\x94\xa7",
		"ThermometerSnowflake":            "\xee\x86\x87",
		"ThermometerSun":                  "\xee\x86\x88",
		"Thermometer":                     "\xee\x86\x86",
		"ThumbsDown":                      "\xee\x86\x89",
		"ThumbsUp":                        "\xee\x86\x8a",
		"TicketCheck":                     "\xee\x96\xb3",
		"TicketMinus":                     "\xee\x96\xb4",
		"TicketPercent":                   "\xee\x96\xb5",
		"TicketPlus":                      "\xee\x96\xb6",
		"TicketSlash":                     "\xee\x96\xb7",
		"TicketX":                         "\xee\x96\xb8",
		"Ticket":                          "\xee\x88\x8f",
		"TicketsPlane":                    "\xee\x98\xa8",
		"Tickets":                         "\xee\x98\xa7",
		"TimerOff":                        "\xee\x89\x89",
		"TimerReset":                      "\xee\x88\xb6",
		"Timer":                           "\xee\x87\xa0",
		"ToggleLeft":                      "\xee\x86\x8b",
		"ToggleRight":                     "\xee\x86\x8c",
		"Toilet":                          "\xee\x98\xba",
		"Tornado":                         "\xee\x88\x98",
		"Torus":                           "\xee\x94\xb4",
		"TouchpadOff":                     "\xee\x91\x8f",
		"Touchpad":                        "\xee\x91\x8e",
		"TowerControl":                    "\xee\x8f\x80",
		"ToyBrick":                        "\xee\x8d\x8b",
		"Tractor":                         "\xee\x94\x89",
		"TrafficCone":                     "\xee\x94\x8a",
		"TrainFrontTunnel":                "\xee\x94\x8c",
		"TrainFront":                      "\xee\x94\x8b",
		"TrainTrack":                      "\xee\x94\x8d",
		"TramFront":                       "\xee\x8a\xa9",
		"Transgender":                     "\xee\x99\x89",
		"Trash2":                          "\xee\x86\x8e",
		"Trash":                           "\xee\x86\x8d",
		"TreeDeciduous":                   "\xee\x8b\xb3",
		"TreePalm":                        "\xee\x8a\x81",
		"TreePine":                        "\xee\x8b\xb4",
		"Trees":                           "\xee\x8b\xb5",
		"Trello":                          "\xee\x86\x8f",
		"TrendingDown":                    "\xee\x86\x90",
		"TrendingUpDown":                  "\xee\x98\xaa",
		"TrendingUp":                      "\xee\x86\x91",
		"TriangleAlert":                   "\xee\x86\x93",
		"TriangleDashed":                  "\xee\x99\x82",
		"TriangleRight":                   "\xee\x93\xb2",
		"Triangle":                        "\xee\x86\x92",
		"Trophy":                          "\xee\x8d\xb7",
		"TruckElectric":                   "\xee\x99\xa4",
		"Truck":                           "\xee\x86\x94",
		"Turtle":                          "\xee\x93\xbe",
		"TvMinimalPlay":                   "\xee\x97\xb1",
		"TvMinimal":                       "\xee\x88\x83",
		"Tv":                              "\xee\x86\x95",
		"Twitch":                          "\xee\x86\x96",
		"Twitter":                         "\xee\x86\x97",
		"TypeOutline":                     "\xee\x98\x87",
		"Type":                            "\xee\x86\x98",
		"UmbrellaOff":                     "\xee\x95\x88",
		"Umbrella":                        "\xee\x86\x99",
		"Underline":                       "\xee\x86\x9a",
		"Undo2":                           "\xee\x8a\xa1",
		"UndoDot":                         "\xee\x91\x96",
		"Undo":                            "\xee\x86\x9b",
		"UnfoldHorizontal":                "\xee\x91\x82",
		"UnfoldVertical":                  "\xee\x91\x83",
		"Ungroup":                         "\xee\x91\xac",
		"University":                      "\xee\x8f\xa9",
		"Unlink2":                         "\xee\x86\x9d",
		"Unlink":                          "\xee\x86\x9c",
		"Unplug":                          "\xee\x91\xa2",
		"Upload":                          "\xee\x86\x9e",
		"Usb":                             "\xee\x8d\x9a",
		"UserCheck":                       "\xee\x86\xa0",
		"UserCog":                         "\xee\x8d\x86",
		"UserLock":                        "\xee\x99\xa5",
		"UserMinus":                       "\xee\x86\xa1",
		"UserPen":                         "\xee\x98\x81",
		"UserPlus":                        "\xee\x86\xa2",
		"UserRoundCheck":                  "\xee\x91\xae",
		"UserRoundCog":                    "\xee\x91\xaf",
		"UserRoundMinus":                  "\xee\x91\xb0",
		"UserRoundPen":                    "\xee\x98\x82",
		"UserRoundPlus":                   "\xee\x91\xb1",
		"UserRoundSearch":                 "\xee\x95\xbd",
		"UserRoundX":                      "\xee\x91\xb2",
		"UserRound":                       "\xee\x91\xad",
		"UserSearch":                      "\xee\x95\xbe",
		"UserX":                           "\xee\x86\xa3",
		"User":                            "\xee\x86\x9f",
		"UsersRound":                      "\xee\x91\xb3",
		"Users":                           "\xee\x86\xa4",
		"UtensilsCrossed":                 "\xee\x8b\xb7",
		"Utensils":                        "\xee\x8b\xb6",
		"UtilityPole":                     "\xee\x8f\x86",
		"Variable":                        "\xee\x91\xb8",
		"Vault":                           "\xee\x96\x94",
		"Vegan":                           "\xee\x8e\xa1",
		"VenetianMask":                    "\xee\x8a\xaa",
		"VenusAndMars":                    "\xee\x99\x8b",
		"Venus":                           "\xee\x99\x8a",
		"VibrateOff":                      "\xee\x8a\x9d",
		"Vibrate":                         "\xee\x88\xa3",
		"VideoOff":                        "\xee\x86\xa6",
		"Video":                           "\xee\x86\xa5",
		"Videotape":                       "\xee\x93\x90",
		"View":                            "\xee\x86\xa7",
		"Voicemail":                       "\xee\x86\xa8",
		"Volleyball":                      "\xee\x98\xb4",
		"Volume1":                         "\xee\x86\xaa",
		"Volume2":                         "\xee\x86\xab",
		"VolumeOff":                       "\xee\x98\xab",
		"VolumeX":                         "\xee\x86\xac",
		"Volume":                          "\xee\x86\xa9",
		"Vote":                            "\xee\x8e\xb1",
		"WalletCards":                     "\xee\x93\x91",
		"WalletMinimal":                   "\xee\x93\x92",
		"Wallet":                          "\xee\x88\x84",
		"Wallpaper":                       "\xee\x91\x90",
		"WandSparkles":                    "\xee\x8d\x9b",
		"Wand":                            "\xee\x89\x86",
		"Warehouse":                       "\xee\x8f\xaa",
		"WashingMachine":                  "\xee\x96\x95",
		"Watch":                           "\xee\x86\xad",
		"WavesLadder":                     "\xee\x99\x80",
		"Waves":                           "\xee\x8a\x83",
		"Waypoints":                       "\xee\x95\x87",
		"Webcam":                          "\xee\x88\x85",
		"WebhookOff":                      "\xee\x96\xbc",
		"Webhook":                         "\xee\x8d\xb8",
		"Weight":                          "\xee\x94\xb5",
		"WheatOff":                        "\xee\x8e\xa3",
		"Wheat":                           "\xee\x8e\xa2",
		"WholeWord":                       "\xee\x8f\xa3",
		"WifiHigh":                        "\xee\x97\xbc",
		"WifiLow":                         "\xee\x97\xbd",
		"WifiOff":                         "\xee\x86\xaf",
		"WifiPen":                         "\xee\x99\xa8",
		"WifiZero":                        "\xee\x97\xbe",
		"Wifi":                            "\xee\x86\xae",
		"WindArrowDown":                   "\xee\x98\xb6",
		"Wind":                            "\xee\x86\xb0",
		"WineOff":                         "\xee\x8e\xa4",
		"Wine":                            "\xee\x8b\xb8",
		"Workflow":                        "\xee\x90\xaa",
		"Worm":                            "\xee\x97\x9f",
		"WrapText":                        "\xee\x89\x88",
		"Wrench":                          "\xee\x86\xb1",
		"X":                               "\xee\x86\xb2",
		"Youtube":                         "\xee\x86\xb3",
		"ZapOff":                          "\xee\x86\xb5",
		"Zap":                             "\xee\x86\xb4",
		"ZoomIn":                          "\xee\x86\xb6",
		"ZoomOut":                         "\xee\x86\xb7",
	},
}
View Source
var IconsMaterialDesign = Font{
	Filenames: [][2]string{
		{"MD", "MaterialIcons-Regular.ttf"},
	},
	Min:   0xe000,
	Max16: 0xf8ff,
	Max:   0x10fffd,
	Icons: map[string]string{
		"10k":                             "\xee\xa5\x91",
		"10mp":                            "\xee\xa5\x92",
		"11mp":                            "\xee\xa5\x93",
		"123":                             "\xee\xae\x8d",
		"12mp":                            "\xee\xa5\x94",
		"13mp":                            "\xee\xa5\x95",
		"14mp":                            "\xee\xa5\x96",
		"15mp":                            "\xee\xa5\x97",
		"16mp":                            "\xee\xa5\x98",
		"17mp":                            "\xee\xa5\x99",
		"18_up_rating":                    "\xef\xa3\xbd",
		"18mp":                            "\xee\xa5\x9a",
		"19mp":                            "\xee\xa5\x9b",
		"1k":                              "\xee\xa5\x9c",
		"1k_plus":                         "\xee\xa5\x9d",
		"1x_mobiledata":                   "\xee\xbf\x8d",
		"20mp":                            "\xee\xa5\x9e",
		"21mp":                            "\xee\xa5\x9f",
		"22mp":                            "\xee\xa5\xa0",
		"23mp":                            "\xee\xa5\xa1",
		"24mp":                            "\xee\xa5\xa2",
		"2k":                              "\xee\xa5\xa3",
		"2k_plus":                         "\xee\xa5\xa4",
		"2mp":                             "\xee\xa5\xa5",
		"30fps":                           "\xee\xbf\x8e",
		"30fps_select":                    "\xee\xbf\x8f",
		"360":                             "\xee\x95\xb7",
		"3d_rotation":                     "\xee\xa1\x8d",
		"3g_mobiledata":                   "\xee\xbf\x90",
		"3k":                              "\xee\xa5\xa6",
		"3k_plus":                         "\xee\xa5\xa7",
		"3mp":                             "\xee\xa5\xa8",
		"3p":                              "\xee\xbf\x91",
		"4g_mobiledata":                   "\xee\xbf\x92",
		"4g_plus_mobiledata":              "\xee\xbf\x93",
		"4k":                              "\xee\x81\xb2",
		"4k_plus":                         "\xee\xa5\xa9",
		"4mp":                             "\xee\xa5\xaa",
		"5g":                              "\xee\xbc\xb8",
		"5k":                              "\xee\xa5\xab",
		"5k_plus":                         "\xee\xa5\xac",
		"5mp":                             "\xee\xa5\xad",
		"60fps":                           "\xee\xbf\x94",
		"60fps_select":                    "\xee\xbf\x95",
		"6_ft_apart":                      "\xef\x88\x9e",
		"6k":                              "\xee\xa5\xae",
		"6k_plus":                         "\xee\xa5\xaf",
		"6mp":                             "\xee\xa5\xb0",
		"7k":                              "\xee\xa5\xb1",
		"7k_plus":                         "\xee\xa5\xb2",
		"7mp":                             "\xee\xa5\xb3",
		"8k":                              "\xee\xa5\xb4",
		"8k_plus":                         "\xee\xa5\xb5",
		"8mp":                             "\xee\xa5\xb6",
		"9k":                              "\xee\xa5\xb7",
		"9k_plus":                         "\xee\xa5\xb8",
		"9mp":                             "\xee\xa5\xb9",
		"Abc":                             "\xee\xae\x94",
		"Ac_unit":                         "\xee\xac\xbb",
		"Access_alarm":                    "\xee\x86\x90",
		"Access_alarms":                   "\xee\x86\x91",
		"Access_time":                     "\xee\x86\x92",
		"Access_time_filled":              "\xee\xbf\x96",
		"Accessibility":                   "\xee\xa1\x8e",
		"Accessibility_new":               "\xee\xa4\xac",
		"Accessible":                      "\xee\xa4\x94",
		"Accessible_forward":              "\xee\xa4\xb4",
		"Account_balance":                 "\xee\xa1\x8f",
		"Account_balance_wallet":          "\xee\xa1\x90",
		"Account_box":                     "\xee\xa1\x91",
		"Account_circle":                  "\xee\xa1\x93",
		"Account_tree":                    "\xee\xa5\xba",
		"Ad_units":                        "\xee\xbc\xb9",
		"Adb":                             "\xee\x98\x8e",
		"Add":                             "\xee\x85\x85",
		"Add_a_photo":                     "\xee\x90\xb9",
		"Add_alarm":                       "\xee\x86\x93",
		"Add_alert":                       "\xee\x80\x83",
		"Add_box":                         "\xee\x85\x86",
		"Add_business":                    "\xee\x9c\xa9",
		"Add_call":                        "\xee\x83\xa8",
		"Add_card":                        "\xee\xae\x86",
		"Add_chart":                       "\xee\xa5\xbb",
		"Add_circle":                      "\xee\x85\x87",
		"Add_circle_outline":              "\xee\x85\x88",
		"Add_comment":                     "\xee\x89\xa6",
		"Add_home":                        "\xef\xa3\xab",
		"Add_home_work":                   "\xef\xa3\xad",
		"Add_ic_call":                     "\xee\xa5\xbc",
		"Add_link":                        "\xee\x85\xb8",
		"Add_location":                    "\xee\x95\xa7",
		"Add_location_alt":                "\xee\xbc\xba",
		"Add_moderator":                   "\xee\xa5\xbd",
		"Add_photo_alternate":             "\xee\x90\xbe",
		"Add_reaction":                    "\xee\x87\x93",
		"Add_road":                        "\xee\xbc\xbb",
		"Add_shopping_cart":               "\xee\xa1\x94",
		"Add_task":                        "\xef\x88\xba",
		"Add_to_drive":                    "\xee\x99\x9c",
		"Add_to_home_screen":              "\xee\x87\xbe",
		"Add_to_photos":                   "\xee\x8e\x9d",
		"Add_to_queue":                    "\xee\x81\x9c",
		"Addchart":                        "\xee\xbc\xbc",
		"Adf_scanner":                     "\xee\xab\x9a",
		"Adjust":                          "\xee\x8e\x9e",
		"Admin_panel_settings":            "\xee\xbc\xbd",
		"Adobe":                           "\xee\xaa\x96",
		"Ads_click":                       "\xee\x9d\xa2",
		"Agriculture":                     "\xee\xa9\xb9",
		"Air":                             "\xee\xbf\x98",
		"Airline_seat_flat":               "\xee\x98\xb0",
		"Airline_seat_flat_angled":        "\xee\x98\xb1",
		"Airline_seat_individual_suite":   "\xee\x98\xb2",
		"Airline_seat_legroom_extra":      "\xee\x98\xb3",
		"Airline_seat_legroom_normal":     "\xee\x98\xb4",
		"Airline_seat_legroom_reduced":    "\xee\x98\xb5",
		"Airline_seat_recline_extra":      "\xee\x98\xb6",
		"Airline_seat_recline_normal":     "\xee\x98\xb7",
		"Airline_stops":                   "\xee\x9f\x90",
		"Airlines":                        "\xee\x9f\x8a",
		"Airplane_ticket":                 "\xee\xbf\x99",
		"Airplanemode_active":             "\xee\x86\x95",
		"Airplanemode_inactive":           "\xee\x86\x94",
		"Airplanemode_off":                "\xee\x86\x94",
		"Airplanemode_on":                 "\xee\x86\x95",
		"Airplay":                         "\xee\x81\x95",
		"Airport_shuttle":                 "\xee\xac\xbc",
		"Alarm":                           "\xee\xa1\x95",
		"Alarm_add":                       "\xee\xa1\x96",
		"Alarm_off":                       "\xee\xa1\x97",
		"Alarm_on":                        "\xee\xa1\x98",
		"Album":                           "\xee\x80\x99",
		"Align_horizontal_center":         "\xee\x80\x8f",
		"Align_horizontal_left":           "\xee\x80\x8d",
		"Align_horizontal_right":          "\xee\x80\x90",
		"Align_vertical_bottom":           "\xee\x80\x95",
		"Align_vertical_center":           "\xee\x80\x91",
		"Align_vertical_top":              "\xee\x80\x8c",
		"All_inbox":                       "\xee\xa5\xbf",
		"All_inclusive":                   "\xee\xac\xbd",
		"All_out":                         "\xee\xa4\x8b",
		"Alt_route":                       "\xef\x86\x84",
		"Alternate_email":                 "\xee\x83\xa6",
		"Amp_stories":                     "\xee\xa8\x93",
		"Analytics":                       "\xee\xbc\xbe",
		"Anchor":                          "\xef\x87\x8d",
		"Android":                         "\xee\xa1\x99",
		"Animation":                       "\xee\x9c\x9c",
		"Announcement":                    "\xee\xa1\x9a",
		"Aod":                             "\xee\xbf\x9a",
		"Apartment":                       "\xee\xa9\x80",
		"Api":                             "\xef\x86\xb7",
		"App_blocking":                    "\xee\xbc\xbf",
		"App_registration":                "\xee\xbd\x80",
		"App_settings_alt":                "\xee\xbd\x81",
		"App_shortcut":                    "\xee\xab\xa4",
		"Apple":                           "\xee\xaa\x80",
		"Approval":                        "\xee\xa6\x82",
		"Apps":                            "\xee\x97\x83",
		"Apps_outage":                     "\xee\x9f\x8c",
		"Architecture":                    "\xee\xa8\xbb",
		"Archive":                         "\xee\x85\x89",
		"Area_chart":                      "\xee\x9d\xb0",
		"Arrow_back":                      "\xee\x97\x84",
		"Arrow_back_ios":                  "\xee\x97\xa0",
		"Arrow_back_ios_new":              "\xee\x8b\xaa",
		"Arrow_circle_down":               "\xef\x86\x81",
		"Arrow_circle_left":               "\xee\xaa\xa7",
		"Arrow_circle_right":              "\xee\xaa\xaa",
		"Arrow_circle_up":                 "\xef\x86\x82",
		"Arrow_downward":                  "\xee\x97\x9b",
		"Arrow_drop_down":                 "\xee\x97\x85",
		"Arrow_drop_down_circle":          "\xee\x97\x86",
		"Arrow_drop_up":                   "\xee\x97\x87",
		"Arrow_forward":                   "\xee\x97\x88",
		"Arrow_forward_ios":               "\xee\x97\xa1",
		"Arrow_left":                      "\xee\x97\x9e",
		"Arrow_outward":                   "\xef\xa3\x8e",
		"Arrow_right":                     "\xee\x97\x9f",
		"Arrow_right_alt":                 "\xee\xa5\x81",
		"Arrow_upward":                    "\xee\x97\x98",
		"Art_track":                       "\xee\x81\xa0",
		"Article":                         "\xee\xbd\x82",
		"Aspect_ratio":                    "\xee\xa1\x9b",
		"Assessment":                      "\xee\xa1\x9c",
		"Assignment":                      "\xee\xa1\x9d",
		"Assignment_add":                  "\xef\xa1\x88",
		"Assignment_ind":                  "\xee\xa1\x9e",
		"Assignment_late":                 "\xee\xa1\x9f",
		"Assignment_return":               "\xee\xa1\xa0",
		"Assignment_returned":             "\xee\xa1\xa1",
		"Assignment_turned_in":            "\xee\xa1\xa2",
		"Assist_walker":                   "\xef\xa3\x95",
		"Assistant":                       "\xee\x8e\x9f",
		"Assistant_direction":             "\xee\xa6\x88",
		"Assistant_navigation":            "\xee\xa6\x89",
		"Assistant_photo":                 "\xee\x8e\xa0",
		"Assured_workload":                "\xee\xad\xaf",
		"Atm":                             "\xee\x95\xb3",
		"Attach_email":                    "\xee\xa9\x9e",
		"Attach_file":                     "\xee\x88\xa6",
		"Attach_money":                    "\xee\x88\xa7",
		"Attachment":                      "\xee\x8a\xbc",
		"Attractions":                     "\xee\xa9\x92",
		"Attribution":                     "\xee\xbf\x9b",
		"Audio_file":                      "\xee\xae\x82",
		"Audiotrack":                      "\xee\x8e\xa1",
		"Auto_awesome":                    "\xee\x99\x9f",
		"Auto_awesome_mosaic":             "\xee\x99\xa0",
		"Auto_awesome_motion":             "\xee\x99\xa1",
		"Auto_delete":                     "\xee\xa9\x8c",
		"Auto_fix_high":                   "\xee\x99\xa3",
		"Auto_fix_normal":                 "\xee\x99\xa4",
		"Auto_fix_off":                    "\xee\x99\xa5",
		"Auto_graph":                      "\xee\x93\xbb",
		"Auto_mode":                       "\xee\xb0\xa0",
		"Auto_stories":                    "\xee\x99\xa6",
		"Autofps_select":                  "\xee\xbf\x9c",
		"Autorenew":                       "\xee\xa1\xa3",
		"Av_timer":                        "\xee\x80\x9b",
		"Baby_changing_station":           "\xef\x86\x9b",
		"Back_hand":                       "\xee\x9d\xa4",
		"Backpack":                        "\xef\x86\x9c",
		"Backspace":                       "\xee\x85\x8a",
		"Backup":                          "\xee\xa1\xa4",
		"Backup_table":                    "\xee\xbd\x83",
		"Badge":                           "\xee\xa9\xa7",
		"Bakery_dining":                   "\xee\xa9\x93",
		"Balance":                         "\xee\xab\xb6",
		"Balcony":                         "\xee\x96\x8f",
		"Ballot":                          "\xee\x85\xb2",
		"Bar_chart":                       "\xee\x89\xab",
		"Barcode_reader":                  "\xef\xa1\x9c",
		"Batch_prediction":                "\xef\x83\xb5",
		"Bathroom":                        "\xee\xbf\x9d",
		"Bathtub":                         "\xee\xa9\x81",
		"Battery_0_bar":                   "\xee\xaf\x9c",
		"Battery_1_bar":                   "\xee\xaf\x99",
		"Battery_2_bar":                   "\xee\xaf\xa0",
		"Battery_3_bar":                   "\xee\xaf\x9d",
		"Battery_4_bar":                   "\xee\xaf\xa2",
		"Battery_5_bar":                   "\xee\xaf\x94",
		"Battery_6_bar":                   "\xee\xaf\x92",
		"Battery_alert":                   "\xee\x86\x9c",
		"Battery_charging_full":           "\xee\x86\xa3",
		"Battery_full":                    "\xee\x86\xa4",
		"Battery_saver":                   "\xee\xbf\x9e",
		"Battery_std":                     "\xee\x86\xa5",
		"Battery_unknown":                 "\xee\x86\xa6",
		"Beach_access":                    "\xee\xac\xbe",
		"Bed":                             "\xee\xbf\x9f",
		"Bedroom_baby":                    "\xee\xbf\xa0",
		"Bedroom_child":                   "\xee\xbf\xa1",
		"Bedroom_parent":                  "\xee\xbf\xa2",
		"Bedtime":                         "\xee\xbd\x84",
		"Bedtime_off":                     "\xee\xad\xb6",
		"Beenhere":                        "\xee\x94\xad",
		"Bento":                           "\xef\x87\xb4",
		"Bike_scooter":                    "\xee\xbd\x85",
		"Biotech":                         "\xee\xa8\xba",
		"Blender":                         "\xee\xbf\xa3",
		"Blind":                           "\xef\xa3\x96",
		"Blinds":                          "\xee\x8a\x86",
		"Blinds_closed":                   "\xee\xb0\x9f",
		"Block":                           "\xee\x85\x8b",
		"Block_flipped":                   "\xee\xbd\x86",
		"Bloodtype":                       "\xee\xbf\xa4",
		"Bluetooth":                       "\xee\x86\xa7",
		"Bluetooth_audio":                 "\xee\x98\x8f",
		"Bluetooth_connected":             "\xee\x86\xa8",
		"Bluetooth_disabled":              "\xee\x86\xa9",
		"Bluetooth_drive":                 "\xee\xbf\xa5",
		"Bluetooth_searching":             "\xee\x86\xaa",
		"Blur_circular":                   "\xee\x8e\xa2",
		"Blur_linear":                     "\xee\x8e\xa3",
		"Blur_off":                        "\xee\x8e\xa4",
		"Blur_on":                         "\xee\x8e\xa5",
		"Bolt":                            "\xee\xa8\x8b",
		"Book":                            "\xee\xa1\xa5",
		"Book_online":                     "\xef\x88\x97",
		"Bookmark":                        "\xee\xa1\xa6",
		"Bookmark_add":                    "\xee\x96\x98",
		"Bookmark_added":                  "\xee\x96\x99",
		"Bookmark_border":                 "\xee\xa1\xa7",
		"Bookmark_outline":                "\xee\xa1\xa7",
		"Bookmark_remove":                 "\xee\x96\x9a",
		"Bookmarks":                       "\xee\xa6\x8b",
		"Border_all":                      "\xee\x88\xa8",
		"Border_bottom":                   "\xee\x88\xa9",
		"Border_clear":                    "\xee\x88\xaa",
		"Border_color":                    "\xee\x88\xab",
		"Border_horizontal":               "\xee\x88\xac",
		"Border_inner":                    "\xee\x88\xad",
		"Border_left":                     "\xee\x88\xae",
		"Border_outer":                    "\xee\x88\xaf",
		"Border_right":                    "\xee\x88\xb0",
		"Border_style":                    "\xee\x88\xb1",
		"Border_top":                      "\xee\x88\xb2",
		"Border_vertical":                 "\xee\x88\xb3",
		"Boy":                             "\xee\xad\xa7",
		"Branding_watermark":              "\xee\x81\xab",
		"Breakfast_dining":                "\xee\xa9\x94",
		"Brightness_1":                    "\xee\x8e\xa6",
		"Brightness_2":                    "\xee\x8e\xa7",
		"Brightness_3":                    "\xee\x8e\xa8",
		"Brightness_4":                    "\xee\x8e\xa9",
		"Brightness_5":                    "\xee\x8e\xaa",
		"Brightness_6":                    "\xee\x8e\xab",
		"Brightness_7":                    "\xee\x8e\xac",
		"Brightness_auto":                 "\xee\x86\xab",
		"Brightness_high":                 "\xee\x86\xac",
		"Brightness_low":                  "\xee\x86\xad",
		"Brightness_medium":               "\xee\x86\xae",
		"Broadcast_on_home":               "\xef\xa3\xb8",
		"Broadcast_on_personal":           "\xef\xa3\xb9",
		"Broken_image":                    "\xee\x8e\xad",
		"Browse_gallery":                  "\xee\xaf\x91",
		"Browser_not_supported":           "\xee\xbd\x87",
		"Browser_updated":                 "\xee\x9f\x8f",
		"Brunch_dining":                   "\xee\xa9\xb3",
		"Brush":                           "\xee\x8e\xae",
		"Bubble_chart":                    "\xee\x9b\x9d",
		"Bug_report":                      "\xee\xa1\xa8",
		"Build":                           "\xee\xa1\xa9",
		"Build_circle":                    "\xee\xbd\x88",
		"Bungalow":                        "\xee\x96\x91",
		"Burst_mode":                      "\xee\x90\xbc",
		"Bus_alert":                       "\xee\xa6\x8f",
		"Business":                        "\xee\x82\xaf",
		"Business_center":                 "\xee\xac\xbf",
		"Cabin":                           "\xee\x96\x89",
		"Cable":                           "\xee\xbf\xa6",
		"Cached":                          "\xee\xa1\xaa",
		"Cake":                            "\xee\x9f\xa9",
		"Calculate":                       "\xee\xa9\x9f",
		"Calendar_month":                  "\xee\xaf\x8c",
		"Calendar_today":                  "\xee\xa4\xb5",
		"Calendar_view_day":               "\xee\xa4\xb6",
		"Calendar_view_month":             "\xee\xbf\xa7",
		"Calendar_view_week":              "\xee\xbf\xa8",
		"Call":                            "\xee\x82\xb0",
		"Call_end":                        "\xee\x82\xb1",
		"Call_made":                       "\xee\x82\xb2",
		"Call_merge":                      "\xee\x82\xb3",
		"Call_missed":                     "\xee\x82\xb4",
		"Call_missed_outgoing":            "\xee\x83\xa4",
		"Call_received":                   "\xee\x82\xb5",
		"Call_split":                      "\xee\x82\xb6",
		"Call_to_action":                  "\xee\x81\xac",
		"Camera":                          "\xee\x8e\xaf",
		"Camera_alt":                      "\xee\x8e\xb0",
		"Camera_enhance":                  "\xee\xa3\xbc",
		"Camera_front":                    "\xee\x8e\xb1",
		"Camera_indoor":                   "\xee\xbf\xa9",
		"Camera_outdoor":                  "\xee\xbf\xaa",
		"Camera_rear":                     "\xee\x8e\xb2",
		"Camera_roll":                     "\xee\x8e\xb3",
		"Cameraswitch":                    "\xee\xbf\xab",
		"Campaign":                        "\xee\xbd\x89",
		"Cancel":                          "\xee\x97\x89",
		"Cancel_presentation":             "\xee\x83\xa9",
		"Cancel_schedule_send":            "\xee\xa8\xb9",
		"Candlestick_chart":               "\xee\xab\x94",
		"Car_crash":                       "\xee\xaf\xb2",
		"Car_rental":                      "\xee\xa9\x95",
		"Car_repair":                      "\xee\xa9\x96",
		"Card_giftcard":                   "\xee\xa3\xb6",
		"Card_membership":                 "\xee\xa3\xb7",
		"Card_travel":                     "\xee\xa3\xb8",
		"Carpenter":                       "\xef\x87\xb8",
		"Cases":                           "\xee\xa6\x92",
		"Casino":                          "\xee\xad\x80",
		"Cast":                            "\xee\x8c\x87",
		"Cast_connected":                  "\xee\x8c\x88",
		"Cast_for_education":              "\xee\xbf\xac",
		"Castle":                          "\xee\xaa\xb1",
		"Catching_pokemon":                "\xee\x94\x88",
		"Category":                        "\xee\x95\xb4",
		"Celebration":                     "\xee\xa9\xa5",
		"Cell_tower":                      "\xee\xae\xba",
		"Cell_wifi":                       "\xee\x83\xac",
		"Center_focus_strong":             "\xee\x8e\xb4",
		"Center_focus_weak":               "\xee\x8e\xb5",
		"Chair":                           "\xee\xbf\xad",
		"Chair_alt":                       "\xee\xbf\xae",
		"Chalet":                          "\xee\x96\x85",
		"Change_circle":                   "\xee\x8b\xa7",
		"Change_history":                  "\xee\xa1\xab",
		"Charging_station":                "\xef\x86\x9d",
		"Chat":                            "\xee\x82\xb7",
		"Chat_bubble":                     "\xee\x83\x8a",
		"Chat_bubble_outline":             "\xee\x83\x8b",
		"Check":                           "\xee\x97\x8a",
		"Check_box":                       "\xee\xa0\xb4",
		"Check_box_outline_blank":         "\xee\xa0\xb5",
		"Check_circle":                    "\xee\xa1\xac",
		"Check_circle_outline":            "\xee\xa4\xad",
		"Checklist":                       "\xee\x9a\xb1",
		"Checklist_rtl":                   "\xee\x9a\xb3",
		"Checkroom":                       "\xef\x86\x9e",
		"Chevron_left":                    "\xee\x97\x8b",
		"Chevron_right":                   "\xee\x97\x8c",
		"Child_care":                      "\xee\xad\x81",
		"Child_friendly":                  "\xee\xad\x82",
		"Chrome_reader_mode":              "\xee\xa1\xad",
		"Church":                          "\xee\xaa\xae",
		"Circle":                          "\xee\xbd\x8a",
		"Circle_notifications":            "\xee\xa6\x94",
		"Class":                           "\xee\xa1\xae",
		"Clean_hands":                     "\xef\x88\x9f",
		"Cleaning_services":               "\xef\x83\xbf",
		"Clear":                           "\xee\x85\x8c",
		"Clear_all":                       "\xee\x82\xb8",
		"Close":                           "\xee\x97\x8d",
		"Close_fullscreen":                "\xef\x87\x8f",
		"Closed_caption":                  "\xee\x80\x9c",
		"Closed_caption_disabled":         "\xef\x87\x9c",
		"Closed_caption_off":              "\xee\xa6\x96",
		"Cloud":                           "\xee\x8a\xbd",
		"Cloud_circle":                    "\xee\x8a\xbe",
		"Cloud_done":                      "\xee\x8a\xbf",
		"Cloud_download":                  "\xee\x8b\x80",
		"Cloud_off":                       "\xee\x8b\x81",
		"Cloud_queue":                     "\xee\x8b\x82",
		"Cloud_sync":                      "\xee\xad\x9a",
		"Cloud_upload":                    "\xee\x8b\x83",
		"Cloudy_snowing":                  "\xee\xa0\x90",
		"Co2":                             "\xee\x9e\xb0",
		"Co_present":                      "\xee\xab\xb0",
		"Code":                            "\xee\xa1\xaf",
		"Code_off":                        "\xee\x93\xb3",
		"Coffee":                          "\xee\xbf\xaf",
		"Coffee_maker":                    "\xee\xbf\xb0",
		"Collections":                     "\xee\x8e\xb6",
		"Collections_bookmark":            "\xee\x90\xb1",
		"Color_lens":                      "\xee\x8e\xb7",
		"Colorize":                        "\xee\x8e\xb8",
		"Comment":                         "\xee\x82\xb9",
		"Comment_bank":                    "\xee\xa9\x8e",
		"Comments_disabled":               "\xee\x9e\xa2",
		"Commit":                          "\xee\xab\xb5",
		"Commute":                         "\xee\xa5\x80",
		"Compare":                         "\xee\x8e\xb9",
		"Compare_arrows":                  "\xee\xa4\x95",
		"Compass_calibration":             "\xee\x95\xbc",
		"Compost":                         "\xee\x9d\xa1",
		"Compress":                        "\xee\xa5\x8d",
		"Computer":                        "\xee\x8c\x8a",
		"Confirmation_num":                "\xee\x98\xb8",
		"Confirmation_number":             "\xee\x98\xb8",
		"Connect_without_contact":         "\xef\x88\xa3",
		"Connected_tv":                    "\xee\xa6\x98",
		"Connecting_airports":             "\xee\x9f\x89",
		"Construction":                    "\xee\xa8\xbc",
		"Contact_emergency":               "\xef\xa3\x91",
		"Contact_mail":                    "\xee\x83\x90",
		"Contact_page":                    "\xef\x88\xae",
		"Contact_phone":                   "\xee\x83\x8f",
		"Contact_support":                 "\xee\xa5\x8c",
		"Contactless":                     "\xee\xa9\xb1",
		"Contacts":                        "\xee\x82\xba",
		"Content_copy":                    "\xee\x85\x8d",
		"Content_cut":                     "\xee\x85\x8e",
		"Content_paste":                   "\xee\x85\x8f",
		"Content_paste_go":                "\xee\xaa\x8e",
		"Content_paste_off":               "\xee\x93\xb8",
		"Content_paste_search":            "\xee\xaa\x9b",
		"Contrast":                        "\xee\xac\xb7",
		"Control_camera":                  "\xee\x81\xb4",
		"Control_point":                   "\xee\x8e\xba",
		"Control_point_duplicate":         "\xee\x8e\xbb",
		"Conveyor_belt":                   "\xef\xa1\xa7",
		"Cookie":                          "\xee\xaa\xac",
		"Copy_all":                        "\xee\x8b\xac",
		"Copyright":                       "\xee\xa4\x8c",
		"Coronavirus":                     "\xef\x88\xa1",
		"Corporate_fare":                  "\xef\x87\x90",
		"Cottage":                         "\xee\x96\x87",
		"Countertops":                     "\xef\x87\xb7",
		"Create":                          "\xee\x85\x90",
		"Create_new_folder":               "\xee\x8b\x8c",
		"Credit_card":                     "\xee\xa1\xb0",
		"Credit_card_off":                 "\xee\x93\xb4",
		"Credit_score":                    "\xee\xbf\xb1",
		"Crib":                            "\xee\x96\x88",
		"Crisis_alert":                    "\xee\xaf\xa9",
		"Crop":                            "\xee\x8e\xbe",
		"Crop_16_9":                       "\xee\x8e\xbc",
		"Crop_3_2":                        "\xee\x8e\xbd",
		"Crop_5_4":                        "\xee\x8e\xbf",
		"Crop_7_5":                        "\xee\x8f\x80",
		"Crop_din":                        "\xee\x8f\x81",
		"Crop_free":                       "\xee\x8f\x82",
		"Crop_landscape":                  "\xee\x8f\x83",
		"Crop_original":                   "\xee\x8f\x84",
		"Crop_portrait":                   "\xee\x8f\x85",
		"Crop_rotate":                     "\xee\x90\xb7",
		"Crop_square":                     "\xee\x8f\x86",
		"Cruelty_free":                    "\xee\x9e\x99",
		"Css":                             "\xee\xae\x93",
		"Currency_bitcoin":                "\xee\xaf\x85",
		"Currency_exchange":               "\xee\xad\xb0",
		"Currency_franc":                  "\xee\xab\xba",
		"Currency_lira":                   "\xee\xab\xaf",
		"Currency_pound":                  "\xee\xab\xb1",
		"Currency_ruble":                  "\xee\xab\xac",
		"Currency_rupee":                  "\xee\xab\xb7",
		"Currency_yen":                    "\xee\xab\xbb",
		"Currency_yuan":                   "\xee\xab\xb9",
		"Curtains":                        "\xee\xb0\x9e",
		"Curtains_closed":                 "\xee\xb0\x9d",
		"Cyclone":                         "\xee\xaf\x95",
		"Dangerous":                       "\xee\xa6\x9a",
		"Dark_mode":                       "\xee\x94\x9c",
		"Dashboard":                       "\xee\xa1\xb1",
		"Dashboard_customize":             "\xee\xa6\x9b",
		"Data_array":                      "\xee\xab\x91",
		"Data_exploration":                "\xee\x9d\xaf",
		"Data_object":                     "\xee\xab\x93",
		"Data_saver_off":                  "\xee\xbf\xb2",
		"Data_saver_on":                   "\xee\xbf\xb3",
		"Data_thresholding":               "\xee\xae\x9f",
		"Data_usage":                      "\xee\x86\xaf",
		"Dataset":                         "\xef\xa3\xae",
		"Dataset_linked":                  "\xef\xa3\xaf",
		"Date_range":                      "\xee\xa4\x96",
		"Deblur":                          "\xee\xad\xb7",
		"Deck":                            "\xee\xa9\x82",
		"Dehaze":                          "\xee\x8f\x87",
		"Delete":                          "\xee\xa1\xb2",
		"Delete_forever":                  "\xee\xa4\xab",
		"Delete_outline":                  "\xee\xa4\xae",
		"Delete_sweep":                    "\xee\x85\xac",
		"Delivery_dining":                 "\xee\xa9\xb2",
		"Density_large":                   "\xee\xae\xa9",
		"Density_medium":                  "\xee\xae\x9e",
		"Density_small":                   "\xee\xae\xa8",
		"Departure_board":                 "\xee\x95\xb6",
		"Description":                     "\xee\xa1\xb3",
		"Deselect":                        "\xee\xae\xb6",
		"Design_services":                 "\xef\x84\x8a",
		"Desk":                            "\xef\xa3\xb4",
		"Desktop_access_disabled":         "\xee\xa6\x9d",
		"Desktop_mac":                     "\xee\x8c\x8b",
		"Desktop_windows":                 "\xee\x8c\x8c",
		"Details":                         "\xee\x8f\x88",
		"Developer_board":                 "\xee\x8c\x8d",
		"Developer_board_off":             "\xee\x93\xbf",
		"Developer_mode":                  "\xee\x86\xb0",
		"Device_hub":                      "\xee\x8c\xb5",
		"Device_thermostat":               "\xee\x87\xbf",
		"Device_unknown":                  "\xee\x8c\xb9",
		"Devices":                         "\xee\x86\xb1",
		"Devices_fold":                    "\xee\xaf\x9e",
		"Devices_other":                   "\xee\x8c\xb7",
		"Dew_point":                       "\xef\xa1\xb9",
		"Dialer_sip":                      "\xee\x82\xbb",
		"Dialpad":                         "\xee\x82\xbc",
		"Diamond":                         "\xee\xab\x95",
		"Difference":                      "\xee\xad\xbd",
		"Dining":                          "\xee\xbf\xb4",
		"Dinner_dining":                   "\xee\xa9\x97",
		"Directions":                      "\xee\x94\xae",
		"Directions_bike":                 "\xee\x94\xaf",
		"Directions_boat":                 "\xee\x94\xb2",
		"Directions_boat_filled":          "\xee\xbf\xb5",
		"Directions_bus":                  "\xee\x94\xb0",
		"Directions_bus_filled":           "\xee\xbf\xb6",
		"Directions_car":                  "\xee\x94\xb1",
		"Directions_car_filled":           "\xee\xbf\xb7",
		"Directions_ferry":                "\xee\x94\xb2",
		"Directions_off":                  "\xef\x84\x8f",
		"Directions_railway":              "\xee\x94\xb4",
		"Directions_railway_filled":       "\xee\xbf\xb8",
		"Directions_run":                  "\xee\x95\xa6",
		"Directions_subway":               "\xee\x94\xb3",
		"Directions_subway_filled":        "\xee\xbf\xb9",
		"Directions_train":                "\xee\x94\xb4",
		"Directions_transit":              "\xee\x94\xb5",
		"Directions_transit_filled":       "\xee\xbf\xba",
		"Directions_walk":                 "\xee\x94\xb6",
		"Dirty_lens":                      "\xee\xbd\x8b",
		"Disabled_by_default":             "\xef\x88\xb0",
		"Disabled_visible":                "\xee\x9d\xae",
		"Disc_full":                       "\xee\x98\x90",
		"Discord":                         "\xee\xa9\xac",
		"Discount":                        "\xee\xaf\x89",
		"Display_settings":                "\xee\xae\x97",
		"Diversity_1":                     "\xef\xa3\x97",
		"Diversity_2":                     "\xef\xa3\x98",
		"Diversity_3":                     "\xef\xa3\x99",
		"Dnd_forwardslash":                "\xee\x98\x91",
		"Dns":                             "\xee\xa1\xb5",
		"Do_disturb":                      "\xef\x82\x8c",
		"Do_disturb_alt":                  "\xef\x82\x8d",
		"Do_disturb_off":                  "\xef\x82\x8e",
		"Do_disturb_on":                   "\xef\x82\x8f",
		"Do_not_disturb":                  "\xee\x98\x92",
		"Do_not_disturb_alt":              "\xee\x98\x91",
		"Do_not_disturb_off":              "\xee\x99\x83",
		"Do_not_disturb_on":               "\xee\x99\x84",
		"Do_not_disturb_on_total_silence": "\xee\xbf\xbb",
		"Do_not_step":                     "\xef\x86\x9f",
		"Do_not_touch":                    "\xef\x86\xb0",
		"Dock":                            "\xee\x8c\x8e",
		"Document_scanner":                "\xee\x97\xba",
		"Domain":                          "\xee\x9f\xae",
		"Domain_add":                      "\xee\xad\xa2",
		"Domain_disabled":                 "\xee\x83\xaf",
		"Domain_verification":             "\xee\xbd\x8c",
		"Done":                            "\xee\xa1\xb6",
		"Done_all":                        "\xee\xa1\xb7",
		"Done_outline":                    "\xee\xa4\xaf",
		"Donut_large":                     "\xee\xa4\x97",
		"Donut_small":                     "\xee\xa4\x98",
		"Door_back":                       "\xee\xbf\xbc",
		"Door_front":                      "\xee\xbf\xbd",
		"Door_sliding":                    "\xee\xbf\xbe",
		"Doorbell":                        "\xee\xbf\xbf",
		"Double_arrow":                    "\xee\xa9\x90",
		"Downhill_skiing":                 "\xee\x94\x89",
		"Download":                        "\xef\x82\x90",
		"Download_done":                   "\xef\x82\x91",
		"Download_for_offline":            "\xef\x80\x80",
		"Downloading":                     "\xef\x80\x81",
		"Drafts":                          "\xee\x85\x91",
		"Drag_handle":                     "\xee\x89\x9d",
		"Drag_indicator":                  "\xee\xa5\x85",
		"Draw":                            "\xee\x9d\x86",
		"Drive_eta":                       "\xee\x98\x93",
		"Drive_file_move":                 "\xee\x99\xb5",
		"Drive_file_move_outline":         "\xee\xa6\xa1",
		"Drive_file_move_rtl":             "\xee\x9d\xad",
		"Drive_file_rename_outline":       "\xee\xa6\xa2",
		"Drive_folder_upload":             "\xee\xa6\xa3",
		"Dry":                             "\xef\x86\xb3",
		"Dry_cleaning":                    "\xee\xa9\x98",
		"Duo":                             "\xee\xa6\xa5",
		"Dvr":                             "\xee\x86\xb2",
		"Dynamic_feed":                    "\xee\xa8\x94",
		"Dynamic_form":                    "\xef\x86\xbf",
		"E_mobiledata":                    "\xef\x80\x82",
		"Earbuds":                         "\xef\x80\x83",
		"Earbuds_battery":                 "\xef\x80\x84",
		"East":                            "\xef\x87\x9f",
		"Eco":                             "\xee\xa8\xb5",
		"Edgesensor_high":                 "\xef\x80\x85",
		"Edgesensor_low":                  "\xef\x80\x86",
		"Edit":                            "\xee\x8f\x89",
		"Edit_attributes":                 "\xee\x95\xb8",
		"Edit_calendar":                   "\xee\x9d\x82",
		"Edit_document":                   "\xef\xa2\x8c",
		"Edit_location":                   "\xee\x95\xa8",
		"Edit_location_alt":               "\xee\x87\x85",
		"Edit_note":                       "\xee\x9d\x85",
		"Edit_notifications":              "\xee\x94\xa5",
		"Edit_off":                        "\xee\xa5\x90",
		"Edit_road":                       "\xee\xbd\x8d",
		"Edit_square":                     "\xef\xa2\x8d",
		"Egg":                             "\xee\xab\x8c",
		"Egg_alt":                         "\xee\xab\x88",
		"Eject":                           "\xee\xa3\xbb",
		"Elderly":                         "\xef\x88\x9a",
		"Elderly_woman":                   "\xee\xad\xa9",
		"Electric_bike":                   "\xee\xac\x9b",
		"Electric_bolt":                   "\xee\xb0\x9c",
		"Electric_car":                    "\xee\xac\x9c",
		"Electric_meter":                  "\xee\xb0\x9b",
		"Electric_moped":                  "\xee\xac\x9d",
		"Electric_rickshaw":               "\xee\xac\x9e",
		"Electric_scooter":                "\xee\xac\x9f",
		"Electrical_services":             "\xef\x84\x82",
		"Elevator":                        "\xef\x86\xa0",
		"Email":                           "\xee\x82\xbe",
		"Emergency":                       "\xee\x87\xab",
		"Emergency_recording":             "\xee\xaf\xb4",
		"Emergency_share":                 "\xee\xaf\xb6",
		"Emoji_emotions":                  "\xee\xa8\xa2",
		"Emoji_events":                    "\xee\xa8\xa3",
		"Emoji_flags":                     "\xee\xa8\x9a",
		"Emoji_food_beverage":             "\xee\xa8\x9b",
		"Emoji_nature":                    "\xee\xa8\x9c",
		"Emoji_objects":                   "\xee\xa8\xa4",
		"Emoji_people":                    "\xee\xa8\x9d",
		"Emoji_symbols":                   "\xee\xa8\x9e",
		"Emoji_transportation":            "\xee\xa8\x9f",
		"Energy_savings_leaf":             "\xee\xb0\x9a",
		"Engineering":                     "\xee\xa8\xbd",
		"Enhance_photo_translate":         "\xee\xa3\xbc",
		"Enhanced_encryption":             "\xee\x98\xbf",
		"Equalizer":                       "\xee\x80\x9d",
		"Error":                           "\xee\x80\x80",
		"Error_outline":                   "\xee\x80\x81",
		"Escalator":                       "\xef\x86\xa1",
		"Escalator_warning":               "\xef\x86\xac",
		"Euro":                            "\xee\xa8\x95",
		"Euro_symbol":                     "\xee\xa4\xa6",
		"Ev_station":                      "\xee\x95\xad",
		"Event":                           "\xee\xa1\xb8",
		"Event_available":                 "\xee\x98\x94",
		"Event_busy":                      "\xee\x98\x95",
		"Event_note":                      "\xee\x98\x96",
		"Event_repeat":                    "\xee\xad\xbb",
		"Event_seat":                      "\xee\xa4\x83",
		"Exit_to_app":                     "\xee\xa1\xb9",
		"Expand":                          "\xee\xa5\x8f",
		"Expand_circle_down":              "\xee\x9f\x8d",
		"Expand_less":                     "\xee\x97\x8e",
		"Expand_more":                     "\xee\x97\x8f",
		"Explicit":                        "\xee\x80\x9e",
		"Explore":                         "\xee\xa1\xba",
		"Explore_off":                     "\xee\xa6\xa8",
		"Exposure":                        "\xee\x8f\x8a",
		"Exposure_minus_1":                "\xee\x8f\x8b",
		"Exposure_minus_2":                "\xee\x8f\x8c",
		"Exposure_neg_1":                  "\xee\x8f\x8b",
		"Exposure_neg_2":                  "\xee\x8f\x8c",
		"Exposure_plus_1":                 "\xee\x8f\x8d",
		"Exposure_plus_2":                 "\xee\x8f\x8e",
		"Exposure_zero":                   "\xee\x8f\x8f",
		"Extension":                       "\xee\xa1\xbb",
		"Extension_off":                   "\xee\x93\xb5",
		"Face":                            "\xee\xa1\xbc",
		"Face_2":                          "\xef\xa3\x9a",
		"Face_3":                          "\xef\xa3\x9b",
		"Face_4":                          "\xef\xa3\x9c",
		"Face_5":                          "\xef\xa3\x9d",
		"Face_6":                          "\xef\xa3\x9e",
		"Face_retouching_natural":         "\xee\xbd\x8e",
		"Face_retouching_off":             "\xef\x80\x87",
		"Facebook":                        "\xef\x88\xb4",
		"Fact_check":                      "\xef\x83\x85",
		"Factory":                         "\xee\xae\xbc",
		"Family_restroom":                 "\xef\x86\xa2",
		"Fast_forward":                    "\xee\x80\x9f",
		"Fast_rewind":                     "\xee\x80\xa0",
		"Fastfood":                        "\xee\x95\xba",
		"Favorite":                        "\xee\xa1\xbd",
		"Favorite_border":                 "\xee\xa1\xbe",
		"Favorite_outline":                "\xee\xa1\xbe",
		"Fax":                             "\xee\xab\x98",
		"Featured_play_list":              "\xee\x81\xad",
		"Featured_video":                  "\xee\x81\xae",
		"Feed":                            "\xef\x80\x89",
		"Feedback":                        "\xee\xa1\xbf",
		"Female":                          "\xee\x96\x90",
		"Fence":                           "\xef\x87\xb6",
		"Festival":                        "\xee\xa9\xa8",
		"Fiber_dvr":                       "\xee\x81\x9d",
		"Fiber_manual_record":             "\xee\x81\xa1",
		"Fiber_new":                       "\xee\x81\x9e",
		"Fiber_pin":                       "\xee\x81\xaa",
		"Fiber_smart_record":              "\xee\x81\xa2",
		"File_copy":                       "\xee\x85\xb3",
		"File_download":                   "\xee\x8b\x84",
		"File_download_done":              "\xee\xa6\xaa",
		"File_download_off":               "\xee\x93\xbe",
		"File_open":                       "\xee\xab\xb3",
		"File_present":                    "\xee\xa8\x8e",
		"File_upload":                     "\xee\x8b\x86",
		"File_upload_off":                 "\xef\xa2\x86",
		"Filter":                          "\xee\x8f\x93",
		"Filter_1":                        "\xee\x8f\x90",
		"Filter_2":                        "\xee\x8f\x91",
		"Filter_3":                        "\xee\x8f\x92",
		"Filter_4":                        "\xee\x8f\x94",
		"Filter_5":                        "\xee\x8f\x95",
		"Filter_6":                        "\xee\x8f\x96",
		"Filter_7":                        "\xee\x8f\x97",
		"Filter_8":                        "\xee\x8f\x98",
		"Filter_9":                        "\xee\x8f\x99",
		"Filter_9_plus":                   "\xee\x8f\x9a",
		"Filter_alt":                      "\xee\xbd\x8f",
		"Filter_alt_off":                  "\xee\xac\xb2",
		"Filter_b_and_w":                  "\xee\x8f\x9b",
		"Filter_center_focus":             "\xee\x8f\x9c",
		"Filter_drama":                    "\xee\x8f\x9d",
		"Filter_frames":                   "\xee\x8f\x9e",
		"Filter_hdr":                      "\xee\x8f\x9f",
		"Filter_list":                     "\xee\x85\x92",
		"Filter_list_alt":                 "\xee\xa5\x8e",
		"Filter_list_off":                 "\xee\xad\x97",
		"Filter_none":                     "\xee\x8f\xa0",
		"Filter_tilt_shift":               "\xee\x8f\xa2",
		"Filter_vintage":                  "\xee\x8f\xa3",
		"Find_in_page":                    "\xee\xa2\x80",
		"Find_replace":                    "\xee\xa2\x81",
		"Fingerprint":                     "\xee\xa4\x8d",
		"Fire_extinguisher":               "\xef\x87\x98",
		"Fire_hydrant":                    "\xef\x86\xa3",
		"Fire_hydrant_alt":                "\xef\xa3\xb1",
		"Fire_truck":                      "\xef\xa3\xb2",
		"Fireplace":                       "\xee\xa9\x83",
		"First_page":                      "\xee\x97\x9c",
		"Fit_screen":                      "\xee\xa8\x90",
		"Fitbit":                          "\xee\xa0\xab",
		"Fitness_center":                  "\xee\xad\x83",
		"Flag":                            "\xee\x85\x93",
		"Flag_circle":                     "\xee\xab\xb8",
		"Flaky":                           "\xee\xbd\x90",
		"Flare":                           "\xee\x8f\xa4",
		"Flash_auto":                      "\xee\x8f\xa5",
		"Flash_off":                       "\xee\x8f\xa6",
		"Flash_on":                        "\xee\x8f\xa7",
		"Flashlight_off":                  "\xef\x80\x8a",
		"Flashlight_on":                   "\xef\x80\x8b",
		"Flatware":                        "\xef\x80\x8c",
		"Flight":                          "\xee\x94\xb9",
		"Flight_class":                    "\xee\x9f\x8b",
		"Flight_land":                     "\xee\xa4\x84",
		"Flight_takeoff":                  "\xee\xa4\x85",
		"Flip":                            "\xee\x8f\xa8",
		"Flip_camera_android":             "\xee\xa8\xb7",
		"Flip_camera_ios":                 "\xee\xa8\xb8",
		"Flip_to_back":                    "\xee\xa2\x82",
		"Flip_to_front":                   "\xee\xa2\x83",
		"Flood":                           "\xee\xaf\xa6",
		"Flourescent":                     "\xef\x80\x8d",
		"Fluorescent":                     "\xee\xb0\xb1",
		"Flutter_dash":                    "\xee\x80\x8b",
		"Fmd_bad":                         "\xef\x80\x8e",
		"Fmd_good":                        "\xef\x80\x8f",
		"Foggy":                           "\xee\xa0\x98",
		"Folder":                          "\xee\x8b\x87",
		"Folder_copy":                     "\xee\xae\xbd",
		"Folder_delete":                   "\xee\xac\xb4",
		"Folder_off":                      "\xee\xae\x83",
		"Folder_open":                     "\xee\x8b\x88",
		"Folder_shared":                   "\xee\x8b\x89",
		"Folder_special":                  "\xee\x98\x97",
		"Folder_zip":                      "\xee\xac\xac",
		"Follow_the_signs":                "\xef\x88\xa2",
		"Font_download":                   "\xee\x85\xa7",
		"Font_download_off":               "\xee\x93\xb9",
		"Food_bank":                       "\xef\x87\xb2",
		"Forest":                          "\xee\xaa\x99",
		"Fork_left":                       "\xee\xae\xa0",
		"Fork_right":                      "\xee\xae\xac",
		"Forklift":                        "\xef\xa1\xa8",
		"Format_align_center":             "\xee\x88\xb4",
		"Format_align_justify":            "\xee\x88\xb5",
		"Format_align_left":               "\xee\x88\xb6",
		"Format_align_right":              "\xee\x88\xb7",
		"Format_bold":                     "\xee\x88\xb8",
		"Format_clear":                    "\xee\x88\xb9",
		"Format_color_fill":               "\xee\x88\xba",
		"Format_color_reset":              "\xee\x88\xbb",
		"Format_color_text":               "\xee\x88\xbc",
		"Format_indent_decrease":          "\xee\x88\xbd",
		"Format_indent_increase":          "\xee\x88\xbe",
		"Format_italic":                   "\xee\x88\xbf",
		"Format_line_spacing":             "\xee\x89\x80",
		"Format_list_bulleted":            "\xee\x89\x81",
		"Format_list_bulleted_add":        "\xef\xa1\x89",
		"Format_list_numbered":            "\xee\x89\x82",
		"Format_list_numbered_rtl":        "\xee\x89\xa7",
		"Format_overline":                 "\xee\xad\xa5",
		"Format_paint":                    "\xee\x89\x83",
		"Format_quote":                    "\xee\x89\x84",
		"Format_shapes":                   "\xee\x89\x9e",
		"Format_size":                     "\xee\x89\x85",
		"Format_strikethrough":            "\xee\x89\x86",
		"Format_textdirection_l_to_r":     "\xee\x89\x87",
		"Format_textdirection_r_to_l":     "\xee\x89\x88",
		"Format_underline":                "\xee\x89\x89",
		"Format_underlined":               "\xee\x89\x89",
		"Fort":                            "\xee\xaa\xad",
		"Forum":                           "\xee\x82\xbf",
		"Forward":                         "\xee\x85\x94",
		"Forward_10":                      "\xee\x81\x96",
		"Forward_30":                      "\xee\x81\x97",
		"Forward_5":                       "\xee\x81\x98",
		"Forward_to_inbox":                "\xef\x86\x87",
		"Foundation":                      "\xef\x88\x80",
		"Free_breakfast":                  "\xee\xad\x84",
		"Free_cancellation":               "\xee\x9d\x88",
		"Front_hand":                      "\xee\x9d\xa9",
		"Front_loader":                    "\xef\xa1\xa9",
		"Fullscreen":                      "\xee\x97\x90",
		"Fullscreen_exit":                 "\xee\x97\x91",
		"Functions":                       "\xee\x89\x8a",
		"G_mobiledata":                    "\xef\x80\x90",
		"G_translate":                     "\xee\xa4\xa7",
		"Gamepad":                         "\xee\x8c\x8f",
		"Games":                           "\xee\x80\xa1",
		"Garage":                          "\xef\x80\x91",
		"Gas_meter":                       "\xee\xb0\x99",
		"Gavel":                           "\xee\xa4\x8e",
		"Generating_tokens":               "\xee\x9d\x89",
		"Gesture":                         "\xee\x85\x95",
		"Get_app":                         "\xee\xa2\x84",
		"Gif":                             "\xee\xa4\x88",
		"Gif_box":                         "\xee\x9e\xa3",
		"Girl":                            "\xee\xad\xa8",
		"Gite":                            "\xee\x96\x8b",
		"Goat":                            "\xf4\x8f\xbf\xbd",
		"Golf_course":                     "\xee\xad\x85",
		"Gpp_bad":                         "\xef\x80\x92",
		"Gpp_good":                        "\xef\x80\x93",
		"Gpp_maybe":                       "\xef\x80\x94",
		"Gps_fixed":                       "\xee\x86\xb3",
		"Gps_not_fixed":                   "\xee\x86\xb4",
		"Gps_off":                         "\xee\x86\xb5",
		"Grade":                           "\xee\xa2\x85",
		"Gradient":                        "\xee\x8f\xa9",
		"Grading":                         "\xee\xa9\x8f",
		"Grain":                           "\xee\x8f\xaa",
		"Graphic_eq":                      "\xee\x86\xb8",
		"Grass":                           "\xef\x88\x85",
		"Grid_3x3":                        "\xef\x80\x95",
		"Grid_4x4":                        "\xef\x80\x96",
		"Grid_goldenratio":                "\xef\x80\x97",
		"Grid_off":                        "\xee\x8f\xab",
		"Grid_on":                         "\xee\x8f\xac",
		"Grid_view":                       "\xee\xa6\xb0",
		"Group":                           "\xee\x9f\xaf",
		"Group_add":                       "\xee\x9f\xb0",
		"Group_off":                       "\xee\x9d\x87",
		"Group_remove":                    "\xee\x9e\xad",
		"Group_work":                      "\xee\xa2\x86",
		"Groups":                          "\xef\x88\xb3",
		"Groups_2":                        "\xef\xa3\x9f",
		"Groups_3":                        "\xef\xa3\xa0",
		"H_mobiledata":                    "\xef\x80\x98",
		"H_plus_mobiledata":               "\xef\x80\x99",
		"Hail":                            "\xee\xa6\xb1",
		"Handshake":                       "\xee\xaf\x8b",
		"Handyman":                        "\xef\x84\x8b",
		"Hardware":                        "\xee\xa9\x99",
		"Hd":                              "\xee\x81\x92",
		"Hdr_auto":                        "\xef\x80\x9a",
		"Hdr_auto_select":                 "\xef\x80\x9b",
		"Hdr_enhanced_select":             "\xee\xbd\x91",
		"Hdr_off":                         "\xee\x8f\xad",
		"Hdr_off_select":                  "\xef\x80\x9c",
		"Hdr_on":                          "\xee\x8f\xae",
		"Hdr_on_select":                   "\xef\x80\x9d",
		"Hdr_plus":                        "\xef\x80\x9e",
		"Hdr_strong":                      "\xee\x8f\xb1",
		"Hdr_weak":                        "\xee\x8f\xb2",
		"Headphones":                      "\xef\x80\x9f",
		"Headphones_battery":              "\xef\x80\xa0",
		"Headset":                         "\xee\x8c\x90",
		"Headset_mic":                     "\xee\x8c\x91",
		"Headset_off":                     "\xee\x8c\xba",
		"Healing":                         "\xee\x8f\xb3",
		"Health_and_safety":               "\xee\x87\x95",
		"Hearing":                         "\xee\x80\xa3",
		"Hearing_disabled":                "\xef\x84\x84",
		"Heart_broken":                    "\xee\xab\x82",
		"Heat_pump":                       "\xee\xb0\x98",
		"Height":                          "\xee\xa8\x96",
		"Help":                            "\xee\xa2\x87",
		"Help_center":                     "\xef\x87\x80",
		"Help_outline":                    "\xee\xa3\xbd",
		"Hevc":                            "\xef\x80\xa1",
		"Hexagon":                         "\xee\xac\xb9",
		"Hide_image":                      "\xef\x80\xa2",
		"Hide_source":                     "\xef\x80\xa3",
		"High_quality":                    "\xee\x80\xa4",
		"Highlight":                       "\xee\x89\x9f",
		"Highlight_alt":                   "\xee\xbd\x92",
		"Highlight_off":                   "\xee\xa2\x88",
		"Highlight_remove":                "\xee\xa2\x88",
		"Hiking":                          "\xee\x94\x8a",
		"History":                         "\xee\xa2\x89",
		"History_edu":                     "\xee\xa8\xbe",
		"History_toggle_off":              "\xef\x85\xbd",
		"Hive":                            "\xee\xaa\xa6",
		"Hls":                             "\xee\xae\x8a",
		"Hls_off":                         "\xee\xae\x8c",
		"Holiday_village":                 "\xee\x96\x8a",
		"Home":                            "\xee\xa2\x8a",
		"Home_filled":                     "\xee\xa6\xb2",
		"Home_max":                        "\xef\x80\xa4",
		"Home_mini":                       "\xef\x80\xa5",
		"Home_repair_service":             "\xef\x84\x80",
		"Home_work":                       "\xee\xa8\x89",
		"Horizontal_distribute":           "\xee\x80\x94",
		"Horizontal_rule":                 "\xef\x84\x88",
		"Horizontal_split":                "\xee\xa5\x87",
		"Hot_tub":                         "\xee\xad\x86",
		"Hotel":                           "\xee\x94\xba",
		"Hotel_class":                     "\xee\x9d\x83",
		"Hourglass_bottom":                "\xee\xa9\x9c",
		"Hourglass_disabled":              "\xee\xbd\x93",
		"Hourglass_empty":                 "\xee\xa2\x8b",
		"Hourglass_full":                  "\xee\xa2\x8c",
		"Hourglass_top":                   "\xee\xa9\x9b",
		"House":                           "\xee\xa9\x84",
		"House_siding":                    "\xef\x88\x82",
		"Houseboat":                       "\xee\x96\x84",
		"How_to_reg":                      "\xee\x85\xb4",
		"How_to_vote":                     "\xee\x85\xb5",
		"Html":                            "\xee\xad\xbe",
		"Http":                            "\xee\xa4\x82",
		"Https":                           "\xee\xa2\x8d",
		"Hub":                             "\xee\xa7\xb4",
		"Hvac":                            "\xef\x84\x8e",
		"Ice_skating":                     "\xee\x94\x8b",
		"Icecream":                        "\xee\xa9\xa9",
		"Image":                           "\xee\x8f\xb4",
		"Image_aspect_ratio":              "\xee\x8f\xb5",
		"Image_not_supported":             "\xef\x84\x96",
		"Image_search":                    "\xee\x90\xbf",
		"Imagesearch_roller":              "\xee\xa6\xb4",
		"Import_contacts":                 "\xee\x83\xa0",
		"Import_export":                   "\xee\x83\x83",
		"Important_devices":               "\xee\xa4\x92",
		"Inbox":                           "\xee\x85\x96",
		"Incomplete_circle":               "\xee\x9e\x9b",
		"Indeterminate_check_box":         "\xee\xa4\x89",
		"Info":                            "\xee\xa2\x8e",
		"Info_outline":                    "\xee\xa2\x8f",
		"Input":                           "\xee\xa2\x90",
		"Insert_chart":                    "\xee\x89\x8b",
		"Insert_chart_outlined":           "\xee\x89\xaa",
		"Insert_comment":                  "\xee\x89\x8c",
		"Insert_drive_file":               "\xee\x89\x8d",
		"Insert_emoticon":                 "\xee\x89\x8e",
		"Insert_invitation":               "\xee\x89\x8f",
		"Insert_link":                     "\xee\x89\x90",
		"Insert_page_break":               "\xee\xab\x8a",
		"Insert_photo":                    "\xee\x89\x91",
		"Insights":                        "\xef\x82\x92",
		"Install_desktop":                 "\xee\xad\xb1",
		"Install_mobile":                  "\xee\xad\xb2",
		"Integration_instructions":        "\xee\xbd\x94",
		"Interests":                       "\xee\x9f\x88",
		"Interpreter_mode":                "\xee\xa0\xbb",
		"Inventory":                       "\xee\x85\xb9",
		"Inventory_2":                     "\xee\x86\xa1",
		"Invert_colors":                   "\xee\xa2\x91",
		"Invert_colors_off":               "\xee\x83\x84",
		"Invert_colors_on":                "\xee\xa2\x91",
		"Ios_share":                       "\xee\x9a\xb8",
		"Iron":                            "\xee\x96\x83",
		"Iso":                             "\xee\x8f\xb6",
		"Javascript":                      "\xee\xad\xbc",
		"Join_full":                       "\xee\xab\xab",
		"Join_inner":                      "\xee\xab\xb4",
		"Join_left":                       "\xee\xab\xb2",
		"Join_right":                      "\xee\xab\xaa",
		"Kayaking":                        "\xee\x94\x8c",
		"Kebab_dining":                    "\xee\xa1\x82",
		"Key":                             "\xee\x9c\xbc",
		"Key_off":                         "\xee\xae\x84",
		"Keyboard":                        "\xee\x8c\x92",
		"Keyboard_alt":                    "\xef\x80\xa8",
		"Keyboard_arrow_down":             "\xee\x8c\x93",
		"Keyboard_arrow_left":             "\xee\x8c\x94",
		"Keyboard_arrow_right":            "\xee\x8c\x95",
		"Keyboard_arrow_up":               "\xee\x8c\x96",
		"Keyboard_backspace":              "\xee\x8c\x97",
		"Keyboard_capslock":               "\xee\x8c\x98",
		"Keyboard_command":                "\xee\xab\xa0",
		"Keyboard_command_key":            "\xee\xab\xa7",
		"Keyboard_control":                "\xee\x97\x93",
		"Keyboard_control_key":            "\xee\xab\xa6",
		"Keyboard_double_arrow_down":      "\xee\xab\x90",
		"Keyboard_double_arrow_left":      "\xee\xab\x83",
		"Keyboard_double_arrow_right":     "\xee\xab\x89",
		"Keyboard_double_arrow_up":        "\xee\xab\x8f",
		"Keyboard_hide":                   "\xee\x8c\x9a",
		"Keyboard_option":                 "\xee\xab\x9f",
		"Keyboard_option_key":             "\xee\xab\xa8",
		"Keyboard_return":                 "\xee\x8c\x9b",
		"Keyboard_tab":                    "\xee\x8c\x9c",
		"Keyboard_voice":                  "\xee\x8c\x9d",
		"King_bed":                        "\xee\xa9\x85",
		"Kitchen":                         "\xee\xad\x87",
		"Kitesurfing":                     "\xee\x94\x8d",
		"Label":                           "\xee\xa2\x92",
		"Label_important":                 "\xee\xa4\xb7",
		"Label_important_outline":         "\xee\xa5\x88",
		"Label_off":                       "\xee\xa6\xb6",
		"Label_outline":                   "\xee\xa2\x93",
		"Lan":                             "\xee\xac\xaf",
		"Landscape":                       "\xee\x8f\xb7",
		"Landslide":                       "\xee\xaf\x97",
		"Language":                        "\xee\xa2\x94",
		"Laptop":                          "\xee\x8c\x9e",
		"Laptop_chromebook":               "\xee\x8c\x9f",
		"Laptop_mac":                      "\xee\x8c\xa0",
		"Laptop_windows":                  "\xee\x8c\xa1",
		"Last_page":                       "\xee\x97\x9d",
		"Launch":                          "\xee\xa2\x95",
		"Layers":                          "\xee\x94\xbb",
		"Layers_clear":                    "\xee\x94\xbc",
		"Leaderboard":                     "\xef\x88\x8c",
		"Leak_add":                        "\xee\x8f\xb8",
		"Leak_remove":                     "\xee\x8f\xb9",
		"Leave_bags_at_home":              "\xef\x88\x9b",
		"Legend_toggle":                   "\xef\x84\x9b",
		"Lens":                            "\xee\x8f\xba",
		"Lens_blur":                       "\xef\x80\xa9",
		"Library_add":                     "\xee\x80\xae",
		"Library_add_check":               "\xee\xa6\xb7",
		"Library_books":                   "\xee\x80\xaf",
		"Library_music":                   "\xee\x80\xb0",
		"Light":                           "\xef\x80\xaa",
		"Light_mode":                      "\xee\x94\x98",
		"Lightbulb":                       "\xee\x83\xb0",
		"Lightbulb_circle":                "\xee\xaf\xbe",
		"Lightbulb_outline":               "\xee\xa4\x8f",
		"Line_axis":                       "\xee\xaa\x9a",
		"Line_style":                      "\xee\xa4\x99",
		"Line_weight":                     "\xee\xa4\x9a",
		"Linear_scale":                    "\xee\x89\xa0",
		"Link":                            "\xee\x85\x97",
		"Link_off":                        "\xee\x85\xaf",
		"Linked_camera":                   "\xee\x90\xb8",
		"Liquor":                          "\xee\xa9\xa0",
		"List":                            "\xee\xa2\x96",
		"List_alt":                        "\xee\x83\xae",
		"Live_help":                       "\xee\x83\x86",
		"Live_tv":                         "\xee\x98\xb9",
		"Living":                          "\xef\x80\xab",
		"Local_activity":                  "\xee\x94\xbf",
		"Local_airport":                   "\xee\x94\xbd",
		"Local_atm":                       "\xee\x94\xbe",
		"Local_attraction":                "\xee\x94\xbf",
		"Local_bar":                       "\xee\x95\x80",
		"Local_cafe":                      "\xee\x95\x81",
		"Local_car_wash":                  "\xee\x95\x82",
		"Local_convenience_store":         "\xee\x95\x83",
		"Local_dining":                    "\xee\x95\x96",
		"Local_drink":                     "\xee\x95\x84",
		"Local_fire_department":           "\xee\xbd\x95",
		"Local_florist":                   "\xee\x95\x85",
		"Local_gas_station":               "\xee\x95\x86",
		"Local_grocery_store":             "\xee\x95\x87",
		"Local_hospital":                  "\xee\x95\x88",
		"Local_hotel":                     "\xee\x95\x89",
		"Local_laundry_service":           "\xee\x95\x8a",
		"Local_library":                   "\xee\x95\x8b",
		"Local_mall":                      "\xee\x95\x8c",
		"Local_movies":                    "\xee\x95\x8d",
		"Local_offer":                     "\xee\x95\x8e",
		"Local_parking":                   "\xee\x95\x8f",
		"Local_pharmacy":                  "\xee\x95\x90",
		"Local_phone":                     "\xee\x95\x91",
		"Local_pizza":                     "\xee\x95\x92",
		"Local_play":                      "\xee\x95\x93",
		"Local_police":                    "\xee\xbd\x96",
		"Local_post_office":               "\xee\x95\x94",
		"Local_print_shop":                "\xee\x95\x95",
		"Local_printshop":                 "\xee\x95\x95",
		"Local_restaurant":                "\xee\x95\x96",
		"Local_see":                       "\xee\x95\x97",
		"Local_shipping":                  "\xee\x95\x98",
		"Local_taxi":                      "\xee\x95\x99",
		"Location_city":                   "\xee\x9f\xb1",
		"Location_disabled":               "\xee\x86\xb6",
		"Location_history":                "\xee\x95\x9a",
		"Location_off":                    "\xee\x83\x87",
		"Location_on":                     "\xee\x83\x88",
		"Location_pin":                    "\xef\x87\x9b",
		"Location_searching":              "\xee\x86\xb7",
		"Lock":                            "\xee\xa2\x97",
		"Lock_clock":                      "\xee\xbd\x97",
		"Lock_open":                       "\xee\xa2\x98",
		"Lock_outline":                    "\xee\xa2\x99",
		"Lock_person":                     "\xef\xa3\xb3",
		"Lock_reset":                      "\xee\xab\x9e",
		"Login":                           "\xee\xa9\xb7",
		"Logo_dev":                        "\xee\xab\x96",
		"Logout":                          "\xee\xa6\xba",
		"Looks":                           "\xee\x8f\xbc",
		"Looks_3":                         "\xee\x8f\xbb",
		"Looks_4":                         "\xee\x8f\xbd",
		"Looks_5":                         "\xee\x8f\xbe",
		"Looks_6":                         "\xee\x8f\xbf",
		"Looks_one":                       "\xee\x90\x80",
		"Looks_two":                       "\xee\x90\x81",
		"Loop":                            "\xee\x80\xa8",
		"Loupe":                           "\xee\x90\x82",
		"Low_priority":                    "\xee\x85\xad",
		"Loyalty":                         "\xee\xa2\x9a",
		"Lte_mobiledata":                  "\xef\x80\xac",
		"Lte_plus_mobiledata":             "\xef\x80\xad",
		"Luggage":                         "\xef\x88\xb5",
		"Lunch_dining":                    "\xee\xa9\xa1",
		"Lyrics":                          "\xee\xb0\x8b",
		"Macro_off":                       "\xef\xa3\x92",
		"Mail":                            "\xee\x85\x98",
		"Mail_lock":                       "\xee\xb0\x8a",
		"Mail_outline":                    "\xee\x83\xa1",
		"Male":                            "\xee\x96\x8e",
		"Man":                             "\xee\x93\xab",
		"Man_2":                           "\xef\xa3\xa1",
		"Man_3":                           "\xef\xa3\xa2",
		"Man_4":                           "\xef\xa3\xa3",
		"Manage_accounts":                 "\xef\x80\xae",
		"Manage_history":                  "\xee\xaf\xa7",
		"Manage_search":                   "\xef\x80\xaf",
		"Map":                             "\xee\x95\x9b",
		"Maps_home_work":                  "\xef\x80\xb0",
		"Maps_ugc":                        "\xee\xbd\x98",
		"Margin":                          "\xee\xa6\xbb",
		"Mark_as_unread":                  "\xee\xa6\xbc",
		"Mark_chat_read":                  "\xef\x86\x8b",
		"Mark_chat_unread":                "\xef\x86\x89",
		"Mark_email_read":                 "\xef\x86\x8c",
		"Mark_email_unread":               "\xef\x86\x8a",
		"Mark_unread_chat_alt":            "\xee\xae\x9d",
		"Markunread":                      "\xee\x85\x99",
		"Markunread_mailbox":              "\xee\xa2\x9b",
		"Masks":                           "\xef\x88\x98",
		"Maximize":                        "\xee\xa4\xb0",
		"Media_bluetooth_off":             "\xef\x80\xb1",
		"Media_bluetooth_on":              "\xef\x80\xb2",
		"Mediation":                       "\xee\xbe\xa7",
		"Medical_information":             "\xee\xaf\xad",
		"Medical_services":                "\xef\x84\x89",
		"Medication":                      "\xef\x80\xb3",
		"Medication_liquid":               "\xee\xaa\x87",
		"Meeting_room":                    "\xee\xad\x8f",
		"Memory":                          "\xee\x8c\xa2",
		"Menu":                            "\xee\x97\x92",
		"Menu_book":                       "\xee\xa8\x99",
		"Menu_open":                       "\xee\xa6\xbd",
		"Merge":                           "\xee\xae\x98",
		"Merge_type":                      "\xee\x89\x92",
		"Message":                         "\xee\x83\x89",
		"Messenger":                       "\xee\x83\x8a",
		"Messenger_outline":               "\xee\x83\x8b",
		"Mic":                             "\xee\x80\xa9",
		"Mic_external_off":                "\xee\xbd\x99",
		"Mic_external_on":                 "\xee\xbd\x9a",
		"Mic_none":                        "\xee\x80\xaa",
		"Mic_off":                         "\xee\x80\xab",
		"Microwave":                       "\xef\x88\x84",
		"Military_tech":                   "\xee\xa8\xbf",
		"Minimize":                        "\xee\xa4\xb1",
		"Minor_crash":                     "\xee\xaf\xb1",
		"Miscellaneous_services":          "\xef\x84\x8c",
		"Missed_video_call":               "\xee\x81\xb3",
		"Mms":                             "\xee\x98\x98",
		"Mobile_friendly":                 "\xee\x88\x80",
		"Mobile_off":                      "\xee\x88\x81",
		"Mobile_screen_share":             "\xee\x83\xa7",
		"Mobiledata_off":                  "\xef\x80\xb4",
		"Mode":                            "\xef\x82\x97",
		"Mode_comment":                    "\xee\x89\x93",
		"Mode_edit":                       "\xee\x89\x94",
		"Mode_edit_outline":               "\xef\x80\xb5",
		"Mode_fan_off":                    "\xee\xb0\x97",
		"Mode_night":                      "\xef\x80\xb6",
		"Mode_of_travel":                  "\xee\x9f\x8e",
		"Mode_standby":                    "\xef\x80\xb7",
		"Model_training":                  "\xef\x83\x8f",
		"Monetization_on":                 "\xee\x89\xa3",
		"Money":                           "\xee\x95\xbd",
		"Money_off":                       "\xee\x89\x9c",
		"Money_off_csred":                 "\xef\x80\xb8",
		"Monitor":                         "\xee\xbd\x9b",
		"Monitor_heart":                   "\xee\xaa\xa2",
		"Monitor_weight":                  "\xef\x80\xb9",
		"Monochrome_photos":               "\xee\x90\x83",
		"Mood":                            "\xee\x9f\xb2",
		"Mood_bad":                        "\xee\x9f\xb3",
		"Moped":                           "\xee\xac\xa8",
		"More":                            "\xee\x98\x99",
		"More_horiz":                      "\xee\x97\x93",
		"More_time":                       "\xee\xa9\x9d",
		"More_vert":                       "\xee\x97\x94",
		"Mosque":                          "\xee\xaa\xb2",
		"Motion_photos_auto":              "\xef\x80\xba",
		"Motion_photos_off":               "\xee\xa7\x80",
		"Motion_photos_on":                "\xee\xa7\x81",
		"Motion_photos_pause":             "\xef\x88\xa7",
		"Motion_photos_paused":            "\xee\xa7\x82",
		"Motorcycle":                      "\xee\xa4\x9b",
		"Mouse":                           "\xee\x8c\xa3",
		"Move_down":                       "\xee\xad\xa1",
		"Move_to_inbox":                   "\xee\x85\xa8",
		"Move_up":                         "\xee\xad\xa4",
		"Movie":                           "\xee\x80\xac",
		"Movie_creation":                  "\xee\x90\x84",
		"Movie_edit":                      "\xef\xa1\x80",
		"Movie_filter":                    "\xee\x90\xba",
		"Moving":                          "\xee\x94\x81",
		"Mp":                              "\xee\xa7\x83",
		"Multiline_chart":                 "\xee\x9b\x9f",
		"Multiple_stop":                   "\xef\x86\xb9",
		"Multitrack_audio":                "\xee\x86\xb8",
		"Museum":                          "\xee\xa8\xb6",
		"Music_note":                      "\xee\x90\x85",
		"Music_off":                       "\xee\x91\x80",
		"Music_video":                     "\xee\x81\xa3",
		"My_library_add":                  "\xee\x80\xae",
		"My_library_books":                "\xee\x80\xaf",
		"My_library_music":                "\xee\x80\xb0",
		"My_location":                     "\xee\x95\x9c",
		"Nat":                             "\xee\xbd\x9c",
		"Nature":                          "\xee\x90\x86",
		"Nature_people":                   "\xee\x90\x87",
		"Navigate_before":                 "\xee\x90\x88",
		"Navigate_next":                   "\xee\x90\x89",
		"Navigation":                      "\xee\x95\x9d",
		"Near_me":                         "\xee\x95\xa9",
		"Near_me_disabled":                "\xef\x87\xaf",
		"Nearby_error":                    "\xef\x80\xbb",
		"Nearby_off":                      "\xef\x80\xbc",
		"Nest_cam_wired_stand":            "\xee\xb0\x96",
		"Network_cell":                    "\xee\x86\xb9",
		"Network_check":                   "\xee\x99\x80",
		"Network_locked":                  "\xee\x98\x9a",
		"Network_ping":                    "\xee\xaf\x8a",
		"Network_wifi":                    "\xee\x86\xba",
		"Network_wifi_1_bar":              "\xee\xaf\xa4",
		"Network_wifi_2_bar":              "\xee\xaf\x96",
		"Network_wifi_3_bar":              "\xee\xaf\xa1",
		"New_label":                       "\xee\x98\x89",
		"New_releases":                    "\xee\x80\xb1",
		"Newspaper":                       "\xee\xae\x81",
		"Next_plan":                       "\xee\xbd\x9d",
		"Next_week":                       "\xee\x85\xaa",
		"Nfc":                             "\xee\x86\xbb",
		"Night_shelter":                   "\xef\x87\xb1",
		"Nightlife":                       "\xee\xa9\xa2",
		"Nightlight":                      "\xef\x80\xbd",
		"Nightlight_round":                "\xee\xbd\x9e",
		"Nights_stay":                     "\xee\xa9\x86",
		"No_accounts":                     "\xef\x80\xbe",
		"No_adult_content":                "\xef\xa3\xbe",
		"No_backpack":                     "\xef\x88\xb7",
		"No_cell":                         "\xef\x86\xa4",
		"No_crash":                        "\xee\xaf\xb0",
		"No_drinks":                       "\xef\x86\xa5",
		"No_encryption":                   "\xee\x99\x81",
		"No_encryption_gmailerrorred":     "\xef\x80\xbf",
		"No_flash":                        "\xef\x86\xa6",
		"No_food":                         "\xef\x86\xa7",
		"No_luggage":                      "\xef\x88\xbb",
		"No_meals":                        "\xef\x87\x96",
		"No_meals_ouline":                 "\xef\x88\xa9",
		"No_meeting_room":                 "\xee\xad\x8e",
		"No_photography":                  "\xef\x86\xa8",
		"No_sim":                          "\xee\x83\x8c",
		"No_stroller":                     "\xef\x86\xaf",
		"No_transfer":                     "\xef\x87\x95",
		"Noise_aware":                     "\xee\xaf\xac",
		"Noise_control_off":               "\xee\xaf\xb3",
		"Nordic_walking":                  "\xee\x94\x8e",
		"North":                           "\xef\x87\xa0",
		"North_east":                      "\xef\x87\xa1",
		"North_west":                      "\xef\x87\xa2",
		"Not_accessible":                  "\xef\x83\xbe",
		"Not_interested":                  "\xee\x80\xb3",
		"Not_listed_location":             "\xee\x95\xb5",
		"Not_started":                     "\xef\x83\x91",
		"Note":                            "\xee\x81\xaf",
		"Note_add":                        "\xee\xa2\x9c",
		"Note_alt":                        "\xef\x81\x80",
		"Notes":                           "\xee\x89\xac",
		"Notification_add":                "\xee\x8e\x99",
		"Notification_important":          "\xee\x80\x84",
		"Notifications":                   "\xee\x9f\xb4",
		"Notifications_active":            "\xee\x9f\xb7",
		"Notifications_none":              "\xee\x9f\xb5",
		"Notifications_off":               "\xee\x9f\xb6",
		"Notifications_on":                "\xee\x9f\xb7",
		"Notifications_paused":            "\xee\x9f\xb8",
		"Now_wallpaper":                   "\xee\x86\xbc",
		"Now_widgets":                     "\xee\x86\xbd",
		"Numbers":                         "\xee\xab\x87",
		"Offline_bolt":                    "\xee\xa4\xb2",
		"Offline_pin":                     "\xee\xa4\x8a",
		"Offline_share":                   "\xee\xa7\x85",
		"Oil_barrel":                      "\xee\xb0\x95",
		"On_device_training":              "\xee\xaf\xbd",
		"Ondemand_video":                  "\xee\x98\xba",
		"Online_prediction":               "\xef\x83\xab",
		"Opacity":                         "\xee\xa4\x9c",
		"Open_in_browser":                 "\xee\xa2\x9d",
		"Open_in_full":                    "\xef\x87\x8e",
		"Open_in_new":                     "\xee\xa2\x9e",
		"Open_in_new_off":                 "\xee\x93\xb6",
		"Open_with":                       "\xee\xa2\x9f",
		"Other_houses":                    "\xee\x96\x8c",
		"Outbond":                         "\xef\x88\xa8",
		"Outbound":                        "\xee\x87\x8a",
		"Outbox":                          "\xee\xbd\x9f",
		"Outdoor_grill":                   "\xee\xa9\x87",
		"Outgoing_mail":                   "\xef\x83\x92",
		"Outlet":                          "\xef\x87\x94",
		"Outlined_flag":                   "\xee\x85\xae",
		"Output":                          "\xee\xae\xbe",
		"Padding":                         "\xee\xa7\x88",
		"Pages":                           "\xee\x9f\xb9",
		"Pageview":                        "\xee\xa2\xa0",
		"Paid":                            "\xef\x81\x81",
		"Palette":                         "\xee\x90\x8a",
		"Pallet":                          "\xef\xa1\xaa",
		"Pan_tool":                        "\xee\xa4\xa5",
		"Pan_tool_alt":                    "\xee\xae\xb9",
		"Panorama":                        "\xee\x90\x8b",
		"Panorama_fish_eye":               "\xee\x90\x8c",
		"Panorama_fisheye":                "\xee\x90\x8c",
		"Panorama_horizontal":             "\xee\x90\x8d",
		"Panorama_horizontal_select":      "\xee\xbd\xa0",
		"Panorama_photosphere":            "\xee\xa7\x89",
		"Panorama_photosphere_select":     "\xee\xa7\x8a",
		"Panorama_vertical":               "\xee\x90\x8e",
		"Panorama_vertical_select":        "\xee\xbd\xa1",
		"Panorama_wide_angle":             "\xee\x90\x8f",
		"Panorama_wide_angle_select":      "\xee\xbd\xa2",
		"Paragliding":                     "\xee\x94\x8f",
		"Park":                            "\xee\xa9\xa3",
		"Party_mode":                      "\xee\x9f\xba",
		"Password":                        "\xef\x81\x82",
		"Pattern":                         "\xef\x81\x83",
		"Pause":                           "\xee\x80\xb4",
		"Pause_circle":                    "\xee\x86\xa2",
		"Pause_circle_filled":             "\xee\x80\xb5",
		"Pause_circle_outline":            "\xee\x80\xb6",
		"Pause_presentation":              "\xee\x83\xaa",
		"Payment":                         "\xee\xa2\xa1",
		"Payments":                        "\xee\xbd\xa3",
		"Paypal":                          "\xee\xaa\x8d",
		"Pedal_bike":                      "\xee\xac\xa9",
		"Pending":                         "\xee\xbd\xa4",
		"Pending_actions":                 "\xef\x86\xbb",
		"Pentagon":                        "\xee\xad\x90",
		"People":                          "\xee\x9f\xbb",
		"People_alt":                      "\xee\xa8\xa1",
		"People_outline":                  "\xee\x9f\xbc",
		"Percent":                         "\xee\xad\x98",
		"Perm_camera_mic":                 "\xee\xa2\xa2",
		"Perm_contact_cal":                "\xee\xa2\xa3",
		"Perm_contact_calendar":           "\xee\xa2\xa3",
		"Perm_data_setting":               "\xee\xa2\xa4",
		"Perm_device_info":                "\xee\xa2\xa5",
		"Perm_device_information":         "\xee\xa2\xa5",
		"Perm_identity":                   "\xee\xa2\xa6",
		"Perm_media":                      "\xee\xa2\xa7",
		"Perm_phone_msg":                  "\xee\xa2\xa8",
		"Perm_scan_wifi":                  "\xee\xa2\xa9",
		"Person":                          "\xee\x9f\xbd",
		"Person_2":                        "\xef\xa3\xa4",
		"Person_3":                        "\xef\xa3\xa5",
		"Person_4":                        "\xef\xa3\xa6",
		"Person_add":                      "\xee\x9f\xbe",
		"Person_add_alt":                  "\xee\xa9\x8d",
		"Person_add_alt_1":                "\xee\xbd\xa5",
		"Person_add_disabled":             "\xee\xa7\x8b",
		"Person_off":                      "\xee\x94\x90",
		"Person_outline":                  "\xee\x9f\xbf",
		"Person_pin":                      "\xee\x95\x9a",
		"Person_pin_circle":               "\xee\x95\xaa",
		"Person_remove":                   "\xee\xbd\xa6",
		"Person_remove_alt_1":             "\xee\xbd\xa7",
		"Person_search":                   "\xef\x84\x86",
		"Personal_injury":                 "\xee\x9b\x9a",
		"Personal_video":                  "\xee\x98\xbb",
		"Pest_control":                    "\xef\x83\xba",
		"Pest_control_rodent":             "\xef\x83\xbd",
		"Pets":                            "\xee\xa4\x9d",
		"Phishing":                        "\xee\xab\x97",
		"Phone":                           "\xee\x83\x8d",
		"Phone_android":                   "\xee\x8c\xa4",
		"Phone_bluetooth_speaker":         "\xee\x98\x9b",
		"Phone_callback":                  "\xee\x99\x89",
		"Phone_disabled":                  "\xee\xa7\x8c",
		"Phone_enabled":                   "\xee\xa7\x8d",
		"Phone_forwarded":                 "\xee\x98\x9c",
		"Phone_in_talk":                   "\xee\x98\x9d",
		"Phone_iphone":                    "\xee\x8c\xa5",
		"Phone_locked":                    "\xee\x98\x9e",
		"Phone_missed":                    "\xee\x98\x9f",
		"Phone_paused":                    "\xee\x98\xa0",
		"Phonelink":                       "\xee\x8c\xa6",
		"Phonelink_erase":                 "\xee\x83\x9b",
		"Phonelink_lock":                  "\xee\x83\x9c",
		"Phonelink_off":                   "\xee\x8c\xa7",
		"Phonelink_ring":                  "\xee\x83\x9d",
		"Phonelink_setup":                 "\xee\x83\x9e",
		"Photo":                           "\xee\x90\x90",
		"Photo_album":                     "\xee\x90\x91",
		"Photo_camera":                    "\xee\x90\x92",
		"Photo_camera_back":               "\xee\xbd\xa8",
		"Photo_camera_front":              "\xee\xbd\xa9",
		"Photo_filter":                    "\xee\x90\xbb",
		"Photo_library":                   "\xee\x90\x93",
		"Photo_size_select_actual":        "\xee\x90\xb2",
		"Photo_size_select_large":         "\xee\x90\xb3",
		"Photo_size_select_small":         "\xee\x90\xb4",
		"Php":                             "\xee\xae\x8f",
		"Piano":                           "\xee\x94\xa1",
		"Piano_off":                       "\xee\x94\xa0",
		"Picture_as_pdf":                  "\xee\x90\x95",
		"Picture_in_picture":              "\xee\xa2\xaa",
		"Picture_in_picture_alt":          "\xee\xa4\x91",
		"Pie_chart":                       "\xee\x9b\x84",
		"Pie_chart_outline":               "\xef\x81\x84",
		"Pie_chart_outlined":              "\xee\x9b\x85",
		"Pin":                             "\xef\x81\x85",
		"Pin_drop":                        "\xee\x95\x9e",
		"Pin_end":                         "\xee\x9d\xa7",
		"Pin_invoke":                      "\xee\x9d\xa3",
		"Pinch":                           "\xee\xac\xb8",
		"Pivot_table_chart":               "\xee\xa7\x8e",
		"Pix":                             "\xee\xaa\xa3",
		"Place":                           "\xee\x95\x9f",
		"Plagiarism":                      "\xee\xa9\x9a",
		"Play_arrow":                      "\xee\x80\xb7",
		"Play_circle":                     "\xee\x87\x84",
		"Play_circle_fill":                "\xee\x80\xb8",
		"Play_circle_filled":              "\xee\x80\xb8",
		"Play_circle_outline":             "\xee\x80\xb9",
		"Play_disabled":                   "\xee\xbd\xaa",
		"Play_for_work":                   "\xee\xa4\x86",
		"Play_lesson":                     "\xef\x81\x87",
		"Playlist_add":                    "\xee\x80\xbb",
		"Playlist_add_check":              "\xee\x81\xa5",
		"Playlist_add_check_circle":       "\xee\x9f\xa6",
		"Playlist_add_circle":             "\xee\x9f\xa5",
		"Playlist_play":                   "\xee\x81\x9f",
		"Playlist_remove":                 "\xee\xae\x80",
		"Plumbing":                        "\xef\x84\x87",
		"Plus_one":                        "\xee\xa0\x80",
		"Podcasts":                        "\xef\x81\x88",
		"Point_of_sale":                   "\xef\x85\xbe",
		"Policy":                          "\xee\xa8\x97",
		"Poll":                            "\xee\xa0\x81",
		"Polyline":                        "\xee\xae\xbb",
		"Polymer":                         "\xee\xa2\xab",
		"Pool":                            "\xee\xad\x88",
		"Portable_wifi_off":               "\xee\x83\x8e",
		"Portrait":                        "\xee\x90\x96",
		"Post_add":                        "\xee\xa8\xa0",
		"Power":                           "\xee\x98\xbc",
		"Power_input":                     "\xee\x8c\xb6",
		"Power_off":                       "\xee\x99\x86",
		"Power_settings_new":              "\xee\xa2\xac",
		"Precision_manufacturing":         "\xef\x81\x89",
		"Pregnant_woman":                  "\xee\xa4\x9e",
		"Present_to_all":                  "\xee\x83\x9f",
		"Preview":                         "\xef\x87\x85",
		"Price_change":                    "\xef\x81\x8a",
		"Price_check":                     "\xef\x81\x8b",
		"Print":                           "\xee\xa2\xad",
		"Print_disabled":                  "\xee\xa7\x8f",
		"Priority_high":                   "\xee\x99\x85",
		"Privacy_tip":                     "\xef\x83\x9c",
		"Private_connectivity":            "\xee\x9d\x84",
		"Production_quantity_limits":      "\xee\x87\x91",
		"Propane":                         "\xee\xb0\x94",
		"Propane_tank":                    "\xee\xb0\x93",
		"Psychology":                      "\xee\xa9\x8a",
		"Psychology_alt":                  "\xef\xa3\xaa",
		"Public":                          "\xee\xa0\x8b",
		"Public_off":                      "\xef\x87\x8a",
		"Publish":                         "\xee\x89\x95",
		"Published_with_changes":          "\xef\x88\xb2",
		"Punch_clock":                     "\xee\xaa\xa8",
		"Push_pin":                        "\xef\x84\x8d",
		"Qr_code":                         "\xee\xbd\xab",
		"Qr_code_2":                       "\xee\x80\x8a",
		"Qr_code_scanner":                 "\xef\x88\x86",
		"Query_builder":                   "\xee\xa2\xae",
		"Query_stats":                     "\xee\x93\xbc",
		"Question_answer":                 "\xee\xa2\xaf",
		"Question_mark":                   "\xee\xae\x8b",
		"Queue":                           "\xee\x80\xbc",
		"Queue_music":                     "\xee\x80\xbd",
		"Queue_play_next":                 "\xee\x81\xa6",
		"Quick_contacts_dialer":           "\xee\x83\x8f",
		"Quick_contacts_mail":             "\xee\x83\x90",
		"Quickreply":                      "\xee\xbd\xac",
		"Quiz":                            "\xef\x81\x8c",
		"Quora":                           "\xee\xaa\x98",
		"R_mobiledata":                    "\xef\x81\x8d",
		"Radar":                           "\xef\x81\x8e",
		"Radio":                           "\xee\x80\xbe",
		"Radio_button_checked":            "\xee\xa0\xb7",
		"Radio_button_off":                "\xee\xa0\xb6",
		"Radio_button_on":                 "\xee\xa0\xb7",
		"Radio_button_unchecked":          "\xee\xa0\xb6",
		"Railway_alert":                   "\xee\xa7\x91",
		"Ramen_dining":                    "\xee\xa9\xa4",
		"Ramp_left":                       "\xee\xae\x9c",
		"Ramp_right":                      "\xee\xae\x96",
		"Rate_review":                     "\xee\x95\xa0",
		"Raw_off":                         "\xef\x81\x8f",
		"Raw_on":                          "\xef\x81\x90",
		"Read_more":                       "\xee\xbd\xad",
		"Real_estate_agent":               "\xee\x9c\xba",
		"Rebase_edit":                     "\xef\xa1\x86",
		"Receipt":                         "\xee\xa2\xb0",
		"Receipt_long":                    "\xee\xbd\xae",
		"Recent_actors":                   "\xee\x80\xbf",
		"Recommend":                       "\xee\xa7\x92",
		"Record_voice_over":               "\xee\xa4\x9f",
		"Rectangle":                       "\xee\xad\x94",
		"Recycling":                       "\xee\x9d\xa0",
		"Reddit":                          "\xee\xaa\xa0",
		"Redeem":                          "\xee\xa2\xb1",
		"Redo":                            "\xee\x85\x9a",
		"Reduce_capacity":                 "\xef\x88\x9c",
		"Refresh":                         "\xee\x97\x95",
		"Remember_me":                     "\xef\x81\x91",
		"Remove":                          "\xee\x85\x9b",
		"Remove_circle":                   "\xee\x85\x9c",
		"Remove_circle_outline":           "\xee\x85\x9d",
		"Remove_done":                     "\xee\xa7\x93",
		"Remove_from_queue":               "\xee\x81\xa7",
		"Remove_moderator":                "\xee\xa7\x94",
		"Remove_red_eye":                  "\xee\x90\x97",
		"Remove_road":                     "\xee\xaf\xbc",
		"Remove_shopping_cart":            "\xee\xa4\xa8",
		"Reorder":                         "\xee\xa3\xbe",
		"Repartition":                     "\xef\xa3\xa8",
		"Repeat":                          "\xee\x81\x80",
		"Repeat_on":                       "\xee\xa7\x96",
		"Repeat_one":                      "\xee\x81\x81",
		"Repeat_one_on":                   "\xee\xa7\x97",
		"Replay":                          "\xee\x81\x82",
		"Replay_10":                       "\xee\x81\x99",
		"Replay_30":                       "\xee\x81\x9a",
		"Replay_5":                        "\xee\x81\x9b",
		"Replay_circle_filled":            "\xee\xa7\x98",
		"Reply":                           "\xee\x85\x9e",
		"Reply_all":                       "\xee\x85\x9f",
		"Report":                          "\xee\x85\xa0",
		"Report_gmailerrorred":            "\xef\x81\x92",
		"Report_off":                      "\xee\x85\xb0",
		"Report_problem":                  "\xee\xa2\xb2",
		"Request_page":                    "\xef\x88\xac",
		"Request_quote":                   "\xef\x86\xb6",
		"Reset_tv":                        "\xee\xa7\x99",
		"Restart_alt":                     "\xef\x81\x93",
		"Restaurant":                      "\xee\x95\xac",
		"Restaurant_menu":                 "\xee\x95\xa1",
		"Restore":                         "\xee\xa2\xb3",
		"Restore_from_trash":              "\xee\xa4\xb8",
		"Restore_page":                    "\xee\xa4\xa9",
		"Reviews":                         "\xef\x81\x94",
		"Rice_bowl":                       "\xef\x87\xb5",
		"Ring_volume":                     "\xee\x83\x91",
		"Rocket":                          "\xee\xae\xa5",
		"Rocket_launch":                   "\xee\xae\x9b",
		"Roller_shades":                   "\xee\xb0\x92",
		"Roller_shades_closed":            "\xee\xb0\x91",
		"Roller_skating":                  "\xee\xaf\x8d",
		"Roofing":                         "\xef\x88\x81",
		"Room":                            "\xee\xa2\xb4",
		"Room_preferences":                "\xef\x86\xb8",
		"Room_service":                    "\xee\xad\x89",
		"Rotate_90_degrees_ccw":           "\xee\x90\x98",
		"Rotate_90_degrees_cw":            "\xee\xaa\xab",
		"Rotate_left":                     "\xee\x90\x99",
		"Rotate_right":                    "\xee\x90\x9a",
		"Roundabout_left":                 "\xee\xae\x99",
		"Roundabout_right":                "\xee\xae\xa3",
		"Rounded_corner":                  "\xee\xa4\xa0",
		"Route":                           "\xee\xab\x8d",
		"Router":                          "\xee\x8c\xa8",
		"Rowing":                          "\xee\xa4\xa1",
		"Rss_feed":                        "\xee\x83\xa5",
		"Rsvp":                            "\xef\x81\x95",
		"Rtt":                             "\xee\xa6\xad",
		"Rule":                            "\xef\x87\x82",
		"Rule_folder":                     "\xef\x87\x89",
		"Run_circle":                      "\xee\xbd\xaf",
		"Running_with_errors":             "\xee\x94\x9d",
		"Rv_hookup":                       "\xee\x99\x82",
		"Safety_check":                    "\xee\xaf\xaf",
		"Safety_divider":                  "\xee\x87\x8c",
		"Sailing":                         "\xee\x94\x82",
		"Sanitizer":                       "\xef\x88\x9d",
		"Satellite":                       "\xee\x95\xa2",
		"Satellite_alt":                   "\xee\xac\xba",
		"Save":                            "\xee\x85\xa1",
		"Save_alt":                        "\xee\x85\xb1",
		"Save_as":                         "\xee\xad\xa0",
		"Saved_search":                    "\xee\xa8\x91",
		"Savings":                         "\xee\x8b\xab",
		"Scale":                           "\xee\xad\x9f",
		"Scanner":                         "\xee\x8c\xa9",
		"Scatter_plot":                    "\xee\x89\xa8",
		"Schedule":                        "\xee\xa2\xb5",
		"Schedule_send":                   "\xee\xa8\x8a",
		"Schema":                          "\xee\x93\xbd",
		"School":                          "\xee\xa0\x8c",
		"Science":                         "\xee\xa9\x8b",
		"Score":                           "\xee\x89\xa9",
		"Scoreboard":                      "\xee\xaf\x90",
		"Screen_lock_landscape":           "\xee\x86\xbe",
		"Screen_lock_portrait":            "\xee\x86\xbf",
		"Screen_lock_rotation":            "\xee\x87\x80",
		"Screen_rotation":                 "\xee\x87\x81",
		"Screen_rotation_alt":             "\xee\xaf\xae",
		"Screen_search_desktop":           "\xee\xbd\xb0",
		"Screen_share":                    "\xee\x83\xa2",
		"Screenshot":                      "\xef\x81\x96",
		"Screenshot_monitor":              "\xee\xb0\x88",
		"Scuba_diving":                    "\xee\xaf\x8e",
		"Sd":                              "\xee\xa7\x9d",
		"Sd_card":                         "\xee\x98\xa3",
		"Sd_card_alert":                   "\xef\x81\x97",
		"Sd_storage":                      "\xee\x87\x82",
		"Search":                          "\xee\xa2\xb6",
		"Search_off":                      "\xee\xa9\xb6",
		"Security":                        "\xee\x8c\xaa",
		"Security_update":                 "\xef\x81\x98",
		"Security_update_good":            "\xef\x81\x99",
		"Security_update_warning":         "\xef\x81\x9a",
		"Segment":                         "\xee\xa5\x8b",
		"Select_all":                      "\xee\x85\xa2",
		"Self_improvement":                "\xee\xa9\xb8",
		"Sell":                            "\xef\x81\x9b",
		"Send":                            "\xee\x85\xa3",
		"Send_and_archive":                "\xee\xa8\x8c",
		"Send_time_extension":             "\xee\xab\x9b",
		"Send_to_mobile":                  "\xef\x81\x9c",
		"Sensor_door":                     "\xef\x86\xb5",
		"Sensor_occupied":                 "\xee\xb0\x90",
		"Sensor_window":                   "\xef\x86\xb4",
		"Sensors":                         "\xee\x94\x9e",
		"Sensors_off":                     "\xee\x94\x9f",
		"Sentiment_dissatisfied":          "\xee\xa0\x91",
		"Sentiment_neutral":               "\xee\xa0\x92",
		"Sentiment_satisfied":             "\xee\xa0\x93",
		"Sentiment_satisfied_alt":         "\xee\x83\xad",
		"Sentiment_very_dissatisfied":     "\xee\xa0\x94",
		"Sentiment_very_satisfied":        "\xee\xa0\x95",
		"Set_meal":                        "\xef\x87\xaa",
		"Settings":                        "\xee\xa2\xb8",
		"Settings_accessibility":          "\xef\x81\x9d",
		"Settings_applications":           "\xee\xa2\xb9",
		"Settings_backup_restore":         "\xee\xa2\xba",
		"Settings_bluetooth":              "\xee\xa2\xbb",
		"Settings_brightness":             "\xee\xa2\xbd",
		"Settings_cell":                   "\xee\xa2\xbc",
		"Settings_display":                "\xee\xa2\xbd",
		"Settings_ethernet":               "\xee\xa2\xbe",
		"Settings_input_antenna":          "\xee\xa2\xbf",
		"Settings_input_component":        "\xee\xa3\x80",
		"Settings_input_composite":        "\xee\xa3\x81",
		"Settings_input_hdmi":             "\xee\xa3\x82",
		"Settings_input_svideo":           "\xee\xa3\x83",
		"Settings_overscan":               "\xee\xa3\x84",
		"Settings_phone":                  "\xee\xa3\x85",
		"Settings_power":                  "\xee\xa3\x86",
		"Settings_remote":                 "\xee\xa3\x87",
		"Settings_suggest":                "\xef\x81\x9e",
		"Settings_system_daydream":        "\xee\x87\x83",
		"Settings_voice":                  "\xee\xa3\x88",
		"Severe_cold":                     "\xee\xaf\x93",
		"Shape_line":                      "\xef\xa3\x93",
		"Share":                           "\xee\xa0\x8d",
		"Share_arrival_time":              "\xee\x94\xa4",
		"Share_location":                  "\xef\x81\x9f",
		"Shelves":                         "\xef\xa1\xae",
		"Shield":                          "\xee\xa7\xa0",
		"Shield_moon":                     "\xee\xaa\xa9",
		"Shop":                            "\xee\xa3\x89",
		"Shop_2":                          "\xee\x86\x9e",
		"Shop_two":                        "\xee\xa3\x8a",
		"Shopify":                         "\xee\xaa\x9d",
		"Shopping_bag":                    "\xef\x87\x8c",
		"Shopping_basket":                 "\xee\xa3\x8b",
		"Shopping_cart":                   "\xee\xa3\x8c",
		"Shopping_cart_checkout":          "\xee\xae\x88",
		"Short_text":                      "\xee\x89\xa1",
		"Shortcut":                        "\xef\x81\xa0",
		"Show_chart":                      "\xee\x9b\xa1",
		"Shower":                          "\xef\x81\xa1",
		"Shuffle":                         "\xee\x81\x83",
		"Shuffle_on":                      "\xee\xa7\xa1",
		"Shutter_speed":                   "\xee\x90\xbd",
		"Sick":                            "\xef\x88\xa0",
		"Sign_language":                   "\xee\xaf\xa5",
		"Signal_cellular_0_bar":           "\xef\x82\xa8",
		"Signal_cellular_4_bar":           "\xee\x87\x88",
		"Signal_cellular_alt":             "\xee\x88\x82",
		"Signal_cellular_alt_1_bar":       "\xee\xaf\x9f",
		"Signal_cellular_alt_2_bar":       "\xee\xaf\xa3",
		"Signal_cellular_connected_no_internet_0_bar":   "\xef\x82\xac",
		"Signal_cellular_connected_no_internet_4_bar":   "\xee\x87\x8d",
		"Signal_cellular_no_sim":                        "\xee\x87\x8e",
		"Signal_cellular_nodata":                        "\xef\x81\xa2",
		"Signal_cellular_null":                          "\xee\x87\x8f",
		"Signal_cellular_off":                           "\xee\x87\x90",
		"Signal_wifi_0_bar":                             "\xef\x82\xb0",
		"Signal_wifi_4_bar":                             "\xee\x87\x98",
		"Signal_wifi_4_bar_lock":                        "\xee\x87\x99",
		"Signal_wifi_bad":                               "\xef\x81\xa3",
		"Signal_wifi_connected_no_internet_4":           "\xef\x81\xa4",
		"Signal_wifi_off":                               "\xee\x87\x9a",
		"Signal_wifi_statusbar_4_bar":                   "\xef\x81\xa5",
		"Signal_wifi_statusbar_connected_no_internet_4": "\xef\x81\xa6",
		"Signal_wifi_statusbar_null":                    "\xef\x81\xa7",
		"Signpost":                                      "\xee\xae\x91",
		"Sim_card":                                      "\xee\x8c\xab",
		"Sim_card_alert":                                "\xee\x98\xa4",
		"Sim_card_download":                             "\xef\x81\xa8",
		"Single_bed":                                    "\xee\xa9\x88",
		"Sip":                                           "\xef\x81\xa9",
		"Skateboarding":                                 "\xee\x94\x91",
		"Skip_next":                                     "\xee\x81\x84",
		"Skip_previous":                                 "\xee\x81\x85",
		"Sledding":                                      "\xee\x94\x92",
		"Slideshow":                                     "\xee\x90\x9b",
		"Slow_motion_video":                             "\xee\x81\xa8",
		"Smart_button":                                  "\xef\x87\x81",
		"Smart_display":                                 "\xef\x81\xaa",
		"Smart_screen":                                  "\xef\x81\xab",
		"Smart_toy":                                     "\xef\x81\xac",
		"Smartphone":                                    "\xee\x8c\xac",
		"Smoke_free":                                    "\xee\xad\x8a",
		"Smoking_rooms":                                 "\xee\xad\x8b",
		"Sms":                                           "\xee\x98\xa5",
		"Sms_failed":                                    "\xee\x98\xa6",
		"Snapchat":                                      "\xee\xa9\xae",
		"Snippet_folder":                                "\xef\x87\x87",
		"Snooze":                                        "\xee\x81\x86",
		"Snowboarding":                                  "\xee\x94\x93",
		"Snowing":                                       "\xee\xa0\x8f",
		"Snowmobile":                                    "\xee\x94\x83",
		"Snowshoeing":                                   "\xee\x94\x94",
		"Soap":                                          "\xef\x86\xb2",
		"Social_distance":                               "\xee\x87\x8b",
		"Solar_power":                                   "\xee\xb0\x8f",
		"Sort":                                          "\xee\x85\xa4",
		"Sort_by_alpha":                                 "\xee\x81\x93",
		"Sos":                                           "\xee\xaf\xb7",
		"Soup_kitchen":                                  "\xee\x9f\x93",
		"Source":                                        "\xef\x87\x84",
		"South":                                         "\xef\x87\xa3",
		"South_america":                                 "\xee\x9f\xa4",
		"South_east":                                    "\xef\x87\xa4",
		"South_west":                                    "\xef\x87\xa5",
		"Spa":                                           "\xee\xad\x8c",
		"Space_bar":                                     "\xee\x89\x96",
		"Space_dashboard":                               "\xee\x99\xab",
		"Spatial_audio":                                 "\xee\xaf\xab",
		"Spatial_audio_off":                             "\xee\xaf\xa8",
		"Spatial_tracking":                              "\xee\xaf\xaa",
		"Speaker":                                       "\xee\x8c\xad",
		"Speaker_group":                                 "\xee\x8c\xae",
		"Speaker_notes":                                 "\xee\xa3\x8d",
		"Speaker_notes_off":                             "\xee\xa4\xaa",
		"Speaker_phone":                                 "\xee\x83\x92",
		"Speed":                                         "\xee\xa7\xa4",
		"Spellcheck":                                    "\xee\xa3\x8e",
		"Splitscreen":                                   "\xef\x81\xad",
		"Spoke":                                         "\xee\xa6\xa7",
		"Sports":                                        "\xee\xa8\xb0",
		"Sports_bar":                                    "\xef\x87\xb3",
		"Sports_baseball":                               "\xee\xa9\x91",
		"Sports_basketball":                             "\xee\xa8\xa6",
		"Sports_cricket":                                "\xee\xa8\xa7",
		"Sports_esports":                                "\xee\xa8\xa8",
		"Sports_football":                               "\xee\xa8\xa9",
		"Sports_golf":                                   "\xee\xa8\xaa",
		"Sports_gymnastics":                             "\xee\xaf\x84",
		"Sports_handball":                               "\xee\xa8\xb3",
		"Sports_hockey":                                 "\xee\xa8\xab",
		"Sports_kabaddi":                                "\xee\xa8\xb4",
		"Sports_martial_arts":                           "\xee\xab\xa9",
		"Sports_mma":                                    "\xee\xa8\xac",
		"Sports_motorsports":                            "\xee\xa8\xad",
		"Sports_rugby":                                  "\xee\xa8\xae",
		"Sports_score":                                  "\xef\x81\xae",
		"Sports_soccer":                                 "\xee\xa8\xaf",
		"Sports_tennis":                                 "\xee\xa8\xb2",
		"Sports_volleyball":                             "\xee\xa8\xb1",
		"Square":                                        "\xee\xac\xb6",
		"Square_foot":                                   "\xee\xa9\x89",
		"Ssid_chart":                                    "\xee\xad\xa6",
		"Stacked_bar_chart":                             "\xee\xa7\xa6",
		"Stacked_line_chart":                            "\xef\x88\xab",
		"Stadium":                                       "\xee\xae\x90",
		"Stairs":                                        "\xef\x86\xa9",
		"Star":                                          "\xee\xa0\xb8",
		"Star_border":                                   "\xee\xa0\xba",
		"Star_border_purple500":                         "\xef\x82\x99",
		"Star_half":                                     "\xee\xa0\xb9",
		"Star_outline":                                  "\xef\x81\xaf",
		"Star_purple500":                                "\xef\x82\x9a",
		"Star_rate":                                     "\xef\x83\xac",
		"Stars":                                         "\xee\xa3\x90",
		"Start":                                         "\xee\x82\x89",
		"Stay_current_landscape":                        "\xee\x83\x93",
		"Stay_current_portrait":                         "\xee\x83\x94",
		"Stay_primary_landscape":                        "\xee\x83\x95",
		"Stay_primary_portrait":                         "\xee\x83\x96",
		"Sticky_note_2":                                 "\xef\x87\xbc",
		"Stop":                                          "\xee\x81\x87",
		"Stop_circle":                                   "\xee\xbd\xb1",
		"Stop_screen_share":                             "\xee\x83\xa3",
		"Storage":                                       "\xee\x87\x9b",
		"Store":                                         "\xee\xa3\x91",
		"Store_mall_directory":                          "\xee\x95\xa3",
		"Storefront":                                    "\xee\xa8\x92",
		"Storm":                                         "\xef\x81\xb0",
		"Straight":                                      "\xee\xae\x95",
		"Straighten":                                    "\xee\x90\x9c",
		"Stream":                                        "\xee\xa7\xa9",
		"Streetview":                                    "\xee\x95\xae",
		"Strikethrough_s":                               "\xee\x89\x97",
		"Stroller":                                      "\xef\x86\xae",
		"Style":                                         "\xee\x90\x9d",
		"Subdirectory_arrow_left":                       "\xee\x97\x99",
		"Subdirectory_arrow_right":                      "\xee\x97\x9a",
		"Subject":                                       "\xee\xa3\x92",
		"Subscript":                                     "\xef\x84\x91",
		"Subscriptions":                                 "\xee\x81\xa4",
		"Subtitles":                                     "\xee\x81\x88",
		"Subtitles_off":                                 "\xee\xbd\xb2",
		"Subway":                                        "\xee\x95\xaf",
		"Summarize":                                     "\xef\x81\xb1",
		"Sunny":                                         "\xee\xa0\x9a",
		"Sunny_snowing":                                 "\xee\xa0\x99",
		"Superscript":                                   "\xef\x84\x92",
		"Supervised_user_circle":                        "\xee\xa4\xb9",
		"Supervisor_account":                            "\xee\xa3\x93",
		"Support":                                       "\xee\xbd\xb3",
		"Support_agent":                                 "\xef\x83\xa2",
		"Surfing":                                       "\xee\x94\x95",
		"Surround_sound":                                "\xee\x81\x89",
		"Swap_calls":                                    "\xee\x83\x97",
		"Swap_horiz":                                    "\xee\xa3\x94",
		"Swap_horizontal_circle":                        "\xee\xa4\xb3",
		"Swap_vert":                                     "\xee\xa3\x95",
		"Swap_vert_circle":                              "\xee\xa3\x96",
		"Swap_vertical_circle":                          "\xee\xa3\x96",
		"Swipe":                                         "\xee\xa7\xac",
		"Swipe_down":                                    "\xee\xad\x93",
		"Swipe_down_alt":                                "\xee\xac\xb0",
		"Swipe_left":                                    "\xee\xad\x99",
		"Swipe_left_alt":                                "\xee\xac\xb3",
		"Swipe_right":                                   "\xee\xad\x92",
		"Swipe_right_alt":                               "\xee\xad\x96",
		"Swipe_up":                                      "\xee\xac\xae",
		"Swipe_up_alt":                                  "\xee\xac\xb5",
		"Swipe_vertical":                                "\xee\xad\x91",
		"Switch_access_shortcut":                        "\xee\x9f\xa1",
		"Switch_access_shortcut_add":                    "\xee\x9f\xa2",
		"Switch_account":                                "\xee\xa7\xad",
		"Switch_camera":                                 "\xee\x90\x9e",
		"Switch_left":                                   "\xef\x87\x91",
		"Switch_right":                                  "\xef\x87\x92",
		"Switch_video":                                  "\xee\x90\x9f",
		"Synagogue":                                     "\xee\xaa\xb0",
		"Sync":                                          "\xee\x98\xa7",
		"Sync_alt":                                      "\xee\xa8\x98",
		"Sync_disabled":                                 "\xee\x98\xa8",
		"Sync_lock":                                     "\xee\xab\xae",
		"Sync_problem":                                  "\xee\x98\xa9",
		"System_security_update":                        "\xef\x81\xb2",
		"System_security_update_good":                   "\xef\x81\xb3",
		"System_security_update_warning":                "\xef\x81\xb4",
		"System_update":                                 "\xee\x98\xaa",
		"System_update_alt":                             "\xee\xa3\x97",
		"System_update_tv":                              "\xee\xa3\x97",
		"Tab":                                           "\xee\xa3\x98",
		"Tab_unselected":                                "\xee\xa3\x99",
		"Table_bar":                                     "\xee\xab\x92",
		"Table_chart":                                   "\xee\x89\xa5",
		"Table_restaurant":                              "\xee\xab\x86",
		"Table_rows":                                    "\xef\x84\x81",
		"Table_view":                                    "\xef\x86\xbe",
		"Tablet":                                        "\xee\x8c\xaf",
		"Tablet_android":                                "\xee\x8c\xb0",
		"Tablet_mac":                                    "\xee\x8c\xb1",
		"Tag":                                           "\xee\xa7\xaf",
		"Tag_faces":                                     "\xee\x90\xa0",
		"Takeout_dining":                                "\xee\xa9\xb4",
		"Tap_and_play":                                  "\xee\x98\xab",
		"Tapas":                                         "\xef\x87\xa9",
		"Task":                                          "\xef\x81\xb5",
		"Task_alt":                                      "\xee\x8b\xa6",
		"Taxi_alert":                                    "\xee\xbd\xb4",
		"Telegram":                                      "\xee\xa9\xab",
		"Temple_buddhist":                               "\xee\xaa\xb3",
		"Temple_hindu":                                  "\xee\xaa\xaf",
		"Terminal":                                      "\xee\xae\x8e",
		"Terrain":                                       "\xee\x95\xa4",
		"Text_decrease":                                 "\xee\xab\x9d",
		"Text_fields":                                   "\xee\x89\xa2",
		"Text_format":                                   "\xee\x85\xa5",
		"Text_increase":                                 "\xee\xab\xa2",
		"Text_rotate_up":                                "\xee\xa4\xba",
		"Text_rotate_vertical":                          "\xee\xa4\xbb",
		"Text_rotation_angledown":                       "\xee\xa4\xbc",
		"Text_rotation_angleup":                         "\xee\xa4\xbd",
		"Text_rotation_down":                            "\xee\xa4\xbe",
		"Text_rotation_none":                            "\xee\xa4\xbf",
		"Text_snippet":                                  "\xef\x87\x86",
		"Textsms":                                       "\xee\x83\x98",
		"Texture":                                       "\xee\x90\xa1",
		"Theater_comedy":                                "\xee\xa9\xa6",
		"Theaters":                                      "\xee\xa3\x9a",
		"Thermostat":                                    "\xef\x81\xb6",
		"Thermostat_auto":                               "\xef\x81\xb7",
		"Thumb_down":                                    "\xee\xa3\x9b",
		"Thumb_down_alt":                                "\xee\xa0\x96",
		"Thumb_down_off_alt":                            "\xee\xa7\xb2",
		"Thumb_up":                                      "\xee\xa3\x9c",
		"Thumb_up_alt":                                  "\xee\xa0\x97",
		"Thumb_up_off_alt":                              "\xee\xa7\xb3",
		"Thumbs_up_down":                                "\xee\xa3\x9d",
		"Thunderstorm":                                  "\xee\xaf\x9b",
		"Tiktok":                                        "\xee\xa9\xbe",
		"Time_to_leave":                                 "\xee\x98\xac",
		"Timelapse":                                     "\xee\x90\xa2",
		"Timeline":                                      "\xee\xa4\xa2",
		"Timer":                                         "\xee\x90\xa5",
		"Timer_10":                                      "\xee\x90\xa3",
		"Timer_10_select":                               "\xef\x81\xba",
		"Timer_3":                                       "\xee\x90\xa4",
		"Timer_3_select":                                "\xef\x81\xbb",
		"Timer_off":                                     "\xee\x90\xa6",
		"Tips_and_updates":                              "\xee\x9e\x9a",
		"Tire_repair":                                   "\xee\xaf\x88",
		"Title":                                         "\xee\x89\xa4",
		"Toc":                                           "\xee\xa3\x9e",
		"Today":                                         "\xee\xa3\x9f",
		"Toggle_off":                                    "\xee\xa7\xb5",
		"Toggle_on":                                     "\xee\xa7\xb6",
		"Token":                                         "\xee\xa8\xa5",
		"Toll":                                          "\xee\xa3\xa0",
		"Tonality":                                      "\xee\x90\xa7",
		"Topic":                                         "\xef\x87\x88",
		"Tornado":                                       "\xee\x86\x99",
		"Touch_app":                                     "\xee\xa4\x93",
		"Tour":                                          "\xee\xbd\xb5",
		"Toys":                                          "\xee\x8c\xb2",
		"Track_changes":                                 "\xee\xa3\xa1",
		"Traffic":                                       "\xee\x95\xa5",
		"Train":                                         "\xee\x95\xb0",
		"Tram":                                          "\xee\x95\xb1",
		"Transcribe":                                    "\xef\xa3\xac",
		"Transfer_within_a_station":                     "\xee\x95\xb2",
		"Transform":                                     "\xee\x90\xa8",
		"Transgender":                                   "\xee\x96\x8d",
		"Transit_enterexit":                             "\xee\x95\xb9",
		"Translate":                                     "\xee\xa3\xa2",
		"Travel_explore":                                "\xee\x8b\x9b",
		"Trending_down":                                 "\xee\xa3\xa3",
		"Trending_flat":                                 "\xee\xa3\xa4",
		"Trending_neutral":                              "\xee\xa3\xa4",
		"Trending_up":                                   "\xee\xa3\xa5",
		"Trip_origin":                                   "\xee\x95\xbb",
		"Trolley":                                       "\xef\xa1\xab",
		"Troubleshoot":                                  "\xee\x87\x92",
		"Try":                                           "\xef\x81\xbc",
		"Tsunami":                                       "\xee\xaf\x98",
		"Tty":                                           "\xef\x86\xaa",
		"Tune":                                          "\xee\x90\xa9",
		"Tungsten":                                      "\xef\x81\xbd",
		"Turn_left":                                     "\xee\xae\xa6",
		"Turn_right":                                    "\xee\xae\xab",
		"Turn_sharp_left":                               "\xee\xae\xa7",
		"Turn_sharp_right":                              "\xee\xae\xaa",
		"Turn_slight_left":                              "\xee\xae\xa4",
		"Turn_slight_right":                             "\xee\xae\x9a",
		"Turned_in":                                     "\xee\xa3\xa6",
		"Turned_in_not":                                 "\xee\xa3\xa7",
		"Tv":                                            "\xee\x8c\xb3",
		"Tv_off":                                        "\xee\x99\x87",
		"Two_wheeler":                                   "\xee\xa7\xb9",
		"Type_specimen":                                 "\xef\xa3\xb0",
		"U_turn_left":                                   "\xee\xae\xa1",
		"U_turn_right":                                  "\xee\xae\xa2",
		"Umbrella":                                      "\xef\x86\xad",
		"Unarchive":                                     "\xee\x85\xa9",
		"Undo":                                          "\xee\x85\xa6",
		"Unfold_less":                                   "\xee\x97\x96",
		"Unfold_less_double":                            "\xef\xa3\x8f",
		"Unfold_more":                                   "\xee\x97\x97",
		"Unfold_more_double":                            "\xef\xa3\x90",
		"Unpublished":                                   "\xef\x88\xb6",
		"Unsubscribe":                                   "\xee\x83\xab",
		"Upcoming":                                      "\xef\x81\xbe",
		"Update":                                        "\xee\xa4\xa3",
		"Update_disabled":                               "\xee\x81\xb5",
		"Upgrade":                                       "\xef\x83\xbb",
		"Upload":                                        "\xef\x82\x9b",
		"Upload_file":                                   "\xee\xa7\xbc",
		"Usb":                                           "\xee\x87\xa0",
		"Usb_off":                                       "\xee\x93\xba",
		"Vaccines":                                      "\xee\x84\xb8",
		"Vape_free":                                     "\xee\xaf\x86",
		"Vaping_rooms":                                  "\xee\xaf\x8f",
		"Verified":                                      "\xee\xbd\xb6",
		"Verified_user":                                 "\xee\xa3\xa8",
		"Vertical_align_bottom":                         "\xee\x89\x98",
		"Vertical_align_center":                         "\xee\x89\x99",
		"Vertical_align_top":                            "\xee\x89\x9a",
		"Vertical_distribute":                           "\xee\x81\xb6",
		"Vertical_shades":                               "\xee\xb0\x8e",
		"Vertical_shades_closed":                        "\xee\xb0\x8d",
		"Vertical_split":                                "\xee\xa5\x89",
		"Vibration":                                     "\xee\x98\xad",
		"Video_call":                                    "\xee\x81\xb0",
		"Video_camera_back":                             "\xef\x81\xbf",
		"Video_camera_front":                            "\xef\x82\x80",
		"Video_chat":                                    "\xef\xa2\xa0",
		"Video_collection":                              "\xee\x81\x8a",
		"Video_file":                                    "\xee\xae\x87",
		"Video_label":                                   "\xee\x81\xb1",
		"Video_library":                                 "\xee\x81\x8a",
		"Video_settings":                                "\xee\xa9\xb5",
		"Video_stable":                                  "\xef\x82\x81",
		"Videocam":                                      "\xee\x81\x8b",
		"Videocam_off":                                  "\xee\x81\x8c",
		"Videogame_asset":                               "\xee\x8c\xb8",
		"Videogame_asset_off":                           "\xee\x94\x80",
		"View_agenda":                                   "\xee\xa3\xa9",
		"View_array":                                    "\xee\xa3\xaa",
		"View_carousel":                                 "\xee\xa3\xab",
		"View_column":                                   "\xee\xa3\xac",
		"View_comfortable":                              "\xee\x90\xaa",
		"View_comfy":                                    "\xee\x90\xaa",
		"View_comfy_alt":                                "\xee\xad\xb3",
		"View_compact":                                  "\xee\x90\xab",
		"View_compact_alt":                              "\xee\xad\xb4",
		"View_cozy":                                     "\xee\xad\xb5",
		"View_day":                                      "\xee\xa3\xad",
		"View_headline":                                 "\xee\xa3\xae",
		"View_in_ar":                                    "\xee\xa7\xbe",
		"View_kanban":                                   "\xee\xad\xbf",
		"View_list":                                     "\xee\xa3\xaf",
		"View_module":                                   "\xee\xa3\xb0",
		"View_quilt":                                    "\xee\xa3\xb1",
		"View_sidebar":                                  "\xef\x84\x94",
		"View_stream":                                   "\xee\xa3\xb2",
		"View_timeline":                                 "\xee\xae\x85",
		"View_week":                                     "\xee\xa3\xb3",
		"Vignette":                                      "\xee\x90\xb5",
		"Villa":                                         "\xee\x96\x86",
		"Visibility":                                    "\xee\xa3\xb4",
		"Visibility_off":                                "\xee\xa3\xb5",
		"Voice_chat":                                    "\xee\x98\xae",
		"Voice_over_off":                                "\xee\xa5\x8a",
		"Voicemail":                                     "\xee\x83\x99",
		"Volcano":                                       "\xee\xaf\x9a",
		"Volume_down":                                   "\xee\x81\x8d",
		"Volume_down_alt":                               "\xee\x9e\x9c",
		"Volume_mute":                                   "\xee\x81\x8e",
		"Volume_off":                                    "\xee\x81\x8f",
		"Volume_up":                                     "\xee\x81\x90",
		"Volunteer_activism":                            "\xee\xa9\xb0",
		"Vpn_key":                                       "\xee\x83\x9a",
		"Vpn_key_off":                                   "\xee\xad\xba",
		"Vpn_lock":                                      "\xee\x98\xaf",
		"Vrpano":                                        "\xef\x82\x82",
		"Wallet":                                        "\xef\xa3\xbf",
		"Wallet_giftcard":                               "\xee\xa3\xb6",
		"Wallet_membership":                             "\xee\xa3\xb7",
		"Wallet_travel":                                 "\xee\xa3\xb8",
		"Wallpaper":                                     "\xee\x86\xbc",
		"Warehouse":                                     "\xee\xae\xb8",
		"Warning":                                       "\xee\x80\x82",
		"Warning_amber":                                 "\xef\x82\x83",
		"Wash":                                          "\xef\x86\xb1",
		"Watch":                                         "\xee\x8c\xb4",
		"Watch_later":                                   "\xee\xa4\xa4",
		"Watch_off":                                     "\xee\xab\xa3",
		"Water":                                         "\xef\x82\x84",
		"Water_damage":                                  "\xef\x88\x83",
		"Water_drop":                                    "\xee\x9e\x98",
		"Waterfall_chart":                               "\xee\xa8\x80",
		"Waves":                                         "\xee\x85\xb6",
		"Waving_hand":                                   "\xee\x9d\xa6",
		"Wb_auto":                                       "\xee\x90\xac",
		"Wb_cloudy":                                     "\xee\x90\xad",
		"Wb_incandescent":                               "\xee\x90\xae",
		"Wb_iridescent":                                 "\xee\x90\xb6",
		"Wb_shade":                                      "\xee\xa8\x81",
		"Wb_sunny":                                      "\xee\x90\xb0",
		"Wb_twighlight":                                 "\xee\xa8\x82",
		"Wb_twilight":                                   "\xee\x87\x86",
		"Wc":                                            "\xee\x98\xbd",
		"Web":                                           "\xee\x81\x91",
		"Web_asset":                                     "\xee\x81\xa9",
		"Web_asset_off":                                 "\xee\x93\xb7",
		"Web_stories":                                   "\xee\x96\x95",
		"Webhook":                                       "\xee\xae\x92",
		"Wechat":                                        "\xee\xaa\x81",
		"Weekend":                                       "\xee\x85\xab",
		"West":                                          "\xef\x87\xa6",
		"Whatshot":                                      "\xee\xa0\x8e",
		"Wheelchair_pickup":                             "\xef\x86\xab",
		"Where_to_vote":                                 "\xee\x85\xb7",
		"Widgets":                                       "\xee\x86\xbd",
		"Width_full":                                    "\xef\xa3\xb5",
		"Width_normal":                                  "\xef\xa3\xb6",
		"Width_wide":                                    "\xef\xa3\xb7",
		"Wifi":                                          "\xee\x98\xbe",
		"Wifi_1_bar":                                    "\xee\x93\x8a",
		"Wifi_2_bar":                                    "\xee\x93\x99",
		"Wifi_calling":                                  "\xee\xbd\xb7",
		"Wifi_calling_3":                                "\xef\x82\x85",
		"Wifi_channel":                                  "\xee\xad\xaa",
		"Wifi_find":                                     "\xee\xac\xb1",
		"Wifi_lock":                                     "\xee\x87\xa1",
		"Wifi_off":                                      "\xee\x99\x88",
		"Wifi_password":                                 "\xee\xad\xab",
		"Wifi_protected_setup":                          "\xef\x83\xbc",
		"Wifi_tethering":                                "\xee\x87\xa2",
		"Wifi_tethering_error":                          "\xee\xab\x99",
		"Wifi_tethering_error_rounded":                  "\xef\x82\x86",
		"Wifi_tethering_off":                            "\xef\x82\x87",
		"Wind_power":                                    "\xee\xb0\x8c",
		"Window":                                        "\xef\x82\x88",
		"Wine_bar":                                      "\xef\x87\xa8",
		"Woman":                                         "\xee\x84\xbe",
		"Woman_2":                                       "\xef\xa3\xa7",
		"Woo_commerce":                                  "\xee\xa9\xad",
		"Wordpress":                                     "\xee\xaa\x9f",
		"Work":                                          "\xee\xa3\xb9",
		"Work_history":                                  "\xee\xb0\x89",
		"Work_off":                                      "\xee\xa5\x82",
		"Work_outline":                                  "\xee\xa5\x83",
		"Workspace_premium":                             "\xee\x9e\xaf",
		"Workspaces":                                    "\xee\x86\xa0",
		"Workspaces_filled":                             "\xee\xa8\x8d",
		"Workspaces_outline":                            "\xee\xa8\x8f",
		"Wrap_text":                                     "\xee\x89\x9b",
		"Wrong_location":                                "\xee\xbd\xb8",
		"Wysiwyg":                                       "\xef\x87\x83",
		"Yard":                                          "\xef\x82\x89",
		"Youtube_searched_for":                          "\xee\xa3\xba",
		"Zoom_in":                                       "\xee\xa3\xbf",
		"Zoom_in_map":                                   "\xee\xac\xad",
		"Zoom_out":                                      "\xee\xa4\x80",
		"Zoom_out_map":                                  "\xee\x95\xab",
	},
}
View Source
var IconsMaterialDesignIcons = Font{
	Filenames: [][2]string{
		{"MDI", "materialdesignicons-webfont.ttf"},
	},
	Min:   0xF68C,
	Max16: 0xF68C,
	Max:   0xF1D17,
	Icons: map[string]string{
		"AbTesting":                              "\xf3\xb0\x87\x89",
		"Abacus":                                 "\xf3\xb1\x9b\xa0",
		"AbjadArabic":                            "\xf3\xb1\x8c\xa8",
		"AbjadHebrew":                            "\xf3\xb1\x8c\xa9",
		"AbugidaDevanagari":                      "\xf3\xb1\x8c\xaa",
		"AbugidaThai":                            "\xf3\xb1\x8c\xab",
		"AccessPoint":                            "\xf3\xb0\x80\x83",
		"AccessPointCheck":                       "\xf3\xb1\x94\xb8",
		"AccessPointMinus":                       "\xf3\xb1\x94\xb9",
		"AccessPointNetwork":                     "\xf3\xb0\x80\x82",
		"AccessPointNetworkOff":                  "\xf3\xb0\xaf\xa1",
		"AccessPointOff":                         "\xf3\xb1\x94\x91",
		"AccessPointPlus":                        "\xf3\xb1\x94\xba",
		"AccessPointRemove":                      "\xf3\xb1\x94\xbb",
		"Account":                                "\xf3\xb0\x80\x84",
		"AccountAlert":                           "\xf3\xb0\x80\x85",
		"AccountAlertOutline":                    "\xf3\xb0\xad\x90",
		"AccountArrowDown":                       "\xf3\xb1\xa1\xa8",
		"AccountArrowDownOutline":                "\xf3\xb1\xa1\xa9",
		"AccountArrowLeft":                       "\xf3\xb0\xad\x91",
		"AccountArrowLeftOutline":                "\xf3\xb0\xad\x92",
		"AccountArrowRight":                      "\xf3\xb0\xad\x93",
		"AccountArrowRightOutline":               "\xf3\xb0\xad\x94",
		"AccountArrowUp":                         "\xf3\xb1\xa1\xa7",
		"AccountArrowUpOutline":                  "\xf3\xb1\xa1\xaa",
		"AccountBadge":                           "\xf3\xb1\xac\x8a",
		"AccountBadgeOutline":                    "\xf3\xb1\xac\x8b",
		"AccountBox":                             "\xf3\xb0\x80\x86",
		"AccountBoxEditOutline":                  "\xf3\xb1\xb3\x88",
		"AccountBoxMinusOutline":                 "\xf3\xb1\xb3\x89",
		"AccountBoxMultiple":                     "\xf3\xb0\xa4\xb4",
		"AccountBoxMultipleOutline":              "\xf3\xb1\x80\x8a",
		"AccountBoxOutline":                      "\xf3\xb0\x80\x87",
		"AccountBoxPlusOutline":                  "\xf3\xb1\xb3\x8a",
		"AccountCancel":                          "\xf3\xb1\x8b\x9f",
		"AccountCancelOutline":                   "\xf3\xb1\x8b\xa0",
		"AccountCard":                            "\xf3\xb1\xae\xa4",
		"AccountCardOutline":                     "\xf3\xb1\xae\xa5",
		"AccountCash":                            "\xf3\xb1\x82\x97",
		"AccountCashOutline":                     "\xf3\xb1\x82\x98",
		"AccountCheck":                           "\xf3\xb0\x80\x88",
		"AccountCheckOutline":                    "\xf3\xb0\xaf\xa2",
		"AccountChild":                           "\xf3\xb0\xaa\x89",
		"AccountChildCircle":                     "\xf3\xb0\xaa\x8a",
		"AccountChildOutline":                    "\xf3\xb1\x83\x88",
		"AccountCircle":                          "\xf3\xb0\x80\x89",
		"AccountCircleOutline":                   "\xf3\xb0\xad\x95",
		"AccountClock":                           "\xf3\xb0\xad\x96",
		"AccountClockOutline":                    "\xf3\xb0\xad\x97",
		"AccountCog":                             "\xf3\xb1\x8d\xb0",
		"AccountCogOutline":                      "\xf3\xb1\x8d\xb1",
		"AccountConvert":                         "\xf3\xb0\x80\x8a",
		"AccountConvertOutline":                  "\xf3\xb1\x8c\x81",
		"AccountCowboyHat":                       "\xf3\xb0\xba\x9b",
		"AccountCowboyHatOutline":                "\xf3\xb1\x9f\xb3",
		"AccountCreditCard":                      "\xf3\xb1\xae\xa6",
		"AccountCreditCardOutline":               "\xf3\xb1\xae\xa7",
		"AccountDetails":                         "\xf3\xb0\x98\xb1",
		"AccountDetailsOutline":                  "\xf3\xb1\x8d\xb2",
		"AccountEdit":                            "\xf3\xb0\x9a\xbc",
		"AccountEditOutline":                     "\xf3\xb0\xbf\xbb",
		"AccountEye":                             "\xf3\xb0\x90\xa0",
		"AccountEyeOutline":                      "\xf3\xb1\x89\xbb",
		"AccountFile":                            "\xf3\xb1\xb2\xa7",
		"AccountFileOutline":                     "\xf3\xb1\xb2\xa8",
		"AccountFileText":                        "\xf3\xb1\xb2\xa9",
		"AccountFileTextOutline":                 "\xf3\xb1\xb2\xaa",
		"AccountFilter":                          "\xf3\xb0\xa4\xb6",
		"AccountFilterOutline":                   "\xf3\xb0\xbe\x9d",
		"AccountGroup":                           "\xf3\xb0\xa1\x89",
		"AccountGroupOutline":                    "\xf3\xb0\xad\x98",
		"AccountHardHat":                         "\xf3\xb0\x96\xb5",
		"AccountHardHatOutline":                  "\xf3\xb1\xa8\x9f",
		"AccountHeart":                           "\xf3\xb0\xa2\x99",
		"AccountHeartOutline":                    "\xf3\xb0\xaf\xa3",
		"AccountInjury":                          "\xf3\xb1\xa0\x95",
		"AccountInjuryOutline":                   "\xf3\xb1\xa0\x96",
		"AccountKey":                             "\xf3\xb0\x80\x8b",
		"AccountKeyOutline":                      "\xf3\xb0\xaf\xa4",
		"AccountLock":                            "\xf3\xb1\x85\x9e",
		"AccountLockOpen":                        "\xf3\xb1\xa5\xa0",
		"AccountLockOpenOutline":                 "\xf3\xb1\xa5\xa1",
		"AccountLockOutline":                     "\xf3\xb1\x85\x9f",
		"AccountMinus":                           "\xf3\xb0\x80\x8d",
		"AccountMinusOutline":                    "\xf3\xb0\xab\xac",
		"AccountMultiple":                        "\xf3\xb0\x80\x8e",
		"AccountMultipleCheck":                   "\xf3\xb0\xa3\x85",
		"AccountMultipleCheckOutline":            "\xf3\xb1\x87\xbe",
		"AccountMultipleMinus":                   "\xf3\xb0\x97\x93",
		"AccountMultipleMinusOutline":            "\xf3\xb0\xaf\xa5",
		"AccountMultipleOutline":                 "\xf3\xb0\x80\x8f",
		"AccountMultiplePlus":                    "\xf3\xb0\x80\x90",
		"AccountMultiplePlusOutline":             "\xf3\xb0\xa0\x80",
		"AccountMultipleRemove":                  "\xf3\xb1\x88\x8a",
		"AccountMultipleRemoveOutline":           "\xf3\xb1\x88\x8b",
		"AccountMusic":                           "\xf3\xb0\xa0\x83",
		"AccountMusicOutline":                    "\xf3\xb0\xb3\xa9",
		"AccountNetwork":                         "\xf3\xb0\x80\x91",
		"AccountNetworkOff":                      "\xf3\xb1\xab\xb1",
		"AccountNetworkOffOutline":               "\xf3\xb1\xab\xb2",
		"AccountNetworkOutline":                  "\xf3\xb0\xaf\xa6",
		"AccountOff":                             "\xf3\xb0\x80\x92",
		"AccountOffOutline":                      "\xf3\xb0\xaf\xa7",
		"AccountOutline":                         "\xf3\xb0\x80\x93",
		"AccountPlus":                            "\xf3\xb0\x80\x94",
		"AccountPlusOutline":                     "\xf3\xb0\xa0\x81",
		"AccountQuestion":                        "\xf3\xb0\xad\x99",
		"AccountQuestionOutline":                 "\xf3\xb0\xad\x9a",
		"AccountReactivate":                      "\xf3\xb1\x94\xab",
		"AccountReactivateOutline":               "\xf3\xb1\x94\xac",
		"AccountRemove":                          "\xf3\xb0\x80\x95",
		"AccountRemoveOutline":                   "\xf3\xb0\xab\xad",
		"AccountSchool":                          "\xf3\xb1\xa8\xa0",
		"AccountSchoolOutline":                   "\xf3\xb1\xa8\xa1",
		"AccountSearch":                          "\xf3\xb0\x80\x96",
		"AccountSearchOutline":                   "\xf3\xb0\xa4\xb5",
		"AccountSettings":                        "\xf3\xb0\x98\xb0",
		"AccountSettingsOutline":                 "\xf3\xb1\x83\x89",
		"AccountStar":                            "\xf3\xb0\x80\x97",
		"AccountStarOutline":                     "\xf3\xb0\xaf\xa8",
		"AccountSupervisor":                      "\xf3\xb0\xaa\x8b",
		"AccountSupervisorCircle":                "\xf3\xb0\xaa\x8c",
		"AccountSupervisorCircleOutline":         "\xf3\xb1\x93\xac",
		"AccountSupervisorOutline":               "\xf3\xb1\x84\xad",
		"AccountSwitch":                          "\xf3\xb0\x80\x99",
		"AccountSwitchOutline":                   "\xf3\xb0\x93\x8b",
		"AccountSync":                            "\xf3\xb1\xa4\x9b",
		"AccountSyncOutline":                     "\xf3\xb1\xa4\x9c",
		"AccountTag":                             "\xf3\xb1\xb0\x9b",
		"AccountTagOutline":                      "\xf3\xb1\xb0\x9c",
		"AccountTie":                             "\xf3\xb0\xb3\xa3",
		"AccountTieHat":                          "\xf3\xb1\xa2\x98",
		"AccountTieHatOutline":                   "\xf3\xb1\xa2\x99",
		"AccountTieOutline":                      "\xf3\xb1\x83\x8a",
		"AccountTieVoice":                        "\xf3\xb1\x8c\x88",
		"AccountTieVoiceOff":                     "\xf3\xb1\x8c\x8a",
		"AccountTieVoiceOffOutline":              "\xf3\xb1\x8c\x8b",
		"AccountTieVoiceOutline":                 "\xf3\xb1\x8c\x89",
		"AccountTieWoman":                        "\xf3\xb1\xaa\x8c",
		"AccountVoice":                           "\xf3\xb0\x97\x8b",
		"AccountVoiceOff":                        "\xf3\xb0\xbb\x94",
		"AccountWrench":                          "\xf3\xb1\xa2\x9a",
		"AccountWrenchOutline":                   "\xf3\xb1\xa2\x9b",
		"Adjust":                                 "\xf3\xb0\x80\x9a",
		"Advertisements":                         "\xf3\xb1\xa4\xaa",
		"AdvertisementsOff":                      "\xf3\xb1\xa4\xab",
		"AirConditioner":                         "\xf3\xb0\x80\x9b",
		"AirFilter":                              "\xf3\xb0\xb5\x83",
		"AirHorn":                                "\xf3\xb0\xb6\xac",
		"AirHumidifier":                          "\xf3\xb1\x82\x99",
		"AirHumidifierOff":                       "\xf3\xb1\x91\xa6",
		"AirPurifier":                            "\xf3\xb0\xb5\x84",
		"AirPurifierOff":                         "\xf3\xb1\xad\x97",
		"Airbag":                                 "\xf3\xb0\xaf\xa9",
		"Airballoon":                             "\xf3\xb0\x80\x9c",
		"AirballoonOutline":                      "\xf3\xb1\x80\x8b",
		"Airplane":                               "\xf3\xb0\x80\x9d",
		"AirplaneAlert":                          "\xf3\xb1\xa1\xba",
		"AirplaneCheck":                          "\xf3\xb1\xa1\xbb",
		"AirplaneClock":                          "\xf3\xb1\xa1\xbc",
		"AirplaneCog":                            "\xf3\xb1\xa1\xbd",
		"AirplaneEdit":                           "\xf3\xb1\xa1\xbe",
		"AirplaneLanding":                        "\xf3\xb0\x97\x94",
		"AirplaneMarker":                         "\xf3\xb1\xa1\xbf",
		"AirplaneMinus":                          "\xf3\xb1\xa2\x80",
		"AirplaneOff":                            "\xf3\xb0\x80\x9e",
		"AirplanePlus":                           "\xf3\xb1\xa2\x81",
		"AirplaneRemove":                         "\xf3\xb1\xa2\x82",
		"AirplaneSearch":                         "\xf3\xb1\xa2\x83",
		"AirplaneSettings":                       "\xf3\xb1\xa2\x84",
		"AirplaneTakeoff":                        "\xf3\xb0\x97\x95",
		"Airport":                                "\xf3\xb0\xa1\x8b",
		"Alarm":                                  "\xf3\xb0\x80\xa0",
		"AlarmBell":                              "\xf3\xb0\x9e\x8e",
		"AlarmCheck":                             "\xf3\xb0\x80\xa1",
		"AlarmLight":                             "\xf3\xb0\x9e\x8f",
		"AlarmLightOff":                          "\xf3\xb1\x9c\x9e",
		"AlarmLightOffOutline":                   "\xf3\xb1\x9c\x9f",
		"AlarmLightOutline":                      "\xf3\xb0\xaf\xaa",
		"AlarmMultiple":                          "\xf3\xb0\x80\xa2",
		"AlarmNote":                              "\xf3\xb0\xb9\xb1",
		"AlarmNoteOff":                           "\xf3\xb0\xb9\xb2",
		"AlarmOff":                               "\xf3\xb0\x80\xa3",
		"AlarmPanel":                             "\xf3\xb1\x97\x84",
		"AlarmPanelOutline":                      "\xf3\xb1\x97\x85",
		"AlarmPlus":                              "\xf3\xb0\x80\xa4",
		"AlarmSnooze":                            "\xf3\xb0\x9a\x8e",
		"Album":                                  "\xf3\xb0\x80\xa5",
		"Alert":                                  "\xf3\xb0\x80\xa6",
		"AlertBox":                               "\xf3\xb0\x80\xa7",
		"AlertBoxOutline":                        "\xf3\xb0\xb3\xa4",
		"AlertCircle":                            "\xf3\xb0\x80\xa8",
		"AlertCircleCheck":                       "\xf3\xb1\x87\xad",
		"AlertCircleCheckOutline":                "\xf3\xb1\x87\xae",
		"AlertCircleOutline":                     "\xf3\xb0\x97\x96",
		"AlertDecagram":                          "\xf3\xb0\x9a\xbd",
		"AlertDecagramOutline":                   "\xf3\xb0\xb3\xa5",
		"AlertMinus":                             "\xf3\xb1\x92\xbb",
		"AlertMinusOutline":                      "\xf3\xb1\x92\xbe",
		"AlertOctagon":                           "\xf3\xb0\x80\xa9",
		"AlertOctagonOutline":                    "\xf3\xb0\xb3\xa6",
		"AlertOctagram":                          "\xf3\xb0\x9d\xa7",
		"AlertOctagramOutline":                   "\xf3\xb0\xb3\xa7",
		"AlertOutline":                           "\xf3\xb0\x80\xaa",
		"AlertPlus":                              "\xf3\xb1\x92\xba",
		"AlertPlusOutline":                       "\xf3\xb1\x92\xbd",
		"AlertRemove":                            "\xf3\xb1\x92\xbc",
		"AlertRemoveOutline":                     "\xf3\xb1\x92\xbf",
		"AlertRhombus":                           "\xf3\xb1\x87\x8e",
		"AlertRhombusOutline":                    "\xf3\xb1\x87\x8f",
		"Alien":                                  "\xf3\xb0\xa2\x9a",
		"AlienOutline":                           "\xf3\xb1\x83\x8b",
		"AlignHorizontalCenter":                  "\xf3\xb1\x87\x83",
		"AlignHorizontalDistribute":              "\xf3\xb1\xa5\xa2",
		"AlignHorizontalLeft":                    "\xf3\xb1\x87\x82",
		"AlignHorizontalRight":                   "\xf3\xb1\x87\x84",
		"AlignVerticalBottom":                    "\xf3\xb1\x87\x85",
		"AlignVerticalCenter":                    "\xf3\xb1\x87\x86",
		"AlignVerticalDistribute":                "\xf3\xb1\xa5\xa3",
		"AlignVerticalTop":                       "\xf3\xb1\x87\x87",
		"AllInclusive":                           "\xf3\xb0\x9a\xbe",
		"AllInclusiveBox":                        "\xf3\xb1\xa2\x8d",
		"AllInclusiveBoxOutline":                 "\xf3\xb1\xa2\x8e",
		"Allergy":                                "\xf3\xb1\x89\x98",
		"Alpha":                                  "\xf3\xb0\x80\xab",
		"AlphaA":                                 "\xf3\xb0\xab\xae",
		"AlphaABox":                              "\xf3\xb0\xac\x88",
		"AlphaABoxOutline":                       "\xf3\xb0\xaf\xab",
		"AlphaACircle":                           "\xf3\xb0\xaf\xac",
		"AlphaACircleOutline":                    "\xf3\xb0\xaf\xad",
		"AlphaB":                                 "\xf3\xb0\xab\xaf",
		"AlphaBBox":                              "\xf3\xb0\xac\x89",
		"AlphaBBoxOutline":                       "\xf3\xb0\xaf\xae",
		"AlphaBCircle":                           "\xf3\xb0\xaf\xaf",
		"AlphaBCircleOutline":                    "\xf3\xb0\xaf\xb0",
		"AlphaC":                                 "\xf3\xb0\xab\xb0",
		"AlphaCBox":                              "\xf3\xb0\xac\x8a",
		"AlphaCBoxOutline":                       "\xf3\xb0\xaf\xb1",
		"AlphaCCircle":                           "\xf3\xb0\xaf\xb2",
		"AlphaCCircleOutline":                    "\xf3\xb0\xaf\xb3",
		"AlphaD":                                 "\xf3\xb0\xab\xb1",
		"AlphaDBox":                              "\xf3\xb0\xac\x8b",
		"AlphaDBoxOutline":                       "\xf3\xb0\xaf\xb4",
		"AlphaDCircle":                           "\xf3\xb0\xaf\xb5",
		"AlphaDCircleOutline":                    "\xf3\xb0\xaf\xb6",
		"AlphaE":                                 "\xf3\xb0\xab\xb2",
		"AlphaEBox":                              "\xf3\xb0\xac\x8c",
		"AlphaEBoxOutline":                       "\xf3\xb0\xaf\xb7",
		"AlphaECircle":                           "\xf3\xb0\xaf\xb8",
		"AlphaECircleOutline":                    "\xf3\xb0\xaf\xb9",
		"AlphaF":                                 "\xf3\xb0\xab\xb3",
		"AlphaFBox":                              "\xf3\xb0\xac\x8d",
		"AlphaFBoxOutline":                       "\xf3\xb0\xaf\xba",
		"AlphaFCircle":                           "\xf3\xb0\xaf\xbb",
		"AlphaFCircleOutline":                    "\xf3\xb0\xaf\xbc",
		"AlphaG":                                 "\xf3\xb0\xab\xb4",
		"AlphaGBox":                              "\xf3\xb0\xac\x8e",
		"AlphaGBoxOutline":                       "\xf3\xb0\xaf\xbd",
		"AlphaGCircle":                           "\xf3\xb0\xaf\xbe",
		"AlphaGCircleOutline":                    "\xf3\xb0\xaf\xbf",
		"AlphaH":                                 "\xf3\xb0\xab\xb5",
		"AlphaHBox":                              "\xf3\xb0\xac\x8f",
		"AlphaHBoxOutline":                       "\xf3\xb0\xb0\x80",
		"AlphaHCircle":                           "\xf3\xb0\xb0\x81",
		"AlphaHCircleOutline":                    "\xf3\xb0\xb0\x82",
		"AlphaI":                                 "\xf3\xb0\xab\xb6",
		"AlphaIBox":                              "\xf3\xb0\xac\x90",
		"AlphaIBoxOutline":                       "\xf3\xb0\xb0\x83",
		"AlphaICircle":                           "\xf3\xb0\xb0\x84",
		"AlphaICircleOutline":                    "\xf3\xb0\xb0\x85",
		"AlphaJ":                                 "\xf3\xb0\xab\xb7",
		"AlphaJBox":                              "\xf3\xb0\xac\x91",
		"AlphaJBoxOutline":                       "\xf3\xb0\xb0\x86",
		"AlphaJCircle":                           "\xf3\xb0\xb0\x87",
		"AlphaJCircleOutline":                    "\xf3\xb0\xb0\x88",
		"AlphaK":                                 "\xf3\xb0\xab\xb8",
		"AlphaKBox":                              "\xf3\xb0\xac\x92",
		"AlphaKBoxOutline":                       "\xf3\xb0\xb0\x89",
		"AlphaKCircle":                           "\xf3\xb0\xb0\x8a",
		"AlphaKCircleOutline":                    "\xf3\xb0\xb0\x8b",
		"AlphaL":                                 "\xf3\xb0\xab\xb9",
		"AlphaLBox":                              "\xf3\xb0\xac\x93",
		"AlphaLBoxOutline":                       "\xf3\xb0\xb0\x8c",
		"AlphaLCircle":                           "\xf3\xb0\xb0\x8d",
		"AlphaLCircleOutline":                    "\xf3\xb0\xb0\x8e",
		"AlphaM":                                 "\xf3\xb0\xab\xba",
		"AlphaMBox":                              "\xf3\xb0\xac\x94",
		"AlphaMBoxOutline":                       "\xf3\xb0\xb0\x8f",
		"AlphaMCircle":                           "\xf3\xb0\xb0\x90",
		"AlphaMCircleOutline":                    "\xf3\xb0\xb0\x91",
		"AlphaN":                                 "\xf3\xb0\xab\xbb",
		"AlphaNBox":                              "\xf3\xb0\xac\x95",
		"AlphaNBoxOutline":                       "\xf3\xb0\xb0\x92",
		"AlphaNCircle":                           "\xf3\xb0\xb0\x93",
		"AlphaNCircleOutline":                    "\xf3\xb0\xb0\x94",
		"AlphaO":                                 "\xf3\xb0\xab\xbc",
		"AlphaOBox":                              "\xf3\xb0\xac\x96",
		"AlphaOBoxOutline":                       "\xf3\xb0\xb0\x95",
		"AlphaOCircle":                           "\xf3\xb0\xb0\x96",
		"AlphaOCircleOutline":                    "\xf3\xb0\xb0\x97",
		"AlphaP":                                 "\xf3\xb0\xab\xbd",
		"AlphaPBox":                              "\xf3\xb0\xac\x97",
		"AlphaPBoxOutline":                       "\xf3\xb0\xb0\x98",
		"AlphaPCircle":                           "\xf3\xb0\xb0\x99",
		"AlphaPCircleOutline":                    "\xf3\xb0\xb0\x9a",
		"AlphaQ":                                 "\xf3\xb0\xab\xbe",
		"AlphaQBox":                              "\xf3\xb0\xac\x98",
		"AlphaQBoxOutline":                       "\xf3\xb0\xb0\x9b",
		"AlphaQCircle":                           "\xf3\xb0\xb0\x9c",
		"AlphaQCircleOutline":                    "\xf3\xb0\xb0\x9d",
		"AlphaR":                                 "\xf3\xb0\xab\xbf",
		"AlphaRBox":                              "\xf3\xb0\xac\x99",
		"AlphaRBoxOutline":                       "\xf3\xb0\xb0\x9e",
		"AlphaRCircle":                           "\xf3\xb0\xb0\x9f",
		"AlphaRCircleOutline":                    "\xf3\xb0\xb0\xa0",
		"AlphaS":                                 "\xf3\xb0\xac\x80",
		"AlphaSBox":                              "\xf3\xb0\xac\x9a",
		"AlphaSBoxOutline":                       "\xf3\xb0\xb0\xa1",
		"AlphaSCircle":                           "\xf3\xb0\xb0\xa2",
		"AlphaSCircleOutline":                    "\xf3\xb0\xb0\xa3",
		"AlphaT":                                 "\xf3\xb0\xac\x81",
		"AlphaTBox":                              "\xf3\xb0\xac\x9b",
		"AlphaTBoxOutline":                       "\xf3\xb0\xb0\xa4",
		"AlphaTCircle":                           "\xf3\xb0\xb0\xa5",
		"AlphaTCircleOutline":                    "\xf3\xb0\xb0\xa6",
		"AlphaU":                                 "\xf3\xb0\xac\x82",
		"AlphaUBox":                              "\xf3\xb0\xac\x9c",
		"AlphaUBoxOutline":                       "\xf3\xb0\xb0\xa7",
		"AlphaUCircle":                           "\xf3\xb0\xb0\xa8",
		"AlphaUCircleOutline":                    "\xf3\xb0\xb0\xa9",
		"AlphaV":                                 "\xf3\xb0\xac\x83",
		"AlphaVBox":                              "\xf3\xb0\xac\x9d",
		"AlphaVBoxOutline":                       "\xf3\xb0\xb0\xaa",
		"AlphaVCircle":                           "\xf3\xb0\xb0\xab",
		"AlphaVCircleOutline":                    "\xf3\xb0\xb0\xac",
		"AlphaW":                                 "\xf3\xb0\xac\x84",
		"AlphaWBox":                              "\xf3\xb0\xac\x9e",
		"AlphaWBoxOutline":                       "\xf3\xb0\xb0\xad",
		"AlphaWCircle":                           "\xf3\xb0\xb0\xae",
		"AlphaWCircleOutline":                    "\xf3\xb0\xb0\xaf",
		"AlphaX":                                 "\xf3\xb0\xac\x85",
		"AlphaXBox":                              "\xf3\xb0\xac\x9f",
		"AlphaXBoxOutline":                       "\xf3\xb0\xb0\xb0",
		"AlphaXCircle":                           "\xf3\xb0\xb0\xb1",
		"AlphaXCircleOutline":                    "\xf3\xb0\xb0\xb2",
		"AlphaY":                                 "\xf3\xb0\xac\x86",
		"AlphaYBox":                              "\xf3\xb0\xac\xa0",
		"AlphaYBoxOutline":                       "\xf3\xb0\xb0\xb3",
		"AlphaYCircle":                           "\xf3\xb0\xb0\xb4",
		"AlphaYCircleOutline":                    "\xf3\xb0\xb0\xb5",
		"AlphaZ":                                 "\xf3\xb0\xac\x87",
		"AlphaZBox":                              "\xf3\xb0\xac\xa1",
		"AlphaZBoxOutline":                       "\xf3\xb0\xb0\xb6",
		"AlphaZCircle":                           "\xf3\xb0\xb0\xb7",
		"AlphaZCircleOutline":                    "\xf3\xb0\xb0\xb8",
		"AlphabetAurebesh":                       "\xf3\xb1\x8c\xac",
		"AlphabetCyrillic":                       "\xf3\xb1\x8c\xad",
		"AlphabetGreek":                          "\xf3\xb1\x8c\xae",
		"AlphabetLatin":                          "\xf3\xb1\x8c\xaf",
		"AlphabetPiqad":                          "\xf3\xb1\x8c\xb0",
		"AlphabetTengwar":                        "\xf3\xb1\x8c\xb7",
		"Alphabetical":                           "\xf3\xb0\x80\xac",
		"AlphabeticalOff":                        "\xf3\xb1\x80\x8c",
		"AlphabeticalVariant":                    "\xf3\xb1\x80\x8d",
		"AlphabeticalVariantOff":                 "\xf3\xb1\x80\x8e",
		"Altimeter":                              "\xf3\xb0\x97\x97",
		"Ambulance":                              "\xf3\xb0\x80\xaf",
		"Ammunition":                             "\xf3\xb0\xb3\xa8",
		"Ampersand":                              "\xf3\xb0\xaa\x8d",
		"Amplifier":                              "\xf3\xb0\x80\xb0",
		"AmplifierOff":                           "\xf3\xb1\x86\xb5",
		"Anchor":                                 "\xf3\xb0\x80\xb1",
		"Android":                                "\xf3\xb0\x80\xb2",
		"AndroidStudio":                          "\xf3\xb0\x80\xb4",
		"AngleAcute":                             "\xf3\xb0\xa4\xb7",
		"AngleObtuse":                            "\xf3\xb0\xa4\xb8",
		"AngleRight":                             "\xf3\xb0\xa4\xb9",
		"Angular":                                "\xf3\xb0\x9a\xb2",
		"Angularjs":                              "\xf3\xb0\x9a\xbf",
		"Animation":                              "\xf3\xb0\x97\x98",
		"AnimationOutline":                       "\xf3\xb0\xaa\x8f",
		"AnimationPlay":                          "\xf3\xb0\xa4\xba",
		"AnimationPlayOutline":                   "\xf3\xb0\xaa\x90",
		"Ansible":                                "\xf3\xb1\x82\x9a",
		"Antenna":                                "\xf3\xb1\x84\x99",
		"Anvil":                                  "\xf3\xb0\xa2\x9b",
		"ApacheKafka":                            "\xf3\xb1\x80\x8f",
		"Api":                                    "\xf3\xb1\x82\x9b",
		"ApiOff":                                 "\xf3\xb1\x89\x97",
		"Apple":                                  "\xf3\xb0\x80\xb5",
		"AppleFinder":                            "\xf3\xb0\x80\xb6",
		"AppleIcloud":                            "\xf3\xb0\x80\xb8",
		"AppleIos":                               "\xf3\xb0\x80\xb7",
		"AppleKeyboardCaps":                      "\xf3\xb0\x98\xb2",
		"AppleKeyboardCommand":                   "\xf3\xb0\x98\xb3",
		"AppleKeyboardControl":                   "\xf3\xb0\x98\xb4",
		"AppleKeyboardOption":                    "\xf3\xb0\x98\xb5",
		"AppleKeyboardShift":                     "\xf3\xb0\x98\xb6",
		"AppleSafari":                            "\xf3\xb0\x80\xb9",
		"Application":                            "\xf3\xb0\xa3\x86",
		"ApplicationArray":                       "\xf3\xb1\x83\xb5",
		"ApplicationArrayOutline":                "\xf3\xb1\x83\xb6",
		"ApplicationBraces":                      "\xf3\xb1\x83\xb7",
		"ApplicationBracesOutline":               "\xf3\xb1\x83\xb8",
		"ApplicationBrackets":                    "\xf3\xb0\xb2\x8b",
		"ApplicationBracketsOutline":             "\xf3\xb0\xb2\x8c",
		"ApplicationCog":                         "\xf3\xb0\x99\xb5",
		"ApplicationCogOutline":                  "\xf3\xb1\x95\xb7",
		"ApplicationEdit":                        "\xf3\xb0\x82\xae",
		"ApplicationEditOutline":                 "\xf3\xb0\x98\x99",
		"ApplicationExport":                      "\xf3\xb0\xb6\xad",
		"ApplicationImport":                      "\xf3\xb0\xb6\xae",
		"ApplicationOutline":                     "\xf3\xb0\x98\x94",
		"ApplicationParentheses":                 "\xf3\xb1\x83\xb9",
		"ApplicationParenthesesOutline":          "\xf3\xb1\x83\xba",
		"ApplicationSettings":                    "\xf3\xb0\xad\xa0",
		"ApplicationSettingsOutline":             "\xf3\xb1\x95\x95",
		"ApplicationVariable":                    "\xf3\xb1\x83\xbb",
		"ApplicationVariableOutline":             "\xf3\xb1\x83\xbc",
		"ApproximatelyEqual":                     "\xf3\xb0\xbe\x9e",
		"ApproximatelyEqualBox":                  "\xf3\xb0\xbe\x9f",
		"Apps":                                   "\xf3\xb0\x80\xbb",
		"AppsBox":                                "\xf3\xb0\xb5\x86",
		"Arch":                                   "\xf3\xb0\xa3\x87",
		"Archive":                                "\xf3\xb0\x80\xbc",
		"ArchiveAlert":                           "\xf3\xb1\x93\xbd",
		"ArchiveAlertOutline":                    "\xf3\xb1\x93\xbe",
		"ArchiveArrowDown":                       "\xf3\xb1\x89\x99",
		"ArchiveArrowDownOutline":                "\xf3\xb1\x89\x9a",
		"ArchiveArrowUp":                         "\xf3\xb1\x89\x9b",
		"ArchiveArrowUpOutline":                  "\xf3\xb1\x89\x9c",
		"ArchiveCancel":                          "\xf3\xb1\x9d\x8b",
		"ArchiveCancelOutline":                   "\xf3\xb1\x9d\x8c",
		"ArchiveCheck":                           "\xf3\xb1\x9d\x8d",
		"ArchiveCheckOutline":                    "\xf3\xb1\x9d\x8e",
		"ArchiveClock":                           "\xf3\xb1\x9d\x8f",
		"ArchiveClockOutline":                    "\xf3\xb1\x9d\x90",
		"ArchiveCog":                             "\xf3\xb1\x9d\x91",
		"ArchiveCogOutline":                      "\xf3\xb1\x9d\x92",
		"ArchiveEdit":                            "\xf3\xb1\x9d\x93",
		"ArchiveEditOutline":                     "\xf3\xb1\x9d\x94",
		"ArchiveEye":                             "\xf3\xb1\x9d\x95",
		"ArchiveEyeOutline":                      "\xf3\xb1\x9d\x96",
		"ArchiveLock":                            "\xf3\xb1\x9d\x97",
		"ArchiveLockOpen":                        "\xf3\xb1\x9d\x98",
		"ArchiveLockOpenOutline":                 "\xf3\xb1\x9d\x99",
		"ArchiveLockOutline":                     "\xf3\xb1\x9d\x9a",
		"ArchiveMarker":                          "\xf3\xb1\x9d\x9b",
		"ArchiveMarkerOutline":                   "\xf3\xb1\x9d\x9c",
		"ArchiveMinus":                           "\xf3\xb1\x9d\x9d",
		"ArchiveMinusOutline":                    "\xf3\xb1\x9d\x9e",
		"ArchiveMusic":                           "\xf3\xb1\x9d\x9f",
		"ArchiveMusicOutline":                    "\xf3\xb1\x9d\xa0",
		"ArchiveOff":                             "\xf3\xb1\x9d\xa1",
		"ArchiveOffOutline":                      "\xf3\xb1\x9d\xa2",
		"ArchiveOutline":                         "\xf3\xb1\x88\x8e",
		"ArchivePlus":                            "\xf3\xb1\x9d\xa3",
		"ArchivePlusOutline":                     "\xf3\xb1\x9d\xa4",
		"ArchiveRefresh":                         "\xf3\xb1\x9d\xa5",
		"ArchiveRefreshOutline":                  "\xf3\xb1\x9d\xa6",
		"ArchiveRemove":                          "\xf3\xb1\x9d\xa7",
		"ArchiveRemoveOutline":                   "\xf3\xb1\x9d\xa8",
		"ArchiveSearch":                          "\xf3\xb1\x9d\xa9",
		"ArchiveSearchOutline":                   "\xf3\xb1\x9d\xaa",
		"ArchiveSettings":                        "\xf3\xb1\x9d\xab",
		"ArchiveSettingsOutline":                 "\xf3\xb1\x9d\xac",
		"ArchiveStar":                            "\xf3\xb1\x9d\xad",
		"ArchiveStarOutline":                     "\xf3\xb1\x9d\xae",
		"ArchiveSync":                            "\xf3\xb1\x9d\xaf",
		"ArchiveSyncOutline":                     "\xf3\xb1\x9d\xb0",
		"ArmFlex":                                "\xf3\xb0\xbf\x97",
		"ArmFlexOutline":                         "\xf3\xb0\xbf\x96",
		"ArrangeBringForward":                    "\xf3\xb0\x80\xbd",
		"ArrangeBringToFront":                    "\xf3\xb0\x80\xbe",
		"ArrangeSendBackward":                    "\xf3\xb0\x80\xbf",
		"ArrangeSendToBack":                      "\xf3\xb0\x81\x80",
		"ArrowAll":                               "\xf3\xb0\x81\x81",
		"ArrowBottomLeft":                        "\xf3\xb0\x81\x82",
		"ArrowBottomLeftBoldBox":                 "\xf3\xb1\xa5\xa4",
		"ArrowBottomLeftBoldBoxOutline":          "\xf3\xb1\xa5\xa5",
		"ArrowBottomLeftBoldOutline":             "\xf3\xb0\xa6\xb7",
		"ArrowBottomLeftThick":                   "\xf3\xb0\xa6\xb8",
		"ArrowBottomLeftThin":                    "\xf3\xb1\xa6\xb6",
		"ArrowBottomLeftThinCircleOutline":       "\xf3\xb1\x96\x96",
		"ArrowBottomRight":                       "\xf3\xb0\x81\x83",
		"ArrowBottomRightBoldBox":                "\xf3\xb1\xa5\xa6",
		"ArrowBottomRightBoldBoxOutline":         "\xf3\xb1\xa5\xa7",
		"ArrowBottomRightBoldOutline":            "\xf3\xb0\xa6\xb9",
		"ArrowBottomRightThick":                  "\xf3\xb0\xa6\xba",
		"ArrowBottomRightThin":                   "\xf3\xb1\xa6\xb7",
		"ArrowBottomRightThinCircleOutline":      "\xf3\xb1\x96\x95",
		"ArrowCollapse":                          "\xf3\xb0\x98\x95",
		"ArrowCollapseAll":                       "\xf3\xb0\x81\x84",
		"ArrowCollapseDown":                      "\xf3\xb0\x9e\x92",
		"ArrowCollapseHorizontal":                "\xf3\xb0\xa1\x8c",
		"ArrowCollapseLeft":                      "\xf3\xb0\x9e\x93",
		"ArrowCollapseRight":                     "\xf3\xb0\x9e\x94",
		"ArrowCollapseUp":                        "\xf3\xb0\x9e\x95",
		"ArrowCollapseVertical":                  "\xf3\xb0\xa1\x8d",
		"ArrowDecision":                          "\xf3\xb0\xa6\xbb",
		"ArrowDecisionAuto":                      "\xf3\xb0\xa6\xbc",
		"ArrowDecisionAutoOutline":               "\xf3\xb0\xa6\xbd",
		"ArrowDecisionOutline":                   "\xf3\xb0\xa6\xbe",
		"ArrowDown":                              "\xf3\xb0\x81\x85",
		"ArrowDownBold":                          "\xf3\xb0\x9c\xae",
		"ArrowDownBoldBox":                       "\xf3\xb0\x9c\xaf",
		"ArrowDownBoldBoxOutline":                "\xf3\xb0\x9c\xb0",
		"ArrowDownBoldCircle":                    "\xf3\xb0\x81\x87",
		"ArrowDownBoldCircleOutline":             "\xf3\xb0\x81\x88",
		"ArrowDownBoldHexagonOutline":            "\xf3\xb0\x81\x89",
		"ArrowDownBoldOutline":                   "\xf3\xb0\xa6\xbf",
		"ArrowDownBox":                           "\xf3\xb0\x9b\x80",
		"ArrowDownCircle":                        "\xf3\xb0\xb3\x9b",
		"ArrowDownCircleOutline":                 "\xf3\xb0\xb3\x9c",
		"ArrowDownDropCircle":                    "\xf3\xb0\x81\x8a",
		"ArrowDownDropCircleOutline":             "\xf3\xb0\x81\x8b",
		"ArrowDownLeft":                          "\xf3\xb1\x9e\xa1",
		"ArrowDownLeftBold":                      "\xf3\xb1\x9e\xa2",
		"ArrowDownRight":                         "\xf3\xb1\x9e\xa3",
		"ArrowDownRightBold":                     "\xf3\xb1\x9e\xa4",
		"ArrowDownThick":                         "\xf3\xb0\x81\x86",
		"ArrowDownThin":                          "\xf3\xb1\xa6\xb3",
		"ArrowDownThinCircleOutline":             "\xf3\xb1\x96\x99",
		"ArrowExpand":                            "\xf3\xb0\x98\x96",
		"ArrowExpandAll":                         "\xf3\xb0\x81\x8c",
		"ArrowExpandDown":                        "\xf3\xb0\x9e\x96",
		"ArrowExpandHorizontal":                  "\xf3\xb0\xa1\x8e",
		"ArrowExpandLeft":                        "\xf3\xb0\x9e\x97",
		"ArrowExpandRight":                       "\xf3\xb0\x9e\x98",
		"ArrowExpandUp":                          "\xf3\xb0\x9e\x99",
		"ArrowExpandVertical":                    "\xf3\xb0\xa1\x8f",
		"ArrowHorizontalLock":                    "\xf3\xb1\x85\x9b",
		"ArrowLeft":                              "\xf3\xb0\x81\x8d",
		"ArrowLeftBold":                          "\xf3\xb0\x9c\xb1",
		"ArrowLeftBoldBox":                       "\xf3\xb0\x9c\xb2",
		"ArrowLeftBoldBoxOutline":                "\xf3\xb0\x9c\xb3",
		"ArrowLeftBoldCircle":                    "\xf3\xb0\x81\x8f",
		"ArrowLeftBoldCircleOutline":             "\xf3\xb0\x81\x90",
		"ArrowLeftBoldHexagonOutline":            "\xf3\xb0\x81\x91",
		"ArrowLeftBoldOutline":                   "\xf3\xb0\xa7\x80",
		"ArrowLeftBottom":                        "\xf3\xb1\x9e\xa5",
		"ArrowLeftBottomBold":                    "\xf3\xb1\x9e\xa6",
		"ArrowLeftBox":                           "\xf3\xb0\x9b\x81",
		"ArrowLeftCircle":                        "\xf3\xb0\xb3\x9d",
		"ArrowLeftCircleOutline":                 "\xf3\xb0\xb3\x9e",
		"ArrowLeftDropCircle":                    "\xf3\xb0\x81\x92",
		"ArrowLeftDropCircleOutline":             "\xf3\xb0\x81\x93",
		"ArrowLeftRight":                         "\xf3\xb0\xb9\xb3",
		"ArrowLeftRightBold":                     "\xf3\xb0\xb9\xb4",
		"ArrowLeftRightBoldOutline":              "\xf3\xb0\xa7\x81",
		"ArrowLeftThick":                         "\xf3\xb0\x81\x8e",
		"ArrowLeftThin":                          "\xf3\xb1\xa6\xb1",
		"ArrowLeftThinCircleOutline":             "\xf3\xb1\x96\x9a",
		"ArrowLeftTop":                           "\xf3\xb1\x9e\xa7",
		"ArrowLeftTopBold":                       "\xf3\xb1\x9e\xa8",
		"ArrowOscillating":                       "\xf3\xb1\xb2\x91",
		"ArrowOscillatingOff":                    "\xf3\xb1\xb2\x92",
		"ArrowProjectile":                        "\xf3\xb1\xa1\x80",
		"ArrowProjectileMultiple":                "\xf3\xb1\xa0\xbf",
		"ArrowRight":                             "\xf3\xb0\x81\x94",
		"ArrowRightBold":                         "\xf3\xb0\x9c\xb4",
		"ArrowRightBoldBox":                      "\xf3\xb0\x9c\xb5",
		"ArrowRightBoldBoxOutline":               "\xf3\xb0\x9c\xb6",
		"ArrowRightBoldCircle":                   "\xf3\xb0\x81\x96",
		"ArrowRightBoldCircleOutline":            "\xf3\xb0\x81\x97",
		"ArrowRightBoldHexagonOutline":           "\xf3\xb0\x81\x98",
		"ArrowRightBoldOutline":                  "\xf3\xb0\xa7\x82",
		"ArrowRightBottom":                       "\xf3\xb1\x9e\xa9",
		"ArrowRightBottomBold":                   "\xf3\xb1\x9e\xaa",
		"ArrowRightBox":                          "\xf3\xb0\x9b\x82",
		"ArrowRightCircle":                       "\xf3\xb0\xb3\x9f",
		"ArrowRightCircleOutline":                "\xf3\xb0\xb3\xa0",
		"ArrowRightDropCircle":                   "\xf3\xb0\x81\x99",
		"ArrowRightDropCircleOutline":            "\xf3\xb0\x81\x9a",
		"ArrowRightThick":                        "\xf3\xb0\x81\x95",
		"ArrowRightThin":                         "\xf3\xb1\xa6\xb0",
		"ArrowRightThinCircleOutline":            "\xf3\xb1\x96\x98",
		"ArrowRightTop":                          "\xf3\xb1\x9e\xab",
		"ArrowRightTopBold":                      "\xf3\xb1\x9e\xac",
		"ArrowSplitHorizontal":                   "\xf3\xb0\xa4\xbb",
		"ArrowSplitVertical":                     "\xf3\xb0\xa4\xbc",
		"ArrowTopLeft":                           "\xf3\xb0\x81\x9b",
		"ArrowTopLeftBoldBox":                    "\xf3\xb1\xa5\xa8",
		"ArrowTopLeftBoldBoxOutline":             "\xf3\xb1\xa5\xa9",
		"ArrowTopLeftBoldOutline":                "\xf3\xb0\xa7\x83",
		"ArrowTopLeftBottomRight":                "\xf3\xb0\xb9\xb5",
		"ArrowTopLeftBottomRightBold":            "\xf3\xb0\xb9\xb6",
		"ArrowTopLeftThick":                      "\xf3\xb0\xa7\x84",
		"ArrowTopLeftThin":                       "\xf3\xb1\xa6\xb5",
		"ArrowTopLeftThinCircleOutline":          "\xf3\xb1\x96\x93",
		"ArrowTopRight":                          "\xf3\xb0\x81\x9c",
		"ArrowTopRightBoldBox":                   "\xf3\xb1\xa5\xaa",
		"ArrowTopRightBoldBoxOutline":            "\xf3\xb1\xa5\xab",
		"ArrowTopRightBoldOutline":               "\xf3\xb0\xa7\x85",
		"ArrowTopRightBottomLeft":                "\xf3\xb0\xb9\xb7",
		"ArrowTopRightBottomLeftBold":            "\xf3\xb0\xb9\xb8",
		"ArrowTopRightThick":                     "\xf3\xb0\xa7\x86",
		"ArrowTopRightThin":                      "\xf3\xb1\xa6\xb4",
		"ArrowTopRightThinCircleOutline":         "\xf3\xb1\x96\x94",
		"ArrowUDownLeft":                         "\xf3\xb1\x9e\xad",
		"ArrowUDownLeftBold":                     "\xf3\xb1\x9e\xae",
		"ArrowUDownRight":                        "\xf3\xb1\x9e\xaf",
		"ArrowUDownRightBold":                    "\xf3\xb1\x9e\xb0",
		"ArrowULeftBottom":                       "\xf3\xb1\x9e\xb1",
		"ArrowULeftBottomBold":                   "\xf3\xb1\x9e\xb2",
		"ArrowULeftTop":                          "\xf3\xb1\x9e\xb3",
		"ArrowULeftTopBold":                      "\xf3\xb1\x9e\xb4",
		"ArrowURightBottom":                      "\xf3\xb1\x9e\xb5",
		"ArrowURightBottomBold":                  "\xf3\xb1\x9e\xb6",
		"ArrowURightTop":                         "\xf3\xb1\x9e\xb7",
		"ArrowURightTopBold":                     "\xf3\xb1\x9e\xb8",
		"ArrowUUpLeft":                           "\xf3\xb1\x9e\xb9",
		"ArrowUUpLeftBold":                       "\xf3\xb1\x9e\xba",
		"ArrowUUpRight":                          "\xf3\xb1\x9e\xbb",
		"ArrowUUpRightBold":                      "\xf3\xb1\x9e\xbc",
		"ArrowUp":                                "\xf3\xb0\x81\x9d",
		"ArrowUpBold":                            "\xf3\xb0\x9c\xb7",
		"ArrowUpBoldBox":                         "\xf3\xb0\x9c\xb8",
		"ArrowUpBoldBoxOutline":                  "\xf3\xb0\x9c\xb9",
		"ArrowUpBoldCircle":                      "\xf3\xb0\x81\x9f",
		"ArrowUpBoldCircleOutline":               "\xf3\xb0\x81\xa0",
		"ArrowUpBoldHexagonOutline":              "\xf3\xb0\x81\xa1",
		"ArrowUpBoldOutline":                     "\xf3\xb0\xa7\x87",
		"ArrowUpBox":                             "\xf3\xb0\x9b\x83",
		"ArrowUpCircle":                          "\xf3\xb0\xb3\xa1",
		"ArrowUpCircleOutline":                   "\xf3\xb0\xb3\xa2",
		"ArrowUpDown":                            "\xf3\xb0\xb9\xb9",
		"ArrowUpDownBold":                        "\xf3\xb0\xb9\xba",
		"ArrowUpDownBoldOutline":                 "\xf3\xb0\xa7\x88",
		"ArrowUpDropCircle":                      "\xf3\xb0\x81\xa2",
		"ArrowUpDropCircleOutline":               "\xf3\xb0\x81\xa3",
		"ArrowUpLeft":                            "\xf3\xb1\x9e\xbd",
		"ArrowUpLeftBold":                        "\xf3\xb1\x9e\xbe",
		"ArrowUpRight":                           "\xf3\xb1\x9e\xbf",
		"ArrowUpRightBold":                       "\xf3\xb1\x9f\x80",
		"ArrowUpThick":                           "\xf3\xb0\x81\x9e",
		"ArrowUpThin":                            "\xf3\xb1\xa6\xb2",
		"ArrowUpThinCircleOutline":               "\xf3\xb1\x96\x97",
		"ArrowVerticalLock":                      "\xf3\xb1\x85\x9c",
		"Artboard":                               "\xf3\xb1\xae\x9a",
		"Artstation":                             "\xf3\xb0\xad\x9b",
		"AspectRatio":                            "\xf3\xb0\xa8\xa4",
		"Assistant":                              "\xf3\xb0\x81\xa4",
		"Asterisk":                               "\xf3\xb0\x9b\x84",
		"AsteriskCircleOutline":                  "\xf3\xb1\xa8\xa7",
		"At":                                     "\xf3\xb0\x81\xa5",
		"Atlassian":                              "\xf3\xb0\xa0\x84",
		"Atm":                                    "\xf3\xb0\xb5\x87",
		"Atom":                                   "\xf3\xb0\x9d\xa8",
		"AtomVariant":                            "\xf3\xb0\xb9\xbb",
		"Attachment":                             "\xf3\xb0\x81\xa6",
		"AttachmentCheck":                        "\xf3\xb1\xab\x81",
		"AttachmentLock":                         "\xf3\xb1\xa7\x84",
		"AttachmentMinus":                        "\xf3\xb1\xab\x82",
		"AttachmentOff":                          "\xf3\xb1\xab\x83",
		"AttachmentPlus":                         "\xf3\xb1\xab\x84",
		"AttachmentRemove":                       "\xf3\xb1\xab\x85",
		"Atv":                                    "\xf3\xb1\xad\xb0",
		"AudioInputRca":                          "\xf3\xb1\xa1\xab",
		"AudioInputStereoMinijack":               "\xf3\xb1\xa1\xac",
		"AudioInputXlr":                          "\xf3\xb1\xa1\xad",
		"AudioVideo":                             "\xf3\xb0\xa4\xbd",
		"AudioVideoOff":                          "\xf3\xb1\x86\xb6",
		"AugmentedReality":                       "\xf3\xb0\xa1\x90",
		"Aurora":                                 "\xf3\xb1\xae\xb9",
		"AutoDownload":                           "\xf3\xb1\x8d\xbe",
		"AutoFix":                                "\xf3\xb0\x81\xa8",
		"AutoMode":                               "\xf3\xb1\xb0\xa0",
		"AutoUpload":                             "\xf3\xb0\x81\xa9",
		"Autorenew":                              "\xf3\xb0\x81\xaa",
		"AutorenewOff":                           "\xf3\xb1\xa7\xa7",
		"AvTimer":                                "\xf3\xb0\x81\xab",
		"Awning":                                 "\xf3\xb1\xae\x87",
		"AwningOutline":                          "\xf3\xb1\xae\x88",
		"Aws":                                    "\xf3\xb0\xb8\x8f",
		"Axe":                                    "\xf3\xb0\xa3\x88",
		"AxeBattle":                              "\xf3\xb1\xa1\x82",
		"Axis":                                   "\xf3\xb0\xb5\x88",
		"AxisArrow":                              "\xf3\xb0\xb5\x89",
		"AxisArrowInfo":                          "\xf3\xb1\x90\x8e",
		"AxisArrowLock":                          "\xf3\xb0\xb5\x8a",
		"AxisLock":                               "\xf3\xb0\xb5\x8b",
		"AxisXArrow":                             "\xf3\xb0\xb5\x8c",
		"AxisXArrowLock":                         "\xf3\xb0\xb5\x8d",
		"AxisXRotateClockwise":                   "\xf3\xb0\xb5\x8e",
		"AxisXRotateCounterclockwise":            "\xf3\xb0\xb5\x8f",
		"AxisXYArrowLock":                        "\xf3\xb0\xb5\x90",
		"AxisYArrow":                             "\xf3\xb0\xb5\x91",
		"AxisYArrowLock":                         "\xf3\xb0\xb5\x92",
		"AxisYRotateClockwise":                   "\xf3\xb0\xb5\x93",
		"AxisYRotateCounterclockwise":            "\xf3\xb0\xb5\x94",
		"AxisZArrow":                             "\xf3\xb0\xb5\x95",
		"AxisZArrowLock":                         "\xf3\xb0\xb5\x96",
		"AxisZRotateClockwise":                   "\xf3\xb0\xb5\x97",
		"AxisZRotateCounterclockwise":            "\xf3\xb0\xb5\x98",
		"Babel":                                  "\xf3\xb0\xa8\xa5",
		"Baby":                                   "\xf3\xb0\x81\xac",
		"BabyBottle":                             "\xf3\xb0\xbc\xb9",
		"BabyBottleOutline":                      "\xf3\xb0\xbc\xba",
		"BabyBuggy":                              "\xf3\xb1\x8f\xa0",
		"BabyBuggyOff":                           "\xf3\xb1\xab\xb3",
		"BabyCarriage":                           "\xf3\xb0\x9a\x8f",
		"BabyCarriageOff":                        "\xf3\xb0\xbe\xa0",
		"BabyFace":                               "\xf3\xb0\xb9\xbc",
		"BabyFaceOutline":                        "\xf3\xb0\xb9\xbd",
		"Backburger":                             "\xf3\xb0\x81\xad",
		"Backspace":                              "\xf3\xb0\x81\xae",
		"BackspaceOutline":                       "\xf3\xb0\xad\x9c",
		"BackspaceReverse":                       "\xf3\xb0\xb9\xbe",
		"BackspaceReverseOutline":                "\xf3\xb0\xb9\xbf",
		"BackupRestore":                          "\xf3\xb0\x81\xaf",
		"Bacteria":                               "\xf3\xb0\xbb\x95",
		"BacteriaOutline":                        "\xf3\xb0\xbb\x96",
		"BadgeAccount":                           "\xf3\xb0\xb6\xa7",
		"BadgeAccountAlert":                      "\xf3\xb0\xb6\xa8",
		"BadgeAccountAlertOutline":               "\xf3\xb0\xb6\xa9",
		"BadgeAccountHorizontal":                 "\xf3\xb0\xb8\x8d",
		"BadgeAccountHorizontalOutline":          "\xf3\xb0\xb8\x8e",
		"BadgeAccountOutline":                    "\xf3\xb0\xb6\xaa",
		"Badminton":                              "\xf3\xb0\xa1\x91",
		"BagCarryOn":                             "\xf3\xb0\xbc\xbb",
		"BagCarryOnCheck":                        "\xf3\xb0\xb5\xa5",
		"BagCarryOnOff":                          "\xf3\xb0\xbc\xbc",
		"BagChecked":                             "\xf3\xb0\xbc\xbd",
		"BagPersonal":                            "\xf3\xb0\xb8\x90",
		"BagPersonalOff":                         "\xf3\xb0\xb8\x91",
		"BagPersonalOffOutline":                  "\xf3\xb0\xb8\x92",
		"BagPersonalOutline":                     "\xf3\xb0\xb8\x93",
		"BagPersonalPlus":                        "\xf3\xb1\xb2\xa4",
		"BagPersonalPlusOutline":                 "\xf3\xb1\xb2\xa5",
		"BagPersonalTag":                         "\xf3\xb1\xac\x8c",
		"BagPersonalTagOutline":                  "\xf3\xb1\xac\x8d",
		"BagSuitcase":                            "\xf3\xb1\x96\x8b",
		"BagSuitcaseOff":                         "\xf3\xb1\x96\x8d",
		"BagSuitcaseOffOutline":                  "\xf3\xb1\x96\x8e",
		"BagSuitcaseOutline":                     "\xf3\xb1\x96\x8c",
		"Baguette":                               "\xf3\xb0\xbc\xbe",
		"Balcony":                                "\xf3\xb1\xa0\x97",
		"Balloon":                                "\xf3\xb0\xa8\xa6",
		"Ballot":                                 "\xf3\xb0\xa7\x89",
		"BallotOutline":                          "\xf3\xb0\xa7\x8a",
		"BallotRecount":                          "\xf3\xb0\xb0\xb9",
		"BallotRecountOutline":                   "\xf3\xb0\xb0\xba",
		"Bandage":                                "\xf3\xb0\xb6\xaf",
		"Bank":                                   "\xf3\xb0\x81\xb0",
		"BankCheck":                              "\xf3\xb1\x99\x95",
		"BankCircle":                             "\xf3\xb1\xb0\x83",
		"BankCircleOutline":                      "\xf3\xb1\xb0\x84",
		"BankMinus":                              "\xf3\xb0\xb6\xb0",
		"BankOff":                                "\xf3\xb1\x99\x96",
		"BankOffOutline":                         "\xf3\xb1\x99\x97",
		"BankOutline":                            "\xf3\xb0\xba\x80",
		"BankPlus":                               "\xf3\xb0\xb6\xb1",
		"BankRemove":                             "\xf3\xb0\xb6\xb2",
		"BankTransfer":                           "\xf3\xb0\xa8\xa7",
		"BankTransferIn":                         "\xf3\xb0\xa8\xa8",
		"BankTransferOut":                        "\xf3\xb0\xa8\xa9",
		"Barcode":                                "\xf3\xb0\x81\xb1",
		"BarcodeOff":                             "\xf3\xb1\x88\xb6",
		"BarcodeScan":                            "\xf3\xb0\x81\xb2",
		"Barley":                                 "\xf3\xb0\x81\xb3",
		"BarleyOff":                              "\xf3\xb0\xad\x9d",
		"Barn":                                   "\xf3\xb0\xad\x9e",
		"Barrel":                                 "\xf3\xb0\x81\xb4",
		"BarrelOutline":                          "\xf3\xb1\xa8\xa8",
		"Baseball":                               "\xf3\xb0\xa1\x92",
		"BaseballBat":                            "\xf3\xb0\xa1\x93",
		"BaseballDiamond":                        "\xf3\xb1\x97\xac",
		"BaseballDiamondOutline":                 "\xf3\xb1\x97\xad",
		"BaseballOutline":                        "\xf3\xb1\xb1\x9a",
		"Bash":                                   "\xf3\xb1\x86\x83",
		"Basket":                                 "\xf3\xb0\x81\xb6",
		"BasketCheck":                            "\xf3\xb1\xa3\xa5",
		"BasketCheckOutline":                     "\xf3\xb1\xa3\xa6",
		"BasketFill":                             "\xf3\xb0\x81\xb7",
		"BasketMinus":                            "\xf3\xb1\x94\xa3",
		"BasketMinusOutline":                     "\xf3\xb1\x94\xa4",
		"BasketOff":                              "\xf3\xb1\x94\xa5",
		"BasketOffOutline":                       "\xf3\xb1\x94\xa6",
		"BasketOutline":                          "\xf3\xb1\x86\x81",
		"BasketPlus":                             "\xf3\xb1\x94\xa7",
		"BasketPlusOutline":                      "\xf3\xb1\x94\xa8",
		"BasketRemove":                           "\xf3\xb1\x94\xa9",
		"BasketRemoveOutline":                    "\xf3\xb1\x94\xaa",
		"BasketUnfill":                           "\xf3\xb0\x81\xb8",
		"Basketball":                             "\xf3\xb0\xa0\x86",
		"BasketballHoop":                         "\xf3\xb0\xb0\xbb",
		"BasketballHoopOutline":                  "\xf3\xb0\xb0\xbc",
		"Bat":                                    "\xf3\xb0\xad\x9f",
		"Bathtub":                                "\xf3\xb1\xa0\x98",
		"BathtubOutline":                         "\xf3\xb1\xa0\x99",
		"Battery":                                "\xf3\xb0\x81\xb9",
		"Battery10":                              "\xf3\xb0\x81\xba",
		"Battery10Bluetooth":                     "\xf3\xb0\xa4\xbe",
		"Battery20":                              "\xf3\xb0\x81\xbb",
		"Battery20Bluetooth":                     "\xf3\xb0\xa4\xbf",
		"Battery30":                              "\xf3\xb0\x81\xbc",
		"Battery30Bluetooth":                     "\xf3\xb0\xa5\x80",
		"Battery40":                              "\xf3\xb0\x81\xbd",
		"Battery40Bluetooth":                     "\xf3\xb0\xa5\x81",
		"Battery50":                              "\xf3\xb0\x81\xbe",
		"Battery50Bluetooth":                     "\xf3\xb0\xa5\x82",
		"Battery60":                              "\xf3\xb0\x81\xbf",
		"Battery60Bluetooth":                     "\xf3\xb0\xa5\x83",
		"Battery70":                              "\xf3\xb0\x82\x80",
		"Battery70Bluetooth":                     "\xf3\xb0\xa5\x84",
		"Battery80":                              "\xf3\xb0\x82\x81",
		"Battery80Bluetooth":                     "\xf3\xb0\xa5\x85",
		"Battery90":                              "\xf3\xb0\x82\x82",
		"Battery90Bluetooth":                     "\xf3\xb0\xa5\x86",
		"BatteryAlert":                           "\xf3\xb0\x82\x83",
		"BatteryAlertBluetooth":                  "\xf3\xb0\xa5\x87",
		"BatteryAlertVariant":                    "\xf3\xb1\x83\x8c",
		"BatteryAlertVariantOutline":             "\xf3\xb1\x83\x8d",
		"BatteryArrowDown":                       "\xf3\xb1\x9f\x9e",
		"BatteryArrowDownOutline":                "\xf3\xb1\x9f\x9f",
		"BatteryArrowUp":                         "\xf3\xb1\x9f\xa0",
		"BatteryArrowUpOutline":                  "\xf3\xb1\x9f\xa1",
		"BatteryBluetooth":                       "\xf3\xb0\xa5\x88",
		"BatteryBluetoothVariant":                "\xf3\xb0\xa5\x89",
		"BatteryCharging":                        "\xf3\xb0\x82\x84",
		"BatteryCharging10":                      "\xf3\xb0\xa2\x9c",
		"BatteryCharging100":                     "\xf3\xb0\x82\x85",
		"BatteryCharging20":                      "\xf3\xb0\x82\x86",
		"BatteryCharging30":                      "\xf3\xb0\x82\x87",
		"BatteryCharging40":                      "\xf3\xb0\x82\x88",
		"BatteryCharging50":                      "\xf3\xb0\xa2\x9d",
		"BatteryCharging60":                      "\xf3\xb0\x82\x89",
		"BatteryCharging70":                      "\xf3\xb0\xa2\x9e",
		"BatteryCharging80":                      "\xf3\xb0\x82\x8a",
		"BatteryCharging90":                      "\xf3\xb0\x82\x8b",
		"BatteryChargingHigh":                    "\xf3\xb1\x8a\xa6",
		"BatteryChargingLow":                     "\xf3\xb1\x8a\xa4",
		"BatteryChargingMedium":                  "\xf3\xb1\x8a\xa5",
		"BatteryChargingOutline":                 "\xf3\xb0\xa2\x9f",
		"BatteryChargingWireless":                "\xf3\xb0\xa0\x87",
		"BatteryChargingWireless10":              "\xf3\xb0\xa0\x88",
		"BatteryChargingWireless20":              "\xf3\xb0\xa0\x89",
		"BatteryChargingWireless30":              "\xf3\xb0\xa0\x8a",
		"BatteryChargingWireless40":              "\xf3\xb0\xa0\x8b",
		"BatteryChargingWireless50":              "\xf3\xb0\xa0\x8c",
		"BatteryChargingWireless60":              "\xf3\xb0\xa0\x8d",
		"BatteryChargingWireless70":              "\xf3\xb0\xa0\x8e",
		"BatteryChargingWireless80":              "\xf3\xb0\xa0\x8f",
		"BatteryChargingWireless90":              "\xf3\xb0\xa0\x90",
		"BatteryChargingWirelessAlert":           "\xf3\xb0\xa0\x91",
		"BatteryChargingWirelessOutline":         "\xf3\xb0\xa0\x92",
		"BatteryCheck":                           "\xf3\xb1\x9f\xa2",
		"BatteryCheckOutline":                    "\xf3\xb1\x9f\xa3",
		"BatteryClock":                           "\xf3\xb1\xa7\xa5",
		"BatteryClockOutline":                    "\xf3\xb1\xa7\xa6",
		"BatteryHeart":                           "\xf3\xb1\x88\x8f",
		"BatteryHeartOutline":                    "\xf3\xb1\x88\x90",
		"BatteryHeartVariant":                    "\xf3\xb1\x88\x91",
		"BatteryHigh":                            "\xf3\xb1\x8a\xa3",
		"BatteryLock":                            "\xf3\xb1\x9e\x9c",
		"BatteryLockOpen":                        "\xf3\xb1\x9e\x9d",
		"BatteryLow":                             "\xf3\xb1\x8a\xa1",
		"BatteryMedium":                          "\xf3\xb1\x8a\xa2",
		"BatteryMinus":                           "\xf3\xb1\x9f\xa4",
		"BatteryMinusOutline":                    "\xf3\xb1\x9f\xa5",
		"BatteryMinusVariant":                    "\xf3\xb0\x82\x8c",
		"BatteryNegative":                        "\xf3\xb0\x82\x8d",
		"BatteryOff":                             "\xf3\xb1\x89\x9d",
		"BatteryOffOutline":                      "\xf3\xb1\x89\x9e",
		"BatteryOutline":                         "\xf3\xb0\x82\x8e",
		"BatteryPlus":                            "\xf3\xb1\x9f\xa6",
		"BatteryPlusOutline":                     "\xf3\xb1\x9f\xa7",
		"BatteryPlusVariant":                     "\xf3\xb0\x82\x8f",
		"BatteryPositive":                        "\xf3\xb0\x82\x90",
		"BatteryRemove":                          "\xf3\xb1\x9f\xa8",
		"BatteryRemoveOutline":                   "\xf3\xb1\x9f\xa9",
		"BatterySync":                            "\xf3\xb1\xa0\xb4",
		"BatterySyncOutline":                     "\xf3\xb1\xa0\xb5",
		"BatteryUnknown":                         "\xf3\xb0\x82\x91",
		"BatteryUnknownBluetooth":                "\xf3\xb0\xa5\x8a",
		"Beach":                                  "\xf3\xb0\x82\x92",
		"Beaker":                                 "\xf3\xb0\xb3\xaa",
		"BeakerAlert":                            "\xf3\xb1\x88\xa9",
		"BeakerAlertOutline":                     "\xf3\xb1\x88\xaa",
		"BeakerCheck":                            "\xf3\xb1\x88\xab",
		"BeakerCheckOutline":                     "\xf3\xb1\x88\xac",
		"BeakerMinus":                            "\xf3\xb1\x88\xad",
		"BeakerMinusOutline":                     "\xf3\xb1\x88\xae",
		"BeakerOutline":                          "\xf3\xb0\x9a\x90",
		"BeakerPlus":                             "\xf3\xb1\x88\xaf",
		"BeakerPlusOutline":                      "\xf3\xb1\x88\xb0",
		"BeakerQuestion":                         "\xf3\xb1\x88\xb1",
		"BeakerQuestionOutline":                  "\xf3\xb1\x88\xb2",
		"BeakerRemove":                           "\xf3\xb1\x88\xb3",
		"BeakerRemoveOutline":                    "\xf3\xb1\x88\xb4",
		"Bed":                                    "\xf3\xb0\x8b\xa3",
		"BedClock":                               "\xf3\xb1\xae\x94",
		"BedDouble":                              "\xf3\xb0\xbf\x94",
		"BedDoubleOutline":                       "\xf3\xb0\xbf\x93",
		"BedEmpty":                               "\xf3\xb0\xa2\xa0",
		"BedKing":                                "\xf3\xb0\xbf\x92",
		"BedKingOutline":                         "\xf3\xb0\xbf\x91",
		"BedOutline":                             "\xf3\xb0\x82\x99",
		"BedQueen":                               "\xf3\xb0\xbf\x90",
		"BedQueenOutline":                        "\xf3\xb0\xbf\x9b",
		"BedSingle":                              "\xf3\xb1\x81\xad",
		"BedSingleOutline":                       "\xf3\xb1\x81\xae",
		"Bee":                                    "\xf3\xb0\xbe\xa1",
		"BeeFlower":                              "\xf3\xb0\xbe\xa2",
		"BeehiveOffOutline":                      "\xf3\xb1\x8f\xad",
		"BeehiveOutline":                         "\xf3\xb1\x83\x8e",
		"Beekeeper":                              "\xf3\xb1\x93\xa2",
		"Beer":                                   "\xf3\xb0\x82\x98",
		"BeerOutline":                            "\xf3\xb1\x8c\x8c",
		"Bell":                                   "\xf3\xb0\x82\x9a",
		"BellAlert":                              "\xf3\xb0\xb5\x99",
		"BellAlertOutline":                       "\xf3\xb0\xba\x81",
		"BellBadge":                              "\xf3\xb1\x85\xab",
		"BellBadgeOutline":                       "\xf3\xb0\x85\xb8",
		"BellCancel":                             "\xf3\xb1\x8f\xa7",
		"BellCancelOutline":                      "\xf3\xb1\x8f\xa8",
		"BellCheck":                              "\xf3\xb1\x87\xa5",
		"BellCheckOutline":                       "\xf3\xb1\x87\xa6",
		"BellCircle":                             "\xf3\xb0\xb5\x9a",
		"BellCircleOutline":                      "\xf3\xb0\xb5\x9b",
		"BellCog":                                "\xf3\xb1\xa8\xa9",
		"BellCogOutline":                         "\xf3\xb1\xa8\xaa",
		"BellMinus":                              "\xf3\xb1\x8f\xa9",
		"BellMinusOutline":                       "\xf3\xb1\x8f\xaa",
		"BellOff":                                "\xf3\xb0\x82\x9b",
		"BellOffOutline":                         "\xf3\xb0\xaa\x91",
		"BellOutline":                            "\xf3\xb0\x82\x9c",
		"BellPlus":                               "\xf3\xb0\x82\x9d",
		"BellPlusOutline":                        "\xf3\xb0\xaa\x92",
		"BellRemove":                             "\xf3\xb1\x8f\xab",
		"BellRemoveOutline":                      "\xf3\xb1\x8f\xac",
		"BellRing":                               "\xf3\xb0\x82\x9e",
		"BellRingOutline":                        "\xf3\xb0\x82\x9f",
		"BellSleep":                              "\xf3\xb0\x82\xa0",
		"BellSleepOutline":                       "\xf3\xb0\xaa\x93",
		"Bench":                                  "\xf3\xb1\xb0\xa1",
		"BenchBack":                              "\xf3\xb1\xb0\xa2",
		"Beta":                                   "\xf3\xb0\x82\xa1",
		"Betamax":                                "\xf3\xb0\xa7\x8b",
		"Biathlon":                               "\xf3\xb0\xb8\x94",
		"Bicycle":                                "\xf3\xb1\x82\x9c",
		"BicycleBasket":                          "\xf3\xb1\x88\xb5",
		"BicycleCargo":                           "\xf3\xb1\xa2\x9c",
		"BicycleElectric":                        "\xf3\xb1\x96\xb4",
		"BicyclePennyFarthing":                   "\xf3\xb1\x97\xa9",
		"Bike":                                   "\xf3\xb0\x82\xa3",
		"BikeFast":                               "\xf3\xb1\x84\x9f",
		"BikePedal":                              "\xf3\xb1\xb0\xa3",
		"BikePedalClipless":                      "\xf3\xb1\xb0\xa4",
		"BikePedalMountain":                      "\xf3\xb1\xb0\xa5",
		"Billboard":                              "\xf3\xb1\x80\x90",
		"Billiards":                              "\xf3\xb0\xad\xa1",
		"BilliardsRack":                          "\xf3\xb0\xad\xa2",
		"Binoculars":                             "\xf3\xb0\x82\xa5",
		"Bio":                                    "\xf3\xb0\x82\xa6",
		"Biohazard":                              "\xf3\xb0\x82\xa7",
		"Bird":                                   "\xf3\xb1\x97\x86",
		"Bitbucket":                              "\xf3\xb0\x82\xa8",
		"Bitcoin":                                "\xf3\xb0\xa0\x93",
		"BlackMesa":                              "\xf3\xb0\x82\xa9",
		"Blender":                                "\xf3\xb0\xb3\xab",
		"BlenderOutline":                         "\xf3\xb1\xa0\x9a",
		"BlenderSoftware":                        "\xf3\xb0\x82\xab",
		"Blinds":                                 "\xf3\xb0\x82\xac",
		"BlindsHorizontal":                       "\xf3\xb1\xa8\xab",
		"BlindsHorizontalClosed":                 "\xf3\xb1\xa8\xac",
		"BlindsOpen":                             "\xf3\xb1\x80\x91",
		"BlindsVertical":                         "\xf3\xb1\xa8\xad",
		"BlindsVerticalClosed":                   "\xf3\xb1\xa8\xae",
		"BlockHelper":                            "\xf3\xb0\x82\xad",
		"BloodBag":                               "\xf3\xb0\xb3\xac",
		"Bluetooth":                              "\xf3\xb0\x82\xaf",
		"BluetoothAudio":                         "\xf3\xb0\x82\xb0",
		"BluetoothConnect":                       "\xf3\xb0\x82\xb1",
		"BluetoothOff":                           "\xf3\xb0\x82\xb2",
		"BluetoothSettings":                      "\xf3\xb0\x82\xb3",
		"BluetoothTransfer":                      "\xf3\xb0\x82\xb4",
		"Blur":                                   "\xf3\xb0\x82\xb5",
		"BlurLinear":                             "\xf3\xb0\x82\xb6",
		"BlurOff":                                "\xf3\xb0\x82\xb7",
		"BlurRadial":                             "\xf3\xb0\x82\xb8",
		"Bolt":                                   "\xf3\xb0\xb6\xb3",
		"Bomb":                                   "\xf3\xb0\x9a\x91",
		"BombOff":                                "\xf3\xb0\x9b\x85",
		"Bone":                                   "\xf3\xb0\x82\xb9",
		"BoneOff":                                "\xf3\xb1\xa7\xa0",
		"Book":                                   "\xf3\xb0\x82\xba",
		"BookAccount":                            "\xf3\xb1\x8e\xad",
		"BookAccountOutline":                     "\xf3\xb1\x8e\xae",
		"BookAlert":                              "\xf3\xb1\x99\xbc",
		"BookAlertOutline":                       "\xf3\xb1\x99\xbd",
		"BookAlphabet":                           "\xf3\xb0\x98\x9d",
		"BookArrowDown":                          "\xf3\xb1\x99\xbe",
		"BookArrowDownOutline":                   "\xf3\xb1\x99\xbf",
		"BookArrowLeft":                          "\xf3\xb1\x9a\x80",
		"BookArrowLeftOutline":                   "\xf3\xb1\x9a\x81",
		"BookArrowRight":                         "\xf3\xb1\x9a\x82",
		"BookArrowRightOutline":                  "\xf3\xb1\x9a\x83",
		"BookArrowUp":                            "\xf3\xb1\x9a\x84",
		"BookArrowUpOutline":                     "\xf3\xb1\x9a\x85",
		"BookCancel":                             "\xf3\xb1\x9a\x86",
		"BookCancelOutline":                      "\xf3\xb1\x9a\x87",
		"BookCheck":                              "\xf3\xb1\x93\xb3",
		"BookCheckOutline":                       "\xf3\xb1\x93\xb4",
		"BookClock":                              "\xf3\xb1\x9a\x88",
		"BookClockOutline":                       "\xf3\xb1\x9a\x89",
		"BookCog":                                "\xf3\xb1\x9a\x8a",
		"BookCogOutline":                         "\xf3\xb1\x9a\x8b",
		"BookCross":                              "\xf3\xb0\x82\xa2",
		"BookEdit":                               "\xf3\xb1\x9a\x8c",
		"BookEditOutline":                        "\xf3\xb1\x9a\x8d",
		"BookEducation":                          "\xf3\xb1\x9b\x89",
		"BookEducationOutline":                   "\xf3\xb1\x9b\x8a",
		"BookHeart":                              "\xf3\xb1\xa8\x9d",
		"BookHeartOutline":                       "\xf3\xb1\xa8\x9e",
		"BookInformationVariant":                 "\xf3\xb1\x81\xaf",
		"BookLock":                               "\xf3\xb0\x9e\x9a",
		"BookLockOpen":                           "\xf3\xb0\x9e\x9b",
		"BookLockOpenOutline":                    "\xf3\xb1\x9a\x8e",
		"BookLockOutline":                        "\xf3\xb1\x9a\x8f",
		"BookMarker":                             "\xf3\xb1\x9a\x90",
		"BookMarkerOutline":                      "\xf3\xb1\x9a\x91",
		"BookMinus":                              "\xf3\xb0\x97\x99",
		"BookMinusMultiple":                      "\xf3\xb0\xaa\x94",
		"BookMinusMultipleOutline":               "\xf3\xb0\xa4\x8b",
		"BookMinusOutline":                       "\xf3\xb1\x9a\x92",
		"BookMultiple":                           "\xf3\xb0\x82\xbb",
		"BookMultipleOutline":                    "\xf3\xb0\x90\xb6",
		"BookMusic":                              "\xf3\xb0\x81\xa7",
		"BookMusicOutline":                       "\xf3\xb1\x9a\x93",
		"BookOff":                                "\xf3\xb1\x9a\x94",
		"BookOffOutline":                         "\xf3\xb1\x9a\x95",
		"BookOpen":                               "\xf3\xb0\x82\xbd",
		"BookOpenBlankVariant":                   "\xf3\xb0\x82\xbe",
		"BookOpenBlankVariantOutline":            "\xf3\xb1\xb3\x8b",
		"BookOpenOutline":                        "\xf3\xb0\xad\xa3",
		"BookOpenPageVariant":                    "\xf3\xb0\x97\x9a",
		"BookOpenPageVariantOutline":             "\xf3\xb1\x97\x96",
		"BookOpenVariant":                        "\xf3\xb1\x93\xb7",
		"BookOpenVariantOutline":                 "\xf3\xb1\xb3\x8c",
		"BookOutline":                            "\xf3\xb0\xad\xa4",
		"BookPlay":                               "\xf3\xb0\xba\x82",
		"BookPlayOutline":                        "\xf3\xb0\xba\x83",
		"BookPlus":                               "\xf3\xb0\x97\x9b",
		"BookPlusMultiple":                       "\xf3\xb0\xaa\x95",
		"BookPlusMultipleOutline":                "\xf3\xb0\xab\x9e",
		"BookPlusOutline":                        "\xf3\xb1\x9a\x96",
		"BookRefresh":                            "\xf3\xb1\x9a\x97",
		"BookRefreshOutline":                     "\xf3\xb1\x9a\x98",
		"BookRemove":                             "\xf3\xb0\xaa\x97",
		"BookRemoveMultiple":                     "\xf3\xb0\xaa\x96",
		"BookRemoveMultipleOutline":              "\xf3\xb0\x93\x8a",
		"BookRemoveOutline":                      "\xf3\xb1\x9a\x99",
		"BookSearch":                             "\xf3\xb0\xba\x84",
		"BookSearchOutline":                      "\xf3\xb0\xba\x85",
		"BookSettings":                           "\xf3\xb1\x9a\x9a",
		"BookSettingsOutline":                    "\xf3\xb1\x9a\x9b",
		"BookSync":                               "\xf3\xb1\x9a\x9c",
		"BookSyncOutline":                        "\xf3\xb1\x9b\x88",
		"BookVariant":                            "\xf3\xb0\x82\xbf",
		"Bookmark":                               "\xf3\xb0\x83\x80",
		"BookmarkBox":                            "\xf3\xb1\xad\xb5",
		"BookmarkBoxMultiple":                    "\xf3\xb1\xa5\xac",
		"BookmarkBoxMultipleOutline":             "\xf3\xb1\xa5\xad",
		"BookmarkBoxOutline":                     "\xf3\xb1\xad\xb6",
		"BookmarkCheck":                          "\xf3\xb0\x83\x81",
		"BookmarkCheckOutline":                   "\xf3\xb1\x8d\xbb",
		"BookmarkMinus":                          "\xf3\xb0\xa7\x8c",
		"BookmarkMinusOutline":                   "\xf3\xb0\xa7\x8d",
		"BookmarkMultiple":                       "\xf3\xb0\xb8\x95",
		"BookmarkMultipleOutline":                "\xf3\xb0\xb8\x96",
		"BookmarkMusic":                          "\xf3\xb0\x83\x82",
		"BookmarkMusicOutline":                   "\xf3\xb1\x8d\xb9",
		"BookmarkOff":                            "\xf3\xb0\xa7\x8e",
		"BookmarkOffOutline":                     "\xf3\xb0\xa7\x8f",
		"BookmarkOutline":                        "\xf3\xb0\x83\x83",
		"BookmarkPlus":                           "\xf3\xb0\x83\x85",
		"BookmarkPlusOutline":                    "\xf3\xb0\x83\x84",
		"BookmarkRemove":                         "\xf3\xb0\x83\x86",
		"BookmarkRemoveOutline":                  "\xf3\xb1\x8d\xba",
		"Bookshelf":                              "\xf3\xb1\x89\x9f",
		"BoomGate":                               "\xf3\xb0\xba\x86",
		"BoomGateAlert":                          "\xf3\xb0\xba\x87",
		"BoomGateAlertOutline":                   "\xf3\xb0\xba\x88",
		"BoomGateArrowDown":                      "\xf3\xb0\xba\x89",
		"BoomGateArrowDownOutline":               "\xf3\xb0\xba\x8a",
		"BoomGateArrowUp":                        "\xf3\xb0\xba\x8c",
		"BoomGateArrowUpOutline":                 "\xf3\xb0\xba\x8d",
		"BoomGateOutline":                        "\xf3\xb0\xba\x8b",
		"BoomGateUp":                             "\xf3\xb1\x9f\xb9",
		"BoomGateUpOutline":                      "\xf3\xb1\x9f\xba",
		"Boombox":                                "\xf3\xb0\x97\x9c",
		"Boomerang":                              "\xf3\xb1\x83\x8f",
		"Bootstrap":                              "\xf3\xb0\x9b\x86",
		"BorderAll":                              "\xf3\xb0\x83\x87",
		"BorderAllVariant":                       "\xf3\xb0\xa2\xa1",
		"BorderBottom":                           "\xf3\xb0\x83\x88",
		"BorderBottomVariant":                    "\xf3\xb0\xa2\xa2",
		"BorderColor":                            "\xf3\xb0\x83\x89",
		"BorderHorizontal":                       "\xf3\xb0\x83\x8a",
		"BorderInside":                           "\xf3\xb0\x83\x8b",
		"BorderLeft":                             "\xf3\xb0\x83\x8c",
		"BorderLeftVariant":                      "\xf3\xb0\xa2\xa3",
		"BorderNone":                             "\xf3\xb0\x83\x8d",
		"BorderNoneVariant":                      "\xf3\xb0\xa2\xa4",
		"BorderOutside":                          "\xf3\xb0\x83\x8e",
		"BorderRadius":                           "\xf3\xb1\xab\xb4",
		"BorderRight":                            "\xf3\xb0\x83\x8f",
		"BorderRightVariant":                     "\xf3\xb0\xa2\xa5",
		"BorderStyle":                            "\xf3\xb0\x83\x90",
		"BorderTop":                              "\xf3\xb0\x83\x91",
		"BorderTopVariant":                       "\xf3\xb0\xa2\xa6",
		"BorderVertical":                         "\xf3\xb0\x83\x92",
		"BottleSoda":                             "\xf3\xb1\x81\xb0",
		"BottleSodaClassic":                      "\xf3\xb1\x81\xb1",
		"BottleSodaClassicOutline":               "\xf3\xb1\x8d\xa3",
		"BottleSodaOutline":                      "\xf3\xb1\x81\xb2",
		"BottleTonic":                            "\xf3\xb1\x84\xae",
		"BottleTonicOutline":                     "\xf3\xb1\x84\xaf",
		"BottleTonicPlus":                        "\xf3\xb1\x84\xb0",
		"BottleTonicPlusOutline":                 "\xf3\xb1\x84\xb1",
		"BottleTonicSkull":                       "\xf3\xb1\x84\xb2",
		"BottleTonicSkullOutline":                "\xf3\xb1\x84\xb3",
		"BottleWine":                             "\xf3\xb0\xa1\x94",
		"BottleWineOutline":                      "\xf3\xb1\x8c\x90",
		"BowArrow":                               "\xf3\xb1\xa1\x81",
		"BowTie":                                 "\xf3\xb0\x99\xb8",
		"Bowl":                                   "\xf3\xb0\x8a\x8e",
		"BowlMix":                                "\xf3\xb0\x98\x97",
		"BowlMixOutline":                         "\xf3\xb0\x8b\xa4",
		"BowlOutline":                            "\xf3\xb0\x8a\xa9",
		"Bowling":                                "\xf3\xb0\x83\x93",
		"Box":                                    "\xf3\xb0\x83\x94",
		"BoxCutter":                              "\xf3\xb0\x83\x95",
		"BoxCutterOff":                           "\xf3\xb0\xad\x8a",
		"BoxShadow":                              "\xf3\xb0\x98\xb7",
		"BoxingGlove":                            "\xf3\xb0\xad\xa5",
		"Braille":                                "\xf3\xb0\xa7\x90",
		"Brain":                                  "\xf3\xb0\xa7\x91",
		"BreadSlice":                             "\xf3\xb0\xb3\xae",
		"BreadSliceOutline":                      "\xf3\xb0\xb3\xaf",
		"Bridge":                                 "\xf3\xb0\x98\x98",
		"Briefcase":                              "\xf3\xb0\x83\x96",
		"BriefcaseAccount":                       "\xf3\xb0\xb3\xb0",
		"BriefcaseAccountOutline":                "\xf3\xb0\xb3\xb1",
		"BriefcaseArrowLeftRight":                "\xf3\xb1\xaa\x8d",
		"BriefcaseArrowLeftRightOutline":         "\xf3\xb1\xaa\x8e",
		"BriefcaseArrowUpDown":                   "\xf3\xb1\xaa\x8f",
		"BriefcaseArrowUpDownOutline":            "\xf3\xb1\xaa\x90",
		"BriefcaseCheck":                         "\xf3\xb0\x83\x97",
		"BriefcaseCheckOutline":                  "\xf3\xb1\x8c\x9e",
		"BriefcaseClock":                         "\xf3\xb1\x83\x90",
		"BriefcaseClockOutline":                  "\xf3\xb1\x83\x91",
		"BriefcaseDownload":                      "\xf3\xb0\x83\x98",
		"BriefcaseDownloadOutline":               "\xf3\xb0\xb0\xbd",
		"BriefcaseEdit":                          "\xf3\xb0\xaa\x98",
		"BriefcaseEditOutline":                   "\xf3\xb0\xb0\xbe",
		"BriefcaseEye":                           "\xf3\xb1\x9f\x99",
		"BriefcaseEyeOutline":                    "\xf3\xb1\x9f\x9a",
		"BriefcaseMinus":                         "\xf3\xb0\xa8\xaa",
		"BriefcaseMinusOutline":                  "\xf3\xb0\xb0\xbf",
		"BriefcaseOff":                           "\xf3\xb1\x99\x98",
		"BriefcaseOffOutline":                    "\xf3\xb1\x99\x99",
		"BriefcaseOutline":                       "\xf3\xb0\xa0\x94",
		"BriefcasePlus":                          "\xf3\xb0\xa8\xab",
		"BriefcasePlusOutline":                   "\xf3\xb0\xb1\x80",
		"BriefcaseRemove":                        "\xf3\xb0\xa8\xac",
		"BriefcaseRemoveOutline":                 "\xf3\xb0\xb1\x81",
		"BriefcaseSearch":                        "\xf3\xb0\xa8\xad",
		"BriefcaseSearchOutline":                 "\xf3\xb0\xb1\x82",
		"BriefcaseUpload":                        "\xf3\xb0\x83\x99",
		"BriefcaseUploadOutline":                 "\xf3\xb0\xb1\x83",
		"BriefcaseVariant":                       "\xf3\xb1\x92\x94",
		"BriefcaseVariantOff":                    "\xf3\xb1\x99\x9a",
		"BriefcaseVariantOffOutline":             "\xf3\xb1\x99\x9b",
		"BriefcaseVariantOutline":                "\xf3\xb1\x92\x95",
		"Brightness1":                            "\xf3\xb0\x83\x9a",
		"Brightness2":                            "\xf3\xb0\x83\x9b",
		"Brightness3":                            "\xf3\xb0\x83\x9c",
		"Brightness4":                            "\xf3\xb0\x83\x9d",
		"Brightness5":                            "\xf3\xb0\x83\x9e",
		"Brightness6":                            "\xf3\xb0\x83\x9f",
		"Brightness7":                            "\xf3\xb0\x83\xa0",
		"BrightnessAuto":                         "\xf3\xb0\x83\xa1",
		"BrightnessPercent":                      "\xf3\xb0\xb3\xb2",
		"Broadcast":                              "\xf3\xb1\x9c\xa0",
		"BroadcastOff":                           "\xf3\xb1\x9c\xa1",
		"Broom":                                  "\xf3\xb0\x83\xa2",
		"Brush":                                  "\xf3\xb0\x83\xa3",
		"BrushOff":                               "\xf3\xb1\x9d\xb1",
		"BrushOutline":                           "\xf3\xb1\xa8\x8d",
		"BrushVariant":                           "\xf3\xb1\xa0\x93",
		"Bucket":                                 "\xf3\xb1\x90\x95",
		"BucketOutline":                          "\xf3\xb1\x90\x96",
		"Buffet":                                 "\xf3\xb0\x95\xb8",
		"Bug":                                    "\xf3\xb0\x83\xa4",
		"BugCheck":                               "\xf3\xb0\xa8\xae",
		"BugCheckOutline":                        "\xf3\xb0\xa8\xaf",
		"BugOutline":                             "\xf3\xb0\xa8\xb0",
		"BugPause":                               "\xf3\xb1\xab\xb5",
		"BugPauseOutline":                        "\xf3\xb1\xab\xb6",
		"BugPlay":                                "\xf3\xb1\xab\xb7",
		"BugPlayOutline":                         "\xf3\xb1\xab\xb8",
		"BugStop":                                "\xf3\xb1\xab\xb9",
		"BugStopOutline":                         "\xf3\xb1\xab\xba",
		"Bugle":                                  "\xf3\xb0\xb6\xb4",
		"BulkheadLight":                          "\xf3\xb1\xa8\xaf",
		"Bulldozer":                              "\xf3\xb0\xac\xa2",
		"Bullet":                                 "\xf3\xb0\xb3\xb3",
		"BulletinBoard":                          "\xf3\xb0\x83\xa5",
		"Bullhorn":                               "\xf3\xb0\x83\xa6",
		"BullhornOutline":                        "\xf3\xb0\xac\xa3",
		"BullhornVariant":                        "\xf3\xb1\xa5\xae",
		"BullhornVariantOutline":                 "\xf3\xb1\xa5\xaf",
		"Bullseye":                               "\xf3\xb0\x97\x9d",
		"BullseyeArrow":                          "\xf3\xb0\xa3\x89",
		"Bulma":                                  "\xf3\xb1\x8b\xa7",
		"BunkBed":                                "\xf3\xb1\x8c\x82",
		"BunkBedOutline":                         "\xf3\xb0\x82\x97",
		"Bus":                                    "\xf3\xb0\x83\xa7",
		"BusAlert":                               "\xf3\xb0\xaa\x99",
		"BusArticulatedEnd":                      "\xf3\xb0\x9e\x9c",
		"BusArticulatedFront":                    "\xf3\xb0\x9e\x9d",
		"BusClock":                               "\xf3\xb0\xa3\x8a",
		"BusDoubleDecker":                        "\xf3\xb0\x9e\x9e",
		"BusElectric":                            "\xf3\xb1\xa4\x9d",
		"BusMarker":                              "\xf3\xb1\x88\x92",
		"BusMultiple":                            "\xf3\xb0\xbc\xbf",
		"BusSchool":                              "\xf3\xb0\x9e\x9f",
		"BusSide":                                "\xf3\xb0\x9e\xa0",
		"BusSign":                                "\xf3\xb1\xb3\x81",
		"BusStop":                                "\xf3\xb1\x80\x92",
		"BusStopCovered":                         "\xf3\xb1\x80\x93",
		"BusStopUncovered":                       "\xf3\xb1\x80\x94",
		"BusWrench":                              "\xf3\xb1\xb3\x82",
		"Butterfly":                              "\xf3\xb1\x96\x89",
		"ButterflyOutline":                       "\xf3\xb1\x96\x8a",
		"ButtonCursor":                           "\xf3\xb1\xad\x8f",
		"ButtonPointer":                          "\xf3\xb1\xad\x90",
		"CabinAFrame":                            "\xf3\xb1\xa2\x8c",
		"CableData":                              "\xf3\xb1\x8e\x94",
		"Cached":                                 "\xf3\xb0\x83\xa8",
		"Cactus":                                 "\xf3\xb0\xb6\xb5",
		"Cake":                                   "\xf3\xb0\x83\xa9",
		"CakeLayered":                            "\xf3\xb0\x83\xaa",
		"CakeVariant":                            "\xf3\xb0\x83\xab",
		"CakeVariantOutline":                     "\xf3\xb1\x9f\xb0",
		"Calculator":                             "\xf3\xb0\x83\xac",
		"CalculatorVariant":                      "\xf3\xb0\xaa\x9a",
		"CalculatorVariantOutline":               "\xf3\xb1\x96\xa6",
		"Calendar":                               "\xf3\xb0\x83\xad",
		"CalendarAccount":                        "\xf3\xb0\xbb\x97",
		"CalendarAccountOutline":                 "\xf3\xb0\xbb\x98",
		"CalendarAlert":                          "\xf3\xb0\xa8\xb1",
		"CalendarAlertOutline":                   "\xf3\xb1\xad\xa2",
		"CalendarArrowLeft":                      "\xf3\xb1\x84\xb4",
		"CalendarArrowRight":                     "\xf3\xb1\x84\xb5",
		"CalendarBadge":                          "\xf3\xb1\xae\x9d",
		"CalendarBadgeOutline":                   "\xf3\xb1\xae\x9e",
		"CalendarBlank":                          "\xf3\xb0\x83\xae",
		"CalendarBlankMultiple":                  "\xf3\xb1\x81\xb3",
		"CalendarBlankOutline":                   "\xf3\xb0\xad\xa6",
		"CalendarCheck":                          "\xf3\xb0\x83\xaf",
		"CalendarCheckOutline":                   "\xf3\xb0\xb1\x84",
		"CalendarClock":                          "\xf3\xb0\x83\xb0",
		"CalendarClockOutline":                   "\xf3\xb1\x9b\xa1",
		"CalendarCollapseHorizontal":             "\xf3\xb1\xa2\x9d",
		"CalendarCollapseHorizontalOutline":      "\xf3\xb1\xad\xa3",
		"CalendarCursor":                         "\xf3\xb1\x95\xbb",
		"CalendarCursorOutline":                  "\xf3\xb1\xad\xa4",
		"CalendarEdit":                           "\xf3\xb0\xa2\xa7",
		"CalendarEditOutline":                    "\xf3\xb1\xad\xa5",
		"CalendarEnd":                            "\xf3\xb1\x99\xac",
		"CalendarEndOutline":                     "\xf3\xb1\xad\xa6",
		"CalendarExpandHorizontal":               "\xf3\xb1\xa2\x9e",
		"CalendarExpandHorizontalOutline":        "\xf3\xb1\xad\xa7",
		"CalendarExport":                         "\xf3\xb0\xac\xa4",
		"CalendarExportOutline":                  "\xf3\xb1\xad\xa8",
		"CalendarFilter":                         "\xf3\xb1\xa8\xb2",
		"CalendarFilterOutline":                  "\xf3\xb1\xa8\xb3",
		"CalendarHeart":                          "\xf3\xb0\xa7\x92",
		"CalendarHeartOutline":                   "\xf3\xb1\xad\xa9",
		"CalendarImport":                         "\xf3\xb0\xac\xa5",
		"CalendarImportOutline":                  "\xf3\xb1\xad\xaa",
		"CalendarLock":                           "\xf3\xb1\x99\x81",
		"CalendarLockOpen":                       "\xf3\xb1\xad\x9b",
		"CalendarLockOpenOutline":                "\xf3\xb1\xad\x9c",
		"CalendarLockOutline":                    "\xf3\xb1\x99\x82",
		"CalendarMinus":                          "\xf3\xb0\xb5\x9c",
		"CalendarMinusOutline":                   "\xf3\xb1\xad\xab",
		"CalendarMonth":                          "\xf3\xb0\xb8\x97",
		"CalendarMonthOutline":                   "\xf3\xb0\xb8\x98",
		"CalendarMultiple":                       "\xf3\xb0\x83\xb1",
		"CalendarMultipleCheck":                  "\xf3\xb0\x83\xb2",
		"CalendarMultiselect":                    "\xf3\xb0\xa8\xb2",
		"CalendarMultiselectOutline":             "\xf3\xb1\xad\x95",
		"CalendarOutline":                        "\xf3\xb0\xad\xa7",
		"CalendarPlus":                           "\xf3\xb0\x83\xb3",
		"CalendarPlusOutline":                    "\xf3\xb1\xad\xac",
		"CalendarQuestion":                       "\xf3\xb0\x9a\x92",
		"CalendarQuestionOutline":                "\xf3\xb1\xad\xad",
		"CalendarRange":                          "\xf3\xb0\x99\xb9",
		"CalendarRangeOutline":                   "\xf3\xb0\xad\xa8",
		"CalendarRefresh":                        "\xf3\xb0\x87\xa1",
		"CalendarRefreshOutline":                 "\xf3\xb0\x88\x83",
		"CalendarRemove":                         "\xf3\xb0\x83\xb4",
		"CalendarRemoveOutline":                  "\xf3\xb0\xb1\x85",
		"CalendarSearch":                         "\xf3\xb0\xa5\x8c",
		"CalendarSearchOutline":                  "\xf3\xb1\xad\xae",
		"CalendarStar":                           "\xf3\xb0\xa7\x93",
		"CalendarStarFourPoints":                 "\xf3\xb1\xb0\x9f",
		"CalendarStarOutline":                    "\xf3\xb1\xad\x93",
		"CalendarStart":                          "\xf3\xb1\x99\xad",
		"CalendarStartOutline":                   "\xf3\xb1\xad\xaf",
		"CalendarSync":                           "\xf3\xb0\xba\x8e",
		"CalendarSyncOutline":                    "\xf3\xb0\xba\x8f",
		"CalendarText":                           "\xf3\xb0\x83\xb5",
		"CalendarTextOutline":                    "\xf3\xb0\xb1\x86",
		"CalendarToday":                          "\xf3\xb0\x83\xb6",
		"CalendarTodayOutline":                   "\xf3\xb1\xa8\xb0",
		"CalendarWeek":                           "\xf3\xb0\xa8\xb3",
		"CalendarWeekBegin":                      "\xf3\xb0\xa8\xb4",
		"CalendarWeekBeginOutline":               "\xf3\xb1\xa8\xb1",
		"CalendarWeekOutline":                    "\xf3\xb1\xa8\xb4",
		"CalendarWeekend":                        "\xf3\xb0\xbb\x99",
		"CalendarWeekendOutline":                 "\xf3\xb0\xbb\x9a",
		"CallMade":                               "\xf3\xb0\x83\xb7",
		"CallMerge":                              "\xf3\xb0\x83\xb8",
		"CallMissed":                             "\xf3\xb0\x83\xb9",
		"CallReceived":                           "\xf3\xb0\x83\xba",
		"CallSplit":                              "\xf3\xb0\x83\xbb",
		"Camcorder":                              "\xf3\xb0\x83\xbc",
		"CamcorderOff":                           "\xf3\xb0\x83\xbf",
		"Camera":                                 "\xf3\xb0\x84\x80",
		"CameraAccount":                          "\xf3\xb0\xa3\x8b",
		"CameraBurst":                            "\xf3\xb0\x9a\x93",
		"CameraControl":                          "\xf3\xb0\xad\xa9",
		"CameraDocument":                         "\xf3\xb1\xa1\xb1",
		"CameraDocumentOff":                      "\xf3\xb1\xa1\xb2",
		"CameraEnhance":                          "\xf3\xb0\x84\x81",
		"CameraEnhanceOutline":                   "\xf3\xb0\xad\xaa",
		"CameraFlip":                             "\xf3\xb1\x97\x99",
		"CameraFlipOutline":                      "\xf3\xb1\x97\x9a",
		"CameraFront":                            "\xf3\xb0\x84\x82",
		"CameraFrontVariant":                     "\xf3\xb0\x84\x83",
		"CameraGopro":                            "\xf3\xb0\x9e\xa1",
		"CameraImage":                            "\xf3\xb0\xa3\x8c",
		"CameraIris":                             "\xf3\xb0\x84\x84",
		"CameraLock":                             "\xf3\xb1\xa8\x94",
		"CameraLockOpen":                         "\xf3\xb1\xb0\x8d",
		"CameraLockOpenOutline":                  "\xf3\xb1\xb0\x8e",
		"CameraLockOutline":                      "\xf3\xb1\xa8\x95",
		"CameraMarker":                           "\xf3\xb1\xa6\xa7",
		"CameraMarkerOutline":                    "\xf3\xb1\xa6\xa8",
		"CameraMeteringCenter":                   "\xf3\xb0\x9e\xa2",
		"CameraMeteringMatrix":                   "\xf3\xb0\x9e\xa3",
		"CameraMeteringPartial":                  "\xf3\xb0\x9e\xa4",
		"CameraMeteringSpot":                     "\xf3\xb0\x9e\xa5",
		"CameraOff":                              "\xf3\xb0\x97\x9f",
		"CameraOffOutline":                       "\xf3\xb1\xa6\xbf",
		"CameraOutline":                          "\xf3\xb0\xb5\x9d",
		"CameraPartyMode":                        "\xf3\xb0\x84\x85",
		"CameraPlus":                             "\xf3\xb0\xbb\x9b",
		"CameraPlusOutline":                      "\xf3\xb0\xbb\x9c",
		"CameraRear":                             "\xf3\xb0\x84\x86",
		"CameraRearVariant":                      "\xf3\xb0\x84\x87",
		"CameraRetake":                           "\xf3\xb0\xb8\x99",
		"CameraRetakeOutline":                    "\xf3\xb0\xb8\x9a",
		"CameraSwitch":                           "\xf3\xb0\x84\x88",
		"CameraSwitchOutline":                    "\xf3\xb0\xa1\x8a",
		"CameraTimer":                            "\xf3\xb0\x84\x89",
		"CameraWireless":                         "\xf3\xb0\xb6\xb6",
		"CameraWirelessOutline":                  "\xf3\xb0\xb6\xb7",
		"Campfire":                               "\xf3\xb0\xbb\x9d",
		"Cancel":                                 "\xf3\xb0\x9c\xba",
		"Candelabra":                             "\xf3\xb1\x9f\x92",
		"CandelabraFire":                         "\xf3\xb1\x9f\x93",
		"Candle":                                 "\xf3\xb0\x97\xa2",
		"Candy":                                  "\xf3\xb1\xa5\xb0",
		"CandyOff":                               "\xf3\xb1\xa5\xb1",
		"CandyOffOutline":                        "\xf3\xb1\xa5\xb2",
		"CandyOutline":                           "\xf3\xb1\xa5\xb3",
		"Candycane":                              "\xf3\xb0\x84\x8a",
		"Cannabis":                               "\xf3\xb0\x9e\xa6",
		"CannabisOff":                            "\xf3\xb1\x99\xae",
		"CapsLock":                               "\xf3\xb0\xaa\x9b",
		"Car":                                    "\xf3\xb0\x84\x8b",
		"Car2Plus":                               "\xf3\xb1\x80\x95",
		"Car3Plus":                               "\xf3\xb1\x80\x96",
		"CarArrowLeft":                           "\xf3\xb1\x8e\xb2",
		"CarArrowRight":                          "\xf3\xb1\x8e\xb3",
		"CarBack":                                "\xf3\xb0\xb8\x9b",
		"CarBattery":                             "\xf3\xb0\x84\x8c",
		"CarBrakeAbs":                            "\xf3\xb0\xb1\x87",
		"CarBrakeAlert":                          "\xf3\xb0\xb1\x88",
		"CarBrakeFluidLevel":                     "\xf3\xb1\xa4\x89",
		"CarBrakeHold":                           "\xf3\xb0\xb5\x9e",
		"CarBrakeLowPressure":                    "\xf3\xb1\xa4\x8a",
		"CarBrakeParking":                        "\xf3\xb0\xb5\x9f",
		"CarBrakeRetarder":                       "\xf3\xb1\x80\x97",
		"CarBrakeTemperature":                    "\xf3\xb1\xa4\x8b",
		"CarBrakeWornLinings":                    "\xf3\xb1\xa4\x8c",
		"CarChildSeat":                           "\xf3\xb0\xbe\xa3",
		"CarClock":                               "\xf3\xb1\xa5\xb4",
		"CarClutch":                              "\xf3\xb1\x80\x98",
		"CarCog":                                 "\xf3\xb1\x8f\x8c",
		"CarConnected":                           "\xf3\xb0\x84\x8d",
		"CarConvertible":                         "\xf3\xb0\x9e\xa7",
		"CarCoolantLevel":                        "\xf3\xb1\x80\x99",
		"CarCruiseControl":                       "\xf3\xb0\xb5\xa0",
		"CarDefrostFront":                        "\xf3\xb0\xb5\xa1",
		"CarDefrostRear":                         "\xf3\xb0\xb5\xa2",
		"CarDoor":                                "\xf3\xb0\xad\xab",
		"CarDoorLock":                            "\xf3\xb1\x82\x9d",
		"CarDoorLockOpen":                        "\xf3\xb1\xb2\x81",
		"CarElectric":                            "\xf3\xb0\xad\xac",
		"CarElectricOutline":                     "\xf3\xb1\x96\xb5",
		"CarEmergency":                           "\xf3\xb1\x98\x8f",
		"CarEsp":                                 "\xf3\xb0\xb1\x89",
		"CarEstate":                              "\xf3\xb0\x9e\xa8",
		"CarHatchback":                           "\xf3\xb0\x9e\xa9",
		"CarInfo":                                "\xf3\xb1\x86\xbe",
		"CarKey":                                 "\xf3\xb0\xad\xad",
		"CarLiftedPickup":                        "\xf3\xb1\x94\xad",
		"CarLightAlert":                          "\xf3\xb1\xa4\x8d",
		"CarLightDimmed":                         "\xf3\xb0\xb1\x8a",
		"CarLightFog":                            "\xf3\xb0\xb1\x8b",
		"CarLightHigh":                           "\xf3\xb0\xb1\x8c",
		"CarLimousine":                           "\xf3\xb0\xa3\x8d",
		"CarMultiple":                            "\xf3\xb0\xad\xae",
		"CarOff":                                 "\xf3\xb0\xb8\x9c",
		"CarOutline":                             "\xf3\xb1\x93\xad",
		"CarParkingLights":                       "\xf3\xb0\xb5\xa3",
		"CarPickup":                              "\xf3\xb0\x9e\xaa",
		"CarSearch":                              "\xf3\xb1\xae\x8d",
		"CarSearchOutline":                       "\xf3\xb1\xae\x8e",
		"CarSeat":                                "\xf3\xb0\xbe\xa4",
		"CarSeatCooler":                          "\xf3\xb0\xbe\xa5",
		"CarSeatHeater":                          "\xf3\xb0\xbe\xa6",
		"CarSelect":                              "\xf3\xb1\xa1\xb9",
		"CarSettings":                            "\xf3\xb1\x8f\x8d",
		"CarShiftPattern":                        "\xf3\xb0\xbd\x80",
		"CarSide":                                "\xf3\xb0\x9e\xab",
		"CarSpeedLimiter":                        "\xf3\xb1\xa4\x8e",
		"CarSports":                              "\xf3\xb0\x9e\xac",
		"CarTireAlert":                           "\xf3\xb0\xb1\x8d",
		"CarTractionControl":                     "\xf3\xb0\xb5\xa4",
		"CarTurbocharger":                        "\xf3\xb1\x80\x9a",
		"CarWash":                                "\xf3\xb0\x84\x8e",
		"CarWindshield":                          "\xf3\xb1\x80\x9b",
		"CarWindshieldOutline":                   "\xf3\xb1\x80\x9c",
		"CarWireless":                            "\xf3\xb1\xa1\xb8",
		"CarWrench":                              "\xf3\xb1\xa0\x94",
		"Carabiner":                              "\xf3\xb1\x93\x80",
		"Caravan":                                "\xf3\xb0\x9e\xad",
		"Card":                                   "\xf3\xb0\xad\xaf",
		"CardAccountDetails":                     "\xf3\xb0\x97\x92",
		"CardAccountDetailsOutline":              "\xf3\xb0\xb6\xab",
		"CardAccountDetailsStar":                 "\xf3\xb0\x8a\xa3",
		"CardAccountDetailsStarOutline":          "\xf3\xb0\x9b\x9b",
		"CardAccountMail":                        "\xf3\xb0\x86\x8e",
		"CardAccountMailOutline":                 "\xf3\xb0\xba\x98",
		"CardAccountPhone":                       "\xf3\xb0\xba\x99",
		"CardAccountPhoneOutline":                "\xf3\xb0\xba\x9a",
		"CardBulleted":                           "\xf3\xb0\xad\xb0",
		"CardBulletedOff":                        "\xf3\xb0\xad\xb1",
		"CardBulletedOffOutline":                 "\xf3\xb0\xad\xb2",
		"CardBulletedOutline":                    "\xf3\xb0\xad\xb3",
		"CardBulletedSettings":                   "\xf3\xb0\xad\xb4",
		"CardBulletedSettingsOutline":            "\xf3\xb0\xad\xb5",
		"CardMinus":                              "\xf3\xb1\x98\x80",
		"CardMinusOutline":                       "\xf3\xb1\x98\x81",
		"CardMultiple":                           "\xf3\xb1\x9f\xb1",
		"CardMultipleOutline":                    "\xf3\xb1\x9f\xb2",
		"CardOff":                                "\xf3\xb1\x98\x82",
		"CardOffOutline":                         "\xf3\xb1\x98\x83",
		"CardOutline":                            "\xf3\xb0\xad\xb6",
		"CardPlus":                               "\xf3\xb1\x87\xbf",
		"CardPlusOutline":                        "\xf3\xb1\x88\x80",
		"CardRemove":                             "\xf3\xb1\x98\x84",
		"CardRemoveOutline":                      "\xf3\xb1\x98\x85",
		"CardSearch":                             "\xf3\xb1\x81\xb4",
		"CardSearchOutline":                      "\xf3\xb1\x81\xb5",
		"CardText":                               "\xf3\xb0\xad\xb7",
		"CardTextOutline":                        "\xf3\xb0\xad\xb8",
		"Cards":                                  "\xf3\xb0\x98\xb8",
		"CardsClub":                              "\xf3\xb0\xa3\x8e",
		"CardsClubOutline":                       "\xf3\xb1\xa2\x9f",
		"CardsDiamond":                           "\xf3\xb0\xa3\x8f",
		"CardsDiamondOutline":                    "\xf3\xb1\x80\x9d",
		"CardsHeart":                             "\xf3\xb0\xa3\x90",
		"CardsHeartOutline":                      "\xf3\xb1\xa2\xa0",
		"CardsOutline":                           "\xf3\xb0\x98\xb9",
		"CardsPlaying":                           "\xf3\xb1\xa2\xa1",
		"CardsPlayingClub":                       "\xf3\xb1\xa2\xa2",
		"CardsPlayingClubMultiple":               "\xf3\xb1\xa2\xa3",
		"CardsPlayingClubMultipleOutline":        "\xf3\xb1\xa2\xa4",
		"CardsPlayingClubOutline":                "\xf3\xb1\xa2\xa5",
		"CardsPlayingDiamond":                    "\xf3\xb1\xa2\xa6",
		"CardsPlayingDiamondMultiple":            "\xf3\xb1\xa2\xa7",
		"CardsPlayingDiamondMultipleOutline":     "\xf3\xb1\xa2\xa8",
		"CardsPlayingDiamondOutline":             "\xf3\xb1\xa2\xa9",
		"CardsPlayingHeart":                      "\xf3\xb1\xa2\xaa",
		"CardsPlayingHeartMultiple":              "\xf3\xb1\xa2\xab",
		"CardsPlayingHeartMultipleOutline":       "\xf3\xb1\xa2\xac",
		"CardsPlayingHeartOutline":               "\xf3\xb1\xa2\xad",
		"CardsPlayingOutline":                    "\xf3\xb0\x98\xba",
		"CardsPlayingSpade":                      "\xf3\xb1\xa2\xae",
		"CardsPlayingSpadeMultiple":              "\xf3\xb1\xa2\xaf",
		"CardsPlayingSpadeMultipleOutline":       "\xf3\xb1\xa2\xb0",
		"CardsPlayingSpadeOutline":               "\xf3\xb1\xa2\xb1",
		"CardsSpade":                             "\xf3\xb0\xa3\x91",
		"CardsSpadeOutline":                      "\xf3\xb1\xa2\xb2",
		"CardsVariant":                           "\xf3\xb0\x9b\x87",
		"Carrot":                                 "\xf3\xb0\x84\x8f",
		"Cart":                                   "\xf3\xb0\x84\x90",
		"CartArrowDown":                          "\xf3\xb0\xb5\xa6",
		"CartArrowRight":                         "\xf3\xb0\xb1\x8e",
		"CartArrowUp":                            "\xf3\xb0\xb5\xa7",
		"CartCheck":                              "\xf3\xb1\x97\xaa",
		"CartHeart":                              "\xf3\xb1\xa3\xa0",
		"CartMinus":                              "\xf3\xb0\xb5\xa8",
		"CartOff":                                "\xf3\xb0\x99\xab",
		"CartOutline":                            "\xf3\xb0\x84\x91",
		"CartPercent":                            "\xf3\xb1\xae\xae",
		"CartPlus":                               "\xf3\xb0\x84\x92",
		"CartRemove":                             "\xf3\xb0\xb5\xa9",
		"CartVariant":                            "\xf3\xb1\x97\xab",
		"CaseSensitiveAlt":                       "\xf3\xb0\x84\x93",
		"Cash":                                   "\xf3\xb0\x84\x94",
		"Cash100":                                "\xf3\xb0\x84\x95",
		"CashCheck":                              "\xf3\xb1\x93\xae",
		"CashClock":                              "\xf3\xb1\xaa\x91",
		"CashEdit":                               "\xf3\xb1\xb2\xab",
		"CashFast":                               "\xf3\xb1\xa1\x9c",
		"CashLock":                               "\xf3\xb1\x93\xaa",
		"CashLockOpen":                           "\xf3\xb1\x93\xab",
		"CashMarker":                             "\xf3\xb0\xb6\xb8",
		"CashMinus":                              "\xf3\xb1\x89\xa0",
		"CashMultiple":                           "\xf3\xb0\x84\x96",
		"CashOff":                                "\xf3\xb1\xb1\xb9",
		"CashPlus":                               "\xf3\xb1\x89\xa1",
		"CashRefund":                             "\xf3\xb0\xaa\x9c",
		"CashRegister":                           "\xf3\xb0\xb3\xb4",
		"CashRemove":                             "\xf3\xb1\x89\xa2",
		"CashSync":                               "\xf3\xb1\xaa\x92",
		"Cassette":                               "\xf3\xb0\xa7\x94",
		"Cast":                                   "\xf3\xb0\x84\x98",
		"CastAudio":                              "\xf3\xb1\x80\x9e",
		"CastAudioVariant":                       "\xf3\xb1\x9d\x89",
		"CastConnected":                          "\xf3\xb0\x84\x99",
		"CastEducation":                          "\xf3\xb0\xb8\x9d",
		"CastOff":                                "\xf3\xb0\x9e\x8a",
		"CastVariant":                            "\xf3\xb0\x80\x9f",
		"Castle":                                 "\xf3\xb0\x84\x9a",
		"Cat":                                    "\xf3\xb0\x84\x9b",
		"Cctv":                                   "\xf3\xb0\x9e\xae",
		"CctvOff":                                "\xf3\xb1\xa1\x9f",
		"CeilingFan":                             "\xf3\xb1\x9e\x97",
		"CeilingFanLight":                        "\xf3\xb1\x9e\x98",
		"CeilingLight":                           "\xf3\xb0\x9d\xa9",
		"CeilingLightMultiple":                   "\xf3\xb1\xa3\x9d",
		"CeilingLightMultipleOutline":            "\xf3\xb1\xa3\x9e",
		"CeilingLightOutline":                    "\xf3\xb1\x9f\x87",
		"Cellphone":                              "\xf3\xb0\x84\x9c",
		"CellphoneArrowDown":                     "\xf3\xb0\xa7\x95",
		"CellphoneArrowDownVariant":              "\xf3\xb1\xa7\x85",
		"CellphoneBasic":                         "\xf3\xb0\x84\x9e",
		"CellphoneCharging":                      "\xf3\xb1\x8e\x97",
		"CellphoneCheck":                         "\xf3\xb1\x9f\xbd",
		"CellphoneCog":                           "\xf3\xb0\xa5\x91",
		"CellphoneDock":                          "\xf3\xb0\x84\x9f",
		"CellphoneInformation":                   "\xf3\xb0\xbd\x81",
		"CellphoneKey":                           "\xf3\xb0\xa5\x8e",
		"CellphoneLink":                          "\xf3\xb0\x84\xa1",
		"CellphoneLinkOff":                       "\xf3\xb0\x84\xa2",
		"CellphoneLock":                          "\xf3\xb0\xa5\x8f",
		"CellphoneMarker":                        "\xf3\xb1\xa0\xba",
		"CellphoneMessage":                       "\xf3\xb0\xa3\x93",
		"CellphoneMessageOff":                    "\xf3\xb1\x83\x92",
		"CellphoneNfc":                           "\xf3\xb0\xba\x90",
		"CellphoneNfcOff":                        "\xf3\xb1\x8b\x98",
		"CellphoneOff":                           "\xf3\xb0\xa5\x90",
		"CellphonePlay":                          "\xf3\xb1\x80\x9f",
		"CellphoneRemove":                        "\xf3\xb0\xa5\x8d",
		"CellphoneScreenshot":                    "\xf3\xb0\xa8\xb5",
		"CellphoneSettings":                      "\xf3\xb0\x84\xa3",
		"CellphoneSound":                         "\xf3\xb0\xa5\x92",
		"CellphoneText":                          "\xf3\xb0\xa3\x92",
		"CellphoneWireless":                      "\xf3\xb0\xa0\x95",
		"Centos":                                 "\xf3\xb1\x84\x9a",
		"Certificate":                            "\xf3\xb0\x84\xa4",
		"CertificateOutline":                     "\xf3\xb1\x86\x88",
		"ChairRolling":                           "\xf3\xb0\xbd\x88",
		"ChairSchool":                            "\xf3\xb0\x84\xa5",
		"Chandelier":                             "\xf3\xb1\x9e\x93",
		"Charity":                                "\xf3\xb0\xb1\x8f",
		"CharitySearch":                          "\xf3\xb1\xb2\x82",
		"ChartArc":                               "\xf3\xb0\x84\xa6",
		"ChartAreaspline":                        "\xf3\xb0\x84\xa7",
		"ChartAreasplineVariant":                 "\xf3\xb0\xba\x91",
		"ChartBar":                               "\xf3\xb0\x84\xa8",
		"ChartBarStacked":                        "\xf3\xb0\x9d\xaa",
		"ChartBellCurve":                         "\xf3\xb0\xb1\x90",
		"ChartBellCurveCumulative":               "\xf3\xb0\xbe\xa7",
		"ChartBox":                               "\xf3\xb1\x95\x8d",
		"ChartBoxMultiple":                       "\xf3\xb1\xb3\x8d",
		"ChartBoxMultipleOutline":                "\xf3\xb1\xb3\x8e",
		"ChartBoxOutline":                        "\xf3\xb1\x95\x8e",
		"ChartBoxPlusOutline":                    "\xf3\xb1\x95\x8f",
		"ChartBubble":                            "\xf3\xb0\x97\xa3",
		"ChartDonut":                             "\xf3\xb0\x9e\xaf",
		"ChartDonutVariant":                      "\xf3\xb0\x9e\xb0",
		"ChartGantt":                             "\xf3\xb0\x99\xac",
		"ChartHistogram":                         "\xf3\xb0\x84\xa9",
		"ChartLine":                              "\xf3\xb0\x84\xaa",
		"ChartLineStacked":                       "\xf3\xb0\x9d\xab",
		"ChartLineVariant":                       "\xf3\xb0\x9e\xb1",
		"ChartMultiline":                         "\xf3\xb0\xa3\x94",
		"ChartMultiple":                          "\xf3\xb1\x88\x93",
		"ChartPie":                               "\xf3\xb0\x84\xab",
		"ChartPieOutline":                        "\xf3\xb1\xaf\x9f",
		"ChartPpf":                               "\xf3\xb1\x8e\x80",
		"ChartSankey":                            "\xf3\xb1\x87\x9f",
		"ChartSankeyVariant":                     "\xf3\xb1\x87\xa0",
		"ChartScatterPlot":                       "\xf3\xb0\xba\x92",
		"ChartScatterPlotHexbin":                 "\xf3\xb0\x99\xad",
		"ChartTimeline":                          "\xf3\xb0\x99\xae",
		"ChartTimelineVariant":                   "\xf3\xb0\xba\x93",
		"ChartTimelineVariantShimmer":            "\xf3\xb1\x96\xb6",
		"ChartTree":                              "\xf3\xb0\xba\x94",
		"ChartWaterfall":                         "\xf3\xb1\xa4\x98",
		"Chat":                                   "\xf3\xb0\xad\xb9",
		"ChatAlert":                              "\xf3\xb0\xad\xba",
		"ChatAlertOutline":                       "\xf3\xb1\x8b\x89",
		"ChatMinus":                              "\xf3\xb1\x90\x90",
		"ChatMinusOutline":                       "\xf3\xb1\x90\x93",
		"ChatOutline":                            "\xf3\xb0\xbb\x9e",
		"ChatPlus":                               "\xf3\xb1\x90\x8f",
		"ChatPlusOutline":                        "\xf3\xb1\x90\x92",
		"ChatProcessing":                         "\xf3\xb0\xad\xbb",
		"ChatProcessingOutline":                  "\xf3\xb1\x8b\x8a",
		"ChatQuestion":                           "\xf3\xb1\x9c\xb8",
		"ChatQuestionOutline":                    "\xf3\xb1\x9c\xb9",
		"ChatRemove":                             "\xf3\xb1\x90\x91",
		"ChatRemoveOutline":                      "\xf3\xb1\x90\x94",
		"ChatSleep":                              "\xf3\xb1\x8b\x91",
		"ChatSleepOutline":                       "\xf3\xb1\x8b\x92",
		"Check":                                  "\xf3\xb0\x84\xac",
		"CheckAll":                               "\xf3\xb0\x84\xad",
		"CheckBold":                              "\xf3\xb0\xb8\x9e",
		"CheckCircle":                            "\xf3\xb0\x97\xa0",
		"CheckCircleOutline":                     "\xf3\xb0\x97\xa1",
		"CheckDecagram":                          "\xf3\xb0\x9e\x91",
		"CheckDecagramOutline":                   "\xf3\xb1\x9d\x80",
		"CheckNetwork":                           "\xf3\xb0\xb1\x93",
		"CheckNetworkOutline":                    "\xf3\xb0\xb1\x94",
		"CheckOutline":                           "\xf3\xb0\xa1\x95",
		"CheckUnderline":                         "\xf3\xb0\xb8\x9f",
		"CheckUnderlineCircle":                   "\xf3\xb0\xb8\xa0",
		"CheckUnderlineCircleOutline":            "\xf3\xb0\xb8\xa1",
		"Checkbook":                              "\xf3\xb0\xaa\x9d",
		"CheckbookArrowLeft":                     "\xf3\xb1\xb0\x9d",
		"CheckbookArrowRight":                    "\xf3\xb1\xb0\x9e",
		"CheckboxBlank":                          "\xf3\xb0\x84\xae",
		"CheckboxBlankBadge":                     "\xf3\xb1\x85\xb6",
		"CheckboxBlankBadgeOutline":              "\xf3\xb0\x84\x97",
		"CheckboxBlankCircle":                    "\xf3\xb0\x84\xaf",
		"CheckboxBlankCircleOutline":             "\xf3\xb0\x84\xb0",
		"CheckboxBlankOff":                       "\xf3\xb1\x8b\xac",
		"CheckboxBlankOffOutline":                "\xf3\xb1\x8b\xad",
		"CheckboxBlankOutline":                   "\xf3\xb0\x84\xb1",
		"CheckboxIntermediate":                   "\xf3\xb0\xa1\x96",
		"CheckboxIntermediateVariant":            "\xf3\xb1\xad\x94",
		"CheckboxMarked":                         "\xf3\xb0\x84\xb2",
		"CheckboxMarkedCircle":                   "\xf3\xb0\x84\xb3",
		"CheckboxMarkedCircleAutoOutline":        "\xf3\xb1\xb0\xa6",
		"CheckboxMarkedCircleMinusOutline":       "\xf3\xb1\xb0\xa7",
		"CheckboxMarkedCircleOutline":            "\xf3\xb0\x84\xb4",
		"CheckboxMarkedCirclePlusOutline":        "\xf3\xb1\xa4\xa7",
		"CheckboxMarkedOutline":                  "\xf3\xb0\x84\xb5",
		"CheckboxMultipleBlank":                  "\xf3\xb0\x84\xb6",
		"CheckboxMultipleBlankCircle":            "\xf3\xb0\x98\xbb",
		"CheckboxMultipleBlankCircleOutline":     "\xf3\xb0\x98\xbc",
		"CheckboxMultipleBlankOutline":           "\xf3\xb0\x84\xb7",
		"CheckboxMultipleMarked":                 "\xf3\xb0\x84\xb8",
		"CheckboxMultipleMarkedCircle":           "\xf3\xb0\x98\xbd",
		"CheckboxMultipleMarkedCircleOutline":    "\xf3\xb0\x98\xbe",
		"CheckboxMultipleMarkedOutline":          "\xf3\xb0\x84\xb9",
		"CheckboxMultipleOutline":                "\xf3\xb0\xb1\x91",
		"CheckboxOutline":                        "\xf3\xb0\xb1\x92",
		"Checkerboard":                           "\xf3\xb0\x84\xba",
		"CheckerboardMinus":                      "\xf3\xb1\x88\x82",
		"CheckerboardPlus":                       "\xf3\xb1\x88\x81",
		"CheckerboardRemove":                     "\xf3\xb1\x88\x83",
		"Cheese":                                 "\xf3\xb1\x8a\xb9",
		"CheeseOff":                              "\xf3\xb1\x8f\xae",
		"ChefHat":                                "\xf3\xb0\xad\xbc",
		"ChemicalWeapon":                         "\xf3\xb0\x84\xbb",
		"ChessBishop":                            "\xf3\xb0\xa1\x9c",
		"ChessKing":                              "\xf3\xb0\xa1\x97",
		"ChessKnight":                            "\xf3\xb0\xa1\x98",
		"ChessPawn":                              "\xf3\xb0\xa1\x99",
		"ChessQueen":                             "\xf3\xb0\xa1\x9a",
		"ChessRook":                              "\xf3\xb0\xa1\x9b",
		"ChevronDoubleDown":                      "\xf3\xb0\x84\xbc",
		"ChevronDoubleLeft":                      "\xf3\xb0\x84\xbd",
		"ChevronDoubleRight":                     "\xf3\xb0\x84\xbe",
		"ChevronDoubleUp":                        "\xf3\xb0\x84\xbf",
		"ChevronDown":                            "\xf3\xb0\x85\x80",
		"ChevronDownBox":                         "\xf3\xb0\xa7\x96",
		"ChevronDownBoxOutline":                  "\xf3\xb0\xa7\x97",
		"ChevronDownCircle":                      "\xf3\xb0\xac\xa6",
		"ChevronDownCircleOutline":               "\xf3\xb0\xac\xa7",
		"ChevronLeft":                            "\xf3\xb0\x85\x81",
		"ChevronLeftBox":                         "\xf3\xb0\xa7\x98",
		"ChevronLeftBoxOutline":                  "\xf3\xb0\xa7\x99",
		"ChevronLeftCircle":                      "\xf3\xb0\xac\xa8",
		"ChevronLeftCircleOutline":               "\xf3\xb0\xac\xa9",
		"ChevronRight":                           "\xf3\xb0\x85\x82",
		"ChevronRightBox":                        "\xf3\xb0\xa7\x9a",
		"ChevronRightBoxOutline":                 "\xf3\xb0\xa7\x9b",
		"ChevronRightCircle":                     "\xf3\xb0\xac\xaa",
		"ChevronRightCircleOutline":              "\xf3\xb0\xac\xab",
		"ChevronTripleDown":                      "\xf3\xb0\xb6\xb9",
		"ChevronTripleLeft":                      "\xf3\xb0\xb6\xba",
		"ChevronTripleRight":                     "\xf3\xb0\xb6\xbb",
		"ChevronTripleUp":                        "\xf3\xb0\xb6\xbc",
		"ChevronUp":                              "\xf3\xb0\x85\x83",
		"ChevronUpBox":                           "\xf3\xb0\xa7\x9c",
		"ChevronUpBoxOutline":                    "\xf3\xb0\xa7\x9d",
		"ChevronUpCircle":                        "\xf3\xb0\xac\xac",
		"ChevronUpCircleOutline":                 "\xf3\xb0\xac\xad",
		"ChiliAlert":                             "\xf3\xb1\x9f\xaa",
		"ChiliAlertOutline":                      "\xf3\xb1\x9f\xab",
		"ChiliHot":                               "\xf3\xb0\x9e\xb2",
		"ChiliHotOutline":                        "\xf3\xb1\x9f\xac",
		"ChiliMedium":                            "\xf3\xb0\x9e\xb3",
		"ChiliMediumOutline":                     "\xf3\xb1\x9f\xad",
		"ChiliMild":                              "\xf3\xb0\x9e\xb4",
		"ChiliMildOutline":                       "\xf3\xb1\x9f\xae",
		"ChiliOff":                               "\xf3\xb1\x91\xa7",
		"ChiliOffOutline":                        "\xf3\xb1\x9f\xaf",
		"Chip":                                   "\xf3\xb0\x98\x9a",
		"Church":                                 "\xf3\xb0\x85\x84",
		"ChurchOutline":                          "\xf3\xb1\xac\x82",
		"Cigar":                                  "\xf3\xb1\x86\x89",
		"CigarOff":                               "\xf3\xb1\x90\x9b",
		"Circle":                                 "\xf3\xb0\x9d\xa5",
		"CircleBox":                              "\xf3\xb1\x97\x9c",
		"CircleBoxOutline":                       "\xf3\xb1\x97\x9d",
		"CircleDouble":                           "\xf3\xb0\xba\x95",
		"CircleEditOutline":                      "\xf3\xb0\xa3\x95",
		"CircleExpand":                           "\xf3\xb0\xba\x96",
		"CircleHalf":                             "\xf3\xb1\x8e\x95",
		"CircleHalfFull":                         "\xf3\xb1\x8e\x96",
		"CircleMedium":                           "\xf3\xb0\xa7\x9e",
		"CircleMultiple":                         "\xf3\xb0\xac\xb8",
		"CircleMultipleOutline":                  "\xf3\xb0\x9a\x95",
		"CircleOffOutline":                       "\xf3\xb1\x83\x93",
		"CircleOpacity":                          "\xf3\xb1\xa1\x93",
		"CircleOutline":                          "\xf3\xb0\x9d\xa6",
		"CircleSlice1":                           "\xf3\xb0\xaa\x9e",
		"CircleSlice2":                           "\xf3\xb0\xaa\x9f",
		"CircleSlice3":                           "\xf3\xb0\xaa\xa0",
		"CircleSlice4":                           "\xf3\xb0\xaa\xa1",
		"CircleSlice5":                           "\xf3\xb0\xaa\xa2",
		"CircleSlice6":                           "\xf3\xb0\xaa\xa3",
		"CircleSlice7":                           "\xf3\xb0\xaa\xa4",
		"CircleSlice8":                           "\xf3\xb0\xaa\xa5",
		"CircleSmall":                            "\xf3\xb0\xa7\x9f",
		"CircularSaw":                            "\xf3\xb0\xb8\xa2",
		"City":                                   "\xf3\xb0\x85\x86",
		"CitySwitch":                             "\xf3\xb1\xb0\xa8",
		"CityVariant":                            "\xf3\xb0\xa8\xb6",
		"CityVariantOutline":                     "\xf3\xb0\xa8\xb7",
		"Clipboard":                              "\xf3\xb0\x85\x87",
		"ClipboardAccount":                       "\xf3\xb0\x85\x88",
		"ClipboardAccountOutline":                "\xf3\xb0\xb1\x95",
		"ClipboardAlert":                         "\xf3\xb0\x85\x89",
		"ClipboardAlertOutline":                  "\xf3\xb0\xb3\xb7",
		"ClipboardArrowDown":                     "\xf3\xb0\x85\x8a",
		"ClipboardArrowDownOutline":              "\xf3\xb0\xb1\x96",
		"ClipboardArrowLeft":                     "\xf3\xb0\x85\x8b",
		"ClipboardArrowLeftOutline":              "\xf3\xb0\xb3\xb8",
		"ClipboardArrowRight":                    "\xf3\xb0\xb3\xb9",
		"ClipboardArrowRightOutline":             "\xf3\xb0\xb3\xba",
		"ClipboardArrowUp":                       "\xf3\xb0\xb1\x97",
		"ClipboardArrowUpOutline":                "\xf3\xb0\xb1\x98",
		"ClipboardCheck":                         "\xf3\xb0\x85\x8e",
		"ClipboardCheckMultiple":                 "\xf3\xb1\x89\xa3",
		"ClipboardCheckMultipleOutline":          "\xf3\xb1\x89\xa4",
		"ClipboardCheckOutline":                  "\xf3\xb0\xa2\xa8",
		"ClipboardClock":                         "\xf3\xb1\x9b\xa2",
		"ClipboardClockOutline":                  "\xf3\xb1\x9b\xa3",
		"ClipboardEdit":                          "\xf3\xb1\x93\xa5",
		"ClipboardEditOutline":                   "\xf3\xb1\x93\xa6",
		"ClipboardFile":                          "\xf3\xb1\x89\xa5",
		"ClipboardFileOutline":                   "\xf3\xb1\x89\xa6",
		"ClipboardFlow":                          "\xf3\xb0\x9b\x88",
		"ClipboardFlowOutline":                   "\xf3\xb1\x84\x97",
		"ClipboardList":                          "\xf3\xb1\x83\x94",
		"ClipboardListOutline":                   "\xf3\xb1\x83\x95",
		"ClipboardMinus":                         "\xf3\xb1\x98\x98",
		"ClipboardMinusOutline":                  "\xf3\xb1\x98\x99",
		"ClipboardMultiple":                      "\xf3\xb1\x89\xa7",
		"ClipboardMultipleOutline":               "\xf3\xb1\x89\xa8",
		"ClipboardOff":                           "\xf3\xb1\x98\x9a",
		"ClipboardOffOutline":                    "\xf3\xb1\x98\x9b",
		"ClipboardOutline":                       "\xf3\xb0\x85\x8c",
		"ClipboardPlay":                          "\xf3\xb0\xb1\x99",
		"ClipboardPlayMultiple":                  "\xf3\xb1\x89\xa9",
		"ClipboardPlayMultipleOutline":           "\xf3\xb1\x89\xaa",
		"ClipboardPlayOutline":                   "\xf3\xb0\xb1\x9a",
		"ClipboardPlus":                          "\xf3\xb0\x9d\x91",
		"ClipboardPlusOutline":                   "\xf3\xb1\x8c\x9f",
		"ClipboardPulse":                         "\xf3\xb0\xa1\x9d",
		"ClipboardPulseOutline":                  "\xf3\xb0\xa1\x9e",
		"ClipboardRemove":                        "\xf3\xb1\x98\x9c",
		"ClipboardRemoveOutline":                 "\xf3\xb1\x98\x9d",
		"ClipboardSearch":                        "\xf3\xb1\x98\x9e",
		"ClipboardSearchOutline":                 "\xf3\xb1\x98\x9f",
		"ClipboardText":                          "\xf3\xb0\x85\x8d",
		"ClipboardTextClock":                     "\xf3\xb1\xa3\xb9",
		"ClipboardTextClockOutline":              "\xf3\xb1\xa3\xba",
		"ClipboardTextMultiple":                  "\xf3\xb1\x89\xab",
		"ClipboardTextMultipleOutline":           "\xf3\xb1\x89\xac",
		"ClipboardTextOff":                       "\xf3\xb1\x98\xa0",
		"ClipboardTextOffOutline":                "\xf3\xb1\x98\xa1",
		"ClipboardTextOutline":                   "\xf3\xb0\xa8\xb8",
		"ClipboardTextPlay":                      "\xf3\xb0\xb1\x9b",
		"ClipboardTextPlayOutline":               "\xf3\xb0\xb1\x9c",
		"ClipboardTextSearch":                    "\xf3\xb1\x98\xa2",
		"ClipboardTextSearchOutline":             "\xf3\xb1\x98\xa3",
		"Clippy":                                 "\xf3\xb0\x85\x8f",
		"Clock":                                  "\xf3\xb0\xa5\x94",
		"ClockAlert":                             "\xf3\xb0\xa5\x95",
		"ClockAlertOutline":                      "\xf3\xb0\x97\x8e",
		"ClockCheck":                             "\xf3\xb0\xbe\xa8",
		"ClockCheckOutline":                      "\xf3\xb0\xbe\xa9",
		"ClockDigital":                           "\xf3\xb0\xba\x97",
		"ClockEdit":                              "\xf3\xb1\xa6\xba",
		"ClockEditOutline":                       "\xf3\xb1\xa6\xbb",
		"ClockEnd":                               "\xf3\xb0\x85\x91",
		"ClockFast":                              "\xf3\xb0\x85\x92",
		"ClockIn":                                "\xf3\xb0\x85\x93",
		"ClockMinus":                             "\xf3\xb1\xa1\xa3",
		"ClockMinusOutline":                      "\xf3\xb1\xa1\xa4",
		"ClockOut":                               "\xf3\xb0\x85\x94",
		"ClockOutline":                           "\xf3\xb0\x85\x90",
		"ClockPlus":                              "\xf3\xb1\xa1\xa1",
		"ClockPlusOutline":                       "\xf3\xb1\xa1\xa2",
		"ClockRemove":                            "\xf3\xb1\xa1\xa5",
		"ClockRemoveOutline":                     "\xf3\xb1\xa1\xa6",
		"ClockStarFourPoints":                    "\xf3\xb1\xb0\xa9",
		"ClockStarFourPointsOutline":             "\xf3\xb1\xb0\xaa",
		"ClockStart":                             "\xf3\xb0\x85\x95",
		"ClockTimeEight":                         "\xf3\xb1\x91\x86",
		"ClockTimeEightOutline":                  "\xf3\xb1\x91\x92",
		"ClockTimeEleven":                        "\xf3\xb1\x91\x89",
		"ClockTimeElevenOutline":                 "\xf3\xb1\x91\x95",
		"ClockTimeFive":                          "\xf3\xb1\x91\x83",
		"ClockTimeFiveOutline":                   "\xf3\xb1\x91\x8f",
		"ClockTimeFour":                          "\xf3\xb1\x91\x82",
		"ClockTimeFourOutline":                   "\xf3\xb1\x91\x8e",
		"ClockTimeNine":                          "\xf3\xb1\x91\x87",
		"ClockTimeNineOutline":                   "\xf3\xb1\x91\x93",
		"ClockTimeOne":                           "\xf3\xb1\x90\xbf",
		"ClockTimeOneOutline":                    "\xf3\xb1\x91\x8b",
		"ClockTimeSeven":                         "\xf3\xb1\x91\x85",
		"ClockTimeSevenOutline":                  "\xf3\xb1\x91\x91",
		"ClockTimeSix":                           "\xf3\xb1\x91\x84",
		"ClockTimeSixOutline":                    "\xf3\xb1\x91\x90",
		"ClockTimeTen":                           "\xf3\xb1\x91\x88",
		"ClockTimeTenOutline":                    "\xf3\xb1\x91\x94",
		"ClockTimeThree":                         "\xf3\xb1\x91\x81",
		"ClockTimeThreeOutline":                  "\xf3\xb1\x91\x8d",
		"ClockTimeTwelve":                        "\xf3\xb1\x91\x8a",
		"ClockTimeTwelveOutline":                 "\xf3\xb1\x91\x96",
		"ClockTimeTwo":                           "\xf3\xb1\x91\x80",
		"ClockTimeTwoOutline":                    "\xf3\xb1\x91\x8c",
		"Close":                                  "\xf3\xb0\x85\x96",
		"CloseBox":                               "\xf3\xb0\x85\x97",
		"CloseBoxMultiple":                       "\xf3\xb0\xb1\x9d",
		"CloseBoxMultipleOutline":                "\xf3\xb0\xb1\x9e",
		"CloseBoxOutline":                        "\xf3\xb0\x85\x98",
		"CloseCircle":                            "\xf3\xb0\x85\x99",
		"CloseCircleMultiple":                    "\xf3\xb0\x98\xaa",
		"CloseCircleMultipleOutline":             "\xf3\xb0\xa2\x83",
		"CloseCircleOutline":                     "\xf3\xb0\x85\x9a",
		"CloseNetwork":                           "\xf3\xb0\x85\x9b",
		"CloseNetworkOutline":                    "\xf3\xb0\xb1\x9f",
		"CloseOctagon":                           "\xf3\xb0\x85\x9c",
		"CloseOctagonOutline":                    "\xf3\xb0\x85\x9d",
		"CloseOutline":                           "\xf3\xb0\x9b\x89",
		"CloseThick":                             "\xf3\xb1\x8e\x98",
		"ClosedCaption":                          "\xf3\xb0\x85\x9e",
		"ClosedCaptionOutline":                   "\xf3\xb0\xb6\xbd",
		"Cloud":                                  "\xf3\xb0\x85\x9f",
		"CloudAlert":                             "\xf3\xb0\xa7\xa0",
		"CloudAlertOutline":                      "\xf3\xb1\xaf\xa0",
		"CloudArrowDown":                         "\xf3\xb1\xaf\xa1",
		"CloudArrowDownOutline":                  "\xf3\xb1\xaf\xa2",
		"CloudArrowLeft":                         "\xf3\xb1\xaf\xa3",
		"CloudArrowLeftOutline":                  "\xf3\xb1\xaf\xa4",
		"CloudArrowRight":                        "\xf3\xb1\xaf\xa5",
		"CloudArrowRightOutline":                 "\xf3\xb1\xaf\xa6",
		"CloudArrowUp":                           "\xf3\xb1\xaf\xa7",
		"CloudArrowUpOutline":                    "\xf3\xb1\xaf\xa8",
		"CloudBraces":                            "\xf3\xb0\x9e\xb5",
		"CloudCancel":                            "\xf3\xb1\xaf\xa9",
		"CloudCancelOutline":                     "\xf3\xb1\xaf\xaa",
		"CloudCheck":                             "\xf3\xb1\xaf\xab",
		"CloudCheckOutline":                      "\xf3\xb1\xaf\xac",
		"CloudCheckVariant":                      "\xf3\xb0\x85\xa0",
		"CloudCheckVariantOutline":               "\xf3\xb1\x8b\x8c",
		"CloudCircle":                            "\xf3\xb0\x85\xa1",
		"CloudCircleOutline":                     "\xf3\xb1\xaf\xad",
		"CloudClock":                             "\xf3\xb1\xaf\xae",
		"CloudClockOutline":                      "\xf3\xb1\xaf\xaf",
		"CloudCog":                               "\xf3\xb1\xaf\xb0",
		"CloudCogOutline":                        "\xf3\xb1\xaf\xb1",
		"CloudDownload":                          "\xf3\xb0\x85\xa2",
		"CloudDownloadOutline":                   "\xf3\xb0\xad\xbd",
		"CloudKey":                               "\xf3\xb1\xb2\xa1",
		"CloudKeyOutline":                        "\xf3\xb1\xb2\xa2",
		"CloudLock":                              "\xf3\xb1\x87\xb1",
		"CloudLockOpen":                          "\xf3\xb1\xaf\xb2",
		"CloudLockOpenOutline":                   "\xf3\xb1\xaf\xb3",
		"CloudLockOutline":                       "\xf3\xb1\x87\xb2",
		"CloudMinus":                             "\xf3\xb1\xaf\xb4",
		"CloudMinusOutline":                      "\xf3\xb1\xaf\xb5",
		"CloudOff":                               "\xf3\xb1\xaf\xb6",
		"CloudOffOutline":                        "\xf3\xb0\x85\xa4",
		"CloudOutline":                           "\xf3\xb0\x85\xa3",
		"CloudPercent":                           "\xf3\xb1\xa8\xb5",
		"CloudPercentOutline":                    "\xf3\xb1\xa8\xb6",
		"CloudPlus":                              "\xf3\xb1\xaf\xb7",
		"CloudPlusOutline":                       "\xf3\xb1\xaf\xb8",
		"CloudPrint":                             "\xf3\xb0\x85\xa5",
		"CloudPrintOutline":                      "\xf3\xb0\x85\xa6",
		"CloudQuestion":                          "\xf3\xb0\xa8\xb9",
		"CloudQuestionOutline":                   "\xf3\xb1\xaf\xb9",
		"CloudRefresh":                           "\xf3\xb1\xaf\xba",
		"CloudRefreshOutline":                    "\xf3\xb1\xaf\xbb",
		"CloudRefreshVariant":                    "\xf3\xb0\x94\xaa",
		"CloudRefreshVariantOutline":             "\xf3\xb1\xaf\xbc",
		"CloudRemove":                            "\xf3\xb1\xaf\xbd",
		"CloudRemoveOutline":                     "\xf3\xb1\xaf\xbe",
		"CloudSearch":                            "\xf3\xb0\xa5\x96",
		"CloudSearchOutline":                     "\xf3\xb0\xa5\x97",
		"CloudSync":                              "\xf3\xb0\x98\xbf",
		"CloudSyncOutline":                       "\xf3\xb1\x8b\x96",
		"CloudTags":                              "\xf3\xb0\x9e\xb6",
		"CloudUpload":                            "\xf3\xb0\x85\xa7",
		"CloudUploadOutline":                     "\xf3\xb0\xad\xbe",
		"Clouds":                                 "\xf3\xb1\xae\x95",
		"Clover":                                 "\xf3\xb0\xa0\x96",
		"CloverOutline":                          "\xf3\xb1\xb1\xa2",
		"CoachLamp":                              "\xf3\xb1\x80\xa0",
		"CoachLampVariant":                       "\xf3\xb1\xa8\xb7",
		"CoatRack":                               "\xf3\xb1\x82\x9e",
		"CodeArray":                              "\xf3\xb0\x85\xa8",
		"CodeBlockBraces":                        "\xf3\xb1\xb2\x83",
		"CodeBlockBrackets":                      "\xf3\xb1\xb2\x84",
		"CodeBlockParentheses":                   "\xf3\xb1\xb2\x85",
		"CodeBlockTags":                          "\xf3\xb1\xb2\x86",
		"CodeBraces":                             "\xf3\xb0\x85\xa9",
		"CodeBracesBox":                          "\xf3\xb1\x83\x96",
		"CodeBrackets":                           "\xf3\xb0\x85\xaa",
		"CodeEqual":                              "\xf3\xb0\x85\xab",
		"CodeGreaterThan":                        "\xf3\xb0\x85\xac",
		"CodeGreaterThanOrEqual":                 "\xf3\xb0\x85\xad",
		"CodeJson":                               "\xf3\xb0\x98\xa6",
		"CodeLessThan":                           "\xf3\xb0\x85\xae",
		"CodeLessThanOrEqual":                    "\xf3\xb0\x85\xaf",
		"CodeNotEqual":                           "\xf3\xb0\x85\xb0",
		"CodeNotEqualVariant":                    "\xf3\xb0\x85\xb1",
		"CodeParentheses":                        "\xf3\xb0\x85\xb2",
		"CodeParenthesesBox":                     "\xf3\xb1\x83\x97",
		"CodeString":                             "\xf3\xb0\x85\xb3",
		"CodeTags":                               "\xf3\xb0\x85\xb4",
		"CodeTagsCheck":                          "\xf3\xb0\x9a\x94",
		"Codepen":                                "\xf3\xb0\x85\xb5",
		"Coffee":                                 "\xf3\xb0\x85\xb6",
		"CoffeeMaker":                            "\xf3\xb1\x82\x9f",
		"CoffeeMakerCheck":                       "\xf3\xb1\xa4\xb1",
		"CoffeeMakerCheckOutline":                "\xf3\xb1\xa4\xb2",
		"CoffeeMakerOutline":                     "\xf3\xb1\xa0\x9b",
		"CoffeeOff":                              "\xf3\xb0\xbe\xaa",
		"CoffeeOffOutline":                       "\xf3\xb0\xbe\xab",
		"CoffeeOutline":                          "\xf3\xb0\x9b\x8a",
		"CoffeeToGo":                             "\xf3\xb0\x85\xb7",
		"CoffeeToGoOutline":                      "\xf3\xb1\x8c\x8e",
		"Coffin":                                 "\xf3\xb0\xad\xbf",
		"Cog":                                    "\xf3\xb0\x92\x93",
		"CogBox":                                 "\xf3\xb0\x92\x94",
		"CogClockwise":                           "\xf3\xb1\x87\x9d",
		"CogCounterclockwise":                    "\xf3\xb1\x87\x9e",
		"CogOff":                                 "\xf3\xb1\x8f\x8e",
		"CogOffOutline":                          "\xf3\xb1\x8f\x8f",
		"CogOutline":                             "\xf3\xb0\xa2\xbb",
		"CogPause":                               "\xf3\xb1\xa4\xb3",
		"CogPauseOutline":                        "\xf3\xb1\xa4\xb4",
		"CogPlay":                                "\xf3\xb1\xa4\xb5",
		"CogPlayOutline":                         "\xf3\xb1\xa4\xb6",
		"CogRefresh":                             "\xf3\xb1\x91\x9e",
		"CogRefreshOutline":                      "\xf3\xb1\x91\x9f",
		"CogStop":                                "\xf3\xb1\xa4\xb7",
		"CogStopOutline":                         "\xf3\xb1\xa4\xb8",
		"CogSync":                                "\xf3\xb1\x91\xa0",
		"CogSyncOutline":                         "\xf3\xb1\x91\xa1",
		"CogTransfer":                            "\xf3\xb1\x81\x9b",
		"CogTransferOutline":                     "\xf3\xb1\x81\x9c",
		"Cogs":                                   "\xf3\xb0\xa3\x96",
		"Collage":                                "\xf3\xb0\x99\x80",
		"CollapseAll":                            "\xf3\xb0\xaa\xa6",
		"CollapseAllOutline":                     "\xf3\xb0\xaa\xa7",
		"ColorHelper":                            "\xf3\xb0\x85\xb9",
		"Comma":                                  "\xf3\xb0\xb8\xa3",
		"CommaBox":                               "\xf3\xb0\xb8\xab",
		"CommaBoxOutline":                        "\xf3\xb0\xb8\xa4",
		"CommaCircle":                            "\xf3\xb0\xb8\xa5",
		"CommaCircleOutline":                     "\xf3\xb0\xb8\xa6",
		"Comment":                                "\xf3\xb0\x85\xba",
		"CommentAccount":                         "\xf3\xb0\x85\xbb",
		"CommentAccountOutline":                  "\xf3\xb0\x85\xbc",
		"CommentAlert":                           "\xf3\xb0\x85\xbd",
		"CommentAlertOutline":                    "\xf3\xb0\x85\xbe",
		"CommentArrowLeft":                       "\xf3\xb0\xa7\xa1",
		"CommentArrowLeftOutline":                "\xf3\xb0\xa7\xa2",
		"CommentArrowRight":                      "\xf3\xb0\xa7\xa3",
		"CommentArrowRightOutline":               "\xf3\xb0\xa7\xa4",
		"CommentBookmark":                        "\xf3\xb1\x96\xae",
		"CommentBookmarkOutline":                 "\xf3\xb1\x96\xaf",
		"CommentCheck":                           "\xf3\xb0\x85\xbf",
		"CommentCheckOutline":                    "\xf3\xb0\x86\x80",
		"CommentEdit":                            "\xf3\xb1\x86\xbf",
		"CommentEditOutline":                     "\xf3\xb1\x8b\x84",
		"CommentEye":                             "\xf3\xb0\xa8\xba",
		"CommentEyeOutline":                      "\xf3\xb0\xa8\xbb",
		"CommentFlash":                           "\xf3\xb1\x96\xb0",
		"CommentFlashOutline":                    "\xf3\xb1\x96\xb1",
		"CommentMinus":                           "\xf3\xb1\x97\x9f",
		"CommentMinusOutline":                    "\xf3\xb1\x97\xa0",
		"CommentMultiple":                        "\xf3\xb0\xa1\x9f",
		"CommentMultipleOutline":                 "\xf3\xb0\x86\x81",
		"CommentOff":                             "\xf3\xb1\x97\xa1",
		"CommentOffOutline":                      "\xf3\xb1\x97\xa2",
		"CommentOutline":                         "\xf3\xb0\x86\x82",
		"CommentPlus":                            "\xf3\xb0\xa7\xa5",
		"CommentPlusOutline":                     "\xf3\xb0\x86\x83",
		"CommentProcessing":                      "\xf3\xb0\x86\x84",
		"CommentProcessingOutline":               "\xf3\xb0\x86\x85",
		"CommentQuestion":                        "\xf3\xb0\xa0\x97",
		"CommentQuestionOutline":                 "\xf3\xb0\x86\x86",
		"CommentQuote":                           "\xf3\xb1\x80\xa1",
		"CommentQuoteOutline":                    "\xf3\xb1\x80\xa2",
		"CommentRemove":                          "\xf3\xb0\x97\x9e",
		"CommentRemoveOutline":                   "\xf3\xb0\x86\x87",
		"CommentSearch":                          "\xf3\xb0\xa8\xbc",
		"CommentSearchOutline":                   "\xf3\xb0\xa8\xbd",
		"CommentText":                            "\xf3\xb0\x86\x88",
		"CommentTextMultiple":                    "\xf3\xb0\xa1\xa0",
		"CommentTextMultipleOutline":             "\xf3\xb0\xa1\xa1",
		"CommentTextOutline":                     "\xf3\xb0\x86\x89",
		"Compare":                                "\xf3\xb0\x86\x8a",
		"CompareHorizontal":                      "\xf3\xb1\x92\x92",
		"CompareRemove":                          "\xf3\xb1\xa2\xb3",
		"CompareVertical":                        "\xf3\xb1\x92\x93",
		"Compass":                                "\xf3\xb0\x86\x8b",
		"CompassOff":                             "\xf3\xb0\xae\x80",
		"CompassOffOutline":                      "\xf3\xb0\xae\x81",
		"CompassOutline":                         "\xf3\xb0\x86\x8c",
		"CompassRose":                            "\xf3\xb1\x8e\x82",
		"Compost":                                "\xf3\xb1\xa8\xb8",
		"Cone":                                   "\xf3\xb1\xa5\x8c",
		"ConeOff":                                "\xf3\xb1\xa5\x8d",
		"Connection":                             "\xf3\xb1\x98\x96",
		"Console":                                "\xf3\xb0\x86\x8d",
		"ConsoleLine":                            "\xf3\xb0\x9e\xb7",
		"ConsoleNetwork":                         "\xf3\xb0\xa2\xa9",
		"ConsoleNetworkOutline":                  "\xf3\xb0\xb1\xa0",
		"Consolidate":                            "\xf3\xb1\x83\x98",
		"ContactlessPayment":                     "\xf3\xb0\xb5\xaa",
		"ContactlessPaymentCircle":               "\xf3\xb0\x8c\xa1",
		"ContactlessPaymentCircleOutline":        "\xf3\xb0\x90\x88",
		"Contacts":                               "\xf3\xb0\x9b\x8b",
		"ContactsOutline":                        "\xf3\xb0\x96\xb8",
		"Contain":                                "\xf3\xb0\xa8\xbe",
		"ContainEnd":                             "\xf3\xb0\xa8\xbf",
		"ContainStart":                           "\xf3\xb0\xa9\x80",
		"ContentCopy":                            "\xf3\xb0\x86\x8f",
		"ContentCut":                             "\xf3\xb0\x86\x90",
		"ContentDuplicate":                       "\xf3\xb0\x86\x91",
		"ContentPaste":                           "\xf3\xb0\x86\x92",
		"ContentSave":                            "\xf3\xb0\x86\x93",
		"ContentSaveAlert":                       "\xf3\xb0\xbd\x82",
		"ContentSaveAlertOutline":                "\xf3\xb0\xbd\x83",
		"ContentSaveAll":                         "\xf3\xb0\x86\x94",
		"ContentSaveAllOutline":                  "\xf3\xb0\xbd\x84",
		"ContentSaveCheck":                       "\xf3\xb1\xa3\xaa",
		"ContentSaveCheckOutline":                "\xf3\xb1\xa3\xab",
		"ContentSaveCog":                         "\xf3\xb1\x91\x9b",
		"ContentSaveCogOutline":                  "\xf3\xb1\x91\x9c",
		"ContentSaveEdit":                        "\xf3\xb0\xb3\xbb",
		"ContentSaveEditOutline":                 "\xf3\xb0\xb3\xbc",
		"ContentSaveMinus":                       "\xf3\xb1\xad\x83",
		"ContentSaveMinusOutline":                "\xf3\xb1\xad\x84",
		"ContentSaveMove":                        "\xf3\xb0\xb8\xa7",
		"ContentSaveMoveOutline":                 "\xf3\xb0\xb8\xa8",
		"ContentSaveOff":                         "\xf3\xb1\x99\x83",
		"ContentSaveOffOutline":                  "\xf3\xb1\x99\x84",
		"ContentSaveOutline":                     "\xf3\xb0\xa0\x98",
		"ContentSavePlus":                        "\xf3\xb1\xad\x81",
		"ContentSavePlusOutline":                 "\xf3\xb1\xad\x82",
		"ContentSaveSettings":                    "\xf3\xb0\x98\x9b",
		"ContentSaveSettingsOutline":             "\xf3\xb0\xac\xae",
		"Contrast":                               "\xf3\xb0\x86\x95",
		"ContrastBox":                            "\xf3\xb0\x86\x96",
		"ContrastCircle":                         "\xf3\xb0\x86\x97",
		"Controller":                             "\xf3\xb0\x8a\xb4",
		"ControllerClassic":                      "\xf3\xb0\xae\x82",
		"ControllerClassicOutline":               "\xf3\xb0\xae\x83",
		"ControllerOff":                          "\xf3\xb0\x8a\xb5",
		"Cookie":                                 "\xf3\xb0\x86\x98",
		"CookieAlert":                            "\xf3\xb1\x9b\x90",
		"CookieAlertOutline":                     "\xf3\xb1\x9b\x91",
		"CookieCheck":                            "\xf3\xb1\x9b\x92",
		"CookieCheckOutline":                     "\xf3\xb1\x9b\x93",
		"CookieClock":                            "\xf3\xb1\x9b\xa4",
		"CookieClockOutline":                     "\xf3\xb1\x9b\xa5",
		"CookieCog":                              "\xf3\xb1\x9b\x94",
		"CookieCogOutline":                       "\xf3\xb1\x9b\x95",
		"CookieEdit":                             "\xf3\xb1\x9b\xa6",
		"CookieEditOutline":                      "\xf3\xb1\x9b\xa7",
		"CookieLock":                             "\xf3\xb1\x9b\xa8",
		"CookieLockOutline":                      "\xf3\xb1\x9b\xa9",
		"CookieMinus":                            "\xf3\xb1\x9b\x9a",
		"CookieMinusOutline":                     "\xf3\xb1\x9b\x9b",
		"CookieOff":                              "\xf3\xb1\x9b\xaa",
		"CookieOffOutline":                       "\xf3\xb1\x9b\xab",
		"CookieOutline":                          "\xf3\xb1\x9b\x9e",
		"CookiePlus":                             "\xf3\xb1\x9b\x96",
		"CookiePlusOutline":                      "\xf3\xb1\x9b\x97",
		"CookieRefresh":                          "\xf3\xb1\x9b\xac",
		"CookieRefreshOutline":                   "\xf3\xb1\x9b\xad",
		"CookieRemove":                           "\xf3\xb1\x9b\x98",
		"CookieRemoveOutline":                    "\xf3\xb1\x9b\x99",
		"CookieSettings":                         "\xf3\xb1\x9b\x9c",
		"CookieSettingsOutline":                  "\xf3\xb1\x9b\x9d",
		"CoolantTemperature":                     "\xf3\xb0\x8f\x88",
		"Copyleft":                               "\xf3\xb1\xa4\xb9",
		"Copyright":                              "\xf3\xb0\x97\xa6",
		"Cordova":                                "\xf3\xb0\xa5\x98",
		"Corn":                                   "\xf3\xb0\x9e\xb8",
		"CornOff":                                "\xf3\xb1\x8f\xaf",
		"CosineWave":                             "\xf3\xb1\x91\xb9",
		"Counter":                                "\xf3\xb0\x86\x99",
		"Countertop":                             "\xf3\xb1\xa0\x9c",
		"CountertopOutline":                      "\xf3\xb1\xa0\x9d",
		"Cow":                                    "\xf3\xb0\x86\x9a",
		"CowOff":                                 "\xf3\xb1\xa3\xbc",
		"Cpu32Bit":                               "\xf3\xb0\xbb\x9f",
		"Cpu64Bit":                               "\xf3\xb0\xbb\xa0",
		"Cradle":                                 "\xf3\xb1\xa6\x8b",
		"CradleOutline":                          "\xf3\xb1\xa6\x91",
		"Crane":                                  "\xf3\xb0\xa1\xa2",
		"Creation":                               "\xf3\xb0\x99\xb4",
		"CreationOutline":                        "\xf3\xb1\xb0\xab",
		"CreativeCommons":                        "\xf3\xb0\xb5\xab",
		"CreditCard":                             "\xf3\xb0\xbf\xaf",
		"CreditCardCheck":                        "\xf3\xb1\x8f\x90",
		"CreditCardCheckOutline":                 "\xf3\xb1\x8f\x91",
		"CreditCardChip":                         "\xf3\xb1\xa4\x8f",
		"CreditCardChipOutline":                  "\xf3\xb1\xa4\x90",
		"CreditCardClock":                        "\xf3\xb0\xbb\xa1",
		"CreditCardClockOutline":                 "\xf3\xb0\xbb\xa2",
		"CreditCardEdit":                         "\xf3\xb1\x9f\x97",
		"CreditCardEditOutline":                  "\xf3\xb1\x9f\x98",
		"CreditCardFast":                         "\xf3\xb1\xa4\x91",
		"CreditCardFastOutline":                  "\xf3\xb1\xa4\x92",
		"CreditCardLock":                         "\xf3\xb1\xa3\xa7",
		"CreditCardLockOutline":                  "\xf3\xb1\xa3\xa8",
		"CreditCardMarker":                       "\xf3\xb0\x9a\xa8",
		"CreditCardMarkerOutline":                "\xf3\xb0\xb6\xbe",
		"CreditCardMinus":                        "\xf3\xb0\xbe\xac",
		"CreditCardMinusOutline":                 "\xf3\xb0\xbe\xad",
		"CreditCardMultiple":                     "\xf3\xb0\xbf\xb0",
		"CreditCardMultipleOutline":              "\xf3\xb0\x86\x9c",
		"CreditCardOff":                          "\xf3\xb0\xbf\xb1",
		"CreditCardOffOutline":                   "\xf3\xb0\x97\xa4",
		"CreditCardOutline":                      "\xf3\xb0\x86\x9b",
		"CreditCardPlus":                         "\xf3\xb0\xbf\xb2",
		"CreditCardPlusOutline":                  "\xf3\xb0\x99\xb6",
		"CreditCardRefresh":                      "\xf3\xb1\x99\x85",
		"CreditCardRefreshOutline":               "\xf3\xb1\x99\x86",
		"CreditCardRefund":                       "\xf3\xb0\xbf\xb3",
		"CreditCardRefundOutline":                "\xf3\xb0\xaa\xa8",
		"CreditCardRemove":                       "\xf3\xb0\xbe\xae",
		"CreditCardRemoveOutline":                "\xf3\xb0\xbe\xaf",
		"CreditCardScan":                         "\xf3\xb0\xbf\xb4",
		"CreditCardScanOutline":                  "\xf3\xb0\x86\x9d",
		"CreditCardSearch":                       "\xf3\xb1\x99\x87",
		"CreditCardSearchOutline":                "\xf3\xb1\x99\x88",
		"CreditCardSettings":                     "\xf3\xb0\xbf\xb5",
		"CreditCardSettingsOutline":              "\xf3\xb0\xa3\x97",
		"CreditCardSync":                         "\xf3\xb1\x99\x89",
		"CreditCardSyncOutline":                  "\xf3\xb1\x99\x8a",
		"CreditCardWireless":                     "\xf3\xb0\xa0\x82",
		"CreditCardWirelessOff":                  "\xf3\xb0\x95\xba",
		"CreditCardWirelessOffOutline":           "\xf3\xb0\x95\xbb",
		"CreditCardWirelessOutline":              "\xf3\xb0\xb5\xac",
		"Cricket":                                "\xf3\xb0\xb5\xad",
		"Crop":                                   "\xf3\xb0\x86\x9e",
		"CropFree":                               "\xf3\xb0\x86\x9f",
		"CropLandscape":                          "\xf3\xb0\x86\xa0",
		"CropPortrait":                           "\xf3\xb0\x86\xa1",
		"CropRotate":                             "\xf3\xb0\x9a\x96",
		"CropSquare":                             "\xf3\xb0\x86\xa2",
		"Cross":                                  "\xf3\xb0\xa5\x93",
		"CrossBolnisi":                           "\xf3\xb0\xb3\xad",
		"CrossCeltic":                            "\xf3\xb0\xb3\xb5",
		"CrossOutline":                           "\xf3\xb0\xb3\xb6",
		"Crosshairs":                             "\xf3\xb0\x86\xa3",
		"CrosshairsGps":                          "\xf3\xb0\x86\xa4",
		"CrosshairsOff":                          "\xf3\xb0\xbd\x85",
		"CrosshairsQuestion":                     "\xf3\xb1\x84\xb6",
		"Crowd":                                  "\xf3\xb1\xa5\xb5",
		"Crown":                                  "\xf3\xb0\x86\xa5",
		"CrownCircle":                            "\xf3\xb1\x9f\x9c",
		"CrownCircleOutline":                     "\xf3\xb1\x9f\x9d",
		"CrownOutline":                           "\xf3\xb1\x87\x90",
		"Cryengine":                              "\xf3\xb0\xa5\x99",
		"CrystalBall":                            "\xf3\xb0\xac\xaf",
		"Cube":                                   "\xf3\xb0\x86\xa6",
		"CubeOff":                                "\xf3\xb1\x90\x9c",
		"CubeOffOutline":                         "\xf3\xb1\x90\x9d",
		"CubeOutline":                            "\xf3\xb0\x86\xa7",
		"CubeScan":                               "\xf3\xb0\xae\x84",
		"CubeSend":                               "\xf3\xb0\x86\xa8",
		"CubeUnfolded":                           "\xf3\xb0\x86\xa9",
		"Cup":                                    "\xf3\xb0\x86\xaa",
		"CupOff":                                 "\xf3\xb0\x97\xa5",
		"CupOffOutline":                          "\xf3\xb1\x8d\xbd",
		"CupOutline":                             "\xf3\xb1\x8c\x8f",
		"CupWater":                               "\xf3\xb0\x86\xab",
		"Cupboard":                               "\xf3\xb0\xbd\x86",
		"CupboardOutline":                        "\xf3\xb0\xbd\x87",
		"Cupcake":                                "\xf3\xb0\xa5\x9a",
		"Curling":                                "\xf3\xb0\xa1\xa3",
		"CurrencyBdt":                            "\xf3\xb0\xa1\xa4",
		"CurrencyBrl":                            "\xf3\xb0\xae\x85",
		"CurrencyBtc":                            "\xf3\xb0\x86\xac",
		"CurrencyCny":                            "\xf3\xb0\x9e\xba",
		"CurrencyEth":                            "\xf3\xb0\x9e\xbb",
		"CurrencyEur":                            "\xf3\xb0\x86\xad",
		"CurrencyEurOff":                         "\xf3\xb1\x8c\x95",
		"CurrencyFra":                            "\xf3\xb1\xa8\xb9",
		"CurrencyGbp":                            "\xf3\xb0\x86\xae",
		"CurrencyIls":                            "\xf3\xb0\xb1\xa1",
		"CurrencyInr":                            "\xf3\xb0\x86\xaf",
		"CurrencyJpy":                            "\xf3\xb0\x9e\xbc",
		"CurrencyKrw":                            "\xf3\xb0\x9e\xbd",
		"CurrencyKzt":                            "\xf3\xb0\xa1\xa5",
		"CurrencyMnt":                            "\xf3\xb1\x94\x92",
		"CurrencyNgn":                            "\xf3\xb0\x86\xb0",
		"CurrencyPhp":                            "\xf3\xb0\xa7\xa6",
		"CurrencyRial":                           "\xf3\xb0\xba\x9c",
		"CurrencyRub":                            "\xf3\xb0\x86\xb1",
		"CurrencyRupee":                          "\xf3\xb1\xa5\xb6",
		"CurrencySign":                           "\xf3\xb0\x9e\xbe",
		"CurrencyThb":                            "\xf3\xb1\xb0\x85",
		"CurrencyTry":                            "\xf3\xb0\x86\xb2",
		"CurrencyTwd":                            "\xf3\xb0\x9e\xbf",
		"CurrencyUah":                            "\xf3\xb1\xae\x9b",
		"CurrencyUsd":                            "\xf3\xb0\x87\x81",
		"CurrencyUsdOff":                         "\xf3\xb0\x99\xba",
		"CurrentAc":                              "\xf3\xb1\x92\x80",
		"CurrentDc":                              "\xf3\xb0\xa5\x9c",
		"CursorDefault":                          "\xf3\xb0\x87\x80",
		"CursorDefaultClick":                     "\xf3\xb0\xb3\xbd",
		"CursorDefaultClickOutline":              "\xf3\xb0\xb3\xbe",
		"CursorDefaultGesture":                   "\xf3\xb1\x84\xa7",
		"CursorDefaultGestureOutline":            "\xf3\xb1\x84\xa8",
		"CursorDefaultOutline":                   "\xf3\xb0\x86\xbf",
		"CursorMove":                             "\xf3\xb0\x86\xbe",
		"CursorPointer":                          "\xf3\xb0\x86\xbd",
		"CursorText":                             "\xf3\xb0\x97\xa7",
		"Curtains":                               "\xf3\xb1\xa1\x86",
		"CurtainsClosed":                         "\xf3\xb1\xa1\x87",
		"Cylinder":                               "\xf3\xb1\xa5\x8e",
		"CylinderOff":                            "\xf3\xb1\xa5\x8f",
		"DanceBallroom":                          "\xf3\xb1\x97\xbb",
		"DancePole":                              "\xf3\xb1\x95\xb8",
		"DataMatrix":                             "\xf3\xb1\x94\xbc",
		"DataMatrixEdit":                         "\xf3\xb1\x94\xbd",
		"DataMatrixMinus":                        "\xf3\xb1\x94\xbe",
		"DataMatrixPlus":                         "\xf3\xb1\x94\xbf",
		"DataMatrixRemove":                       "\xf3\xb1\x95\x80",
		"DataMatrixScan":                         "\xf3\xb1\x95\x81",
		"Database":                               "\xf3\xb0\x86\xbc",
		"DatabaseAlert":                          "\xf3\xb1\x98\xba",
		"DatabaseAlertOutline":                   "\xf3\xb1\x98\xa4",
		"DatabaseArrowDown":                      "\xf3\xb1\x98\xbb",
		"DatabaseArrowDownOutline":               "\xf3\xb1\x98\xa5",
		"DatabaseArrowLeft":                      "\xf3\xb1\x98\xbc",
		"DatabaseArrowLeftOutline":               "\xf3\xb1\x98\xa6",
		"DatabaseArrowRight":                     "\xf3\xb1\x98\xbd",
		"DatabaseArrowRightOutline":              "\xf3\xb1\x98\xa7",
		"DatabaseArrowUp":                        "\xf3\xb1\x98\xbe",
		"DatabaseArrowUpOutline":                 "\xf3\xb1\x98\xa8",
		"DatabaseCheck":                          "\xf3\xb0\xaa\xa9",
		"DatabaseCheckOutline":                   "\xf3\xb1\x98\xa9",
		"DatabaseClock":                          "\xf3\xb1\x98\xbf",
		"DatabaseClockOutline":                   "\xf3\xb1\x98\xaa",
		"DatabaseCog":                            "\xf3\xb1\x99\x8b",
		"DatabaseCogOutline":                     "\xf3\xb1\x99\x8c",
		"DatabaseEdit":                           "\xf3\xb0\xae\x86",
		"DatabaseEditOutline":                    "\xf3\xb1\x98\xab",
		"DatabaseExport":                         "\xf3\xb0\xa5\x9e",
		"DatabaseExportOutline":                  "\xf3\xb1\x98\xac",
		"DatabaseEye":                            "\xf3\xb1\xa4\x9f",
		"DatabaseEyeOff":                         "\xf3\xb1\xa4\xa0",
		"DatabaseEyeOffOutline":                  "\xf3\xb1\xa4\xa1",
		"DatabaseEyeOutline":                     "\xf3\xb1\xa4\xa2",
		"DatabaseImport":                         "\xf3\xb0\xa5\x9d",
		"DatabaseImportOutline":                  "\xf3\xb1\x98\xad",
		"DatabaseLock":                           "\xf3\xb0\xaa\xaa",
		"DatabaseLockOutline":                    "\xf3\xb1\x98\xae",
		"DatabaseMarker":                         "\xf3\xb1\x8b\xb6",
		"DatabaseMarkerOutline":                  "\xf3\xb1\x98\xaf",
		"DatabaseMinus":                          "\xf3\xb0\x86\xbb",
		"DatabaseMinusOutline":                   "\xf3\xb1\x98\xb0",
		"DatabaseOff":                            "\xf3\xb1\x99\x80",
		"DatabaseOffOutline":                     "\xf3\xb1\x98\xb1",
		"DatabaseOutline":                        "\xf3\xb1\x98\xb2",
		"DatabasePlus":                           "\xf3\xb0\x86\xba",
		"DatabasePlusOutline":                    "\xf3\xb1\x98\xb3",
		"DatabaseRefresh":                        "\xf3\xb0\x97\x82",
		"DatabaseRefreshOutline":                 "\xf3\xb1\x98\xb4",
		"DatabaseRemove":                         "\xf3\xb0\xb4\x80",
		"DatabaseRemoveOutline":                  "\xf3\xb1\x98\xb5",
		"DatabaseSearch":                         "\xf3\xb0\xa1\xa6",
		"DatabaseSearchOutline":                  "\xf3\xb1\x98\xb6",
		"DatabaseSettings":                       "\xf3\xb0\xb4\x81",
		"DatabaseSettingsOutline":                "\xf3\xb1\x98\xb7",
		"DatabaseSync":                           "\xf3\xb0\xb3\xbf",
		"DatabaseSyncOutline":                    "\xf3\xb1\x98\xb8",
		"DeathStar":                              "\xf3\xb0\xa3\x98",
		"DeathStarVariant":                       "\xf3\xb0\xa3\x99",
		"DeathlyHallows":                         "\xf3\xb0\xae\x87",
		"Debian":                                 "\xf3\xb0\xa3\x9a",
		"DebugStepInto":                          "\xf3\xb0\x86\xb9",
		"DebugStepOut":                           "\xf3\xb0\x86\xb8",
		"DebugStepOver":                          "\xf3\xb0\x86\xb7",
		"Decagram":                               "\xf3\xb0\x9d\xac",
		"DecagramOutline":                        "\xf3\xb0\x9d\xad",
		"Decimal":                                "\xf3\xb1\x82\xa1",
		"DecimalComma":                           "\xf3\xb1\x82\xa2",
		"DecimalCommaDecrease":                   "\xf3\xb1\x82\xa3",
		"DecimalCommaIncrease":                   "\xf3\xb1\x82\xa4",
		"DecimalDecrease":                        "\xf3\xb0\x86\xb6",
		"DecimalIncrease":                        "\xf3\xb0\x86\xb5",
		"Delete":                                 "\xf3\xb0\x86\xb4",
		"DeleteAlert":                            "\xf3\xb1\x82\xa5",
		"DeleteAlertOutline":                     "\xf3\xb1\x82\xa6",
		"DeleteCircle":                           "\xf3\xb0\x9a\x83",
		"DeleteCircleOutline":                    "\xf3\xb0\xae\x88",
		"DeleteClock":                            "\xf3\xb1\x95\x96",
		"DeleteClockOutline":                     "\xf3\xb1\x95\x97",
		"DeleteEmpty":                            "\xf3\xb0\x9b\x8c",
		"DeleteEmptyOutline":                     "\xf3\xb0\xba\x9d",
		"DeleteForever":                          "\xf3\xb0\x97\xa8",
		"DeleteForeverOutline":                   "\xf3\xb0\xae\x89",
		"DeleteOff":                              "\xf3\xb1\x82\xa7",
		"DeleteOffOutline":                       "\xf3\xb1\x82\xa8",
		"DeleteOutline":                          "\xf3\xb0\xa7\xa7",
		"DeleteRestore":                          "\xf3\xb0\xa0\x99",
		"DeleteSweep":                            "\xf3\xb0\x97\xa9",
		"DeleteSweepOutline":                     "\xf3\xb0\xb1\xa2",
		"DeleteVariant":                          "\xf3\xb0\x86\xb3",
		"Delta":                                  "\xf3\xb0\x87\x82",
		"Desk":                                   "\xf3\xb1\x88\xb9",
		"DeskLamp":                               "\xf3\xb0\xa5\x9f",
		"DeskLampOff":                            "\xf3\xb1\xac\x9f",
		"DeskLampOn":                             "\xf3\xb1\xac\xa0",
		"Deskphone":                              "\xf3\xb0\x87\x83",
		"DesktopClassic":                         "\xf3\xb0\x9f\x80",
		"DesktopTower":                           "\xf3\xb0\x87\x85",
		"DesktopTowerMonitor":                    "\xf3\xb0\xaa\xab",
		"Details":                                "\xf3\xb0\x87\x86",
		"DevTo":                                  "\xf3\xb0\xb5\xae",
		"DeveloperBoard":                         "\xf3\xb0\x9a\x97",
		"Deviantart":                             "\xf3\xb0\x87\x87",
		"Devices":                                "\xf3\xb0\xbe\xb0",
		"Dharmachakra":                           "\xf3\xb0\xa5\x8b",
		"Diabetes":                               "\xf3\xb1\x84\xa6",
		"Dialpad":                                "\xf3\xb0\x98\x9c",
		"Diameter":                               "\xf3\xb0\xb1\xa3",
		"DiameterOutline":                        "\xf3\xb0\xb1\xa4",
		"DiameterVariant":                        "\xf3\xb0\xb1\xa5",
		"Diamond":                                "\xf3\xb0\xae\x8a",
		"DiamondOutline":                         "\xf3\xb0\xae\x8b",
		"DiamondStone":                           "\xf3\xb0\x87\x88",
		"DiaperOutline":                          "\xf3\xb1\xb3\x8f",
		"Dice1":                                  "\xf3\xb0\x87\x8a",
		"Dice1Outline":                           "\xf3\xb1\x85\x8a",
		"Dice2":                                  "\xf3\xb0\x87\x8b",
		"Dice2Outline":                           "\xf3\xb1\x85\x8b",
		"Dice3":                                  "\xf3\xb0\x87\x8c",
		"Dice3Outline":                           "\xf3\xb1\x85\x8c",
		"Dice4":                                  "\xf3\xb0\x87\x8d",
		"Dice4Outline":                           "\xf3\xb1\x85\x8d",
		"Dice5":                                  "\xf3\xb0\x87\x8e",
		"Dice5Outline":                           "\xf3\xb1\x85\x8e",
		"Dice6":                                  "\xf3\xb0\x87\x8f",
		"Dice6Outline":                           "\xf3\xb1\x85\x8f",
		"DiceD10":                                "\xf3\xb1\x85\x93",
		"DiceD10Outline":                         "\xf3\xb0\x9d\xaf",
		"DiceD12":                                "\xf3\xb1\x85\x94",
		"DiceD12Outline":                         "\xf3\xb0\xa1\xa7",
		"DiceD20":                                "\xf3\xb1\x85\x95",
		"DiceD20Outline":                         "\xf3\xb0\x97\xaa",
		"DiceD4":                                 "\xf3\xb1\x85\x90",
		"DiceD4Outline":                          "\xf3\xb0\x97\xab",
		"DiceD6":                                 "\xf3\xb1\x85\x91",
		"DiceD6Outline":                          "\xf3\xb0\x97\xad",
		"DiceD8":                                 "\xf3\xb1\x85\x92",
		"DiceD8Outline":                          "\xf3\xb0\x97\xac",
		"DiceMultiple":                           "\xf3\xb0\x9d\xae",
		"DiceMultipleOutline":                    "\xf3\xb1\x85\x96",
		"DigitalOcean":                           "\xf3\xb1\x88\xb7",
		"DipSwitch":                              "\xf3\xb0\x9f\x81",
		"Directions":                             "\xf3\xb0\x87\x90",
		"DirectionsFork":                         "\xf3\xb0\x99\x81",
		"Disc":                                   "\xf3\xb0\x97\xae",
		"DiscAlert":                              "\xf3\xb0\x87\x91",
		"DiscPlayer":                             "\xf3\xb0\xa5\xa0",
		"Dishwasher":                             "\xf3\xb0\xaa\xac",
		"DishwasherAlert":                        "\xf3\xb1\x86\xb8",
		"DishwasherOff":                          "\xf3\xb1\x86\xb9",
		"Disqus":                                 "\xf3\xb0\x87\x92",
		"DistributeHorizontalCenter":             "\xf3\xb1\x87\x89",
		"DistributeHorizontalLeft":               "\xf3\xb1\x87\x88",
		"DistributeHorizontalRight":              "\xf3\xb1\x87\x8a",
		"DistributeVerticalBottom":               "\xf3\xb1\x87\x8b",
		"DistributeVerticalCenter":               "\xf3\xb1\x87\x8c",
		"DistributeVerticalTop":                  "\xf3\xb1\x87\x8d",
		"Diversify":                              "\xf3\xb1\xa1\xb7",
		"Diving":                                 "\xf3\xb1\xa5\xb7",
		"DivingFlippers":                         "\xf3\xb0\xb6\xbf",
		"DivingHelmet":                           "\xf3\xb0\xb7\x80",
		"DivingScuba":                            "\xf3\xb1\xad\xb7",
		"DivingScubaFlag":                        "\xf3\xb0\xb7\x82",
		"DivingScubaMask":                        "\xf3\xb0\xb7\x81",
		"DivingScubaTank":                        "\xf3\xb0\xb7\x83",
		"DivingScubaTankMultiple":                "\xf3\xb0\xb7\x84",
		"DivingSnorkel":                          "\xf3\xb0\xb7\x85",
		"Division":                               "\xf3\xb0\x87\x94",
		"DivisionBox":                            "\xf3\xb0\x87\x95",
		"Dlna":                                   "\xf3\xb0\xa9\x81",
		"Dna":                                    "\xf3\xb0\x9a\x84",
		"Dns":                                    "\xf3\xb0\x87\x96",
		"DnsOutline":                             "\xf3\xb0\xae\x8c",
		"DockBottom":                             "\xf3\xb1\x82\xa9",
		"DockLeft":                               "\xf3\xb1\x82\xaa",
		"DockRight":                              "\xf3\xb1\x82\xab",
		"DockTop":                                "\xf3\xb1\x94\x93",
		"DockWindow":                             "\xf3\xb1\x82\xac",
		"Docker":                                 "\xf3\xb0\xa1\xa8",
		"Doctor":                                 "\xf3\xb0\xa9\x82",
		"Dog":                                    "\xf3\xb0\xa9\x83",
		"DogService":                             "\xf3\xb0\xaa\xad",
		"DogSide":                                "\xf3\xb0\xa9\x84",
		"DogSideOff":                             "\xf3\xb1\x9b\xae",
		"Dolby":                                  "\xf3\xb0\x9a\xb3",
		"Dolly":                                  "\xf3\xb0\xba\x9e",
		"Dolphin":                                "\xf3\xb1\xa2\xb4",
		"Domain":                                 "\xf3\xb0\x87\x97",
		"DomainOff":                              "\xf3\xb0\xb5\xaf",
		"DomainPlus":                             "\xf3\xb1\x82\xad",
		"DomainRemove":                           "\xf3\xb1\x82\xae",
		"DomainSwitch":                           "\xf3\xb1\xb0\xac",
		"DomeLight":                              "\xf3\xb1\x90\x9e",
		"DominoMask":                             "\xf3\xb1\x80\xa3",
		"Donkey":                                 "\xf3\xb0\x9f\x82",
		"Door":                                   "\xf3\xb0\xa0\x9a",
		"DoorClosed":                             "\xf3\xb0\xa0\x9b",
		"DoorClosedCancel":                       "\xf3\xb1\xb2\x93",
		"DoorClosedLock":                         "\xf3\xb1\x82\xaf",
		"DoorOpen":                               "\xf3\xb0\xa0\x9c",
		"DoorSliding":                            "\xf3\xb1\xa0\x9e",
		"DoorSlidingLock":                        "\xf3\xb1\xa0\x9f",
		"DoorSlidingOpen":                        "\xf3\xb1\xa0\xa0",
		"Doorbell":                               "\xf3\xb1\x8b\xa6",
		"DoorbellVideo":                          "\xf3\xb0\xa1\xa9",
		"DotNet":                                 "\xf3\xb0\xaa\xae",
		"DotsCircle":                             "\xf3\xb1\xa5\xb8",
		"DotsGrid":                               "\xf3\xb1\x97\xbc",
		"DotsHexagon":                            "\xf3\xb1\x97\xbf",
		"DotsHorizontal":                         "\xf3\xb0\x87\x98",
		"DotsHorizontalCircle":                   "\xf3\xb0\x9f\x83",
		"DotsHorizontalCircleOutline":            "\xf3\xb0\xae\x8d",
		"DotsSquare":                             "\xf3\xb1\x97\xbd",
		"DotsTriangle":                           "\xf3\xb1\x97\xbe",
		"DotsVertical":                           "\xf3\xb0\x87\x99",
		"DotsVerticalCircle":                     "\xf3\xb0\x9f\x84",
		"DotsVerticalCircleOutline":              "\xf3\xb0\xae\x8e",
		"Download":                               "\xf3\xb0\x87\x9a",
		"DownloadBox":                            "\xf3\xb1\x91\xa2",
		"DownloadBoxOutline":                     "\xf3\xb1\x91\xa3",
		"DownloadCircle":                         "\xf3\xb1\x91\xa4",
		"DownloadCircleOutline":                  "\xf3\xb1\x91\xa5",
		"DownloadLock":                           "\xf3\xb1\x8c\xa0",
		"DownloadLockOutline":                    "\xf3\xb1\x8c\xa1",
		"DownloadMultiple":                       "\xf3\xb0\xa7\xa9",
		"DownloadMultipleOutline":                "\xf3\xb1\xb3\x90",
		"DownloadNetwork":                        "\xf3\xb0\x9b\xb4",
		"DownloadNetworkOutline":                 "\xf3\xb0\xb1\xa6",
		"DownloadOff":                            "\xf3\xb1\x82\xb0",
		"DownloadOffOutline":                     "\xf3\xb1\x82\xb1",
		"DownloadOutline":                        "\xf3\xb0\xae\x8f",
		"Drag":                                   "\xf3\xb0\x87\x9b",
		"DragHorizontal":                         "\xf3\xb0\x87\x9c",
		"DragHorizontalVariant":                  "\xf3\xb1\x8b\xb0",
		"DragVariant":                            "\xf3\xb0\xae\x90",
		"DragVertical":                           "\xf3\xb0\x87\x9d",
		"DragVerticalVariant":                    "\xf3\xb1\x8b\xb1",
		"DramaMasks":                             "\xf3\xb0\xb4\x82",
		"Draw":                                   "\xf3\xb0\xbd\x89",
		"DrawPen":                                "\xf3\xb1\xa6\xb9",
		"Drawing":                                "\xf3\xb0\x87\x9e",
		"DrawingBox":                             "\xf3\xb0\x87\x9f",
		"Dresser":                                "\xf3\xb0\xbd\x8a",
		"DresserOutline":                         "\xf3\xb0\xbd\x8b",
		"Drone":                                  "\xf3\xb0\x87\xa2",
		"Dropbox":                                "\xf3\xb0\x87\xa3",
		"Drupal":                                 "\xf3\xb0\x87\xa4",
		"Duck":                                   "\xf3\xb0\x87\xa5",
		"Dumbbell":                               "\xf3\xb0\x87\xa6",
		"DumpTruck":                              "\xf3\xb0\xb1\xa7",
		"EarHearing":                             "\xf3\xb0\x9f\x85",
		"EarHearingLoop":                         "\xf3\xb1\xab\xae",
		"EarHearingOff":                          "\xf3\xb0\xa9\x85",
		"Earbuds":                                "\xf3\xb1\xa1\x8f",
		"EarbudsOff":                             "\xf3\xb1\xa1\x90",
		"EarbudsOffOutline":                      "\xf3\xb1\xa1\x91",
		"EarbudsOutline":                         "\xf3\xb1\xa1\x92",
		"Earth":                                  "\xf3\xb0\x87\xa7",
		"EarthArrowDown":                         "\xf3\xb1\xb2\x87",
		"EarthArrowLeft":                         "\xf3\xb1\xb2\x88",
		"EarthArrowRight":                        "\xf3\xb1\x8c\x91",
		"EarthArrowUp":                           "\xf3\xb1\xb2\x89",
		"EarthBox":                               "\xf3\xb0\x9b\x8d",
		"EarthBoxMinus":                          "\xf3\xb1\x90\x87",
		"EarthBoxOff":                            "\xf3\xb0\x9b\x8e",
		"EarthBoxPlus":                           "\xf3\xb1\x90\x86",
		"EarthBoxRemove":                         "\xf3\xb1\x90\x88",
		"EarthMinus":                             "\xf3\xb1\x90\x84",
		"EarthOff":                               "\xf3\xb0\x87\xa8",
		"EarthPlus":                              "\xf3\xb1\x90\x83",
		"EarthRemove":                            "\xf3\xb1\x90\x85",
		"Egg":                                    "\xf3\xb0\xaa\xaf",
		"EggEaster":                              "\xf3\xb0\xaa\xb0",
		"EggFried":                               "\xf3\xb1\xa1\x8a",
		"EggOff":                                 "\xf3\xb1\x8f\xb0",
		"EggOffOutline":                          "\xf3\xb1\x8f\xb1",
		"EggOutline":                             "\xf3\xb1\x8f\xb2",
		"EiffelTower":                            "\xf3\xb1\x95\xab",
		"EightTrack":                             "\xf3\xb0\xa7\xaa",
		"Eject":                                  "\xf3\xb0\x87\xaa",
		"EjectCircle":                            "\xf3\xb1\xac\xa3",
		"EjectCircleOutline":                     "\xf3\xb1\xac\xa4",
		"EjectOutline":                           "\xf3\xb0\xae\x91",
		"ElectricSwitch":                         "\xf3\xb0\xba\x9f",
		"ElectricSwitchClosed":                   "\xf3\xb1\x83\x99",
		"ElectronFramework":                      "\xf3\xb1\x80\xa4",
		"Elephant":                               "\xf3\xb0\x9f\x86",
		"ElevationDecline":                       "\xf3\xb0\x87\xab",
		"ElevationRise":                          "\xf3\xb0\x87\xac",
		"Elevator":                               "\xf3\xb0\x87\xad",
		"ElevatorDown":                           "\xf3\xb1\x8b\x82",
		"ElevatorPassenger":                      "\xf3\xb1\x8e\x81",
		"ElevatorPassengerOff":                   "\xf3\xb1\xa5\xb9",
		"ElevatorPassengerOffOutline":            "\xf3\xb1\xa5\xba",
		"ElevatorPassengerOutline":               "\xf3\xb1\xa5\xbb",
		"ElevatorUp":                             "\xf3\xb1\x8b\x81",
		"Ellipse":                                "\xf3\xb0\xba\xa0",
		"EllipseOutline":                         "\xf3\xb0\xba\xa1",
		"Email":                                  "\xf3\xb0\x87\xae",
		"EmailAlert":                             "\xf3\xb0\x9b\x8f",
		"EmailAlertOutline":                      "\xf3\xb0\xb5\x82",
		"EmailArrowLeft":                         "\xf3\xb1\x83\x9a",
		"EmailArrowLeftOutline":                  "\xf3\xb1\x83\x9b",
		"EmailArrowRight":                        "\xf3\xb1\x83\x9c",
		"EmailArrowRightOutline":                 "\xf3\xb1\x83\x9d",
		"EmailBox":                               "\xf3\xb0\xb4\x83",
		"EmailCheck":                             "\xf3\xb0\xaa\xb1",
		"EmailCheckOutline":                      "\xf3\xb0\xaa\xb2",
		"EmailEdit":                              "\xf3\xb0\xbb\xa3",
		"EmailEditOutline":                       "\xf3\xb0\xbb\xa4",
		"EmailFast":                              "\xf3\xb1\xa1\xaf",
		"EmailFastOutline":                       "\xf3\xb1\xa1\xb0",
		"EmailHeartOutline":                      "\xf3\xb1\xb1\x9b",
		"EmailLock":                              "\xf3\xb0\x87\xb1",
		"EmailLockOutline":                       "\xf3\xb1\xad\xa1",
		"EmailMarkAsUnread":                      "\xf3\xb0\xae\x92",
		"EmailMinus":                             "\xf3\xb0\xbb\xa5",
		"EmailMinusOutline":                      "\xf3\xb0\xbb\xa6",
		"EmailMultiple":                          "\xf3\xb0\xbb\xa7",
		"EmailMultipleOutline":                   "\xf3\xb0\xbb\xa8",
		"EmailNewsletter":                        "\xf3\xb0\xbe\xb1",
		"EmailOff":                               "\xf3\xb1\x8f\xa3",
		"EmailOffOutline":                        "\xf3\xb1\x8f\xa4",
		"EmailOpen":                              "\xf3\xb0\x87\xaf",
		"EmailOpenHeartOutline":                  "\xf3\xb1\xb1\x9c",
		"EmailOpenMultiple":                      "\xf3\xb0\xbb\xa9",
		"EmailOpenMultipleOutline":               "\xf3\xb0\xbb\xaa",
		"EmailOpenOutline":                       "\xf3\xb0\x97\xaf",
		"EmailOutline":                           "\xf3\xb0\x87\xb0",
		"EmailPlus":                              "\xf3\xb0\xa7\xab",
		"EmailPlusOutline":                       "\xf3\xb0\xa7\xac",
		"EmailRemove":                            "\xf3\xb1\x99\xa1",
		"EmailRemoveOutline":                     "\xf3\xb1\x99\xa2",
		"EmailSeal":                              "\xf3\xb1\xa5\x9b",
		"EmailSealOutline":                       "\xf3\xb1\xa5\x9c",
		"EmailSearch":                            "\xf3\xb0\xa5\xa1",
		"EmailSearchOutline":                     "\xf3\xb0\xa5\xa2",
		"EmailSync":                              "\xf3\xb1\x8b\x87",
		"EmailSyncOutline":                       "\xf3\xb1\x8b\x88",
		"EmailVariant":                           "\xf3\xb0\x97\xb0",
		"Ember":                                  "\xf3\xb0\xac\xb0",
		"Emby":                                   "\xf3\xb0\x9a\xb4",
		"Emoticon":                               "\xf3\xb0\xb1\xa8",
		"EmoticonAngry":                          "\xf3\xb0\xb1\xa9",
		"EmoticonAngryOutline":                   "\xf3\xb0\xb1\xaa",
		"EmoticonConfused":                       "\xf3\xb1\x83\x9e",
		"EmoticonConfusedOutline":                "\xf3\xb1\x83\x9f",
		"EmoticonCool":                           "\xf3\xb0\xb1\xab",
		"EmoticonCoolOutline":                    "\xf3\xb0\x87\xb3",
		"EmoticonCry":                            "\xf3\xb0\xb1\xac",
		"EmoticonCryOutline":                     "\xf3\xb0\xb1\xad",
		"EmoticonDead":                           "\xf3\xb0\xb1\xae",
		"EmoticonDeadOutline":                    "\xf3\xb0\x9a\x9b",
		"EmoticonDevil":                          "\xf3\xb0\xb1\xaf",
		"EmoticonDevilOutline":                   "\xf3\xb0\x87\xb4",
		"EmoticonExcited":                        "\xf3\xb0\xb1\xb0",
		"EmoticonExcitedOutline":                 "\xf3\xb0\x9a\x9c",
		"EmoticonFrown":                          "\xf3\xb0\xbd\x8c",
		"EmoticonFrownOutline":                   "\xf3\xb0\xbd\x8d",
		"EmoticonHappy":                          "\xf3\xb0\xb1\xb1",
		"EmoticonHappyOutline":                   "\xf3\xb0\x87\xb5",
		"EmoticonKiss":                           "\xf3\xb0\xb1\xb2",
		"EmoticonKissOutline":                    "\xf3\xb0\xb1\xb3",
		"EmoticonLol":                            "\xf3\xb1\x88\x94",
		"EmoticonLolOutline":                     "\xf3\xb1\x88\x95",
		"EmoticonMinus":                          "\xf3\xb1\xb2\xb2",
		"EmoticonMinusOutline":                   "\xf3\xb1\xb2\xb3",
		"EmoticonNeutral":                        "\xf3\xb0\xb1\xb4",
		"EmoticonNeutralOutline":                 "\xf3\xb0\x87\xb6",
		"EmoticonOutline":                        "\xf3\xb0\x87\xb2",
		"EmoticonPlus":                           "\xf3\xb1\xb2\xb4",
		"EmoticonPlusOutline":                    "\xf3\xb1\xb2\xb5",
		"EmoticonPoop":                           "\xf3\xb0\x87\xb7",
		"EmoticonPoopOutline":                    "\xf3\xb0\xb1\xb5",
		"EmoticonRemove":                         "\xf3\xb1\xb2\xb6",
		"EmoticonRemoveOutline":                  "\xf3\xb1\xb2\xb7",
		"EmoticonSad":                            "\xf3\xb0\xb1\xb6",
		"EmoticonSadOutline":                     "\xf3\xb0\x87\xb8",
		"EmoticonSick":                           "\xf3\xb1\x95\xbc",
		"EmoticonSickOutline":                    "\xf3\xb1\x95\xbd",
		"EmoticonTongue":                         "\xf3\xb0\x87\xb9",
		"EmoticonTongueOutline":                  "\xf3\xb0\xb1\xb7",
		"EmoticonWink":                           "\xf3\xb0\xb1\xb8",
		"EmoticonWinkOutline":                    "\xf3\xb0\xb1\xb9",
		"Engine":                                 "\xf3\xb0\x87\xba",
		"EngineOff":                              "\xf3\xb0\xa9\x86",
		"EngineOffOutline":                       "\xf3\xb0\xa9\x87",
		"EngineOutline":                          "\xf3\xb0\x87\xbb",
		"Epsilon":                                "\xf3\xb1\x83\xa0",
		"Equal":                                  "\xf3\xb0\x87\xbc",
		"EqualBox":                               "\xf3\xb0\x87\xbd",
		"Equalizer":                              "\xf3\xb0\xba\xa2",
		"EqualizerOutline":                       "\xf3\xb0\xba\xa3",
		"Eraser":                                 "\xf3\xb0\x87\xbe",
		"EraserVariant":                          "\xf3\xb0\x99\x82",
		"Escalator":                              "\xf3\xb0\x87\xbf",
		"EscalatorBox":                           "\xf3\xb1\x8e\x99",
		"EscalatorDown":                          "\xf3\xb1\x8b\x80",
		"EscalatorUp":                            "\xf3\xb1\x8a\xbf",
		"Eslint":                                 "\xf3\xb0\xb1\xba",
		"Et":                                     "\xf3\xb0\xaa\xb3",
		"Ethereum":                               "\xf3\xb0\xa1\xaa",
		"Ethernet":                               "\xf3\xb0\x88\x80",
		"EthernetCable":                          "\xf3\xb0\x88\x81",
		"EthernetCableOff":                       "\xf3\xb0\x88\x82",
		"EthernetOff":                            "\xf3\xb1\xb3\x91",
		"EvPlugCcs1":                             "\xf3\xb1\x94\x99",
		"EvPlugCcs2":                             "\xf3\xb1\x94\x9a",
		"EvPlugChademo":                          "\xf3\xb1\x94\x9b",
		"EvPlugTesla":                            "\xf3\xb1\x94\x9c",
		"EvPlugType1":                            "\xf3\xb1\x94\x9d",
		"EvPlugType2":                            "\xf3\xb1\x94\x9e",
		"EvStation":                              "\xf3\xb0\x97\xb1",
		"Evernote":                               "\xf3\xb0\x88\x84",
		"Excavator":                              "\xf3\xb1\x80\xa5",
		"Exclamation":                            "\xf3\xb0\x88\x85",
		"ExclamationThick":                       "\xf3\xb1\x88\xb8",
		"ExitRun":                                "\xf3\xb0\xa9\x88",
		"ExitToApp":                              "\xf3\xb0\x88\x86",
		"ExpandAll":                              "\xf3\xb0\xaa\xb4",
		"ExpandAllOutline":                       "\xf3\xb0\xaa\xb5",
		"ExpansionCard":                          "\xf3\xb0\xa2\xae",
		"ExpansionCardVariant":                   "\xf3\xb0\xbe\xb2",
		"Exponent":                               "\xf3\xb0\xa5\xa3",
		"ExponentBox":                            "\xf3\xb0\xa5\xa4",
		"Export":                                 "\xf3\xb0\x88\x87",
		"ExportVariant":                          "\xf3\xb0\xae\x93",
		"Eye":                                    "\xf3\xb0\x88\x88",
		"EyeArrowLeft":                           "\xf3\xb1\xa3\xbd",
		"EyeArrowLeftOutline":                    "\xf3\xb1\xa3\xbe",
		"EyeArrowRight":                          "\xf3\xb1\xa3\xbf",
		"EyeArrowRightOutline":                   "\xf3\xb1\xa4\x80",
		"EyeCheck":                               "\xf3\xb0\xb4\x84",
		"EyeCheckOutline":                        "\xf3\xb0\xb4\x85",
		"EyeCircle":                              "\xf3\xb0\xae\x94",
		"EyeCircleOutline":                       "\xf3\xb0\xae\x95",
		"EyeClosed":                              "\xf3\xb1\xb2\xa3",
		"EyeLock":                                "\xf3\xb1\xb0\x86",
		"EyeLockOpen":                            "\xf3\xb1\xb0\x87",
		"EyeLockOpenOutline":                     "\xf3\xb1\xb0\x88",
		"EyeLockOutline":                         "\xf3\xb1\xb0\x89",
		"EyeMinus":                               "\xf3\xb1\x80\xa6",
		"EyeMinusOutline":                        "\xf3\xb1\x80\xa7",
		"EyeOff":                                 "\xf3\xb0\x88\x89",
		"EyeOffOutline":                          "\xf3\xb0\x9b\x91",
		"EyeOutline":                             "\xf3\xb0\x9b\x90",
		"EyePlus":                                "\xf3\xb0\xa1\xab",
		"EyePlusOutline":                         "\xf3\xb0\xa1\xac",
		"EyeRefresh":                             "\xf3\xb1\xa5\xbc",
		"EyeRefreshOutline":                      "\xf3\xb1\xa5\xbd",
		"EyeRemove":                              "\xf3\xb1\x97\xa3",
		"EyeRemoveOutline":                       "\xf3\xb1\x97\xa4",
		"EyeSettings":                            "\xf3\xb0\xa1\xad",
		"EyeSettingsOutline":                     "\xf3\xb0\xa1\xae",
		"Eyedropper":                             "\xf3\xb0\x88\x8a",
		"EyedropperMinus":                        "\xf3\xb1\x8f\x9d",
		"EyedropperOff":                          "\xf3\xb1\x8f\x9f",
		"EyedropperPlus":                         "\xf3\xb1\x8f\x9c",
		"EyedropperRemove":                       "\xf3\xb1\x8f\x9e",
		"EyedropperVariant":                      "\xf3\xb0\x88\x8b",
		"FaceAgent":                              "\xf3\xb0\xb5\xb0",
		"FaceMan":                                "\xf3\xb0\x99\x83",
		"FaceManOutline":                         "\xf3\xb0\xae\x96",
		"FaceManProfile":                         "\xf3\xb0\x99\x84",
		"FaceManShimmer":                         "\xf3\xb1\x97\x8c",
		"FaceManShimmerOutline":                  "\xf3\xb1\x97\x8d",
		"FaceMask":                               "\xf3\xb1\x96\x86",
		"FaceMaskOutline":                        "\xf3\xb1\x96\x87",
		"FaceRecognition":                        "\xf3\xb0\xb1\xbb",
		"FaceWoman":                              "\xf3\xb1\x81\xb7",
		"FaceWomanOutline":                       "\xf3\xb1\x81\xb8",
		"FaceWomanProfile":                       "\xf3\xb1\x81\xb6",
		"FaceWomanShimmer":                       "\xf3\xb1\x97\x8e",
		"FaceWomanShimmerOutline":                "\xf3\xb1\x97\x8f",
		"Facebook":                               "\xf3\xb0\x88\x8c",
		"FacebookGaming":                         "\xf3\xb0\x9f\x9d",
		"FacebookMessenger":                      "\xf3\xb0\x88\x8e",
		"FacebookWorkplace":                      "\xf3\xb0\xac\xb1",
		"Factory":                                "\xf3\xb0\x88\x8f",
		"FamilyTree":                             "\xf3\xb1\x98\x8e",
		"Fan":                                    "\xf3\xb0\x88\x90",
		"FanAlert":                               "\xf3\xb1\x91\xac",
		"FanAuto":                                "\xf3\xb1\x9c\x9d",
		"FanChevronDown":                         "\xf3\xb1\x91\xad",
		"FanChevronUp":                           "\xf3\xb1\x91\xae",
		"FanClock":                               "\xf3\xb1\xa8\xba",
		"FanMinus":                               "\xf3\xb1\x91\xb0",
		"FanOff":                                 "\xf3\xb0\xa0\x9d",
		"FanPlus":                                "\xf3\xb1\x91\xaf",
		"FanRemove":                              "\xf3\xb1\x91\xb1",
		"FanSpeed1":                              "\xf3\xb1\x91\xb2",
		"FanSpeed2":                              "\xf3\xb1\x91\xb3",
		"FanSpeed3":                              "\xf3\xb1\x91\xb4",
		"FastForward":                            "\xf3\xb0\x88\x91",
		"FastForward10":                          "\xf3\xb0\xb5\xb1",
		"FastForward15":                          "\xf3\xb1\xa4\xba",
		"FastForward30":                          "\xf3\xb0\xb4\x86",
		"FastForward45":                          "\xf3\xb1\xac\x92",
		"FastForward5":                           "\xf3\xb1\x87\xb8",
		"FastForward60":                          "\xf3\xb1\x98\x8b",
		"FastForwardOutline":                     "\xf3\xb0\x9b\x92",
		"Faucet":                                 "\xf3\xb1\xac\xa9",
		"FaucetVariant":                          "\xf3\xb1\xac\xaa",
		"Fax":                                    "\xf3\xb0\x88\x92",
		"Feather":                                "\xf3\xb0\x9b\x93",
		"FeatureSearch":                          "\xf3\xb0\xa9\x89",
		"FeatureSearchOutline":                   "\xf3\xb0\xa9\x8a",
		"Fedora":                                 "\xf3\xb0\xa3\x9b",
		"Fence":                                  "\xf3\xb1\x9e\x9a",
		"FenceElectric":                          "\xf3\xb1\x9f\xb6",
		"Fencing":                                "\xf3\xb1\x93\x81",
		"FerrisWheel":                            "\xf3\xb0\xba\xa4",
		"Ferry":                                  "\xf3\xb0\x88\x93",
		"File":                                   "\xf3\xb0\x88\x94",
		"FileAccount":                            "\xf3\xb0\x9c\xbb",
		"FileAccountOutline":                     "\xf3\xb1\x80\xa8",
		"FileAlert":                              "\xf3\xb0\xa9\x8b",
		"FileAlertOutline":                       "\xf3\xb0\xa9\x8c",
		"FileArrowLeftRight":                     "\xf3\xb1\xaa\x93",
		"FileArrowLeftRightOutline":              "\xf3\xb1\xaa\x94",
		"FileArrowUpDown":                        "\xf3\xb1\xaa\x95",
		"FileArrowUpDownOutline":                 "\xf3\xb1\xaa\x96",
		"FileCabinet":                            "\xf3\xb0\xaa\xb6",
		"FileCad":                                "\xf3\xb0\xbb\xab",
		"FileCadBox":                             "\xf3\xb0\xbb\xac",
		"FileCancel":                             "\xf3\xb0\xb7\x86",
		"FileCancelOutline":                      "\xf3\xb0\xb7\x87",
		"FileCertificate":                        "\xf3\xb1\x86\x86",
		"FileCertificateOutline":                 "\xf3\xb1\x86\x87",
		"FileChart":                              "\xf3\xb0\x88\x95",
		"FileChartCheck":                         "\xf3\xb1\xa7\x86",
		"FileChartCheckOutline":                  "\xf3\xb1\xa7\x87",
		"FileChartOutline":                       "\xf3\xb1\x80\xa9",
		"FileCheck":                              "\xf3\xb0\x88\x96",
		"FileCheckOutline":                       "\xf3\xb0\xb8\xa9",
		"FileClock":                              "\xf3\xb1\x8b\xa1",
		"FileClockOutline":                       "\xf3\xb1\x8b\xa2",
		"FileCloud":                              "\xf3\xb0\x88\x97",
		"FileCloudOutline":                       "\xf3\xb1\x80\xaa",
		"FileCode":                               "\xf3\xb0\x88\xae",
		"FileCodeOutline":                        "\xf3\xb1\x80\xab",
		"FileCog":                                "\xf3\xb1\x81\xbb",
		"FileCogOutline":                         "\xf3\xb1\x81\xbc",
		"FileCompare":                            "\xf3\xb0\xa2\xaa",
		"FileDelimited":                          "\xf3\xb0\x88\x98",
		"FileDelimitedOutline":                   "\xf3\xb0\xba\xa5",
		"FileDocument":                           "\xf3\xb0\x88\x99",
		"FileDocumentAlert":                      "\xf3\xb1\xaa\x97",
		"FileDocumentAlertOutline":               "\xf3\xb1\xaa\x98",
		"FileDocumentArrowRight":                 "\xf3\xb1\xb0\x8f",
		"FileDocumentArrowRightOutline":          "\xf3\xb1\xb0\x90",
		"FileDocumentCheck":                      "\xf3\xb1\xaa\x99",
		"FileDocumentCheckOutline":               "\xf3\xb1\xaa\x9a",
		"FileDocumentEdit":                       "\xf3\xb0\xb7\x88",
		"FileDocumentEditOutline":                "\xf3\xb0\xb7\x89",
		"FileDocumentMinus":                      "\xf3\xb1\xaa\x9b",
		"FileDocumentMinusOutline":               "\xf3\xb1\xaa\x9c",
		"FileDocumentMultiple":                   "\xf3\xb1\x94\x97",
		"FileDocumentMultipleOutline":            "\xf3\xb1\x94\x98",
		"FileDocumentOutline":                    "\xf3\xb0\xa7\xae",
		"FileDocumentPlus":                       "\xf3\xb1\xaa\x9d",
		"FileDocumentPlusOutline":                "\xf3\xb1\xaa\x9e",
		"FileDocumentRefresh":                    "\xf3\xb1\xb1\xba",
		"FileDocumentRefreshOutline":             "\xf3\xb1\xb1\xbb",
		"FileDocumentRemove":                     "\xf3\xb1\xaa\x9f",
		"FileDocumentRemoveOutline":              "\xf3\xb1\xaa\xa0",
		"FileDownload":                           "\xf3\xb0\xa5\xa5",
		"FileDownloadOutline":                    "\xf3\xb0\xa5\xa6",
		"FileEdit":                               "\xf3\xb1\x87\xa7",
		"FileEditOutline":                        "\xf3\xb1\x87\xa8",
		"FileExcel":                              "\xf3\xb0\x88\x9b",
		"FileExcelBox":                           "\xf3\xb0\x88\x9c",
		"FileExcelBoxOutline":                    "\xf3\xb1\x80\xac",
		"FileExcelOutline":                       "\xf3\xb1\x80\xad",
		"FileExport":                             "\xf3\xb0\x88\x9d",
		"FileExportOutline":                      "\xf3\xb1\x80\xae",
		"FileEye":                                "\xf3\xb0\xb7\x8a",
		"FileEyeOutline":                         "\xf3\xb0\xb7\x8b",
		"FileFind":                               "\xf3\xb0\x88\x9e",
		"FileFindOutline":                        "\xf3\xb0\xae\x97",
		"FileGifBox":                             "\xf3\xb0\xb5\xb8",
		"FileHidden":                             "\xf3\xb0\x98\x93",
		"FileImage":                              "\xf3\xb0\x88\x9f",
		"FileImageMarker":                        "\xf3\xb1\x9d\xb2",
		"FileImageMarkerOutline":                 "\xf3\xb1\x9d\xb3",
		"FileImageMinus":                         "\xf3\xb1\xa4\xbb",
		"FileImageMinusOutline":                  "\xf3\xb1\xa4\xbc",
		"FileImageOutline":                       "\xf3\xb0\xba\xb0",
		"FileImagePlus":                          "\xf3\xb1\xa4\xbd",
		"FileImagePlusOutline":                   "\xf3\xb1\xa4\xbe",
		"FileImageRemove":                        "\xf3\xb1\xa4\xbf",
		"FileImageRemoveOutline":                 "\xf3\xb1\xa5\x80",
		"FileImport":                             "\xf3\xb0\x88\xa0",
		"FileImportOutline":                      "\xf3\xb1\x80\xaf",
		"FileJpgBox":                             "\xf3\xb0\x88\xa5",
		"FileKey":                                "\xf3\xb1\x86\x84",
		"FileKeyOutline":                         "\xf3\xb1\x86\x85",
		"FileLink":                               "\xf3\xb1\x85\xb7",
		"FileLinkOutline":                        "\xf3\xb1\x85\xb8",
		"FileLock":                               "\xf3\xb0\x88\xa1",
		"FileLockOpen":                           "\xf3\xb1\xa7\x88",
		"FileLockOpenOutline":                    "\xf3\xb1\xa7\x89",
		"FileLockOutline":                        "\xf3\xb1\x80\xb0",
		"FileMarker":                             "\xf3\xb1\x9d\xb4",
		"FileMarkerOutline":                      "\xf3\xb1\x9d\xb5",
		"FileMinus":                              "\xf3\xb1\xaa\xa1",
		"FileMinusOutline":                       "\xf3\xb1\xaa\xa2",
		"FileMove":                               "\xf3\xb0\xaa\xb9",
		"FileMoveOutline":                        "\xf3\xb1\x80\xb1",
		"FileMultiple":                           "\xf3\xb0\x88\xa2",
		"FileMultipleOutline":                    "\xf3\xb1\x80\xb2",
		"FileMusic":                              "\xf3\xb0\x88\xa3",
		"FileMusicOutline":                       "\xf3\xb0\xb8\xaa",
		"FileOutline":                            "\xf3\xb0\x88\xa4",
		"FilePdfBox":                             "\xf3\xb0\x88\xa6",
		"FilePercent":                            "\xf3\xb0\xa0\x9e",
		"FilePercentOutline":                     "\xf3\xb1\x80\xb3",
		"FilePhone":                              "\xf3\xb1\x85\xb9",
		"FilePhoneOutline":                       "\xf3\xb1\x85\xba",
		"FilePlus":                               "\xf3\xb0\x9d\x92",
		"FilePlusOutline":                        "\xf3\xb0\xbb\xad",
		"FilePngBox":                             "\xf3\xb0\xb8\xad",
		"FilePowerpoint":                         "\xf3\xb0\x88\xa7",
		"FilePowerpointBox":                      "\xf3\xb0\x88\xa8",
		"FilePowerpointBoxOutline":               "\xf3\xb1\x80\xb4",
		"FilePowerpointOutline":                  "\xf3\xb1\x80\xb5",
		"FilePresentationBox":                    "\xf3\xb0\x88\xa9",
		"FileQuestion":                           "\xf3\xb0\xa1\xaf",
		"FileQuestionOutline":                    "\xf3\xb1\x80\xb6",
		"FileRefresh":                            "\xf3\xb0\xa4\x98",
		"FileRefreshOutline":                     "\xf3\xb0\x95\x81",
		"FileRemove":                             "\xf3\xb0\xae\x98",
		"FileRemoveOutline":                      "\xf3\xb1\x80\xb7",
		"FileReplace":                            "\xf3\xb0\xac\xb2",
		"FileReplaceOutline":                     "\xf3\xb0\xac\xb3",
		"FileRestore":                            "\xf3\xb0\x99\xb0",
		"FileRestoreOutline":                     "\xf3\xb1\x80\xb8",
		"FileRotateLeft":                         "\xf3\xb1\xa8\xbb",
		"FileRotateLeftOutline":                  "\xf3\xb1\xa8\xbc",
		"FileRotateRight":                        "\xf3\xb1\xa8\xbd",
		"FileRotateRightOutline":                 "\xf3\xb1\xa8\xbe",
		"FileSearch":                             "\xf3\xb0\xb1\xbc",
		"FileSearchOutline":                      "\xf3\xb0\xb1\xbd",
		"FileSend":                               "\xf3\xb0\x88\xaa",
		"FileSendOutline":                        "\xf3\xb1\x80\xb9",
		"FileSettings":                           "\xf3\xb1\x81\xb9",
		"FileSettingsOutline":                    "\xf3\xb1\x81\xba",
		"FileSign":                               "\xf3\xb1\xa7\x83",
		"FileStar":                               "\xf3\xb1\x80\xba",
		"FileStarFourPoints":                     "\xf3\xb1\xb0\xad",
		"FileStarFourPointsOutline":              "\xf3\xb1\xb0\xae",
		"FileStarOutline":                        "\xf3\xb1\x80\xbb",
		"FileSwap":                               "\xf3\xb0\xbe\xb4",
		"FileSwapOutline":                        "\xf3\xb0\xbe\xb5",
		"FileSync":                               "\xf3\xb1\x88\x96",
		"FileSyncOutline":                        "\xf3\xb1\x88\x97",
		"FileTable":                              "\xf3\xb0\xb1\xbe",
		"FileTableBox":                           "\xf3\xb1\x83\xa1",
		"FileTableBoxMultiple":                   "\xf3\xb1\x83\xa2",
		"FileTableBoxMultipleOutline":            "\xf3\xb1\x83\xa3",
		"FileTableBoxOutline":                    "\xf3\xb1\x83\xa4",
		"FileTableOutline":                       "\xf3\xb0\xb1\xbf",
		"FileTree":                               "\xf3\xb0\x99\x85",
		"FileTreeOutline":                        "\xf3\xb1\x8f\x92",
		"FileUndo":                               "\xf3\xb0\xa3\x9c",
		"FileUndoOutline":                        "\xf3\xb1\x80\xbc",
		"FileUpload":                             "\xf3\xb0\xa9\x8d",
		"FileUploadOutline":                      "\xf3\xb0\xa9\x8e",
		"FileVideo":                              "\xf3\xb0\x88\xab",
		"FileVideoOutline":                       "\xf3\xb0\xb8\xac",
		"FileWord":                               "\xf3\xb0\x88\xac",
		"FileWordBox":                            "\xf3\xb0\x88\xad",
		"FileWordBoxOutline":                     "\xf3\xb1\x80\xbd",
		"FileWordOutline":                        "\xf3\xb1\x80\xbe",
		"FileXmlBox":                             "\xf3\xb1\xad\x8b",
		"Film":                                   "\xf3\xb0\x88\xaf",
		"Filmstrip":                              "\xf3\xb0\x88\xb0",
		"FilmstripBox":                           "\xf3\xb0\x8c\xb2",
		"FilmstripBoxMultiple":                   "\xf3\xb0\xb4\x98",
		"FilmstripOff":                           "\xf3\xb0\x88\xb1",
		"Filter":                                 "\xf3\xb0\x88\xb2",
		"FilterCheck":                            "\xf3\xb1\xa3\xac",
		"FilterCheckOutline":                     "\xf3\xb1\xa3\xad",
		"FilterCog":                              "\xf3\xb1\xaa\xa3",
		"FilterCogOutline":                       "\xf3\xb1\xaa\xa4",
		"FilterMenu":                             "\xf3\xb1\x83\xa5",
		"FilterMenuOutline":                      "\xf3\xb1\x83\xa6",
		"FilterMinus":                            "\xf3\xb0\xbb\xae",
		"FilterMinusOutline":                     "\xf3\xb0\xbb\xaf",
		"FilterMultiple":                         "\xf3\xb1\xa8\xbf",
		"FilterMultipleOutline":                  "\xf3\xb1\xa9\x80",
		"FilterOff":                              "\xf3\xb1\x93\xaf",
		"FilterOffOutline":                       "\xf3\xb1\x93\xb0",
		"FilterOutline":                          "\xf3\xb0\x88\xb3",
		"FilterPlus":                             "\xf3\xb0\xbb\xb0",
		"FilterPlusOutline":                      "\xf3\xb0\xbb\xb1",
		"FilterRemove":                           "\xf3\xb0\x88\xb4",
		"FilterRemoveOutline":                    "\xf3\xb0\x88\xb5",
		"FilterSettings":                         "\xf3\xb1\xaa\xa5",
		"FilterSettingsOutline":                  "\xf3\xb1\xaa\xa6",
		"FilterVariant":                          "\xf3\xb0\x88\xb6",
		"FilterVariantMinus":                     "\xf3\xb1\x84\x92",
		"FilterVariantPlus":                      "\xf3\xb1\x84\x93",
		"FilterVariantRemove":                    "\xf3\xb1\x80\xbf",
		"Finance":                                "\xf3\xb0\xa0\x9f",
		"FindReplace":                            "\xf3\xb0\x9b\x94",
		"Fingerprint":                            "\xf3\xb0\x88\xb7",
		"FingerprintOff":                         "\xf3\xb0\xba\xb1",
		"Fire":                                   "\xf3\xb0\x88\xb8",
		"FireAlert":                              "\xf3\xb1\x97\x97",
		"FireCircle":                             "\xf3\xb1\xa0\x87",
		"FireExtinguisher":                       "\xf3\xb0\xbb\xb2",
		"FireHydrant":                            "\xf3\xb1\x84\xb7",
		"FireHydrantAlert":                       "\xf3\xb1\x84\xb8",
		"FireHydrantOff":                         "\xf3\xb1\x84\xb9",
		"FireOff":                                "\xf3\xb1\x9c\xa2",
		"FireStation":                            "\xf3\xb1\xb3\x83",
		"FireTruck":                              "\xf3\xb0\xa2\xab",
		"Firebase":                               "\xf3\xb0\xa5\xa7",
		"Firefox":                                "\xf3\xb0\x88\xb9",
		"Fireplace":                              "\xf3\xb0\xb8\xae",
		"FireplaceOff":                           "\xf3\xb0\xb8\xaf",
		"Firewire":                               "\xf3\xb0\x96\xbe",
		"Firework":                               "\xf3\xb0\xb8\xb0",
		"FireworkOff":                            "\xf3\xb1\x9c\xa3",
		"Fish":                                   "\xf3\xb0\x88\xba",
		"FishOff":                                "\xf3\xb1\x8f\xb3",
		"Fishbowl":                               "\xf3\xb0\xbb\xb3",
		"FishbowlOutline":                        "\xf3\xb0\xbb\xb4",
		"FitToPage":                              "\xf3\xb0\xbb\xb5",
		"FitToPageOutline":                       "\xf3\xb0\xbb\xb6",
		"FitToScreen":                            "\xf3\xb1\xa3\xb4",
		"FitToScreenOutline":                     "\xf3\xb1\xa3\xb5",
		"Flag":                                   "\xf3\xb0\x88\xbb",
		"FlagCheckered":                          "\xf3\xb0\x88\xbc",
		"FlagMinus":                              "\xf3\xb0\xae\x99",
		"FlagMinusOutline":                       "\xf3\xb1\x82\xb2",
		"FlagOff":                                "\xf3\xb1\xa3\xae",
		"FlagOffOutline":                         "\xf3\xb1\xa3\xaf",
		"FlagOutline":                            "\xf3\xb0\x88\xbd",
		"FlagPlus":                               "\xf3\xb0\xae\x9a",
		"FlagPlusOutline":                        "\xf3\xb1\x82\xb3",
		"FlagRemove":                             "\xf3\xb0\xae\x9b",
		"FlagRemoveOutline":                      "\xf3\xb1\x82\xb4",
		"FlagTriangle":                           "\xf3\xb0\x88\xbf",
		"FlagVariant":                            "\xf3\xb0\x89\x80",
		"FlagVariantMinus":                       "\xf3\xb1\xae\xb4",
		"FlagVariantMinusOutline":                "\xf3\xb1\xae\xb5",
		"FlagVariantOff":                         "\xf3\xb1\xae\xb0",
		"FlagVariantOffOutline":                  "\xf3\xb1\xae\xb1",
		"FlagVariantOutline":                     "\xf3\xb0\x88\xbe",
		"FlagVariantPlus":                        "\xf3\xb1\xae\xb2",
		"FlagVariantPlusOutline":                 "\xf3\xb1\xae\xb3",
		"FlagVariantRemove":                      "\xf3\xb1\xae\xb6",
		"FlagVariantRemoveOutline":               "\xf3\xb1\xae\xb7",
		"Flare":                                  "\xf3\xb0\xb5\xb2",
		"Flash":                                  "\xf3\xb0\x89\x81",
		"FlashAlert":                             "\xf3\xb0\xbb\xb7",
		"FlashAlertOutline":                      "\xf3\xb0\xbb\xb8",
		"FlashAuto":                              "\xf3\xb0\x89\x82",
		"FlashOff":                               "\xf3\xb0\x89\x83",
		"FlashOffOutline":                        "\xf3\xb1\xad\x85",
		"FlashOutline":                           "\xf3\xb0\x9b\x95",
		"FlashRedEye":                            "\xf3\xb0\x99\xbb",
		"FlashTriangle":                          "\xf3\xb1\xac\x9d",
		"FlashTriangleOutline":                   "\xf3\xb1\xac\x9e",
		"Flashlight":                             "\xf3\xb0\x89\x84",
		"FlashlightOff":                          "\xf3\xb0\x89\x85",
		"Flask":                                  "\xf3\xb0\x82\x93",
		"FlaskEmpty":                             "\xf3\xb0\x82\x94",
		"FlaskEmptyMinus":                        "\xf3\xb1\x88\xba",
		"FlaskEmptyMinusOutline":                 "\xf3\xb1\x88\xbb",
		"FlaskEmptyOff":                          "\xf3\xb1\x8f\xb4",
		"FlaskEmptyOffOutline":                   "\xf3\xb1\x8f\xb5",
		"FlaskEmptyOutline":                      "\xf3\xb0\x82\x95",
		"FlaskEmptyPlus":                         "\xf3\xb1\x88\xbc",
		"FlaskEmptyPlusOutline":                  "\xf3\xb1\x88\xbd",
		"FlaskEmptyRemove":                       "\xf3\xb1\x88\xbe",
		"FlaskEmptyRemoveOutline":                "\xf3\xb1\x88\xbf",
		"FlaskMinus":                             "\xf3\xb1\x89\x80",
		"FlaskMinusOutline":                      "\xf3\xb1\x89\x81",
		"FlaskOff":                               "\xf3\xb1\x8f\xb6",
		"FlaskOffOutline":                        "\xf3\xb1\x8f\xb7",
		"FlaskOutline":                           "\xf3\xb0\x82\x96",
		"FlaskPlus":                              "\xf3\xb1\x89\x82",
		"FlaskPlusOutline":                       "\xf3\xb1\x89\x83",
		"FlaskRemove":                            "\xf3\xb1\x89\x84",
		"FlaskRemoveOutline":                     "\xf3\xb1\x89\x85",
		"FlaskRoundBottom":                       "\xf3\xb1\x89\x8b",
		"FlaskRoundBottomEmpty":                  "\xf3\xb1\x89\x8c",
		"FlaskRoundBottomEmptyOutline":           "\xf3\xb1\x89\x8d",
		"FlaskRoundBottomOutline":                "\xf3\xb1\x89\x8e",
		"FleurDeLis":                             "\xf3\xb1\x8c\x83",
		"FlipHorizontal":                         "\xf3\xb1\x83\xa7",
		"FlipToBack":                             "\xf3\xb0\x89\x87",
		"FlipToFront":                            "\xf3\xb0\x89\x88",
		"FlipVertical":                           "\xf3\xb1\x83\xa8",
		"FloorLamp":                              "\xf3\xb0\xa3\x9d",
		"FloorLampDual":                          "\xf3\xb1\x81\x80",
		"FloorLampDualOutline":                   "\xf3\xb1\x9f\x8e",
		"FloorLampOutline":                       "\xf3\xb1\x9f\x88",
		"FloorLampTorchiere":                     "\xf3\xb1\x9d\x87",
		"FloorLampTorchiereOutline":              "\xf3\xb1\x9f\x96",
		"FloorLampTorchiereVariant":              "\xf3\xb1\x81\x81",
		"FloorLampTorchiereVariantOutline":       "\xf3\xb1\x9f\x8f",
		"FloorPlan":                              "\xf3\xb0\xa0\xa1",
		"Floppy":                                 "\xf3\xb0\x89\x89",
		"FloppyVariant":                          "\xf3\xb0\xa7\xaf",
		"Flower":                                 "\xf3\xb0\x89\x8a",
		"FlowerOutline":                          "\xf3\xb0\xa7\xb0",
		"FlowerPollen":                           "\xf3\xb1\xa2\x85",
		"FlowerPollenOutline":                    "\xf3\xb1\xa2\x86",
		"FlowerPoppy":                            "\xf3\xb0\xb4\x88",
		"FlowerTulip":                            "\xf3\xb0\xa7\xb1",
		"FlowerTulipOutline":                     "\xf3\xb0\xa7\xb2",
		"FocusAuto":                              "\xf3\xb0\xbd\x8e",
		"FocusField":                             "\xf3\xb0\xbd\x8f",
		"FocusFieldHorizontal":                   "\xf3\xb0\xbd\x90",
		"FocusFieldVertical":                     "\xf3\xb0\xbd\x91",
		"Folder":                                 "\xf3\xb0\x89\x8b",
		"FolderAccount":                          "\xf3\xb0\x89\x8c",
		"FolderAccountOutline":                   "\xf3\xb0\xae\x9c",
		"FolderAlert":                            "\xf3\xb0\xb7\x8c",
		"FolderAlertOutline":                     "\xf3\xb0\xb7\x8d",
		"FolderArrowDown":                        "\xf3\xb1\xa7\xa8",
		"FolderArrowDownOutline":                 "\xf3\xb1\xa7\xa9",
		"FolderArrowLeft":                        "\xf3\xb1\xa7\xaa",
		"FolderArrowLeftOutline":                 "\xf3\xb1\xa7\xab",
		"FolderArrowLeftRight":                   "\xf3\xb1\xa7\xac",
		"FolderArrowLeftRightOutline":            "\xf3\xb1\xa7\xad",
		"FolderArrowRight":                       "\xf3\xb1\xa7\xae",
		"FolderArrowRightOutline":                "\xf3\xb1\xa7\xaf",
		"FolderArrowUp":                          "\xf3\xb1\xa7\xb0",
		"FolderArrowUpDown":                      "\xf3\xb1\xa7\xb1",
		"FolderArrowUpDownOutline":               "\xf3\xb1\xa7\xb2",
		"FolderArrowUpOutline":                   "\xf3\xb1\xa7\xb3",
		"FolderCancel":                           "\xf3\xb1\xa7\xb4",
		"FolderCancelOutline":                    "\xf3\xb1\xa7\xb5",
		"FolderCheck":                            "\xf3\xb1\xa5\xbe",
		"FolderCheckOutline":                     "\xf3\xb1\xa5\xbf",
		"FolderClock":                            "\xf3\xb0\xaa\xba",
		"FolderClockOutline":                     "\xf3\xb0\xaa\xbb",
		"FolderCog":                              "\xf3\xb1\x81\xbf",
		"FolderCogOutline":                       "\xf3\xb1\x82\x80",
		"FolderDownload":                         "\xf3\xb0\x89\x8d",
		"FolderDownloadOutline":                  "\xf3\xb1\x83\xa9",
		"FolderEdit":                             "\xf3\xb0\xa3\x9e",
		"FolderEditOutline":                      "\xf3\xb0\xb7\x8e",
		"FolderEye":                              "\xf3\xb1\x9e\x8a",
		"FolderEyeOutline":                       "\xf3\xb1\x9e\x8b",
		"FolderFile":                             "\xf3\xb1\xa7\xb6",
		"FolderFileOutline":                      "\xf3\xb1\xa7\xb7",
		"FolderGoogleDrive":                      "\xf3\xb0\x89\x8e",
		"FolderHeart":                            "\xf3\xb1\x83\xaa",
		"FolderHeartOutline":                     "\xf3\xb1\x83\xab",
		"FolderHidden":                           "\xf3\xb1\x9e\x9e",
		"FolderHome":                             "\xf3\xb1\x82\xb5",
		"FolderHomeOutline":                      "\xf3\xb1\x82\xb6",
		"FolderImage":                            "\xf3\xb0\x89\x8f",
		"FolderInformation":                      "\xf3\xb1\x82\xb7",
		"FolderInformationOutline":               "\xf3\xb1\x82\xb8",
		"FolderKey":                              "\xf3\xb0\xa2\xac",
		"FolderKeyNetwork":                       "\xf3\xb0\xa2\xad",
		"FolderKeyNetworkOutline":                "\xf3\xb0\xb2\x80",
		"FolderKeyOutline":                       "\xf3\xb1\x83\xac",
		"FolderLock":                             "\xf3\xb0\x89\x90",
		"FolderLockOpen":                         "\xf3\xb0\x89\x91",
		"FolderLockOpenOutline":                  "\xf3\xb1\xaa\xa7",
		"FolderLockOutline":                      "\xf3\xb1\xaa\xa8",
		"FolderMarker":                           "\xf3\xb1\x89\xad",
		"FolderMarkerOutline":                    "\xf3\xb1\x89\xae",
		"FolderMinus":                            "\xf3\xb1\xad\x89",
		"FolderMinusOutline":                     "\xf3\xb1\xad\x8a",
		"FolderMove":                             "\xf3\xb0\x89\x92",
		"FolderMoveOutline":                      "\xf3\xb1\x89\x86",
		"FolderMultiple":                         "\xf3\xb0\x89\x93",
		"FolderMultipleImage":                    "\xf3\xb0\x89\x94",
		"FolderMultipleOutline":                  "\xf3\xb0\x89\x95",
		"FolderMultiplePlus":                     "\xf3\xb1\x91\xbe",
		"FolderMultiplePlusOutline":              "\xf3\xb1\x91\xbf",
		"FolderMusic":                            "\xf3\xb1\x8d\x99",
		"FolderMusicOutline":                     "\xf3\xb1\x8d\x9a",
		"FolderNetwork":                          "\xf3\xb0\xa1\xb0",
		"FolderNetworkOutline":                   "\xf3\xb0\xb2\x81",
		"FolderOff":                              "\xf3\xb1\xa7\xb8",
		"FolderOffOutline":                       "\xf3\xb1\xa7\xb9",
		"FolderOpen":                             "\xf3\xb0\x9d\xb0",
		"FolderOpenOutline":                      "\xf3\xb0\xb7\x8f",
		"FolderOutline":                          "\xf3\xb0\x89\x96",
		"FolderPlay":                             "\xf3\xb1\xa7\xba",
		"FolderPlayOutline":                      "\xf3\xb1\xa7\xbb",
		"FolderPlus":                             "\xf3\xb0\x89\x97",
		"FolderPlusOutline":                      "\xf3\xb0\xae\x9d",
		"FolderPound":                            "\xf3\xb0\xb4\x89",
		"FolderPoundOutline":                     "\xf3\xb0\xb4\x8a",
		"FolderQuestion":                         "\xf3\xb1\xa7\x8a",
		"FolderQuestionOutline":                  "\xf3\xb1\xa7\x8b",
		"FolderRefresh":                          "\xf3\xb0\x9d\x89",
		"FolderRefreshOutline":                   "\xf3\xb0\x95\x82",
		"FolderRemove":                           "\xf3\xb0\x89\x98",
		"FolderRemoveOutline":                    "\xf3\xb0\xae\x9e",
		"FolderSearch":                           "\xf3\xb0\xa5\xa8",
		"FolderSearchOutline":                    "\xf3\xb0\xa5\xa9",
		"FolderSettings":                         "\xf3\xb1\x81\xbd",
		"FolderSettingsOutline":                  "\xf3\xb1\x81\xbe",
		"FolderStar":                             "\xf3\xb0\x9a\x9d",
		"FolderStarMultiple":                     "\xf3\xb1\x8f\x93",
		"FolderStarMultipleOutline":              "\xf3\xb1\x8f\x94",
		"FolderStarOutline":                      "\xf3\xb0\xae\x9f",
		"FolderSwap":                             "\xf3\xb0\xbe\xb6",
		"FolderSwapOutline":                      "\xf3\xb0\xbe\xb7",
		"FolderSync":                             "\xf3\xb0\xb4\x8b",
		"FolderSyncOutline":                      "\xf3\xb0\xb4\x8c",
		"FolderTable":                            "\xf3\xb1\x8b\xa3",
		"FolderTableOutline":                     "\xf3\xb1\x8b\xa4",
		"FolderText":                             "\xf3\xb0\xb2\x82",
		"FolderTextOutline":                      "\xf3\xb0\xb2\x83",
		"FolderUpload":                           "\xf3\xb0\x89\x99",
		"FolderUploadOutline":                    "\xf3\xb1\x83\xad",
		"FolderWrench":                           "\xf3\xb1\xa7\xbc",
		"FolderWrenchOutline":                    "\xf3\xb1\xa7\xbd",
		"FolderZip":                              "\xf3\xb0\x9b\xab",
		"FolderZipOutline":                       "\xf3\xb0\x9e\xb9",
		"FontAwesome":                            "\xf3\xb0\x80\xba",
		"Food":                                   "\xf3\xb0\x89\x9a",
		"FoodApple":                              "\xf3\xb0\x89\x9b",
		"FoodAppleOutline":                       "\xf3\xb0\xb2\x84",
		"FoodCroissant":                          "\xf3\xb0\x9f\x88",
		"FoodDrumstick":                          "\xf3\xb1\x90\x9f",
		"FoodDrumstickOff":                       "\xf3\xb1\x91\xa8",
		"FoodDrumstickOffOutline":                "\xf3\xb1\x91\xa9",
		"FoodDrumstickOutline":                   "\xf3\xb1\x90\xa0",
		"FoodForkDrink":                          "\xf3\xb0\x97\xb2",
		"FoodHalal":                              "\xf3\xb1\x95\xb2",
		"FoodHotDog":                             "\xf3\xb1\xa1\x8b",
		"FoodKosher":                             "\xf3\xb1\x95\xb3",
		"FoodOff":                                "\xf3\xb0\x97\xb3",
		"FoodOffOutline":                         "\xf3\xb1\xa4\x95",
		"FoodOutline":                            "\xf3\xb1\xa4\x96",
		"FoodSteak":                              "\xf3\xb1\x91\xaa",
		"FoodSteakOff":                           "\xf3\xb1\x91\xab",
		"FoodTakeoutBox":                         "\xf3\xb1\xa0\xb6",
		"FoodTakeoutBoxOutline":                  "\xf3\xb1\xa0\xb7",
		"FoodTurkey":                             "\xf3\xb1\x9c\x9c",
		"FoodVariant":                            "\xf3\xb0\x89\x9c",
		"FoodVariantOff":                         "\xf3\xb1\x8f\xa5",
		"FootPrint":                              "\xf3\xb0\xbd\x92",
		"Football":                               "\xf3\xb0\x89\x9d",
		"FootballAustralian":                     "\xf3\xb0\x89\x9e",
		"FootballHelmet":                         "\xf3\xb0\x89\x9f",
		"Forest":                                 "\xf3\xb1\xa2\x97",
		"ForestOutline":                          "\xf3\xb1\xb1\xa3",
		"Forklift":                               "\xf3\xb0\x9f\x89",
		"FormDropdown":                           "\xf3\xb1\x90\x80",
		"FormSelect":                             "\xf3\xb1\x90\x81",
		"FormTextarea":                           "\xf3\xb1\x82\x95",
		"FormTextbox":                            "\xf3\xb0\x98\x8e",
		"FormTextboxLock":                        "\xf3\xb1\x8d\x9d",
		"FormTextboxPassword":                    "\xf3\xb0\x9f\xb5",
		"FormatAlignBottom":                      "\xf3\xb0\x9d\x93",
		"FormatAlignCenter":                      "\xf3\xb0\x89\xa0",
		"FormatAlignJustify":                     "\xf3\xb0\x89\xa1",
		"FormatAlignLeft":                        "\xf3\xb0\x89\xa2",
		"FormatAlignMiddle":                      "\xf3\xb0\x9d\x94",
		"FormatAlignRight":                       "\xf3\xb0\x89\xa3",
		"FormatAlignTop":                         "\xf3\xb0\x9d\x95",
		"FormatAnnotationMinus":                  "\xf3\xb0\xaa\xbc",
		"FormatAnnotationPlus":                   "\xf3\xb0\x99\x86",
		"FormatBold":                             "\xf3\xb0\x89\xa4",
		"FormatClear":                            "\xf3\xb0\x89\xa5",
		"FormatColorFill":                        "\xf3\xb0\x89\xa6",
		"FormatColorHighlight":                   "\xf3\xb0\xb8\xb1",
		"FormatColorMarkerCancel":                "\xf3\xb1\x8c\x93",
		"FormatColorText":                        "\xf3\xb0\x9a\x9e",
		"FormatColumns":                          "\xf3\xb0\xa3\x9f",
		"FormatFloatCenter":                      "\xf3\xb0\x89\xa7",
		"FormatFloatLeft":                        "\xf3\xb0\x89\xa8",
		"FormatFloatNone":                        "\xf3\xb0\x89\xa9",
		"FormatFloatRight":                       "\xf3\xb0\x89\xaa",
		"FormatFont":                             "\xf3\xb0\x9b\x96",
		"FormatFontSizeDecrease":                 "\xf3\xb0\xa7\xb3",
		"FormatFontSizeIncrease":                 "\xf3\xb0\xa7\xb4",
		"FormatHeader1":                          "\xf3\xb0\x89\xab",
		"FormatHeader2":                          "\xf3\xb0\x89\xac",
		"FormatHeader3":                          "\xf3\xb0\x89\xad",
		"FormatHeader4":                          "\xf3\xb0\x89\xae",
		"FormatHeader5":                          "\xf3\xb0\x89\xaf",
		"FormatHeader6":                          "\xf3\xb0\x89\xb0",
		"FormatHeaderDecrease":                   "\xf3\xb0\x89\xb1",
		"FormatHeaderEqual":                      "\xf3\xb0\x89\xb2",
		"FormatHeaderIncrease":                   "\xf3\xb0\x89\xb3",
		"FormatHeaderPound":                      "\xf3\xb0\x89\xb4",
		"FormatHorizontalAlignCenter":            "\xf3\xb0\x98\x9e",
		"FormatHorizontalAlignLeft":              "\xf3\xb0\x98\x9f",
		"FormatHorizontalAlignRight":             "\xf3\xb0\x98\xa0",
		"FormatIndentDecrease":                   "\xf3\xb0\x89\xb5",
		"FormatIndentIncrease":                   "\xf3\xb0\x89\xb6",
		"FormatItalic":                           "\xf3\xb0\x89\xb7",
		"FormatLetterCase":                       "\xf3\xb0\xac\xb4",
		"FormatLetterCaseLower":                  "\xf3\xb0\xac\xb5",
		"FormatLetterCaseUpper":                  "\xf3\xb0\xac\xb6",
		"FormatLetterEndsWith":                   "\xf3\xb0\xbe\xb8",
		"FormatLetterMatches":                    "\xf3\xb0\xbe\xb9",
		"FormatLetterSpacing":                    "\xf3\xb1\xa5\x96",
		"FormatLetterSpacingVariant":             "\xf3\xb1\xab\xbb",
		"FormatLetterStartsWith":                 "\xf3\xb0\xbe\xba",
		"FormatLineHeight":                       "\xf3\xb1\xab\xbc",
		"FormatLineSpacing":                      "\xf3\xb0\x89\xb8",
		"FormatLineStyle":                        "\xf3\xb0\x97\x88",
		"FormatLineWeight":                       "\xf3\xb0\x97\x89",
		"FormatListBulleted":                     "\xf3\xb0\x89\xb9",
		"FormatListBulletedSquare":               "\xf3\xb0\xb7\x90",
		"FormatListBulletedTriangle":             "\xf3\xb0\xba\xb2",
		"FormatListBulletedType":                 "\xf3\xb0\x89\xba",
		"FormatListCheckbox":                     "\xf3\xb0\xa5\xaa",
		"FormatListChecks":                       "\xf3\xb0\x9d\x96",
		"FormatListGroup":                        "\xf3\xb1\xa1\xa0",
		"FormatListGroupPlus":                    "\xf3\xb1\xad\x96",
		"FormatListNumbered":                     "\xf3\xb0\x89\xbb",
		"FormatListNumberedRtl":                  "\xf3\xb0\xb4\x8d",
		"FormatListText":                         "\xf3\xb1\x89\xaf",
		"FormatOverline":                         "\xf3\xb0\xba\xb3",
		"FormatPageBreak":                        "\xf3\xb0\x9b\x97",
		"FormatPageSplit":                        "\xf3\xb1\xa4\x97",
		"FormatPaint":                            "\xf3\xb0\x89\xbc",
		"FormatParagraph":                        "\xf3\xb0\x89\xbd",
		"FormatParagraphSpacing":                 "\xf3\xb1\xab\xbd",
		"FormatPilcrow":                          "\xf3\xb0\x9b\x98",
		"FormatPilcrowArrowLeft":                 "\xf3\xb0\x8a\x86",
		"FormatPilcrowArrowRight":                "\xf3\xb0\x8a\x85",
		"FormatQuoteClose":                       "\xf3\xb0\x89\xbe",
		"FormatQuoteCloseOutline":                "\xf3\xb1\x86\xa8",
		"FormatQuoteOpen":                        "\xf3\xb0\x9d\x97",
		"FormatQuoteOpenOutline":                 "\xf3\xb1\x86\xa7",
		"FormatRotate90":                         "\xf3\xb0\x9a\xaa",
		"FormatSection":                          "\xf3\xb0\x9a\x9f",
		"FormatSize":                             "\xf3\xb0\x89\xbf",
		"FormatStrikethrough":                    "\xf3\xb0\x8a\x80",
		"FormatStrikethroughVariant":             "\xf3\xb0\x8a\x81",
		"FormatSubscript":                        "\xf3\xb0\x8a\x82",
		"FormatSuperscript":                      "\xf3\xb0\x8a\x83",
		"FormatText":                             "\xf3\xb0\x8a\x84",
		"FormatTextRotationAngleDown":            "\xf3\xb0\xbe\xbb",
		"FormatTextRotationAngleUp":              "\xf3\xb0\xbe\xbc",
		"FormatTextRotationDown":                 "\xf3\xb0\xb5\xb3",
		"FormatTextRotationDownVertical":         "\xf3\xb0\xbe\xbd",
		"FormatTextRotationNone":                 "\xf3\xb0\xb5\xb4",
		"FormatTextRotationUp":                   "\xf3\xb0\xbe\xbe",
		"FormatTextRotationVertical":             "\xf3\xb0\xbe\xbf",
		"FormatTextVariant":                      "\xf3\xb0\xb8\xb2",
		"FormatTextVariantOutline":               "\xf3\xb1\x94\x8f",
		"FormatTextWrappingClip":                 "\xf3\xb0\xb4\x8e",
		"FormatTextWrappingOverflow":             "\xf3\xb0\xb4\x8f",
		"FormatTextWrappingWrap":                 "\xf3\xb0\xb4\x90",
		"FormatTextbox":                          "\xf3\xb0\xb4\x91",
		"FormatTitle":                            "\xf3\xb0\x97\xb4",
		"FormatUnderline":                        "\xf3\xb0\x8a\x87",
		"FormatUnderlineWavy":                    "\xf3\xb1\xa3\xa9",
		"FormatVerticalAlignBottom":              "\xf3\xb0\x98\xa1",
		"FormatVerticalAlignCenter":              "\xf3\xb0\x98\xa2",
		"FormatVerticalAlignTop":                 "\xf3\xb0\x98\xa3",
		"FormatWrapInline":                       "\xf3\xb0\x8a\x88",
		"FormatWrapSquare":                       "\xf3\xb0\x8a\x89",
		"FormatWrapTight":                        "\xf3\xb0\x8a\x8a",
		"FormatWrapTopBottom":                    "\xf3\xb0\x8a\x8b",
		"Forum":                                  "\xf3\xb0\x8a\x8c",
		"ForumMinus":                             "\xf3\xb1\xaa\xa9",
		"ForumMinusOutline":                      "\xf3\xb1\xaa\xaa",
		"ForumOutline":                           "\xf3\xb0\xa0\xa2",
		"ForumPlus":                              "\xf3\xb1\xaa\xab",
		"ForumPlusOutline":                       "\xf3\xb1\xaa\xac",
		"ForumRemove":                            "\xf3\xb1\xaa\xad",
		"ForumRemoveOutline":                     "\xf3\xb1\xaa\xae",
		"Forward":                                "\xf3\xb0\x8a\x8d",
		"Forwardburger":                          "\xf3\xb0\xb5\xb5",
		"Fountain":                               "\xf3\xb0\xa5\xab",
		"FountainPen":                            "\xf3\xb0\xb4\x92",
		"FountainPenTip":                         "\xf3\xb0\xb4\x93",
		"FractionOneHalf":                        "\xf3\xb1\xa6\x92",
		"Freebsd":                                "\xf3\xb0\xa3\xa0",
		"FrenchFries":                            "\xf3\xb1\xa5\x97",
		"FrequentlyAskedQuestions":               "\xf3\xb0\xba\xb4",
		"Fridge":                                 "\xf3\xb0\x8a\x90",
		"FridgeAlert":                            "\xf3\xb1\x86\xb1",
		"FridgeAlertOutline":                     "\xf3\xb1\x86\xb2",
		"FridgeBottom":                           "\xf3\xb0\x8a\x92",
		"FridgeIndustrial":                       "\xf3\xb1\x97\xae",
		"FridgeIndustrialAlert":                  "\xf3\xb1\x97\xaf",
		"FridgeIndustrialAlertOutline":           "\xf3\xb1\x97\xb0",
		"FridgeIndustrialOff":                    "\xf3\xb1\x97\xb1",
		"FridgeIndustrialOffOutline":             "\xf3\xb1\x97\xb2",
		"FridgeIndustrialOutline":                "\xf3\xb1\x97\xb3",
		"FridgeOff":                              "\xf3\xb1\x86\xaf",
		"FridgeOffOutline":                       "\xf3\xb1\x86\xb0",
		"FridgeOutline":                          "\xf3\xb0\x8a\x8f",
		"FridgeTop":                              "\xf3\xb0\x8a\x91",
		"FridgeVariant":                          "\xf3\xb1\x97\xb4",
		"FridgeVariantAlert":                     "\xf3\xb1\x97\xb5",
		"FridgeVariantAlertOutline":              "\xf3\xb1\x97\xb6",
		"FridgeVariantOff":                       "\xf3\xb1\x97\xb7",
		"FridgeVariantOffOutline":                "\xf3\xb1\x97\xb8",
		"FridgeVariantOutline":                   "\xf3\xb1\x97\xb9",
		"FruitCherries":                          "\xf3\xb1\x81\x82",
		"FruitCherriesOff":                       "\xf3\xb1\x8f\xb8",
		"FruitCitrus":                            "\xf3\xb1\x81\x83",
		"FruitCitrusOff":                         "\xf3\xb1\x8f\xb9",
		"FruitGrapes":                            "\xf3\xb1\x81\x84",
		"FruitGrapesOutline":                     "\xf3\xb1\x81\x85",
		"FruitPear":                              "\xf3\xb1\xa8\x8e",
		"FruitPineapple":                         "\xf3\xb1\x81\x86",
		"FruitWatermelon":                        "\xf3\xb1\x81\x87",
		"Fuel":                                   "\xf3\xb0\x9f\x8a",
		"FuelCell":                               "\xf3\xb1\xa2\xb5",
		"Fullscreen":                             "\xf3\xb0\x8a\x93",
		"FullscreenExit":                         "\xf3\xb0\x8a\x94",
		"Function":                               "\xf3\xb0\x8a\x95",
		"FunctionVariant":                        "\xf3\xb0\xa1\xb1",
		"FuriganaHorizontal":                     "\xf3\xb1\x82\x81",
		"FuriganaVertical":                       "\xf3\xb1\x82\x82",
		"Fuse":                                   "\xf3\xb0\xb2\x85",
		"FuseAlert":                              "\xf3\xb1\x90\xad",
		"FuseBlade":                              "\xf3\xb0\xb2\x86",
		"FuseOff":                                "\xf3\xb1\x90\xac",
		"Gamepad":                                "\xf3\xb0\x8a\x96",
		"GamepadCircle":                          "\xf3\xb0\xb8\xb3",
		"GamepadCircleDown":                      "\xf3\xb0\xb8\xb4",
		"GamepadCircleLeft":                      "\xf3\xb0\xb8\xb5",
		"GamepadCircleOutline":                   "\xf3\xb0\xb8\xb6",
		"GamepadCircleRight":                     "\xf3\xb0\xb8\xb7",
		"GamepadCircleUp":                        "\xf3\xb0\xb8\xb8",
		"GamepadDown":                            "\xf3\xb0\xb8\xb9",
		"GamepadLeft":                            "\xf3\xb0\xb8\xba",
		"GamepadOutline":                         "\xf3\xb1\xa4\x99",
		"GamepadRight":                           "\xf3\xb0\xb8\xbb",
		"GamepadRound":                           "\xf3\xb0\xb8\xbc",
		"GamepadRoundDown":                       "\xf3\xb0\xb8\xbd",
		"GamepadRoundLeft":                       "\xf3\xb0\xb8\xbe",
		"GamepadRoundOutline":                    "\xf3\xb0\xb8\xbf",
		"GamepadRoundRight":                      "\xf3\xb0\xb9\x80",
		"GamepadRoundUp":                         "\xf3\xb0\xb9\x81",
		"GamepadSquare":                          "\xf3\xb0\xba\xb5",
		"GamepadSquareOutline":                   "\xf3\xb0\xba\xb6",
		"GamepadUp":                              "\xf3\xb0\xb9\x82",
		"GamepadVariant":                         "\xf3\xb0\x8a\x97",
		"GamepadVariantOutline":                  "\xf3\xb0\xba\xb7",
		"Gamma":                                  "\xf3\xb1\x83\xae",
		"GantryCrane":                            "\xf3\xb0\xb7\x91",
		"Garage":                                 "\xf3\xb0\x9b\x99",
		"GarageAlert":                            "\xf3\xb0\xa1\xb2",
		"GarageAlertVariant":                     "\xf3\xb1\x8b\x95",
		"GarageLock":                             "\xf3\xb1\x9f\xbb",
		"GarageOpen":                             "\xf3\xb0\x9b\x9a",
		"GarageOpenVariant":                      "\xf3\xb1\x8b\x94",
		"GarageVariant":                          "\xf3\xb1\x8b\x93",
		"GarageVariantLock":                      "\xf3\xb1\x9f\xbc",
		"GasBurner":                              "\xf3\xb1\xa8\x9b",
		"GasCylinder":                            "\xf3\xb0\x99\x87",
		"GasStation":                             "\xf3\xb0\x8a\x98",
		"GasStationInUse":                        "\xf3\xb1\xb3\x84",
		"GasStationInUseOutline":                 "\xf3\xb1\xb3\x85",
		"GasStationOff":                          "\xf3\xb1\x90\x89",
		"GasStationOffOutline":                   "\xf3\xb1\x90\x8a",
		"GasStationOutline":                      "\xf3\xb0\xba\xb8",
		"Gate":                                   "\xf3\xb0\x8a\x99",
		"GateAlert":                              "\xf3\xb1\x9f\xb8",
		"GateAnd":                                "\xf3\xb0\xa3\xa1",
		"GateArrowLeft":                          "\xf3\xb1\x9f\xb7",
		"GateArrowRight":                         "\xf3\xb1\x85\xa9",
		"GateBuffer":                             "\xf3\xb1\xab\xbe",
		"GateNand":                               "\xf3\xb0\xa3\xa2",
		"GateNor":                                "\xf3\xb0\xa3\xa3",
		"GateNot":                                "\xf3\xb0\xa3\xa4",
		"GateOpen":                               "\xf3\xb1\x85\xaa",
		"GateOr":                                 "\xf3\xb0\xa3\xa5",
		"GateXnor":                               "\xf3\xb0\xa3\xa6",
		"GateXor":                                "\xf3\xb0\xa3\xa7",
		"Gatsby":                                 "\xf3\xb0\xb9\x83",
		"Gauge":                                  "\xf3\xb0\x8a\x9a",
		"GaugeEmpty":                             "\xf3\xb0\xa1\xb3",
		"GaugeFull":                              "\xf3\xb0\xa1\xb4",
		"GaugeLow":                               "\xf3\xb0\xa1\xb5",
		"Gavel":                                  "\xf3\xb0\x8a\x9b",
		"GenderFemale":                           "\xf3\xb0\x8a\x9c",
		"GenderMale":                             "\xf3\xb0\x8a\x9d",
		"GenderMaleFemale":                       "\xf3\xb0\x8a\x9e",
		"GenderMaleFemaleVariant":                "\xf3\xb1\x84\xbf",
		"GenderNonBinary":                        "\xf3\xb1\x85\x80",
		"GenderTransgender":                      "\xf3\xb0\x8a\x9f",
		"GeneratorMobile":                        "\xf3\xb1\xb2\x8a",
		"GeneratorPortable":                      "\xf3\xb1\xb2\x8b",
		"GeneratorStationary":                    "\xf3\xb1\xb2\x8c",
		"Gentoo":                                 "\xf3\xb0\xa3\xa8",
		"Gesture":                                "\xf3\xb0\x9f\x8b",
		"GestureDoubleTap":                       "\xf3\xb0\x9c\xbc",
		"GesturePinch":                           "\xf3\xb0\xaa\xbd",
		"GestureSpread":                          "\xf3\xb0\xaa\xbe",
		"GestureSwipe":                           "\xf3\xb0\xb5\xb6",
		"GestureSwipeDown":                       "\xf3\xb0\x9c\xbd",
		"GestureSwipeHorizontal":                 "\xf3\xb0\xaa\xbf",
		"GestureSwipeLeft":                       "\xf3\xb0\x9c\xbe",
		"GestureSwipeRight":                      "\xf3\xb0\x9c\xbf",
		"GestureSwipeUp":                         "\xf3\xb0\x9d\x80",
		"GestureSwipeVertical":                   "\xf3\xb0\xab\x80",
		"GestureTap":                             "\xf3\xb0\x9d\x81",
		"GestureTapBox":                          "\xf3\xb1\x8a\xa9",
		"GestureTapButton":                       "\xf3\xb1\x8a\xa8",
		"GestureTapHold":                         "\xf3\xb0\xb5\xb7",
		"GestureTwoDoubleTap":                    "\xf3\xb0\x9d\x82",
		"GestureTwoTap":                          "\xf3\xb0\x9d\x83",
		"Ghost":                                  "\xf3\xb0\x8a\xa0",
		"GhostOff":                               "\xf3\xb0\xa7\xb5",
		"GhostOffOutline":                        "\xf3\xb1\x99\x9c",
		"GhostOutline":                           "\xf3\xb1\x99\x9d",
		"Gift":                                   "\xf3\xb0\xb9\x84",
		"GiftOff":                                "\xf3\xb1\x9b\xaf",
		"GiftOffOutline":                         "\xf3\xb1\x9b\xb0",
		"GiftOpen":                               "\xf3\xb1\x9b\xb1",
		"GiftOpenOutline":                        "\xf3\xb1\x9b\xb2",
		"GiftOutline":                            "\xf3\xb0\x8a\xa1",
		"Git":                                    "\xf3\xb0\x8a\xa2",
		"Github":                                 "\xf3\xb0\x8a\xa4",
		"Gitlab":                                 "\xf3\xb0\xae\xa0",
		"GlassCocktail":                          "\xf3\xb0\x8d\x96",
		"GlassCocktailOff":                       "\xf3\xb1\x97\xa6",
		"GlassFlute":                             "\xf3\xb0\x8a\xa5",
		"GlassFragile":                           "\xf3\xb1\xa1\xb3",
		"GlassMug":                               "\xf3\xb0\x8a\xa6",
		"GlassMugOff":                            "\xf3\xb1\x97\xa7",
		"GlassMugVariant":                        "\xf3\xb1\x84\x96",
		"GlassMugVariantOff":                     "\xf3\xb1\x97\xa8",
		"GlassPintOutline":                       "\xf3\xb1\x8c\x8d",
		"GlassStange":                            "\xf3\xb0\x8a\xa7",
		"GlassTulip":                             "\xf3\xb0\x8a\xa8",
		"GlassWine":                              "\xf3\xb0\xa1\xb6",
		"Glasses":                                "\xf3\xb0\x8a\xaa",
		"GlobeLight":                             "\xf3\xb0\x99\xaf",
		"GlobeLightOutline":                      "\xf3\xb1\x8b\x97",
		"GlobeModel":                             "\xf3\xb0\xa3\xa9",
		"Gmail":                                  "\xf3\xb0\x8a\xab",
		"Gnome":                                  "\xf3\xb0\x8a\xac",
		"GoKart":                                 "\xf3\xb0\xb5\xb9",
		"GoKartTrack":                            "\xf3\xb0\xb5\xba",
		"Gog":                                    "\xf3\xb0\xae\xa1",
		"Gold":                                   "\xf3\xb1\x89\x8f",
		"Golf":                                   "\xf3\xb0\xa0\xa3",
		"GolfCart":                               "\xf3\xb1\x86\xa4",
		"GolfTee":                                "\xf3\xb1\x82\x83",
		"Gondola":                                "\xf3\xb0\x9a\x86",
		"Goodreads":                              "\xf3\xb0\xb5\xbb",
		"Google":                                 "\xf3\xb0\x8a\xad",
		"GoogleAds":                              "\xf3\xb0\xb2\x87",
		"GoogleAnalytics":                        "\xf3\xb0\x9f\x8c",
		"GoogleAssistant":                        "\xf3\xb0\x9f\x8d",
		"GoogleCardboard":                        "\xf3\xb0\x8a\xae",
		"GoogleChrome":                           "\xf3\xb0\x8a\xaf",
		"GoogleCircles":                          "\xf3\xb0\x8a\xb0",
		"GoogleCirclesCommunities":               "\xf3\xb0\x8a\xb1",
		"GoogleCirclesExtended":                  "\xf3\xb0\x8a\xb2",
		"GoogleCirclesGroup":                     "\xf3\xb0\x8a\xb3",
		"GoogleClassroom":                        "\xf3\xb0\x8b\x80",
		"GoogleCloud":                            "\xf3\xb1\x87\xb6",
		"GoogleDownasaur":                        "\xf3\xb1\x8d\xa2",
		"GoogleDrive":                            "\xf3\xb0\x8a\xb6",
		"GoogleEarth":                            "\xf3\xb0\x8a\xb7",
		"GoogleFit":                              "\xf3\xb0\xa5\xac",
		"GoogleGlass":                            "\xf3\xb0\x8a\xb8",
		"GoogleHangouts":                         "\xf3\xb0\x8b\x89",
		"GoogleKeep":                             "\xf3\xb0\x9b\x9c",
		"GoogleLens":                             "\xf3\xb0\xa7\xb6",
		"GoogleMaps":                             "\xf3\xb0\x97\xb5",
		"GoogleMyBusiness":                       "\xf3\xb1\x81\x88",
		"GoogleNearby":                           "\xf3\xb0\x8a\xb9",
		"GooglePlay":                             "\xf3\xb0\x8a\xbc",
		"GooglePlus":                             "\xf3\xb0\x8a\xbd",
		"GooglePodcast":                          "\xf3\xb0\xba\xb9",
		"GoogleSpreadsheet":                      "\xf3\xb0\xa7\xb7",
		"GoogleStreetView":                       "\xf3\xb0\xb2\x88",
		"GoogleTranslate":                        "\xf3\xb0\x8a\xbf",
		"GradientHorizontal":                     "\xf3\xb1\x9d\x8a",
		"GradientVertical":                       "\xf3\xb0\x9a\xa0",
		"Grain":                                  "\xf3\xb0\xb5\xbc",
		"Graph":                                  "\xf3\xb1\x81\x89",
		"GraphOutline":                           "\xf3\xb1\x81\x8a",
		"Graphql":                                "\xf3\xb0\xa1\xb7",
		"Grass":                                  "\xf3\xb1\x94\x90",
		"GraveStone":                             "\xf3\xb0\xae\xa2",
		"GreasePencil":                           "\xf3\xb0\x99\x88",
		"GreaterThan":                            "\xf3\xb0\xa5\xad",
		"GreaterThanOrEqual":                     "\xf3\xb0\xa5\xae",
		"Greenhouse":                             "\xf3\xb0\x80\xad",
		"Grid":                                   "\xf3\xb0\x8b\x81",
		"GridLarge":                              "\xf3\xb0\x9d\x98",
		"GridOff":                                "\xf3\xb0\x8b\x82",
		"Grill":                                  "\xf3\xb0\xb9\x85",
		"GrillOutline":                           "\xf3\xb1\x86\x8a",
		"Group":                                  "\xf3\xb0\x8b\x83",
		"GuitarAcoustic":                         "\xf3\xb0\x9d\xb1",
		"GuitarElectric":                         "\xf3\xb0\x8b\x84",
		"GuitarPick":                             "\xf3\xb0\x8b\x85",
		"GuitarPickOutline":                      "\xf3\xb0\x8b\x86",
		"GuyFawkesMask":                          "\xf3\xb0\xa0\xa5",
		"Gymnastics":                             "\xf3\xb1\xa9\x81",
		"Hail":                                   "\xf3\xb0\xab\x81",
		"HairDryer":                              "\xf3\xb1\x83\xaf",
		"HairDryerOutline":                       "\xf3\xb1\x83\xb0",
		"Halloween":                              "\xf3\xb0\xae\xa3",
		"Hamburger":                              "\xf3\xb0\x9a\x85",
		"HamburgerCheck":                         "\xf3\xb1\x9d\xb6",
		"HamburgerMinus":                         "\xf3\xb1\x9d\xb7",
		"HamburgerOff":                           "\xf3\xb1\x9d\xb8",
		"HamburgerPlus":                          "\xf3\xb1\x9d\xb9",
		"HamburgerRemove":                        "\xf3\xb1\x9d\xba",
		"Hammer":                                 "\xf3\xb0\xa3\xaa",
		"HammerScrewdriver":                      "\xf3\xb1\x8c\xa2",
		"HammerSickle":                           "\xf3\xb1\xa2\x87",
		"HammerWrench":                           "\xf3\xb1\x8c\xa3",
		"HandBackLeft":                           "\xf3\xb0\xb9\x86",
		"HandBackLeftOff":                        "\xf3\xb1\xa0\xb0",
		"HandBackLeftOffOutline":                 "\xf3\xb1\xa0\xb2",
		"HandBackLeftOutline":                    "\xf3\xb1\xa0\xac",
		"HandBackRight":                          "\xf3\xb0\xb9\x87",
		"HandBackRightOff":                       "\xf3\xb1\xa0\xb1",
		"HandBackRightOffOutline":                "\xf3\xb1\xa0\xb3",
		"HandBackRightOutline":                   "\xf3\xb1\xa0\xad",
		"HandClap":                               "\xf3\xb1\xa5\x8b",
		"HandClapOff":                            "\xf3\xb1\xa9\x82",
		"HandCoin":                               "\xf3\xb1\xa2\x8f",
		"HandCoinOutline":                        "\xf3\xb1\xa2\x90",
		"HandCycle":                              "\xf3\xb1\xae\x9c",
		"HandExtended":                           "\xf3\xb1\xa2\xb6",
		"HandExtendedOutline":                    "\xf3\xb1\xa2\xb7",
		"HandFrontLeft":                          "\xf3\xb1\xa0\xab",
		"HandFrontLeftOutline":                   "\xf3\xb1\xa0\xae",
		"HandFrontRight":                         "\xf3\xb0\xa9\x8f",
		"HandFrontRightOutline":                  "\xf3\xb1\xa0\xaf",
		"HandHeart":                              "\xf3\xb1\x83\xb1",
		"HandHeartOutline":                       "\xf3\xb1\x95\xbe",
		"HandOkay":                               "\xf3\xb0\xa9\x90",
		"HandPeace":                              "\xf3\xb0\xa9\x91",
		"HandPeaceVariant":                       "\xf3\xb0\xa9\x92",
		"HandPointingDown":                       "\xf3\xb0\xa9\x93",
		"HandPointingLeft":                       "\xf3\xb0\xa9\x94",
		"HandPointingRight":                      "\xf3\xb0\x8b\x87",
		"HandPointingUp":                         "\xf3\xb0\xa9\x95",
		"HandSaw":                                "\xf3\xb0\xb9\x88",
		"HandWash":                               "\xf3\xb1\x95\xbf",
		"HandWashOutline":                        "\xf3\xb1\x96\x80",
		"HandWater":                              "\xf3\xb1\x8e\x9f",
		"HandWave":                               "\xf3\xb1\xa0\xa1",
		"HandWaveOutline":                        "\xf3\xb1\xa0\xa2",
		"Handball":                               "\xf3\xb0\xbd\x93",
		"Handcuffs":                              "\xf3\xb1\x84\xbe",
		"HandsPray":                              "\xf3\xb0\x95\xb9",
		"Handshake":                              "\xf3\xb1\x88\x98",
		"HandshakeOutline":                       "\xf3\xb1\x96\xa1",
		"Hanger":                                 "\xf3\xb0\x8b\x88",
		"HardHat":                                "\xf3\xb0\xa5\xaf",
		"Harddisk":                               "\xf3\xb0\x8b\x8a",
		"HarddiskPlus":                           "\xf3\xb1\x81\x8b",
		"HarddiskRemove":                         "\xf3\xb1\x81\x8c",
		"HatFedora":                              "\xf3\xb0\xae\xa4",
		"HazardLights":                           "\xf3\xb0\xb2\x89",
		"HdmiPort":                               "\xf3\xb1\xae\xb8",
		"Hdr":                                    "\xf3\xb0\xb5\xbd",
		"HdrOff":                                 "\xf3\xb0\xb5\xbe",
		"Head":                                   "\xf3\xb1\x8d\x9e",
		"HeadAlert":                              "\xf3\xb1\x8c\xb8",
		"HeadAlertOutline":                       "\xf3\xb1\x8c\xb9",
		"HeadCheck":                              "\xf3\xb1\x8c\xba",
		"HeadCheckOutline":                       "\xf3\xb1\x8c\xbb",
		"HeadCog":                                "\xf3\xb1\x8c\xbc",
		"HeadCogOutline":                         "\xf3\xb1\x8c\xbd",
		"HeadDotsHorizontal":                     "\xf3\xb1\x8c\xbe",
		"HeadDotsHorizontalOutline":              "\xf3\xb1\x8c\xbf",
		"HeadFlash":                              "\xf3\xb1\x8d\x80",
		"HeadFlashOutline":                       "\xf3\xb1\x8d\x81",
		"HeadHeart":                              "\xf3\xb1\x8d\x82",
		"HeadHeartOutline":                       "\xf3\xb1\x8d\x83",
		"HeadLightbulb":                          "\xf3\xb1\x8d\x84",
		"HeadLightbulbOutline":                   "\xf3\xb1\x8d\x85",
		"HeadMinus":                              "\xf3\xb1\x8d\x86",
		"HeadMinusOutline":                       "\xf3\xb1\x8d\x87",
		"HeadOutline":                            "\xf3\xb1\x8d\x9f",
		"HeadPlus":                               "\xf3\xb1\x8d\x88",
		"HeadPlusOutline":                        "\xf3\xb1\x8d\x89",
		"HeadQuestion":                           "\xf3\xb1\x8d\x8a",
		"HeadQuestionOutline":                    "\xf3\xb1\x8d\x8b",
		"HeadRemove":                             "\xf3\xb1\x8d\x8c",
		"HeadRemoveOutline":                      "\xf3\xb1\x8d\x8d",
		"HeadSnowflake":                          "\xf3\xb1\x8d\x8e",
		"HeadSnowflakeOutline":                   "\xf3\xb1\x8d\x8f",
		"HeadSync":                               "\xf3\xb1\x8d\x90",
		"HeadSyncOutline":                        "\xf3\xb1\x8d\x91",
		"Headphones":                             "\xf3\xb0\x8b\x8b",
		"HeadphonesBluetooth":                    "\xf3\xb0\xa5\xb0",
		"HeadphonesBox":                          "\xf3\xb0\x8b\x8c",
		"HeadphonesOff":                          "\xf3\xb0\x9f\x8e",
		"HeadphonesSettings":                     "\xf3\xb0\x8b\x8d",
		"Headset":                                "\xf3\xb0\x8b\x8e",
		"HeadsetDock":                            "\xf3\xb0\x8b\x8f",
		"HeadsetOff":                             "\xf3\xb0\x8b\x90",
		"Heart":                                  "\xf3\xb0\x8b\x91",
		"HeartBox":                               "\xf3\xb0\x8b\x92",
		"HeartBoxOutline":                        "\xf3\xb0\x8b\x93",
		"HeartBroken":                            "\xf3\xb0\x8b\x94",
		"HeartBrokenOutline":                     "\xf3\xb0\xb4\x94",
		"HeartCircle":                            "\xf3\xb0\xa5\xb1",
		"HeartCircleOutline":                     "\xf3\xb0\xa5\xb2",
		"HeartCog":                               "\xf3\xb1\x99\xa3",
		"HeartCogOutline":                        "\xf3\xb1\x99\xa4",
		"HeartFlash":                             "\xf3\xb0\xbb\xb9",
		"HeartHalf":                              "\xf3\xb0\x9b\x9f",
		"HeartHalfFull":                          "\xf3\xb0\x9b\x9e",
		"HeartHalfOutline":                       "\xf3\xb0\x9b\xa0",
		"HeartMinus":                             "\xf3\xb1\x90\xaf",
		"HeartMinusOutline":                      "\xf3\xb1\x90\xb2",
		"HeartMultiple":                          "\xf3\xb0\xa9\x96",
		"HeartMultipleOutline":                   "\xf3\xb0\xa9\x97",
		"HeartOff":                               "\xf3\xb0\x9d\x99",
		"HeartOffOutline":                        "\xf3\xb1\x90\xb4",
		"HeartOutline":                           "\xf3\xb0\x8b\x95",
		"HeartPlus":                              "\xf3\xb1\x90\xae",
		"HeartPlusOutline":                       "\xf3\xb1\x90\xb1",
		"HeartPulse":                             "\xf3\xb0\x97\xb6",
		"HeartRemove":                            "\xf3\xb1\x90\xb0",
		"HeartRemoveOutline":                     "\xf3\xb1\x90\xb3",
		"HeartSearch":                            "\xf3\xb1\xb2\x8d",
		"HeartSettings":                          "\xf3\xb1\x99\xa5",
		"HeartSettingsOutline":                   "\xf3\xb1\x99\xa6",
		"HeatPump":                               "\xf3\xb1\xa9\x83",
		"HeatPumpOutline":                        "\xf3\xb1\xa9\x84",
		"HeatWave":                               "\xf3\xb1\xa9\x85",
		"HeatingCoil":                            "\xf3\xb1\xaa\xaf",
		"Helicopter":                             "\xf3\xb0\xab\x82",
		"Help":                                   "\xf3\xb0\x8b\x96",
		"HelpBox":                                "\xf3\xb0\x9e\x8b",
		"HelpBoxMultiple":                        "\xf3\xb1\xb0\x8a",
		"HelpBoxMultipleOutline":                 "\xf3\xb1\xb0\x8b",
		"HelpBoxOutline":                         "\xf3\xb1\xb0\x8c",
		"HelpCircle":                             "\xf3\xb0\x8b\x97",
		"HelpCircleOutline":                      "\xf3\xb0\x98\xa5",
		"HelpNetwork":                            "\xf3\xb0\x9b\xb5",
		"HelpNetworkOutline":                     "\xf3\xb0\xb2\x8a",
		"HelpRhombus":                            "\xf3\xb0\xae\xa5",
		"HelpRhombusOutline":                     "\xf3\xb0\xae\xa6",
		"Hexadecimal":                            "\xf3\xb1\x8a\xa7",
		"Hexagon":                                "\xf3\xb0\x8b\x98",
		"HexagonMultiple":                        "\xf3\xb0\x9b\xa1",
		"HexagonMultipleOutline":                 "\xf3\xb1\x83\xb2",
		"HexagonOutline":                         "\xf3\xb0\x8b\x99",
		"HexagonSlice1":                          "\xf3\xb0\xab\x83",
		"HexagonSlice2":                          "\xf3\xb0\xab\x84",
		"HexagonSlice3":                          "\xf3\xb0\xab\x85",
		"HexagonSlice4":                          "\xf3\xb0\xab\x86",
		"HexagonSlice5":                          "\xf3\xb0\xab\x87",
		"HexagonSlice6":                          "\xf3\xb0\xab\x88",
		"Hexagram":                               "\xf3\xb0\xab\x89",
		"HexagramOutline":                        "\xf3\xb0\xab\x8a",
		"HighDefinition":                         "\xf3\xb0\x9f\x8f",
		"HighDefinitionBox":                      "\xf3\xb0\xa1\xb8",
		"Highway":                                "\xf3\xb0\x97\xb7",
		"Hiking":                                 "\xf3\xb0\xb5\xbf",
		"History":                                "\xf3\xb0\x8b\x9a",
		"HockeyPuck":                             "\xf3\xb0\xa1\xb9",
		"HockeySticks":                           "\xf3\xb0\xa1\xba",
		"Hololens":                               "\xf3\xb0\x8b\x9b",
		"Home":                                   "\xf3\xb0\x8b\x9c",
		"HomeAccount":                            "\xf3\xb0\xa0\xa6",
		"HomeAlert":                              "\xf3\xb0\xa1\xbb",
		"HomeAlertOutline":                       "\xf3\xb1\x97\x90",
		"HomeAnalytics":                          "\xf3\xb0\xba\xba",
		"HomeAssistant":                          "\xf3\xb0\x9f\x90",
		"HomeAutomation":                         "\xf3\xb0\x9f\x91",
		"HomeBattery":                            "\xf3\xb1\xa4\x81",
		"HomeBatteryOutline":                     "\xf3\xb1\xa4\x82",
		"HomeCircle":                             "\xf3\xb0\x9f\x92",
		"HomeCircleOutline":                      "\xf3\xb1\x81\x8d",
		"HomeCity":                               "\xf3\xb0\xb4\x95",
		"HomeCityOutline":                        "\xf3\xb0\xb4\x96",
		"HomeClock":                              "\xf3\xb1\xa8\x92",
		"HomeClockOutline":                       "\xf3\xb1\xa8\x93",
		"HomeEdit":                               "\xf3\xb1\x85\x99",
		"HomeEditOutline":                        "\xf3\xb1\x85\x9a",
		"HomeExportOutline":                      "\xf3\xb0\xbe\x9b",
		"HomeFlood":                              "\xf3\xb0\xbb\xba",
		"HomeFloor0":                             "\xf3\xb0\xb7\x92",
		"HomeFloor1":                             "\xf3\xb0\xb6\x80",
		"HomeFloor2":                             "\xf3\xb0\xb6\x81",
		"HomeFloor3":                             "\xf3\xb0\xb6\x82",
		"HomeFloorA":                             "\xf3\xb0\xb6\x83",
		"HomeFloorB":                             "\xf3\xb0\xb6\x84",
		"HomeFloorG":                             "\xf3\xb0\xb6\x85",
		"HomeFloorL":                             "\xf3\xb0\xb6\x86",
		"HomeFloorNegative1":                     "\xf3\xb0\xb7\x93",
		"HomeGroup":                              "\xf3\xb0\xb7\x94",
		"HomeGroupMinus":                         "\xf3\xb1\xa7\x81",
		"HomeGroupPlus":                          "\xf3\xb1\xa7\x80",
		"HomeGroupRemove":                        "\xf3\xb1\xa7\x82",
		"HomeHeart":                              "\xf3\xb0\xa0\xa7",
		"HomeImportOutline":                      "\xf3\xb0\xbe\x9c",
		"HomeLightbulb":                          "\xf3\xb1\x89\x91",
		"HomeLightbulbOutline":                   "\xf3\xb1\x89\x92",
		"HomeLightningBolt":                      "\xf3\xb1\xa4\x83",
		"HomeLightningBoltOutline":               "\xf3\xb1\xa4\x84",
		"HomeLock":                               "\xf3\xb0\xa3\xab",
		"HomeLockOpen":                           "\xf3\xb0\xa3\xac",
		"HomeMapMarker":                          "\xf3\xb0\x97\xb8",
		"HomeMinus":                              "\xf3\xb0\xa5\xb4",
		"HomeMinusOutline":                       "\xf3\xb1\x8f\x95",
		"HomeModern":                             "\xf3\xb0\x8b\x9d",
		"HomeOff":                                "\xf3\xb1\xa9\x86",
		"HomeOffOutline":                         "\xf3\xb1\xa9\x87",
		"HomeOutline":                            "\xf3\xb0\x9a\xa1",
		"HomePercent":                            "\xf3\xb1\xb1\xbc",
		"HomePercentOutline":                     "\xf3\xb1\xb1\xbd",
		"HomePlus":                               "\xf3\xb0\xa5\xb5",
		"HomePlusOutline":                        "\xf3\xb1\x8f\x96",
		"HomeRemove":                             "\xf3\xb1\x89\x87",
		"HomeRemoveOutline":                      "\xf3\xb1\x8f\x97",
		"HomeRoof":                               "\xf3\xb1\x84\xab",
		"HomeSearch":                             "\xf3\xb1\x8e\xb0",
		"HomeSearchOutline":                      "\xf3\xb1\x8e\xb1",
		"HomeSilo":                               "\xf3\xb1\xae\xa0",
		"HomeSiloOutline":                        "\xf3\xb1\xae\xa1",
		"HomeSoundIn":                            "\xf3\xb1\xb0\xaf",
		"HomeSoundInOutline":                     "\xf3\xb1\xb0\xb0",
		"HomeSoundOut":                           "\xf3\xb1\xb0\xb1",
		"HomeSoundOutOutline":                    "\xf3\xb1\xb0\xb2",
		"HomeSwitch":                             "\xf3\xb1\x9e\x94",
		"HomeSwitchOutline":                      "\xf3\xb1\x9e\x95",
		"HomeThermometer":                        "\xf3\xb0\xbd\x94",
		"HomeThermometerOutline":                 "\xf3\xb0\xbd\x95",
		"HomeVariant":                            "\xf3\xb0\x8b\x9e",
		"HomeVariantOutline":                     "\xf3\xb0\xae\xa7",
		"Hook":                                   "\xf3\xb0\x9b\xa2",
		"HookOff":                                "\xf3\xb0\x9b\xa3",
		"HoopHouse":                              "\xf3\xb0\xb9\x96",
		"Hops":                                   "\xf3\xb0\x8b\x9f",
		"HorizontalRotateClockwise":              "\xf3\xb1\x83\xb3",
		"HorizontalRotateCounterclockwise":       "\xf3\xb1\x83\xb4",
		"Horse":                                  "\xf3\xb1\x96\xbf",
		"HorseHuman":                             "\xf3\xb1\x97\x80",
		"HorseVariant":                           "\xf3\xb1\x97\x81",
		"HorseVariantFast":                       "\xf3\xb1\xa1\xae",
		"Horseshoe":                              "\xf3\xb0\xa9\x98",
		"Hospital":                               "\xf3\xb0\xbf\xb6",
		"HospitalBox":                            "\xf3\xb0\x8b\xa0",
		"HospitalBoxOutline":                     "\xf3\xb0\xbf\xb7",
		"HospitalBuilding":                       "\xf3\xb0\x8b\xa1",
		"HospitalMarker":                         "\xf3\xb0\x8b\xa2",
		"HotTub":                                 "\xf3\xb0\xa0\xa8",
		"Hours12":                                "\xf3\xb1\xb2\x94",
		"Hours24":                                "\xf3\xb1\x91\xb8",
		"Hub":                                    "\xf3\xb1\xb2\x95",
		"HubOutline":                             "\xf3\xb1\xb2\x96",
		"Hubspot":                                "\xf3\xb0\xb4\x97",
		"Hulu":                                   "\xf3\xb0\xa0\xa9",
		"Human":                                  "\xf3\xb0\x8b\xa6",
		"HumanBabyChangingTable":                 "\xf3\xb1\x8e\x8b",
		"HumanCane":                              "\xf3\xb1\x96\x81",
		"HumanCapacityDecrease":                  "\xf3\xb1\x96\x9b",
		"HumanCapacityIncrease":                  "\xf3\xb1\x96\x9c",
		"HumanChild":                             "\xf3\xb0\x8b\xa7",
		"HumanDolly":                             "\xf3\xb1\xa6\x80",
		"HumanEdit":                              "\xf3\xb1\x93\xa8",
		"HumanFemale":                            "\xf3\xb0\x99\x89",
		"HumanFemaleBoy":                         "\xf3\xb0\xa9\x99",
		"HumanFemaleDance":                       "\xf3\xb1\x97\x89",
		"HumanFemaleFemale":                      "\xf3\xb0\xa9\x9a",
		"HumanFemaleFemaleChild":                 "\xf3\xb1\xb2\x8e",
		"HumanFemaleGirl":                        "\xf3\xb0\xa9\x9b",
		"HumanGreeting":                          "\xf3\xb1\x9f\x84",
		"HumanGreetingProximity":                 "\xf3\xb1\x96\x9d",
		"HumanGreetingVariant":                   "\xf3\xb0\x99\x8a",
		"HumanHandsdown":                         "\xf3\xb0\x99\x8b",
		"HumanHandsup":                           "\xf3\xb0\x99\x8c",
		"HumanMale":                              "\xf3\xb0\x99\x8d",
		"HumanMaleBoard":                         "\xf3\xb0\xa2\x90",
		"HumanMaleBoardPoll":                     "\xf3\xb0\xa1\x86",
		"HumanMaleBoy":                           "\xf3\xb0\xa9\x9c",
		"HumanMaleChild":                         "\xf3\xb1\x8e\x8c",
		"HumanMaleFemale":                        "\xf3\xb0\x8b\xa8",
		"HumanMaleFemaleChild":                   "\xf3\xb1\xa0\xa3",
		"HumanMaleGirl":                          "\xf3\xb0\xa9\x9d",
		"HumanMaleHeight":                        "\xf3\xb0\xbb\xbb",
		"HumanMaleHeightVariant":                 "\xf3\xb0\xbb\xbc",
		"HumanMaleMale":                          "\xf3\xb0\xa9\x9e",
		"HumanMaleMaleChild":                     "\xf3\xb1\xb2\x8f",
		"HumanNonBinary":                         "\xf3\xb1\xa1\x88",
		"HumanPregnant":                          "\xf3\xb0\x97\x8f",
		"HumanQueue":                             "\xf3\xb1\x95\xb1",
		"HumanScooter":                           "\xf3\xb1\x87\xa9",
		"HumanWalker":                            "\xf3\xb1\xad\xb1",
		"HumanWheelchair":                        "\xf3\xb1\x8e\x8d",
		"HumanWhiteCane":                         "\xf3\xb1\xa6\x81",
		"HumbleBundle":                           "\xf3\xb0\x9d\x84",
		"Hvac":                                   "\xf3\xb1\x8d\x92",
		"HvacOff":                                "\xf3\xb1\x96\x9e",
		"HydraulicOilLevel":                      "\xf3\xb1\x8c\xa4",
		"HydraulicOilTemperature":                "\xf3\xb1\x8c\xa5",
		"HydroPower":                             "\xf3\xb1\x8b\xa5",
		"HydrogenStation":                        "\xf3\xb1\xa2\x94",
		"IceCream":                               "\xf3\xb0\xa0\xaa",
		"IceCreamOff":                            "\xf3\xb0\xb9\x92",
		"IcePop":                                 "\xf3\xb0\xbb\xbd",
		"IdCard":                                 "\xf3\xb0\xbf\x80",
		"Identifier":                             "\xf3\xb0\xbb\xbe",
		"IdeogramCjk":                            "\xf3\xb1\x8c\xb1",
		"IdeogramCjkVariant":                     "\xf3\xb1\x8c\xb2",
		"Image":                                  "\xf3\xb0\x8b\xa9",
		"ImageAlbum":                             "\xf3\xb0\x8b\xaa",
		"ImageArea":                              "\xf3\xb0\x8b\xab",
		"ImageAreaClose":                         "\xf3\xb0\x8b\xac",
		"ImageAutoAdjust":                        "\xf3\xb0\xbf\x81",
		"ImageBroken":                            "\xf3\xb0\x8b\xad",
		"ImageBrokenVariant":                     "\xf3\xb0\x8b\xae",
		"ImageCheck":                             "\xf3\xb1\xac\xa5",
		"ImageCheckOutline":                      "\xf3\xb1\xac\xa6",
		"ImageEdit":                              "\xf3\xb1\x87\xa3",
		"ImageEditOutline":                       "\xf3\xb1\x87\xa4",
		"ImageFilterBlackWhite":                  "\xf3\xb0\x8b\xb0",
		"ImageFilterCenterFocus":                 "\xf3\xb0\x8b\xb1",
		"ImageFilterCenterFocusStrong":           "\xf3\xb0\xbb\xbf",
		"ImageFilterCenterFocusStrongOutline":    "\xf3\xb0\xbc\x80",
		"ImageFilterCenterFocusWeak":             "\xf3\xb0\x8b\xb2",
		"ImageFilterDrama":                       "\xf3\xb0\x8b\xb3",
		"ImageFilterDramaOutline":                "\xf3\xb1\xaf\xbf",
		"ImageFilterFrames":                      "\xf3\xb0\x8b\xb4",
		"ImageFilterHdr":                         "\xf3\xb0\x8b\xb5",
		"ImageFilterHdrOutline":                  "\xf3\xb1\xb1\xa4",
		"ImageFilterNone":                        "\xf3\xb0\x8b\xb6",
		"ImageFilterTiltShift":                   "\xf3\xb0\x8b\xb7",
		"ImageFilterVintage":                     "\xf3\xb0\x8b\xb8",
		"ImageFrame":                             "\xf3\xb0\xb9\x89",
		"ImageLock":                              "\xf3\xb1\xaa\xb0",
		"ImageLockOutline":                       "\xf3\xb1\xaa\xb1",
		"ImageMarker":                            "\xf3\xb1\x9d\xbb",
		"ImageMarkerOutline":                     "\xf3\xb1\x9d\xbc",
		"ImageMinus":                             "\xf3\xb1\x90\x99",
		"ImageMinusOutline":                      "\xf3\xb1\xad\x87",
		"ImageMove":                              "\xf3\xb0\xa7\xb8",
		"ImageMultiple":                          "\xf3\xb0\x8b\xb9",
		"ImageMultipleOutline":                   "\xf3\xb0\x8b\xaf",
		"ImageOff":                               "\xf3\xb0\xa0\xab",
		"ImageOffOutline":                        "\xf3\xb1\x87\x91",
		"ImageOutline":                           "\xf3\xb0\xa5\xb6",
		"ImagePlus":                              "\xf3\xb0\xa1\xbc",
		"ImagePlusOutline":                       "\xf3\xb1\xad\x86",
		"ImageRefresh":                           "\xf3\xb1\xa7\xbe",
		"ImageRefreshOutline":                    "\xf3\xb1\xa7\xbf",
		"ImageRemove":                            "\xf3\xb1\x90\x98",
		"ImageRemoveOutline":                     "\xf3\xb1\xad\x88",
		"ImageSearch":                            "\xf3\xb0\xa5\xb7",
		"ImageSearchOutline":                     "\xf3\xb0\xa5\xb8",
		"ImageSizeSelectActual":                  "\xf3\xb0\xb2\x8d",
		"ImageSizeSelectLarge":                   "\xf3\xb0\xb2\x8e",
		"ImageSizeSelectSmall":                   "\xf3\xb0\xb2\x8f",
		"ImageSync":                              "\xf3\xb1\xa8\x80",
		"ImageSyncOutline":                       "\xf3\xb1\xa8\x81",
		"ImageText":                              "\xf3\xb1\x98\x8d",
		"Import":                                 "\xf3\xb0\x8b\xba",
		"Inbox":                                  "\xf3\xb0\x9a\x87",
		"InboxArrowDown":                         "\xf3\xb0\x8b\xbb",
		"InboxArrowDownOutline":                  "\xf3\xb1\x89\xb0",
		"InboxArrowUp":                           "\xf3\xb0\x8f\x91",
		"InboxArrowUpOutline":                    "\xf3\xb1\x89\xb1",
		"InboxFull":                              "\xf3\xb1\x89\xb2",
		"InboxFullOutline":                       "\xf3\xb1\x89\xb3",
		"InboxMultiple":                          "\xf3\xb0\xa2\xb0",
		"InboxMultipleOutline":                   "\xf3\xb0\xae\xa8",
		"InboxOutline":                           "\xf3\xb1\x89\xb4",
		"InboxRemove":                            "\xf3\xb1\x96\x9f",
		"InboxRemoveOutline":                     "\xf3\xb1\x96\xa0",
		"Incognito":                              "\xf3\xb0\x97\xb9",
		"IncognitoCircle":                        "\xf3\xb1\x90\xa1",
		"IncognitoCircleOff":                     "\xf3\xb1\x90\xa2",
		"IncognitoOff":                           "\xf3\xb0\x81\xb5",
		"Induction":                              "\xf3\xb1\xa1\x8c",
		"Infinity":                               "\xf3\xb0\x9b\xa4",
		"Information":                            "\xf3\xb0\x8b\xbc",
		"InformationBox":                         "\xf3\xb1\xb1\xa5",
		"InformationBoxOutline":                  "\xf3\xb1\xb1\xa6",
		"InformationOff":                         "\xf3\xb1\x9e\x8c",
		"InformationOffOutline":                  "\xf3\xb1\x9e\x8d",
		"InformationOutline":                     "\xf3\xb0\x8b\xbd",
		"InformationSlabBox":                     "\xf3\xb1\xb1\xa7",
		"InformationSlabBoxOutline":              "\xf3\xb1\xb1\xa8",
		"InformationSlabCircle":                  "\xf3\xb1\xb1\xa9",
		"InformationSlabCircleOutline":           "\xf3\xb1\xb1\xaa",
		"InformationSlabSymbol":                  "\xf3\xb1\xb1\xab",
		"InformationSymbol":                      "\xf3\xb1\xb1\xac",
		"InformationVariant":                     "\xf3\xb0\x99\x8e",
		"InformationVariantBox":                  "\xf3\xb1\xb1\xad",
		"InformationVariantBoxOutline":           "\xf3\xb1\xb1\xae",
		"InformationVariantCircle":               "\xf3\xb1\xb1\xaf",
		"InformationVariantCircleOutline":        "\xf3\xb1\xb1\xb0",
		"Instagram":                              "\xf3\xb0\x8b\xbe",
		"InstrumentTriangle":                     "\xf3\xb1\x81\x8e",
		"IntegratedCircuitChip":                  "\xf3\xb1\xa4\x93",
		"InvertColors":                           "\xf3\xb0\x8c\x81",
		"InvertColorsOff":                        "\xf3\xb0\xb9\x8a",
		"Invoice":                                "\xf3\xb1\xb3\x92",
		"InvoiceArrowLeft":                       "\xf3\xb1\xb3\x93",
		"InvoiceArrowLeftOutline":                "\xf3\xb1\xb3\x94",
		"InvoiceArrowRight":                      "\xf3\xb1\xb3\x95",
		"InvoiceArrowRightOutline":               "\xf3\xb1\xb3\x96",
		"InvoiceCheck":                           "\xf3\xb1\xb3\x97",
		"InvoiceCheckOutline":                    "\xf3\xb1\xb3\x98",
		"InvoiceClock":                           "\xf3\xb1\xb3\x99",
		"InvoiceClockOutline":                    "\xf3\xb1\xb3\x9a",
		"InvoiceEdit":                            "\xf3\xb1\xb3\x9b",
		"InvoiceEditOutline":                     "\xf3\xb1\xb3\x9c",
		"InvoiceExportOutline":                   "\xf3\xb1\xb3\x9d",
		"InvoiceFast":                            "\xf3\xb1\xb3\x9e",
		"InvoiceFastOutline":                     "\xf3\xb1\xb3\x9f",
		"InvoiceImport":                          "\xf3\xb1\xb3\xa0",
		"InvoiceImportOutline":                   "\xf3\xb1\xb3\xa1",
		"InvoiceList":                            "\xf3\xb1\xb3\xa2",
		"InvoiceListOutline":                     "\xf3\xb1\xb3\xa3",
		"InvoiceMinus":                           "\xf3\xb1\xb3\xa4",
		"InvoiceMinusOutline":                    "\xf3\xb1\xb3\xa5",
		"InvoiceMultiple":                        "\xf3\xb1\xb3\xa6",
		"InvoiceMultipleOutline":                 "\xf3\xb1\xb3\xa7",
		"InvoiceOutline":                         "\xf3\xb1\xb3\xa8",
		"InvoicePlus":                            "\xf3\xb1\xb3\xa9",
		"InvoicePlusOutline":                     "\xf3\xb1\xb3\xaa",
		"InvoiceRemove":                          "\xf3\xb1\xb3\xab",
		"InvoiceRemoveOutline":                   "\xf3\xb1\xb3\xac",
		"InvoiceSend":                            "\xf3\xb1\xb3\xad",
		"InvoiceSendOutline":                     "\xf3\xb1\xb3\xae",
		"InvoiceText":                            "\xf3\xb1\xb3\xaf",
		"InvoiceTextArrowLeft":                   "\xf3\xb1\xb3\xb0",
		"InvoiceTextArrowLeftOutline":            "\xf3\xb1\xb3\xb1",
		"InvoiceTextArrowRight":                  "\xf3\xb1\xb3\xb2",
		"InvoiceTextArrowRightOutline":           "\xf3\xb1\xb3\xb3",
		"InvoiceTextCheck":                       "\xf3\xb1\xb3\xb4",
		"InvoiceTextCheckOutline":                "\xf3\xb1\xb3\xb5",
		"InvoiceTextClock":                       "\xf3\xb1\xb3\xb6",
		"InvoiceTextClockOutline":                "\xf3\xb1\xb3\xb7",
		"InvoiceTextEdit":                        "\xf3\xb1\xb3\xb8",
		"InvoiceTextEditOutline":                 "\xf3\xb1\xb3\xb9",
		"InvoiceTextFast":                        "\xf3\xb1\xb3\xba",
		"InvoiceTextFastOutline":                 "\xf3\xb1\xb3\xbb",
		"InvoiceTextMinus":                       "\xf3\xb1\xb3\xbc",
		"InvoiceTextMinusOutline":                "\xf3\xb1\xb3\xbd",
		"InvoiceTextMultiple":                    "\xf3\xb1\xb3\xbe",
		"InvoiceTextMultipleOutline":             "\xf3\xb1\xb3\xbf",
		"InvoiceTextOutline":                     "\xf3\xb1\xb4\x80",
		"InvoiceTextPlus":                        "\xf3\xb1\xb4\x81",
		"InvoiceTextPlusOutline":                 "\xf3\xb1\xb4\x82",
		"InvoiceTextRemove":                      "\xf3\xb1\xb4\x83",
		"InvoiceTextRemoveOutline":               "\xf3\xb1\xb4\x84",
		"InvoiceTextSend":                        "\xf3\xb1\xb4\x85",
		"InvoiceTextSendOutline":                 "\xf3\xb1\xb4\x86",
		"Iobroker":                               "\xf3\xb1\x8b\xa8",
		"Ip":                                     "\xf3\xb0\xa9\x9f",
		"IpNetwork":                              "\xf3\xb0\xa9\xa0",
		"IpNetworkOutline":                       "\xf3\xb0\xb2\x90",
		"IpOutline":                              "\xf3\xb1\xa6\x82",
		"Ipod":                                   "\xf3\xb0\xb2\x91",
		"Iron":                                   "\xf3\xb1\xa0\xa4",
		"IronBoard":                              "\xf3\xb1\xa0\xb8",
		"IronOutline":                            "\xf3\xb1\xa0\xa5",
		"Island":                                 "\xf3\xb1\x81\x8f",
		"IslandVariant":                          "\xf3\xb1\xb3\x86",
		"IvBag":                                  "\xf3\xb1\x82\xb9",
		"Jabber":                                 "\xf3\xb0\xb7\x95",
		"Jeepney":                                "\xf3\xb0\x8c\x82",
		"Jellyfish":                              "\xf3\xb0\xbc\x81",
		"JellyfishOutline":                       "\xf3\xb0\xbc\x82",
		"Jira":                                   "\xf3\xb0\x8c\x83",
		"Jquery":                                 "\xf3\xb0\xa1\xbd",
		"Jsfiddle":                               "\xf3\xb0\x8c\x84",
		"JumpRope":                               "\xf3\xb1\x8b\xbf",
		"Kabaddi":                                "\xf3\xb0\xb6\x87",
		"Kangaroo":                               "\xf3\xb1\x95\x98",
		"Karate":                                 "\xf3\xb0\xa0\xac",
		"Kayaking":                               "\xf3\xb0\xa2\xaf",
		"Keg":                                    "\xf3\xb0\x8c\x85",
		"Kettle":                                 "\xf3\xb0\x97\xba",
		"KettleAlert":                            "\xf3\xb1\x8c\x97",
		"KettleAlertOutline":                     "\xf3\xb1\x8c\x98",
		"KettleOff":                              "\xf3\xb1\x8c\x9b",
		"KettleOffOutline":                       "\xf3\xb1\x8c\x9c",
		"KettleOutline":                          "\xf3\xb0\xbd\x96",
		"KettlePourOver":                         "\xf3\xb1\x9c\xbc",
		"KettleSteam":                            "\xf3\xb1\x8c\x99",
		"KettleSteamOutline":                     "\xf3\xb1\x8c\x9a",
		"Kettlebell":                             "\xf3\xb1\x8c\x80",
		"Key":                                    "\xf3\xb0\x8c\x86",
		"KeyAlert":                               "\xf3\xb1\xa6\x83",
		"KeyAlertOutline":                        "\xf3\xb1\xa6\x84",
		"KeyArrowRight":                          "\xf3\xb1\x8c\x92",
		"KeyChain":                               "\xf3\xb1\x95\xb4",
		"KeyChainVariant":                        "\xf3\xb1\x95\xb5",
		"KeyChange":                              "\xf3\xb0\x8c\x87",
		"KeyLink":                                "\xf3\xb1\x86\x9f",
		"KeyMinus":                               "\xf3\xb0\x8c\x88",
		"KeyOutline":                             "\xf3\xb0\xb7\x96",
		"KeyPlus":                                "\xf3\xb0\x8c\x89",
		"KeyRemove":                              "\xf3\xb0\x8c\x8a",
		"KeyStar":                                "\xf3\xb1\x86\x9e",
		"KeyVariant":                             "\xf3\xb0\x8c\x8b",
		"KeyWireless":                            "\xf3\xb0\xbf\x82",
		"Keyboard":                               "\xf3\xb0\x8c\x8c",
		"KeyboardBackspace":                      "\xf3\xb0\x8c\x8d",
		"KeyboardCaps":                           "\xf3\xb0\x8c\x8e",
		"KeyboardClose":                          "\xf3\xb0\x8c\x8f",
		"KeyboardCloseOutline":                   "\xf3\xb1\xb0\x80",
		"KeyboardEsc":                            "\xf3\xb1\x8a\xb7",
		"KeyboardF1":                             "\xf3\xb1\x8a\xab",
		"KeyboardF10":                            "\xf3\xb1\x8a\xb4",
		"KeyboardF11":                            "\xf3\xb1\x8a\xb5",
		"KeyboardF12":                            "\xf3\xb1\x8a\xb6",
		"KeyboardF2":                             "\xf3\xb1\x8a\xac",
		"KeyboardF3":                             "\xf3\xb1\x8a\xad",
		"KeyboardF4":                             "\xf3\xb1\x8a\xae",
		"KeyboardF5":                             "\xf3\xb1\x8a\xaf",
		"KeyboardF6":                             "\xf3\xb1\x8a\xb0",
		"KeyboardF7":                             "\xf3\xb1\x8a\xb1",
		"KeyboardF8":                             "\xf3\xb1\x8a\xb2",
		"KeyboardF9":                             "\xf3\xb1\x8a\xb3",
		"KeyboardOff":                            "\xf3\xb0\x8c\x90",
		"KeyboardOffOutline":                     "\xf3\xb0\xb9\x8b",
		"KeyboardOutline":                        "\xf3\xb0\xa5\xbb",
		"KeyboardReturn":                         "\xf3\xb0\x8c\x91",
		"KeyboardSettings":                       "\xf3\xb0\xa7\xb9",
		"KeyboardSettingsOutline":                "\xf3\xb0\xa7\xba",
		"KeyboardSpace":                          "\xf3\xb1\x81\x90",
		"KeyboardTab":                            "\xf3\xb0\x8c\x92",
		"KeyboardTabReverse":                     "\xf3\xb0\x8c\xa5",
		"KeyboardVariant":                        "\xf3\xb0\x8c\x93",
		"Khanda":                                 "\xf3\xb1\x83\xbd",
		"Kickstarter":                            "\xf3\xb0\x9d\x85",
		"Kite":                                   "\xf3\xb1\xa6\x85",
		"KiteOutline":                            "\xf3\xb1\xa6\x86",
		"Kitesurfing":                            "\xf3\xb1\x9d\x84",
		"Klingon":                                "\xf3\xb1\x8d\x9b",
		"Knife":                                  "\xf3\xb0\xa7\xbb",
		"KnifeMilitary":                          "\xf3\xb0\xa7\xbc",
		"Knob":                                   "\xf3\xb1\xae\x96",
		"Koala":                                  "\xf3\xb1\x9c\xbf",
		"Kodi":                                   "\xf3\xb0\x8c\x94",
		"Kubernetes":                             "\xf3\xb1\x83\xbe",
		"Label":                                  "\xf3\xb0\x8c\x95",
		"LabelMultiple":                          "\xf3\xb1\x8d\xb5",
		"LabelMultipleOutline":                   "\xf3\xb1\x8d\xb6",
		"LabelOff":                               "\xf3\xb0\xab\x8b",
		"LabelOffOutline":                        "\xf3\xb0\xab\x8c",
		"LabelOutline":                           "\xf3\xb0\x8c\x96",
		"LabelPercent":                           "\xf3\xb1\x8b\xaa",
		"LabelPercentOutline":                    "\xf3\xb1\x8b\xab",
		"LabelVariant":                           "\xf3\xb0\xab\x8d",
		"LabelVariantOutline":                    "\xf3\xb0\xab\x8e",
		"Ladder":                                 "\xf3\xb1\x96\xa2",
		"Ladybug":                                "\xf3\xb0\xa0\xad",
		"Lambda":                                 "\xf3\xb0\x98\xa7",
		"Lamp":                                   "\xf3\xb0\x9a\xb5",
		"LampOutline":                            "\xf3\xb1\x9f\x90",
		"Lamps":                                  "\xf3\xb1\x95\xb6",
		"LampsOutline":                           "\xf3\xb1\x9f\x91",
		"Lan":                                    "\xf3\xb0\x8c\x97",
		"LanCheck":                               "\xf3\xb1\x8a\xaa",
		"LanConnect":                             "\xf3\xb0\x8c\x98",
		"LanDisconnect":                          "\xf3\xb0\x8c\x99",
		"LanPending":                             "\xf3\xb0\x8c\x9a",
		"LandFields":                             "\xf3\xb1\xaa\xb2",
		"LandPlots":                              "\xf3\xb1\xaa\xb3",
		"LandPlotsCircle":                        "\xf3\xb1\xaa\xb4",
		"LandPlotsCircleVariant":                 "\xf3\xb1\xaa\xb5",
		"LandPlotsMarker":                        "\xf3\xb1\xb1\x9d",
		"LandRowsHorizontal":                     "\xf3\xb1\xaa\xb6",
		"LandRowsVertical":                       "\xf3\xb1\xaa\xb7",
		"Landslide":                              "\xf3\xb1\xa9\x88",
		"LandslideOutline":                       "\xf3\xb1\xa9\x89",
		"LanguageC":                              "\xf3\xb0\x99\xb1",
		"LanguageCpp":                            "\xf3\xb0\x99\xb2",
		"LanguageCsharp":                         "\xf3\xb0\x8c\x9b",
		"LanguageCss3":                           "\xf3\xb0\x8c\x9c",
		"LanguageFortran":                        "\xf3\xb1\x88\x9a",
		"LanguageGo":                             "\xf3\xb0\x9f\x93",
		"LanguageHaskell":                        "\xf3\xb0\xb2\x92",
		"LanguageHtml5":                          "\xf3\xb0\x8c\x9d",
		"LanguageJava":                           "\xf3\xb0\xac\xb7",
		"LanguageJavascript":                     "\xf3\xb0\x8c\x9e",
		"LanguageKotlin":                         "\xf3\xb1\x88\x99",
		"LanguageLua":                            "\xf3\xb0\xa2\xb1",
		"LanguageMarkdown":                       "\xf3\xb0\x8d\x94",
		"LanguageMarkdownOutline":                "\xf3\xb0\xbd\x9b",
		"LanguagePhp":                            "\xf3\xb0\x8c\x9f",
		"LanguagePython":                         "\xf3\xb0\x8c\xa0",
		"LanguageR":                              "\xf3\xb0\x9f\x94",
		"LanguageRuby":                           "\xf3\xb0\xb4\xad",
		"LanguageRubyOnRails":                    "\xf3\xb0\xab\x8f",
		"LanguageRust":                           "\xf3\xb1\x98\x97",
		"LanguageSwift":                          "\xf3\xb0\x9b\xa5",
		"LanguageTypescript":                     "\xf3\xb0\x9b\xa6",
		"LanguageXaml":                           "\xf3\xb0\x99\xb3",
		"Laptop":                                 "\xf3\xb0\x8c\xa2",
		"LaptopAccount":                          "\xf3\xb1\xa9\x8a",
		"LaptopOff":                              "\xf3\xb0\x9b\xa7",
		"Laravel":                                "\xf3\xb0\xab\x90",
		"LaserPointer":                           "\xf3\xb1\x92\x84",
		"Lasso":                                  "\xf3\xb0\xbc\x83",
		"Lastpass":                               "\xf3\xb0\x91\x86",
		"Latitude":                               "\xf3\xb0\xbd\x97",
		"Launch":                                 "\xf3\xb0\x8c\xa7",
		"LavaLamp":                               "\xf3\xb0\x9f\x95",
		"Layers":                                 "\xf3\xb0\x8c\xa8",
		"LayersEdit":                             "\xf3\xb1\xa2\x92",
		"LayersMinus":                            "\xf3\xb0\xb9\x8c",
		"LayersOff":                              "\xf3\xb0\x8c\xa9",
		"LayersOffOutline":                       "\xf3\xb0\xa7\xbd",
		"LayersOutline":                          "\xf3\xb0\xa7\xbe",
		"LayersPlus":                             "\xf3\xb0\xb9\x8d",
		"LayersRemove":                           "\xf3\xb0\xb9\x8e",
		"LayersSearch":                           "\xf3\xb1\x88\x86",
		"LayersSearchOutline":                    "\xf3\xb1\x88\x87",
		"LayersTriple":                           "\xf3\xb0\xbd\x98",
		"LayersTripleOutline":                    "\xf3\xb0\xbd\x99",
		"LeadPencil":                             "\xf3\xb0\x99\x8f",
		"Leaf":                                   "\xf3\xb0\x8c\xaa",
		"LeafCircle":                             "\xf3\xb1\xa4\x85",
		"LeafCircleOutline":                      "\xf3\xb1\xa4\x86",
		"LeafMaple":                              "\xf3\xb0\xb2\x93",
		"LeafMapleOff":                           "\xf3\xb1\x8b\x9a",
		"LeafOff":                                "\xf3\xb1\x8b\x99",
		"Leak":                                   "\xf3\xb0\xb7\x97",
		"LeakOff":                                "\xf3\xb0\xb7\x98",
		"Lectern":                                "\xf3\xb1\xab\xb0",
		"LedOff":                                 "\xf3\xb0\x8c\xab",
		"LedOn":                                  "\xf3\xb0\x8c\xac",
		"LedOutline":                             "\xf3\xb0\x8c\xad",
		"LedStrip":                               "\xf3\xb0\x9f\x96",
		"LedStripVariant":                        "\xf3\xb1\x81\x91",
		"LedStripVariantOff":                     "\xf3\xb1\xa9\x8b",
		"LedVariantOff":                          "\xf3\xb0\x8c\xae",
		"LedVariantOn":                           "\xf3\xb0\x8c\xaf",
		"LedVariantOutline":                      "\xf3\xb0\x8c\xb0",
		"Leek":                                   "\xf3\xb1\x85\xbd",
		"LessThan":                               "\xf3\xb0\xa5\xbc",
		"LessThanOrEqual":                        "\xf3\xb0\xa5\xbd",
		"Library":                                "\xf3\xb0\x8c\xb1",
		"LibraryOutline":                         "\xf3\xb1\xa8\xa2",
		"LibraryShelves":                         "\xf3\xb0\xae\xa9",
		"License":                                "\xf3\xb0\xbf\x83",
		"Lifebuoy":                               "\xf3\xb0\xa1\xbe",
		"LightFloodDown":                         "\xf3\xb1\xa6\x87",
		"LightFloodUp":                           "\xf3\xb1\xa6\x88",
		"LightRecessed":                          "\xf3\xb1\x9e\x9b",
		"LightSwitch":                            "\xf3\xb0\xa5\xbe",
		"LightSwitchOff":                         "\xf3\xb1\xa8\xa4",
		"Lightbulb":                              "\xf3\xb0\x8c\xb5",
		"LightbulbAlert":                         "\xf3\xb1\xa7\xa1",
		"LightbulbAlertOutline":                  "\xf3\xb1\xa7\xa2",
		"LightbulbAuto":                          "\xf3\xb1\xa0\x80",
		"LightbulbAutoOutline":                   "\xf3\xb1\xa0\x81",
		"LightbulbCfl":                           "\xf3\xb1\x88\x88",
		"LightbulbCflOff":                        "\xf3\xb1\x88\x89",
		"LightbulbCflSpiral":                     "\xf3\xb1\x89\xb5",
		"LightbulbCflSpiralOff":                  "\xf3\xb1\x8b\x83",
		"LightbulbFluorescentTube":               "\xf3\xb1\xa0\x84",
		"LightbulbFluorescentTubeOutline":        "\xf3\xb1\xa0\x85",
		"LightbulbGroup":                         "\xf3\xb1\x89\x93",
		"LightbulbGroupOff":                      "\xf3\xb1\x8b\x8d",
		"LightbulbGroupOffOutline":               "\xf3\xb1\x8b\x8e",
		"LightbulbGroupOutline":                  "\xf3\xb1\x89\x94",
		"LightbulbMultiple":                      "\xf3\xb1\x89\x95",
		"LightbulbMultipleOff":                   "\xf3\xb1\x8b\x8f",
		"LightbulbMultipleOffOutline":            "\xf3\xb1\x8b\x90",
		"LightbulbMultipleOutline":               "\xf3\xb1\x89\x96",
		"LightbulbNight":                         "\xf3\xb1\xa9\x8c",
		"LightbulbNightOutline":                  "\xf3\xb1\xa9\x8d",
		"LightbulbOff":                           "\xf3\xb0\xb9\x8f",
		"LightbulbOffOutline":                    "\xf3\xb0\xb9\x90",
		"LightbulbOn":                            "\xf3\xb0\x9b\xa8",
		"LightbulbOn10":                          "\xf3\xb1\xa9\x8e",
		"LightbulbOn20":                          "\xf3\xb1\xa9\x8f",
		"LightbulbOn30":                          "\xf3\xb1\xa9\x90",
		"LightbulbOn40":                          "\xf3\xb1\xa9\x91",
		"LightbulbOn50":                          "\xf3\xb1\xa9\x92",
		"LightbulbOn60":                          "\xf3\xb1\xa9\x93",
		"LightbulbOn70":                          "\xf3\xb1\xa9\x94",
		"LightbulbOn80":                          "\xf3\xb1\xa9\x95",
		"LightbulbOn90":                          "\xf3\xb1\xa9\x96",
		"LightbulbOnOutline":                     "\xf3\xb0\x9b\xa9",
		"LightbulbOutline":                       "\xf3\xb0\x8c\xb6",
		"LightbulbQuestion":                      "\xf3\xb1\xa7\xa3",
		"LightbulbQuestionOutline":               "\xf3\xb1\xa7\xa4",
		"LightbulbSpot":                          "\xf3\xb1\x9f\xb4",
		"LightbulbSpotOff":                       "\xf3\xb1\x9f\xb5",
		"LightbulbVariant":                       "\xf3\xb1\xa0\x82",
		"LightbulbVariantOutline":                "\xf3\xb1\xa0\x83",
		"Lighthouse":                             "\xf3\xb0\xa7\xbf",
		"LighthouseOn":                           "\xf3\xb0\xa8\x80",
		"LightningBolt":                          "\xf3\xb1\x90\x8b",
		"LightningBoltCircle":                    "\xf3\xb0\xa0\xa0",
		"LightningBoltOutline":                   "\xf3\xb1\x90\x8c",
		"LineScan":                               "\xf3\xb0\x98\xa4",
		"Lingerie":                               "\xf3\xb1\x91\xb6",
		"Link":                                   "\xf3\xb0\x8c\xb7",
		"LinkBox":                                "\xf3\xb0\xb4\x9a",
		"LinkBoxOutline":                         "\xf3\xb0\xb4\x9b",
		"LinkBoxVariant":                         "\xf3\xb0\xb4\x9c",
		"LinkBoxVariantOutline":                  "\xf3\xb0\xb4\x9d",
		"LinkCircle":                             "\xf3\xb1\xb2\xac",
		"LinkCircleOutline":                      "\xf3\xb1\xb2\xad",
		"LinkEdit":                               "\xf3\xb1\xb2\xae",
		"LinkLock":                               "\xf3\xb1\x82\xba",
		"LinkOff":                                "\xf3\xb0\x8c\xb8",
		"LinkPlus":                               "\xf3\xb0\xb2\x94",
		"LinkVariant":                            "\xf3\xb0\x8c\xb9",
		"LinkVariantMinus":                       "\xf3\xb1\x83\xbf",
		"LinkVariantOff":                         "\xf3\xb0\x8c\xba",
		"LinkVariantPlus":                        "\xf3\xb1\x84\x80",
		"LinkVariantRemove":                      "\xf3\xb1\x84\x81",
		"Linkedin":                               "\xf3\xb0\x8c\xbb",
		"Linux":                                  "\xf3\xb0\x8c\xbd",
		"LinuxMint":                              "\xf3\xb0\xa3\xad",
		"Lipstick":                               "\xf3\xb1\x8e\xb5",
		"LiquidSpot":                             "\xf3\xb1\xa0\xa6",
		"Liquor":                                 "\xf3\xb1\xa4\x9e",
		"ListBox":                                "\xf3\xb1\xad\xbb",
		"ListBoxOutline":                         "\xf3\xb1\xad\xbc",
		"ListStatus":                             "\xf3\xb1\x96\xab",
		"Litecoin":                               "\xf3\xb0\xa9\xa1",
		"Loading":                                "\xf3\xb0\x9d\xb2",
		"LocationEnter":                          "\xf3\xb0\xbf\x84",
		"LocationExit":                           "\xf3\xb0\xbf\x85",
		"Lock":                                   "\xf3\xb0\x8c\xbe",
		"LockAlert":                              "\xf3\xb0\xa3\xae",
		"LockAlertOutline":                       "\xf3\xb1\x97\x91",
		"LockCheck":                              "\xf3\xb1\x8e\x9a",
		"LockCheckOutline":                       "\xf3\xb1\x9a\xa8",
		"LockClock":                              "\xf3\xb0\xa5\xbf",
		"LockMinus":                              "\xf3\xb1\x9a\xa9",
		"LockMinusOutline":                       "\xf3\xb1\x9a\xaa",
		"LockOff":                                "\xf3\xb1\x99\xb1",
		"LockOffOutline":                         "\xf3\xb1\x99\xb2",
		"LockOpen":                               "\xf3\xb0\x8c\xbf",
		"LockOpenAlert":                          "\xf3\xb1\x8e\x9b",
		"LockOpenAlertOutline":                   "\xf3\xb1\x97\x92",
		"LockOpenCheck":                          "\xf3\xb1\x8e\x9c",
		"LockOpenCheckOutline":                   "\xf3\xb1\x9a\xab",
		"LockOpenMinus":                          "\xf3\xb1\x9a\xac",
		"LockOpenMinusOutline":                   "\xf3\xb1\x9a\xad",
		"LockOpenOutline":                        "\xf3\xb0\x8d\x80",
		"LockOpenPlus":                           "\xf3\xb1\x9a\xae",
		"LockOpenPlusOutline":                    "\xf3\xb1\x9a\xaf",
		"LockOpenRemove":                         "\xf3\xb1\x9a\xb0",
		"LockOpenRemoveOutline":                  "\xf3\xb1\x9a\xb1",
		"LockOpenVariant":                        "\xf3\xb0\xbf\x86",
		"LockOpenVariantOutline":                 "\xf3\xb0\xbf\x87",
		"LockOutline":                            "\xf3\xb0\x8d\x81",
		"LockPattern":                            "\xf3\xb0\x9b\xaa",
		"LockPercent":                            "\xf3\xb1\xb0\x92",
		"LockPercentOpen":                        "\xf3\xb1\xb0\x93",
		"LockPercentOpenOutline":                 "\xf3\xb1\xb0\x94",
		"LockPercentOpenVariant":                 "\xf3\xb1\xb0\x95",
		"LockPercentOpenVariantOutline":          "\xf3\xb1\xb0\x96",
		"LockPercentOutline":                     "\xf3\xb1\xb0\x97",
		"LockPlus":                               "\xf3\xb0\x97\xbb",
		"LockPlusOutline":                        "\xf3\xb1\x9a\xb2",
		"LockQuestion":                           "\xf3\xb0\xa3\xaf",
		"LockRemove":                             "\xf3\xb1\x9a\xb3",
		"LockRemoveOutline":                      "\xf3\xb1\x9a\xb4",
		"LockReset":                              "\xf3\xb0\x9d\xb3",
		"LockSmart":                              "\xf3\xb0\xa2\xb2",
		"Locker":                                 "\xf3\xb0\x9f\x97",
		"LockerMultiple":                         "\xf3\xb0\x9f\x98",
		"Login":                                  "\xf3\xb0\x8d\x82",
		"LoginVariant":                           "\xf3\xb0\x97\xbc",
		"Logout":                                 "\xf3\xb0\x8d\x83",
		"LogoutVariant":                          "\xf3\xb0\x97\xbd",
		"Longitude":                              "\xf3\xb0\xbd\x9a",
		"Looks":                                  "\xf3\xb0\x8d\x84",
		"Lotion":                                 "\xf3\xb1\x96\x82",
		"LotionOutline":                          "\xf3\xb1\x96\x83",
		"LotionPlus":                             "\xf3\xb1\x96\x84",
		"LotionPlusOutline":                      "\xf3\xb1\x96\x85",
		"Loupe":                                  "\xf3\xb0\x8d\x85",
		"Lumx":                                   "\xf3\xb0\x8d\x86",
		"Lungs":                                  "\xf3\xb1\x82\x84",
		"Mace":                                   "\xf3\xb1\xa1\x83",
		"MagazinePistol":                         "\xf3\xb0\x8c\xa4",
		"MagazineRifle":                          "\xf3\xb0\x8c\xa3",
		"MagicStaff":                             "\xf3\xb1\xa1\x84",
		"Magnet":                                 "\xf3\xb0\x8d\x87",
		"MagnetOn":                               "\xf3\xb0\x8d\x88",
		"Magnify":                                "\xf3\xb0\x8d\x89",
		"MagnifyClose":                           "\xf3\xb0\xa6\x80",
		"MagnifyExpand":                          "\xf3\xb1\xa1\xb4",
		"MagnifyMinus":                           "\xf3\xb0\x8d\x8a",
		"MagnifyMinusCursor":                     "\xf3\xb0\xa9\xa2",
		"MagnifyMinusOutline":                    "\xf3\xb0\x9b\xac",
		"MagnifyPlus":                            "\xf3\xb0\x8d\x8b",
		"MagnifyPlusCursor":                      "\xf3\xb0\xa9\xa3",
		"MagnifyPlusOutline":                     "\xf3\xb0\x9b\xad",
		"MagnifyRemoveCursor":                    "\xf3\xb1\x88\x8c",
		"MagnifyRemoveOutline":                   "\xf3\xb1\x88\x8d",
		"MagnifyScan":                            "\xf3\xb1\x89\xb6",
		"Mail":                                   "\xf3\xb0\xba\xbb",
		"Mailbox":                                "\xf3\xb0\x9b\xae",
		"MailboxOpen":                            "\xf3\xb0\xb6\x88",
		"MailboxOpenOutline":                     "\xf3\xb0\xb6\x89",
		"MailboxOpenUp":                          "\xf3\xb0\xb6\x8a",
		"MailboxOpenUpOutline":                   "\xf3\xb0\xb6\x8b",
		"MailboxOutline":                         "\xf3\xb0\xb6\x8c",
		"MailboxUp":                              "\xf3\xb0\xb6\x8d",
		"MailboxUpOutline":                       "\xf3\xb0\xb6\x8e",
		"Manjaro":                                "\xf3\xb1\x98\x8a",
		"Map":                                    "\xf3\xb0\x8d\x8d",
		"MapCheck":                               "\xf3\xb0\xba\xbc",
		"MapCheckOutline":                        "\xf3\xb0\xba\xbd",
		"MapClock":                               "\xf3\xb0\xb4\x9e",
		"MapClockOutline":                        "\xf3\xb0\xb4\x9f",
		"MapLegend":                              "\xf3\xb0\xa8\x81",
		"MapMarker":                              "\xf3\xb0\x8d\x8e",
		"MapMarkerAccount":                       "\xf3\xb1\xa3\xa3",
		"MapMarkerAccountOutline":                "\xf3\xb1\xa3\xa4",
		"MapMarkerAlert":                         "\xf3\xb0\xbc\x85",
		"MapMarkerAlertOutline":                  "\xf3\xb0\xbc\x86",
		"MapMarkerCheck":                         "\xf3\xb0\xb2\x95",
		"MapMarkerCheckOutline":                  "\xf3\xb1\x8b\xbb",
		"MapMarkerCircle":                        "\xf3\xb0\x8d\x8f",
		"MapMarkerDistance":                      "\xf3\xb0\xa3\xb0",
		"MapMarkerDown":                          "\xf3\xb1\x84\x82",
		"MapMarkerLeft":                          "\xf3\xb1\x8b\x9b",
		"MapMarkerLeftOutline":                   "\xf3\xb1\x8b\x9d",
		"MapMarkerMinus":                         "\xf3\xb0\x99\x90",
		"MapMarkerMinusOutline":                  "\xf3\xb1\x8b\xb9",
		"MapMarkerMultiple":                      "\xf3\xb0\x8d\x90",
		"MapMarkerMultipleOutline":               "\xf3\xb1\x89\xb7",
		"MapMarkerOff":                           "\xf3\xb0\x8d\x91",
		"MapMarkerOffOutline":                    "\xf3\xb1\x8b\xbd",
		"MapMarkerOutline":                       "\xf3\xb0\x9f\x99",
		"MapMarkerPath":                          "\xf3\xb0\xb4\xa0",
		"MapMarkerPlus":                          "\xf3\xb0\x99\x91",
		"MapMarkerPlusOutline":                   "\xf3\xb1\x8b\xb8",
		"MapMarkerQuestion":                      "\xf3\xb0\xbc\x87",
		"MapMarkerQuestionOutline":               "\xf3\xb0\xbc\x88",
		"MapMarkerRadius":                        "\xf3\xb0\x8d\x92",
		"MapMarkerRadiusOutline":                 "\xf3\xb1\x8b\xbc",
		"MapMarkerRemove":                        "\xf3\xb0\xbc\x89",
		"MapMarkerRemoveOutline":                 "\xf3\xb1\x8b\xba",
		"MapMarkerRemoveVariant":                 "\xf3\xb0\xbc\x8a",
		"MapMarkerRight":                         "\xf3\xb1\x8b\x9c",
		"MapMarkerRightOutline":                  "\xf3\xb1\x8b\x9e",
		"MapMarkerStar":                          "\xf3\xb1\x98\x88",
		"MapMarkerStarOutline":                   "\xf3\xb1\x98\x89",
		"MapMarkerUp":                            "\xf3\xb1\x84\x83",
		"MapMinus":                               "\xf3\xb0\xa6\x81",
		"MapOutline":                             "\xf3\xb0\xa6\x82",
		"MapPlus":                                "\xf3\xb0\xa6\x83",
		"MapSearch":                              "\xf3\xb0\xa6\x84",
		"MapSearchOutline":                       "\xf3\xb0\xa6\x85",
		"Mapbox":                                 "\xf3\xb0\xae\xaa",
		"Margin":                                 "\xf3\xb0\x8d\x93",
		"Marker":                                 "\xf3\xb0\x99\x92",
		"MarkerCancel":                           "\xf3\xb0\xb7\x99",
		"MarkerCheck":                            "\xf3\xb0\x8d\x95",
		"Mastodon":                               "\xf3\xb0\xab\x91",
		"MaterialDesign":                         "\xf3\xb0\xa6\x86",
		"MaterialUi":                             "\xf3\xb0\x8d\x97",
		"MathCompass":                            "\xf3\xb0\x8d\x98",
		"MathCos":                                "\xf3\xb0\xb2\x96",
		"MathIntegral":                           "\xf3\xb0\xbf\x88",
		"MathIntegralBox":                        "\xf3\xb0\xbf\x89",
		"MathLog":                                "\xf3\xb1\x82\x85",
		"MathNorm":                               "\xf3\xb0\xbf\x8a",
		"MathNormBox":                            "\xf3\xb0\xbf\x8b",
		"MathSin":                                "\xf3\xb0\xb2\x97",
		"MathTan":                                "\xf3\xb0\xb2\x98",
		"Matrix":                                 "\xf3\xb0\x98\xa8",
		"Medal":                                  "\xf3\xb0\xa6\x87",
		"MedalOutline":                           "\xf3\xb1\x8c\xa6",
		"MedicalBag":                             "\xf3\xb0\x9b\xaf",
		"MedicalCottonSwab":                      "\xf3\xb1\xaa\xb8",
		"Medication":                             "\xf3\xb1\xac\x94",
		"MedicationOutline":                      "\xf3\xb1\xac\x95",
		"Meditation":                             "\xf3\xb1\x85\xbb",
		"Memory":                                 "\xf3\xb0\x8d\x9b",
		"MemoryArrowDown":                        "\xf3\xb1\xb2\xa6",
		"Menorah":                                "\xf3\xb1\x9f\x94",
		"MenorahFire":                            "\xf3\xb1\x9f\x95",
		"Menu":                                   "\xf3\xb0\x8d\x9c",
		"MenuClose":                              "\xf3\xb1\xb2\x90",
		"MenuDown":                               "\xf3\xb0\x8d\x9d",
		"MenuDownOutline":                        "\xf3\xb0\x9a\xb6",
		"MenuLeft":                               "\xf3\xb0\x8d\x9e",
		"MenuLeftOutline":                        "\xf3\xb0\xa8\x82",
		"MenuOpen":                               "\xf3\xb0\xae\xab",
		"MenuRight":                              "\xf3\xb0\x8d\x9f",
		"MenuRightOutline":                       "\xf3\xb0\xa8\x83",
		"MenuSwap":                               "\xf3\xb0\xa9\xa4",
		"MenuSwapOutline":                        "\xf3\xb0\xa9\xa5",
		"MenuUp":                                 "\xf3\xb0\x8d\xa0",
		"MenuUpOutline":                          "\xf3\xb0\x9a\xb7",
		"Merge":                                  "\xf3\xb0\xbd\x9c",
		"Message":                                "\xf3\xb0\x8d\xa1",
		"MessageAlert":                           "\xf3\xb0\x8d\xa2",
		"MessageAlertOutline":                    "\xf3\xb0\xa8\x84",
		"MessageArrowLeft":                       "\xf3\xb1\x8b\xb2",
		"MessageArrowLeftOutline":                "\xf3\xb1\x8b\xb3",
		"MessageArrowRight":                      "\xf3\xb1\x8b\xb4",
		"MessageArrowRightOutline":               "\xf3\xb1\x8b\xb5",
		"MessageBadge":                           "\xf3\xb1\xa5\x81",
		"MessageBadgeOutline":                    "\xf3\xb1\xa5\x82",
		"MessageBookmark":                        "\xf3\xb1\x96\xac",
		"MessageBookmarkOutline":                 "\xf3\xb1\x96\xad",
		"MessageBulleted":                        "\xf3\xb0\x9a\xa2",
		"MessageBulletedOff":                     "\xf3\xb0\x9a\xa3",
		"MessageCheck":                           "\xf3\xb1\xae\x8a",
		"MessageCheckOutline":                    "\xf3\xb1\xae\x8b",
		"MessageCog":                             "\xf3\xb0\x9b\xb1",
		"MessageCogOutline":                      "\xf3\xb1\x85\xb2",
		"MessageDraw":                            "\xf3\xb0\x8d\xa3",
		"MessageFast":                            "\xf3\xb1\xa7\x8c",
		"MessageFastOutline":                     "\xf3\xb1\xa7\x8d",
		"MessageFlash":                           "\xf3\xb1\x96\xa9",
		"MessageFlashOutline":                    "\xf3\xb1\x96\xaa",
		"MessageImage":                           "\xf3\xb0\x8d\xa4",
		"MessageImageOutline":                    "\xf3\xb1\x85\xac",
		"MessageLock":                            "\xf3\xb0\xbf\x8c",
		"MessageLockOutline":                     "\xf3\xb1\x85\xad",
		"MessageMinus":                           "\xf3\xb1\x85\xae",
		"MessageMinusOutline":                    "\xf3\xb1\x85\xaf",
		"MessageOff":                             "\xf3\xb1\x99\x8d",
		"MessageOffOutline":                      "\xf3\xb1\x99\x8e",
		"MessageOutline":                         "\xf3\xb0\x8d\xa5",
		"MessagePlus":                            "\xf3\xb0\x99\x93",
		"MessagePlusOutline":                     "\xf3\xb1\x82\xbb",
		"MessageProcessing":                      "\xf3\xb0\x8d\xa6",
		"MessageProcessingOutline":               "\xf3\xb1\x85\xb0",
		"MessageQuestion":                        "\xf3\xb1\x9c\xba",
		"MessageQuestionOutline":                 "\xf3\xb1\x9c\xbb",
		"MessageReply":                           "\xf3\xb0\x8d\xa7",
		"MessageReplyOutline":                    "\xf3\xb1\x9c\xbd",
		"MessageReplyText":                       "\xf3\xb0\x8d\xa8",
		"MessageReplyTextOutline":                "\xf3\xb1\x9c\xbe",
		"MessageSettings":                        "\xf3\xb0\x9b\xb0",
		"MessageSettingsOutline":                 "\xf3\xb1\x85\xb1",
		"MessageStar":                            "\xf3\xb0\x9a\x9a",
		"MessageStarOutline":                     "\xf3\xb1\x89\x90",
		"MessageText":                            "\xf3\xb0\x8d\xa9",
		"MessageTextClock":                       "\xf3\xb1\x85\xb3",
		"MessageTextClockOutline":                "\xf3\xb1\x85\xb4",
		"MessageTextFast":                        "\xf3\xb1\xa7\x8e",
		"MessageTextFastOutline":                 "\xf3\xb1\xa7\x8f",
		"MessageTextLock":                        "\xf3\xb0\xbf\x8d",
		"MessageTextLockOutline":                 "\xf3\xb1\x85\xb5",
		"MessageTextOutline":                     "\xf3\xb0\x8d\xaa",
		"MessageVideo":                           "\xf3\xb0\x8d\xab",
		"Meteor":                                 "\xf3\xb0\x98\xa9",
		"MeterElectric":                          "\xf3\xb1\xa9\x97",
		"MeterElectricOutline":                   "\xf3\xb1\xa9\x98",
		"MeterGas":                               "\xf3\xb1\xa9\x99",
		"MeterGasOutline":                        "\xf3\xb1\xa9\x9a",
		"Metronome":                              "\xf3\xb0\x9f\x9a",
		"MetronomeTick":                          "\xf3\xb0\x9f\x9b",
		"MicroSd":                                "\xf3\xb0\x9f\x9c",
		"Microphone":                             "\xf3\xb0\x8d\xac",
		"MicrophoneMessage":                      "\xf3\xb0\x94\x8a",
		"MicrophoneMessageOff":                   "\xf3\xb0\x94\x8b",
		"MicrophoneMinus":                        "\xf3\xb0\xa2\xb3",
		"MicrophoneOff":                          "\xf3\xb0\x8d\xad",
		"MicrophoneOutline":                      "\xf3\xb0\x8d\xae",
		"MicrophonePlus":                         "\xf3\xb0\xa2\xb4",
		"MicrophoneQuestion":                     "\xf3\xb1\xa6\x89",
		"MicrophoneQuestionOutline":              "\xf3\xb1\xa6\x8a",
		"MicrophoneSettings":                     "\xf3\xb0\x8d\xaf",
		"MicrophoneVariant":                      "\xf3\xb0\x8d\xb0",
		"MicrophoneVariantOff":                   "\xf3\xb0\x8d\xb1",
		"Microscope":                             "\xf3\xb0\x99\x94",
		"Microsoft":                              "\xf3\xb0\x8d\xb2",
		"MicrosoftAccess":                        "\xf3\xb1\x8e\x8e",
		"MicrosoftAzure":                         "\xf3\xb0\xa0\x85",
		"MicrosoftAzureDevops":                   "\xf3\xb0\xbf\x95",
		"MicrosoftBing":                          "\xf3\xb0\x82\xa4",
		"MicrosoftDynamics365":                   "\xf3\xb0\xa6\x88",
		"MicrosoftEdge":                          "\xf3\xb0\x87\xa9",
		"MicrosoftExcel":                         "\xf3\xb1\x8e\x8f",
		"MicrosoftInternetExplorer":              "\xf3\xb0\x8c\x80",
		"MicrosoftOffice":                        "\xf3\xb0\x8f\x86",
		"MicrosoftOnedrive":                      "\xf3\xb0\x8f\x8a",
		"MicrosoftOnenote":                       "\xf3\xb0\x9d\x87",
		"MicrosoftOutlook":                       "\xf3\xb0\xb4\xa2",
		"MicrosoftPowerpoint":                    "\xf3\xb1\x8e\x90",
		"MicrosoftSharepoint":                    "\xf3\xb1\x8e\x91",
		"MicrosoftTeams":                         "\xf3\xb0\x8a\xbb",
		"MicrosoftVisualStudio":                  "\xf3\xb0\x98\x90",
		"MicrosoftVisualStudioCode":              "\xf3\xb0\xa8\x9e",
		"MicrosoftWindows":                       "\xf3\xb0\x96\xb3",
		"MicrosoftWindowsClassic":                "\xf3\xb0\xa8\xa1",
		"MicrosoftWord":                          "\xf3\xb1\x8e\x92",
		"MicrosoftXbox":                          "\xf3\xb0\x96\xb9",
		"MicrosoftXboxController":                "\xf3\xb0\x96\xba",
		"MicrosoftXboxControllerBatteryAlert":    "\xf3\xb0\x9d\x8b",
		"MicrosoftXboxControllerBatteryCharging": "\xf3\xb0\xa8\xa2",
		"MicrosoftXboxControllerBatteryEmpty":    "\xf3\xb0\x9d\x8c",
		"MicrosoftXboxControllerBatteryFull":     "\xf3\xb0\x9d\x8d",
		"MicrosoftXboxControllerBatteryLow":      "\xf3\xb0\x9d\x8e",
		"MicrosoftXboxControllerBatteryMedium":   "\xf3\xb0\x9d\x8f",
		"MicrosoftXboxControllerBatteryUnknown":  "\xf3\xb0\x9d\x90",
		"MicrosoftXboxControllerMenu":            "\xf3\xb0\xb9\xaf",
		"MicrosoftXboxControllerOff":             "\xf3\xb0\x96\xbb",
		"MicrosoftXboxControllerView":            "\xf3\xb0\xb9\xb0",
		"Microwave":                              "\xf3\xb0\xb2\x99",
		"MicrowaveOff":                           "\xf3\xb1\x90\xa3",
		"Middleware":                             "\xf3\xb0\xbd\x9d",
		"MiddlewareOutline":                      "\xf3\xb0\xbd\x9e",
		"Midi":                                   "\xf3\xb0\xa3\xb1",
		"MidiPort":                               "\xf3\xb0\xa3\xb2",
		"Mine":                                   "\xf3\xb0\xb7\x9a",
		"Minecraft":                              "\xf3\xb0\x8d\xb3",
		"MiniSd":                                 "\xf3\xb0\xa8\x85",
		"Minidisc":                               "\xf3\xb0\xa8\x86",
		"Minus":                                  "\xf3\xb0\x8d\xb4",
		"MinusBox":                               "\xf3\xb0\x8d\xb5",
		"MinusBoxMultiple":                       "\xf3\xb1\x85\x81",
		"MinusBoxMultipleOutline":                "\xf3\xb1\x85\x82",
		"MinusBoxOutline":                        "\xf3\xb0\x9b\xb2",
		"MinusCircle":                            "\xf3\xb0\x8d\xb6",
		"MinusCircleMultiple":                    "\xf3\xb0\x8d\x9a",
		"MinusCircleMultipleOutline":             "\xf3\xb0\xab\x93",
		"MinusCircleOff":                         "\xf3\xb1\x91\x99",
		"MinusCircleOffOutline":                  "\xf3\xb1\x91\x9a",
		"MinusCircleOutline":                     "\xf3\xb0\x8d\xb7",
		"MinusNetwork":                           "\xf3\xb0\x8d\xb8",
		"MinusNetworkOutline":                    "\xf3\xb0\xb2\x9a",
		"MinusThick":                             "\xf3\xb1\x98\xb9",
		"Mirror":                                 "\xf3\xb1\x87\xbd",
		"MirrorRectangle":                        "\xf3\xb1\x9e\x9f",
		"MirrorVariant":                          "\xf3\xb1\x9e\xa0",
		"MixedMartialArts":                       "\xf3\xb0\xb6\x8f",
		"MixedReality":                           "\xf3\xb0\xa1\xbf",
		"Molecule":                               "\xf3\xb0\xae\xac",
		"MoleculeCo":                             "\xf3\xb1\x8b\xbe",
		"MoleculeCo2":                            "\xf3\xb0\x9f\xa4",
		"Monitor":                                "\xf3\xb0\x8d\xb9",
		"MonitorAccount":                         "\xf3\xb1\xa9\x9b",
		"MonitorArrowDown":                       "\xf3\xb1\xa7\x90",
		"MonitorArrowDownVariant":                "\xf3\xb1\xa7\x91",
		"MonitorCellphone":                       "\xf3\xb0\xa6\x89",
		"MonitorCellphoneStar":                   "\xf3\xb0\xa6\x8a",
		"MonitorDashboard":                       "\xf3\xb0\xa8\x87",
		"MonitorEdit":                            "\xf3\xb1\x8b\x86",
		"MonitorEye":                             "\xf3\xb1\x8e\xb4",
		"MonitorLock":                            "\xf3\xb0\xb7\x9b",
		"MonitorMultiple":                        "\xf3\xb0\x8d\xba",
		"MonitorOff":                             "\xf3\xb0\xb6\x90",
		"MonitorScreenshot":                      "\xf3\xb0\xb9\x91",
		"MonitorShare":                           "\xf3\xb1\x92\x83",
		"MonitorShimmer":                         "\xf3\xb1\x84\x84",
		"MonitorSmall":                           "\xf3\xb1\xa1\xb6",
		"MonitorSpeaker":                         "\xf3\xb0\xbd\x9f",
		"MonitorSpeakerOff":                      "\xf3\xb0\xbd\xa0",
		"MonitorStar":                            "\xf3\xb0\xb7\x9c",
		"MonitorVertical":                        "\xf3\xb1\xb0\xb3",
		"MoonFirstQuarter":                       "\xf3\xb0\xbd\xa1",
		"MoonFull":                               "\xf3\xb0\xbd\xa2",
		"MoonLastQuarter":                        "\xf3\xb0\xbd\xa3",
		"MoonNew":                                "\xf3\xb0\xbd\xa4",
		"MoonWaningCrescent":                     "\xf3\xb0\xbd\xa5",
		"MoonWaningGibbous":                      "\xf3\xb0\xbd\xa6",
		"MoonWaxingCrescent":                     "\xf3\xb0\xbd\xa7",
		"MoonWaxingGibbous":                      "\xf3\xb0\xbd\xa8",
		"Moped":                                  "\xf3\xb1\x82\x86",
		"MopedElectric":                          "\xf3\xb1\x96\xb7",
		"MopedElectricOutline":                   "\xf3\xb1\x96\xb8",
		"MopedOutline":                           "\xf3\xb1\x96\xb9",
		"More":                                   "\xf3\xb0\x8d\xbb",
		"MortarPestle":                           "\xf3\xb1\x9d\x88",
		"MortarPestlePlus":                       "\xf3\xb0\x8f\xb1",
		"Mosque":                                 "\xf3\xb0\xb5\x85",
		"MosqueOutline":                          "\xf3\xb1\xa0\xa7",
		"MotherHeart":                            "\xf3\xb1\x8c\x94",
		"MotherNurse":                            "\xf3\xb0\xb4\xa1",
		"Motion":                                 "\xf3\xb1\x96\xb2",
		"MotionOutline":                          "\xf3\xb1\x96\xb3",
		"MotionPause":                            "\xf3\xb1\x96\x90",
		"MotionPauseOutline":                     "\xf3\xb1\x96\x92",
		"MotionPlay":                             "\xf3\xb1\x96\x8f",
		"MotionPlayOutline":                      "\xf3\xb1\x96\x91",
		"MotionSensor":                           "\xf3\xb0\xb6\x91",
		"MotionSensorOff":                        "\xf3\xb1\x90\xb5",
		"Motorbike":                              "\xf3\xb0\x8d\xbc",
		"MotorbikeElectric":                      "\xf3\xb1\x96\xba",
		"MotorbikeOff":                           "\xf3\xb1\xac\x96",
		"Mouse":                                  "\xf3\xb0\x8d\xbd",
		"MouseBluetooth":                         "\xf3\xb0\xa6\x8b",
		"MouseLeftClick":                         "\xf3\xb1\xb4\x87",
		"MouseLeftClickOutline":                  "\xf3\xb1\xb4\x88",
		"MouseMoveDown":                          "\xf3\xb1\x95\x90",
		"MouseMoveUp":                            "\xf3\xb1\x95\x91",
		"MouseMoveVertical":                      "\xf3\xb1\x95\x92",
		"MouseOff":                               "\xf3\xb0\x8d\xbe",
		"MouseOutline":                           "\xf3\xb1\xb4\x89",
		"MouseRightClick":                        "\xf3\xb1\xb4\x8a",
		"MouseRightClickOutline":                 "\xf3\xb1\xb4\x8b",
		"MouseScrollWheel":                       "\xf3\xb1\xb4\x8c",
		"MouseVariant":                           "\xf3\xb0\x8d\xbf",
		"MouseVariantOff":                        "\xf3\xb0\x8e\x80",
		"MoveResize":                             "\xf3\xb0\x99\x95",
		"MoveResizeVariant":                      "\xf3\xb0\x99\x96",
		"Movie":                                  "\xf3\xb0\x8e\x81",
		"MovieCheck":                             "\xf3\xb1\x9b\xb3",
		"MovieCheckOutline":                      "\xf3\xb1\x9b\xb4",
		"MovieCog":                               "\xf3\xb1\x9b\xb5",
		"MovieCogOutline":                        "\xf3\xb1\x9b\xb6",
		"MovieEdit":                              "\xf3\xb1\x84\xa2",
		"MovieEditOutline":                       "\xf3\xb1\x84\xa3",
		"MovieFilter":                            "\xf3\xb1\x84\xa4",
		"MovieFilterOutline":                     "\xf3\xb1\x84\xa5",
		"MovieMinus":                             "\xf3\xb1\x9b\xb7",
		"MovieMinusOutline":                      "\xf3\xb1\x9b\xb8",
		"MovieOff":                               "\xf3\xb1\x9b\xb9",
		"MovieOffOutline":                        "\xf3\xb1\x9b\xba",
		"MovieOpen":                              "\xf3\xb0\xbf\x8e",
		"MovieOpenCheck":                         "\xf3\xb1\x9b\xbb",
		"MovieOpenCheckOutline":                  "\xf3\xb1\x9b\xbc",
		"MovieOpenCog":                           "\xf3\xb1\x9b\xbd",
		"MovieOpenCogOutline":                    "\xf3\xb1\x9b\xbe",
		"MovieOpenEdit":                          "\xf3\xb1\x9b\xbf",
		"MovieOpenEditOutline":                   "\xf3\xb1\x9c\x80",
		"MovieOpenMinus":                         "\xf3\xb1\x9c\x81",
		"MovieOpenMinusOutline":                  "\xf3\xb1\x9c\x82",
		"MovieOpenOff":                           "\xf3\xb1\x9c\x83",
		"MovieOpenOffOutline":                    "\xf3\xb1\x9c\x84",
		"MovieOpenOutline":                       "\xf3\xb0\xbf\x8f",
		"MovieOpenPlay":                          "\xf3\xb1\x9c\x85",
		"MovieOpenPlayOutline":                   "\xf3\xb1\x9c\x86",
		"MovieOpenPlus":                          "\xf3\xb1\x9c\x87",
		"MovieOpenPlusOutline":                   "\xf3\xb1\x9c\x88",
		"MovieOpenRemove":                        "\xf3\xb1\x9c\x89",
		"MovieOpenRemoveOutline":                 "\xf3\xb1\x9c\x8a",
		"MovieOpenSettings":                      "\xf3\xb1\x9c\x8b",
		"MovieOpenSettingsOutline":               "\xf3\xb1\x9c\x8c",
		"MovieOpenStar":                          "\xf3\xb1\x9c\x8d",
		"MovieOpenStarOutline":                   "\xf3\xb1\x9c\x8e",
		"MovieOutline":                           "\xf3\xb0\xb7\x9d",
		"MoviePlay":                              "\xf3\xb1\x9c\x8f",
		"MoviePlayOutline":                       "\xf3\xb1\x9c\x90",
		"MoviePlus":                              "\xf3\xb1\x9c\x91",
		"MoviePlusOutline":                       "\xf3\xb1\x9c\x92",
		"MovieRemove":                            "\xf3\xb1\x9c\x93",
		"MovieRemoveOutline":                     "\xf3\xb1\x9c\x94",
		"MovieRoll":                              "\xf3\xb0\x9f\x9e",
		"MovieSearch":                            "\xf3\xb1\x87\x92",
		"MovieSearchOutline":                     "\xf3\xb1\x87\x93",
		"MovieSettings":                          "\xf3\xb1\x9c\x95",
		"MovieSettingsOutline":                   "\xf3\xb1\x9c\x96",
		"MovieStar":                              "\xf3\xb1\x9c\x97",
		"MovieStarOutline":                       "\xf3\xb1\x9c\x98",
		"Mower":                                  "\xf3\xb1\x99\xaf",
		"MowerBag":                               "\xf3\xb1\x99\xb0",
		"MowerBagOn":                             "\xf3\xb1\xad\xa0",
		"MowerOn":                                "\xf3\xb1\xad\x9f",
		"Muffin":                                 "\xf3\xb0\xa6\x8c",
		"Multicast":                              "\xf3\xb1\xa2\x93",
		"Multimedia":                             "\xf3\xb1\xae\x97",
		"Multiplication":                         "\xf3\xb0\x8e\x82",
		"MultiplicationBox":                      "\xf3\xb0\x8e\x83",
		"Mushroom":                               "\xf3\xb0\x9f\x9f",
		"MushroomOff":                            "\xf3\xb1\x8f\xba",
		"MushroomOffOutline":                     "\xf3\xb1\x8f\xbb",
		"MushroomOutline":                        "\xf3\xb0\x9f\xa0",
		"Music":                                  "\xf3\xb0\x9d\x9a",
		"MusicAccidentalDoubleFlat":              "\xf3\xb0\xbd\xa9",
		"MusicAccidentalDoubleSharp":             "\xf3\xb0\xbd\xaa",
		"MusicAccidentalFlat":                    "\xf3\xb0\xbd\xab",
		"MusicAccidentalNatural":                 "\xf3\xb0\xbd\xac",
		"MusicAccidentalSharp":                   "\xf3\xb0\xbd\xad",
		"MusicBox":                               "\xf3\xb0\x8e\x84",
		"MusicBoxMultiple":                       "\xf3\xb0\x8c\xb3",
		"MusicBoxMultipleOutline":                "\xf3\xb0\xbc\x84",
		"MusicBoxOutline":                        "\xf3\xb0\x8e\x85",
		"MusicCircle":                            "\xf3\xb0\x8e\x86",
		"MusicCircleOutline":                     "\xf3\xb0\xab\x94",
		"MusicClefAlto":                          "\xf3\xb0\xbd\xae",
		"MusicClefBass":                          "\xf3\xb0\xbd\xaf",
		"MusicClefTreble":                        "\xf3\xb0\xbd\xb0",
		"MusicNote":                              "\xf3\xb0\x8e\x87",
		"MusicNoteBluetooth":                     "\xf3\xb0\x97\xbe",
		"MusicNoteBluetoothOff":                  "\xf3\xb0\x97\xbf",
		"MusicNoteEighth":                        "\xf3\xb0\x8e\x88",
		"MusicNoteEighthDotted":                  "\xf3\xb0\xbd\xb1",
		"MusicNoteHalf":                          "\xf3\xb0\x8e\x89",
		"MusicNoteHalfDotted":                    "\xf3\xb0\xbd\xb2",
		"MusicNoteMinus":                         "\xf3\xb1\xae\x89",
		"MusicNoteOff":                           "\xf3\xb0\x8e\x8a",
		"MusicNoteOffOutline":                    "\xf3\xb0\xbd\xb3",
		"MusicNoteOutline":                       "\xf3\xb0\xbd\xb4",
		"MusicNotePlus":                          "\xf3\xb0\xb7\x9e",
		"MusicNoteQuarter":                       "\xf3\xb0\x8e\x8b",
		"MusicNoteQuarterDotted":                 "\xf3\xb0\xbd\xb5",
		"MusicNoteSixteenth":                     "\xf3\xb0\x8e\x8c",
		"MusicNoteSixteenthDotted":               "\xf3\xb0\xbd\xb6",
		"MusicNoteWhole":                         "\xf3\xb0\x8e\x8d",
		"MusicNoteWholeDotted":                   "\xf3\xb0\xbd\xb7",
		"MusicOff":                               "\xf3\xb0\x9d\x9b",
		"MusicRestEighth":                        "\xf3\xb0\xbd\xb8",
		"MusicRestHalf":                          "\xf3\xb0\xbd\xb9",
		"MusicRestQuarter":                       "\xf3\xb0\xbd\xba",
		"MusicRestSixteenth":                     "\xf3\xb0\xbd\xbb",
		"MusicRestWhole":                         "\xf3\xb0\xbd\xbc",
		"Mustache":                               "\xf3\xb1\x97\x9e",
		"Nail":                                   "\xf3\xb0\xb7\x9f",
		"Nas":                                    "\xf3\xb0\xa3\xb3",
		"Nativescript":                           "\xf3\xb0\xa2\x80",
		"Nature":                                 "\xf3\xb0\x8e\x8e",
		"NatureOutline":                          "\xf3\xb1\xb1\xb1",
		"NaturePeople":                           "\xf3\xb0\x8e\x8f",
		"NaturePeopleOutline":                    "\xf3\xb1\xb1\xb2",
		"Navigation":                             "\xf3\xb0\x8e\x90",
		"NavigationOutline":                      "\xf3\xb1\x98\x87",
		"NavigationVariant":                      "\xf3\xb1\xa3\xb0",
		"NavigationVariantOutline":               "\xf3\xb1\xa3\xb1",
		"NearMe":                                 "\xf3\xb0\x97\x8d",
		"Necklace":                               "\xf3\xb0\xbc\x8b",
		"Needle":                                 "\xf3\xb0\x8e\x91",
		"NeedleOff":                              "\xf3\xb1\xa7\x92",
		"Netflix":                                "\xf3\xb0\x9d\x86",
		"Network":                                "\xf3\xb0\x9b\xb3",
		"NetworkOff":                             "\xf3\xb0\xb2\x9b",
		"NetworkOffOutline":                      "\xf3\xb0\xb2\x9c",
		"NetworkOutline":                         "\xf3\xb0\xb2\x9d",
		"NetworkPos":                             "\xf3\xb1\xab\x8b",
		"NetworkStrength1":                       "\xf3\xb0\xa3\xb4",
		"NetworkStrength1Alert":                  "\xf3\xb0\xa3\xb5",
		"NetworkStrength2":                       "\xf3\xb0\xa3\xb6",
		"NetworkStrength2Alert":                  "\xf3\xb0\xa3\xb7",
		"NetworkStrength3":                       "\xf3\xb0\xa3\xb8",
		"NetworkStrength3Alert":                  "\xf3\xb0\xa3\xb9",
		"NetworkStrength4":                       "\xf3\xb0\xa3\xba",
		"NetworkStrength4Alert":                  "\xf3\xb0\xa3\xbb",
		"NetworkStrength4Cog":                    "\xf3\xb1\xa4\x9a",
		"NetworkStrengthOff":                     "\xf3\xb0\xa3\xbc",
		"NetworkStrengthOffOutline":              "\xf3\xb0\xa3\xbd",
		"NetworkStrengthOutline":                 "\xf3\xb0\xa3\xbe",
		"NewBox":                                 "\xf3\xb0\x8e\x94",
		"Newspaper":                              "\xf3\xb0\x8e\x95",
		"NewspaperCheck":                         "\xf3\xb1\xa5\x83",
		"NewspaperMinus":                         "\xf3\xb0\xbc\x8c",
		"NewspaperPlus":                          "\xf3\xb0\xbc\x8d",
		"NewspaperRemove":                        "\xf3\xb1\xa5\x84",
		"NewspaperVariant":                       "\xf3\xb1\x80\x81",
		"NewspaperVariantMultiple":               "\xf3\xb1\x80\x82",
		"NewspaperVariantMultipleOutline":        "\xf3\xb1\x80\x83",
		"NewspaperVariantOutline":                "\xf3\xb1\x80\x84",
		"Nfc":                                    "\xf3\xb0\x8e\x96",
		"NfcSearchVariant":                       "\xf3\xb0\xb9\x93",
		"NfcTap":                                 "\xf3\xb0\x8e\x97",
		"NfcVariant":                             "\xf3\xb0\x8e\x98",
		"NfcVariantOff":                          "\xf3\xb0\xb9\x94",
		"Ninja":                                  "\xf3\xb0\x9d\xb4",
		"NintendoGameBoy":                        "\xf3\xb1\x8e\x93",
		"NintendoSwitch":                         "\xf3\xb0\x9f\xa1",
		"NintendoWii":                            "\xf3\xb0\x96\xab",
		"NintendoWiiu":                           "\xf3\xb0\x9c\xad",
		"Nix":                                    "\xf3\xb1\x84\x85",
		"Nodejs":                                 "\xf3\xb0\x8e\x99",
		"Noodles":                                "\xf3\xb1\x85\xbe",
		"NotEqual":                               "\xf3\xb0\xa6\x8d",
		"NotEqualVariant":                        "\xf3\xb0\xa6\x8e",
		"Note":                                   "\xf3\xb0\x8e\x9a",
		"NoteAlert":                              "\xf3\xb1\x9d\xbd",
		"NoteAlertOutline":                       "\xf3\xb1\x9d\xbe",
		"NoteCheck":                              "\xf3\xb1\x9d\xbf",
		"NoteCheckOutline":                       "\xf3\xb1\x9e\x80",
		"NoteEdit":                               "\xf3\xb1\x9e\x81",
		"NoteEditOutline":                        "\xf3\xb1\x9e\x82",
		"NoteMinus":                              "\xf3\xb1\x99\x8f",
		"NoteMinusOutline":                       "\xf3\xb1\x99\x90",
		"NoteMultiple":                           "\xf3\xb0\x9a\xb8",
		"NoteMultipleOutline":                    "\xf3\xb0\x9a\xb9",
		"NoteOff":                                "\xf3\xb1\x9e\x83",
		"NoteOffOutline":                         "\xf3\xb1\x9e\x84",
		"NoteOutline":                            "\xf3\xb0\x8e\x9b",
		"NotePlus":                               "\xf3\xb0\x8e\x9c",
		"NotePlusOutline":                        "\xf3\xb0\x8e\x9d",
		"NoteRemove":                             "\xf3\xb1\x99\x91",
		"NoteRemoveOutline":                      "\xf3\xb1\x99\x92",
		"NoteSearch":                             "\xf3\xb1\x99\x93",
		"NoteSearchOutline":                      "\xf3\xb1\x99\x94",
		"NoteText":                               "\xf3\xb0\x8e\x9e",
		"NoteTextOutline":                        "\xf3\xb1\x87\x97",
		"Notebook":                               "\xf3\xb0\xa0\xae",
		"NotebookCheck":                          "\xf3\xb1\x93\xb5",
		"NotebookCheckOutline":                   "\xf3\xb1\x93\xb6",
		"NotebookEdit":                           "\xf3\xb1\x93\xa7",
		"NotebookEditOutline":                    "\xf3\xb1\x93\xa9",
		"NotebookHeart":                          "\xf3\xb1\xa8\x8b",
		"NotebookHeartOutline":                   "\xf3\xb1\xa8\x8c",
		"NotebookMinus":                          "\xf3\xb1\x98\x90",
		"NotebookMinusOutline":                   "\xf3\xb1\x98\x91",
		"NotebookMultiple":                       "\xf3\xb0\xb9\x95",
		"NotebookOutline":                        "\xf3\xb0\xba\xbf",
		"NotebookPlus":                           "\xf3\xb1\x98\x92",
		"NotebookPlusOutline":                    "\xf3\xb1\x98\x93",
		"NotebookRemove":                         "\xf3\xb1\x98\x94",
		"NotebookRemoveOutline":                  "\xf3\xb1\x98\x95",
		"NotificationClearAll":                   "\xf3\xb0\x8e\x9f",
		"Npm":                                    "\xf3\xb0\x9b\xb7",
		"Nuke":                                   "\xf3\xb0\x9a\xa4",
		"Null":                                   "\xf3\xb0\x9f\xa2",
		"Numeric":                                "\xf3\xb0\x8e\xa0",
		"Numeric0":                               "\xf3\xb0\xac\xb9",
		"Numeric0Box":                            "\xf3\xb0\x8e\xa1",
		"Numeric0BoxMultiple":                    "\xf3\xb0\xbc\x8e",
		"Numeric0BoxMultipleOutline":             "\xf3\xb0\x8e\xa2",
		"Numeric0BoxOutline":                     "\xf3\xb0\x8e\xa3",
		"Numeric0Circle":                         "\xf3\xb0\xb2\x9e",
		"Numeric0CircleOutline":                  "\xf3\xb0\xb2\x9f",
		"Numeric1":                               "\xf3\xb0\xac\xba",
		"Numeric1Box":                            "\xf3\xb0\x8e\xa4",
		"Numeric1BoxMultiple":                    "\xf3\xb0\xbc\x8f",
		"Numeric1BoxMultipleOutline":             "\xf3\xb0\x8e\xa5",
		"Numeric1BoxOutline":                     "\xf3\xb0\x8e\xa6",
		"Numeric1Circle":                         "\xf3\xb0\xb2\xa0",
		"Numeric1CircleOutline":                  "\xf3\xb0\xb2\xa1",
		"Numeric10":                              "\xf3\xb0\xbf\xa9",
		"Numeric10Box":                           "\xf3\xb0\xbd\xbd",
		"Numeric10BoxMultiple":                   "\xf3\xb0\xbf\xaa",
		"Numeric10BoxMultipleOutline":            "\xf3\xb0\xbf\xab",
		"Numeric10BoxOutline":                    "\xf3\xb0\xbd\xbe",
		"Numeric10Circle":                        "\xf3\xb0\xbf\xac",
		"Numeric10CircleOutline":                 "\xf3\xb0\xbf\xad",
		"Numeric2":                               "\xf3\xb0\xac\xbb",
		"Numeric2Box":                            "\xf3\xb0\x8e\xa7",
		"Numeric2BoxMultiple":                    "\xf3\xb0\xbc\x90",
		"Numeric2BoxMultipleOutline":             "\xf3\xb0\x8e\xa8",
		"Numeric2BoxOutline":                     "\xf3\xb0\x8e\xa9",
		"Numeric2Circle":                         "\xf3\xb0\xb2\xa2",
		"Numeric2CircleOutline":                  "\xf3\xb0\xb2\xa3",
		"Numeric3":                               "\xf3\xb0\xac\xbc",
		"Numeric3Box":                            "\xf3\xb0\x8e\xaa",
		"Numeric3BoxMultiple":                    "\xf3\xb0\xbc\x91",
		"Numeric3BoxMultipleOutline":             "\xf3\xb0\x8e\xab",
		"Numeric3BoxOutline":                     "\xf3\xb0\x8e\xac",
		"Numeric3Circle":                         "\xf3\xb0\xb2\xa4",
		"Numeric3CircleOutline":                  "\xf3\xb0\xb2\xa5",
		"Numeric4":                               "\xf3\xb0\xac\xbd",
		"Numeric4Box":                            "\xf3\xb0\x8e\xad",
		"Numeric4BoxMultiple":                    "\xf3\xb0\xbc\x92",
		"Numeric4BoxMultipleOutline":             "\xf3\xb0\x8e\xb2",
		"Numeric4BoxOutline":                     "\xf3\xb0\x8e\xae",
		"Numeric4Circle":                         "\xf3\xb0\xb2\xa6",
		"Numeric4CircleOutline":                  "\xf3\xb0\xb2\xa7",
		"Numeric5":                               "\xf3\xb0\xac\xbe",
		"Numeric5Box":                            "\xf3\xb0\x8e\xb1",
		"Numeric5BoxMultiple":                    "\xf3\xb0\xbc\x93",
		"Numeric5BoxMultipleOutline":             "\xf3\xb0\x8e\xaf",
		"Numeric5BoxOutline":                     "\xf3\xb0\x8e\xb0",
		"Numeric5Circle":                         "\xf3\xb0\xb2\xa8",
		"Numeric5CircleOutline":                  "\xf3\xb0\xb2\xa9",
		"Numeric6":                               "\xf3\xb0\xac\xbf",
		"Numeric6Box":                            "\xf3\xb0\x8e\xb3",
		"Numeric6BoxMultiple":                    "\xf3\xb0\xbc\x94",
		"Numeric6BoxMultipleOutline":             "\xf3\xb0\x8e\xb4",
		"Numeric6BoxOutline":                     "\xf3\xb0\x8e\xb5",
		"Numeric6Circle":                         "\xf3\xb0\xb2\xaa",
		"Numeric6CircleOutline":                  "\xf3\xb0\xb2\xab",
		"Numeric7":                               "\xf3\xb0\xad\x80",
		"Numeric7Box":                            "\xf3\xb0\x8e\xb6",
		"Numeric7BoxMultiple":                    "\xf3\xb0\xbc\x95",
		"Numeric7BoxMultipleOutline":             "\xf3\xb0\x8e\xb7",
		"Numeric7BoxOutline":                     "\xf3\xb0\x8e\xb8",
		"Numeric7Circle":                         "\xf3\xb0\xb2\xac",
		"Numeric7CircleOutline":                  "\xf3\xb0\xb2\xad",
		"Numeric8":                               "\xf3\xb0\xad\x81",
		"Numeric8Box":                            "\xf3\xb0\x8e\xb9",
		"Numeric8BoxMultiple":                    "\xf3\xb0\xbc\x96",
		"Numeric8BoxMultipleOutline":             "\xf3\xb0\x8e\xba",
		"Numeric8BoxOutline":                     "\xf3\xb0\x8e\xbb",
		"Numeric8Circle":                         "\xf3\xb0\xb2\xae",
		"Numeric8CircleOutline":                  "\xf3\xb0\xb2\xaf",
		"Numeric9":                               "\xf3\xb0\xad\x82",
		"Numeric9Box":                            "\xf3\xb0\x8e\xbc",
		"Numeric9BoxMultiple":                    "\xf3\xb0\xbc\x97",
		"Numeric9BoxMultipleOutline":             "\xf3\xb0\x8e\xbd",
		"Numeric9BoxOutline":                     "\xf3\xb0\x8e\xbe",
		"Numeric9Circle":                         "\xf3\xb0\xb2\xb0",
		"Numeric9CircleOutline":                  "\xf3\xb0\xb2\xb1",
		"Numeric9Plus":                           "\xf3\xb0\xbf\xae",
		"Numeric9PlusBox":                        "\xf3\xb0\x8e\xbf",
		"Numeric9PlusBoxMultiple":                "\xf3\xb0\xbc\x98",
		"Numeric9PlusBoxMultipleOutline":         "\xf3\xb0\x8f\x80",
		"Numeric9PlusBoxOutline":                 "\xf3\xb0\x8f\x81",
		"Numeric9PlusCircle":                     "\xf3\xb0\xb2\xb2",
		"Numeric9PlusCircleOutline":              "\xf3\xb0\xb2\xb3",
		"NumericNegative1":                       "\xf3\xb1\x81\x92",
		"NumericOff":                             "\xf3\xb1\xa7\x93",
		"NumericPositive1":                       "\xf3\xb1\x97\x8b",
		"Nut":                                    "\xf3\xb0\x9b\xb8",
		"Nutrition":                              "\xf3\xb0\x8f\x82",
		"Nuxt":                                   "\xf3\xb1\x84\x86",
		"Oar":                                    "\xf3\xb0\x99\xbc",
		"Ocarina":                                "\xf3\xb0\xb7\xa0",
		"Oci":                                    "\xf3\xb1\x8b\xa9",
		"Ocr":                                    "\xf3\xb1\x84\xba",
		"Octagon":                                "\xf3\xb0\x8f\x83",
		"OctagonOutline":                         "\xf3\xb0\x8f\x84",
		"Octagram":                               "\xf3\xb0\x9b\xb9",
		"OctagramEdit":                           "\xf3\xb1\xb0\xb4",
		"OctagramEditOutline":                    "\xf3\xb1\xb0\xb5",
		"OctagramMinus":                          "\xf3\xb1\xb0\xb6",
		"OctagramMinusOutline":                   "\xf3\xb1\xb0\xb7",
		"OctagramOutline":                        "\xf3\xb0\x9d\xb5",
		"OctagramPlus":                           "\xf3\xb1\xb0\xb8",
		"OctagramPlusOutline":                    "\xf3\xb1\xb0\xb9",
		"Octahedron":                             "\xf3\xb1\xa5\x90",
		"OctahedronOff":                          "\xf3\xb1\xa5\x91",
		"Odnoklassniki":                          "\xf3\xb0\x8f\x85",
		"Offer":                                  "\xf3\xb1\x88\x9b",
		"OfficeBuilding":                         "\xf3\xb0\xa6\x91",
		"OfficeBuildingCog":                      "\xf3\xb1\xa5\x89",
		"OfficeBuildingCogOutline":               "\xf3\xb1\xa5\x8a",
		"OfficeBuildingMarker":                   "\xf3\xb1\x94\xa0",
		"OfficeBuildingMarkerOutline":            "\xf3\xb1\x94\xa1",
		"OfficeBuildingMinus":                    "\xf3\xb1\xae\xaa",
		"OfficeBuildingMinusOutline":             "\xf3\xb1\xae\xab",
		"OfficeBuildingOutline":                  "\xf3\xb1\x94\x9f",
		"OfficeBuildingPlus":                     "\xf3\xb1\xae\xa8",
		"OfficeBuildingPlusOutline":              "\xf3\xb1\xae\xa9",
		"OfficeBuildingRemove":                   "\xf3\xb1\xae\xac",
		"OfficeBuildingRemoveOutline":            "\xf3\xb1\xae\xad",
		"Oil":                                    "\xf3\xb0\x8f\x87",
		"OilLamp":                                "\xf3\xb0\xbc\x99",
		"OilLevel":                               "\xf3\xb1\x81\x93",
		"OilTemperature":                         "\xf3\xb0\xbf\xb8",
		"Om":                                     "\xf3\xb0\xa5\xb3",
		"Omega":                                  "\xf3\xb0\x8f\x89",
		"OneUp":                                  "\xf3\xb0\xae\xad",
		"Onepassword":                            "\xf3\xb0\xa2\x81",
		"Opacity":                                "\xf3\xb0\x97\x8c",
		"OpenInApp":                              "\xf3\xb0\x8f\x8b",
		"OpenInNew":                              "\xf3\xb0\x8f\x8c",
		"OpenSourceInitiative":                   "\xf3\xb0\xae\xae",
		"Openid":                                 "\xf3\xb0\x8f\x8d",
		"Opera":                                  "\xf3\xb0\x8f\x8e",
		"Orbit":                                  "\xf3\xb0\x80\x98",
		"OrbitVariant":                           "\xf3\xb1\x97\x9b",
		"OrderAlphabeticalAscending":             "\xf3\xb0\x88\x8d",
		"OrderAlphabeticalDescending":            "\xf3\xb0\xb4\x87",
		"OrderBoolAscending":                     "\xf3\xb0\x8a\xbe",
		"OrderBoolAscendingVariant":              "\xf3\xb0\xa6\x8f",
		"OrderBoolDescending":                    "\xf3\xb1\x8e\x84",
		"OrderBoolDescendingVariant":             "\xf3\xb0\xa6\x90",
		"OrderNumericAscending":                  "\xf3\xb0\x95\x85",
		"OrderNumericDescending":                 "\xf3\xb0\x95\x86",
		"Origin":                                 "\xf3\xb0\xad\x83",
		"Ornament":                               "\xf3\xb0\x8f\x8f",
		"OrnamentVariant":                        "\xf3\xb0\x8f\x90",
		"OutdoorLamp":                            "\xf3\xb1\x81\x94",
		"Overscan":                               "\xf3\xb1\x80\x85",
		"Owl":                                    "\xf3\xb0\x8f\x92",
		"PacMan":                                 "\xf3\xb0\xae\xaf",
		"Package":                                "\xf3\xb0\x8f\x93",
		"PackageCheck":                           "\xf3\xb1\xad\x91",
		"PackageDown":                            "\xf3\xb0\x8f\x94",
		"PackageUp":                              "\xf3\xb0\x8f\x95",
		"PackageVariant":                         "\xf3\xb0\x8f\x96",
		"PackageVariantClosed":                   "\xf3\xb0\x8f\x97",
		"PackageVariantClosedCheck":              "\xf3\xb1\xad\x92",
		"PackageVariantClosedMinus":              "\xf3\xb1\xa7\x94",
		"PackageVariantClosedPlus":               "\xf3\xb1\xa7\x95",
		"PackageVariantClosedRemove":             "\xf3\xb1\xa7\x96",
		"PackageVariantMinus":                    "\xf3\xb1\xa7\x97",
		"PackageVariantPlus":                     "\xf3\xb1\xa7\x98",
		"PackageVariantRemove":                   "\xf3\xb1\xa7\x99",
		"PageFirst":                              "\xf3\xb0\x98\x80",
		"PageLast":                               "\xf3\xb0\x98\x81",
		"PageLayoutBody":                         "\xf3\xb0\x9b\xba",
		"PageLayoutFooter":                       "\xf3\xb0\x9b\xbb",
		"PageLayoutHeader":                       "\xf3\xb0\x9b\xbc",
		"PageLayoutHeaderFooter":                 "\xf3\xb0\xbd\xbf",
		"PageLayoutSidebarLeft":                  "\xf3\xb0\x9b\xbd",
		"PageLayoutSidebarRight":                 "\xf3\xb0\x9b\xbe",
		"PageNext":                               "\xf3\xb0\xae\xb0",
		"PageNextOutline":                        "\xf3\xb0\xae\xb1",
		"PagePrevious":                           "\xf3\xb0\xae\xb2",
		"PagePreviousOutline":                    "\xf3\xb0\xae\xb3",
		"Pail":                                   "\xf3\xb1\x90\x97",
		"PailMinus":                              "\xf3\xb1\x90\xb7",
		"PailMinusOutline":                       "\xf3\xb1\x90\xbc",
		"PailOff":                                "\xf3\xb1\x90\xb9",
		"PailOffOutline":                         "\xf3\xb1\x90\xbe",
		"PailOutline":                            "\xf3\xb1\x90\xba",
		"PailPlus":                               "\xf3\xb1\x90\xb6",
		"PailPlusOutline":                        "\xf3\xb1\x90\xbb",
		"PailRemove":                             "\xf3\xb1\x90\xb8",
		"PailRemoveOutline":                      "\xf3\xb1\x90\xbd",
		"Palette":                                "\xf3\xb0\x8f\x98",
		"PaletteAdvanced":                        "\xf3\xb0\x8f\x99",
		"PaletteOutline":                         "\xf3\xb0\xb8\x8c",
		"PaletteSwatch":                          "\xf3\xb0\xa2\xb5",
		"PaletteSwatchOutline":                   "\xf3\xb1\x8d\x9c",
		"PaletteSwatchVariant":                   "\xf3\xb1\xa5\x9a",
		"PalmTree":                               "\xf3\xb1\x81\x95",
		"Pan":                                    "\xf3\xb0\xae\xb4",
		"PanBottomLeft":                          "\xf3\xb0\xae\xb5",
		"PanBottomRight":                         "\xf3\xb0\xae\xb6",
		"PanDown":                                "\xf3\xb0\xae\xb7",
		"PanHorizontal":                          "\xf3\xb0\xae\xb8",
		"PanLeft":                                "\xf3\xb0\xae\xb9",
		"PanRight":                               "\xf3\xb0\xae\xba",
		"PanTopLeft":                             "\xf3\xb0\xae\xbb",
		"PanTopRight":                            "\xf3\xb0\xae\xbc",
		"PanUp":                                  "\xf3\xb0\xae\xbd",
		"PanVertical":                            "\xf3\xb0\xae\xbe",
		"Panda":                                  "\xf3\xb0\x8f\x9a",
		"Pandora":                                "\xf3\xb0\x8f\x9b",
		"Panorama":                               "\xf3\xb0\x8f\x9c",
		"PanoramaFisheye":                        "\xf3\xb0\x8f\x9d",
		"PanoramaHorizontal":                     "\xf3\xb1\xa4\xa8",
		"PanoramaHorizontalOutline":              "\xf3\xb0\x8f\x9e",
		"PanoramaOutline":                        "\xf3\xb1\xa6\x8c",
		"PanoramaSphere":                         "\xf3\xb1\xa6\x8d",
		"PanoramaSphereOutline":                  "\xf3\xb1\xa6\x8e",
		"PanoramaVariant":                        "\xf3\xb1\xa6\x8f",
		"PanoramaVariantOutline":                 "\xf3\xb1\xa6\x90",
		"PanoramaVertical":                       "\xf3\xb1\xa4\xa9",
		"PanoramaVerticalOutline":                "\xf3\xb0\x8f\x9f",
		"PanoramaWideAngle":                      "\xf3\xb1\xa5\x9f",
		"PanoramaWideAngleOutline":               "\xf3\xb0\x8f\xa0",
		"PaperCutVertical":                       "\xf3\xb0\x8f\xa1",
		"PaperRoll":                              "\xf3\xb1\x85\x97",
		"PaperRollOutline":                       "\xf3\xb1\x85\x98",
		"Paperclip":                              "\xf3\xb0\x8f\xa2",
		"PaperclipCheck":                         "\xf3\xb1\xab\x86",
		"PaperclipLock":                          "\xf3\xb1\xa7\x9a",
		"PaperclipMinus":                         "\xf3\xb1\xab\x87",
		"PaperclipOff":                           "\xf3\xb1\xab\x88",
		"PaperclipPlus":                          "\xf3\xb1\xab\x89",
		"PaperclipRemove":                        "\xf3\xb1\xab\x8a",
		"Parachute":                              "\xf3\xb0\xb2\xb4",
		"ParachuteOutline":                       "\xf3\xb0\xb2\xb5",
		"Paragliding":                            "\xf3\xb1\x9d\x85",
		"Parking":                                "\xf3\xb0\x8f\xa3",
		"PartyPopper":                            "\xf3\xb1\x81\x96",
		"Passport":                               "\xf3\xb0\x9f\xa3",
		"PassportAlert":                          "\xf3\xb1\xb2\xb8",
		"PassportBiometric":                      "\xf3\xb0\xb7\xa1",
		"PassportCancel":                         "\xf3\xb1\xb2\xb9",
		"PassportCheck":                          "\xf3\xb1\xb2\xba",
		"PassportMinus":                          "\xf3\xb1\xb2\xbb",
		"PassportPlus":                           "\xf3\xb1\xb2\xbc",
		"PassportRemove":                         "\xf3\xb1\xb2\xbd",
		"Pasta":                                  "\xf3\xb1\x85\xa0",
		"PatioHeater":                            "\xf3\xb0\xbe\x80",
		"Patreon":                                "\xf3\xb0\xa2\x82",
		"Pause":                                  "\xf3\xb0\x8f\xa4",
		"PauseBox":                               "\xf3\xb0\x82\xbc",
		"PauseBoxOutline":                        "\xf3\xb1\xad\xba",
		"PauseCircle":                            "\xf3\xb0\x8f\xa5",
		"PauseCircleOutline":                     "\xf3\xb0\x8f\xa6",
		"PauseOctagon":                           "\xf3\xb0\x8f\xa7",
		"PauseOctagonOutline":                    "\xf3\xb0\x8f\xa8",
		"Paw":                                    "\xf3\xb0\x8f\xa9",
		"PawOff":                                 "\xf3\xb0\x99\x97",
		"PawOffOutline":                          "\xf3\xb1\x99\xb6",
		"PawOutline":                             "\xf3\xb1\x99\xb5",
		"Peace":                                  "\xf3\xb0\xa2\x84",
		"Peanut":                                 "\xf3\xb0\xbf\xbc",
		"PeanutOff":                              "\xf3\xb0\xbf\xbd",
		"PeanutOffOutline":                       "\xf3\xb0\xbf\xbf",
		"PeanutOutline":                          "\xf3\xb0\xbf\xbe",
		"Pen":                                    "\xf3\xb0\x8f\xaa",
		"PenLock":                                "\xf3\xb0\xb7\xa2",
		"PenMinus":                               "\xf3\xb0\xb7\xa3",
		"PenOff":                                 "\xf3\xb0\xb7\xa4",
		"PenPlus":                                "\xf3\xb0\xb7\xa5",
		"PenRemove":                              "\xf3\xb0\xb7\xa6",
		"Pencil":                                 "\xf3\xb0\x8f\xab",
		"PencilBox":                              "\xf3\xb0\x8f\xac",
		"PencilBoxMultiple":                      "\xf3\xb1\x85\x84",
		"PencilBoxMultipleOutline":               "\xf3\xb1\x85\x85",
		"PencilBoxOutline":                       "\xf3\xb0\x8f\xad",
		"PencilCircle":                           "\xf3\xb0\x9b\xbf",
		"PencilCircleOutline":                    "\xf3\xb0\x9d\xb6",
		"PencilLock":                             "\xf3\xb0\x8f\xae",
		"PencilLockOutline":                      "\xf3\xb0\xb7\xa7",
		"PencilMinus":                            "\xf3\xb0\xb7\xa8",
		"PencilMinusOutline":                     "\xf3\xb0\xb7\xa9",
		"PencilOff":                              "\xf3\xb0\x8f\xaf",
		"PencilOffOutline":                       "\xf3\xb0\xb7\xaa",
		"PencilOutline":                          "\xf3\xb0\xb2\xb6",
		"PencilPlus":                             "\xf3\xb0\xb7\xab",
		"PencilPlusOutline":                      "\xf3\xb0\xb7\xac",
		"PencilRemove":                           "\xf3\xb0\xb7\xad",
		"PencilRemoveOutline":                    "\xf3\xb0\xb7\xae",
		"PencilRuler":                            "\xf3\xb1\x8d\x93",
		"PencilRulerOutline":                     "\xf3\xb1\xb0\x91",
		"Penguin":                                "\xf3\xb0\xbb\x80",
		"Pentagon":                               "\xf3\xb0\x9c\x81",
		"PentagonOutline":                        "\xf3\xb0\x9c\x80",
		"Pentagram":                              "\xf3\xb1\x99\xa7",
		"Percent":                                "\xf3\xb0\x8f\xb0",
		"PercentBox":                             "\xf3\xb1\xa8\x82",
		"PercentBoxOutline":                      "\xf3\xb1\xa8\x83",
		"PercentCircle":                          "\xf3\xb1\xa8\x84",
		"PercentCircleOutline":                   "\xf3\xb1\xa8\x85",
		"PercentOutline":                         "\xf3\xb1\x89\xb8",
		"PeriodicTable":                          "\xf3\xb0\xa2\xb6",
		"PerspectiveLess":                        "\xf3\xb0\xb4\xa3",
		"PerspectiveMore":                        "\xf3\xb0\xb4\xa4",
		"Ph":                                     "\xf3\xb1\x9f\x85",
		"Phone":                                  "\xf3\xb0\x8f\xb2",
		"PhoneAlert":                             "\xf3\xb0\xbc\x9a",
		"PhoneAlertOutline":                      "\xf3\xb1\x86\x8e",
		"PhoneBluetooth":                         "\xf3\xb0\x8f\xb3",
		"PhoneBluetoothOutline":                  "\xf3\xb1\x86\x8f",
		"PhoneCancel":                            "\xf3\xb1\x82\xbc",
		"PhoneCancelOutline":                     "\xf3\xb1\x86\x90",
		"PhoneCheck":                             "\xf3\xb1\x86\xa9",
		"PhoneCheckOutline":                      "\xf3\xb1\x86\xaa",
		"PhoneClassic":                           "\xf3\xb0\x98\x82",
		"PhoneClassicOff":                        "\xf3\xb1\x89\xb9",
		"PhoneClock":                             "\xf3\xb1\xa7\x9b",
		"PhoneDial":                              "\xf3\xb1\x95\x99",
		"PhoneDialOutline":                       "\xf3\xb1\x95\x9a",
		"PhoneForward":                           "\xf3\xb0\x8f\xb4",
		"PhoneForwardOutline":                    "\xf3\xb1\x86\x91",
		"PhoneHangup":                            "\xf3\xb0\x8f\xb5",
		"PhoneHangupOutline":                     "\xf3\xb1\x86\x92",
		"PhoneInTalk":                            "\xf3\xb0\x8f\xb6",
		"PhoneInTalkOutline":                     "\xf3\xb1\x86\x82",
		"PhoneIncoming":                          "\xf3\xb0\x8f\xb7",
		"PhoneIncomingOutgoing":                  "\xf3\xb1\xac\xbf",
		"PhoneIncomingOutgoingOutline":           "\xf3\xb1\xad\x80",
		"PhoneIncomingOutline":                   "\xf3\xb1\x86\x93",
		"PhoneLock":                              "\xf3\xb0\x8f\xb8",
		"PhoneLockOutline":                       "\xf3\xb1\x86\x94",
		"PhoneLog":                               "\xf3\xb0\x8f\xb9",
		"PhoneLogOutline":                        "\xf3\xb1\x86\x95",
		"PhoneMessage":                           "\xf3\xb1\x86\x96",
		"PhoneMessageOutline":                    "\xf3\xb1\x86\x97",
		"PhoneMinus":                             "\xf3\xb0\x99\x98",
		"PhoneMinusOutline":                      "\xf3\xb1\x86\x98",
		"PhoneMissed":                            "\xf3\xb0\x8f\xba",
		"PhoneMissedOutline":                     "\xf3\xb1\x86\xa5",
		"PhoneOff":                               "\xf3\xb0\xb7\xaf",
		"PhoneOffOutline":                        "\xf3\xb1\x86\xa6",
		"PhoneOutgoing":                          "\xf3\xb0\x8f\xbb",
		"PhoneOutgoingOutline":                   "\xf3\xb1\x86\x99",
		"PhoneOutline":                           "\xf3\xb0\xb7\xb0",
		"PhonePaused":                            "\xf3\xb0\x8f\xbc",
		"PhonePausedOutline":                     "\xf3\xb1\x86\x9a",
		"PhonePlus":                              "\xf3\xb0\x99\x99",
		"PhonePlusOutline":                       "\xf3\xb1\x86\x9b",
		"PhoneRefresh":                           "\xf3\xb1\xa6\x93",
		"PhoneRefreshOutline":                    "\xf3\xb1\xa6\x94",
		"PhoneRemove":                            "\xf3\xb1\x94\xaf",
		"PhoneRemoveOutline":                     "\xf3\xb1\x94\xb0",
		"PhoneReturn":                            "\xf3\xb0\xa0\xaf",
		"PhoneReturnOutline":                     "\xf3\xb1\x86\x9c",
		"PhoneRing":                              "\xf3\xb1\x86\xab",
		"PhoneRingOutline":                       "\xf3\xb1\x86\xac",
		"PhoneRotateLandscape":                   "\xf3\xb0\xa2\x85",
		"PhoneRotatePortrait":                    "\xf3\xb0\xa2\x86",
		"PhoneSettings":                          "\xf3\xb0\x8f\xbd",
		"PhoneSettingsOutline":                   "\xf3\xb1\x86\x9d",
		"PhoneSync":                              "\xf3\xb1\xa6\x95",
		"PhoneSyncOutline":                       "\xf3\xb1\xa6\x96",
		"PhoneVoip":                              "\xf3\xb0\x8f\xbe",
		"Pi":                                     "\xf3\xb0\x8f\xbf",
		"PiBox":                                  "\xf3\xb0\x90\x80",
		"PiHole":                                 "\xf3\xb0\xb7\xb1",
		"Piano":                                  "\xf3\xb0\x99\xbd",
		"PianoOff":                               "\xf3\xb0\x9a\x98",
		"Pickaxe":                                "\xf3\xb0\xa2\xb7",
		"PictureInPictureBottomRight":            "\xf3\xb0\xb9\x97",
		"PictureInPictureBottomRightOutline":     "\xf3\xb0\xb9\x98",
		"PictureInPictureTopRight":               "\xf3\xb0\xb9\x99",
		"PictureInPictureTopRightOutline":        "\xf3\xb0\xb9\x9a",
		"Pier":                                   "\xf3\xb0\xa2\x87",
		"PierCrane":                              "\xf3\xb0\xa2\x88",
		"Pig":                                    "\xf3\xb0\x90\x81",
		"PigVariant":                             "\xf3\xb1\x80\x86",
		"PigVariantOutline":                      "\xf3\xb1\x99\xb8",
		"PiggyBank":                              "\xf3\xb1\x80\x87",
		"PiggyBankOutline":                       "\xf3\xb1\x99\xb9",
		"Pill":                                   "\xf3\xb0\x90\x82",
		"PillMultiple":                           "\xf3\xb1\xad\x8c",
		"PillOff":                                "\xf3\xb1\xa9\x9c",
		"Pillar":                                 "\xf3\xb0\x9c\x82",
		"Pin":                                    "\xf3\xb0\x90\x83",
		"PinOff":                                 "\xf3\xb0\x90\x84",
		"PinOffOutline":                          "\xf3\xb0\xa4\xb0",
		"PinOutline":                             "\xf3\xb0\xa4\xb1",
		"PineTree":                               "\xf3\xb0\x90\x85",
		"PineTreeBox":                            "\xf3\xb0\x90\x86",
		"PineTreeFire":                           "\xf3\xb1\x90\x9a",
		"PineTreeVariant":                        "\xf3\xb1\xb1\xb3",
		"PineTreeVariantOutline":                 "\xf3\xb1\xb1\xb4",
		"Pinterest":                              "\xf3\xb0\x90\x87",
		"Pinwheel":                               "\xf3\xb0\xab\x95",
		"PinwheelOutline":                        "\xf3\xb0\xab\x96",
		"Pipe":                                   "\xf3\xb0\x9f\xa5",
		"PipeDisconnected":                       "\xf3\xb0\x9f\xa6",
		"PipeLeak":                               "\xf3\xb0\xa2\x89",
		"PipeValve":                              "\xf3\xb1\xa1\x8d",
		"PipeWrench":                             "\xf3\xb1\x8d\x94",
		"Pirate":                                 "\xf3\xb0\xa8\x88",
		"Pistol":                                 "\xf3\xb0\x9c\x83",
		"Piston":                                 "\xf3\xb0\xa2\x8a",
		"Pitchfork":                              "\xf3\xb1\x95\x93",
		"Pizza":                                  "\xf3\xb0\x90\x89",
		"PlaneCar":                               "\xf3\xb1\xab\xbf",
		"PlaneTrain":                             "\xf3\xb1\xac\x80",
		"Play":                                   "\xf3\xb0\x90\x8a",
		"PlayBox":                                "\xf3\xb1\x89\xba",
		"PlayBoxEditOutline":                     "\xf3\xb1\xb0\xba",
		"PlayBoxLock":                            "\xf3\xb1\xa8\x96",
		"PlayBoxLockOpen":                        "\xf3\xb1\xa8\x97",
		"PlayBoxLockOpenOutline":                 "\xf3\xb1\xa8\x98",
		"PlayBoxLockOutline":                     "\xf3\xb1\xa8\x99",
		"PlayBoxMultiple":                        "\xf3\xb0\xb4\x99",
		"PlayBoxMultipleOutline":                 "\xf3\xb1\x8f\xa6",
		"PlayBoxOutline":                         "\xf3\xb0\x90\x8b",
		"PlayCircle":                             "\xf3\xb0\x90\x8c",
		"PlayCircleOutline":                      "\xf3\xb0\x90\x8d",
		"PlayNetwork":                            "\xf3\xb0\xa2\x8b",
		"PlayNetworkOutline":                     "\xf3\xb0\xb2\xb7",
		"PlayOutline":                            "\xf3\xb0\xbc\x9b",
		"PlayPause":                              "\xf3\xb0\x90\x8e",
		"PlayProtectedContent":                   "\xf3\xb0\x90\x8f",
		"PlaySpeed":                              "\xf3\xb0\xa3\xbf",
		"PlaylistCheck":                          "\xf3\xb0\x97\x87",
		"PlaylistEdit":                           "\xf3\xb0\xa4\x80",
		"PlaylistMinus":                          "\xf3\xb0\x90\x90",
		"PlaylistMusic":                          "\xf3\xb0\xb2\xb8",
		"PlaylistMusicOutline":                   "\xf3\xb0\xb2\xb9",
		"PlaylistPlay":                           "\xf3\xb0\x90\x91",
		"PlaylistPlus":                           "\xf3\xb0\x90\x92",
		"PlaylistRemove":                         "\xf3\xb0\x90\x93",
		"PlaylistStar":                           "\xf3\xb0\xb7\xb2",
		"Plex":                                   "\xf3\xb0\x9a\xba",
		"Pliers":                                 "\xf3\xb1\xa6\xa4",
		"Plus":                                   "\xf3\xb0\x90\x95",
		"PlusBox":                                "\xf3\xb0\x90\x96",
		"PlusBoxMultiple":                        "\xf3\xb0\x8c\xb4",
		"PlusBoxMultipleOutline":                 "\xf3\xb1\x85\x83",
		"PlusBoxOutline":                         "\xf3\xb0\x9c\x84",
		"PlusCircle":                             "\xf3\xb0\x90\x97",
		"PlusCircleMultiple":                     "\xf3\xb0\x8d\x8c",
		"PlusCircleMultipleOutline":              "\xf3\xb0\x90\x98",
		"PlusCircleOutline":                      "\xf3\xb0\x90\x99",
		"PlusLock":                               "\xf3\xb1\xa9\x9d",
		"PlusLockOpen":                           "\xf3\xb1\xa9\x9e",
		"PlusMinus":                              "\xf3\xb0\xa6\x92",
		"PlusMinusBox":                           "\xf3\xb0\xa6\x93",
		"PlusMinusVariant":                       "\xf3\xb1\x93\x89",
		"PlusNetwork":                            "\xf3\xb0\x90\x9a",
		"PlusNetworkOutline":                     "\xf3\xb0\xb2\xba",
		"PlusOutline":                            "\xf3\xb0\x9c\x85",
		"PlusThick":                              "\xf3\xb1\x87\xac",
		"Pocket":                                 "\xf3\xb1\xb2\xbe",
		"Podcast":                                "\xf3\xb0\xa6\x94",
		"Podium":                                 "\xf3\xb0\xb4\xa5",
		"PodiumBronze":                           "\xf3\xb0\xb4\xa6",
		"PodiumGold":                             "\xf3\xb0\xb4\xa7",
		"PodiumSilver":                           "\xf3\xb0\xb4\xa8",
		"PointOfSale":                            "\xf3\xb0\xb6\x92",
		"Pokeball":                               "\xf3\xb0\x90\x9d",
		"PokemonGo":                              "\xf3\xb0\xa8\x89",
		"PokerChip":                              "\xf3\xb0\xa0\xb0",
		"Polaroid":                               "\xf3\xb0\x90\x9e",
		"PoliceBadge":                            "\xf3\xb1\x85\xa7",
		"PoliceBadgeOutline":                     "\xf3\xb1\x85\xa8",
		"PoliceStation":                          "\xf3\xb1\xa0\xb9",
		"Poll":                                   "\xf3\xb0\x90\x9f",
		"Polo":                                   "\xf3\xb1\x93\x83",
		"Polymer":                                "\xf3\xb0\x90\xa1",
		"Pool":                                   "\xf3\xb0\x98\x86",
		"PoolThermometer":                        "\xf3\xb1\xa9\x9f",
		"Popcorn":                                "\xf3\xb0\x90\xa2",
		"Post":                                   "\xf3\xb1\x80\x88",
		"PostLamp":                               "\xf3\xb1\xa9\xa0",
		"PostOutline":                            "\xf3\xb1\x80\x89",
		"PostageStamp":                           "\xf3\xb0\xb2\xbb",
		"Pot":                                    "\xf3\xb0\x8b\xa5",
		"PotMix":                                 "\xf3\xb0\x99\x9b",
		"PotMixOutline":                          "\xf3\xb0\x99\xb7",
		"PotOutline":                             "\xf3\xb0\x8b\xbf",
		"PotSteam":                               "\xf3\xb0\x99\x9a",
		"PotSteamOutline":                        "\xf3\xb0\x8c\xa6",
		"Pound":                                  "\xf3\xb0\x90\xa3",
		"PoundBox":                               "\xf3\xb0\x90\xa4",
		"PoundBoxOutline":                        "\xf3\xb1\x85\xbf",
		"Power":                                  "\xf3\xb0\x90\xa5",
		"PowerCycle":                             "\xf3\xb0\xa4\x81",
		"PowerOff":                               "\xf3\xb0\xa4\x82",
		"PowerOn":                                "\xf3\xb0\xa4\x83",
		"PowerPlug":                              "\xf3\xb0\x9a\xa5",
		"PowerPlugBattery":                       "\xf3\xb1\xb0\xbb",
		"PowerPlugBatteryOutline":                "\xf3\xb1\xb0\xbc",
		"PowerPlugOff":                           "\xf3\xb0\x9a\xa6",
		"PowerPlugOffOutline":                    "\xf3\xb1\x90\xa4",
		"PowerPlugOutline":                       "\xf3\xb1\x90\xa5",
		"PowerSettings":                          "\xf3\xb0\x90\xa6",
		"PowerSleep":                             "\xf3\xb0\xa4\x84",
		"PowerSocket":                            "\xf3\xb0\x90\xa7",
		"PowerSocketAu":                          "\xf3\xb0\xa4\x85",
		"PowerSocketCh":                          "\xf3\xb0\xbe\xb3",
		"PowerSocketDe":                          "\xf3\xb1\x84\x87",
		"PowerSocketEu":                          "\xf3\xb0\x9f\xa7",
		"PowerSocketFr":                          "\xf3\xb1\x84\x88",
		"PowerSocketIt":                          "\xf3\xb1\x93\xbf",
		"PowerSocketJp":                          "\xf3\xb1\x84\x89",
		"PowerSocketUk":                          "\xf3\xb0\x9f\xa8",
		"PowerSocketUs":                          "\xf3\xb0\x9f\xa9",
		"PowerStandby":                           "\xf3\xb0\xa4\x86",
		"Powershell":                             "\xf3\xb0\xa8\x8a",
		"Prescription":                           "\xf3\xb0\x9c\x86",
		"Presentation":                           "\xf3\xb0\x90\xa8",
		"PresentationPlay":                       "\xf3\xb0\x90\xa9",
		"Pretzel":                                "\xf3\xb1\x95\xa2",
		"Printer":                                "\xf3\xb0\x90\xaa",
		"Printer3d":                              "\xf3\xb0\x90\xab",
		"Printer3dNozzle":                        "\xf3\xb0\xb9\x9b",
		"Printer3dNozzleAlert":                   "\xf3\xb1\x87\x80",
		"Printer3dNozzleAlertOutline":            "\xf3\xb1\x87\x81",
		"Printer3dNozzleHeat":                    "\xf3\xb1\xa2\xb8",
		"Printer3dNozzleHeatOutline":             "\xf3\xb1\xa2\xb9",
		"Printer3dNozzleOff":                     "\xf3\xb1\xac\x99",
		"Printer3dNozzleOffOutline":              "\xf3\xb1\xac\x9a",
		"Printer3dNozzleOutline":                 "\xf3\xb0\xb9\x9c",
		"Printer3dOff":                           "\xf3\xb1\xac\x8e",
		"PrinterAlert":                           "\xf3\xb0\x90\xac",
		"PrinterCheck":                           "\xf3\xb1\x85\x86",
		"PrinterEye":                             "\xf3\xb1\x91\x98",
		"PrinterOff":                             "\xf3\xb0\xb9\x9d",
		"PrinterOffOutline":                      "\xf3\xb1\x9e\x85",
		"PrinterOutline":                         "\xf3\xb1\x9e\x86",
		"PrinterPos":                             "\xf3\xb1\x81\x97",
		"PrinterPosAlert":                        "\xf3\xb1\xae\xbc",
		"PrinterPosAlertOutline":                 "\xf3\xb1\xae\xbd",
		"PrinterPosCancel":                       "\xf3\xb1\xae\xbe",
		"PrinterPosCancelOutline":                "\xf3\xb1\xae\xbf",
		"PrinterPosCheck":                        "\xf3\xb1\xaf\x80",
		"PrinterPosCheckOutline":                 "\xf3\xb1\xaf\x81",
		"PrinterPosCog":                          "\xf3\xb1\xaf\x82",
		"PrinterPosCogOutline":                   "\xf3\xb1\xaf\x83",
		"PrinterPosEdit":                         "\xf3\xb1\xaf\x84",
		"PrinterPosEditOutline":                  "\xf3\xb1\xaf\x85",
		"PrinterPosMinus":                        "\xf3\xb1\xaf\x86",
		"PrinterPosMinusOutline":                 "\xf3\xb1\xaf\x87",
		"PrinterPosNetwork":                      "\xf3\xb1\xaf\x88",
		"PrinterPosNetworkOutline":               "\xf3\xb1\xaf\x89",
		"PrinterPosOff":                          "\xf3\xb1\xaf\x8a",
		"PrinterPosOffOutline":                   "\xf3\xb1\xaf\x8b",
		"PrinterPosOutline":                      "\xf3\xb1\xaf\x8c",
		"PrinterPosPause":                        "\xf3\xb1\xaf\x8d",
		"PrinterPosPauseOutline":                 "\xf3\xb1\xaf\x8e",
		"PrinterPosPlay":                         "\xf3\xb1\xaf\x8f",
		"PrinterPosPlayOutline":                  "\xf3\xb1\xaf\x90",
		"PrinterPosPlus":                         "\xf3\xb1\xaf\x91",
		"PrinterPosPlusOutline":                  "\xf3\xb1\xaf\x92",
		"PrinterPosRefresh":                      "\xf3\xb1\xaf\x93",
		"PrinterPosRefreshOutline":               "\xf3\xb1\xaf\x94",
		"PrinterPosRemove":                       "\xf3\xb1\xaf\x95",
		"PrinterPosRemoveOutline":                "\xf3\xb1\xaf\x96",
		"PrinterPosStar":                         "\xf3\xb1\xaf\x97",
		"PrinterPosStarOutline":                  "\xf3\xb1\xaf\x98",
		"PrinterPosStop":                         "\xf3\xb1\xaf\x99",
		"PrinterPosStopOutline":                  "\xf3\xb1\xaf\x9a",
		"PrinterPosSync":                         "\xf3\xb1\xaf\x9b",
		"PrinterPosSyncOutline":                  "\xf3\xb1\xaf\x9c",
		"PrinterPosWrench":                       "\xf3\xb1\xaf\x9d",
		"PrinterPosWrenchOutline":                "\xf3\xb1\xaf\x9e",
		"PrinterSearch":                          "\xf3\xb1\x91\x97",
		"PrinterSettings":                        "\xf3\xb0\x9c\x87",
		"PrinterWireless":                        "\xf3\xb0\xa8\x8b",
		"PriorityHigh":                           "\xf3\xb0\x98\x83",
		"PriorityLow":                            "\xf3\xb0\x98\x84",
		"ProfessionalHexagon":                    "\xf3\xb0\x90\xad",
		"ProgressAlert":                          "\xf3\xb0\xb2\xbc",
		"ProgressCheck":                          "\xf3\xb0\xa6\x95",
		"ProgressClock":                          "\xf3\xb0\xa6\x96",
		"ProgressClose":                          "\xf3\xb1\x84\x8a",
		"ProgressDownload":                       "\xf3\xb0\xa6\x97",
		"ProgressHelper":                         "\xf3\xb1\xae\xa2",
		"ProgressPencil":                         "\xf3\xb1\x9e\x87",
		"ProgressQuestion":                       "\xf3\xb1\x94\xa2",
		"ProgressStar":                           "\xf3\xb1\x9e\x88",
		"ProgressStarFourPoints":                 "\xf3\xb1\xb0\xbd",
		"ProgressTag":                            "\xf3\xb1\xb4\x8d",
		"ProgressUpload":                         "\xf3\xb0\xa6\x98",
		"ProgressWrench":                         "\xf3\xb0\xb2\xbd",
		"Projector":                              "\xf3\xb0\x90\xae",
		"ProjectorOff":                           "\xf3\xb1\xa8\xa3",
		"ProjectorScreen":                        "\xf3\xb0\x90\xaf",
		"ProjectorScreenOff":                     "\xf3\xb1\xa0\x8d",
		"ProjectorScreenOffOutline":              "\xf3\xb1\xa0\x8e",
		"ProjectorScreenOutline":                 "\xf3\xb1\x9c\xa4",
		"ProjectorScreenVariant":                 "\xf3\xb1\xa0\x8f",
		"ProjectorScreenVariantOff":              "\xf3\xb1\xa0\x90",
		"ProjectorScreenVariantOffOutline":       "\xf3\xb1\xa0\x91",
		"ProjectorScreenVariantOutline":          "\xf3\xb1\xa0\x92",
		"PropaneTank":                            "\xf3\xb1\x8d\x97",
		"PropaneTankOutline":                     "\xf3\xb1\x8d\x98",
		"Protocol":                               "\xf3\xb0\xbf\x98",
		"Publish":                                "\xf3\xb0\x9a\xa7",
		"PublishOff":                             "\xf3\xb1\xa5\x85",
		"Pulse":                                  "\xf3\xb0\x90\xb0",
		"Pump":                                   "\xf3\xb1\x90\x82",
		"PumpOff":                                "\xf3\xb1\xac\xa2",
		"Pumpkin":                                "\xf3\xb0\xae\xbf",
		"Purse":                                  "\xf3\xb0\xbc\x9c",
		"PurseOutline":                           "\xf3\xb0\xbc\x9d",
		"Puzzle":                                 "\xf3\xb0\x90\xb1",
		"PuzzleCheck":                            "\xf3\xb1\x90\xa6",
		"PuzzleCheckOutline":                     "\xf3\xb1\x90\xa7",
		"PuzzleEdit":                             "\xf3\xb1\x93\x93",
		"PuzzleEditOutline":                      "\xf3\xb1\x93\x99",
		"PuzzleHeart":                            "\xf3\xb1\x93\x94",
		"PuzzleHeartOutline":                     "\xf3\xb1\x93\x9a",
		"PuzzleMinus":                            "\xf3\xb1\x93\x91",
		"PuzzleMinusOutline":                     "\xf3\xb1\x93\x97",
		"PuzzleOutline":                          "\xf3\xb0\xa9\xa6",
		"PuzzlePlus":                             "\xf3\xb1\x93\x90",
		"PuzzlePlusOutline":                      "\xf3\xb1\x93\x96",
		"PuzzleRemove":                           "\xf3\xb1\x93\x92",
		"PuzzleRemoveOutline":                    "\xf3\xb1\x93\x98",
		"PuzzleStar":                             "\xf3\xb1\x93\x95",
		"PuzzleStarOutline":                      "\xf3\xb1\x93\x9b",
		"Pyramid":                                "\xf3\xb1\xa5\x92",
		"PyramidOff":                             "\xf3\xb1\xa5\x93",
		"Qi":                                     "\xf3\xb0\xa6\x99",
		"Qqchat":                                 "\xf3\xb0\x98\x85",
		"Qrcode":                                 "\xf3\xb0\x90\xb2",
		"QrcodeEdit":                             "\xf3\xb0\xa2\xb8",
		"QrcodeMinus":                            "\xf3\xb1\x86\x8c",
		"QrcodePlus":                             "\xf3\xb1\x86\x8b",
		"QrcodeRemove":                           "\xf3\xb1\x86\x8d",
		"QrcodeScan":                             "\xf3\xb0\x90\xb3",
		"Quadcopter":                             "\xf3\xb0\x90\xb4",
		"QualityHigh":                            "\xf3\xb0\x90\xb5",
		"QualityLow":                             "\xf3\xb0\xa8\x8c",
		"QualityMedium":                          "\xf3\xb0\xa8\x8d",
		"QueueFirstInLastOut":                    "\xf3\xb1\xb2\xaf",
		"Quora":                                  "\xf3\xb0\xb4\xa9",
		"Rabbit":                                 "\xf3\xb0\xa4\x87",
		"RabbitVariant":                          "\xf3\xb1\xa9\xa1",
		"RabbitVariantOutline":                   "\xf3\xb1\xa9\xa2",
		"RacingHelmet":                           "\xf3\xb0\xb6\x93",
		"Racquetball":                            "\xf3\xb0\xb6\x94",
		"Radar":                                  "\xf3\xb0\x90\xb7",
		"Radiator":                               "\xf3\xb0\x90\xb8",
		"RadiatorDisabled":                       "\xf3\xb0\xab\x97",
		"RadiatorOff":                            "\xf3\xb0\xab\x98",
		"Radio":                                  "\xf3\xb0\x90\xb9",
		"RadioAm":                                "\xf3\xb0\xb2\xbe",
		"RadioFm":                                "\xf3\xb0\xb2\xbf",
		"RadioHandheld":                          "\xf3\xb0\x90\xba",
		"RadioOff":                               "\xf3\xb1\x88\x9c",
		"RadioTower":                             "\xf3\xb0\x90\xbb",
		"Radioactive":                            "\xf3\xb0\x90\xbc",
		"RadioactiveCircle":                      "\xf3\xb1\xa1\x9d",
		"RadioactiveCircleOutline":               "\xf3\xb1\xa1\x9e",
		"RadioactiveOff":                         "\xf3\xb0\xbb\x81",
		"RadioboxBlank":                          "\xf3\xb0\x90\xbd",
		"RadioboxIndeterminateVariant":           "\xf3\xb1\xb1\x9e",
		"RadioboxMarked":                         "\xf3\xb0\x90\xbe",
		"RadiologyBox":                           "\xf3\xb1\x93\x85",
		"RadiologyBoxOutline":                    "\xf3\xb1\x93\x86",
		"Radius":                                 "\xf3\xb0\xb3\x80",
		"RadiusOutline":                          "\xf3\xb0\xb3\x81",
		"RailroadLight":                          "\xf3\xb0\xbc\x9e",
		"Rake":                                   "\xf3\xb1\x95\x84",
		"RaspberryPi":                            "\xf3\xb0\x90\xbf",
		"Raw":                                    "\xf3\xb1\xa8\x8f",
		"RawOff":                                 "\xf3\xb1\xa8\x90",
		"RayEnd":                                 "\xf3\xb0\x91\x80",
		"RayEndArrow":                            "\xf3\xb0\x91\x81",
		"RayStart":                               "\xf3\xb0\x91\x82",
		"RayStartArrow":                          "\xf3\xb0\x91\x83",
		"RayStartEnd":                            "\xf3\xb0\x91\x84",
		"RayStartVertexEnd":                      "\xf3\xb1\x97\x98",
		"RayVertex":                              "\xf3\xb0\x91\x85",
		"RazorDoubleEdge":                        "\xf3\xb1\xa6\x97",
		"RazorSingleEdge":                        "\xf3\xb1\xa6\x98",
		"React":                                  "\xf3\xb0\x9c\x88",
		"Read":                                   "\xf3\xb0\x91\x87",
		"Receipt":                                "\xf3\xb0\xa0\xa4",
		"ReceiptClock":                           "\xf3\xb1\xb0\xbe",
		"ReceiptClockOutline":                    "\xf3\xb1\xb0\xbf",
		"ReceiptOutline":                         "\xf3\xb0\x93\xb7",
		"ReceiptSend":                            "\xf3\xb1\xb1\x80",
		"ReceiptSendOutline":                     "\xf3\xb1\xb1\x81",
		"ReceiptText":                            "\xf3\xb0\x91\x89",
		"ReceiptTextArrowLeft":                   "\xf3\xb1\xb1\x82",
		"ReceiptTextArrowLeftOutline":            "\xf3\xb1\xb1\x83",
		"ReceiptTextArrowRight":                  "\xf3\xb1\xb1\x84",
		"ReceiptTextArrowRightOutline":           "\xf3\xb1\xb1\x85",
		"ReceiptTextCheck":                       "\xf3\xb1\xa9\xa3",
		"ReceiptTextCheckOutline":                "\xf3\xb1\xa9\xa4",
		"ReceiptTextClock":                       "\xf3\xb1\xb1\x86",
		"ReceiptTextClockOutline":                "\xf3\xb1\xb1\x87",
		"ReceiptTextEdit":                        "\xf3\xb1\xb1\x88",
		"ReceiptTextEditOutline":                 "\xf3\xb1\xb1\x89",
		"ReceiptTextMinus":                       "\xf3\xb1\xa9\xa5",
		"ReceiptTextMinusOutline":                "\xf3\xb1\xa9\xa6",
		"ReceiptTextOutline":                     "\xf3\xb1\xa7\x9c",
		"ReceiptTextPlus":                        "\xf3\xb1\xa9\xa7",
		"ReceiptTextPlusOutline":                 "\xf3\xb1\xa9\xa8",
		"ReceiptTextRemove":                      "\xf3\xb1\xa9\xa9",
		"ReceiptTextRemoveOutline":               "\xf3\xb1\xa9\xaa",
		"ReceiptTextSend":                        "\xf3\xb1\xb1\x8a",
		"ReceiptTextSendOutline":                 "\xf3\xb1\xb1\x8b",
		"Record":                                 "\xf3\xb0\x91\x8a",
		"RecordCircle":                           "\xf3\xb0\xbb\x82",
		"RecordCircleOutline":                    "\xf3\xb0\xbb\x83",
		"RecordPlayer":                           "\xf3\xb0\xa6\x9a",
		"RecordRec":                              "\xf3\xb0\x91\x8b",
		"Rectangle":                              "\xf3\xb0\xb9\x9e",
		"RectangleOutline":                       "\xf3\xb0\xb9\x9f",
		"Recycle":                                "\xf3\xb0\x91\x8c",
		"RecycleVariant":                         "\xf3\xb1\x8e\x9d",
		"Reddit":                                 "\xf3\xb0\x91\x8d",
		"Redhat":                                 "\xf3\xb1\x84\x9b",
		"Redo":                                   "\xf3\xb0\x91\x8e",
		"RedoVariant":                            "\xf3\xb0\x91\x8f",
		"ReflectHorizontal":                      "\xf3\xb0\xa8\x8e",
		"ReflectVertical":                        "\xf3\xb0\xa8\x8f",
		"Refresh":                                "\xf3\xb0\x91\x90",
		"RefreshAuto":                            "\xf3\xb1\xa3\xb2",
		"RefreshCircle":                          "\xf3\xb1\x8d\xb7",
		"Regex":                                  "\xf3\xb0\x91\x91",
		"RegisteredTrademark":                    "\xf3\xb0\xa9\xa7",
		"Reiterate":                              "\xf3\xb1\x96\x88",
		"RelationManyToMany":                     "\xf3\xb1\x92\x96",
		"RelationManyToOne":                      "\xf3\xb1\x92\x97",
		"RelationManyToOneOrMany":                "\xf3\xb1\x92\x98",
		"RelationManyToOnlyOne":                  "\xf3\xb1\x92\x99",
		"RelationManyToZeroOrMany":               "\xf3\xb1\x92\x9a",
		"RelationManyToZeroOrOne":                "\xf3\xb1\x92\x9b",
		"RelationOneOrManyToMany":                "\xf3\xb1\x92\x9c",
		"RelationOneOrManyToOne":                 "\xf3\xb1\x92\x9d",
		"RelationOneOrManyToOneOrMany":           "\xf3\xb1\x92\x9e",
		"RelationOneOrManyToOnlyOne":             "\xf3\xb1\x92\x9f",
		"RelationOneOrManyToZeroOrMany":          "\xf3\xb1\x92\xa0",
		"RelationOneOrManyToZeroOrOne":           "\xf3\xb1\x92\xa1",
		"RelationOneToMany":                      "\xf3\xb1\x92\xa2",
		"RelationOneToOne":                       "\xf3\xb1\x92\xa3",
		"RelationOneToOneOrMany":                 "\xf3\xb1\x92\xa4",
		"RelationOneToOnlyOne":                   "\xf3\xb1\x92\xa5",
		"RelationOneToZeroOrMany":                "\xf3\xb1\x92\xa6",
		"RelationOneToZeroOrOne":                 "\xf3\xb1\x92\xa7",
		"RelationOnlyOneToMany":                  "\xf3\xb1\x92\xa8",
		"RelationOnlyOneToOne":                   "\xf3\xb1\x92\xa9",
		"RelationOnlyOneToOneOrMany":             "\xf3\xb1\x92\xaa",
		"RelationOnlyOneToOnlyOne":               "\xf3\xb1\x92\xab",
		"RelationOnlyOneToZeroOrMany":            "\xf3\xb1\x92\xac",
		"RelationOnlyOneToZeroOrOne":             "\xf3\xb1\x92\xad",
		"RelationZeroOrManyToMany":               "\xf3\xb1\x92\xae",
		"RelationZeroOrManyToOne":                "\xf3\xb1\x92\xaf",
		"RelationZeroOrManyToOneOrMany":          "\xf3\xb1\x92\xb0",
		"RelationZeroOrManyToOnlyOne":            "\xf3\xb1\x92\xb1",
		"RelationZeroOrManyToZeroOrMany":         "\xf3\xb1\x92\xb2",
		"RelationZeroOrManyToZeroOrOne":          "\xf3\xb1\x92\xb3",
		"RelationZeroOrOneToMany":                "\xf3\xb1\x92\xb4",
		"RelationZeroOrOneToOne":                 "\xf3\xb1\x92\xb5",
		"RelationZeroOrOneToOneOrMany":           "\xf3\xb1\x92\xb6",
		"RelationZeroOrOneToOnlyOne":             "\xf3\xb1\x92\xb7",
		"RelationZeroOrOneToZeroOrMany":          "\xf3\xb1\x92\xb8",
		"RelationZeroOrOneToZeroOrOne":           "\xf3\xb1\x92\xb9",
		"RelativeScale":                          "\xf3\xb0\x91\x92",
		"Reload":                                 "\xf3\xb0\x91\x93",
		"ReloadAlert":                            "\xf3\xb1\x84\x8b",
		"Reminder":                               "\xf3\xb0\xa2\x8c",
		"Remote":                                 "\xf3\xb0\x91\x94",
		"RemoteDesktop":                          "\xf3\xb0\xa2\xb9",
		"RemoteOff":                              "\xf3\xb0\xbb\x84",
		"RemoteTv":                               "\xf3\xb0\xbb\x85",
		"RemoteTvOff":                            "\xf3\xb0\xbb\x86",
		"Rename":                                 "\xf3\xb1\xb0\x98",
		"RenameBox":                              "\xf3\xb0\x91\x95",
		"RenameBoxOutline":                       "\xf3\xb1\xb0\x99",
		"RenameOutline":                          "\xf3\xb1\xb0\x9a",
		"ReorderHorizontal":                      "\xf3\xb0\x9a\x88",
		"ReorderVertical":                        "\xf3\xb0\x9a\x89",
		"Repeat":                                 "\xf3\xb0\x91\x96",
		"RepeatOff":                              "\xf3\xb0\x91\x97",
		"RepeatOnce":                             "\xf3\xb0\x91\x98",
		"RepeatVariant":                          "\xf3\xb0\x95\x87",
		"Replay":                                 "\xf3\xb0\x91\x99",
		"Reply":                                  "\xf3\xb0\x91\x9a",
		"ReplyAll":                               "\xf3\xb0\x91\x9b",
		"ReplyAllOutline":                        "\xf3\xb0\xbc\x9f",
		"ReplyCircle":                            "\xf3\xb1\x86\xae",
		"ReplyOutline":                           "\xf3\xb0\xbc\xa0",
		"Reproduction":                           "\xf3\xb0\x91\x9c",
		"Resistor":                               "\xf3\xb0\xad\x84",
		"ResistorNodes":                          "\xf3\xb0\xad\x85",
		"Resize":                                 "\xf3\xb0\xa9\xa8",
		"ResizeBottomRight":                      "\xf3\xb0\x91\x9d",
		"Responsive":                             "\xf3\xb0\x91\x9e",
		"Restart":                                "\xf3\xb0\x9c\x89",
		"RestartAlert":                           "\xf3\xb1\x84\x8c",
		"RestartOff":                             "\xf3\xb0\xb6\x95",
		"Restore":                                "\xf3\xb0\xa6\x9b",
		"RestoreAlert":                           "\xf3\xb1\x84\x8d",
		"Rewind":                                 "\xf3\xb0\x91\x9f",
		"Rewind10":                               "\xf3\xb0\xb4\xaa",
		"Rewind15":                               "\xf3\xb1\xa5\x86",
		"Rewind30":                               "\xf3\xb0\xb6\x96",
		"Rewind45":                               "\xf3\xb1\xac\x93",
		"Rewind5":                                "\xf3\xb1\x87\xb9",
		"Rewind60":                               "\xf3\xb1\x98\x8c",
		"RewindOutline":                          "\xf3\xb0\x9c\x8a",
		"Rhombus":                                "\xf3\xb0\x9c\x8b",
		"RhombusMedium":                          "\xf3\xb0\xa8\x90",
		"RhombusMediumOutline":                   "\xf3\xb1\x93\x9c",
		"RhombusOutline":                         "\xf3\xb0\x9c\x8c",
		"RhombusSplit":                           "\xf3\xb0\xa8\x91",
		"RhombusSplitOutline":                    "\xf3\xb1\x93\x9d",
		"Ribbon":                                 "\xf3\xb0\x91\xa0",
		"Rice":                                   "\xf3\xb0\x9f\xaa",
		"Rickshaw":                               "\xf3\xb1\x96\xbb",
		"RickshawElectric":                       "\xf3\xb1\x96\xbc",
		"Ring":                                   "\xf3\xb0\x9f\xab",
		"Rivet":                                  "\xf3\xb0\xb9\xa0",
		"Road":                                   "\xf3\xb0\x91\xa1",
		"RoadVariant":                            "\xf3\xb0\x91\xa2",
		"Robber":                                 "\xf3\xb1\x81\x98",
		"Robot":                                  "\xf3\xb0\x9a\xa9",
		"RobotAngry":                             "\xf3\xb1\x9a\x9d",
		"RobotAngryOutline":                      "\xf3\xb1\x9a\x9e",
		"RobotConfused":                          "\xf3\xb1\x9a\x9f",
		"RobotConfusedOutline":                   "\xf3\xb1\x9a\xa0",
		"RobotDead":                              "\xf3\xb1\x9a\xa1",
		"RobotDeadOutline":                       "\xf3\xb1\x9a\xa2",
		"RobotExcited":                           "\xf3\xb1\x9a\xa3",
		"RobotExcitedOutline":                    "\xf3\xb1\x9a\xa4",
		"RobotHappy":                             "\xf3\xb1\x9c\x99",
		"RobotHappyOutline":                      "\xf3\xb1\x9c\x9a",
		"RobotIndustrial":                        "\xf3\xb0\xad\x86",
		"RobotIndustrialOutline":                 "\xf3\xb1\xa8\x9a",
		"RobotLove":                              "\xf3\xb1\x9a\xa5",
		"RobotLoveOutline":                       "\xf3\xb1\x9a\xa6",
		"RobotMower":                             "\xf3\xb1\x87\xb7",
		"RobotMowerOutline":                      "\xf3\xb1\x87\xb3",
		"RobotOff":                               "\xf3\xb1\x9a\xa7",
		"RobotOffOutline":                        "\xf3\xb1\x99\xbb",
		"RobotOutline":                           "\xf3\xb1\x99\xba",
		"RobotVacuum":                            "\xf3\xb0\x9c\x8d",
		"RobotVacuumAlert":                       "\xf3\xb1\xad\x9d",
		"RobotVacuumOff":                         "\xf3\xb1\xb0\x81",
		"RobotVacuumVariant":                     "\xf3\xb0\xa4\x88",
		"RobotVacuumVariantAlert":                "\xf3\xb1\xad\x9e",
		"RobotVacuumVariantOff":                  "\xf3\xb1\xb0\x82",
		"Rocket":                                 "\xf3\xb0\x91\xa3",
		"RocketLaunch":                           "\xf3\xb1\x93\x9e",
		"RocketLaunchOutline":                    "\xf3\xb1\x93\x9f",
		"RocketOutline":                          "\xf3\xb1\x8e\xaf",
		"Rodent":                                 "\xf3\xb1\x8c\xa7",
		"RollerShade":                            "\xf3\xb1\xa9\xab",
		"RollerShadeClosed":                      "\xf3\xb1\xa9\xac",
		"RollerSkate":                            "\xf3\xb0\xb4\xab",
		"RollerSkateOff":                         "\xf3\xb0\x85\x85",
		"Rollerblade":                            "\xf3\xb0\xb4\xac",
		"RollerbladeOff":                         "\xf3\xb0\x80\xae",
		"Rollupjs":                               "\xf3\xb0\xaf\x80",
		"Rolodex":                                "\xf3\xb1\xaa\xb9",
		"RolodexOutline":                         "\xf3\xb1\xaa\xba",
		"RomanNumeral1":                          "\xf3\xb1\x82\x88",
		"RomanNumeral10":                         "\xf3\xb1\x82\x91",
		"RomanNumeral2":                          "\xf3\xb1\x82\x89",
		"RomanNumeral3":                          "\xf3\xb1\x82\x8a",
		"RomanNumeral4":                          "\xf3\xb1\x82\x8b",
		"RomanNumeral5":                          "\xf3\xb1\x82\x8c",
		"RomanNumeral6":                          "\xf3\xb1\x82\x8d",
		"RomanNumeral7":                          "\xf3\xb1\x82\x8e",
		"RomanNumeral8":                          "\xf3\xb1\x82\x8f",
		"RomanNumeral9":                          "\xf3\xb1\x82\x90",
		"RoomService":                            "\xf3\xb0\xa2\x8d",
		"RoomServiceOutline":                     "\xf3\xb0\xb6\x97",
		"Rotate360":                              "\xf3\xb1\xa6\x99",
		"Rotate3d":                               "\xf3\xb0\xbb\x87",
		"Rotate3dVariant":                        "\xf3\xb0\x91\xa4",
		"RotateLeft":                             "\xf3\xb0\x91\xa5",
		"RotateLeftVariant":                      "\xf3\xb0\x91\xa6",
		"RotateOrbit":                            "\xf3\xb0\xb6\x98",
		"RotateRight":                            "\xf3\xb0\x91\xa7",
		"RotateRightVariant":                     "\xf3\xb0\x91\xa8",
		"RoundedCorner":                          "\xf3\xb0\x98\x87",
		"Router":                                 "\xf3\xb1\x87\xa2",
		"RouterNetwork":                          "\xf3\xb1\x82\x87",
		"RouterNetworkWireless":                  "\xf3\xb1\xb2\x97",
		"RouterWireless":                         "\xf3\xb0\x91\xa9",
		"RouterWirelessOff":                      "\xf3\xb1\x96\xa3",
		"RouterWirelessSettings":                 "\xf3\xb0\xa9\xa9",
		"Routes":                                 "\xf3\xb0\x91\xaa",
		"RoutesClock":                            "\xf3\xb1\x81\x99",
		"Rowing":                                 "\xf3\xb0\x98\x88",
		"Rss":                                    "\xf3\xb0\x91\xab",
		"RssBox":                                 "\xf3\xb0\x91\xac",
		"RssOff":                                 "\xf3\xb0\xbc\xa1",
		"Rug":                                    "\xf3\xb1\x91\xb5",
		"Rugby":                                  "\xf3\xb0\xb6\x99",
		"Ruler":                                  "\xf3\xb0\x91\xad",
		"RulerSquare":                            "\xf3\xb0\xb3\x82",
		"RulerSquareCompass":                     "\xf3\xb0\xba\xbe",
		"Run":                                    "\xf3\xb0\x9c\x8e",
		"RunFast":                                "\xf3\xb0\x91\xae",
		"RvTruck":                                "\xf3\xb1\x87\x94",
		"Sack":                                   "\xf3\xb0\xb4\xae",
		"SackOutline":                            "\xf3\xb1\xb1\x8c",
		"SackPercent":                            "\xf3\xb0\xb4\xaf",
		"Safe":                                   "\xf3\xb0\xa9\xaa",
		"SafeSquare":                             "\xf3\xb1\x89\xbc",
		"SafeSquareOutline":                      "\xf3\xb1\x89\xbd",
		"SafetyGoggles":                          "\xf3\xb0\xb4\xb0",
		"SailBoat":                               "\xf3\xb0\xbb\x88",
		"SailBoatSink":                           "\xf3\xb1\xab\xaf",
		"Sale":                                   "\xf3\xb0\x91\xaf",
		"SaleOutline":                            "\xf3\xb1\xa8\x86",
		"Salesforce":                             "\xf3\xb0\xa2\x8e",
		"Sass":                                   "\xf3\xb0\x9f\xac",
		"Satellite":                              "\xf3\xb0\x91\xb0",
		"SatelliteUplink":                        "\xf3\xb0\xa4\x89",
		"SatelliteVariant":                       "\xf3\xb0\x91\xb1",
		"Sausage":                                "\xf3\xb0\xa2\xba",
		"SausageOff":                             "\xf3\xb1\x9e\x89",
		"SawBlade":                               "\xf3\xb0\xb9\xa1",
		"SawtoothWave":                           "\xf3\xb1\x91\xba",
		"Saxophone":                              "\xf3\xb0\x98\x89",
		"Scale":                                  "\xf3\xb0\x91\xb2",
		"ScaleBalance":                           "\xf3\xb0\x97\x91",
		"ScaleBathroom":                          "\xf3\xb0\x91\xb3",
		"ScaleOff":                               "\xf3\xb1\x81\x9a",
		"ScaleUnbalanced":                        "\xf3\xb1\xa6\xb8",
		"ScanHelper":                             "\xf3\xb1\x8f\x98",
		"Scanner":                                "\xf3\xb0\x9a\xab",
		"ScannerOff":                             "\xf3\xb0\xa4\x8a",
		"ScatterPlot":                            "\xf3\xb0\xbb\x89",
		"ScatterPlotOutline":                     "\xf3\xb0\xbb\x8a",
		"Scent":                                  "\xf3\xb1\xa5\x98",
		"ScentOff":                               "\xf3\xb1\xa5\x99",
		"School":                                 "\xf3\xb0\x91\xb4",
		"SchoolOutline":                          "\xf3\xb1\x86\x80",
		"ScissorsCutting":                        "\xf3\xb0\xa9\xab",
		"Scooter":                                "\xf3\xb1\x96\xbd",
		"ScooterElectric":                        "\xf3\xb1\x96\xbe",
		"Scoreboard":                             "\xf3\xb1\x89\xbe",
		"ScoreboardOutline":                      "\xf3\xb1\x89\xbf",
		"ScreenRotation":                         "\xf3\xb0\x91\xb5",
		"ScreenRotationLock":                     "\xf3\xb0\x91\xb8",
		"ScrewFlatTop":                           "\xf3\xb0\xb7\xb3",
		"ScrewLag":                               "\xf3\xb0\xb7\xb4",
		"ScrewMachineFlatTop":                    "\xf3\xb0\xb7\xb5",
		"ScrewMachineRoundTop":                   "\xf3\xb0\xb7\xb6",
		"ScrewRoundTop":                          "\xf3\xb0\xb7\xb7",
		"Screwdriver":                            "\xf3\xb0\x91\xb6",
		"Script":                                 "\xf3\xb0\xaf\x81",
		"ScriptOutline":                          "\xf3\xb0\x91\xb7",
		"ScriptText":                             "\xf3\xb0\xaf\x82",
		"ScriptTextKey":                          "\xf3\xb1\x9c\xa5",
		"ScriptTextKeyOutline":                   "\xf3\xb1\x9c\xa6",
		"ScriptTextOutline":                      "\xf3\xb0\xaf\x83",
		"ScriptTextPlay":                         "\xf3\xb1\x9c\xa7",
		"ScriptTextPlayOutline":                  "\xf3\xb1\x9c\xa8",
		"Sd":                                     "\xf3\xb0\x91\xb9",
		"Seal":                                   "\xf3\xb0\x91\xba",
		"SealVariant":                            "\xf3\xb0\xbf\x99",
		"SearchWeb":                              "\xf3\xb0\x9c\x8f",
		"Seat":                                   "\xf3\xb0\xb3\x83",
		"SeatFlat":                               "\xf3\xb0\x91\xbb",
		"SeatFlatAngled":                         "\xf3\xb0\x91\xbc",
		"SeatIndividualSuite":                    "\xf3\xb0\x91\xbd",
		"SeatLegroomExtra":                       "\xf3\xb0\x91\xbe",
		"SeatLegroomNormal":                      "\xf3\xb0\x91\xbf",
		"SeatLegroomReduced":                     "\xf3\xb0\x92\x80",
		"SeatOutline":                            "\xf3\xb0\xb3\x84",
		"SeatPassenger":                          "\xf3\xb1\x89\x89",
		"SeatReclineExtra":                       "\xf3\xb0\x92\x81",
		"SeatReclineNormal":                      "\xf3\xb0\x92\x82",
		"Seatbelt":                               "\xf3\xb0\xb3\x85",
		"Security":                               "\xf3\xb0\x92\x83",
		"SecurityNetwork":                        "\xf3\xb0\x92\x84",
		"Seed":                                   "\xf3\xb0\xb9\xa2",
		"SeedOff":                                "\xf3\xb1\x8f\xbd",
		"SeedOffOutline":                         "\xf3\xb1\x8f\xbe",
		"SeedOutline":                            "\xf3\xb0\xb9\xa3",
		"SeedPlus":                               "\xf3\xb1\xa9\xad",
		"SeedPlusOutline":                        "\xf3\xb1\xa9\xae",
		"Seesaw":                                 "\xf3\xb1\x96\xa4",
		"Segment":                                "\xf3\xb0\xbb\x8b",
		"Select":                                 "\xf3\xb0\x92\x85",
		"SelectAll":                              "\xf3\xb0\x92\x86",
		"SelectArrowDown":                        "\xf3\xb1\xad\x99",
		"SelectArrowUp":                          "\xf3\xb1\xad\x98",
		"SelectColor":                            "\xf3\xb0\xb4\xb1",
		"SelectCompare":                          "\xf3\xb0\xab\x99",
		"SelectDrag":                             "\xf3\xb0\xa9\xac",
		"SelectGroup":                            "\xf3\xb0\xbe\x82",
		"SelectInverse":                          "\xf3\xb0\x92\x87",
		"SelectMarker":                           "\xf3\xb1\x8a\x80",
		"SelectMultiple":                         "\xf3\xb1\x8a\x81",
		"SelectMultipleMarker":                   "\xf3\xb1\x8a\x82",
		"SelectOff":                              "\xf3\xb0\x92\x88",
		"SelectPlace":                            "\xf3\xb0\xbf\x9a",
		"SelectRemove":                           "\xf3\xb1\x9f\x81",
		"SelectSearch":                           "\xf3\xb1\x88\x84",
		"Selection":                              "\xf3\xb0\x92\x89",
		"SelectionDrag":                          "\xf3\xb0\xa9\xad",
		"SelectionEllipse":                       "\xf3\xb0\xb4\xb2",
		"SelectionEllipseArrowInside":            "\xf3\xb0\xbc\xa2",
		"SelectionEllipseRemove":                 "\xf3\xb1\x9f\x82",
		"SelectionMarker":                        "\xf3\xb1\x8a\x83",
		"SelectionMultiple":                      "\xf3\xb1\x8a\x85",
		"SelectionMultipleMarker":                "\xf3\xb1\x8a\x84",
		"SelectionOff":                           "\xf3\xb0\x9d\xb7",
		"SelectionRemove":                        "\xf3\xb1\x9f\x83",
		"SelectionSearch":                        "\xf3\xb1\x88\x85",
		"SemanticWeb":                            "\xf3\xb1\x8c\x96",
		"Send":                                   "\xf3\xb0\x92\x8a",
		"SendCheck":                              "\xf3\xb1\x85\xa1",
		"SendCheckOutline":                       "\xf3\xb1\x85\xa2",
		"SendCircle":                             "\xf3\xb0\xb7\xb8",
		"SendCircleOutline":                      "\xf3\xb0\xb7\xb9",
		"SendClock":                              "\xf3\xb1\x85\xa3",
		"SendClockOutline":                       "\xf3\xb1\x85\xa4",
		"SendLock":                               "\xf3\xb0\x9f\xad",
		"SendLockOutline":                        "\xf3\xb1\x85\xa6",
		"SendOutline":                            "\xf3\xb1\x85\xa5",
		"SendVariant":                            "\xf3\xb1\xb1\x8d",
		"SendVariantClock":                       "\xf3\xb1\xb1\xbe",
		"SendVariantClockOutline":                "\xf3\xb1\xb1\xbf",
		"SendVariantOutline":                     "\xf3\xb1\xb1\x8e",
		"SerialPort":                             "\xf3\xb0\x99\x9c",
		"Server":                                 "\xf3\xb0\x92\x8b",
		"ServerMinus":                            "\xf3\xb0\x92\x8c",
		"ServerMinusOutline":                     "\xf3\xb1\xb2\x98",
		"ServerNetwork":                          "\xf3\xb0\x92\x8d",
		"ServerNetworkOff":                       "\xf3\xb0\x92\x8e",
		"ServerNetworkOutline":                   "\xf3\xb1\xb2\x99",
		"ServerOff":                              "\xf3\xb0\x92\x8f",
		"ServerOutline":                          "\xf3\xb1\xb2\x9a",
		"ServerPlus":                             "\xf3\xb0\x92\x90",
		"ServerPlusOutline":                      "\xf3\xb1\xb2\x9b",
		"ServerRemove":                           "\xf3\xb0\x92\x91",
		"ServerSecurity":                         "\xf3\xb0\x92\x92",
		"SetAll":                                 "\xf3\xb0\x9d\xb8",
		"SetCenter":                              "\xf3\xb0\x9d\xb9",
		"SetCenterRight":                         "\xf3\xb0\x9d\xba",
		"SetLeft":                                "\xf3\xb0\x9d\xbb",
		"SetLeftCenter":                          "\xf3\xb0\x9d\xbc",
		"SetLeftRight":                           "\xf3\xb0\x9d\xbd",
		"SetMerge":                               "\xf3\xb1\x93\xa0",
		"SetNone":                                "\xf3\xb0\x9d\xbe",
		"SetRight":                               "\xf3\xb0\x9d\xbf",
		"SetSplit":                               "\xf3\xb1\x93\xa1",
		"SetSquare":                              "\xf3\xb1\x91\x9d",
		"SetTopBox":                              "\xf3\xb0\xa6\x9f",
		"SettingsHelper":                         "\xf3\xb0\xa9\xae",
		"Shaker":                                 "\xf3\xb1\x84\x8e",
		"ShakerOutline":                          "\xf3\xb1\x84\x8f",
		"Shape":                                  "\xf3\xb0\xa0\xb1",
		"ShapeCirclePlus":                        "\xf3\xb0\x99\x9d",
		"ShapeOutline":                           "\xf3\xb0\xa0\xb2",
		"ShapeOvalPlus":                          "\xf3\xb1\x87\xba",
		"ShapePlus":                              "\xf3\xb0\x92\x95",
		"ShapePlusOutline":                       "\xf3\xb1\xb1\x8f",
		"ShapePolygonPlus":                       "\xf3\xb0\x99\x9e",
		"ShapeRectanglePlus":                     "\xf3\xb0\x99\x9f",
		"ShapeSquarePlus":                        "\xf3\xb0\x99\xa0",
		"ShapeSquareRoundedPlus":                 "\xf3\xb1\x93\xba",
		"Share":                                  "\xf3\xb0\x92\x96",
		"ShareAll":                               "\xf3\xb1\x87\xb4",
		"ShareAllOutline":                        "\xf3\xb1\x87\xb5",
		"ShareCircle":                            "\xf3\xb1\x86\xad",
		"ShareOff":                               "\xf3\xb0\xbc\xa3",
		"ShareOffOutline":                        "\xf3\xb0\xbc\xa4",
		"ShareOutline":                           "\xf3\xb0\xa4\xb2",
		"ShareVariant":                           "\xf3\xb0\x92\x97",
		"ShareVariantOutline":                    "\xf3\xb1\x94\x94",
		"Shark":                                  "\xf3\xb1\xa2\xba",
		"SharkFin":                               "\xf3\xb1\x99\xb3",
		"SharkFinOutline":                        "\xf3\xb1\x99\xb4",
		"SharkOff":                               "\xf3\xb1\xa2\xbb",
		"Sheep":                                  "\xf3\xb0\xb3\x86",
		"Shield":                                 "\xf3\xb0\x92\x98",
		"ShieldAccount":                          "\xf3\xb0\xa2\x8f",
		"ShieldAccountOutline":                   "\xf3\xb0\xa8\x92",
		"ShieldAccountVariant":                   "\xf3\xb1\x96\xa7",
		"ShieldAccountVariantOutline":            "\xf3\xb1\x96\xa8",
		"ShieldAirplane":                         "\xf3\xb0\x9a\xbb",
		"ShieldAirplaneOutline":                  "\xf3\xb0\xb3\x87",
		"ShieldAlert":                            "\xf3\xb0\xbb\x8c",
		"ShieldAlertOutline":                     "\xf3\xb0\xbb\x8d",
		"ShieldBug":                              "\xf3\xb1\x8f\x9a",
		"ShieldBugOutline":                       "\xf3\xb1\x8f\x9b",
		"ShieldCar":                              "\xf3\xb0\xbe\x83",
		"ShieldCheck":                            "\xf3\xb0\x95\xa5",
		"ShieldCheckOutline":                     "\xf3\xb0\xb3\x88",
		"ShieldCross":                            "\xf3\xb0\xb3\x89",
		"ShieldCrossOutline":                     "\xf3\xb0\xb3\x8a",
		"ShieldCrown":                            "\xf3\xb1\xa2\xbc",
		"ShieldCrownOutline":                     "\xf3\xb1\xa2\xbd",
		"ShieldEdit":                             "\xf3\xb1\x86\xa0",
		"ShieldEditOutline":                      "\xf3\xb1\x86\xa1",
		"ShieldHalf":                             "\xf3\xb1\x8d\xa0",
		"ShieldHalfFull":                         "\xf3\xb0\x9e\x80",
		"ShieldHome":                             "\xf3\xb0\x9a\x8a",
		"ShieldHomeOutline":                      "\xf3\xb0\xb3\x8b",
		"ShieldKey":                              "\xf3\xb0\xaf\x84",
		"ShieldKeyOutline":                       "\xf3\xb0\xaf\x85",
		"ShieldLinkVariant":                      "\xf3\xb0\xb4\xb3",
		"ShieldLinkVariantOutline":               "\xf3\xb0\xb4\xb4",
		"ShieldLock":                             "\xf3\xb0\xa6\x9d",
		"ShieldLockOpen":                         "\xf3\xb1\xa6\x9a",
		"ShieldLockOpenOutline":                  "\xf3\xb1\xa6\x9b",
		"ShieldLockOutline":                      "\xf3\xb0\xb3\x8c",
		"ShieldMoon":                             "\xf3\xb1\xa0\xa8",
		"ShieldMoonOutline":                      "\xf3\xb1\xa0\xa9",
		"ShieldOff":                              "\xf3\xb0\xa6\x9e",
		"ShieldOffOutline":                       "\xf3\xb0\xa6\x9c",
		"ShieldOutline":                          "\xf3\xb0\x92\x99",
		"ShieldPlus":                             "\xf3\xb0\xab\x9a",
		"ShieldPlusOutline":                      "\xf3\xb0\xab\x9b",
		"ShieldRefresh":                          "\xf3\xb0\x82\xaa",
		"ShieldRefreshOutline":                   "\xf3\xb0\x87\xa0",
		"ShieldRemove":                           "\xf3\xb0\xab\x9c",
		"ShieldRemoveOutline":                    "\xf3\xb0\xab\x9d",
		"ShieldSearch":                           "\xf3\xb0\xb6\x9a",
		"ShieldStar":                             "\xf3\xb1\x84\xbb",
		"ShieldStarOutline":                      "\xf3\xb1\x84\xbc",
		"ShieldSun":                              "\xf3\xb1\x81\x9d",
		"ShieldSunOutline":                       "\xf3\xb1\x81\x9e",
		"ShieldSword":                            "\xf3\xb1\xa2\xbe",
		"ShieldSwordOutline":                     "\xf3\xb1\xa2\xbf",
		"ShieldSync":                             "\xf3\xb1\x86\xa2",
		"ShieldSyncOutline":                      "\xf3\xb1\x86\xa3",
		"Shimmer":                                "\xf3\xb1\x95\x85",
		"ShipWheel":                              "\xf3\xb0\xa0\xb3",
		"ShippingPallet":                         "\xf3\xb1\xa1\x8e",
		"ShoeBallet":                             "\xf3\xb1\x97\x8a",
		"ShoeCleat":                              "\xf3\xb1\x97\x87",
		"ShoeFormal":                             "\xf3\xb0\xad\x87",
		"ShoeHeel":                               "\xf3\xb0\xad\x88",
		"ShoePrint":                              "\xf3\xb0\xb7\xba",
		"ShoeSneaker":                            "\xf3\xb1\x97\x88",
		"Shopping":                               "\xf3\xb0\x92\x9a",
		"ShoppingMusic":                          "\xf3\xb0\x92\x9b",
		"ShoppingOutline":                        "\xf3\xb1\x87\x95",
		"ShoppingSearch":                         "\xf3\xb0\xbe\x84",
		"ShoppingSearchOutline":                  "\xf3\xb1\xa9\xaf",
		"Shore":                                  "\xf3\xb1\x93\xb9",
		"Shovel":                                 "\xf3\xb0\x9c\x90",
		"ShovelOff":                              "\xf3\xb0\x9c\x91",
		"Shower":                                 "\xf3\xb0\xa6\xa0",
		"ShowerHead":                             "\xf3\xb0\xa6\xa1",
		"Shredder":                               "\xf3\xb0\x92\x9c",
		"Shuffle":                                "\xf3\xb0\x92\x9d",
		"ShuffleDisabled":                        "\xf3\xb0\x92\x9e",
		"ShuffleVariant":                         "\xf3\xb0\x92\x9f",
		"Shuriken":                               "\xf3\xb1\x8d\xbf",
		"Sickle":                                 "\xf3\xb1\xa3\x80",
		"Sigma":                                  "\xf3\xb0\x92\xa0",
		"SigmaLower":                             "\xf3\xb0\x98\xab",
		"SignCaution":                            "\xf3\xb0\x92\xa1",
		"SignDirection":                          "\xf3\xb0\x9e\x81",
		"SignDirectionMinus":                     "\xf3\xb1\x80\x80",
		"SignDirectionPlus":                      "\xf3\xb0\xbf\x9c",
		"SignDirectionRemove":                    "\xf3\xb0\xbf\x9d",
		"SignLanguage":                           "\xf3\xb1\xad\x8d",
		"SignLanguageOutline":                    "\xf3\xb1\xad\x8e",
		"SignPole":                               "\xf3\xb1\x93\xb8",
		"SignRealEstate":                         "\xf3\xb1\x84\x98",
		"SignText":                               "\xf3\xb0\x9e\x82",
		"SignYield":                              "\xf3\xb1\xae\xaf",
		"Signal":                                 "\xf3\xb0\x92\xa2",
		"Signal2g":                               "\xf3\xb0\x9c\x92",
		"Signal3g":                               "\xf3\xb0\x9c\x93",
		"Signal4g":                               "\xf3\xb0\x9c\x94",
		"Signal5g":                               "\xf3\xb0\xa9\xaf",
		"SignalCellular1":                        "\xf3\xb0\xa2\xbc",
		"SignalCellular2":                        "\xf3\xb0\xa2\xbd",
		"SignalCellular3":                        "\xf3\xb0\xa2\xbe",
		"SignalCellularOutline":                  "\xf3\xb0\xa2\xbf",
		"SignalDistanceVariant":                  "\xf3\xb0\xb9\xa4",
		"SignalHspa":                             "\xf3\xb0\x9c\x95",
		"SignalHspaPlus":                         "\xf3\xb0\x9c\x96",
		"SignalOff":                              "\xf3\xb0\x9e\x83",
		"SignalVariant":                          "\xf3\xb0\x98\x8a",
		"Signature":                              "\xf3\xb0\xb7\xbb",
		"SignatureFreehand":                      "\xf3\xb0\xb7\xbc",
		"SignatureImage":                         "\xf3\xb0\xb7\xbd",
		"SignatureText":                          "\xf3\xb0\xb7\xbe",
		"Silo":                                   "\xf3\xb1\xae\x9f",
		"SiloOutline":                            "\xf3\xb0\xad\x89",
		"Silverware":                             "\xf3\xb0\x92\xa3",
		"SilverwareClean":                        "\xf3\xb0\xbf\x9e",
		"SilverwareFork":                         "\xf3\xb0\x92\xa4",
		"SilverwareForkKnife":                    "\xf3\xb0\xa9\xb0",
		"SilverwareSpoon":                        "\xf3\xb0\x92\xa5",
		"SilverwareVariant":                      "\xf3\xb0\x92\xa6",
		"Sim":                                    "\xf3\xb0\x92\xa7",
		"SimAlert":                               "\xf3\xb0\x92\xa8",
		"SimAlertOutline":                        "\xf3\xb1\x97\x93",
		"SimOff":                                 "\xf3\xb0\x92\xa9",
		"SimOffOutline":                          "\xf3\xb1\x97\x94",
		"SimOutline":                             "\xf3\xb1\x97\x95",
		"SimpleIcons":                            "\xf3\xb1\x8c\x9d",
		"SinaWeibo":                              "\xf3\xb0\xab\x9f",
		"SineWave":                               "\xf3\xb0\xa5\x9b",
		"Sitemap":                                "\xf3\xb0\x92\xaa",
		"SitemapOutline":                         "\xf3\xb1\xa6\x9c",
		"SizeL":                                  "\xf3\xb1\x8e\xa6",
		"SizeM":                                  "\xf3\xb1\x8e\xa5",
		"SizeS":                                  "\xf3\xb1\x8e\xa4",
		"SizeXl":                                 "\xf3\xb1\x8e\xa7",
		"SizeXs":                                 "\xf3\xb1\x8e\xa3",
		"SizeXxl":                                "\xf3\xb1\x8e\xa8",
		"SizeXxs":                                "\xf3\xb1\x8e\xa2",
		"SizeXxxl":                               "\xf3\xb1\x8e\xa9",
		"Skate":                                  "\xf3\xb0\xb4\xb5",
		"SkateOff":                               "\xf3\xb0\x9a\x99",
		"Skateboard":                             "\xf3\xb1\x93\x82",
		"Skateboarding":                          "\xf3\xb0\x94\x81",
		"SkewLess":                               "\xf3\xb0\xb4\xb6",
		"SkewMore":                               "\xf3\xb0\xb4\xb7",
		"Ski":                                    "\xf3\xb1\x8c\x84",
		"SkiCrossCountry":                        "\xf3\xb1\x8c\x85",
		"SkiWater":                               "\xf3\xb1\x8c\x86",
		"SkipBackward":                           "\xf3\xb0\x92\xab",
		"SkipBackwardOutline":                    "\xf3\xb0\xbc\xa5",
		"SkipForward":                            "\xf3\xb0\x92\xac",
		"SkipForwardOutline":                     "\xf3\xb0\xbc\xa6",
		"SkipNext":                               "\xf3\xb0\x92\xad",
		"SkipNextCircle":                         "\xf3\xb0\x99\xa1",
		"SkipNextCircleOutline":                  "\xf3\xb0\x99\xa2",
		"SkipNextOutline":                        "\xf3\xb0\xbc\xa7",
		"SkipPrevious":                           "\xf3\xb0\x92\xae",
		"SkipPreviousCircle":                     "\xf3\xb0\x99\xa3",
		"SkipPreviousCircleOutline":              "\xf3\xb0\x99\xa4",
		"SkipPreviousOutline":                    "\xf3\xb0\xbc\xa8",
		"Skull":                                  "\xf3\xb0\x9a\x8c",
		"SkullCrossbones":                        "\xf3\xb0\xaf\x86",
		"SkullCrossbonesOutline":                 "\xf3\xb0\xaf\x87",
		"SkullOutline":                           "\xf3\xb0\xaf\x88",
		"SkullScan":                              "\xf3\xb1\x93\x87",
		"SkullScanOutline":                       "\xf3\xb1\x93\x88",
		"Skype":                                  "\xf3\xb0\x92\xaf",
		"SkypeBusiness":                          "\xf3\xb0\x92\xb0",
		"Slack":                                  "\xf3\xb0\x92\xb1",
		"SlashForward":                           "\xf3\xb0\xbf\x9f",
		"SlashForwardBox":                        "\xf3\xb0\xbf\xa0",
		"Sledding":                               "\xf3\xb0\x90\x9b",
		"Sleep":                                  "\xf3\xb0\x92\xb2",
		"SleepOff":                               "\xf3\xb0\x92\xb3",
		"Slide":                                  "\xf3\xb1\x96\xa5",
		"SlopeDownhill":                          "\xf3\xb0\xb7\xbf",
		"SlopeUphill":                            "\xf3\xb0\xb8\x80",
		"SlotMachine":                            "\xf3\xb1\x84\x94",
		"SlotMachineOutline":                     "\xf3\xb1\x84\x95",
		"SmartCard":                              "\xf3\xb1\x82\xbd",
		"SmartCardOff":                           "\xf3\xb1\xa3\xb7",
		"SmartCardOffOutline":                    "\xf3\xb1\xa3\xb8",
		"SmartCardOutline":                       "\xf3\xb1\x82\xbe",
		"SmartCardReader":                        "\xf3\xb1\x82\xbf",
		"SmartCardReaderOutline":                 "\xf3\xb1\x83\x80",
		"Smog":                                   "\xf3\xb0\xa9\xb1",
		"Smoke":                                  "\xf3\xb1\x9e\x99",
		"SmokeDetector":                          "\xf3\xb0\x8e\x92",
		"SmokeDetectorAlert":                     "\xf3\xb1\xa4\xae",
		"SmokeDetectorAlertOutline":              "\xf3\xb1\xa4\xaf",
		"SmokeDetectorOff":                       "\xf3\xb1\xa0\x89",
		"SmokeDetectorOffOutline":                "\xf3\xb1\xa0\x8a",
		"SmokeDetectorOutline":                   "\xf3\xb1\xa0\x88",
		"SmokeDetectorVariant":                   "\xf3\xb1\xa0\x8b",
		"SmokeDetectorVariantAlert":              "\xf3\xb1\xa4\xb0",
		"SmokeDetectorVariantOff":                "\xf3\xb1\xa0\x8c",
		"Smoking":                                "\xf3\xb0\x92\xb4",
		"SmokingOff":                             "\xf3\xb0\x92\xb5",
		"SmokingPipe":                            "\xf3\xb1\x90\x8d",
		"SmokingPipeOff":                         "\xf3\xb1\x90\xa8",
		"Snail":                                  "\xf3\xb1\x99\xb7",
		"Snake":                                  "\xf3\xb1\x94\x8e",
		"Snapchat":                               "\xf3\xb0\x92\xb6",
		"Snowboard":                              "\xf3\xb1\x8c\x87",
		"Snowflake":                              "\xf3\xb0\x9c\x97",
		"SnowflakeAlert":                         "\xf3\xb0\xbc\xa9",
		"SnowflakeCheck":                         "\xf3\xb1\xa9\xb0",
		"SnowflakeMelt":                          "\xf3\xb1\x8b\x8b",
		"SnowflakeOff":                           "\xf3\xb1\x93\xa3",
		"SnowflakeThermometer":                   "\xf3\xb1\xa9\xb1",
		"SnowflakeVariant":                       "\xf3\xb0\xbc\xaa",
		"Snowman":                                "\xf3\xb0\x92\xb7",
		"Snowmobile":                             "\xf3\xb0\x9b\x9d",
		"Snowshoeing":                            "\xf3\xb1\xa9\xb2",
		"Soccer":                                 "\xf3\xb0\x92\xb8",
		"SoccerField":                            "\xf3\xb0\xa0\xb4",
		"SocialDistance2Meters":                  "\xf3\xb1\x95\xb9",
		"SocialDistance6Feet":                    "\xf3\xb1\x95\xba",
		"Sofa":                                   "\xf3\xb0\x92\xb9",
		"SofaOutline":                            "\xf3\xb1\x95\xad",
		"SofaSingle":                             "\xf3\xb1\x95\xae",
		"SofaSingleOutline":                      "\xf3\xb1\x95\xaf",
		"SolarPanel":                             "\xf3\xb0\xb6\x9b",
		"SolarPanelLarge":                        "\xf3\xb0\xb6\x9c",
		"SolarPower":                             "\xf3\xb0\xa9\xb2",
		"SolarPowerVariant":                      "\xf3\xb1\xa9\xb3",
		"SolarPowerVariantOutline":               "\xf3\xb1\xa9\xb4",
		"SolderingIron":                          "\xf3\xb1\x82\x92",
		"Solid":                                  "\xf3\xb0\x9a\x8d",
		"SonyPlaystation":                        "\xf3\xb0\x90\x94",
		"Sort":                                   "\xf3\xb0\x92\xba",
		"SortAlphabeticalAscending":              "\xf3\xb0\x96\xbd",
		"SortAlphabeticalAscendingVariant":       "\xf3\xb1\x85\x88",
		"SortAlphabeticalDescending":             "\xf3\xb0\x96\xbf",
		"SortAlphabeticalDescendingVariant":      "\xf3\xb1\x85\x89",
		"SortAlphabeticalVariant":                "\xf3\xb0\x92\xbb",
		"SortAscending":                          "\xf3\xb0\x92\xbc",
		"SortBoolAscending":                      "\xf3\xb1\x8e\x85",
		"SortBoolAscendingVariant":               "\xf3\xb1\x8e\x86",
		"SortBoolDescending":                     "\xf3\xb1\x8e\x87",
		"SortBoolDescendingVariant":              "\xf3\xb1\x8e\x88",
		"SortCalendarAscending":                  "\xf3\xb1\x95\x87",
		"SortCalendarDescending":                 "\xf3\xb1\x95\x88",
		"SortClockAscending":                     "\xf3\xb1\x95\x89",
		"SortClockAscendingOutline":              "\xf3\xb1\x95\x8a",
		"SortClockDescending":                    "\xf3\xb1\x95\x8b",
		"SortClockDescendingOutline":             "\xf3\xb1\x95\x8c",
		"SortDescending":                         "\xf3\xb0\x92\xbd",
		"SortNumericAscending":                   "\xf3\xb1\x8e\x89",
		"SortNumericAscendingVariant":            "\xf3\xb0\xa4\x8d",
		"SortNumericDescending":                  "\xf3\xb1\x8e\x8a",
		"SortNumericDescendingVariant":           "\xf3\xb0\xab\x92",
		"SortNumericVariant":                     "\xf3\xb0\x92\xbe",
		"SortReverseVariant":                     "\xf3\xb0\x8c\xbc",
		"SortVariant":                            "\xf3\xb0\x92\xbf",
		"SortVariantLock":                        "\xf3\xb0\xb3\x8d",
		"SortVariantLockOpen":                    "\xf3\xb0\xb3\x8e",
		"SortVariantOff":                         "\xf3\xb1\xaa\xbb",
		"SortVariantRemove":                      "\xf3\xb1\x85\x87",
		"Soundbar":                               "\xf3\xb1\x9f\x9b",
		"Soundcloud":                             "\xf3\xb0\x93\x80",
		"SourceBranch":                           "\xf3\xb0\x98\xac",
		"SourceBranchCheck":                      "\xf3\xb1\x93\x8f",
		"SourceBranchMinus":                      "\xf3\xb1\x93\x8b",
		"SourceBranchPlus":                       "\xf3\xb1\x93\x8a",
		"SourceBranchRefresh":                    "\xf3\xb1\x93\x8d",
		"SourceBranchRemove":                     "\xf3\xb1\x93\x8c",
		"SourceBranchSync":                       "\xf3\xb1\x93\x8e",
		"SourceCommit":                           "\xf3\xb0\x9c\x98",
		"SourceCommitEnd":                        "\xf3\xb0\x9c\x99",
		"SourceCommitEndLocal":                   "\xf3\xb0\x9c\x9a",
		"SourceCommitLocal":                      "\xf3\xb0\x9c\x9b",
		"SourceCommitNextLocal":                  "\xf3\xb0\x9c\x9c",
		"SourceCommitStart":                      "\xf3\xb0\x9c\x9d",
		"SourceCommitStartNextLocal":             "\xf3\xb0\x9c\x9e",
		"SourceFork":                             "\xf3\xb0\x93\x81",
		"SourceMerge":                            "\xf3\xb0\x98\xad",
		"SourcePull":                             "\xf3\xb0\x93\x82",
		"SourceRepository":                       "\xf3\xb0\xb3\x8f",
		"SourceRepositoryMultiple":               "\xf3\xb0\xb3\x90",
		"SoySauce":                               "\xf3\xb0\x9f\xae",
		"SoySauceOff":                            "\xf3\xb1\x8f\xbc",
		"Spa":                                    "\xf3\xb0\xb3\x91",
		"SpaOutline":                             "\xf3\xb0\xb3\x92",
		"SpaceInvaders":                          "\xf3\xb0\xaf\x89",
		"SpaceStation":                           "\xf3\xb1\x8e\x83",
		"Spade":                                  "\xf3\xb0\xb9\xa5",
		"Speaker":                                "\xf3\xb0\x93\x83",
		"SpeakerBluetooth":                       "\xf3\xb0\xa6\xa2",
		"SpeakerMessage":                         "\xf3\xb1\xac\x91",
		"SpeakerMultiple":                        "\xf3\xb0\xb4\xb8",
		"SpeakerOff":                             "\xf3\xb0\x93\x84",
		"SpeakerPause":                           "\xf3\xb1\xad\xb3",
		"SpeakerPlay":                            "\xf3\xb1\xad\xb2",
		"SpeakerStop":                            "\xf3\xb1\xad\xb4",
		"SpeakerWireless":                        "\xf3\xb0\x9c\x9f",
		"Spear":                                  "\xf3\xb1\xa1\x85",
		"Speedometer":                            "\xf3\xb0\x93\x85",
		"SpeedometerMedium":                      "\xf3\xb0\xbe\x85",
		"SpeedometerSlow":                        "\xf3\xb0\xbe\x86",
		"Spellcheck":                             "\xf3\xb0\x93\x86",
		"Sphere":                                 "\xf3\xb1\xa5\x94",
		"SphereOff":                              "\xf3\xb1\xa5\x95",
		"Spider":                                 "\xf3\xb1\x87\xaa",
		"SpiderOutline":                          "\xf3\xb1\xb1\xb5",
		"SpiderThread":                           "\xf3\xb1\x87\xab",
		"SpiderWeb":                              "\xf3\xb0\xaf\x8a",
		"SpiritLevel":                            "\xf3\xb1\x93\xb1",
		"SpoonSugar":                             "\xf3\xb1\x90\xa9",
		"Spotify":                                "\xf3\xb0\x93\x87",
		"Spotlight":                              "\xf3\xb0\x93\x88",
		"SpotlightBeam":                          "\xf3\xb0\x93\x89",
		"Spray":                                  "\xf3\xb0\x99\xa5",
		"SprayBottle":                            "\xf3\xb0\xab\xa0",
		"Sprinkler":                              "\xf3\xb1\x81\x9f",
		"SprinklerFire":                          "\xf3\xb1\xa6\x9d",
		"SprinklerVariant":                       "\xf3\xb1\x81\xa0",
		"Sprout":                                 "\xf3\xb0\xb9\xa6",
		"SproutOutline":                          "\xf3\xb0\xb9\xa7",
		"Square":                                 "\xf3\xb0\x9d\xa4",
		"SquareCircle":                           "\xf3\xb1\x94\x80",
		"SquareCircleOutline":                    "\xf3\xb1\xb1\x90",
		"SquareEditOutline":                      "\xf3\xb0\xa4\x8c",
		"SquareMedium":                           "\xf3\xb0\xa8\x93",
		"SquareMediumOutline":                    "\xf3\xb0\xa8\x94",
		"SquareOff":                              "\xf3\xb1\x8b\xae",
		"SquareOffOutline":                       "\xf3\xb1\x8b\xaf",
		"SquareOpacity":                          "\xf3\xb1\xa1\x94",
		"SquareOutline":                          "\xf3\xb0\x9d\xa3",
		"SquareRoot":                             "\xf3\xb0\x9e\x84",
		"SquareRootBox":                          "\xf3\xb0\xa6\xa3",
		"SquareRounded":                          "\xf3\xb1\x93\xbb",
		"SquareRoundedBadge":                     "\xf3\xb1\xa8\x87",
		"SquareRoundedBadgeOutline":              "\xf3\xb1\xa8\x88",
		"SquareRoundedOutline":                   "\xf3\xb1\x93\xbc",
		"SquareSmall":                            "\xf3\xb0\xa8\x95",
		"SquareWave":                             "\xf3\xb1\x91\xbb",
		"Squeegee":                               "\xf3\xb0\xab\xa1",
		"Ssh":                                    "\xf3\xb0\xa3\x80",
		"StackExchange":                          "\xf3\xb0\x98\x8b",
		"StackOverflow":                          "\xf3\xb0\x93\x8c",
		"Stackpath":                              "\xf3\xb0\x8d\x99",
		"Stadium":                                "\xf3\xb0\xbf\xb9",
		"StadiumOutline":                         "\xf3\xb1\xac\x83",
		"StadiumVariant":                         "\xf3\xb0\x9c\xa0",
		"Stairs":                                 "\xf3\xb0\x93\x8d",
		"StairsBox":                              "\xf3\xb1\x8e\x9e",
		"StairsDown":                             "\xf3\xb1\x8a\xbe",
		"StairsUp":                               "\xf3\xb1\x8a\xbd",
		"Stamper":                                "\xf3\xb0\xb4\xb9",
		"StandardDefinition":                     "\xf3\xb0\x9f\xaf",
		"Star":                                   "\xf3\xb0\x93\x8e",
		"StarBox":                                "\xf3\xb0\xa9\xb3",
		"StarBoxMultiple":                        "\xf3\xb1\x8a\x86",
		"StarBoxMultipleOutline":                 "\xf3\xb1\x8a\x87",
		"StarBoxOutline":                         "\xf3\xb0\xa9\xb4",
		"StarCheck":                              "\xf3\xb1\x95\xa6",
		"StarCheckOutline":                       "\xf3\xb1\x95\xaa",
		"StarCircle":                             "\xf3\xb0\x93\x8f",
		"StarCircleOutline":                      "\xf3\xb0\xa6\xa4",
		"StarCog":                                "\xf3\xb1\x99\xa8",
		"StarCogOutline":                         "\xf3\xb1\x99\xa9",
		"StarCrescent":                           "\xf3\xb0\xa5\xb9",
		"StarDavid":                              "\xf3\xb0\xa5\xba",
		"StarFace":                               "\xf3\xb0\xa6\xa5",
		"StarFourPoints":                         "\xf3\xb0\xab\xa2",
		"StarFourPointsBox":                      "\xf3\xb1\xb1\x91",
		"StarFourPointsBoxOutline":               "\xf3\xb1\xb1\x92",
		"StarFourPointsCircle":                   "\xf3\xb1\xb1\x93",
		"StarFourPointsCircleOutline":            "\xf3\xb1\xb1\x94",
		"StarFourPointsOutline":                  "\xf3\xb0\xab\xa3",
		"StarFourPointsSmall":                    "\xf3\xb1\xb1\x95",
		"StarHalf":                               "\xf3\xb0\x89\x86",
		"StarHalfFull":                           "\xf3\xb0\x93\x90",
		"StarMinus":                              "\xf3\xb1\x95\xa4",
		"StarMinusOutline":                       "\xf3\xb1\x95\xa8",
		"StarOff":                                "\xf3\xb0\x93\x91",
		"StarOffOutline":                         "\xf3\xb1\x95\x9b",
		"StarOutline":                            "\xf3\xb0\x93\x92",
		"StarPlus":                               "\xf3\xb1\x95\xa3",
		"StarPlusOutline":                        "\xf3\xb1\x95\xa7",
		"StarRemove":                             "\xf3\xb1\x95\xa5",
		"StarRemoveOutline":                      "\xf3\xb1\x95\xa9",
		"StarSettings":                           "\xf3\xb1\x99\xaa",
		"StarSettingsOutline":                    "\xf3\xb1\x99\xab",
		"StarShooting":                           "\xf3\xb1\x9d\x81",
		"StarShootingOutline":                    "\xf3\xb1\x9d\x82",
		"StarThreePoints":                        "\xf3\xb0\xab\xa4",
		"StarThreePointsOutline":                 "\xf3\xb0\xab\xa5",
		"StateMachine":                           "\xf3\xb1\x87\xaf",
		"Steam":                                  "\xf3\xb0\x93\x93",
		"Steering":                               "\xf3\xb0\x93\x94",
		"SteeringOff":                            "\xf3\xb0\xa4\x8e",
		"StepBackward":                           "\xf3\xb0\x93\x95",
		"StepBackward2":                          "\xf3\xb0\x93\x96",
		"StepForward":                            "\xf3\xb0\x93\x97",
		"StepForward2":                           "\xf3\xb0\x93\x98",
		"Stethoscope":                            "\xf3\xb0\x93\x99",
		"Sticker":                                "\xf3\xb1\x8d\xa4",
		"StickerAlert":                           "\xf3\xb1\x8d\xa5",
		"StickerAlertOutline":                    "\xf3\xb1\x8d\xa6",
		"StickerCheck":                           "\xf3\xb1\x8d\xa7",
		"StickerCheckOutline":                    "\xf3\xb1\x8d\xa8",
		"StickerCircleOutline":                   "\xf3\xb0\x97\x90",
		"StickerEmoji":                           "\xf3\xb0\x9e\x85",
		"StickerMinus":                           "\xf3\xb1\x8d\xa9",
		"StickerMinusOutline":                    "\xf3\xb1\x8d\xaa",
		"StickerOutline":                         "\xf3\xb1\x8d\xab",
		"StickerPlus":                            "\xf3\xb1\x8d\xac",
		"StickerPlusOutline":                     "\xf3\xb1\x8d\xad",
		"StickerRemove":                          "\xf3\xb1\x8d\xae",
		"StickerRemoveOutline":                   "\xf3\xb1\x8d\xaf",
		"StickerText":                            "\xf3\xb1\x9e\x8e",
		"StickerTextOutline":                     "\xf3\xb1\x9e\x8f",
		"Stocking":                               "\xf3\xb0\x93\x9a",
		"Stomach":                                "\xf3\xb1\x82\x93",
		"Stool":                                  "\xf3\xb1\xa5\x9d",
		"StoolOutline":                           "\xf3\xb1\xa5\x9e",
		"Stop":                                   "\xf3\xb0\x93\x9b",
		"StopCircle":                             "\xf3\xb0\x99\xa6",
		"StopCircleOutline":                      "\xf3\xb0\x99\xa7",
		"StorageTank":                            "\xf3\xb1\xa9\xb5",
		"StorageTankOutline":                     "\xf3\xb1\xa9\xb6",
		"Store":                                  "\xf3\xb0\x93\x9c",
		"Store24Hour":                            "\xf3\xb0\x93\x9d",
		"StoreAlert":                             "\xf3\xb1\xa3\x81",
		"StoreAlertOutline":                      "\xf3\xb1\xa3\x82",
		"StoreCheck":                             "\xf3\xb1\xa3\x83",
		"StoreCheckOutline":                      "\xf3\xb1\xa3\x84",
		"StoreClock":                             "\xf3\xb1\xa3\x85",
		"StoreClockOutline":                      "\xf3\xb1\xa3\x86",
		"StoreCog":                               "\xf3\xb1\xa3\x87",
		"StoreCogOutline":                        "\xf3\xb1\xa3\x88",
		"StoreEdit":                              "\xf3\xb1\xa3\x89",
		"StoreEditOutline":                       "\xf3\xb1\xa3\x8a",
		"StoreMarker":                            "\xf3\xb1\xa3\x8b",
		"StoreMarkerOutline":                     "\xf3\xb1\xa3\x8c",
		"StoreMinus":                             "\xf3\xb1\x99\x9e",
		"StoreMinusOutline":                      "\xf3\xb1\xa3\x8d",
		"StoreOff":                               "\xf3\xb1\xa3\x8e",
		"StoreOffOutline":                        "\xf3\xb1\xa3\x8f",
		"StoreOutline":                           "\xf3\xb1\x8d\xa1",
		"StorePlus":                              "\xf3\xb1\x99\x9f",
		"StorePlusOutline":                       "\xf3\xb1\xa3\x90",
		"StoreRemove":                            "\xf3\xb1\x99\xa0",
		"StoreRemoveOutline":                     "\xf3\xb1\xa3\x91",
		"StoreSearch":                            "\xf3\xb1\xa3\x92",
		"StoreSearchOutline":                     "\xf3\xb1\xa3\x93",
		"StoreSettings":                          "\xf3\xb1\xa3\x94",
		"StoreSettingsOutline":                   "\xf3\xb1\xa3\x95",
		"Storefront":                             "\xf3\xb0\x9f\x87",
		"StorefrontCheck":                        "\xf3\xb1\xad\xbd",
		"StorefrontCheckOutline":                 "\xf3\xb1\xad\xbe",
		"StorefrontEdit":                         "\xf3\xb1\xad\xbf",
		"StorefrontEditOutline":                  "\xf3\xb1\xae\x80",
		"StorefrontMinus":                        "\xf3\xb1\xae\x83",
		"StorefrontMinusOutline":                 "\xf3\xb1\xae\x84",
		"StorefrontOutline":                      "\xf3\xb1\x83\x81",
		"StorefrontPlus":                         "\xf3\xb1\xae\x81",
		"StorefrontPlusOutline":                  "\xf3\xb1\xae\x82",
		"StorefrontRemove":                       "\xf3\xb1\xae\x85",
		"StorefrontRemoveOutline":                "\xf3\xb1\xae\x86",
		"Stove":                                  "\xf3\xb0\x93\x9e",
		"Strategy":                               "\xf3\xb1\x87\x96",
		"StretchToPage":                          "\xf3\xb0\xbc\xab",
		"StretchToPageOutline":                   "\xf3\xb0\xbc\xac",
		"StringLights":                           "\xf3\xb1\x8a\xba",
		"StringLightsOff":                        "\xf3\xb1\x8a\xbb",
		"SubdirectoryArrowLeft":                  "\xf3\xb0\x98\x8c",
		"SubdirectoryArrowRight":                 "\xf3\xb0\x98\x8d",
		"Submarine":                              "\xf3\xb1\x95\xac",
		"Subtitles":                              "\xf3\xb0\xa8\x96",
		"SubtitlesOutline":                       "\xf3\xb0\xa8\x97",
		"Subway":                                 "\xf3\xb0\x9a\xac",
		"SubwayAlertVariant":                     "\xf3\xb0\xb6\x9d",
		"SubwayVariant":                          "\xf3\xb0\x93\x9f",
		"Summit":                                 "\xf3\xb0\x9e\x86",
		"SunAngle":                               "\xf3\xb1\xac\xa7",
		"SunAngleOutline":                        "\xf3\xb1\xac\xa8",
		"SunClock":                               "\xf3\xb1\xa9\xb7",
		"SunClockOutline":                        "\xf3\xb1\xa9\xb8",
		"SunCompass":                             "\xf3\xb1\xa6\xa5",
		"SunSnowflake":                           "\xf3\xb1\x9e\x96",
		"SunSnowflakeVariant":                    "\xf3\xb1\xa9\xb9",
		"SunThermometer":                         "\xf3\xb1\xa3\x96",
		"SunThermometerOutline":                  "\xf3\xb1\xa3\x97",
		"SunWireless":                            "\xf3\xb1\x9f\xbe",
		"SunWirelessOutline":                     "\xf3\xb1\x9f\xbf",
		"Sunglasses":                             "\xf3\xb0\x93\xa0",
		"Surfing":                                "\xf3\xb1\x9d\x86",
		"SurroundSound":                          "\xf3\xb0\x97\x85",
		"SurroundSound20":                        "\xf3\xb0\x9f\xb0",
		"SurroundSound21":                        "\xf3\xb1\x9c\xa9",
		"SurroundSound31":                        "\xf3\xb0\x9f\xb1",
		"SurroundSound51":                        "\xf3\xb0\x9f\xb2",
		"SurroundSound512":                       "\xf3\xb1\x9c\xaa",
		"SurroundSound71":                        "\xf3\xb0\x9f\xb3",
		"Svg":                                    "\xf3\xb0\x9c\xa1",
		"SwapHorizontal":                         "\xf3\xb0\x93\xa1",
		"SwapHorizontalBold":                     "\xf3\xb0\xaf\x8d",
		"SwapHorizontalCircle":                   "\xf3\xb0\xbf\xa1",
		"SwapHorizontalCircleOutline":            "\xf3\xb0\xbf\xa2",
		"SwapHorizontalHidden":                   "\xf3\xb1\xb4\x8e",
		"SwapHorizontalVariant":                  "\xf3\xb0\xa3\x81",
		"SwapVertical":                           "\xf3\xb0\x93\xa2",
		"SwapVerticalBold":                       "\xf3\xb0\xaf\x8e",
		"SwapVerticalCircle":                     "\xf3\xb0\xbf\xa3",
		"SwapVerticalCircleOutline":              "\xf3\xb0\xbf\xa4",
		"SwapVerticalVariant":                    "\xf3\xb0\xa3\x82",
		"Swim":                                   "\xf3\xb0\x93\xa3",
		"Switch":                                 "\xf3\xb0\x93\xa4",
		"Sword":                                  "\xf3\xb0\x93\xa5",
		"SwordCross":                             "\xf3\xb0\x9e\x87",
		"SyllabaryHangul":                        "\xf3\xb1\x8c\xb3",
		"SyllabaryHiragana":                      "\xf3\xb1\x8c\xb4",
		"SyllabaryKatakana":                      "\xf3\xb1\x8c\xb5",
		"SyllabaryKatakanaHalfwidth":             "\xf3\xb1\x8c\xb6",
		"Symbol":                                 "\xf3\xb1\x94\x81",
		"Symfony":                                "\xf3\xb0\xab\xa6",
		"Synagogue":                              "\xf3\xb1\xac\x84",
		"SynagogueOutline":                       "\xf3\xb1\xac\x85",
		"Sync":                                   "\xf3\xb0\x93\xa6",
		"SyncAlert":                              "\xf3\xb0\x93\xa7",
		"SyncCircle":                             "\xf3\xb1\x8d\xb8",
		"SyncOff":                                "\xf3\xb0\x93\xa8",
		"Tab":                                    "\xf3\xb0\x93\xa9",
		"TabMinus":                               "\xf3\xb0\xad\x8b",
		"TabPlus":                                "\xf3\xb0\x9d\x9c",
		"TabRemove":                              "\xf3\xb0\xad\x8c",
		"TabSearch":                              "\xf3\xb1\xa6\x9e",
		"TabUnselected":                          "\xf3\xb0\x93\xaa",
		"Table":                                  "\xf3\xb0\x93\xab",
		"TableAccount":                           "\xf3\xb1\x8e\xb9",
		"TableAlert":                             "\xf3\xb1\x8e\xba",
		"TableArrowDown":                         "\xf3\xb1\x8e\xbb",
		"TableArrowLeft":                         "\xf3\xb1\x8e\xbc",
		"TableArrowRight":                        "\xf3\xb1\x8e\xbd",
		"TableArrowUp":                           "\xf3\xb1\x8e\xbe",
		"TableBorder":                            "\xf3\xb0\xa8\x98",
		"TableCancel":                            "\xf3\xb1\x8e\xbf",
		"TableChair":                             "\xf3\xb1\x81\xa1",
		"TableCheck":                             "\xf3\xb1\x8f\x80",
		"TableClock":                             "\xf3\xb1\x8f\x81",
		"TableCog":                               "\xf3\xb1\x8f\x82",
		"TableColumn":                            "\xf3\xb0\xa0\xb5",
		"TableColumnPlusAfter":                   "\xf3\xb0\x93\xac",
		"TableColumnPlusBefore":                  "\xf3\xb0\x93\xad",
		"TableColumnRemove":                      "\xf3\xb0\x93\xae",
		"TableColumnWidth":                       "\xf3\xb0\x93\xaf",
		"TableEdit":                              "\xf3\xb0\x93\xb0",
		"TableEye":                               "\xf3\xb1\x82\x94",
		"TableEyeOff":                            "\xf3\xb1\x8f\x83",
		"TableFilter":                            "\xf3\xb1\xae\x8c",
		"TableFurniture":                         "\xf3\xb0\x96\xbc",
		"TableHeadersEye":                        "\xf3\xb1\x88\x9d",
		"TableHeadersEyeOff":                     "\xf3\xb1\x88\x9e",
		"TableHeart":                             "\xf3\xb1\x8f\x84",
		"TableKey":                               "\xf3\xb1\x8f\x85",
		"TableLarge":                             "\xf3\xb0\x93\xb1",
		"TableLargePlus":                         "\xf3\xb0\xbe\x87",
		"TableLargeRemove":                       "\xf3\xb0\xbe\x88",
		"TableLock":                              "\xf3\xb1\x8f\x86",
		"TableMergeCells":                        "\xf3\xb0\xa6\xa6",
		"TableMinus":                             "\xf3\xb1\x8f\x87",
		"TableMultiple":                          "\xf3\xb1\x8f\x88",
		"TableNetwork":                           "\xf3\xb1\x8f\x89",
		"TableOfContents":                        "\xf3\xb0\xa0\xb6",
		"TableOff":                               "\xf3\xb1\x8f\x8a",
		"TablePicnic":                            "\xf3\xb1\x9d\x83",
		"TablePivot":                             "\xf3\xb1\xa0\xbc",
		"TablePlus":                              "\xf3\xb0\xa9\xb5",
		"TableQuestion":                          "\xf3\xb1\xac\xa1",
		"TableRefresh":                           "\xf3\xb1\x8e\xa0",
		"TableRemove":                            "\xf3\xb0\xa9\xb6",
		"TableRow":                               "\xf3\xb0\xa0\xb7",
		"TableRowHeight":                         "\xf3\xb0\x93\xb2",
		"TableRowPlusAfter":                      "\xf3\xb0\x93\xb3",
		"TableRowPlusBefore":                     "\xf3\xb0\x93\xb4",
		"TableRowRemove":                         "\xf3\xb0\x93\xb5",
		"TableSearch":                            "\xf3\xb0\xa4\x8f",
		"TableSettings":                          "\xf3\xb0\xa0\xb8",
		"TableSplitCell":                         "\xf3\xb1\x90\xaa",
		"TableStar":                              "\xf3\xb1\x8f\x8b",
		"TableSync":                              "\xf3\xb1\x8e\xa1",
		"TableTennis":                            "\xf3\xb0\xb9\xa8",
		"Tablet":                                 "\xf3\xb0\x93\xb6",
		"TabletCellphone":                        "\xf3\xb0\xa6\xa7",
		"TabletDashboard":                        "\xf3\xb0\xbb\x8e",
		"Taco":                                   "\xf3\xb0\x9d\xa2",
		"Tag":                                    "\xf3\xb0\x93\xb9",
		"TagArrowDown":                           "\xf3\xb1\x9c\xab",
		"TagArrowDownOutline":                    "\xf3\xb1\x9c\xac",
		"TagArrowLeft":                           "\xf3\xb1\x9c\xad",
		"TagArrowLeftOutline":                    "\xf3\xb1\x9c\xae",
		"TagArrowRight":                          "\xf3\xb1\x9c\xaf",
		"TagArrowRightOutline":                   "\xf3\xb1\x9c\xb0",
		"TagArrowUp":                             "\xf3\xb1\x9c\xb1",
		"TagArrowUpOutline":                      "\xf3\xb1\x9c\xb2",
		"TagCheck":                               "\xf3\xb1\xa9\xba",
		"TagCheckOutline":                        "\xf3\xb1\xa9\xbb",
		"TagEdit":                                "\xf3\xb1\xb2\x9c",
		"TagEditOutline":                         "\xf3\xb1\xb2\x9d",
		"TagFaces":                               "\xf3\xb0\x93\xba",
		"TagHeart":                               "\xf3\xb0\x9a\x8b",
		"TagHeartOutline":                        "\xf3\xb0\xaf\x8f",
		"TagHidden":                              "\xf3\xb1\xb1\xb6",
		"TagMinus":                               "\xf3\xb0\xa4\x90",
		"TagMinusOutline":                        "\xf3\xb1\x88\x9f",
		"TagMultiple":                            "\xf3\xb0\x93\xbb",
		"TagMultipleOutline":                     "\xf3\xb1\x8b\xb7",
		"TagOff":                                 "\xf3\xb1\x88\xa0",
		"TagOffOutline":                          "\xf3\xb1\x88\xa1",
		"TagOutline":                             "\xf3\xb0\x93\xbc",
		"TagPlus":                                "\xf3\xb0\x9c\xa2",
		"TagPlusOutline":                         "\xf3\xb1\x88\xa2",
		"TagRemove":                              "\xf3\xb0\x9c\xa3",
		"TagRemoveOutline":                       "\xf3\xb1\x88\xa3",
		"TagSearch":                              "\xf3\xb1\xa4\x87",
		"TagSearchOutline":                       "\xf3\xb1\xa4\x88",
		"TagText":                                "\xf3\xb1\x88\xa4",
		"TagTextOutline":                         "\xf3\xb0\x93\xbd",
		"Tailwind":                               "\xf3\xb1\x8f\xbf",
		"TallyMark1":                             "\xf3\xb1\xaa\xbc",
		"TallyMark2":                             "\xf3\xb1\xaa\xbd",
		"TallyMark3":                             "\xf3\xb1\xaa\xbe",
		"TallyMark4":                             "\xf3\xb1\xaa\xbf",
		"TallyMark5":                             "\xf3\xb1\xab\x80",
		"Tangram":                                "\xf3\xb0\x93\xb8",
		"Tank":                                   "\xf3\xb0\xb4\xba",
		"TankerTruck":                            "\xf3\xb0\xbf\xa5",
		"TapeDrive":                              "\xf3\xb1\x9b\x9f",
		"TapeMeasure":                            "\xf3\xb0\xad\x8d",
		"Target":                                 "\xf3\xb0\x93\xbe",
		"TargetAccount":                          "\xf3\xb0\xaf\x90",
		"TargetVariant":                          "\xf3\xb0\xa9\xb7",
		"Taxi":                                   "\xf3\xb0\x93\xbf",
		"Tea":                                    "\xf3\xb0\xb6\x9e",
		"TeaOutline":                             "\xf3\xb0\xb6\x9f",
		"Teamviewer":                             "\xf3\xb0\x94\x80",
		"TeddyBear":                              "\xf3\xb1\xa3\xbb",
		"Telescope":                              "\xf3\xb0\xad\x8e",
		"Television":                             "\xf3\xb0\x94\x82",
		"TelevisionAmbientLight":                 "\xf3\xb1\x8d\x96",
		"TelevisionBox":                          "\xf3\xb0\xa0\xb9",
		"TelevisionClassic":                      "\xf3\xb0\x9f\xb4",
		"TelevisionClassicOff":                   "\xf3\xb0\xa0\xba",
		"TelevisionGuide":                        "\xf3\xb0\x94\x83",
		"TelevisionOff":                          "\xf3\xb0\xa0\xbb",
		"TelevisionPause":                        "\xf3\xb0\xbe\x89",
		"TelevisionPlay":                         "\xf3\xb0\xbb\x8f",
		"TelevisionShimmer":                      "\xf3\xb1\x84\x90",
		"TelevisionSpeaker":                      "\xf3\xb1\xac\x9b",
		"TelevisionSpeakerOff":                   "\xf3\xb1\xac\x9c",
		"TelevisionStop":                         "\xf3\xb0\xbe\x8a",
		"TemperatureCelsius":                     "\xf3\xb0\x94\x84",
		"TemperatureFahrenheit":                  "\xf3\xb0\x94\x85",
		"TemperatureKelvin":                      "\xf3\xb0\x94\x86",
		"TempleBuddhist":                         "\xf3\xb1\xac\x86",
		"TempleBuddhistOutline":                  "\xf3\xb1\xac\x87",
		"TempleHindu":                            "\xf3\xb1\xac\x88",
		"TempleHinduOutline":                     "\xf3\xb1\xac\x89",
		"Tennis":                                 "\xf3\xb0\xb6\xa0",
		"TennisBall":                             "\xf3\xb0\x94\x87",
		"TennisBallOutline":                      "\xf3\xb1\xb1\x9f",
		"Tent":                                   "\xf3\xb0\x94\x88",
		"Terraform":                              "\xf3\xb1\x81\xa2",
		"Terrain":                                "\xf3\xb0\x94\x89",
		"TestTube":                               "\xf3\xb0\x99\xa8",
		"TestTubeEmpty":                          "\xf3\xb0\xa4\x91",
		"TestTubeOff":                            "\xf3\xb0\xa4\x92",
		"Text":                                   "\xf3\xb0\xa6\xa8",
		"TextAccount":                            "\xf3\xb1\x95\xb0",
		"TextBox":                                "\xf3\xb0\x88\x9a",
		"TextBoxCheck":                           "\xf3\xb0\xba\xa6",
		"TextBoxCheckOutline":                    "\xf3\xb0\xba\xa7",
		"TextBoxEdit":                            "\xf3\xb1\xa9\xbc",
		"TextBoxEditOutline":                     "\xf3\xb1\xa9\xbd",
		"TextBoxMinus":                           "\xf3\xb0\xba\xa8",
		"TextBoxMinusOutline":                    "\xf3\xb0\xba\xa9",
		"TextBoxMultiple":                        "\xf3\xb0\xaa\xb7",
		"TextBoxMultipleOutline":                 "\xf3\xb0\xaa\xb8",
		"TextBoxOutline":                         "\xf3\xb0\xa7\xad",
		"TextBoxPlus":                            "\xf3\xb0\xba\xaa",
		"TextBoxPlusOutline":                     "\xf3\xb0\xba\xab",
		"TextBoxRemove":                          "\xf3\xb0\xba\xac",
		"TextBoxRemoveOutline":                   "\xf3\xb0\xba\xad",
		"TextBoxSearch":                          "\xf3\xb0\xba\xae",
		"TextBoxSearchOutline":                   "\xf3\xb0\xba\xaf",
		"TextLong":                               "\xf3\xb0\xa6\xaa",
		"TextRecognition":                        "\xf3\xb1\x84\xbd",
		"TextSearch":                             "\xf3\xb1\x8e\xb8",
		"TextSearchVariant":                      "\xf3\xb1\xa9\xbe",
		"TextShadow":                             "\xf3\xb0\x99\xa9",
		"TextShort":                              "\xf3\xb0\xa6\xa9",
		"Texture":                                "\xf3\xb0\x94\x8c",
		"TextureBox":                             "\xf3\xb0\xbf\xa6",
		"Theater":                                "\xf3\xb0\x94\x8d",
		"ThemeLightDark":                         "\xf3\xb0\x94\x8e",
		"Thermometer":                            "\xf3\xb0\x94\x8f",
		"ThermometerAlert":                       "\xf3\xb0\xb8\x81",
		"ThermometerAuto":                        "\xf3\xb1\xac\x8f",
		"ThermometerBluetooth":                   "\xf3\xb1\xa2\x95",
		"ThermometerCheck":                       "\xf3\xb1\xa9\xbf",
		"ThermometerChevronDown":                 "\xf3\xb0\xb8\x82",
		"ThermometerChevronUp":                   "\xf3\xb0\xb8\x83",
		"ThermometerHigh":                        "\xf3\xb1\x83\x82",
		"ThermometerLines":                       "\xf3\xb0\x94\x90",
		"ThermometerLow":                         "\xf3\xb1\x83\x83",
		"ThermometerMinus":                       "\xf3\xb0\xb8\x84",
		"ThermometerOff":                         "\xf3\xb1\x94\xb1",
		"ThermometerPlus":                        "\xf3\xb0\xb8\x85",
		"ThermometerProbe":                       "\xf3\xb1\xac\xab",
		"ThermometerProbeOff":                    "\xf3\xb1\xac\xac",
		"ThermometerWater":                       "\xf3\xb1\xaa\x80",
		"Thermostat":                             "\xf3\xb0\x8e\x93",
		"ThermostatAuto":                         "\xf3\xb1\xac\x97",
		"ThermostatBox":                          "\xf3\xb0\xa2\x91",
		"ThermostatBoxAuto":                      "\xf3\xb1\xac\x98",
		"ThermostatCog":                          "\xf3\xb1\xb2\x80",
		"ThoughtBubble":                          "\xf3\xb0\x9f\xb6",
		"ThoughtBubbleOutline":                   "\xf3\xb0\x9f\xb7",
		"ThumbDown":                              "\xf3\xb0\x94\x91",
		"ThumbDownOutline":                       "\xf3\xb0\x94\x92",
		"ThumbUp":                                "\xf3\xb0\x94\x93",
		"ThumbUpOutline":                         "\xf3\xb0\x94\x94",
		"ThumbsUpDown":                           "\xf3\xb0\x94\x95",
		"ThumbsUpDownOutline":                    "\xf3\xb1\xa4\x94",
		"Ticket":                                 "\xf3\xb0\x94\x96",
		"TicketAccount":                          "\xf3\xb0\x94\x97",
		"TicketConfirmation":                     "\xf3\xb0\x94\x98",
		"TicketConfirmationOutline":              "\xf3\xb1\x8e\xaa",
		"TicketOutline":                          "\xf3\xb0\xa4\x93",
		"TicketPercent":                          "\xf3\xb0\x9c\xa4",
		"TicketPercentOutline":                   "\xf3\xb1\x90\xab",
		"Tie":                                    "\xf3\xb0\x94\x99",
		"Tilde":                                  "\xf3\xb0\x9c\xa5",
		"TildeOff":                               "\xf3\xb1\xa3\xb3",
		"Timelapse":                              "\xf3\xb0\x94\x9a",
		"Timeline":                               "\xf3\xb0\xaf\x91",
		"TimelineAlert":                          "\xf3\xb0\xbe\x95",
		"TimelineAlertOutline":                   "\xf3\xb0\xbe\x98",
		"TimelineCheck":                          "\xf3\xb1\x94\xb2",
		"TimelineCheckOutline":                   "\xf3\xb1\x94\xb3",
		"TimelineClock":                          "\xf3\xb1\x87\xbb",
		"TimelineClockOutline":                   "\xf3\xb1\x87\xbc",
		"TimelineMinus":                          "\xf3\xb1\x94\xb4",
		"TimelineMinusOutline":                   "\xf3\xb1\x94\xb5",
		"TimelineOutline":                        "\xf3\xb0\xaf\x92",
		"TimelinePlus":                           "\xf3\xb0\xbe\x96",
		"TimelinePlusOutline":                    "\xf3\xb0\xbe\x97",
		"TimelineQuestion":                       "\xf3\xb0\xbe\x99",
		"TimelineQuestionOutline":                "\xf3\xb0\xbe\x9a",
		"TimelineRemove":                         "\xf3\xb1\x94\xb6",
		"TimelineRemoveOutline":                  "\xf3\xb1\x94\xb7",
		"TimelineText":                           "\xf3\xb0\xaf\x93",
		"TimelineTextOutline":                    "\xf3\xb0\xaf\x94",
		"Timer":                                  "\xf3\xb1\x8e\xab",
		"Timer10":                                "\xf3\xb0\x94\x9c",
		"Timer3":                                 "\xf3\xb0\x94\x9d",
		"TimerAlert":                             "\xf3\xb1\xab\x8c",
		"TimerAlertOutline":                      "\xf3\xb1\xab\x8d",
		"TimerCancel":                            "\xf3\xb1\xab\x8e",
		"TimerCancelOutline":                     "\xf3\xb1\xab\x8f",
		"TimerCheck":                             "\xf3\xb1\xab\x90",
		"TimerCheckOutline":                      "\xf3\xb1\xab\x91",
		"TimerCog":                               "\xf3\xb1\xa4\xa5",
		"TimerCogOutline":                        "\xf3\xb1\xa4\xa6",
		"TimerEdit":                              "\xf3\xb1\xab\x92",
		"TimerEditOutline":                       "\xf3\xb1\xab\x93",
		"TimerLock":                              "\xf3\xb1\xab\x94",
		"TimerLockOpen":                          "\xf3\xb1\xab\x95",
		"TimerLockOpenOutline":                   "\xf3\xb1\xab\x96",
		"TimerLockOutline":                       "\xf3\xb1\xab\x97",
		"TimerMarker":                            "\xf3\xb1\xab\x98",
		"TimerMarkerOutline":                     "\xf3\xb1\xab\x99",
		"TimerMinus":                             "\xf3\xb1\xab\x9a",
		"TimerMinusOutline":                      "\xf3\xb1\xab\x9b",
		"TimerMusic":                             "\xf3\xb1\xab\x9c",
		"TimerMusicOutline":                      "\xf3\xb1\xab\x9d",
		"TimerOff":                               "\xf3\xb1\x8e\xac",
		"TimerOffOutline":                        "\xf3\xb0\x94\x9e",
		"TimerOutline":                           "\xf3\xb0\x94\x9b",
		"TimerPause":                             "\xf3\xb1\xab\x9e",
		"TimerPauseOutline":                      "\xf3\xb1\xab\x9f",
		"TimerPlay":                              "\xf3\xb1\xab\xa0",
		"TimerPlayOutline":                       "\xf3\xb1\xab\xa1",
		"TimerPlus":                              "\xf3\xb1\xab\xa2",
		"TimerPlusOutline":                       "\xf3\xb1\xab\xa3",
		"TimerRefresh":                           "\xf3\xb1\xab\xa4",
		"TimerRefreshOutline":                    "\xf3\xb1\xab\xa5",
		"TimerRemove":                            "\xf3\xb1\xab\xa6",
		"TimerRemoveOutline":                     "\xf3\xb1\xab\xa7",
		"TimerSand":                              "\xf3\xb0\x94\x9f",
		"TimerSandComplete":                      "\xf3\xb1\xa6\x9f",
		"TimerSandEmpty":                         "\xf3\xb0\x9a\xad",
		"TimerSandFull":                          "\xf3\xb0\x9e\x8c",
		"TimerSandPaused":                        "\xf3\xb1\xa6\xa0",
		"TimerSettings":                          "\xf3\xb1\xa4\xa3",
		"TimerSettingsOutline":                   "\xf3\xb1\xa4\xa4",
		"TimerStar":                              "\xf3\xb1\xab\xa8",
		"TimerStarOutline":                       "\xf3\xb1\xab\xa9",
		"TimerStop":                              "\xf3\xb1\xab\xaa",
		"TimerStopOutline":                       "\xf3\xb1\xab\xab",
		"TimerSync":                              "\xf3\xb1\xab\xac",
		"TimerSyncOutline":                       "\xf3\xb1\xab\xad",
		"Timetable":                              "\xf3\xb0\x94\xa0",
		"Tire":                                   "\xf3\xb1\xa2\x96",
		"Toaster":                                "\xf3\xb1\x81\xa3",
		"ToasterOff":                             "\xf3\xb1\x86\xb7",
		"ToasterOven":                            "\xf3\xb0\xb3\x93",
		"ToggleSwitch":                           "\xf3\xb0\x94\xa1",
		"ToggleSwitchOff":                        "\xf3\xb0\x94\xa2",
		"ToggleSwitchOffOutline":                 "\xf3\xb0\xa8\x99",
		"ToggleSwitchOutline":                    "\xf3\xb0\xa8\x9a",
		"ToggleSwitchVariant":                    "\xf3\xb1\xa8\xa5",
		"ToggleSwitchVariantOff":                 "\xf3\xb1\xa8\xa6",
		"Toilet":                                 "\xf3\xb0\xa6\xab",
		"Toolbox":                                "\xf3\xb0\xa6\xac",
		"ToolboxOutline":                         "\xf3\xb0\xa6\xad",
		"Tools":                                  "\xf3\xb1\x81\xa4",
		"Tooltip":                                "\xf3\xb0\x94\xa3",
		"TooltipAccount":                         "\xf3\xb0\x80\x8c",
		"TooltipCellphone":                       "\xf3\xb1\xa0\xbb",
		"TooltipCheck":                           "\xf3\xb1\x95\x9c",
		"TooltipCheckOutline":                    "\xf3\xb1\x95\x9d",
		"TooltipEdit":                            "\xf3\xb0\x94\xa4",
		"TooltipEditOutline":                     "\xf3\xb1\x8b\x85",
		"TooltipImage":                           "\xf3\xb0\x94\xa5",
		"TooltipImageOutline":                    "\xf3\xb0\xaf\x95",
		"TooltipMinus":                           "\xf3\xb1\x95\x9e",
		"TooltipMinusOutline":                    "\xf3\xb1\x95\x9f",
		"TooltipOutline":                         "\xf3\xb0\x94\xa6",
		"TooltipPlus":                            "\xf3\xb0\xaf\x96",
		"TooltipPlusOutline":                     "\xf3\xb0\x94\xa7",
		"TooltipQuestion":                        "\xf3\xb1\xae\xba",
		"TooltipQuestionOutline":                 "\xf3\xb1\xae\xbb",
		"TooltipRemove":                          "\xf3\xb1\x95\xa0",
		"TooltipRemoveOutline":                   "\xf3\xb1\x95\xa1",
		"TooltipText":                            "\xf3\xb0\x94\xa8",
		"TooltipTextOutline":                     "\xf3\xb0\xaf\x97",
		"Tooth":                                  "\xf3\xb0\xa3\x83",
		"ToothOutline":                           "\xf3\xb0\x94\xa9",
		"Toothbrush":                             "\xf3\xb1\x84\xa9",
		"ToothbrushElectric":                     "\xf3\xb1\x84\xac",
		"ToothbrushPaste":                        "\xf3\xb1\x84\xaa",
		"Torch":                                  "\xf3\xb1\x98\x86",
		"Tortoise":                               "\xf3\xb0\xb4\xbb",
		"Toslink":                                "\xf3\xb1\x8a\xb8",
		"TouchTextOutline":                       "\xf3\xb1\xb1\xa0",
		"Tournament":                             "\xf3\xb0\xa6\xae",
		"TowTruck":                               "\xf3\xb0\xa0\xbc",
		"TowerBeach":                             "\xf3\xb0\x9a\x81",
		"TowerFire":                              "\xf3\xb0\x9a\x82",
		"TownHall":                               "\xf3\xb1\xa1\xb5",
		"ToyBrick":                               "\xf3\xb1\x8a\x88",
		"ToyBrickMarker":                         "\xf3\xb1\x8a\x89",
		"ToyBrickMarkerOutline":                  "\xf3\xb1\x8a\x8a",
		"ToyBrickMinus":                          "\xf3\xb1\x8a\x8b",
		"ToyBrickMinusOutline":                   "\xf3\xb1\x8a\x8c",
		"ToyBrickOutline":                        "\xf3\xb1\x8a\x8d",
		"ToyBrickPlus":                           "\xf3\xb1\x8a\x8e",
		"ToyBrickPlusOutline":                    "\xf3\xb1\x8a\x8f",
		"ToyBrickRemove":                         "\xf3\xb1\x8a\x90",
		"ToyBrickRemoveOutline":                  "\xf3\xb1\x8a\x91",
		"ToyBrickSearch":                         "\xf3\xb1\x8a\x92",
		"ToyBrickSearchOutline":                  "\xf3\xb1\x8a\x93",
		"TrackLight":                             "\xf3\xb0\xa4\x94",
		"TrackLightOff":                          "\xf3\xb1\xac\x81",
		"Trackpad":                               "\xf3\xb0\x9f\xb8",
		"TrackpadLock":                           "\xf3\xb0\xa4\xb3",
		"Tractor":                                "\xf3\xb0\xa2\x92",
		"TractorVariant":                         "\xf3\xb1\x93\x84",
		"Trademark":                              "\xf3\xb0\xa9\xb8",
		"TrafficCone":                            "\xf3\xb1\x8d\xbc",
		"TrafficLight":                           "\xf3\xb0\x94\xab",
		"TrafficLightOutline":                    "\xf3\xb1\xa0\xaa",
		"Train":                                  "\xf3\xb0\x94\xac",
		"TrainBus":                               "\xf3\xb1\xb3\x87",
		"TrainCar":                               "\xf3\xb0\xaf\x98",
		"TrainCarAutorack":                       "\xf3\xb1\xac\xad",
		"TrainCarBox":                            "\xf3\xb1\xac\xae",
		"TrainCarBoxFull":                        "\xf3\xb1\xac\xaf",
		"TrainCarBoxOpen":                        "\xf3\xb1\xac\xb0",
		"TrainCarCaboose":                        "\xf3\xb1\xac\xb1",
		"TrainCarCenterbeam":                     "\xf3\xb1\xac\xb2",
		"TrainCarCenterbeamFull":                 "\xf3\xb1\xac\xb3",
		"TrainCarContainer":                      "\xf3\xb1\xac\xb4",
		"TrainCarFlatbed":                        "\xf3\xb1\xac\xb5",
		"TrainCarFlatbedCar":                     "\xf3\xb1\xac\xb6",
		"TrainCarFlatbedTank":                    "\xf3\xb1\xac\xb7",
		"TrainCarGondola":                        "\xf3\xb1\xac\xb8",
		"TrainCarGondolaFull":                    "\xf3\xb1\xac\xb9",
		"TrainCarHopper":                         "\xf3\xb1\xac\xba",
		"TrainCarHopperCovered":                  "\xf3\xb1\xac\xbb",
		"TrainCarHopperFull":                     "\xf3\xb1\xac\xbc",
		"TrainCarIntermodal":                     "\xf3\xb1\xac\xbd",
		"TrainCarPassenger":                      "\xf3\xb1\x9c\xb3",
		"TrainCarPassengerDoor":                  "\xf3\xb1\x9c\xb4",
		"TrainCarPassengerDoorOpen":              "\xf3\xb1\x9c\xb5",
		"TrainCarPassengerVariant":               "\xf3\xb1\x9c\xb6",
		"TrainCarTank":                           "\xf3\xb1\xac\xbe",
		"TrainVariant":                           "\xf3\xb0\xa3\x84",
		"Tram":                                   "\xf3\xb0\x94\xad",
		"TramSide":                               "\xf3\xb0\xbf\xa7",
		"Transcribe":                             "\xf3\xb0\x94\xae",
		"TranscribeClose":                        "\xf3\xb0\x94\xaf",
		"Transfer":                               "\xf3\xb1\x81\xa5",
		"TransferDown":                           "\xf3\xb0\xb6\xa1",
		"TransferLeft":                           "\xf3\xb0\xb6\xa2",
		"TransferRight":                          "\xf3\xb0\x94\xb0",
		"TransferUp":                             "\xf3\xb0\xb6\xa3",
		"TransitConnection":                      "\xf3\xb0\xb4\xbc",
		"TransitConnectionHorizontal":            "\xf3\xb1\x95\x86",
		"TransitConnectionVariant":               "\xf3\xb0\xb4\xbd",
		"TransitDetour":                          "\xf3\xb0\xbe\x8b",
		"TransitSkip":                            "\xf3\xb1\x94\x95",
		"TransitTransfer":                        "\xf3\xb0\x9a\xae",
		"Transition":                             "\xf3\xb0\xa4\x95",
		"TransitionMasked":                       "\xf3\xb0\xa4\x96",
		"Translate":                              "\xf3\xb0\x97\x8a",
		"TranslateOff":                           "\xf3\xb0\xb8\x86",
		"TranslateVariant":                       "\xf3\xb1\xae\x99",
		"TransmissionTower":                      "\xf3\xb0\xb4\xbe",
		"TransmissionTowerExport":                "\xf3\xb1\xa4\xac",
		"TransmissionTowerImport":                "\xf3\xb1\xa4\xad",
		"TransmissionTowerOff":                   "\xf3\xb1\xa7\x9d",
		"TrashCan":                               "\xf3\xb0\xa9\xb9",
		"TrashCanOutline":                        "\xf3\xb0\xa9\xba",
		"Tray":                                   "\xf3\xb1\x8a\x94",
		"TrayAlert":                              "\xf3\xb1\x8a\x95",
		"TrayArrowDown":                          "\xf3\xb0\x84\xa0",
		"TrayArrowUp":                            "\xf3\xb0\x84\x9d",
		"TrayFull":                               "\xf3\xb1\x8a\x96",
		"TrayMinus":                              "\xf3\xb1\x8a\x97",
		"TrayPlus":                               "\xf3\xb1\x8a\x98",
		"TrayRemove":                             "\xf3\xb1\x8a\x99",
		"TreasureChest":                          "\xf3\xb0\x9c\xa6",
		"TreasureChestOutline":                   "\xf3\xb1\xb1\xb7",
		"Tree":                                   "\xf3\xb0\x94\xb1",
		"TreeOutline":                            "\xf3\xb0\xb9\xa9",
		"Trello":                                 "\xf3\xb0\x94\xb2",
		"TrendingDown":                           "\xf3\xb0\x94\xb3",
		"TrendingNeutral":                        "\xf3\xb0\x94\xb4",
		"TrendingUp":                             "\xf3\xb0\x94\xb5",
		"Triangle":                               "\xf3\xb0\x94\xb6",
		"TriangleDown":                           "\xf3\xb1\xb1\x96",
		"TriangleDownOutline":                    "\xf3\xb1\xb1\x97",
		"TriangleOutline":                        "\xf3\xb0\x94\xb7",
		"TriangleSmallDown":                      "\xf3\xb1\xa8\x89",
		"TriangleSmallUp":                        "\xf3\xb1\xa8\x8a",
		"TriangleWave":                           "\xf3\xb1\x91\xbc",
		"Triforce":                               "\xf3\xb0\xaf\x99",
		"Trophy":                                 "\xf3\xb0\x94\xb8",
		"TrophyAward":                            "\xf3\xb0\x94\xb9",
		"TrophyBroken":                           "\xf3\xb0\xb6\xa4",
		"TrophyOutline":                          "\xf3\xb0\x94\xba",
		"TrophyVariant":                          "\xf3\xb0\x94\xbb",
		"TrophyVariantOutline":                   "\xf3\xb0\x94\xbc",
		"Truck":                                  "\xf3\xb0\x94\xbd",
		"TruckAlert":                             "\xf3\xb1\xa7\x9e",
		"TruckAlertOutline":                      "\xf3\xb1\xa7\x9f",
		"TruckCargoContainer":                    "\xf3\xb1\xa3\x98",
		"TruckCheck":                             "\xf3\xb0\xb3\x94",
		"TruckCheckOutline":                      "\xf3\xb1\x8a\x9a",
		"TruckDelivery":                          "\xf3\xb0\x94\xbe",
		"TruckDeliveryOutline":                   "\xf3\xb1\x8a\x9b",
		"TruckFast":                              "\xf3\xb0\x9e\x88",
		"TruckFastOutline":                       "\xf3\xb1\x8a\x9c",
		"TruckFlatbed":                           "\xf3\xb1\xa2\x91",
		"TruckMinus":                             "\xf3\xb1\xa6\xae",
		"TruckMinusOutline":                      "\xf3\xb1\xa6\xbd",
		"TruckOffRoad":                           "\xf3\xb1\xb2\x9e",
		"TruckOffRoadOff":                        "\xf3\xb1\xb2\x9f",
		"TruckOutline":                           "\xf3\xb1\x8a\x9d",
		"TruckPlus":                              "\xf3\xb1\xa6\xad",
		"TruckPlusOutline":                       "\xf3\xb1\xa6\xbc",
		"TruckRemove":                            "\xf3\xb1\xa6\xaf",
		"TruckRemoveOutline":                     "\xf3\xb1\xa6\xbe",
		"TruckSnowflake":                         "\xf3\xb1\xa6\xa6",
		"TruckTrailer":                           "\xf3\xb0\x9c\xa7",
		"Trumpet":                                "\xf3\xb1\x82\x96",
		"TshirtCrew":                             "\xf3\xb0\xa9\xbb",
		"TshirtCrewOutline":                      "\xf3\xb0\x94\xbf",
		"TshirtV":                                "\xf3\xb0\xa9\xbc",
		"TshirtVOutline":                         "\xf3\xb0\x95\x80",
		"Tsunami":                                "\xf3\xb1\xaa\x81",
		"TumbleDryer":                            "\xf3\xb0\xa4\x97",
		"TumbleDryerAlert":                       "\xf3\xb1\x86\xba",
		"TumbleDryerOff":                         "\xf3\xb1\x86\xbb",
		"Tune":                                   "\xf3\xb0\x98\xae",
		"TuneVariant":                            "\xf3\xb1\x95\x82",
		"TuneVertical":                           "\xf3\xb0\x99\xaa",
		"TuneVerticalVariant":                    "\xf3\xb1\x95\x83",
		"Tunnel":                                 "\xf3\xb1\xa0\xbd",
		"TunnelOutline":                          "\xf3\xb1\xa0\xbe",
		"Turbine":                                "\xf3\xb1\xaa\x82",
		"Turkey":                                 "\xf3\xb1\x9c\x9b",
		"Turnstile":                              "\xf3\xb0\xb3\x95",
		"TurnstileOutline":                       "\xf3\xb0\xb3\x96",
		"Turtle":                                 "\xf3\xb0\xb3\x97",
		"Twitch":                                 "\xf3\xb0\x95\x83",
		"Twitter":                                "\xf3\xb0\x95\x84",
		"TwoFactorAuthentication":                "\xf3\xb0\xa6\xaf",
		"Typewriter":                             "\xf3\xb0\xbc\xad",
		"Ubisoft":                                "\xf3\xb0\xaf\x9a",
		"Ubuntu":                                 "\xf3\xb0\x95\x88",
		"Ufo":                                    "\xf3\xb1\x83\x84",
		"UfoOutline":                             "\xf3\xb1\x83\x85",
		"UltraHighDefinition":                    "\xf3\xb0\x9f\xb9",
		"Umbraco":                                "\xf3\xb0\x95\x89",
		"Umbrella":                               "\xf3\xb0\x95\x8a",
		"UmbrellaBeach":                          "\xf3\xb1\xa2\x8a",
		"UmbrellaBeachOutline":                   "\xf3\xb1\xa2\x8b",
		"UmbrellaClosed":                         "\xf3\xb0\xa6\xb0",
		"UmbrellaClosedOutline":                  "\xf3\xb1\x8f\xa2",
		"UmbrellaClosedVariant":                  "\xf3\xb1\x8f\xa1",
		"UmbrellaOutline":                        "\xf3\xb0\x95\x8b",
		"UnderwearOutline":                       "\xf3\xb1\xb4\x8f",
		"Undo":                                   "\xf3\xb0\x95\x8c",
		"UndoVariant":                            "\xf3\xb0\x95\x8d",
		"UnfoldLessHorizontal":                   "\xf3\xb0\x95\x8e",
		"UnfoldLessVertical":                     "\xf3\xb0\x9d\xa0",
		"UnfoldMoreHorizontal":                   "\xf3\xb0\x95\x8f",
		"UnfoldMoreVertical":                     "\xf3\xb0\x9d\xa1",
		"Ungroup":                                "\xf3\xb0\x95\x90",
		"Unicode":                                "\xf3\xb0\xbb\x90",
		"Unicorn":                                "\xf3\xb1\x97\x82",
		"UnicornVariant":                         "\xf3\xb1\x97\x83",
		"Unicycle":                               "\xf3\xb1\x97\xa5",
		"Unity":                                  "\xf3\xb0\x9a\xaf",
		"Unreal":                                 "\xf3\xb0\xa6\xb1",
		"Update":                                 "\xf3\xb0\x9a\xb0",
		"Upload":                                 "\xf3\xb0\x95\x92",
		"UploadBox":                              "\xf3\xb1\xb4\x90",
		"UploadBoxOutline":                       "\xf3\xb1\xb4\x91",
		"UploadCircle":                           "\xf3\xb1\xb4\x92",
		"UploadCircleOutline":                    "\xf3\xb1\xb4\x93",
		"UploadLock":                             "\xf3\xb1\x8d\xb3",
		"UploadLockOutline":                      "\xf3\xb1\x8d\xb4",
		"UploadMultiple":                         "\xf3\xb0\xa0\xbd",
		"UploadMultipleOutline":                  "\xf3\xb1\xb4\x94",
		"UploadNetwork":                          "\xf3\xb0\x9b\xb6",
		"UploadNetworkOutline":                   "\xf3\xb0\xb3\x98",
		"UploadOff":                              "\xf3\xb1\x83\x86",
		"UploadOffOutline":                       "\xf3\xb1\x83\x87",
		"UploadOutline":                          "\xf3\xb0\xb8\x87",
		"Usb":                                    "\xf3\xb0\x95\x93",
		"UsbCPort":                               "\xf3\xb1\xb2\xbf",
		"UsbFlashDrive":                          "\xf3\xb1\x8a\x9e",
		"UsbFlashDriveOutline":                   "\xf3\xb1\x8a\x9f",
		"UsbPort":                                "\xf3\xb1\x87\xb0",
		"Vacuum":                                 "\xf3\xb1\xa6\xa1",
		"VacuumOutline":                          "\xf3\xb1\xa6\xa2",
		"Valve":                                  "\xf3\xb1\x81\xa6",
		"ValveClosed":                            "\xf3\xb1\x81\xa7",
		"ValveOpen":                              "\xf3\xb1\x81\xa8",
		"VanPassenger":                           "\xf3\xb0\x9f\xba",
		"VanUtility":                             "\xf3\xb0\x9f\xbb",
		"Vanish":                                 "\xf3\xb0\x9f\xbc",
		"VanishQuarter":                          "\xf3\xb1\x95\x94",
		"VanityLight":                            "\xf3\xb1\x87\xa1",
		"Variable":                               "\xf3\xb0\xab\xa7",
		"VariableBox":                            "\xf3\xb1\x84\x91",
		"VectorArrangeAbove":                     "\xf3\xb0\x95\x94",
		"VectorArrangeBelow":                     "\xf3\xb0\x95\x95",
		"VectorBezier":                           "\xf3\xb0\xab\xa8",
		"VectorCircle":                           "\xf3\xb0\x95\x96",
		"VectorCircleVariant":                    "\xf3\xb0\x95\x97",
		"VectorCombine":                          "\xf3\xb0\x95\x98",
		"VectorCurve":                            "\xf3\xb0\x95\x99",
		"VectorDifference":                       "\xf3\xb0\x95\x9a",
		"VectorDifferenceAb":                     "\xf3\xb0\x95\x9b",
		"VectorDifferenceBa":                     "\xf3\xb0\x95\x9c",
		"VectorEllipse":                          "\xf3\xb0\xa2\x93",
		"VectorIntersection":                     "\xf3\xb0\x95\x9d",
		"VectorLine":                             "\xf3\xb0\x95\x9e",
		"VectorLink":                             "\xf3\xb0\xbf\xa8",
		"VectorPoint":                            "\xf3\xb0\x87\x84",
		"VectorPointEdit":                        "\xf3\xb0\xa7\xa8",
		"VectorPointMinus":                       "\xf3\xb1\xad\xb8",
		"VectorPointPlus":                        "\xf3\xb1\xad\xb9",
		"VectorPointSelect":                      "\xf3\xb0\x95\x9f",
		"VectorPolygon":                          "\xf3\xb0\x95\xa0",
		"VectorPolygonVariant":                   "\xf3\xb1\xa1\x96",
		"VectorPolyline":                         "\xf3\xb0\x95\xa1",
		"VectorPolylineEdit":                     "\xf3\xb1\x88\xa5",
		"VectorPolylineMinus":                    "\xf3\xb1\x88\xa6",
		"VectorPolylinePlus":                     "\xf3\xb1\x88\xa7",
		"VectorPolylineRemove":                   "\xf3\xb1\x88\xa8",
		"VectorRadius":                           "\xf3\xb0\x9d\x8a",
		"VectorRectangle":                        "\xf3\xb0\x97\x86",
		"VectorSelection":                        "\xf3\xb0\x95\xa2",
		"VectorSquare":                           "\xf3\xb0\x80\x81",
		"VectorSquareClose":                      "\xf3\xb1\xa1\x97",
		"VectorSquareEdit":                       "\xf3\xb1\xa3\x99",
		"VectorSquareMinus":                      "\xf3\xb1\xa3\x9a",
		"VectorSquareOpen":                       "\xf3\xb1\xa1\x98",
		"VectorSquarePlus":                       "\xf3\xb1\xa3\x9b",
		"VectorSquareRemove":                     "\xf3\xb1\xa3\x9c",
		"VectorTriangle":                         "\xf3\xb0\x95\xa3",
		"VectorUnion":                            "\xf3\xb0\x95\xa4",
		"Vhs":                                    "\xf3\xb0\xa8\x9b",
		"Vibrate":                                "\xf3\xb0\x95\xa6",
		"VibrateOff":                             "\xf3\xb0\xb3\x99",
		"Video":                                  "\xf3\xb0\x95\xa7",
		"Video2d":                                "\xf3\xb1\xa8\x9c",
		"Video3d":                                "\xf3\xb0\x9f\xbd",
		"Video3dOff":                             "\xf3\xb1\x8f\x99",
		"Video3dVariant":                         "\xf3\xb0\xbb\x91",
		"Video4kBox":                             "\xf3\xb0\xa0\xbe",
		"VideoAccount":                           "\xf3\xb0\xa4\x99",
		"VideoBox":                               "\xf3\xb0\x83\xbd",
		"VideoBoxOff":                            "\xf3\xb0\x83\xbe",
		"VideoCheck":                             "\xf3\xb1\x81\xa9",
		"VideoCheckOutline":                      "\xf3\xb1\x81\xaa",
		"VideoHighDefinition":                    "\xf3\xb1\x94\xae",
		"VideoImage":                             "\xf3\xb0\xa4\x9a",
		"VideoInputAntenna":                      "\xf3\xb0\xa0\xbf",
		"VideoInputComponent":                    "\xf3\xb0\xa1\x80",
		"VideoInputHdmi":                         "\xf3\xb0\xa1\x81",
		"VideoInputScart":                        "\xf3\xb0\xbe\x8c",
		"VideoInputSvideo":                       "\xf3\xb0\xa1\x82",
		"VideoMarker":                            "\xf3\xb1\xa6\xa9",
		"VideoMarkerOutline":                     "\xf3\xb1\xa6\xaa",
		"VideoMinus":                             "\xf3\xb0\xa6\xb2",
		"VideoMinusOutline":                      "\xf3\xb0\x8a\xba",
		"VideoOff":                               "\xf3\xb0\x95\xa8",
		"VideoOffOutline":                        "\xf3\xb0\xaf\x9b",
		"VideoOutline":                           "\xf3\xb0\xaf\x9c",
		"VideoPlus":                              "\xf3\xb0\xa6\xb3",
		"VideoPlusOutline":                       "\xf3\xb0\x87\x93",
		"VideoStabilization":                     "\xf3\xb0\xa4\x9b",
		"VideoStandardDefinition":                "\xf3\xb1\xb2\xa0",
		"VideoSwitch":                            "\xf3\xb0\x95\xa9",
		"VideoSwitchOutline":                     "\xf3\xb0\x9e\x90",
		"VideoVintage":                           "\xf3\xb0\xa8\x9c",
		"VideoWireless":                          "\xf3\xb0\xbb\x92",
		"VideoWirelessOutline":                   "\xf3\xb0\xbb\x93",
		"ViewAgenda":                             "\xf3\xb0\x95\xaa",
		"ViewAgendaOutline":                      "\xf3\xb1\x87\x98",
		"ViewArray":                              "\xf3\xb0\x95\xab",
		"ViewArrayOutline":                       "\xf3\xb1\x92\x85",
		"ViewCarousel":                           "\xf3\xb0\x95\xac",
		"ViewCarouselOutline":                    "\xf3\xb1\x92\x86",
		"ViewColumn":                             "\xf3\xb0\x95\xad",
		"ViewColumnOutline":                      "\xf3\xb1\x92\x87",
		"ViewComfy":                              "\xf3\xb0\xb9\xaa",
		"ViewComfyOutline":                       "\xf3\xb1\x92\x88",
		"ViewCompact":                            "\xf3\xb0\xb9\xab",
		"ViewCompactOutline":                     "\xf3\xb0\xb9\xac",
		"ViewDashboard":                          "\xf3\xb0\x95\xae",
		"ViewDashboardEdit":                      "\xf3\xb1\xa5\x87",
		"ViewDashboardEditOutline":               "\xf3\xb1\xa5\x88",
		"ViewDashboardOutline":                   "\xf3\xb0\xa8\x9d",
		"ViewDashboardVariant":                   "\xf3\xb0\xa1\x83",
		"ViewDashboardVariantOutline":            "\xf3\xb1\x92\x89",
		"ViewDay":                                "\xf3\xb0\x95\xaf",
		"ViewDayOutline":                         "\xf3\xb1\x92\x8a",
		"ViewGallery":                            "\xf3\xb1\xa2\x88",
		"ViewGalleryOutline":                     "\xf3\xb1\xa2\x89",
		"ViewGrid":                               "\xf3\xb0\x95\xb0",
		"ViewGridCompact":                        "\xf3\xb1\xb1\xa1",
		"ViewGridOutline":                        "\xf3\xb1\x87\x99",
		"ViewGridPlus":                           "\xf3\xb0\xbe\x8d",
		"ViewGridPlusOutline":                    "\xf3\xb1\x87\x9a",
		"ViewHeadline":                           "\xf3\xb0\x95\xb1",
		"ViewList":                               "\xf3\xb0\x95\xb2",
		"ViewListOutline":                        "\xf3\xb1\x92\x8b",
		"ViewModule":                             "\xf3\xb0\x95\xb3",
		"ViewModuleOutline":                      "\xf3\xb1\x92\x8c",
		"ViewParallel":                           "\xf3\xb0\x9c\xa8",
		"ViewParallelOutline":                    "\xf3\xb1\x92\x8d",
		"ViewQuilt":                              "\xf3\xb0\x95\xb4",
		"ViewQuiltOutline":                       "\xf3\xb1\x92\x8e",
		"ViewSequential":                         "\xf3\xb0\x9c\xa9",
		"ViewSequentialOutline":                  "\xf3\xb1\x92\x8f",
		"ViewSplitHorizontal":                    "\xf3\xb0\xaf\x8b",
		"ViewSplitVertical":                      "\xf3\xb0\xaf\x8c",
		"ViewStream":                             "\xf3\xb0\x95\xb5",
		"ViewStreamOutline":                      "\xf3\xb1\x92\x90",
		"ViewWeek":                               "\xf3\xb0\x95\xb6",
		"ViewWeekOutline":                        "\xf3\xb1\x92\x91",
		"Vimeo":                                  "\xf3\xb0\x95\xb7",
		"Violin":                                 "\xf3\xb0\x98\x8f",
		"VirtualReality":                         "\xf3\xb0\xa2\x94",
		"Virus":                                  "\xf3\xb1\x8e\xb6",
		"VirusOff":                               "\xf3\xb1\xa3\xa1",
		"VirusOffOutline":                        "\xf3\xb1\xa3\xa2",
		"VirusOutline":                           "\xf3\xb1\x8e\xb7",
		"Vlc":                                    "\xf3\xb0\x95\xbc",
		"Voicemail":                              "\xf3\xb0\x95\xbd",
		"Volcano":                                "\xf3\xb1\xaa\x83",
		"VolcanoOutline":                         "\xf3\xb1\xaa\x84",
		"Volleyball":                             "\xf3\xb0\xa6\xb4",
		"VolumeEqual":                            "\xf3\xb1\xac\x90",
		"VolumeHigh":                             "\xf3\xb0\x95\xbe",
		"VolumeLow":                              "\xf3\xb0\x95\xbf",
		"VolumeMedium":                           "\xf3\xb0\x96\x80",
		"VolumeMinus":                            "\xf3\xb0\x9d\x9e",
		"VolumeMute":                             "\xf3\xb0\x9d\x9f",
		"VolumeOff":                              "\xf3\xb0\x96\x81",
		"VolumePlus":                             "\xf3\xb0\x9d\x9d",
		"VolumeSource":                           "\xf3\xb1\x84\xa0",
		"VolumeVariantOff":                       "\xf3\xb0\xb8\x88",
		"VolumeVibrate":                          "\xf3\xb1\x84\xa1",
		"Vote":                                   "\xf3\xb0\xa8\x9f",
		"VoteOutline":                            "\xf3\xb0\xa8\xa0",
		"Vpn":                                    "\xf3\xb0\x96\x82",
		"Vuejs":                                  "\xf3\xb0\xa1\x84",
		"Vuetify":                                "\xf3\xb0\xb9\xad",
		"Walk":                                   "\xf3\xb0\x96\x83",
		"Wall":                                   "\xf3\xb0\x9f\xbe",
		"WallFire":                               "\xf3\xb1\xa8\x91",
		"WallSconce":                             "\xf3\xb0\xa4\x9c",
		"WallSconceFlat":                         "\xf3\xb0\xa4\x9d",
		"WallSconceFlatOutline":                  "\xf3\xb1\x9f\x89",
		"WallSconceFlatVariant":                  "\xf3\xb0\x90\x9c",
		"WallSconceFlatVariantOutline":           "\xf3\xb1\x9f\x8a",
		"WallSconceOutline":                      "\xf3\xb1\x9f\x8b",
		"WallSconceRound":                        "\xf3\xb0\x9d\x88",
		"WallSconceRoundOutline":                 "\xf3\xb1\x9f\x8c",
		"WallSconceRoundVariant":                 "\xf3\xb0\xa4\x9e",
		"WallSconceRoundVariantOutline":          "\xf3\xb1\x9f\x8d",
		"Wallet":                                 "\xf3\xb0\x96\x84",
		"WalletBifold":                           "\xf3\xb1\xb1\x98",
		"WalletBifoldOutline":                    "\xf3\xb1\xb1\x99",
		"WalletGiftcard":                         "\xf3\xb0\x96\x85",
		"WalletMembership":                       "\xf3\xb0\x96\x86",
		"WalletOutline":                          "\xf3\xb0\xaf\x9d",
		"WalletPlus":                             "\xf3\xb0\xbe\x8e",
		"WalletPlusOutline":                      "\xf3\xb0\xbe\x8f",
		"WalletTravel":                           "\xf3\xb0\x96\x87",
		"Wallpaper":                              "\xf3\xb0\xb8\x89",
		"Wan":                                    "\xf3\xb0\x96\x88",
		"Wardrobe":                               "\xf3\xb0\xbe\x90",
		"WardrobeOutline":                        "\xf3\xb0\xbe\x91",
		"Warehouse":                              "\xf3\xb0\xbe\x81",
		"WashingMachine":                         "\xf3\xb0\x9c\xaa",
		"WashingMachineAlert":                    "\xf3\xb1\x86\xbc",
		"WashingMachineOff":                      "\xf3\xb1\x86\xbd",
		"Watch":                                  "\xf3\xb0\x96\x89",
		"WatchExport":                            "\xf3\xb0\x96\x8a",
		"WatchExportVariant":                     "\xf3\xb0\xa2\x95",
		"WatchImport":                            "\xf3\xb0\x96\x8b",
		"WatchImportVariant":                     "\xf3\xb0\xa2\x96",
		"WatchVariant":                           "\xf3\xb0\xa2\x97",
		"WatchVibrate":                           "\xf3\xb0\x9a\xb1",
		"WatchVibrateOff":                        "\xf3\xb0\xb3\x9a",
		"Water":                                  "\xf3\xb0\x96\x8c",
		"WaterAlert":                             "\xf3\xb1\x94\x82",
		"WaterAlertOutline":                      "\xf3\xb1\x94\x83",
		"WaterBoiler":                            "\xf3\xb0\xbe\x92",
		"WaterBoilerAlert":                       "\xf3\xb1\x86\xb3",
		"WaterBoilerAuto":                        "\xf3\xb1\xae\x98",
		"WaterBoilerOff":                         "\xf3\xb1\x86\xb4",
		"WaterCheck":                             "\xf3\xb1\x94\x84",
		"WaterCheckOutline":                      "\xf3\xb1\x94\x85",
		"WaterCircle":                            "\xf3\xb1\xa0\x86",
		"WaterMinus":                             "\xf3\xb1\x94\x86",
		"WaterMinusOutline":                      "\xf3\xb1\x94\x87",
		"WaterOff":                               "\xf3\xb0\x96\x8d",
		"WaterOffOutline":                        "\xf3\xb1\x94\x88",
		"WaterOpacity":                           "\xf3\xb1\xa1\x95",
		"WaterOutline":                           "\xf3\xb0\xb8\x8a",
		"WaterPercent":                           "\xf3\xb0\x96\x8e",
		"WaterPercentAlert":                      "\xf3\xb1\x94\x89",
		"WaterPlus":                              "\xf3\xb1\x94\x8a",
		"WaterPlusOutline":                       "\xf3\xb1\x94\x8b",
		"WaterPolo":                              "\xf3\xb1\x8a\xa0",
		"WaterPump":                              "\xf3\xb0\x96\x8f",
		"WaterPumpOff":                           "\xf3\xb0\xbe\x93",
		"WaterRemove":                            "\xf3\xb1\x94\x8c",
		"WaterRemoveOutline":                     "\xf3\xb1\x94\x8d",
		"WaterSync":                              "\xf3\xb1\x9f\x86",
		"WaterThermometer":                       "\xf3\xb1\xaa\x85",
		"WaterThermometerOutline":                "\xf3\xb1\xaa\x86",
		"WaterWell":                              "\xf3\xb1\x81\xab",
		"WaterWellOutline":                       "\xf3\xb1\x81\xac",
		"Waterfall":                              "\xf3\xb1\xa1\x89",
		"WateringCan":                            "\xf3\xb1\x92\x81",
		"WateringCanOutline":                     "\xf3\xb1\x92\x82",
		"Watermark":                              "\xf3\xb0\x98\x92",
		"Wave":                                   "\xf3\xb0\xbc\xae",
		"WaveArrowDown":                          "\xf3\xb1\xb2\xb0",
		"WaveArrowUp":                            "\xf3\xb1\xb2\xb1",
		"WaveUndercurrent":                       "\xf3\xb1\xb3\x80",
		"Waveform":                               "\xf3\xb1\x91\xbd",
		"Waves":                                  "\xf3\xb0\x9e\x8d",
		"WavesArrowLeft":                         "\xf3\xb1\xa1\x99",
		"WavesArrowRight":                        "\xf3\xb1\xa1\x9a",
		"WavesArrowUp":                           "\xf3\xb1\xa1\x9b",
		"Waze":                                   "\xf3\xb0\xaf\x9e",
		"WeatherCloudy":                          "\xf3\xb0\x96\x90",
		"WeatherCloudyAlert":                     "\xf3\xb0\xbc\xaf",
		"WeatherCloudyArrowRight":                "\xf3\xb0\xb9\xae",
		"WeatherCloudyClock":                     "\xf3\xb1\xa3\xb6",
		"WeatherDust":                            "\xf3\xb1\xad\x9a",
		"WeatherFog":                             "\xf3\xb0\x96\x91",
		"WeatherHail":                            "\xf3\xb0\x96\x92",
		"WeatherHazy":                            "\xf3\xb0\xbc\xb0",
		"WeatherHurricane":                       "\xf3\xb0\xa2\x98",
		"WeatherHurricaneOutline":                "\xf3\xb1\xb1\xb8",
		"WeatherLightning":                       "\xf3\xb0\x96\x93",
		"WeatherLightningRainy":                  "\xf3\xb0\x99\xbe",
		"WeatherMoonset":                         "\xf3\xb1\xb4\x95",
		"WeatherMoonsetDown":                     "\xf3\xb1\xb4\x96",
		"WeatherMoonsetUp":                       "\xf3\xb1\xb4\x97",
		"WeatherNight":                           "\xf3\xb0\x96\x94",
		"WeatherNightPartlyCloudy":               "\xf3\xb0\xbc\xb1",
		"WeatherPartlyCloudy":                    "\xf3\xb0\x96\x95",
		"WeatherPartlyLightning":                 "\xf3\xb0\xbc\xb2",
		"WeatherPartlyRainy":                     "\xf3\xb0\xbc\xb3",
		"WeatherPartlySnowy":                     "\xf3\xb0\xbc\xb4",
		"WeatherPartlySnowyRainy":                "\xf3\xb0\xbc\xb5",
		"WeatherPouring":                         "\xf3\xb0\x96\x96",
		"WeatherRainy":                           "\xf3\xb0\x96\x97",
		"WeatherSnowy":                           "\xf3\xb0\x96\x98",
		"WeatherSnowyHeavy":                      "\xf3\xb0\xbc\xb6",
		"WeatherSnowyRainy":                      "\xf3\xb0\x99\xbf",
		"WeatherSunny":                           "\xf3\xb0\x96\x99",
		"WeatherSunnyAlert":                      "\xf3\xb0\xbc\xb7",
		"WeatherSunnyOff":                        "\xf3\xb1\x93\xa4",
		"WeatherSunset":                          "\xf3\xb0\x96\x9a",
		"WeatherSunsetDown":                      "\xf3\xb0\x96\x9b",
		"WeatherSunsetUp":                        "\xf3\xb0\x96\x9c",
		"WeatherTornado":                         "\xf3\xb0\xbc\xb8",
		"WeatherWindy":                           "\xf3\xb0\x96\x9d",
		"WeatherWindyVariant":                    "\xf3\xb0\x96\x9e",
		"Web":                                    "\xf3\xb0\x96\x9f",
		"WebBox":                                 "\xf3\xb0\xbe\x94",
		"WebCancel":                              "\xf3\xb1\x9e\x90",
		"WebCheck":                               "\xf3\xb0\x9e\x89",
		"WebClock":                               "\xf3\xb1\x89\x8a",
		"WebMinus":                               "\xf3\xb1\x82\xa0",
		"WebOff":                                 "\xf3\xb0\xaa\x8e",
		"WebPlus":                                "\xf3\xb0\x80\xb3",
		"WebRefresh":                             "\xf3\xb1\x9e\x91",
		"WebRemove":                              "\xf3\xb0\x95\x91",
		"WebSync":                                "\xf3\xb1\x9e\x92",
		"Webcam":                                 "\xf3\xb0\x96\xa0",
		"WebcamOff":                              "\xf3\xb1\x9c\xb7",
		"Webhook":                                "\xf3\xb0\x98\xaf",
		"Webpack":                                "\xf3\xb0\x9c\xab",
		"Webrtc":                                 "\xf3\xb1\x89\x88",
		"Wechat":                                 "\xf3\xb0\x98\x91",
		"Weight":                                 "\xf3\xb0\x96\xa1",
		"WeightGram":                             "\xf3\xb0\xb4\xbf",
		"WeightKilogram":                         "\xf3\xb0\x96\xa2",
		"WeightLifter":                           "\xf3\xb1\x85\x9d",
		"WeightPound":                            "\xf3\xb0\xa6\xb5",
		"Whatsapp":                               "\xf3\xb0\x96\xa3",
		"WheelBarrow":                            "\xf3\xb1\x93\xb2",
		"Wheelchair":                             "\xf3\xb1\xaa\x87",
		"WheelchairAccessibility":                "\xf3\xb0\x96\xa4",
		"Whistle":                                "\xf3\xb0\xa6\xb6",
		"WhistleOutline":                         "\xf3\xb1\x8a\xbc",
		"WhiteBalanceAuto":                       "\xf3\xb0\x96\xa5",
		"WhiteBalanceIncandescent":               "\xf3\xb0\x96\xa6",
		"WhiteBalanceIridescent":                 "\xf3\xb0\x96\xa7",
		"WhiteBalanceSunny":                      "\xf3\xb0\x96\xa8",
		"Widgets":                                "\xf3\xb0\x9c\xac",
		"WidgetsOutline":                         "\xf3\xb1\x8d\x95",
		"Wifi":                                   "\xf3\xb0\x96\xa9",
		"WifiAlert":                              "\xf3\xb1\x9a\xb5",
		"WifiArrowDown":                          "\xf3\xb1\x9a\xb6",
		"WifiArrowLeft":                          "\xf3\xb1\x9a\xb7",
		"WifiArrowLeftRight":                     "\xf3\xb1\x9a\xb8",
		"WifiArrowRight":                         "\xf3\xb1\x9a\xb9",
		"WifiArrowUp":                            "\xf3\xb1\x9a\xba",
		"WifiArrowUpDown":                        "\xf3\xb1\x9a\xbb",
		"WifiCancel":                             "\xf3\xb1\x9a\xbc",
		"WifiCheck":                              "\xf3\xb1\x9a\xbd",
		"WifiCog":                                "\xf3\xb1\x9a\xbe",
		"WifiLock":                               "\xf3\xb1\x9a\xbf",
		"WifiLockOpen":                           "\xf3\xb1\x9b\x80",
		"WifiMarker":                             "\xf3\xb1\x9b\x81",
		"WifiMinus":                              "\xf3\xb1\x9b\x82",
		"WifiOff":                                "\xf3\xb0\x96\xaa",
		"WifiPlus":                               "\xf3\xb1\x9b\x83",
		"WifiRefresh":                            "\xf3\xb1\x9b\x84",
		"WifiRemove":                             "\xf3\xb1\x9b\x85",
		"WifiSettings":                           "\xf3\xb1\x9b\x86",
		"WifiStar":                               "\xf3\xb0\xb8\x8b",
		"WifiStrength1":                          "\xf3\xb0\xa4\x9f",
		"WifiStrength1Alert":                     "\xf3\xb0\xa4\xa0",
		"WifiStrength1Lock":                      "\xf3\xb0\xa4\xa1",
		"WifiStrength1LockOpen":                  "\xf3\xb1\x9b\x8b",
		"WifiStrength2":                          "\xf3\xb0\xa4\xa2",
		"WifiStrength2Alert":                     "\xf3\xb0\xa4\xa3",
		"WifiStrength2Lock":                      "\xf3\xb0\xa4\xa4",
		"WifiStrength2LockOpen":                  "\xf3\xb1\x9b\x8c",
		"WifiStrength3":                          "\xf3\xb0\xa4\xa5",
		"WifiStrength3Alert":                     "\xf3\xb0\xa4\xa6",
		"WifiStrength3Lock":                      "\xf3\xb0\xa4\xa7",
		"WifiStrength3LockOpen":                  "\xf3\xb1\x9b\x8d",
		"WifiStrength4":                          "\xf3\xb0\xa4\xa8",
		"WifiStrength4Alert":                     "\xf3\xb0\xa4\xa9",
		"WifiStrength4Lock":                      "\xf3\xb0\xa4\xaa",
		"WifiStrength4LockOpen":                  "\xf3\xb1\x9b\x8e",
		"WifiStrengthAlertOutline":               "\xf3\xb0\xa4\xab",
		"WifiStrengthLockOpenOutline":            "\xf3\xb1\x9b\x8f",
		"WifiStrengthLockOutline":                "\xf3\xb0\xa4\xac",
		"WifiStrengthOff":                        "\xf3\xb0\xa4\xad",
		"WifiStrengthOffOutline":                 "\xf3\xb0\xa4\xae",
		"WifiStrengthOutline":                    "\xf3\xb0\xa4\xaf",
		"WifiSync":                               "\xf3\xb1\x9b\x87",
		"Wikipedia":                              "\xf3\xb0\x96\xac",
		"WindPower":                              "\xf3\xb1\xaa\x88",
		"WindPowerOutline":                       "\xf3\xb1\xaa\x89",
		"WindTurbine":                            "\xf3\xb0\xb6\xa5",
		"WindTurbineAlert":                       "\xf3\xb1\xa6\xab",
		"WindTurbineCheck":                       "\xf3\xb1\xa6\xac",
		"WindowClose":                            "\xf3\xb0\x96\xad",
		"WindowClosed":                           "\xf3\xb0\x96\xae",
		"WindowClosedVariant":                    "\xf3\xb1\x87\x9b",
		"WindowMaximize":                         "\xf3\xb0\x96\xaf",
		"WindowMinimize":                         "\xf3\xb0\x96\xb0",
		"WindowOpen":                             "\xf3\xb0\x96\xb1",
		"WindowOpenVariant":                      "\xf3\xb1\x87\x9c",
		"WindowRestore":                          "\xf3\xb0\x96\xb2",
		"WindowShutter":                          "\xf3\xb1\x84\x9c",
		"WindowShutterAlert":                     "\xf3\xb1\x84\x9d",
		"WindowShutterAuto":                      "\xf3\xb1\xae\xa3",
		"WindowShutterCog":                       "\xf3\xb1\xaa\x8a",
		"WindowShutterOpen":                      "\xf3\xb1\x84\x9e",
		"WindowShutterSettings":                  "\xf3\xb1\xaa\x8b",
		"Windsock":                               "\xf3\xb1\x97\xba",
		"Wiper":                                  "\xf3\xb0\xab\xa9",
		"WiperWash":                              "\xf3\xb0\xb6\xa6",
		"WiperWashAlert":                         "\xf3\xb1\xa3\x9f",
		"WizardHat":                              "\xf3\xb1\x91\xb7",
		"Wordpress":                              "\xf3\xb0\x96\xb4",
		"Wrap":                                   "\xf3\xb0\x96\xb6",
		"WrapDisabled":                           "\xf3\xb0\xaf\x9f",
		"Wrench":                                 "\xf3\xb0\x96\xb7",
		"WrenchCheck":                            "\xf3\xb1\xae\x8f",
		"WrenchCheckOutline":                     "\xf3\xb1\xae\x90",
		"WrenchClock":                            "\xf3\xb1\xa6\xa3",
		"WrenchClockOutline":                     "\xf3\xb1\xae\x93",
		"WrenchCog":                              "\xf3\xb1\xae\x91",
		"WrenchCogOutline":                       "\xf3\xb1\xae\x92",
		"WrenchOutline":                          "\xf3\xb0\xaf\xa0",
		"Xamarin":                                "\xf3\xb0\xa1\x85",
		"Xml":                                    "\xf3\xb0\x97\x80",
		"Xmpp":                                   "\xf3\xb0\x9f\xbf",
		"Yahoo":                                  "\xf3\xb0\xad\x8f",
		"Yeast":                                  "\xf3\xb0\x97\x81",
		"YinYang":                                "\xf3\xb0\x9a\x80",
		"Yoga":                                   "\xf3\xb1\x85\xbc",
		"Youtube":                                "\xf3\xb0\x97\x83",
		"YoutubeGaming":                          "\xf3\xb0\xa1\x88",
		"YoutubeStudio":                          "\xf3\xb0\xa1\x87",
		"YoutubeSubscription":                    "\xf3\xb0\xb5\x80",
		"YoutubeTv":                              "\xf3\xb0\x91\x88",
		"Yurt":                                   "\xf3\xb1\x94\x96",
		"ZWave":                                  "\xf3\xb0\xab\xaa",
		"Zend":                                   "\xf3\xb0\xab\xab",
		"Zigbee":                                 "\xf3\xb0\xb5\x81",
		"ZipBox":                                 "\xf3\xb0\x97\x84",
		"ZipBoxOutline":                          "\xf3\xb0\xbf\xba",
		"ZipDisk":                                "\xf3\xb0\xa8\xa3",
		"ZodiacAquarius":                         "\xf3\xb0\xa9\xbd",
		"ZodiacAries":                            "\xf3\xb0\xa9\xbe",
		"ZodiacCancer":                           "\xf3\xb0\xa9\xbf",
		"ZodiacCapricorn":                        "\xf3\xb0\xaa\x80",
		"ZodiacGemini":                           "\xf3\xb0\xaa\x81",
		"ZodiacLeo":                              "\xf3\xb0\xaa\x82",
		"ZodiacLibra":                            "\xf3\xb0\xaa\x83",
		"ZodiacPisces":                           "\xf3\xb0\xaa\x84",
		"ZodiacSagittarius":                      "\xf3\xb0\xaa\x85",
		"ZodiacScorpio":                          "\xf3\xb0\xaa\x86",
		"ZodiacTaurus":                           "\xf3\xb0\xaa\x87",
		"ZodiacVirgo":                            "\xf3\xb0\xaa\x88",
		"Blank":                                  "\xef\x9a\x8c",
	},
}
View Source
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",
		"10mp":                             "\xee\xa5\x92",
		"11mp":                             "\xee\xa5\x93",
		"123":                              "\xee\xae\x8d",
		"12mp":                             "\xee\xa5\x94",
		"13mp":                             "\xee\xa5\x95",
		"14mp":                             "\xee\xa5\x96",
		"15mp":                             "\xee\xa5\x97",
		"16mp":                             "\xee\xa5\x98",
		"17mp":                             "\xee\xa5\x99",
		"18_up_rating":                     "\xef\xa3\xbd",
		"18mp":                             "\xee\xa5\x9a",
		"19mp":                             "\xee\xa5\x9b",
		"1k":                               "\xee\xa5\x9c",
		"1k_plus":                          "\xee\xa5\x9d",
		"1x_mobiledata":                    "\xee\xbf\x8d",
		"1x_mobiledata_badge":              "\xef\x9f\xb1",
		"20mp":                             "\xee\xa5\x9e",
		"21mp":                             "\xee\xa5\x9f",
		"22mp":                             "\xee\xa5\xa0",
		"23mp":                             "\xee\xa5\xa1",
		"24fps_select":                     "\xef\x8f\xb2",
		"24mp":                             "\xee\xa5\xa2",
		"2d":                               "\xee\xbc\xb7",
		"2k":                               "\xee\xa5\xa3",
		"2k_plus":                          "\xee\xa5\xa4",
		"2mp":                              "\xee\xa5\xa5",
		"30fps":                            "\xee\xbf\x8e",
		"30fps_select":                     "\xee\xbf\x8f",
		"360":                              "\xee\x95\xb7",
		"3d":                               "\xee\xb4\xb8",
		"3d_rotation":                      "\xee\xa1\x8d",
		"3g_mobiledata":                    "\xee\xbf\x90",
		"3g_mobiledata_badge":              "\xef\x9f\xb0",
		"3k":                               "\xee\xa5\xa6",
		"3k_plus":                          "\xee\xa5\xa7",
		"3mp":                              "\xee\xa5\xa8",
		"3p":                               "\xee\xbf\x91",
		"4g_mobiledata":                    "\xee\xbf\x92",
		"4g_mobiledata_badge":              "\xef\x9f\xaf",
		"4g_plus_mobiledata":               "\xee\xbf\x93",
		"4k":                               "\xee\x81\xb2",
		"4k_plus":                          "\xee\xa5\xa9",
		"4mp":                              "\xee\xa5\xaa",
		"50mp":                             "\xef\x9b\xb3",
		"5g":                               "\xee\xbc\xb8",
		"5g_mobiledata_badge":              "\xef\x9f\xae",
		"5k":                               "\xee\xa5\xab",
		"5k_plus":                          "\xee\xa5\xac",
		"5mp":                              "\xee\xa5\xad",
		"60fps":                            "\xee\xbf\x94",
		"60fps_select":                     "\xee\xbf\x95",
		"6_ft_apart":                       "\xef\x88\x9e",
		"6k":                               "\xee\xa5\xae",
		"6k_plus":                          "\xee\xa5\xaf",
		"6mp":                              "\xee\xa5\xb0",
		"7k":                               "\xee\xa5\xb1",
		"7k_plus":                          "\xee\xa5\xb2",
		"7mp":                              "\xee\xa5\xb3",
		"8k":                               "\xee\xa5\xb4",
		"8k_plus":                          "\xee\xa5\xb5",
		"8mp":                              "\xee\xa5\xb6",
		"9k":                               "\xee\xa5\xb7",
		"9k_plus":                          "\xee\xa5\xb8",
		"9mp":                              "\xee\xa5\xb9",
		"Abc":                              "\xee\xae\x94",
		"Ac_unit":                          "\xee\xac\xbb",
		"Access_alarm":                     "\xee\xa1\x95",
		"Access_alarms":                    "\xee\xa1\x95",
		"Access_time":                      "\xee\xbf\x96",
		"Access_time_filled":               "\xee\xbf\x96",
		"Accessibility":                    "\xee\xa1\x8e",
		"Accessibility_new":                "\xee\xa4\xac",
		"Accessible":                       "\xee\xa4\x94",
		"Accessible_forward":               "\xee\xa4\xb4",
		"Accessible_menu":                  "\xef\x8d\x8e",
		"Account_balance":                  "\xee\xa1\x8f",
		"Account_balance_wallet":           "\xee\xa1\x90",
		"Account_box":                      "\xee\xa1\x91",
		"Account_child":                    "\xee\xa1\x92",
		"Account_child_invert":             "\xee\x99\x99",
		"Account_circle":                   "\xef\x88\x8b",
		"Account_circle_filled":            "\xef\x88\x8b",
		"Account_circle_off":               "\xef\x9e\xb3",
		"Account_tree":                     "\xee\xa5\xba",
		"Action_key":                       "\xef\x94\x82",
		"Activity_zone":                    "\xee\x87\xa6",
		"Acute":                            "\xee\x93\x8b",
		"Ad":                               "\xee\x99\x9a",
		"Ad_group":                         "\xee\x99\x9b",
		"Ad_group_off":                     "\xee\xab\xa5",
		"Ad_off":                           "\xef\x9e\xb2",
		"Ad_units":                         "\xee\xbc\xb9",
		"Adaptive_audio_mic":               "\xef\x93\x8c",
		"Adaptive_audio_mic_off":           "\xef\x93\x8b",
		"Adb":                              "\xee\x98\x8e",
		"Add":                              "\xee\x85\x85",
		"Add_2":                            "\xef\x8f\x9d",
		"Add_a_photo":                      "\xee\x90\xb9",
		"Add_ad":                           "\xee\x9c\xaa",
		"Add_alarm":                        "\xee\xa1\x96",
		"Add_alert":                        "\xee\x80\x83",
		"Add_box":                          "\xee\x85\x86",
		"Add_business":                     "\xee\x9c\xa9",
		"Add_call":                         "\xef\x82\xb7",
		"Add_card":                         "\xee\xae\x86",
		"Add_chart":                        "\xee\xbc\xbc",
		"Add_circle":                       "\xee\x8e\xba",
		"Add_circle_outline":               "\xee\x8e\xba",
		"Add_column_left":                  "\xef\x90\xa5",
		"Add_column_right":                 "\xef\x90\xa4",
		"Add_comment":                      "\xee\x89\xa6",
		"Add_diamond":                      "\xef\x92\x9c",
		"Add_home":                         "\xef\xa3\xab",
		"Add_home_work":                    "\xef\xa3\xad",
		"Add_ic_call":                      "\xef\x82\xb7",
		"Add_link":                         "\xee\x85\xb8",
		"Add_location":                     "\xee\x95\xa7",
		"Add_location_alt":                 "\xee\xbc\xba",
		"Add_moderator":                    "\xee\xa5\xbd",
		"Add_notes":                        "\xee\x82\x91",
		"Add_photo_alternate":              "\xee\x90\xbe",
		"Add_reaction":                     "\xee\x87\x93",
		"Add_road":                         "\xee\xbc\xbb",
		"Add_row_above":                    "\xef\x90\xa3",
		"Add_row_below":                    "\xef\x90\xa2",
		"Add_shopping_cart":                "\xee\xa1\x94",
		"Add_task":                         "\xef\x88\xba",
		"Add_to_drive":                     "\xee\x99\x9c",
		"Add_to_home_screen":               "\xee\x87\xbe",
		"Add_to_photos":                    "\xee\x8e\x9d",
		"Add_to_queue":                     "\xee\x81\x9c",
		"Add_triangle":                     "\xef\x92\x8e",
		"Addchart":                         "\xee\xbc\xbc",
		"Adf_scanner":                      "\xee\xab\x9a",
		"Adjust":                           "\xee\x8e\x9e",
		"Admin_meds":                       "\xee\x92\x8d",
		"Admin_panel_settings":             "\xee\xbc\xbd",
		"Ads_click":                        "\xee\x9d\xa2",
		"Agender":                          "\xef\xa2\x88",
		"Agriculture":                      "\xee\xa9\xb9",
		"Air":                              "\xee\xbf\x98",
		"Air_freshener":                    "\xee\x8b\x8a",
		"Air_purifier":                     "\xee\xa5\xbe",
		"Air_purifier_gen":                 "\xee\xa0\xa9",
		"Airline_seat_flat":                "\xee\x98\xb0",
		"Airline_seat_flat_angled":         "\xee\x98\xb1",
		"Airline_seat_individual_suite":    "\xee\x98\xb2",
		"Airline_seat_legroom_extra":       "\xee\x98\xb3",
		"Airline_seat_legroom_normal":      "\xee\x98\xb4",
		"Airline_seat_legroom_reduced":     "\xee\x98\xb5",
		"Airline_seat_recline_extra":       "\xee\x98\xb6",
		"Airline_seat_recline_normal":      "\xee\x98\xb7",
		"Airline_stops":                    "\xee\x9f\x90",
		"Airlines":                         "\xee\x9f\x8a",
		"Airplane_ticket":                  "\xee\xbf\x99",
		"Airplanemode_active":              "\xee\x94\xbd",
		"Airplanemode_inactive":            "\xee\x86\x94",
		"Airplay":                          "\xee\x81\x95",
		"Airport_shuttle":                  "\xee\xac\xbc",
		"Airware":                          "\xef\x85\x94",
		"Airwave":                          "\xef\x85\x94",
		"Alarm":                            "\xee\xa1\x95",
		"Alarm_add":                        "\xee\xa1\x96",
		"Alarm_off":                        "\xee\xa1\x97",
		"Alarm_on":                         "\xee\xa1\x98",
		"Alarm_pause":                      "\xef\x8d\x9b",
		"Alarm_smart_wake":                 "\xef\x9a\xb0",
		"Album":                            "\xee\x80\x99",
		"Align_center":                     "\xee\x8d\x96",
		"Align_end":                        "\xef\x9e\x97",
		"Align_flex_center":                "\xef\x9e\x96",
		"Align_flex_end":                   "\xef\x9e\x95",
		"Align_flex_start":                 "\xef\x9e\x94",
		"Align_horizontal_center":          "\xee\x80\x8f",
		"Align_horizontal_left":            "\xee\x80\x8d",
		"Align_horizontal_right":           "\xee\x80\x90",
		"Align_items_stretch":              "\xef\x9e\x93",
		"Align_justify_center":             "\xef\x9e\x92",
		"Align_justify_flex_end":           "\xef\x9e\x91",
		"Align_justify_flex_start":         "\xef\x9e\x90",
		"Align_justify_space_around":       "\xef\x9e\x8f",
		"Align_justify_space_between":      "\xef\x9e\x8e",
		"Align_justify_space_even":         "\xef\x9e\x8d",
		"Align_justify_stretch":            "\xef\x9e\x8c",
		"Align_self_stretch":               "\xef\x9e\x8b",
		"Align_space_around":               "\xef\x9e\x8a",
		"Align_space_between":              "\xef\x9e\x89",
		"Align_space_even":                 "\xef\x9e\x88",
		"Align_start":                      "\xef\x9e\x87",
		"Align_stretch":                    "\xef\x9e\x86",
		"Align_vertical_bottom":            "\xee\x80\x95",
		"Align_vertical_center":            "\xee\x80\x91",
		"Align_vertical_top":               "\xee\x80\x8c",
		"All_inbox":                        "\xee\xa5\xbf",
		"All_inclusive":                    "\xee\xac\xbd",
		"All_match":                        "\xee\x82\x93",
		"All_out":                          "\xee\xa4\x8b",
		"Allergies":                        "\xee\x82\x94",
		"Allergy":                          "\xee\x99\x8e",
		"Alt_route":                        "\xef\x86\x84",
		"Alternate_email":                  "\xee\x83\xa6",
		"Altitude":                         "\xef\xa1\xb3",
		"Ambient_screen":                   "\xef\x9b\x84",
		"Ambulance":                        "\xef\xa0\x83",
		"Amend":                            "\xef\xa0\x82",
		"Amp_stories":                      "\xee\xa8\x93",
		"Analytics":                        "\xee\xbc\xbe",
		"Anchor":                           "\xef\x87\x8d",
		"Android":                          "\xee\xa1\x99",
		"Animated_images":                  "\xef\x92\x9a",
		"Animation":                        "\xee\x9c\x9c",
		"Announcement":                     "\xee\xa1\xbf",
		"Aod":                              "\xee\xbf\x9a",
		"Aod_tablet":                       "\xef\xa2\x9f",
		"Aod_watch":                        "\xef\x9a\xac",
		"Apartment":                        "\xee\xa9\x80",
		"Api":                              "\xef\x86\xb7",
		"Apk_document":                     "\xef\xa2\x8e",
		"Apk_install":                      "\xef\xa2\x8f",
		"App_badging":                      "\xef\x9c\xaf",
		"App_blocking":                     "\xee\xbc\xbf",
		"App_promo":                        "\xee\xa6\x81",
		"App_registration":                 "\xee\xbd\x80",
		"App_settings_alt":                 "\xee\xbd\x81",
		"App_shortcut":                     "\xee\xab\xa4",
		"Apparel":                          "\xee\xbd\xbb",
		"Approval":                         "\xee\xa6\x82",
		"Approval_delegation":              "\xef\xa1\x8a",
		"Apps":                             "\xee\x97\x83",
		"Apps_outage":                      "\xee\x9f\x8c",
		"Aq":                               "\xef\x95\x9a",
		"Aq_indoor":                        "\xef\x95\x9b",
		"Ar_on_you":                        "\xee\xbd\xbc",
		"Ar_stickers":                      "\xee\xa6\x83",
		"Architecture":                     "\xee\xa8\xbb",
		"Archive":                          "\xee\x85\x89",
		"Area_chart":                       "\xee\x9d\xb0",
		"Arming_countdown":                 "\xee\x9e\x8a",
		"Arrow_and_edge":                   "\xef\x97\x97",
		"Arrow_back":                       "\xee\x97\x84",
		"Arrow_back_2":                     "\xef\x90\xba",
		"Arrow_back_ios":                   "\xee\x97\xa0",
		"Arrow_back_ios_new":               "\xee\x8b\xaa",
		"Arrow_circle_down":                "\xef\x86\x81",
		"Arrow_circle_left":                "\xee\xaa\xa7",
		"Arrow_circle_right":               "\xee\xaa\xaa",
		"Arrow_circle_up":                  "\xef\x86\x82",
		"Arrow_cool_down":                  "\xef\x92\xb6",
		"Arrow_downward":                   "\xee\x97\x9b",
		"Arrow_downward_alt":               "\xee\xa6\x84",
		"Arrow_drop_down":                  "\xee\x97\x85",
		"Arrow_drop_down_circle":           "\xee\x97\x86",
		"Arrow_drop_up":                    "\xee\x97\x87",
		"Arrow_forward":                    "\xee\x97\x88",
		"Arrow_forward_ios":                "\xee\x97\xa1",
		"Arrow_insert":                     "\xef\xa0\xb7",
		"Arrow_left":                       "\xee\x97\x9e",
		"Arrow_left_alt":                   "\xee\xbd\xbd",
		"Arrow_menu_close":                 "\xef\x8f\x93",
		"Arrow_menu_open":                  "\xef\x8f\x92",
		"Arrow_or_edge":                    "\xef\x97\x96",
		"Arrow_outward":                    "\xef\xa3\x8e",
		"Arrow_range":                      "\xef\x9a\x9b",
		"Arrow_right":                      "\xee\x97\x9f",
		"Arrow_right_alt":                  "\xee\xa5\x81",
		"Arrow_selector_tool":              "\xef\xa0\xaf",
		"Arrow_split":                      "\xee\xa8\x84",
		"Arrow_top_left":                   "\xef\x9c\xae",
		"Arrow_top_right":                  "\xef\x9c\xad",
		"Arrow_upload_progress":            "\xef\x8f\xb4",
		"Arrow_upload_ready":               "\xef\x8f\xb5",
		"Arrow_upward":                     "\xee\x97\x98",
		"Arrow_upward_alt":                 "\xee\xa6\x86",
		"Arrow_warm_up":                    "\xef\x92\xb5",
		"Arrows_input":                     "\xef\x8e\x94",
		"Arrows_more_down":                 "\xef\xa2\xab",
		"Arrows_more_up":                   "\xef\xa2\xac",
		"Arrows_output":                    "\xef\x8e\x93",
		"Arrows_outward":                   "\xef\x9c\xac",
		"Art_track":                        "\xee\x81\xa0",
		"Article":                          "\xee\xbd\x82",
		"Article_person":                   "\xef\x8d\xa8",
		"Article_shortcut":                 "\xef\x96\x87",
		"Artist":                           "\xee\x80\x9a",
		"Aspect_ratio":                     "\xee\xa1\x9b",
		"Assessment":                       "\xef\x83\x8c",
		"Assignment":                       "\xee\xa1\x9d",
		"Assignment_add":                   "\xef\xa1\x88",
		"Assignment_ind":                   "\xee\xa1\x9e",
		"Assignment_late":                  "\xee\xa1\x9f",
		"Assignment_return":                "\xee\xa1\xa0",
		"Assignment_returned":              "\xee\xa1\xa1",
		"Assignment_turned_in":             "\xee\xa1\xa2",
		"Assist_walker":                    "\xef\xa3\x95",
		"Assistant":                        "\xee\x8e\x9f",
		"Assistant_device":                 "\xee\xa6\x87",
		"Assistant_direction":              "\xee\xa6\x88",
		"Assistant_navigation":             "\xee\xa6\x89",
		"Assistant_on_hub":                 "\xef\x9b\x81",
		"Assistant_photo":                  "\xef\x83\x86",
		"Assured_workload":                 "\xee\xad\xaf",
		"Asterisk":                         "\xef\x94\xa5",
		"Astrophotography_auto":            "\xef\x87\x99",
		"Astrophotography_off":             "\xef\x87\x9a",
		"Atm":                              "\xee\x95\xb3",
		"Atr":                              "\xee\xaf\x87",
		"Attach_email":                     "\xee\xa9\x9e",
		"Attach_file":                      "\xee\x88\xa6",
		"Attach_file_add":                  "\xef\xa1\x81",
		"Attach_file_off":                  "\xef\x93\x99",
		"Attach_money":                     "\xee\x88\xa7",
		"Attachment":                       "\xee\x8a\xbc",
		"Attractions":                      "\xee\xa9\x92",
		"Attribution":                      "\xee\xbf\x9b",
		"Audio_description":                "\xef\x96\x8c",
		"Audio_file":                       "\xee\xae\x82",
		"Audio_video_receiver":             "\xef\x97\x93",
		"Audiotrack":                       "\xee\x90\x85",
		"Auto_activity_zone":               "\xef\xa2\xad",
		"Auto_awesome":                     "\xee\x99\x9f",
		"Auto_awesome_mosaic":              "\xee\x99\xa0",
		"Auto_awesome_motion":              "\xee\x99\xa1",
		"Auto_delete":                      "\xee\xa9\x8c",
		"Auto_detect_voice":                "\xef\xa0\xbe",
		"Auto_draw_solid":                  "\xee\xa6\x8a",
		"Auto_fix":                         "\xee\x99\xa3",
		"Auto_fix_high":                    "\xee\x99\xa3",
		"Auto_fix_normal":                  "\xee\x99\xa4",
		"Auto_fix_off":                     "\xee\x99\xa5",
		"Auto_graph":                       "\xee\x93\xbb",
		"Auto_label":                       "\xef\x9a\xbe",
		"Auto_meeting_room":                "\xef\x9a\xbf",
		"Auto_mode":                        "\xee\xb0\xa0",
		"Auto_read_pause":                  "\xef\x88\x99",
		"Auto_read_play":                   "\xef\x88\x96",
		"Auto_schedule":                    "\xee\x88\x94",
		"Auto_stories":                     "\xee\x99\xa6",
		"Auto_timer":                       "\xee\xbd\xbf",
		"Auto_towing":                      "\xee\x9c\x9e",
		"Auto_transmission":                "\xef\x94\xbf",
		"Auto_videocam":                    "\xef\x9b\x80",
		"Autofps_select":                   "\xee\xbf\x9c",
		"Automation":                       "\xef\x90\xa1",
		"Autopause":                        "\xef\x9a\xb6",
		"Autopay":                          "\xef\xa1\x8b",
		"Autoplay":                         "\xef\x9a\xb5",
		"Autorenew":                        "\xee\xa1\xa3",
		"Autostop":                         "\xef\x9a\x82",
		"Av1":                              "\xef\x92\xb0",
		"Av_timer":                         "\xee\x80\x9b",
		"Avc":                              "\xef\x92\xaf",
		"Avg_pace":                         "\xef\x9a\xbb",
		"Avg_time":                         "\xef\xa0\x93",
		"Award_star":                       "\xef\x98\x92",
		"Azm":                              "\xef\x9b\xac",
		"Baby_changing_station":            "\xef\x86\x9b",
		"Back_hand":                        "\xee\x9d\xa4",
		"Back_to_tab":                      "\xef\x9c\xab",
		"Background_dot_large":             "\xef\x9e\x9e",
		"Background_dot_small":             "\xef\x94\x94",
		"Background_grid_small":            "\xef\x9e\x9d",
		"Background_replace":               "\xef\x88\x8a",
		"Backlight_high":                   "\xef\x9f\xad",
		"Backlight_high_off":               "\xef\x93\xaf",
		"Backlight_low":                    "\xef\x9f\xac",
		"Backpack":                         "\xef\x86\x9c",
		"Backspace":                        "\xee\x85\x8a",
		"Backup":                           "\xee\xa1\xa4",
		"Backup_table":                     "\xee\xbd\x83",
		"Badge":                            "\xee\xa9\xa7",
		"Badge_critical_battery":           "\xef\x85\x96",
		"Bakery_dining":                    "\xee\xa9\x93",
		"Balance":                          "\xee\xab\xb6",
		"Balcony":                          "\xee\x96\x8f",
		"Ballot":                           "\xee\x85\xb2",
		"Bar_chart":                        "\xee\x89\xab",
		"Bar_chart_4_bars":                 "\xef\x9a\x81",
		"Bar_chart_off":                    "\xef\x90\x91",
		"Barcode":                          "\xee\x9c\x8b",
		"Barcode_reader":                   "\xef\xa1\x9c",
		"Barcode_scanner":                  "\xee\x9c\x8c",
		"Barefoot":                         "\xef\xa1\xb1",
		"Batch_prediction":                 "\xef\x83\xb5",
		"Bath_outdoor":                     "\xef\x9b\xbb",
		"Bath_private":                     "\xef\x9b\xba",
		"Bath_public_large":                "\xef\x9b\xb9",
		"Bathroom":                         "\xee\xbf\x9d",
		"Bathtub":                          "\xee\xa9\x81",
		"Battery_0_bar":                    "\xee\xaf\x9c",
		"Battery_1_bar":                    "\xef\x82\x9c",
		"Battery_20":                       "\xef\x82\x9c",
		"Battery_2_bar":                    "\xef\x82\x9d",
		"Battery_30":                       "\xef\x82\x9d",
		"Battery_3_bar":                    "\xef\x82\x9e",
		"Battery_4_bar":                    "\xef\x82\x9f",
		"Battery_50":                       "\xef\x82\x9e",
		"Battery_5_bar":                    "\xef\x82\xa0",
		"Battery_60":                       "\xef\x82\x9f",
		"Battery_6_bar":                    "\xef\x82\xa1",
		"Battery_80":                       "\xef\x82\xa0",
		"Battery_90":                       "\xef\x82\xa1",
		"Battery_alert":                    "\xee\x86\x9c",
		"Battery_android_0":                "\xef\x8c\x8d",
		"Battery_android_1":                "\xef\x8c\x8c",
		"Battery_android_2":                "\xef\x8c\x8b",
		"Battery_android_3":                "\xef\x8c\x8a",
		"Battery_android_4":                "\xef\x8c\x89",
		"Battery_android_5":                "\xef\x8c\x88",
		"Battery_android_6":                "\xef\x8c\x87",
		"Battery_android_alert":            "\xef\x8c\x86",
		"Battery_android_bolt":             "\xef\x8c\x85",
		"Battery_android_full":             "\xef\x8c\x84",
		"Battery_android_plus":             "\xef\x8c\x83",
		"Battery_android_question":         "\xef\x8c\x82",
		"Battery_android_share":            "\xef\x8c\x81",
		"Battery_android_shield":           "\xef\x8c\x80",
		"Battery_change":                   "\xef\x9f\xab",
		"Battery_charging_20":              "\xef\x82\xa2",
		"Battery_charging_30":              "\xef\x82\xa3",
		"Battery_charging_50":              "\xef\x82\xa4",
		"Battery_charging_60":              "\xef\x82\xa5",
		"Battery_charging_80":              "\xef\x82\xa6",
		"Battery_charging_90":              "\xef\x82\xa7",
		"Battery_charging_full":            "\xee\x86\xa3",
		"Battery_error":                    "\xef\x9f\xaa",
		"Battery_full":                     "\xee\x86\xa5",
		"Battery_full_alt":                 "\xef\x84\xbb",
		"Battery_horiz_000":                "\xef\xa2\xae",
		"Battery_horiz_050":                "\xef\xa2\xaf",
		"Battery_horiz_075":                "\xef\xa2\xb0",
		"Battery_low":                      "\xef\x85\x95",
		"Battery_plus":                     "\xef\x9f\xa9",
		"Battery_profile":                  "\xee\x88\x86",
		"Battery_saver":                    "\xee\xbf\x9e",
		"Battery_share":                    "\xef\x99\xbe",
		"Battery_status_good":              "\xef\x99\xbd",
		"Battery_std":                      "\xee\x86\xa5",
		"Battery_unknown":                  "\xee\x86\xa6",
		"Battery_vert_005":                 "\xef\xa2\xb1",
		"Battery_vert_020":                 "\xef\xa2\xb2",
		"Battery_vert_050":                 "\xef\xa2\xb3",
		"Battery_very_low":                 "\xef\x85\x96",
		"Beach_access":                     "\xee\xac\xbe",
		"Bed":                              "\xee\xbf\x9f",
		"Bedroom_baby":                     "\xee\xbf\xa0",
		"Bedroom_child":                    "\xee\xbf\xa1",
		"Bedroom_parent":                   "\xee\xbf\xa2",
		"Bedtime":                          "\xef\x85\x99",
		"Bedtime_off":                      "\xee\xad\xb6",
		"Beenhere":                         "\xee\x94\xad",
		"Bento":                            "\xef\x87\xb4",
		"Bia":                              "\xef\x9b\xab",
		"Bid_landscape":                    "\xee\x99\xb8",
		"Bid_landscape_disabled":           "\xee\xbe\x81",
		"Bigtop_updates":                   "\xee\x99\xa9",
		"Bike_dock":                        "\xef\x91\xbb",
		"Bike_lane":                        "\xef\x91\xba",
		"Bike_scooter":                     "\xee\xbd\x85",
		"Biotech":                          "\xee\xa8\xba",
		"Blanket":                          "\xee\xa0\xa8",
		"Blender":                          "\xee\xbf\xa3",
		"Blind":                            "\xef\xa3\x96",
		"Blinds":                           "\xee\x8a\x86",
		"Blinds_closed":                    "\xee\xb0\x9f",
		"Block":                            "\xef\x82\x8c",
		"Blood_pressure":                   "\xee\x82\x97",
		"Bloodtype":                        "\xee\xbf\xa4",
		"Bluetooth":                        "\xee\x86\xa7",
		"Bluetooth_audio":                  "\xee\x98\x8f",
		"Bluetooth_connected":              "\xee\x86\xa8",
		"Bluetooth_disabled":               "\xee\x86\xa9",
		"Bluetooth_drive":                  "\xee\xbf\xa5",
		"Bluetooth_searching":              "\xee\x98\x8f",
		"Blur_circular":                    "\xee\x8e\xa2",
		"Blur_linear":                      "\xee\x8e\xa3",
		"Blur_medium":                      "\xee\xa1\x8c",
		"Blur_off":                         "\xee\x8e\xa4",
		"Blur_on":                          "\xee\x8e\xa5",
		"Blur_short":                       "\xee\xa3\x8f",
		"Boat_bus":                         "\xef\x8d\xad",
		"Boat_railway":                     "\xef\x8d\xac",
		"Body_fat":                         "\xee\x82\x98",
		"Body_system":                      "\xee\x82\x99",
		"Bolt":                             "\xee\xa8\x8b",
		"Bomb":                             "\xef\x95\xa8",
		"Book":                             "\xee\xa1\xae",
		"Book_2":                           "\xef\x94\xbe",
		"Book_3":                           "\xef\x94\xbd",
		"Book_4":                           "\xef\x94\xbc",
		"Book_5":                           "\xef\x94\xbb",
		"Book_6":                           "\xef\x8f\x9f",
		"Book_online":                      "\xef\x88\x97",
		"Book_ribbon":                      "\xef\x8f\xa7",
		"Bookmark":                         "\xee\xa3\xa7",
		"Bookmark_add":                     "\xee\x96\x98",
		"Bookmark_added":                   "\xee\x96\x99",
		"Bookmark_bag":                     "\xef\x90\x90",
		"Bookmark_border":                  "\xee\xa3\xa7",
		"Bookmark_check":                   "\xef\x91\x97",
		"Bookmark_flag":                    "\xef\x91\x96",
		"Bookmark_heart":                   "\xef\x91\x95",
		"Bookmark_manager":                 "\xef\x9e\xb1",
		"Bookmark_remove":                  "\xee\x96\x9a",
		"Bookmark_star":                    "\xef\x91\x94",
		"Bookmarks":                        "\xee\xa6\x8b",
		"Books_movies_and_music":           "\xee\xbe\x82",
		"Border_all":                       "\xee\x88\xa8",
		"Border_bottom":                    "\xee\x88\xa9",
		"Border_clear":                     "\xee\x88\xaa",
		"Border_color":                     "\xee\x88\xab",
		"Border_horizontal":                "\xee\x88\xac",
		"Border_inner":                     "\xee\x88\xad",
		"Border_left":                      "\xee\x88\xae",
		"Border_outer":                     "\xee\x88\xaf",
		"Border_right":                     "\xee\x88\xb0",
		"Border_style":                     "\xee\x88\xb1",
		"Border_top":                       "\xee\x88\xb2",
		"Border_vertical":                  "\xee\x88\xb3",
		"Borg":                             "\xef\x90\x8d",
		"Bottom_app_bar":                   "\xee\x9c\xb0",
		"Bottom_drawer":                    "\xee\x9c\xad",
		"Bottom_navigation":                "\xee\xa6\x8c",
		"Bottom_panel_close":               "\xef\x9c\xaa",
		"Bottom_panel_open":                "\xef\x9c\xa9",
		"Bottom_right_click":               "\xef\x9a\x84",
		"Bottom_sheets":                    "\xee\xa6\x8d",
		"Box":                              "\xef\x96\xa4",
		"Box_add":                          "\xef\x96\xa5",
		"Box_edit":                         "\xef\x96\xa6",
		"Boy":                              "\xee\xad\xa7",
		"Brand_awareness":                  "\xee\xa6\x8e",
		"Brand_family":                     "\xef\x93\xb1",
		"Branding_watermark":               "\xee\x81\xab",
		"Breakfast_dining":                 "\xee\xa9\x94",
		"Breaking_news":                    "\xee\xa8\x88",
		"Breaking_news_alt_1":              "\xef\x82\xba",
		"Breastfeeding":                    "\xef\xa1\x96",
		"Brick":                            "\xef\x8e\x88",
		"Brightness_1":                     "\xee\x8f\xba",
		"Brightness_2":                     "\xef\x80\xb6",
		"Brightness_3":                     "\xee\x8e\xa8",
		"Brightness_4":                     "\xee\x8e\xa9",
		"Brightness_5":                     "\xee\x8e\xaa",
		"Brightness_6":                     "\xee\x8e\xab",
		"Brightness_7":                     "\xee\x8e\xac",
		"Brightness_alert":                 "\xef\x97\x8f",
		"Brightness_auto":                  "\xee\x86\xab",
		"Brightness_empty":                 "\xef\x9f\xa8",
		"Brightness_high":                  "\xee\x86\xac",
		"Brightness_low":                   "\xee\x86\xad",
		"Brightness_medium":                "\xee\x86\xae",
		"Bring_your_own_ip":                "\xee\x80\x96",
		"Broadcast_on_home":                "\xef\xa3\xb8",
		"Broadcast_on_personal":            "\xef\xa3\xb9",
		"Broken_image":                     "\xee\x8e\xad",
		"Browse":                           "\xee\xac\x93",
		"Browse_activity":                  "\xef\xa2\xa5",
		"Browse_gallery":                   "\xee\xaf\x91",
		"Browser_not_supported":            "\xee\xbd\x87",
		"Browser_updated":                  "\xee\x9f\x8f",
		"Brunch_dining":                    "\xee\xa9\xb3",
		"Brush":                            "\xee\x8e\xae",
		"Bubble":                           "\xee\xbe\x83",
		"Bubble_chart":                     "\xee\x9b\x9d",
		"Bubbles":                          "\xef\x99\x8e",
		"Bug_report":                       "\xee\xa1\xa8",
		"Build":                            "\xef\xa3\x8d",
		"Build_circle":                     "\xee\xbd\x88",
		"Bungalow":                         "\xee\x96\x91",
		"Burst_mode":                       "\xee\x90\xbc",
		"Bus_alert":                        "\xee\xa6\x8f",
		"Bus_railway":                      "\xef\x8d\xab",
		"Business":                         "\xee\x9f\xae",
		"Business_center":                  "\xee\xac\xbf",
		"Business_chip":                    "\xef\xa1\x8c",
		"Business_messages":                "\xee\xbe\x84",
		"Buttons_alt":                      "\xee\x9c\xaf",
		"Cabin":                            "\xee\x96\x89",
		"Cable":                            "\xee\xbf\xa6",
		"Cable_car":                        "\xef\x91\xb9",
		"Cached":                           "\xee\xa1\xaa",
		"Cadence":                          "\xef\x92\xb4",
		"Cake":                             "\xee\x9f\xa9",
		"Cake_add":                         "\xef\xa1\x9b",
		"Calculate":                        "\xee\xa9\x9f",
		"Calendar_add_on":                  "\xee\xbe\x85",
		"Calendar_apps_script":             "\xef\x82\xbb",
		"Calendar_clock":                   "\xef\x95\x80",
		"Calendar_month":                   "\xee\xaf\x8c",
		"Calendar_today":                   "\xee\xa4\xb5",
		"Calendar_view_day":                "\xee\xa4\xb6",
		"Calendar_view_month":              "\xee\xbf\xa7",
		"Calendar_view_week":               "\xee\xbf\xa8",
		"Call":                             "\xef\x83\x94",
		"Call_end":                         "\xef\x82\xbc",
		"Call_end_alt":                     "\xef\x82\xbc",
		"Call_log":                         "\xee\x82\x8e",
		"Call_made":                        "\xee\x82\xb2",
		"Call_merge":                       "\xee\x82\xb3",
		"Call_missed":                      "\xee\x82\xb4",
		"Call_missed_outgoing":             "\xee\x83\xa4",
		"Call_quality":                     "\xef\x99\x92",
		"Call_received":                    "\xee\x82\xb5",
		"Call_split":                       "\xee\x82\xb6",
		"Call_to_action":                   "\xee\x81\xac",
		"Camera":                           "\xee\x8e\xaf",
		"Camera_alt":                       "\xee\x90\x92",
		"Camera_enhance":                   "\xee\xa3\xbc",
		"Camera_front":                     "\xee\x8e\xb1",
		"Camera_indoor":                    "\xee\xbf\xa9",
		"Camera_outdoor":                   "\xee\xbf\xaa",
		"Camera_rear":                      "\xee\x8e\xb2",
		"Camera_roll":                      "\xee\x8e\xb3",
		"Camera_video":                     "\xef\x9e\xa6",
		"Cameraswitch":                     "\xee\xbf\xab",
		"Campaign":                         "\xee\xbd\x89",
		"Camping":                          "\xef\xa2\xa2",
		"Cancel":                           "\xee\xa2\x88",
		"Cancel_presentation":              "\xee\x83\xa9",
		"Cancel_schedule_send":             "\xee\xa8\xb9",
		"Candle":                           "\xef\x96\x88",
		"Candlestick_chart":                "\xee\xab\x94",
		"Cannabis":                         "\xef\x8b\xb3",
		"Captive_portal":                   "\xef\x9c\xa8",
		"Capture":                          "\xef\x9c\xa7",
		"Car_crash":                        "\xee\xaf\xb2",
		"Car_defrost_left":                 "\xef\x8d\x84",
		"Car_defrost_low_left":             "\xef\x8d\x83",
		"Car_defrost_low_right":            "\xef\x8d\x82",
		"Car_defrost_mid_low_left":         "\xef\x8d\x81",
		"Car_defrost_mid_right":            "\xef\x8d\x80",
		"Car_defrost_right":                "\xef\x8c\xbf",
		"Car_fan_low_left":                 "\xef\x8c\xbe",
		"Car_fan_low_mid_left":             "\xef\x8c\xbd",
		"Car_fan_low_right":                "\xef\x8c\xbc",
		"Car_fan_mid_left":                 "\xef\x8c\xbb",
		"Car_fan_mid_low_right":            "\xef\x8c\xba",
		"Car_fan_mid_right":                "\xef\x8c\xb9",
		"Car_fan_recirculate":              "\xef\x8c\xb8",
		"Car_gear":                         "\xef\x8c\xb7",
		"Car_lock":                         "\xef\x8c\xb6",
		"Car_mirror_heat":                  "\xef\x8c\xb5",
		"Car_rental":                       "\xee\xa9\x95",
		"Car_repair":                       "\xee\xa9\x96",
		"Car_tag":                          "\xef\x93\xa3",
		"Card_giftcard":                    "\xee\xa3\xb6",
		"Card_membership":                  "\xee\xa3\xb7",
		"Card_travel":                      "\xee\xa3\xb8",
		"Cardio_load":                      "\xef\x92\xb9",
		"Cardiology":                       "\xee\x82\x9c",
		"Cards":                            "\xee\xa6\x91",
		"Cards_star":                       "\xef\x8d\xb5",
		"Carpenter":                        "\xef\x87\xb8",
		"Carry_on_bag":                     "\xee\xac\x88",
		"Carry_on_bag_checked":             "\xee\xac\x8b",
		"Carry_on_bag_inactive":            "\xee\xac\x8a",
		"Carry_on_bag_question":            "\xee\xac\x89",
		"Cases":                            "\xee\xa6\x92",
		"Casino":                           "\xee\xad\x80",
		"Cast":                             "\xee\x8c\x87",
		"Cast_connected":                   "\xee\x8c\x88",
		"Cast_for_education":               "\xee\xbf\xac",
		"Cast_pause":                       "\xef\x97\xb0",
		"Cast_warning":                     "\xef\x97\xaf",
		"Castle":                           "\xee\xaa\xb1",
		"Category":                         "\xee\x95\xb4",
		"Category_search":                  "\xef\x90\xb7",
		"Celebration":                      "\xee\xa9\xa5",
		"Cell_merge":                       "\xef\xa0\xae",
		"Cell_tower":                       "\xee\xae\xba",
		"Cell_wifi":                        "\xee\x83\xac",
		"Center_focus_strong":              "\xee\x8e\xb4",
		"Center_focus_weak":                "\xee\x8e\xb5",
		"Chair":                            "\xee\xbf\xad",
		"Chair_alt":                        "\xee\xbf\xae",
		"Chalet":                           "\xee\x96\x85",
		"Change_circle":                    "\xee\x8b\xa7",
		"Change_history":                   "\xee\xa1\xab",
		"Charger":                          "\xee\x8a\xae",
		"Charging_station":                 "\xef\x86\x9d",
		"Chart_data":                       "\xee\x91\xb3",
		"Chat":                             "\xee\x83\x89",
		"Chat_add_on":                      "\xef\x83\xb3",
		"Chat_apps_script":                 "\xef\x82\xbd",
		"Chat_bubble":                      "\xee\x83\x8b",
		"Chat_bubble_outline":              "\xee\x83\x8b",
		"Chat_error":                       "\xef\x9e\xac",
		"Chat_info":                        "\xef\x94\xab",
		"Chat_paste_go":                    "\xef\x9a\xbd",
		"Chat_paste_go_2":                  "\xef\x8f\x8b",
		"Check":                            "\xee\x97\x8a",
		"Check_box":                        "\xee\xa0\xb4",
		"Check_box_outline_blank":          "\xee\xa0\xb5",
		"Check_circle":                     "\xef\x82\xbe",
		"Check_circle_filled":              "\xef\x82\xbe",
		"Check_circle_outline":             "\xef\x82\xbe",
		"Check_in_out":                     "\xef\x9b\xb6",
		"Check_indeterminate_small":        "\xef\xa2\x8a",
		"Check_small":                      "\xef\xa2\x8b",
		"Checkbook":                        "\xee\x9c\x8d",
		"Checked_bag":                      "\xee\xac\x8c",
		"Checked_bag_question":             "\xee\xac\x8d",
		"Checklist":                        "\xee\x9a\xb1",
		"Checklist_rtl":                    "\xee\x9a\xb3",
		"Checkroom":                        "\xef\x86\x9e",
		"Cheer":                            "\xef\x9a\xa8",
		"Chef_hat":                         "\xef\x8d\x97",
		"Chess":                            "\xef\x97\xa7",
		"Chess_pawn":                       "\xef\x8e\xb6",
		"Chevron_backward":                 "\xef\x91\xab",
		"Chevron_forward":                  "\xef\x91\xaa",
		"Chevron_left":                     "\xee\x97\x8b",
		"Chevron_right":                    "\xee\x97\x8c",
		"Child_care":                       "\xee\xad\x81",
		"Child_friendly":                   "\xee\xad\x82",
		"Chip_extraction":                  "\xef\xa0\xa1",
		"Chips":                            "\xee\xa6\x93",
		"Chrome_reader_mode":               "\xee\xa1\xad",
		"Chromecast_2":                     "\xef\x85\xbb",
		"Chromecast_device":                "\xee\xa0\xbc",
		"Chronic":                          "\xee\xae\xb2",
		"Church":                           "\xee\xaa\xae",
		"Cinematic_blur":                   "\xef\xa1\x93",
		"Circle":                           "\xee\xbd\x8a",
		"Circle_notifications":             "\xee\xa6\x94",
		"Circles":                          "\xee\x9f\xaa",
		"Circles_ext":                      "\xee\x9f\xac",
		"Clarify":                          "\xef\x82\xbf",
		"Class":                            "\xee\xa1\xae",
		"Clean_hands":                      "\xef\x88\x9f",
		"Cleaning":                         "\xee\xa6\x95",
		"Cleaning_bucket":                  "\xef\xa2\xb4",
		"Cleaning_services":                "\xef\x83\xbf",
		"Clear":                            "\xee\x97\x8d",
		"Clear_all":                        "\xee\x82\xb8",
		"Clear_day":                        "\xef\x85\x97",
		"Clear_night":                      "\xef\x85\x99",
		"Climate_mini_split":               "\xef\xa2\xb5",
		"Clinical_notes":                   "\xee\x82\x9e",
		"Clock_arrow_down":                 "\xef\x8e\x82",
		"Clock_arrow_up":                   "\xef\x8e\x81",
		"Clock_loader_10":                  "\xef\x9c\xa6",
		"Clock_loader_20":                  "\xef\x9c\xa5",
		"Clock_loader_40":                  "\xef\x9c\xa4",
		"Clock_loader_60":                  "\xef\x9c\xa3",
		"Clock_loader_80":                  "\xef\x9c\xa2",
		"Clock_loader_90":                  "\xef\x9c\xa1",
		"Close":                            "\xee\x97\x8d",
		"Close_fullscreen":                 "\xef\x87\x8f",
		"Close_small":                      "\xef\x94\x88",
		"Closed_caption":                   "\xee\xa6\x96",
		"Closed_caption_add":               "\xef\x92\xae",
		"Closed_caption_disabled":          "\xef\x87\x9c",
		"Closed_caption_off":               "\xee\xa6\x96",
		"Cloud":                            "\xef\x85\x9c",
		"Cloud_alert":                      "\xef\x8f\x8c",
		"Cloud_circle":                     "\xee\x8a\xbe",
		"Cloud_done":                       "\xee\x8a\xbf",
		"Cloud_download":                   "\xee\x8b\x80",
		"Cloud_lock":                       "\xef\x8e\x86",
		"Cloud_off":                        "\xee\x8b\x81",
		"Cloud_queue":                      "\xef\x85\x9c",
		"Cloud_sync":                       "\xee\xad\x9a",
		"Cloud_upload":                     "\xee\x8b\x83",
		"Cloudy":                           "\xef\x85\x9c",
		"Cloudy_filled":                    "\xef\x85\x9c",
		"Cloudy_snowing":                   "\xee\xa0\x90",
		"Co2":                              "\xee\x9e\xb0",
		"Co_present":                       "\xee\xab\xb0",
		"Code":                             "\xee\xa1\xaf",
		"Code_blocks":                      "\xef\xa1\x8d",
		"Code_off":                         "\xee\x93\xb3",
		"Coffee":                           "\xee\xbf\xaf",
		"Coffee_maker":                     "\xee\xbf\xb0",
		"Cognition":                        "\xee\x82\x9f",
		"Cognition_2":                      "\xef\x8e\xb5",
		"Collapse_all":                     "\xee\xa5\x84",
		"Collapse_content":                 "\xef\x94\x87",
		"Collections":                      "\xee\x8f\x93",
		"Collections_bookmark":             "\xee\x90\xb1",
		"Color_lens":                       "\xee\x90\x8a",
		"Colorize":                         "\xee\x8e\xb8",
		"Colors":                           "\xee\xa6\x97",
		"Combine_columns":                  "\xef\x90\xa0",
		"Comedy_mask":                      "\xef\x93\x96",
		"Comic_bubble":                     "\xef\x97\x9d",
		"Comment":                          "\xee\x89\x8c",
		"Comment_bank":                     "\xee\xa9\x8e",
		"Comments_disabled":                "\xee\x9e\xa2",
		"Commit":                           "\xee\xab\xb5",
		"Communication":                    "\xee\x89\xbc",
		"Communities":                      "\xee\xac\x96",
		"Communities_filled":               "\xee\xac\x96",
		"Commute":                          "\xee\xa5\x80",
		"Compare":                          "\xee\x8e\xb9",
		"Compare_arrows":                   "\xee\xa4\x95",
		"Compass_calibration":              "\xee\x95\xbc",
		"Component_exchange":               "\xef\x87\xa7",
		"Compost":                          "\xee\x9d\xa1",
		"Compress":                         "\xee\xa5\x8d",
		"Computer":                         "\xee\x8c\x9e",
		"Computer_arrow_up":                "\xef\x8b\xb7",
		"Computer_cancel":                  "\xef\x8b\xb6",
		"Concierge":                        "\xef\x95\xa1",
		"Conditions":                       "\xee\x82\xa0",
		"Confirmation_number":              "\xee\x98\xb8",
		"Congenital":                       "\xee\x82\xa1",
		"Connect_without_contact":          "\xef\x88\xa3",
		"Connected_tv":                     "\xee\xa6\x98",
		"Connecting_airports":              "\xee\x9f\x89",
		"Construction":                     "\xee\xa8\xbc",
		"Contact_emergency":                "\xef\xa3\x91",
		"Contact_mail":                     "\xee\x83\x90",
		"Contact_page":                     "\xef\x88\xae",
		"Contact_phone":                    "\xef\x83\x80",
		"Contact_phone_filled":             "\xef\x83\x80",
		"Contact_support":                  "\xee\xa5\x8c",
		"Contactless":                      "\xee\xa9\xb1",
		"Contactless_off":                  "\xef\xa1\x98",
		"Contacts":                         "\xee\x82\xba",
		"Contacts_product":                 "\xee\xa6\x99",
		"Content_copy":                     "\xee\x85\x8d",
		"Content_cut":                      "\xee\x85\x8e",
		"Content_paste":                    "\xee\x85\x8f",
		"Content_paste_go":                 "\xee\xaa\x8e",
		"Content_paste_off":                "\xee\x93\xb8",
		"Content_paste_search":             "\xee\xaa\x9b",
		"Contextual_token":                 "\xef\x92\x86",
		"Contextual_token_add":             "\xef\x92\x85",
		"Contract":                         "\xef\x96\xa0",
		"Contract_delete":                  "\xef\x96\xa2",
		"Contract_edit":                    "\xef\x96\xa1",
		"Contrast":                         "\xee\xac\xb7",
		"Contrast_circle":                  "\xef\x92\x9f",
		"Contrast_rtl_off":                 "\xee\xb1\xb2",
		"Contrast_square":                  "\xef\x92\xa0",
		"Control_camera":                   "\xee\x81\xb4",
		"Control_point":                    "\xee\x8e\xba",
		"Control_point_duplicate":          "\xee\x8e\xbb",
		"Controller_gen":                   "\xee\xa0\xbd",
		"Conversion_path":                  "\xef\x83\x81",
		"Conversion_path_off":              "\xef\x9e\xb4",
		"Convert_to_text":                  "\xef\x90\x9f",
		"Conveyor_belt":                    "\xef\xa1\xa7",
		"Cookie":                           "\xee\xaa\xac",
		"Cookie_off":                       "\xef\x9e\x9a",
		"Cooking":                          "\xee\x8a\xb6",
		"Cool_to_dry":                      "\xee\x89\xb6",
		"Copy_all":                         "\xee\x8b\xac",
		"Copyright":                        "\xee\xa4\x8c",
		"Coronavirus":                      "\xef\x88\xa1",
		"Corporate_fare":                   "\xef\x87\x90",
		"Cottage":                          "\xee\x96\x87",
		"Counter_0":                        "\xef\x9e\x85",
		"Counter_1":                        "\xef\x9e\x84",
		"Counter_2":                        "\xef\x9e\x83",
		"Counter_3":                        "\xef\x9e\x82",
		"Counter_4":                        "\xef\x9e\x81",
		"Counter_5":                        "\xef\x9e\x80",
		"Counter_6":                        "\xef\x9d\xbf",
		"Counter_7":                        "\xef\x9d\xbe",
		"Counter_8":                        "\xef\x9d\xbd",
		"Counter_9":                        "\xef\x9d\xbc",
		"Countertops":                      "\xef\x87\xb7",
		"Create":                           "\xef\x82\x97",
		"Create_new_folder":                "\xee\x8b\x8c",
		"Credit_card":                      "\xee\xa2\xa1",
		"Credit_card_clock":                "\xef\x90\xb8",
		"Credit_card_gear":                 "\xef\x94\xad",
		"Credit_card_heart":                "\xef\x94\xac",
		"Credit_card_off":                  "\xee\x93\xb4",
		"Credit_score":                     "\xee\xbf\xb1",
		"Crib":                             "\xee\x96\x88",
		"Crisis_alert":                     "\xee\xaf\xa9",
		"Crop":                             "\xee\x8e\xbe",
		"Crop_16_9":                        "\xee\x8e\xbc",
		"Crop_3_2":                         "\xee\x8e\xbd",
		"Crop_5_4":                         "\xee\x8e\xbf",
		"Crop_7_5":                         "\xee\x8f\x80",
		"Crop_9_16":                        "\xef\x95\x89",
		"Crop_din":                         "\xee\x8f\x86",
		"Crop_free":                        "\xee\x8f\x82",
		"Crop_landscape":                   "\xee\x8f\x83",
		"Crop_original":                    "\xee\x8f\xb4",
		"Crop_portrait":                    "\xee\x8f\x85",
		"Crop_rotate":                      "\xee\x90\xb7",
		"Crop_square":                      "\xee\x8f\x86",
		"Crossword":                        "\xef\x97\xa5",
		"Crowdsource":                      "\xee\xac\x98",
		"Crown":                            "\xee\xb2\xb3",
		"Cruelty_free":                     "\xee\x9e\x99",
		"Css":                              "\xee\xae\x93",
		"Csv":                              "\xee\x9b\x8f",
		"Currency_bitcoin":                 "\xee\xaf\x85",
		"Currency_exchange":                "\xee\xad\xb0",
		"Currency_franc":                   "\xee\xab\xba",
		"Currency_lira":                    "\xee\xab\xaf",
		"Currency_pound":                   "\xee\xab\xb1",
		"Currency_ruble":                   "\xee\xab\xac",
		"Currency_rupee":                   "\xee\xab\xb7",
		"Currency_rupee_circle":            "\xef\x91\xa0",
		"Currency_yen":                     "\xee\xab\xbb",
		"Currency_yuan":                    "\xee\xab\xb9",
		"Curtains":                         "\xee\xb0\x9e",
		"Curtains_closed":                  "\xee\xb0\x9d",
		"Custom_typography":                "\xee\x9c\xb2",
		"Cut":                              "\xef\x82\x8b",
		"Cycle":                            "\xef\xa1\x94",
		"Cyclone":                          "\xee\xaf\x95",
		"Dangerous":                        "\xee\xa6\x9a",
		"Dark_mode":                        "\xee\x94\x9c",
		"Dashboard":                        "\xee\xa1\xb1",
		"Dashboard_2":                      "\xef\x8f\xaa",
		"Dashboard_customize":              "\xee\xa6\x9b",
		"Data_alert":                       "\xef\x9f\xb6",
		"Data_array":                       "\xee\xab\x91",
		"Data_check":                       "\xef\x9f\xb2",
		"Data_exploration":                 "\xee\x9d\xaf",
		"Data_info_alert":                  "\xef\x9f\xb5",
		"Data_loss_prevention":             "\xee\x8b\x9c",
		"Data_object":                      "\xee\xab\x93",
		"Data_saver_off":                   "\xee\xbf\xb2",
		"Data_saver_on":                    "\xee\xbf\xb3",
		"Data_table":                       "\xee\xa6\x9c",
		"Data_thresholding":                "\xee\xae\x9f",
		"Data_usage":                       "\xee\xbf\xb2",
		"Database":                         "\xef\x88\x8e",
		"Database_off":                     "\xef\x90\x94",
		"Database_search":                  "\xef\x8e\x8e",
		"Database_upload":                  "\xef\x8f\x9c",
		"Dataset":                          "\xef\xa3\xae",
		"Dataset_linked":                   "\xef\xa3\xaf",
		"Date_range":                       "\xee\xa4\x96",
		"Deblur":                           "\xee\xad\xb7",
		"Deceased":                         "\xee\x82\xa5",
		"Decimal_decrease":                 "\xef\xa0\xad",
		"Decimal_increase":                 "\xef\xa0\xac",
		"Deck":                             "\xee\xa9\x82",
		"Dehaze":                           "\xee\x8f\x87",
		"Delete":                           "\xee\xa4\xae",
		"Delete_forever":                   "\xee\xa4\xab",
		"Delete_history":                   "\xef\x94\x98",
		"Delete_outline":                   "\xee\xa4\xae",
		"Delete_sweep":                     "\xee\x85\xac",
		"Delivery_dining":                  "\xee\xac\xa8",
		"Delivery_truck_bolt":              "\xef\x8e\xa2",
		"Delivery_truck_speed":             "\xef\x8e\xa1",
		"Demography":                       "\xee\x92\x89",
		"Density_large":                    "\xee\xae\xa9",
		"Density_medium":                   "\xee\xae\x9e",
		"Density_small":                    "\xee\xae\xa8",
		"Dentistry":                        "\xee\x82\xa6",
		"Departure_board":                  "\xee\x95\xb6",
		"Deployed_code":                    "\xef\x9c\xa0",
		"Deployed_code_account":            "\xef\x94\x9b",
		"Deployed_code_alert":              "\xef\x97\xb2",
		"Deployed_code_history":            "\xef\x97\xb3",
		"Deployed_code_update":             "\xef\x97\xb4",
		"Dermatology":                      "\xee\x82\xa7",
		"Description":                      "\xee\xa1\xb3",
		"Deselect":                         "\xee\xae\xb6",
		"Design_services":                  "\xef\x84\x8a",
		"Desk":                             "\xef\xa3\xb4",
		"Deskphone":                        "\xef\x9f\xba",
		"Desktop_access_disabled":          "\xee\xa6\x9d",
		"Desktop_cloud":                    "\xef\x8f\x9b",
		"Desktop_cloud_stack":              "\xef\x8e\xbe",
		"Desktop_landscape":                "\xef\x91\x9e",
		"Desktop_landscape_add":            "\xef\x90\xb9",
		"Desktop_mac":                      "\xee\x8c\x8b",
		"Desktop_portrait":                 "\xef\x91\x9d",
		"Desktop_windows":                  "\xee\x8c\x8c",
		"Destruction":                      "\xef\x96\x85",
		"Details":                          "\xee\x8f\x88",
		"Detection_and_zone":               "\xee\x8a\x9f",
		"Detector":                         "\xee\x8a\x82",
		"Detector_alarm":                   "\xee\x87\xb7",
		"Detector_battery":                 "\xee\x88\x84",
		"Detector_co":                      "\xee\x8a\xaf",
		"Detector_offline":                 "\xee\x88\xa3",
		"Detector_smoke":                   "\xee\x8a\x85",
		"Detector_status":                  "\xee\x87\xa8",
		"Developer_board":                  "\xee\x8c\x8d",
		"Developer_board_off":              "\xee\x93\xbf",
		"Developer_guide":                  "\xee\xa6\x9e",
		"Developer_mode":                   "\xee\x86\xb0",
		"Developer_mode_tv":                "\xee\xa1\xb4",
		"Device_band":                      "\xef\x8b\xb5",
		"Device_hub":                       "\xee\x8c\xb5",
		"Device_reset":                     "\xee\xa2\xb3",
		"Device_thermostat":                "\xee\x87\xbf",
		"Device_unknown":                   "\xee\x8c\xb9",
		"Devices":                          "\xee\x8c\xa6",
		"Devices_fold":                     "\xee\xaf\x9e",
		"Devices_fold_2":                   "\xef\x90\x86",
		"Devices_off":                      "\xef\x9e\xa5",
		"Devices_other":                    "\xee\x8c\xb7",
		"Devices_wearables":                "\xef\x9a\xab",
		"Dew_point":                        "\xef\xa1\xb9",
		"Diagnosis":                        "\xee\x82\xa8",
		"Diagonal_line":                    "\xef\x90\x9e",
		"Dialer_sip":                       "\xee\x82\xbb",
		"Dialogs":                          "\xee\xa6\x9f",
		"Dialpad":                          "\xee\x82\xbc",
		"Diamond":                          "\xee\xab\x95",
		"Dictionary":                       "\xef\x94\xb9",
		"Difference":                       "\xee\xad\xbd",
		"Digital_out_of_home":              "\xef\x87\x9e",
		"Digital_wellbeing":                "\xee\xbe\x86",
		"Dining":                           "\xee\xbf\xb4",
		"Dinner_dining":                    "\xee\xa9\x97",
		"Directions":                       "\xee\x94\xae",
		"Directions_alt":                   "\xef\xa2\x80",
		"Directions_alt_off":               "\xef\xa2\x81",
		"Directions_bike":                  "\xee\x94\xaf",
		"Directions_boat":                  "\xee\xbf\xb5",
		"Directions_boat_filled":           "\xee\xbf\xb5",
		"Directions_bus":                   "\xee\xbf\xb6",
		"Directions_bus_filled":            "\xee\xbf\xb6",
		"Directions_car":                   "\xee\xbf\xb7",
		"Directions_car_filled":            "\xee\xbf\xb7",
		"Directions_off":                   "\xef\x84\x8f",
		"Directions_railway":               "\xee\xbf\xb8",
		"Directions_railway_2":             "\xef\x91\xa2",
		"Directions_railway_filled":        "\xee\xbf\xb8",
		"Directions_run":                   "\xee\x95\xa6",
		"Directions_subway":                "\xee\xbf\xba",
		"Directions_subway_filled":         "\xee\xbf\xba",
		"Directions_transit":               "\xee\xbf\xba",
		"Directions_transit_filled":        "\xee\xbf\xba",
		"Directions_walk":                  "\xee\x94\xb6",
		"Directory_sync":                   "\xee\x8e\x94",
		"Dirty_lens":                       "\xee\xbd\x8b",
		"Disabled_by_default":              "\xef\x88\xb0",
		"Disabled_visible":                 "\xee\x9d\xae",
		"Disc_full":                        "\xee\x98\x90",
		"Discover_tune":                    "\xee\x80\x98",
		"Dishwasher":                       "\xee\xa6\xa0",
		"Dishwasher_gen":                   "\xee\xa0\xb2",
		"Display_external_input":           "\xef\x9f\xa7",
		"Display_settings":                 "\xee\xae\x97",
		"Distance":                         "\xef\x9b\xaa",
		"Diversity_1":                      "\xef\xa3\x97",
		"Diversity_2":                      "\xef\xa3\x98",
		"Diversity_3":                      "\xef\xa3\x99",
		"Diversity_4":                      "\xef\xa1\x97",
		"Dns":                              "\xee\xa1\xb5",
		"Do_disturb":                       "\xef\x82\x8c",
		"Do_disturb_alt":                   "\xef\x82\x8d",
		"Do_disturb_off":                   "\xef\x82\x8e",
		"Do_disturb_on":                    "\xef\x82\x8f",
		"Do_not_disturb":                   "\xef\x82\x8d",
		"Do_not_disturb_alt":               "\xef\x82\x8c",
		"Do_not_disturb_off":               "\xef\x82\x8e",
		"Do_not_disturb_on":                "\xef\x82\x8f",
		"Do_not_disturb_on_total_silence":  "\xee\xbf\xbb",
		"Do_not_step":                      "\xef\x86\x9f",
		"Do_not_touch":                     "\xef\x86\xb0",
		"Dock":                             "\xee\x8c\x8e",
		"Dock_to_bottom":                   "\xef\x9f\xa6",
		"Dock_to_left":                     "\xef\x9f\xa5",
		"Dock_to_right":                    "\xef\x9f\xa4",
		"Docs":                             "\xee\xa9\xbd",
		"Docs_add_on":                      "\xef\x83\x82",
		"Docs_apps_script":                 "\xef\x83\x83",
		"Document_scanner":                 "\xee\x97\xba",
		"Document_search":                  "\xef\x8e\x85",
		"Domain":                           "\xee\x9f\xae",
		"Domain_add":                       "\xee\xad\xa2",
		"Domain_disabled":                  "\xee\x83\xaf",
		"Domain_verification":              "\xee\xbd\x8c",
		"Domain_verification_off":          "\xef\x9e\xb0",
		"Domino_mask":                      "\xef\x97\xa4",
		"Done":                             "\xee\xa1\xb6",
		"Done_all":                         "\xee\xa1\xb7",
		"Done_outline":                     "\xee\xa4\xaf",
		"Donut_large":                      "\xee\xa4\x97",
		"Donut_small":                      "\xee\xa4\x98",
		"Door_back":                        "\xee\xbf\xbc",
		"Door_front":                       "\xee\xbf\xbd",
		"Door_open":                        "\xee\x9d\xbc",
		"Door_sensor":                      "\xee\x8a\x8a",
		"Door_sliding":                     "\xee\xbf\xbe",
		"Doorbell":                         "\xee\xbf\xbf",
		"Doorbell_3p":                      "\xee\x87\xa7",
		"Doorbell_chime":                   "\xee\x87\xb3",
		"Double_arrow":                     "\xee\xa9\x90",
		"Downhill_skiing":                  "\xee\x94\x89",
		"Download":                         "\xef\x82\x90",
		"Download_2":                       "\xef\x94\xa3",
		"Download_done":                    "\xef\x82\x91",
		"Download_for_offline":             "\xef\x80\x80",
		"Downloading":                      "\xef\x80\x81",
		"Draft":                            "\xee\x99\xad",
		"Draft_orders":                     "\xee\x9e\xb3",
		"Drafts":                           "\xee\x85\x91",
		"Drag_click":                       "\xef\x9c\x9f",
		"Drag_handle":                      "\xee\x89\x9d",
		"Drag_indicator":                   "\xee\xa5\x85",
		"Drag_pan":                         "\xef\x9c\x9e",
		"Draw":                             "\xee\x9d\x86",
		"Draw_abstract":                    "\xef\x9f\xb8",
		"Draw_collage":                     "\xef\x9f\xb7",
		"Drawing_recognition":              "\xee\xac\x80",
		"Dresser":                          "\xee\x88\x90",
		"Drive_eta":                        "\xee\xbf\xb7",
		"Drive_export":                     "\xef\x90\x9d",
		"Drive_file_move":                  "\xee\xa6\xa1",
		"Drive_file_move_outline":          "\xee\xa6\xa1",
		"Drive_file_move_rtl":              "\xee\xa6\xa1",
		"Drive_file_rename_outline":        "\xee\xa6\xa2",
		"Drive_folder_upload":              "\xee\xa6\xa3",
		"Drive_fusiontable":                "\xee\x99\xb8",
		"Dropdown":                         "\xee\xa6\xa4",
		"Dropper_eye":                      "\xef\x8d\x91",
		"Dry":                              "\xef\x86\xb3",
		"Dry_cleaning":                     "\xee\xa9\x98",
		"Dual_screen":                      "\xef\x9b\x8f",
		"Duo":                              "\xee\xa6\xa5",
		"Dvr":                              "\xee\x86\xb2",
		"Dynamic_feed":                     "\xee\xa8\x94",
		"Dynamic_form":                     "\xef\x86\xbf",
		"E911_avatar":                      "\xef\x84\x9a",
		"E911_emergency":                   "\xef\x84\x99",
		"E_mobiledata":                     "\xef\x80\x82",
		"E_mobiledata_badge":               "\xef\x9f\xa3",
		"Ear_sound":                        "\xef\x8d\x96",
		"Earbud_case":                      "\xef\x8c\xa7",
		"Earbud_left":                      "\xef\x8c\xa6",
		"Earbud_right":                     "\xef\x8c\xa5",
		"Earbuds":                          "\xef\x80\x83",
		"Earbuds_2":                        "\xef\x8c\xa4",
		"Earbuds_battery":                  "\xef\x80\x84",
		"Early_on":                         "\xee\x8a\xba",
		"Earthquake":                       "\xef\x99\x8f",
		"East":                             "\xef\x87\x9f",
		"Ecg":                              "\xef\xa0\x8f",
		"Ecg_heart":                        "\xef\x9b\xa9",
		"Eco":                              "\xee\xa8\xb5",
		"Eda":                              "\xef\x9b\xa8",
		"Edgesensor_high":                  "\xef\x80\x85",
		"Edgesensor_low":                   "\xef\x80\x86",
		"Edit":                             "\xef\x82\x97",
		"Edit_arrow_down":                  "\xef\x8e\x80",
		"Edit_arrow_up":                    "\xef\x8d\xbf",
		"Edit_attributes":                  "\xee\x95\xb8",
		"Edit_audio":                       "\xef\x90\xad",
		"Edit_calendar":                    "\xee\x9d\x82",
		"Edit_document":                    "\xef\xa2\x8c",
		"Edit_location":                    "\xee\x95\xa8",
		"Edit_location_alt":                "\xee\x87\x85",
		"Edit_note":                        "\xee\x9d\x85",
		"Edit_notifications":               "\xee\x94\xa5",
		"Edit_off":                         "\xee\xa5\x90",
		"Edit_road":                        "\xee\xbd\x8d",
		"Edit_square":                      "\xef\xa2\x8d",
		"Editor_choice":                    "\xef\x94\xa8",
		"Egg":                              "\xee\xab\x8c",
		"Egg_alt":                          "\xee\xab\x88",
		"Eject":                            "\xee\xa3\xbb",
		"Elderly":                          "\xef\x88\x9a",
		"Elderly_woman":                    "\xee\xad\xa9",
		"Electric_bike":                    "\xee\xac\x9b",
		"Electric_bolt":                    "\xee\xb0\x9c",
		"Electric_car":                     "\xee\xac\x9c",
		"Electric_meter":                   "\xee\xb0\x9b",
		"Electric_moped":                   "\xee\xac\x9d",
		"Electric_rickshaw":                "\xee\xac\x9e",
		"Electric_scooter":                 "\xee\xac\x9f",
		"Electrical_services":              "\xef\x84\x82",
		"Elevation":                        "\xef\x9b\xa7",
		"Elevator":                         "\xef\x86\xa0",
		"Email":                            "\xee\x85\x99",
		"Emergency":                        "\xee\x87\xab",
		"Emergency_heat":                   "\xef\x85\x9d",
		"Emergency_heat_2":                 "\xef\x93\xa5",
		"Emergency_home":                   "\xee\xa0\xaa",
		"Emergency_recording":              "\xee\xaf\xb4",
		"Emergency_share":                  "\xee\xaf\xb6",
		"Emergency_share_off":              "\xef\x96\x9e",
		"Emoji_emotions":                   "\xee\xa8\xa2",
		"Emoji_events":                     "\xee\xa8\xa3",
		"Emoji_flags":                      "\xef\x83\x86",
		"Emoji_food_beverage":              "\xee\xa8\x9b",
		"Emoji_language":                   "\xef\x93\x8d",
		"Emoji_nature":                     "\xee\xa8\x9c",
		"Emoji_objects":                    "\xee\xa8\xa4",
		"Emoji_people":                     "\xee\xa8\x9d",
		"Emoji_symbols":                    "\xee\xa8\x9e",
		"Emoji_transportation":             "\xee\xa8\x9f",
		"Emoticon":                         "\xee\x97\xb3",
		"Empty_dashboard":                  "\xef\xa1\x84",
		"Enable":                           "\xef\x86\x88",
		"Encrypted":                        "\xee\x96\x93",
		"Encrypted_add":                    "\xef\x90\xa9",
		"Encrypted_add_circle":             "\xef\x90\xaa",
		"Encrypted_minus_circle":           "\xef\x90\xa8",
		"Encrypted_off":                    "\xef\x90\xa7",
		"Endocrinology":                    "\xee\x82\xa9",
		"Energy":                           "\xee\xa6\xa6",
		"Energy_program_saving":            "\xef\x85\x9f",
		"Energy_program_time_used":         "\xef\x85\xa1",
		"Energy_savings_leaf":              "\xee\xb0\x9a",
		"Engineering":                      "\xee\xa8\xbd",
		"Enhanced_encryption":              "\xee\x98\xbf",
		"Ent":                              "\xee\x82\xaa",
		"Enterprise":                       "\xee\x9c\x8e",
		"Enterprise_off":                   "\xee\xad\x8d",
		"Equal":                            "\xef\x9d\xbb",
		"Equalizer":                        "\xee\x80\x9d",
		"Eraser_size_1":                    "\xef\x8f\xbc",
		"Eraser_size_2":                    "\xef\x8f\xbb",
		"Eraser_size_3":                    "\xef\x8f\xba",
		"Eraser_size_4":                    "\xef\x8f\xb9",
		"Eraser_size_5":                    "\xef\x8f\xb8",
		"Error":                            "\xef\xa2\xb6",
		"Error_circle_rounded":             "\xef\xa2\xb6",
		"Error_med":                        "\xee\x92\x9b",
		"Error_outline":                    "\xef\xa2\xb6",
		"Escalator":                        "\xef\x86\xa1",
		"Escalator_warning":                "\xef\x86\xac",
		"Euro":                             "\xee\xa8\x95",
		"Euro_symbol":                      "\xee\xa4\xa6",
		"Ev_charger":                       "\xee\x95\xad",
		"Ev_mobiledata_badge":              "\xef\x9f\xa2",
		"Ev_shadow":                        "\xee\xbe\x8f",
		"Ev_shadow_add":                    "\xef\x96\x80",
		"Ev_shadow_minus":                  "\xef\x95\xbf",
		"Ev_station":                       "\xee\x95\xad",
		"Event":                            "\xee\xa1\xb8",
		"Event_available":                  "\xee\x98\x94",
		"Event_busy":                       "\xee\x98\x95",
		"Event_list":                       "\xef\x9a\x83",
		"Event_note":                       "\xee\x98\x96",
		"Event_repeat":                     "\xee\xad\xbb",
		"Event_seat":                       "\xee\xa4\x83",
		"Event_upcoming":                   "\xef\x88\xb8",
		"Exclamation":                      "\xef\x88\xaf",
		"Exercise":                         "\xef\x9b\xa6",
		"Exit_to_app":                      "\xee\xa1\xb9",
		"Expand":                           "\xee\xa5\x8f",
		"Expand_all":                       "\xee\xa5\x86",
		"Expand_circle_down":               "\xee\x9f\x8d",
		"Expand_circle_right":              "\xef\x96\x91",
		"Expand_circle_up":                 "\xef\x97\x92",
		"Expand_content":                   "\xef\xa0\xb0",
		"Expand_less":                      "\xee\x97\x8e",
		"Expand_more":                      "\xee\x97\x8f",
		"Expansion_panels":                 "\xee\xbe\x90",
		"Expension_panels":                 "\xee\xbe\x90",
		"Experiment":                       "\xee\x9a\x86",
		"Explicit":                         "\xee\x80\x9e",
		"Explore":                          "\xee\xa1\xba",
		"Explore_nearby":                   "\xee\x94\xb8",
		"Explore_off":                      "\xee\xa6\xa8",
		"Explosion":                        "\xef\x9a\x85",
		"Export_notes":                     "\xee\x82\xac",
		"Exposure":                         "\xee\x8f\xb6",
		"Exposure_neg_1":                   "\xee\x8f\x8b",
		"Exposure_neg_2":                   "\xee\x8f\x8c",
		"Exposure_plus_1":                  "\xee\xa0\x80",
		"Exposure_plus_2":                  "\xee\x8f\x8e",
		"Exposure_zero":                    "\xee\x8f\x8f",
		"Extension":                        "\xee\xa1\xbb",
		"Extension_off":                    "\xee\x93\xb5",
		"Eye_tracking":                     "\xef\x93\x89",
		"Eyeglasses":                       "\xef\x9b\xae",
		"Face":                             "\xef\x80\x88",
		"Face_2":                           "\xef\xa3\x9a",
		"Face_3":                           "\xef\xa3\x9b",
		"Face_4":                           "\xef\xa3\x9c",
		"Face_5":                           "\xef\xa3\x9d",
		"Face_6":                           "\xef\xa3\x9e",
		"Face_down":                        "\xef\x90\x82",
		"Face_left":                        "\xef\x90\x81",
		"Face_nod":                         "\xef\x90\x80",
		"Face_retouching_natural":          "\xee\xbd\x8e",
		"Face_retouching_off":              "\xef\x80\x87",
		"Face_right":                       "\xef\x8f\xbf",
		"Face_shake":                       "\xef\x8f\xbe",
		"Face_unlock":                      "\xef\x80\x88",
		"Face_up":                          "\xef\x8f\xbd",
		"Fact_check":                       "\xef\x83\x85",
		"Factory":                          "\xee\xae\xbc",
		"Falling":                          "\xef\x98\x8d",
		"Familiar_face_and_zone":           "\xee\x88\x9c",
		"Family_history":                   "\xee\x82\xad",
		"Family_home":                      "\xee\xac\xa6",
		"Family_link":                      "\xee\xac\x99",
		"Family_restroom":                  "\xef\x86\xa2",
		"Family_star":                      "\xef\x94\xa7",
		"Fan_focus":                        "\xef\x8c\xb4",
		"Fan_indirect":                     "\xef\x8c\xb3",
		"Farsight_digital":                 "\xef\x95\x99",
		"Fast_forward":                     "\xee\x80\x9f",
		"Fast_rewind":                      "\xee\x80\xa0",
		"Fastfood":                         "\xee\x95\xba",
		"Faucet":                           "\xee\x89\xb8",
		"Favorite":                         "\xee\xa1\xbe",
		"Favorite_border":                  "\xee\xa1\xbe",
		"Fax":                              "\xee\xab\x98",
		"Feature_search":                   "\xee\xa6\xa9",
		"Featured_play_list":               "\xee\x81\xad",
		"Featured_seasonal_and_gifts":      "\xee\xbe\x91",
		"Featured_video":                   "\xee\x81\xae",
		"Feed":                             "\xef\x80\x89",
		"Feedback":                         "\xee\xa1\xbf",
		"Female":                           "\xee\x96\x90",
		"Femur":                            "\xef\xa2\x91",
		"Femur_alt":                        "\xef\xa2\x92",
		"Fence":                            "\xef\x87\xb6",
		"Fertile":                          "\xef\x9b\xa5",
		"Festival":                         "\xee\xa9\xa8",
		"Fiber_dvr":                        "\xee\x81\x9d",
		"Fiber_manual_record":              "\xee\x81\xa1",
		"Fiber_new":                        "\xee\x81\x9e",
		"Fiber_pin":                        "\xee\x81\xaa",
		"Fiber_smart_record":               "\xee\x81\xa2",
		"File_copy":                        "\xee\x85\xb3",
		"File_copy_off":                    "\xef\x93\x98",
		"File_download":                    "\xef\x82\x90",
		"File_download_done":               "\xef\x82\x91",
		"File_download_off":                "\xee\x93\xbe",
		"File_export":                      "\xef\x8e\xb2",
		"File_json":                        "\xef\x8e\xbb",
		"File_map":                         "\xee\x8b\x85",
		"File_map_stack":                   "\xef\x8f\xa2",
		"File_open":                        "\xee\xab\xb3",
		"File_png":                         "\xef\x8e\xbc",
		"File_present":                     "\xee\xa8\x8e",
		"File_save":                        "\xef\x85\xbf",
		"File_save_off":                    "\xee\x94\x85",
		"File_upload":                      "\xef\x82\x9b",
		"File_upload_off":                  "\xef\xa2\x86",
		"Files":                            "\xee\xaa\x85",
		"Filter":                           "\xee\x8f\x93",
		"Filter_1":                         "\xee\x8f\x90",
		"Filter_2":                         "\xee\x8f\x91",
		"Filter_3":                         "\xee\x8f\x92",
		"Filter_4":                         "\xee\x8f\x94",
		"Filter_5":                         "\xee\x8f\x95",
		"Filter_6":                         "\xee\x8f\x96",
		"Filter_7":                         "\xee\x8f\x97",
		"Filter_8":                         "\xee\x8f\x98",
		"Filter_9":                         "\xee\x8f\x99",
		"Filter_9_plus":                    "\xee\x8f\x9a",
		"Filter_alt":                       "\xee\xbd\x8f",
		"Filter_alt_off":                   "\xee\xac\xb2",
		"Filter_arrow_right":               "\xef\x8f\x91",
		"Filter_b_and_w":                   "\xee\x8f\x9b",
		"Filter_center_focus":              "\xee\x8f\x9c",
		"Filter_drama":                     "\xee\x8f\x9d",
		"Filter_frames":                    "\xee\x8f\x9e",
		"Filter_hdr":                       "\xee\x8f\x9f",
		"Filter_list":                      "\xee\x85\x92",
		"Filter_list_alt":                  "\xee\xa5\x8e",
		"Filter_list_off":                  "\xee\xad\x97",
		"Filter_none":                      "\xee\x8f\xa0",
		"Filter_retrolux":                  "\xee\x8f\xa1",
		"Filter_tilt_shift":                "\xee\x8f\xa2",
		"Filter_vintage":                   "\xee\x8f\xa3",
		"Finance":                          "\xee\x9a\xbf",
		"Finance_chip":                     "\xef\xa1\x8e",
		"Finance_mode":                     "\xee\xbe\x92",
		"Find_in_page":                     "\xee\xa2\x80",
		"Find_replace":                     "\xee\xa2\x81",
		"Fingerprint":                      "\xee\xa4\x8d",
		"Fingerprint_off":                  "\xef\x92\x9d",
		"Fire_extinguisher":                "\xef\x87\x98",
		"Fire_hydrant":                     "\xef\x86\xa3",
		"Fire_truck":                       "\xef\xa3\xb2",
		"Fireplace":                        "\xee\xa9\x83",
		"First_page":                       "\xee\x97\x9c",
		"Fit_page":                         "\xef\x9d\xba",
		"Fit_page_height":                  "\xef\x8e\x97",
		"Fit_page_width":                   "\xef\x8e\x96",
		"Fit_screen":                       "\xee\xa8\x90",
		"Fit_width":                        "\xef\x9d\xb9",
		"Fitness_center":                   "\xee\xad\x83",
		"Fitness_tracker":                  "\xef\x91\xa3",
		"Flag":                             "\xef\x83\x86",
		"Flag_2":                           "\xef\x90\x8f",
		"Flag_check":                       "\xef\x8f\x98",
		"Flag_circle":                      "\xee\xab\xb8",
		"Flag_filled":                      "\xef\x83\x86",
		"Flaky":                            "\xee\xbd\x90",
		"Flare":                            "\xee\x8f\xa4",
		"Flash_auto":                       "\xee\x8f\xa5",
		"Flash_off":                        "\xee\x8f\xa6",
		"Flash_on":                         "\xee\x8f\xa7",
		"Flashlight_off":                   "\xef\x80\x8a",
		"Flashlight_on":                    "\xef\x80\x8b",
		"Flatware":                         "\xef\x80\x8c",
		"Flex_direction":                   "\xef\x9d\xb8",
		"Flex_no_wrap":                     "\xef\x9d\xb7",
		"Flex_wrap":                        "\xef\x9d\xb6",
		"Flight":                           "\xee\x94\xb9",
		"Flight_class":                     "\xee\x9f\x8b",
		"Flight_land":                      "\xee\xa4\x84",
		"Flight_takeoff":                   "\xee\xa4\x85",
		"Flights_and_hotels":               "\xee\xa6\xab",
		"Flightsmode":                      "\xee\xbe\x93",
		"Flip":                             "\xee\x8f\xa8",
		"Flip_camera_android":              "\xee\xa8\xb7",
		"Flip_camera_ios":                  "\xee\xa8\xb8",
		"Flip_to_back":                     "\xee\xa2\x82",
		"Flip_to_front":                    "\xee\xa2\x83",
		"Float_landscape_2":                "\xef\x91\x9c",
		"Float_portrait_2":                 "\xef\x91\x9b",
		"Flood":                            "\xee\xaf\xa6",
		"Floor":                            "\xef\x9b\xa4",
		"Floor_lamp":                       "\xee\x88\x9e",
		"Flourescent":                      "\xef\x81\xbd",
		"Flowchart":                        "\xef\x8e\x8d",
		"Flowsheet":                        "\xee\x82\xae",
		"Fluid":                            "\xee\x92\x83",
		"Fluid_balance":                    "\xef\xa0\x8d",
		"Fluid_med":                        "\xef\xa0\x8c",
		"Fluorescent":                      "\xef\x81\xbd",
		"Flutter":                          "\xef\x87\x9d",
		"Flutter_dash":                     "\xee\x80\x8b",
		"Flyover":                          "\xef\x91\xb8",
		"Fmd_bad":                          "\xef\x80\x8e",
		"Fmd_good":                         "\xef\x87\x9b",
		"Foggy":                            "\xee\xa0\x98",
		"Folded_hands":                     "\xef\x97\xad",
		"Folder":                           "\xee\x8b\x87",
		"Folder_check":                     "\xef\x8f\x97",
		"Folder_check_2":                   "\xef\x8f\x96",
		"Folder_code":                      "\xef\x8f\x88",
		"Folder_copy":                      "\xee\xae\xbd",
		"Folder_data":                      "\xef\x96\x86",
		"Folder_delete":                    "\xee\xac\xb4",
		"Folder_eye":                       "\xef\x8f\x95",
		"Folder_info":                      "\xef\x8e\x95",
		"Folder_limited":                   "\xef\x93\xa4",
		"Folder_managed":                   "\xef\x9d\xb5",
		"Folder_match":                     "\xef\x8f\x94",
		"Folder_off":                       "\xee\xae\x83",
		"Folder_open":                      "\xee\x8b\x88",
		"Folder_shared":                    "\xee\x8b\x89",
		"Folder_special":                   "\xee\x98\x97",
		"Folder_supervised":                "\xef\x9d\xb4",
		"Folder_zip":                       "\xee\xac\xac",
		"Follow_the_signs":                 "\xef\x88\xa2",
		"Font_download":                    "\xee\x85\xa7",
		"Font_download_off":                "\xee\x93\xb9",
		"Food_bank":                        "\xef\x87\xb2",
		"Foot_bones":                       "\xef\xa2\x93",
		"Footprint":                        "\xef\xa1\xbd",
		"For_you":                          "\xee\xa6\xac",
		"Forest":                           "\xee\xaa\x99",
		"Fork_left":                        "\xee\xae\xa0",
		"Fork_right":                       "\xee\xae\xac",
		"Fork_spoon":                       "\xef\x8f\xa4",
		"Forklift":                         "\xef\xa1\xa8",
		"Format_align_center":              "\xee\x88\xb4",
		"Format_align_justify":             "\xee\x88\xb5",
		"Format_align_left":                "\xee\x88\xb6",
		"Format_align_right":               "\xee\x88\xb7",
		"Format_bold":                      "\xee\x88\xb8",
		"Format_clear":                     "\xee\x88\xb9",
		"Format_color_fill":                "\xee\x88\xba",
		"Format_color_reset":               "\xee\x88\xbb",
		"Format_color_text":                "\xee\x88\xbc",
		"Format_h1":                        "\xef\xa1\x9d",
		"Format_h2":                        "\xef\xa1\x9e",
		"Format_h3":                        "\xef\xa1\x9f",
		"Format_h4":                        "\xef\xa1\xa0",
		"Format_h5":                        "\xef\xa1\xa1",
		"Format_h6":                        "\xef\xa1\xa2",
		"Format_image_left":                "\xef\xa1\xa3",
		"Format_image_right":               "\xef\xa1\xa4",
		"Format_indent_decrease":           "\xee\x88\xbd",
		"Format_indent_increase":           "\xee\x88\xbe",
		"Format_ink_highlighter":           "\xef\xa0\xab",
		"Format_italic":                    "\xee\x88\xbf",
		"Format_letter_spacing":            "\xef\x9d\xb3",
		"Format_letter_spacing_2":          "\xef\x98\x98",
		"Format_letter_spacing_standard":   "\xef\x98\x97",
		"Format_letter_spacing_wide":       "\xef\x98\x96",
		"Format_letter_spacing_wider":      "\xef\x98\x95",
		"Format_line_spacing":              "\xee\x89\x80",
		"Format_list_bulleted":             "\xee\x89\x81",
		"Format_list_bulleted_add":         "\xef\xa1\x89",
		"Format_list_numbered":             "\xee\x89\x82",
		"Format_list_numbered_rtl":         "\xee\x89\xa7",
		"Format_overline":                  "\xee\xad\xa5",
		"Format_paint":                     "\xee\x89\x83",
		"Format_paragraph":                 "\xef\xa1\xa5",
		"Format_quote":                     "\xee\x89\x84",
		"Format_quote_off":                 "\xef\x90\x93",
		"Format_shapes":                    "\xee\x89\x9e",
		"Format_size":                      "\xee\x89\x85",
		"Format_strikethrough":             "\xee\x89\x86",
		"Format_text_clip":                 "\xef\xa0\xaa",
		"Format_text_overflow":             "\xef\xa0\xa9",
		"Format_text_wrap":                 "\xef\xa0\xa8",
		"Format_textdirection_l_to_r":      "\xee\x89\x87",
		"Format_textdirection_r_to_l":      "\xee\x89\x88",
		"Format_textdirection_vertical":    "\xef\x92\xb8",
		"Format_underlined":                "\xee\x89\x89",
		"Format_underlined_squiggle":       "\xef\xa2\x85",
		"Forms_add_on":                     "\xef\x83\x87",
		"Forms_apps_script":                "\xef\x83\x88",
		"Fort":                             "\xee\xaa\xad",
		"Forum":                            "\xee\xa2\xaf",
		"Forward":                          "\xef\x95\xba",
		"Forward_10":                       "\xee\x81\x96",
		"Forward_30":                       "\xee\x81\x97",
		"Forward_5":                        "\xee\x81\x98",
		"Forward_circle":                   "\xef\x9b\xb5",
		"Forward_media":                    "\xef\x9b\xb4",
		"Forward_to_inbox":                 "\xef\x86\x87",
		"Foundation":                       "\xef\x88\x80",
		"Fragrance":                        "\xef\x8d\x85",
		"Frame_inspect":                    "\xef\x9d\xb2",
		"Frame_person":                     "\xef\xa2\xa6",
		"Frame_person_mic":                 "\xef\x93\x95",
		"Frame_person_off":                 "\xef\x9f\x91",
		"Frame_reload":                     "\xef\x9d\xb1",
		"Frame_source":                     "\xef\x9d\xb0",
		"Free_breakfast":                   "\xee\xad\x84",
		"Free_cancellation":                "\xee\x9d\x88",
		"Front_hand":                       "\xee\x9d\xa9",
		"Front_loader":                     "\xef\xa1\xa9",
		"Full_coverage":                    "\xee\xac\x92",
		"Full_hd":                          "\xef\x96\x8b",
		"Full_stacked_bar_chart":           "\xef\x88\x92",
		"Fullscreen":                       "\xee\x97\x90",
		"Fullscreen_exit":                  "\xee\x97\x91",
		"Fullscreen_portrait":              "\xef\x91\x9a",
		"Function":                         "\xef\xa1\xa6",
		"Functions":                        "\xee\x89\x8a",
		"Funicular":                        "\xef\x91\xb7",
		"G_mobiledata":                     "\xef\x80\x90",
		"G_mobiledata_badge":               "\xef\x9f\xa1",
		"G_translate":                      "\xee\xa4\xa7",
		"Gallery_thumbnail":                "\xef\xa1\xaf",
		"Gamepad":                          "\xee\x8c\x8f",
		"Games":                            "\xee\x8c\x8f",
		"Garage":                           "\xef\x80\x91",
		"Garage_door":                      "\xee\x9c\x94",
		"Garage_home":                      "\xee\xa0\xad",
		"Garden_cart":                      "\xef\xa2\xa9",
		"Gas_meter":                        "\xee\xb0\x99",
		"Gastroenterology":                 "\xee\x83\xb1",
		"Gate":                             "\xee\x89\xb7",
		"Gavel":                            "\xee\xa4\x8e",
		"General_device":                   "\xee\x9b\x9e",
		"Generating_tokens":                "\xee\x9d\x89",
		"Genetics":                         "\xee\x83\xb3",
		"Genres":                           "\xee\x9b\xae",
		"Gesture":                          "\xee\x85\x95",
		"Gesture_select":                   "\xef\x99\x97",
		"Get_app":                          "\xef\x82\x90",
		"Gif":                              "\xee\xa4\x88",
		"Gif_2":                            "\xef\x90\x8e",
		"Gif_box":                          "\xee\x9e\xa3",
		"Girl":                             "\xee\xad\xa8",
		"Gite":                             "\xee\x96\x8b",
		"Glass_cup":                        "\xef\x9b\xa3",
		"Globe":                            "\xee\x99\x8c",
		"Globe_asia":                       "\xef\x9e\x99",
		"Globe_book":                       "\xef\x8f\x89",
		"Globe_location_pin":               "\xef\x8d\x9d",
		"Globe_uk":                         "\xef\x9e\x98",
		"Glucose":                          "\xee\x92\xa0",
		"Glyphs":                           "\xef\xa2\xa3",
		"Go_to_line":                       "\xef\x9c\x9d",
		"Golf_course":                      "\xee\xad\x85",
		"Gondola_lift":                     "\xef\x91\xb6",
		"Google_home_devices":              "\xee\x9c\x95",
		"Google_plus_reshare":              "\xef\x95\xba",
		"Google_tv_remote":                 "\xef\x97\x9b",
		"Google_wifi":                      "\xef\x95\xb9",
		"Gpp_bad":                          "\xef\x80\x92",
		"Gpp_good":                         "\xef\x80\x93",
		"Gpp_maybe":                        "\xef\x80\x94",
		"Gps_fixed":                        "\xee\x95\x9c",
		"Gps_not_fixed":                    "\xee\x86\xb7",
		"Gps_off":                          "\xee\x86\xb6",
		"Grade":                            "\xef\x82\x9a",
		"Gradient":                         "\xee\x8f\xa9",
		"Grading":                          "\xee\xa9\x8f",
		"Grain":                            "\xee\x8f\xaa",
		"Graph_1":                          "\xef\x8e\xa0",
		"Graph_2":                          "\xef\x8e\x9f",
		"Graph_3":                          "\xef\x8e\x9e",
		"Graph_4":                          "\xef\x8e\x9d",
		"Graph_5":                          "\xef\x8e\x9c",
		"Graph_6":                          "\xef\x8e\x9b",
		"Graph_7":                          "\xef\x8d\x86",
		"Graphic_eq":                       "\xee\x86\xb8",
		"Grass":                            "\xef\x88\x85",
		"Grid_3x3":                         "\xef\x80\x95",
		"Grid_3x3_off":                     "\xef\x99\xbc",
		"Grid_4x4":                         "\xef\x80\x96",
		"Grid_goldenratio":                 "\xef\x80\x97",
		"Grid_guides":                      "\xef\x9d\xaf",
		"Grid_off":                         "\xee\x8f\xab",
		"Grid_on":                          "\xee\x8f\xac",
		"Grid_view":                        "\xee\xa6\xb0",
		"Grocery":                          "\xee\xbe\x97",
		"Group":                            "\xee\xa8\xa1",
		"Group_add":                        "\xee\x9f\xb0",
		"Group_off":                        "\xee\x9d\x87",
		"Group_remove":                     "\xee\x9e\xad",
		"Group_search":                     "\xef\x8f\x8e",
		"Group_work":                       "\xee\xa2\x86",
		"Grouped_bar_chart":                "\xef\x88\x91",
		"Groups":                           "\xef\x88\xb3",
		"Groups_2":                         "\xef\xa3\x9f",
		"Groups_3":                         "\xef\xa3\xa0",
		"Guardian":                         "\xef\x93\x81",
		"Gynecology":                       "\xee\x83\xb4",
		"H_mobiledata":                     "\xef\x80\x98",
		"H_mobiledata_badge":               "\xef\x9f\xa0",
		"H_plus_mobiledata":                "\xef\x80\x99",
		"H_plus_mobiledata_badge":          "\xef\x9f\x9f",
		"Hail":                             "\xee\xa6\xb1",
		"Hallway":                          "\xee\x9b\xb8",
		"Hand_bones":                       "\xef\xa2\x94",
		"Hand_gesture":                     "\xee\xbe\x9c",
		"Hand_gesture_off":                 "\xef\x8f\xb3",
		"Handheld_controller":              "\xef\x93\x86",
		"Handshake":                        "\xee\xaf\x8b",
		"Handwriting_recognition":          "\xee\xac\x82",
		"Handyman":                         "\xef\x84\x8b",
		"Hangout_video":                    "\xee\x83\x81",
		"Hangout_video_off":                "\xee\x83\x82",
		"Hard_disk":                        "\xef\x8f\x9a",
		"Hard_drive":                       "\xef\xa0\x8e",
		"Hard_drive_2":                     "\xef\x9e\xa4",
		"Hardware":                         "\xee\xa9\x99",
		"Hd":                               "\xee\x81\x92",
		"Hdr_auto":                         "\xef\x80\x9a",
		"Hdr_auto_select":                  "\xef\x80\x9b",
		"Hdr_enhanced_select":              "\xee\xbd\x91",
		"Hdr_off":                          "\xee\x8f\xad",
		"Hdr_off_select":                   "\xef\x80\x9c",
		"Hdr_on":                           "\xee\x8f\xae",
		"Hdr_on_select":                    "\xef\x80\x9d",
		"Hdr_plus":                         "\xef\x80\x9e",
		"Hdr_plus_off":                     "\xee\x8f\xaf",
		"Hdr_strong":                       "\xee\x8f\xb1",
		"Hdr_weak":                         "\xee\x8f\xb2",
		"Head_mounted_device":              "\xef\x93\x85",
		"Headphones":                       "\xef\x80\x9f",
		"Headphones_battery":               "\xef\x80\xa0",
		"Headset":                          "\xef\x80\x9f",
		"Headset_mic":                      "\xee\x8c\x91",
		"Headset_off":                      "\xee\x8c\xba",
		"Healing":                          "\xee\x8f\xb3",
		"Health_and_beauty":                "\xee\xbe\x9d",
		"Health_and_safety":                "\xee\x87\x95",
		"Health_metrics":                   "\xef\x9b\xa2",
		"Heap_snapshot_large":              "\xef\x9d\xae",
		"Heap_snapshot_multiple":           "\xef\x9d\xad",
		"Heap_snapshot_thumbnail":          "\xef\x9d\xac",
		"Hearing":                          "\xee\x80\xa3",
		"Hearing_aid":                      "\xef\x91\xa4",
		"Hearing_aid_disabled":             "\xef\x8e\xb0",
		"Hearing_disabled":                 "\xef\x84\x84",
		"Heart_broken":                     "\xee\xab\x82",
		"Heart_check":                      "\xef\x98\x8a",
		"Heart_minus":                      "\xef\xa2\x83",
		"Heart_plus":                       "\xef\xa2\x84",
		"Heat":                             "\xef\x94\xb7",
		"Heat_pump":                        "\xee\xb0\x98",
		"Heat_pump_balance":                "\xee\x89\xbe",
		"Height":                           "\xee\xa8\x96",
		"Helicopter":                       "\xef\x98\x8c",
		"Help":                             "\xee\xa3\xbd",
		"Help_center":                      "\xef\x87\x80",
		"Help_clinic":                      "\xef\xa0\x90",
		"Help_outline":                     "\xee\xa3\xbd",
		"Hematology":                       "\xee\x83\xb6",
		"Hevc":                             "\xef\x80\xa1",
		"Hexagon":                          "\xee\xac\xb9",
		"Hide":                             "\xee\xbe\x9e",
		"Hide_image":                       "\xef\x80\xa2",
		"Hide_source":                      "\xef\x80\xa3",
		"High_density":                     "\xef\x9e\x9c",
		"High_quality":                     "\xee\x80\xa4",
		"High_res":                         "\xef\x95\x8b",
		"Highlight":                        "\xee\x89\x9f",
		"Highlight_alt":                    "\xee\xbd\x92",
		"Highlight_keyboard_focus":         "\xef\x94\x90",
		"Highlight_mouse_cursor":           "\xef\x94\x91",
		"Highlight_off":                    "\xee\xa2\x88",
		"Highlight_text_cursor":            "\xef\x94\x92",
		"Highlighter_size_1":               "\xef\x9d\xab",
		"Highlighter_size_2":               "\xef\x9d\xaa",
		"Highlighter_size_3":               "\xef\x9d\xa9",
		"Highlighter_size_4":               "\xef\x9d\xa8",
		"Highlighter_size_5":               "\xef\x9d\xa7",
		"Hiking":                           "\xee\x94\x8a",
		"History":                          "\xee\xa2\xb3",
		"History_2":                        "\xef\x8f\xa6",
		"History_edu":                      "\xee\xa8\xbe",
		"History_off":                      "\xef\x93\x9a",
		"History_toggle_off":               "\xef\x85\xbd",
		"Hive":                             "\xee\xaa\xa6",
		"Hls":                              "\xee\xae\x8a",
		"Hls_off":                          "\xee\xae\x8c",
		"Holiday_village":                  "\xee\x96\x8a",
		"Home":                             "\xee\xa6\xb2",
		"Home_and_garden":                  "\xee\xbe\x9f",
		"Home_app_logo":                    "\xee\x8a\x95",
		"Home_filled":                      "\xee\xa6\xb2",
		"Home_health":                      "\xee\x92\xb9",
		"Home_improvement_and_tools":       "\xee\xbe\xa0",
		"Home_iot_device":                  "\xee\x8a\x83",
		"Home_max":                         "\xef\x80\xa4",
		"Home_max_dots":                    "\xee\xa1\x89",
		"Home_mini":                        "\xef\x80\xa5",
		"Home_pin":                         "\xef\x85\x8d",
		"Home_repair_service":              "\xef\x84\x80",
		"Home_speaker":                     "\xef\x84\x9c",
		"Home_storage":                     "\xef\xa1\xac",
		"Home_work":                        "\xef\x80\xb0",
		"Horizontal_distribute":            "\xee\x80\x94",
		"Horizontal_rule":                  "\xef\x84\x88",
		"Horizontal_split":                 "\xee\xa5\x87",
		"Host":                             "\xef\x8f\x99",
		"Hot_tub":                          "\xee\xad\x86",
		"Hotel":                            "\xee\x95\x89",
		"Hotel_class":                      "\xee\x9d\x83",
		"Hourglass":                        "\xee\xaf\xbf",
		"Hourglass_arrow_down":             "\xef\x8d\xbe",
		"Hourglass_arrow_up":               "\xef\x8d\xbd",
		"Hourglass_bottom":                 "\xee\xa9\x9c",
		"Hourglass_disabled":               "\xee\xbd\x93",
		"Hourglass_empty":                  "\xee\xa2\x8b",
		"Hourglass_full":                   "\xee\xa2\x8c",
		"Hourglass_pause":                  "\xef\x8e\x8c",
		"Hourglass_top":                    "\xee\xa9\x9b",
		"House":                            "\xee\xa9\x84",
		"House_siding":                     "\xef\x88\x82",
		"House_with_shield":                "\xee\x9e\x86",
		"Houseboat":                        "\xee\x96\x84",
		"Household_supplies":               "\xee\xbe\xa1",
		"Hov":                              "\xef\x91\xb5",
		"How_to_reg":                       "\xee\x85\xb4",
		"How_to_vote":                      "\xee\x85\xb5",
		"Hr_resting":                       "\xef\x9a\xba",
		"Html":                             "\xee\xad\xbe",
		"Http":                             "\xee\xa4\x82",
		"Https":                            "\xee\xa2\x99",
		"Hub":                              "\xee\xa7\xb4",
		"Humerus":                          "\xef\xa2\x95",
		"Humerus_alt":                      "\xef\xa2\x96",
		"Humidity_high":                    "\xef\x85\xa3",
		"Humidity_indoor":                  "\xef\x95\x98",
		"Humidity_low":                     "\xef\x85\xa4",
		"Humidity_mid":                     "\xef\x85\xa5",
		"Humidity_percentage":              "\xef\xa1\xbe",
		"Hvac":                             "\xef\x84\x8e",
		"Hvac_max_defrost":                 "\xef\x8c\xb2",
		"Ice_skating":                      "\xee\x94\x8b",
		"Icecream":                         "\xee\xa9\xa9",
		"Id_card":                          "\xef\x93\x8a",
		"Identity_aware_proxy":             "\xee\x8b\x9d",
		"Identity_platform":                "\xee\xae\xb7",
		"Ifl":                              "\xee\x80\xa5",
		"Iframe":                           "\xef\x9c\x9b",
		"Iframe_off":                       "\xef\x9c\x9c",
		"Image":                            "\xee\x8f\xb4",
		"Image_arrow_up":                   "\xef\x8c\x97",
		"Image_aspect_ratio":               "\xee\x8f\xb5",
		"Image_not_supported":              "\xef\x84\x96",
		"Image_search":                     "\xee\x90\xbf",
		"Imagesearch_roller":               "\xee\xa6\xb4",
		"Imagesmode":                       "\xee\xbe\xa2",
		"Immunology":                       "\xee\x83\xbb",
		"Import_contacts":                  "\xee\x83\xa0",
		"Import_export":                    "\xee\xa3\x95",
		"Important_devices":                "\xee\xa4\x92",
		"In_home_mode":                     "\xee\xa0\xb3",
		"Inactive_order":                   "\xee\x83\xbc",
		"Inbox":                            "\xee\x85\x96",
		"Inbox_customize":                  "\xef\xa1\x99",
		"Inbox_text":                       "\xef\x8e\x99",
		"Inbox_text_asterisk":              "\xef\x8d\xa0",
		"Inbox_text_person":                "\xef\x8d\x9e",
		"Inbox_text_share":                 "\xef\x8d\x9c",
		"Incomplete_circle":                "\xee\x9e\x9b",
		"Indeterminate_check_box":          "\xee\xa4\x89",
		"Indeterminate_question_box":       "\xef\x95\xad",
		"Info":                             "\xee\xa2\x8e",
		"Info_i":                           "\xef\x96\x9b",
		"Infrared":                         "\xef\xa1\xbc",
		"Ink_eraser":                       "\xee\x9b\x90",
		"Ink_eraser_off":                   "\xee\x9f\xa3",
		"Ink_highlighter":                  "\xee\x9b\x91",
		"Ink_highlighter_move":             "\xef\x94\xa4",
		"Ink_marker":                       "\xee\x9b\x92",
		"Ink_pen":                          "\xee\x9b\x93",
		"Ink_selection":                    "\xee\xbd\x92",
		"Inpatient":                        "\xee\x83\xbe",
		"Input":                            "\xee\xa2\x90",
		"Input_circle":                     "\xef\x9c\x9a",
		"Insert_chart":                     "\xef\x83\x8c",
		"Insert_chart_filled":              "\xef\x83\x8c",
		"Insert_chart_outlined":            "\xef\x83\x8c",
		"Insert_comment":                   "\xee\x89\x8c",
		"Insert_drive_file":                "\xee\x99\xad",
		"Insert_emoticon":                  "\xee\xa8\xa2",
		"Insert_invitation":                "\xee\xa1\xb8",
		"Insert_link":                      "\xee\x89\x90",
		"Insert_page_break":                "\xee\xab\x8a",
		"Insert_photo":                     "\xee\x8f\xb4",
		"Insert_text":                      "\xef\xa0\xa7",
		"Insights":                         "\xef\x82\x92",
		"Install_desktop":                  "\xee\xad\xb1",
		"Install_mobile":                   "\xee\xad\xb2",
		"Instant_mix":                      "\xee\x80\xa6",
		"Integration_instructions":         "\xee\xbd\x94",
		"Interactive_space":                "\xef\x9f\xbf",
		"Interests":                        "\xee\x9f\x88",
		"Interpreter_mode":                 "\xee\xa0\xbb",
		"Inventory":                        "\xee\x85\xb9",
		"Inventory_2":                      "\xee\x86\xa1",
		"Invert_colors":                    "\xee\xa2\x91",
		"Invert_colors_off":                "\xee\x83\x84",
		"Ios":                              "\xee\x80\xa7",
		"Ios_share":                        "\xee\x9a\xb8",
		"Iron":                             "\xee\x96\x83",
		"Iso":                              "\xee\x8f\xb6",
		"Jamboard_kiosk":                   "\xee\xa6\xb5",
		"Javascript":                       "\xee\xad\xbc",
		"Join":                             "\xef\xa1\x8f",
		"Join_full":                        "\xef\xa1\x8f",
		"Join_inner":                       "\xee\xab\xb4",
		"Join_left":                        "\xee\xab\xb2",
		"Join_right":                       "\xee\xab\xaa",
		"Joystick":                         "\xef\x97\xae",
		"Jump_to_element":                  "\xef\x9c\x99",
		"Kayaking":                         "\xee\x94\x8c",
		"Kebab_dining":                     "\xee\xa1\x82",
		"Keep":                             "\xef\x80\xa6",
		"Keep_off":                         "\xee\x9b\xb9",
		"Keep_pin":                         "\xef\x80\xa6",
		"Keep_public":                      "\xef\x95\xaf",
		"Kettle":                           "\xee\x8a\xb9",
		"Key":                              "\xee\x9c\xbc",
		"Key_off":                          "\xee\xae\x84",
		"Key_vertical":                     "\xef\x94\x9a",
		"Key_visualizer":                   "\xef\x86\x99",
		"Keyboard":                         "\xee\x8c\x92",
		"Keyboard_alt":                     "\xef\x80\xa8",
		"Keyboard_arrow_down":              "\xee\x8c\x93",
		"Keyboard_arrow_left":              "\xee\x8c\x94",
		"Keyboard_arrow_right":             "\xee\x8c\x95",
		"Keyboard_arrow_up":                "\xee\x8c\x96",
		"Keyboard_backspace":               "\xee\x8c\x97",
		"Keyboard_capslock":                "\xee\x8c\x98",
		"Keyboard_capslock_badge":          "\xef\x9f\x9e",
		"Keyboard_command_key":             "\xee\xab\xa7",
		"Keyboard_control_key":             "\xee\xab\xa6",
		"Keyboard_double_arrow_down":       "\xee\xab\x90",
		"Keyboard_double_arrow_left":       "\xee\xab\x83",
		"Keyboard_double_arrow_right":      "\xee\xab\x89",
		"Keyboard_double_arrow_up":         "\xee\xab\x8f",
		"Keyboard_external_input":          "\xef\x9f\x9d",
		"Keyboard_full":                    "\xef\x9f\x9c",
		"Keyboard_hide":                    "\xee\x8c\x9a",
		"Keyboard_keys":                    "\xef\x99\xbb",
		"Keyboard_lock":                    "\xef\x92\x92",
		"Keyboard_lock_off":                "\xef\x92\x91",
		"Keyboard_off":                     "\xef\x99\xba",
		"Keyboard_onscreen":                "\xef\x9f\x9b",
		"Keyboard_option_key":              "\xee\xab\xa8",
		"Keyboard_previous_language":       "\xef\x9f\x9a",
		"Keyboard_return":                  "\xee\x8c\x9b",
		"Keyboard_tab":                     "\xee\x8c\x9c",
		"Keyboard_tab_rtl":                 "\xee\xb1\xb3",
		"Keyboard_voice":                   "\xee\x8c\x9d",
		"Kid_star":                         "\xef\x94\xa6",
		"King_bed":                         "\xee\xa9\x85",
		"Kitchen":                          "\xee\xad\x87",
		"Kitesurfing":                      "\xee\x94\x8d",
		"Lab_panel":                        "\xee\x84\x83",
		"Lab_profile":                      "\xee\x84\x84",
		"Lab_research":                     "\xef\xa0\x8b",
		"Label":                            "\xee\xa2\x93",
		"Label_important":                  "\xee\xa5\x88",
		"Label_important_outline":          "\xee\xa5\x88",
		"Label_off":                        "\xee\xa6\xb6",
		"Label_outline":                    "\xee\xa2\x93",
		"Labs":                             "\xee\x84\x85",
		"Lan":                              "\xee\xac\xaf",
		"Landscape":                        "\xee\x95\xa4",
		"Landscape_2":                      "\xef\x93\x84",
		"Landscape_2_edit":                 "\xef\x8c\x90",
		"Landscape_2_off":                  "\xef\x93\x83",
		"Landslide":                        "\xee\xaf\x97",
		"Language":                         "\xee\xa2\x94",
		"Language_chinese_array":           "\xef\x9d\xa6",
		"Language_chinese_cangjie":         "\xef\x9d\xa5",
		"Language_chinese_dayi":            "\xef\x9d\xa4",
		"Language_chinese_pinyin":          "\xef\x9d\xa3",
		"Language_chinese_quick":           "\xef\x9d\xa2",
		"Language_chinese_wubi":            "\xef\x9d\xa1",
		"Language_french":                  "\xef\x9d\xa0",
		"Language_gb_english":              "\xef\x9d\x9f",
		"Language_international":           "\xef\x9d\x9e",
		"Language_japanese_kana":           "\xef\x94\x93",
		"Language_korean_latin":            "\xef\x9d\x9d",
		"Language_pinyin":                  "\xef\x9d\x9c",
		"Language_spanish":                 "\xef\x97\xa9",
		"Language_us":                      "\xef\x9d\x99",
		"Language_us_colemak":              "\xef\x9d\x9b",
		"Language_us_dvorak":               "\xef\x9d\x9a",
		"Laps":                             "\xef\x9a\xb9",
		"Laptop":                           "\xee\x8c\x9e",
		"Laptop_car":                       "\xef\x8f\x8d",
		"Laptop_chromebook":                "\xee\x8c\x9f",
		"Laptop_mac":                       "\xee\x8c\xa0",
		"Laptop_windows":                   "\xee\x8c\xa1",
		"Lasso_select":                     "\xee\xac\x83",
		"Last_page":                        "\xee\x97\x9d",
		"Launch":                           "\xee\xa2\x9e",
		"Laundry":                          "\xee\x8a\xa8",
		"Layers":                           "\xee\x94\xbb",
		"Layers_clear":                     "\xee\x94\xbc",
		"Lda":                              "\xee\x84\x86",
		"Leaderboard":                      "\xef\x88\x8c",
		"Leak_add":                         "\xee\x8f\xb8",
		"Leak_remove":                      "\xee\x8f\xb9",
		"Left_click":                       "\xef\x9c\x98",
		"Left_panel_close":                 "\xef\x9c\x97",
		"Left_panel_open":                  "\xef\x9c\x96",
		"Legend_toggle":                    "\xef\x84\x9b",
		"Lens":                             "\xee\x8f\xba",
		"Lens_blur":                        "\xef\x80\xa9",
		"Letter_switch":                    "\xef\x9d\x98",
		"Library_add":                      "\xee\x80\xbc",
		"Library_add_check":                "\xee\xa6\xb7",
		"Library_books":                    "\xee\x80\xaf",
		"Library_music":                    "\xee\x80\xb0",
		"License":                          "\xee\xac\x84",
		"Lift_to_talk":                     "\xee\xbe\xa3",
		"Light":                            "\xef\x80\xaa",
		"Light_group":                      "\xee\x8a\x8b",
		"Light_mode":                       "\xee\x94\x98",
		"Light_off":                        "\xee\xa6\xb8",
		"Lightbulb":                        "\xee\xa4\x8f",
		"Lightbulb_2":                      "\xef\x8f\xa3",
		"Lightbulb_circle":                 "\xee\xaf\xbe",
		"Lightbulb_outline":                "\xee\xa4\x8f",
		"Lightning_stand":                  "\xee\xbe\xa4",
		"Line_axis":                        "\xee\xaa\x9a",
		"Line_curve":                       "\xef\x9d\x97",
		"Line_end":                         "\xef\xa0\xa6",
		"Line_end_arrow":                   "\xef\xa0\x9d",
		"Line_end_arrow_notch":             "\xef\xa0\x9c",
		"Line_end_circle":                  "\xef\xa0\x9b",
		"Line_end_diamond":                 "\xef\xa0\x9a",
		"Line_end_square":                  "\xef\xa0\x99",
		"Line_start":                       "\xef\xa0\xa5",
		"Line_start_arrow":                 "\xef\xa0\x98",
		"Line_start_arrow_notch":           "\xef\xa0\x97",
		"Line_start_circle":                "\xef\xa0\x96",
		"Line_start_diamond":               "\xef\xa0\x95",
		"Line_start_square":                "\xef\xa0\x94",
		"Line_style":                       "\xee\xa4\x99",
		"Line_weight":                      "\xee\xa4\x9a",
		"Linear_scale":                     "\xee\x89\xa0",
		"Link":                             "\xee\x89\x90",
		"Link_off":                         "\xee\x85\xaf",
		"Linked_camera":                    "\xee\x90\xb8",
		"Linked_services":                  "\xef\x94\xb5",
		"Liquor":                           "\xee\xa9\xa0",
		"List":                             "\xee\xa2\x96",
		"List_alt":                         "\xee\x83\xae",
		"List_alt_add":                     "\xef\x9d\x96",
		"List_alt_check":                   "\xef\x8f\x9e",
		"Lists":                            "\xee\xa6\xb9",
		"Live_help":                        "\xee\x83\x86",
		"Live_tv":                          "\xee\x98\xba",
		"Living":                           "\xef\x80\xab",
		"Local_activity":                   "\xee\x95\x93",
		"Local_airport":                    "\xee\x94\xbd",
		"Local_atm":                        "\xee\x94\xbe",
		"Local_bar":                        "\xee\x95\x80",
		"Local_cafe":                       "\xee\xad\x84",
		"Local_car_wash":                   "\xee\x95\x82",
		"Local_convenience_store":          "\xee\x95\x83",
		"Local_dining":                     "\xee\x95\xa1",
		"Local_drink":                      "\xee\x95\x84",
		"Local_fire_department":            "\xee\xbd\x95",
		"Local_florist":                    "\xee\x95\x85",
		"Local_gas_station":                "\xee\x95\x86",
		"Local_grocery_store":              "\xee\xa3\x8c",
		"Local_hospital":                   "\xee\x95\x88",
		"Local_hotel":                      "\xee\x95\x89",
		"Local_laundry_service":            "\xee\x95\x8a",
		"Local_library":                    "\xee\x95\x8b",
		"Local_mall":                       "\xee\x95\x8c",
		"Local_movies":                     "\xee\xa3\x9a",
		"Local_offer":                      "\xef\x81\x9b",
		"Local_parking":                    "\xee\x95\x8f",
		"Local_pharmacy":                   "\xee\x95\x90",
		"Local_phone":                      "\xef\x83\x94",
		"Local_pizza":                      "\xee\x95\x92",
		"Local_play":                       "\xee\x95\x93",
		"Local_police":                     "\xee\xbd\x96",
		"Local_post_office":                "\xee\x95\x94",
		"Local_printshop":                  "\xee\xa2\xad",
		"Local_see":                        "\xee\x95\x97",
		"Local_shipping":                   "\xee\x95\x98",
		"Local_taxi":                       "\xee\x95\x99",
		"Location_automation":              "\xef\x85\x8f",
		"Location_away":                    "\xef\x85\x90",
		"Location_chip":                    "\xef\xa1\x90",
		"Location_city":                    "\xee\x9f\xb1",
		"Location_disabled":                "\xee\x86\xb6",
		"Location_home":                    "\xef\x85\x92",
		"Location_off":                     "\xee\x83\x87",
		"Location_on":                      "\xef\x87\x9b",
		"Location_pin":                     "\xef\x87\x9b",
		"Location_searching":               "\xee\x86\xb7",
		"Locator_tag":                      "\xef\xa3\x81",
		"Lock":                             "\xee\xa2\x99",
		"Lock_clock":                       "\xee\xbd\x97",
		"Lock_open":                        "\xee\xa2\x98",
		"Lock_open_circle":                 "\xef\x8d\xa1",
		"Lock_open_right":                  "\xef\x99\x96",
		"Lock_outline":                     "\xee\xa2\x99",
		"Lock_person":                      "\xef\xa3\xb3",
		"Lock_reset":                       "\xee\xab\x9e",
		"Login":                            "\xee\xa9\xb7",
		"Logo_dev":                         "\xee\xab\x96",
		"Logout":                           "\xee\xa6\xba",
		"Looks":                            "\xee\x8f\xbc",
		"Looks_3":                          "\xee\x8f\xbb",
		"Looks_4":                          "\xee\x8f\xbd",
		"Looks_5":                          "\xee\x8f\xbe",
		"Looks_6":                          "\xee\x8f\xbf",
		"Looks_one":                        "\xee\x90\x80",
		"Looks_two":                        "\xee\x90\x81",
		"Loop":                             "\xee\xa1\xa3",
		"Loupe":                            "\xee\x90\x82",
		"Low_density":                      "\xef\x9e\x9b",
		"Low_priority":                     "\xee\x85\xad",
		"Lowercase":                        "\xef\x92\x8a",
		"Loyalty":                          "\xee\xa2\x9a",
		"Lte_mobiledata":                   "\xef\x80\xac",
		"Lte_mobiledata_badge":             "\xef\x9f\x99",
		"Lte_plus_mobiledata":              "\xef\x80\xad",
		"Lte_plus_mobiledata_badge":        "\xef\x9f\x98",
		"Luggage":                          "\xef\x88\xb5",
		"Lunch_dining":                     "\xee\xa9\xa1",
		"Lyrics":                           "\xee\xb0\x8b",
		"Macro_auto":                       "\xef\x9b\xb2",
		"Macro_off":                        "\xef\xa3\x92",
		"Magic_button":                     "\xef\x84\xb6",
		"Magic_exchange":                   "\xef\x9f\xb4",
		"Magic_tether":                     "\xef\x9f\x97",
		"Magnification_large":              "\xef\xa0\xbd",
		"Magnification_small":              "\xef\xa0\xbc",
		"Magnify_docked":                   "\xef\x9f\x96",
		"Magnify_fullscreen":               "\xef\x9f\x95",
		"Mail":                             "\xee\x85\x99",
		"Mail_lock":                        "\xee\xb0\x8a",
		"Mail_off":                         "\xef\x92\x8b",
		"Mail_outline":                     "\xee\x85\x99",
		"Male":                             "\xee\x96\x8e",
		"Man":                              "\xee\x93\xab",
		"Man_2":                            "\xef\xa3\xa1",
		"Man_3":                            "\xef\xa3\xa2",
		"Man_4":                            "\xef\xa3\xa3",
		"Manage_accounts":                  "\xef\x80\xae",
		"Manage_history":                   "\xee\xaf\xa7",
		"Manage_search":                    "\xef\x80\xaf",
		"Manga":                            "\xef\x97\xa3",
		"Manufacturing":                    "\xee\x9c\xa6",
		"Map":                              "\xee\x95\x9b",
		"Map_search":                       "\xef\x8f\x8a",
		"Maps_home_work":                   "\xef\x80\xb0",
		"Maps_ugc":                         "\xee\xbd\x98",
		"Margin":                           "\xee\xa6\xbb",
		"Mark_as_unread":                   "\xee\xa6\xbc",
		"Mark_chat_read":                   "\xef\x86\x8b",
		"Mark_chat_unread":                 "\xef\x86\x89",
		"Mark_email_read":                  "\xef\x86\x8c",
		"Mark_email_unread":                "\xef\x86\x8a",
		"Mark_unread_chat_alt":             "\xee\xae\x9d",
		"Markdown":                         "\xef\x95\x92",
		"Markdown_copy":                    "\xef\x95\x93",
		"Markdown_paste":                   "\xef\x95\x94",
		"Markunread":                       "\xee\x85\x99",
		"Markunread_mailbox":               "\xee\xa2\x9b",
		"Masked_transitions":               "\xee\x9c\xae",
		"Masked_transitions_add":           "\xef\x90\xab",
		"Masks":                            "\xef\x88\x98",
		"Match_case":                       "\xef\x9b\xb1",
		"Match_case_off":                   "\xef\x8d\xaf",
		"Match_word":                       "\xef\x9b\xb0",
		"Matter":                           "\xee\xa4\x87",
		"Maximize":                         "\xee\xa4\xb0",
		"Measuring_tape":                   "\xef\x9a\xaf",
		"Media_bluetooth_off":              "\xef\x80\xb1",
		"Media_bluetooth_on":               "\xef\x80\xb2",
		"Media_link":                       "\xef\xa0\xbf",
		"Media_output":                     "\xef\x93\xb2",
		"Media_output_off":                 "\xef\x93\xb3",
		"Mediation":                        "\xee\xbe\xa7",
		"Medical_information":              "\xee\xaf\xad",
		"Medical_mask":                     "\xef\xa0\x8a",
		"Medical_services":                 "\xef\x84\x89",
		"Medication":                       "\xef\x80\xb3",
		"Medication_liquid":                "\xee\xaa\x87",
		"Meeting_room":                     "\xee\xad\x8f",
		"Memory":                           "\xee\x8c\xa2",
		"Memory_alt":                       "\xef\x9e\xa3",
		"Menstrual_health":                 "\xef\x9b\xa1",
		"Menu":                             "\xee\x97\x92",
		"Menu_book":                        "\xee\xa8\x99",
		"Menu_open":                        "\xee\xa6\xbd",
		"Merge":                            "\xee\xae\x98",
		"Merge_type":                       "\xee\x89\x92",
		"Message":                          "\xee\x83\x89",
		"Metabolism":                       "\xee\x84\x8b",
		"Metro":                            "\xef\x91\xb4",
		"Mfg_nest_yale_lock":               "\xef\x84\x9d",
		"Mic":                              "\xee\x8c\x9d",
		"Mic_alert":                        "\xef\x8e\x92",
		"Mic_double":                       "\xef\x97\x91",
		"Mic_external_off":                 "\xee\xbd\x99",
		"Mic_external_on":                  "\xee\xbd\x9a",
		"Mic_none":                         "\xee\x8c\x9d",
		"Mic_off":                          "\xee\x80\xab",
		"Microbiology":                     "\xee\x84\x8c",
		"Microwave":                        "\xef\x88\x84",
		"Microwave_gen":                    "\xee\xa1\x87",
		"Military_tech":                    "\xee\xa8\xbf",
		"Mimo":                             "\xee\xa6\xbe",
		"Mimo_disconnect":                  "\xee\xa6\xbf",
		"Mindfulness":                      "\xef\x9b\xa0",
		"Minimize":                         "\xee\xa4\xb1",
		"Minor_crash":                      "\xee\xaf\xb1",
		"Mintmark":                         "\xee\xbe\xa9",
		"Missed_video_call":                "\xef\x83\x8e",
		"Missed_video_call_filled":         "\xef\x83\x8e",
		"Missing_controller":               "\xee\x9c\x81",
		"Mist":                             "\xee\x86\x88",
		"Mitre":                            "\xef\x95\x87",
		"Mixture_med":                      "\xee\x93\x88",
		"Mms":                              "\xee\x98\x98",
		"Mobile_friendly":                  "\xee\x88\x80",
		"Mobile_hand":                      "\xef\x8c\xa3",
		"Mobile_hand_left":                 "\xef\x8c\x93",
		"Mobile_hand_left_off":             "\xef\x8c\x92",
		"Mobile_hand_off":                  "\xef\x8c\x94",
		"Mobile_loupe":                     "\xef\x8c\xa2",
		"Mobile_off":                       "\xee\x88\x81",
		"Mobile_screen_share":              "\xee\x83\xa7",
		"Mobile_screensaver":               "\xef\x8c\xa1",
		"Mobile_sound_2":                   "\xef\x8c\x98",
		"Mobile_speaker":                   "\xef\x8c\xa0",
		"Mobiledata_off":                   "\xef\x80\xb4",
		"Mode":                             "\xef\x82\x97",
		"Mode_comment":                     "\xee\x89\x93",
		"Mode_cool":                        "\xef\x85\xa6",
		"Mode_cool_off":                    "\xef\x85\xa7",
		"Mode_dual":                        "\xef\x95\x97",
		"Mode_edit":                        "\xef\x82\x97",
		"Mode_edit_outline":                "\xef\x82\x97",
		"Mode_fan":                         "\xef\x85\xa8",
		"Mode_fan_off":                     "\xee\xb0\x97",
		"Mode_heat":                        "\xef\x85\xaa",
		"Mode_heat_cool":                   "\xef\x85\xab",
		"Mode_heat_off":                    "\xef\x85\xad",
		"Mode_night":                       "\xef\x80\xb6",
		"Mode_of_travel":                   "\xee\x9f\x8e",
		"Mode_off_on":                      "\xef\x85\xaf",
		"Mode_standby":                     "\xef\x80\xb7",
		"Model_training":                   "\xef\x83\x8f",
		"Modeling":                         "\xef\x8e\xaa",
		"Monetization_on":                  "\xee\x89\xa3",
		"Money":                            "\xee\x95\xbd",
		"Money_bag":                        "\xef\x8f\xae",
		"Money_off":                        "\xef\x80\xb8",
		"Money_off_csred":                  "\xef\x80\xb8",
		"Monitor":                          "\xee\xbd\x9b",
		"Monitor_heart":                    "\xee\xaa\xa2",
		"Monitor_weight":                   "\xef\x80\xb9",
		"Monitor_weight_gain":              "\xef\x9b\x9f",
		"Monitor_weight_loss":              "\xef\x9b\x9e",
		"Monitoring":                       "\xef\x86\x90",
		"Monochrome_photos":                "\xee\x90\x83",
		"Monorail":                         "\xef\x91\xb3",
		"Mood":                             "\xee\xa8\xa2",
		"Mood_bad":                         "\xee\x9f\xb3",
		"Moon_stars":                       "\xef\x8d\x8f",
		"Mop":                              "\xee\x8a\x8d",
		"Moped":                            "\xee\xac\xa8",
		"More":                             "\xee\x98\x99",
		"More_down":                        "\xef\x86\x96",
		"More_horiz":                       "\xee\x97\x93",
		"More_time":                        "\xee\xa9\x9d",
		"More_up":                          "\xef\x86\x97",
		"More_vert":                        "\xee\x97\x94",
		"Mosque":                           "\xee\xaa\xb2",
		"Motion_blur":                      "\xef\x83\x90",
		"Motion_mode":                      "\xef\xa1\x82",
		"Motion_photos_auto":               "\xef\x80\xba",
		"Motion_photos_off":                "\xee\xa7\x80",
		"Motion_photos_on":                 "\xee\xa7\x81",
		"Motion_photos_pause":              "\xef\x88\xa7",
		"Motion_photos_paused":             "\xef\x88\xa7",
		"Motion_play":                      "\xef\x90\x8b",
		"Motion_sensor_active":             "\xee\x9e\x92",
		"Motion_sensor_alert":              "\xee\x9e\x84",
		"Motion_sensor_idle":               "\xee\x9e\x83",
		"Motion_sensor_urgent":             "\xee\x9e\x8e",
		"Motorcycle":                       "\xee\xa4\x9b",
		"Mountain_flag":                    "\xef\x97\xa2",
		"Mouse":                            "\xee\x8c\xa3",
		"Mouse_lock":                       "\xef\x92\x90",
		"Mouse_lock_off":                   "\xef\x92\x8f",
		"Move":                             "\xee\x9d\x80",
		"Move_down":                        "\xee\xad\xa1",
		"Move_group":                       "\xef\x9c\x95",
		"Move_item":                        "\xef\x87\xbf",
		"Move_location":                    "\xee\x9d\x81",
		"Move_selection_down":              "\xef\x9c\x94",
		"Move_selection_left":              "\xef\x9c\x93",
		"Move_selection_right":             "\xef\x9c\x92",
		"Move_selection_up":                "\xef\x9c\x91",
		"Move_to_inbox":                    "\xee\x85\xa8",
		"Move_up":                          "\xee\xad\xa4",
		"Moved_location":                   "\xee\x96\x94",
		"Movie":                            "\xee\x90\x84",
		"Movie_creation":                   "\xee\x90\x84",
		"Movie_edit":                       "\xef\xa1\x80",
		"Movie_filter":                     "\xee\x90\xba",
		"Movie_info":                       "\xee\x80\xad",
		"Movie_off":                        "\xef\x92\x99",
		"Moving":                           "\xee\x94\x81",
		"Moving_beds":                      "\xee\x9c\xbd",
		"Moving_ministry":                  "\xee\x9c\xbe",
		"Mp":                               "\xee\xa7\x83",
		"Multicooker":                      "\xee\x8a\x93",
		"Multiline_chart":                  "\xee\x9b\x9f",
		"Multimodal_hand_eye":              "\xef\x90\x9b",
		"Multiple_airports":                "\xee\xbe\xab",
		"Multiple_stop":                    "\xef\x86\xb9",
		"Museum":                           "\xee\xa8\xb6",
		"Music_cast":                       "\xee\xac\x9a",
		"Music_note":                       "\xee\x90\x85",
		"Music_note_add":                   "\xef\x8e\x91",
		"Music_off":                        "\xee\x91\x80",
		"Music_video":                      "\xee\x81\xa3",
		"My_location":                      "\xee\x95\x9c",
		"Mystery":                          "\xef\x97\xa1",
		"Nat":                              "\xee\xbd\x9c",
		"Nature":                           "\xee\x90\x86",
		"Nature_people":                    "\xee\x90\x87",
		"Navigate_before":                  "\xee\x97\x8b",
		"Navigate_next":                    "\xee\x97\x8c",
		"Navigation":                       "\xee\x95\x9d",
		"Near_me":                          "\xee\x95\xa9",
		"Near_me_disabled":                 "\xef\x87\xaf",
		"Nearby":                           "\xee\x9a\xb7",
		"Nearby_error":                     "\xef\x80\xbb",
		"Nearby_off":                       "\xef\x80\xbc",
		"Nephrology":                       "\xee\x84\x8d",
		"Nest_audio":                       "\xee\xae\xbf",
		"Nest_cam_floodlight":              "\xef\xa2\xb7",
		"Nest_cam_indoor":                  "\xef\x84\x9e",
		"Nest_cam_iq":                      "\xef\x84\x9f",
		"Nest_cam_iq_outdoor":              "\xef\x84\xa0",
		"Nest_cam_magnet_mount":            "\xef\xa2\xb8",
		"Nest_cam_outdoor":                 "\xef\x84\xa1",
		"Nest_cam_stand":                   "\xef\xa2\xb9",
		"Nest_cam_wall_mount":              "\xef\xa2\xba",
		"Nest_cam_wired_stand":             "\xee\xb0\x96",
		"Nest_clock_farsight_analog":       "\xef\xa2\xbb",
		"Nest_clock_farsight_digital":      "\xef\xa2\xbc",
		"Nest_connect":                     "\xef\x84\xa2",
		"Nest_detect":                      "\xef\x84\xa3",
		"Nest_display":                     "\xef\x84\xa4",
		"Nest_display_max":                 "\xef\x84\xa5",
		"Nest_doorbell_visitor":            "\xef\xa2\xbd",
		"Nest_eco_leaf":                    "\xef\xa2\xbe",
		"Nest_farsight_weather":            "\xef\xa2\xbf",
		"Nest_found_savings":               "\xef\xa3\x80",
		"Nest_gale_wifi":                   "\xef\x95\xb9",
		"Nest_heat_link_e":                 "\xef\x84\xa6",
		"Nest_heat_link_gen_3":             "\xef\x84\xa7",
		"Nest_hello_doorbell":              "\xee\xa0\xac",
		"Nest_locator_tag":                 "\xef\xa3\x81",
		"Nest_mini":                        "\xee\x9e\x89",
		"Nest_multi_room":                  "\xef\xa3\x82",
		"Nest_protect":                     "\xee\x9a\x8e",
		"Nest_remote":                      "\xef\x97\x9b",
		"Nest_remote_comfort_sensor":       "\xef\x84\xaa",
		"Nest_secure_alarm":                "\xef\x84\xab",
		"Nest_sunblock":                    "\xef\xa3\x83",
		"Nest_tag":                         "\xef\xa3\x81",
		"Nest_thermostat":                  "\xee\x9a\x8f",
		"Nest_thermostat_e_eu":             "\xef\x84\xad",
		"Nest_thermostat_gen_3":            "\xef\x84\xae",
		"Nest_thermostat_sensor":           "\xef\x84\xaf",
		"Nest_thermostat_sensor_eu":        "\xef\x84\xb0",
		"Nest_thermostat_zirconium_eu":     "\xef\x84\xb1",
		"Nest_true_radiant":                "\xef\xa3\x84",
		"Nest_wake_on_approach":            "\xef\xa3\x85",
		"Nest_wake_on_press":               "\xef\xa3\x86",
		"Nest_wifi_gale":                   "\xef\x84\xb2",
		"Nest_wifi_mistral":                "\xef\x84\xb3",
		"Nest_wifi_point":                  "\xef\x84\xb4",
		"Nest_wifi_point_vento":            "\xef\x84\xb4",
		"Nest_wifi_pro":                    "\xef\x95\xab",
		"Nest_wifi_pro_2":                  "\xef\x95\xaa",
		"Nest_wifi_router":                 "\xef\x84\xb3",
		"Network_cell":                     "\xee\x86\xb9",
		"Network_check":                    "\xee\x99\x80",
		"Network_intel_node":               "\xef\x8d\xb1",
		"Network_intelligence":             "\xee\xbe\xac",
		"Network_intelligence_history":     "\xef\x97\xb6",
		"Network_intelligence_update":      "\xef\x97\xb5",
		"Network_locked":                   "\xee\x98\x9a",
		"Network_manage":                   "\xef\x9e\xab",
		"Network_node":                     "\xef\x95\xae",
		"Network_ping":                     "\xee\xaf\x8a",
		"Network_wifi":                     "\xee\x86\xba",
		"Network_wifi_1_bar":               "\xee\xaf\xa4",
		"Network_wifi_1_bar_locked":        "\xef\x96\x8f",
		"Network_wifi_2_bar":               "\xee\xaf\x96",
		"Network_wifi_2_bar_locked":        "\xef\x96\x8e",
		"Network_wifi_3_bar":               "\xee\xaf\xa1",
		"Network_wifi_3_bar_locked":        "\xef\x96\x8d",
		"Network_wifi_locked":              "\xef\x94\xb2",
		"Neurology":                        "\xee\x84\x8e",
		"New_label":                        "\xee\x98\x89",
		"New_releases":                     "\xee\xbd\xb6",
		"New_window":                       "\xef\x9c\x90",
		"News":                             "\xee\x80\xb2",
		"Newsmode":                         "\xee\xbe\xad",
		"Newspaper":                        "\xee\xae\x81",
		"Newsstand":                        "\xee\xa7\x84",
		"Next_plan":                        "\xee\xbd\x9d",
		"Next_week":                        "\xee\x85\xaa",
		"Nfc":                              "\xee\x86\xbb",
		"Nfc_off":                          "\xef\x8d\xa9",
		"Night_shelter":                    "\xef\x87\xb1",
		"Night_sight_auto":                 "\xef\x87\x97",
		"Night_sight_auto_off":             "\xef\x87\xb9",
		"Night_sight_max":                  "\xef\x9b\x83",
		"Nightlife":                        "\xee\xa9\xa2",
		"Nightlight":                       "\xef\x80\xbd",
		"Nightlight_round":                 "\xef\x80\xbd",
		"Nights_stay":                      "\xee\xa9\x86",
		"No_accounts":                      "\xef\x80\xbe",
		"No_adult_content":                 "\xef\xa3\xbe",
		"No_backpack":                      "\xef\x88\xb7",
		"No_crash":                         "\xee\xaf\xb0",
		"No_drinks":                        "\xef\x86\xa5",
		"No_encryption":                    "\xef\x80\xbf",
		"No_encryption_gmailerrorred":      "\xef\x80\xbf",
		"No_flash":                         "\xef\x86\xa6",
		"No_food":                          "\xef\x86\xa7",
		"No_luggage":                       "\xef\x88\xbb",
		"No_meals":                         "\xef\x87\x96",
		"No_meeting_room":                  "\xee\xad\x8e",
		"No_photography":                   "\xef\x86\xa8",
		"No_sim":                           "\xee\x87\x8e",
		"No_sound":                         "\xee\x9c\x90",
		"No_stroller":                      "\xef\x86\xaf",
		"No_transfer":                      "\xef\x87\x95",
		"Noise_aware":                      "\xee\xaf\xac",
		"Noise_control_off":                "\xee\xaf\xb3",
		"Noise_control_on":                 "\xef\xa2\xa8",
		"Nordic_walking":                   "\xee\x94\x8e",
		"North":                            "\xef\x87\xa0",
		"North_east":                       "\xef\x87\xa1",
		"North_west":                       "\xef\x87\xa2",
		"Not_accessible":                   "\xef\x83\xbe",
		"Not_accessible_forward":           "\xef\x95\x8a",
		"Not_interested":                   "\xef\x82\x8c",
		"Not_listed_location":              "\xee\x95\xb5",
		"Not_started":                      "\xef\x83\x91",
		"Note":                             "\xee\x99\xad",
		"Note_add":                         "\xee\xa2\x9c",
		"Note_alt":                         "\xef\x81\x80",
		"Note_stack":                       "\xef\x95\xa2",
		"Note_stack_add":                   "\xef\x95\xa3",
		"Notes":                            "\xee\x89\xac",
		"Notification_add":                 "\xee\x8e\x99",
		"Notification_important":           "\xee\x80\x84",
		"Notification_multiple":            "\xee\x9b\x82",
		"Notification_settings":            "\xef\x8d\xa7",
		"Notification_sound":               "\xef\x8d\x93",
		"Notifications":                    "\xee\x9f\xb5",
		"Notifications_active":             "\xee\x9f\xb7",
		"Notifications_none":               "\xee\x9f\xb5",
		"Notifications_off":                "\xee\x9f\xb6",
		"Notifications_paused":             "\xee\x9f\xb8",
		"Notifications_unread":             "\xef\x93\xbe",
		"Numbers":                          "\xee\xab\x87",
		"Nutrition":                        "\xee\x84\x90",
		"Ods":                              "\xee\x9b\xa8",
		"Odt":                              "\xee\x9b\xa9",
		"Offline_bolt":                     "\xee\xa4\xb2",
		"Offline_pin":                      "\xee\xa4\x8a",
		"Offline_pin_off":                  "\xef\x93\x90",
		"Offline_share":                    "\xee\xa7\x85",
		"Oil_barrel":                       "\xee\xb0\x95",
		"On_device_training":               "\xee\xaf\xbd",
		"On_hub_device":                    "\xee\x9b\x83",
		"Oncology":                         "\xee\x84\x94",
		"Ondemand_video":                   "\xee\x98\xba",
		"Online_prediction":                "\xef\x83\xab",
		"Onsen":                            "\xef\x9b\xb8",
		"Opacity":                          "\xee\xa4\x9c",
		"Open_in_browser":                  "\xee\xa2\x9d",
		"Open_in_full":                     "\xef\x87\x8e",
		"Open_in_new":                      "\xee\xa2\x9e",
		"Open_in_new_down":                 "\xef\x9c\x8f",
		"Open_in_new_off":                  "\xee\x93\xb6",
		"Open_in_phone":                    "\xee\x9c\x82",
		"Open_jam":                         "\xee\xbe\xae",
		"Open_run":                         "\xef\x92\xb7",
		"Open_with":                        "\xee\xa2\x9f",
		"Ophthalmology":                    "\xee\x84\x95",
		"Oral_disease":                     "\xee\x84\x96",
		"Orbit":                            "\xef\x90\xa6",
		"Order_approve":                    "\xef\xa0\x92",
		"Order_play":                       "\xef\xa0\x91",
		"Orders":                           "\xee\xac\x94",
		"Orthopedics":                      "\xef\xa2\x97",
		"Other_admission":                  "\xee\x91\xbb",
		"Other_houses":                     "\xee\x96\x8c",
		"Outbound":                         "\xee\x87\x8a",
		"Outbox":                           "\xee\xbd\x9f",
		"Outbox_alt":                       "\xee\xac\x97",
		"Outdoor_garden":                   "\xee\x88\x85",
		"Outdoor_grill":                    "\xee\xa9\x87",
		"Outgoing_mail":                    "\xef\x83\x92",
		"Outlet":                           "\xef\x87\x94",
		"Outlined_flag":                    "\xef\x83\x86",
		"Outpatient":                       "\xee\x84\x98",
		"Outpatient_med":                   "\xee\x84\x99",
		"Output":                           "\xee\xae\xbe",
		"Output_circle":                    "\xef\x9c\x8e",
		"Oven":                             "\xee\xa7\x87",
		"Oven_gen":                         "\xee\xa1\x83",
		"Overview":                         "\xee\x92\xa7",
		"Overview_key":                     "\xef\x9f\x94",
		"Owl":                              "\xef\x8e\xb4",
		"Oxygen_saturation":                "\xee\x93\x9e",
		"P2p":                              "\xef\x94\xaa",
		"Pace":                             "\xef\x9a\xb8",
		"Pacemaker":                        "\xee\x99\x96",
		"Package":                          "\xee\x92\x8f",
		"Package_2":                        "\xef\x95\xa9",
		"Padding":                          "\xee\xa7\x88",
		"Page_control":                     "\xee\x9c\xb1",
		"Page_footer":                      "\xef\x8e\x83",
		"Page_header":                      "\xef\x8e\x84",
		"Page_info":                        "\xef\x98\x94",
		"Pageless":                         "\xef\x94\x89",
		"Pages":                            "\xee\x9f\xb9",
		"Pageview":                         "\xee\xa2\xa0",
		"Paid":                             "\xef\x81\x81",
		"Palette":                          "\xee\x90\x8a",
		"Pallet":                           "\xef\xa1\xaa",
		"Pan_tool":                         "\xee\xa4\xa5",
		"Pan_tool_alt":                     "\xee\xae\xb9",
		"Pan_zoom":                         "\xef\x99\x95",
		"Panorama":                         "\xee\x90\x8b",
		"Panorama_fish_eye":                "\xee\x90\x8c",
		"Panorama_horizontal":              "\xee\x90\x8d",
		"Panorama_photosphere":             "\xee\xa7\x89",
		"Panorama_vertical":                "\xee\x90\x8e",
		"Panorama_wide_angle":              "\xee\x90\x8f",
		"Paragliding":                      "\xee\x94\x8f",
		"Park":                             "\xee\xa9\xa3",
		"Partly_cloudy_day":                "\xef\x85\xb2",
		"Partly_cloudy_night":              "\xef\x85\xb4",
		"Partner_exchange":                 "\xef\x9f\xb9",
		"Partner_reports":                  "\xee\xbe\xaf",
		"Party_mode":                       "\xee\x9f\xba",
		"Passkey":                          "\xef\xa1\xbf",
		"Password":                         "\xef\x81\x82",
		"Password_2":                       "\xef\x92\xa9",
		"Password_2_off":                   "\xef\x92\xa8",
		"Patient_list":                     "\xee\x99\x93",
		"Pattern":                          "\xef\x81\x83",
		"Pause":                            "\xee\x80\xb4",
		"Pause_circle":                     "\xee\x86\xa2",
		"Pause_circle_filled":              "\xee\x86\xa2",
		"Pause_circle_outline":             "\xee\x86\xa2",
		"Pause_presentation":               "\xee\x83\xaa",
		"Payment":                          "\xee\xa2\xa1",
		"Payments":                         "\xee\xbd\xa3",
		"Pedal_bike":                       "\xee\xac\xa9",
		"Pediatrics":                       "\xee\x84\x9d",
		"Pen_size_1":                       "\xef\x9d\x95",
		"Pen_size_2":                       "\xef\x9d\x94",
		"Pen_size_3":                       "\xef\x9d\x93",
		"Pen_size_4":                       "\xef\x9d\x92",
		"Pen_size_5":                       "\xef\x9d\x91",
		"Pending":                          "\xee\xbd\xa4",
		"Pending_actions":                  "\xef\x86\xbb",
		"Pentagon":                         "\xee\xad\x90",
		"People":                           "\xee\xa8\xa1",
		"People_alt":                       "\xee\xa8\xa1",
		"People_outline":                   "\xee\xa8\xa1",
		"Percent":                          "\xee\xad\x98",
		"Performance_max":                  "\xee\x94\x9a",
		"Pergola":                          "\xee\x88\x83",
		"Perm_camera_mic":                  "\xee\xa2\xa2",
		"Perm_contact_calendar":            "\xee\xa2\xa3",
		"Perm_data_setting":                "\xee\xa2\xa4",
		"Perm_device_information":          "\xee\xa2\xa5",
		"Perm_identity":                    "\xef\x83\x93",
		"Perm_media":                       "\xee\xa2\xa7",
		"Perm_phone_msg":                   "\xee\xa2\xa8",
		"Perm_scan_wifi":                   "\xee\xa2\xa9",
		"Person":                           "\xef\x83\x93",
		"Person_2":                         "\xef\xa3\xa4",
		"Person_3":                         "\xef\xa3\xa5",
		"Person_4":                         "\xef\xa3\xa6",
		"Person_add":                       "\xee\xa9\x8d",
		"Person_add_alt":                   "\xee\xa9\x8d",
		"Person_add_disabled":              "\xee\xa7\x8b",
		"Person_alert":                     "\xef\x95\xa7",
		"Person_apron":                     "\xef\x96\xa3",
		"Person_book":                      "\xef\x97\xa8",
		"Person_cancel":                    "\xef\x95\xa6",
		"Person_celebrate":                 "\xef\x9f\xbe",
		"Person_check":                     "\xef\x95\xa5",
		"Person_edit":                      "\xef\x93\xba",
		"Person_filled":                    "\xef\x83\x93",
		"Person_off":                       "\xee\x94\x90",
		"Person_outline":                   "\xef\x83\x93",
		"Person_pin":                       "\xee\x95\x9a",
		"Person_pin_circle":                "\xee\x95\xaa",
		"Person_play":                      "\xef\x9f\xbd",
		"Person_raised_hand":               "\xef\x96\x9a",
		"Person_remove":                    "\xee\xbd\xa6",
		"Person_search":                    "\xef\x84\x86",
		"Person_shield":                    "\xee\x8e\x84",
		"Personal_bag":                     "\xee\xac\x8e",
		"Personal_bag_off":                 "\xee\xac\x8f",
		"Personal_bag_question":            "\xee\xac\x90",
		"Personal_injury":                  "\xee\x9b\x9a",
		"Personal_places":                  "\xee\x9c\x83",
		"Personal_video":                   "\xee\x98\xbb",
		"Pest_control":                     "\xef\x83\xba",
		"Pest_control_rodent":              "\xef\x83\xbd",
		"Pet_supplies":                     "\xee\xbe\xb1",
		"Pets":                             "\xee\xa4\x9d",
		"Phishing":                         "\xee\xab\x97",
		"Phone":                            "\xef\x83\x94",
		"Phone_alt":                        "\xef\x83\x94",
		"Phone_android":                    "\xee\x8c\xa4",
		"Phone_bluetooth_speaker":          "\xee\x98\x9b",
		"Phone_callback":                   "\xee\x99\x89",
		"Phone_disabled":                   "\xee\xa7\x8c",
		"Phone_enabled":                    "\xee\xa7\x8d",
		"Phone_forwarded":                  "\xee\x98\x9c",
		"Phone_in_talk":                    "\xee\x98\x9d",
		"Phone_iphone":                     "\xee\x8c\xa5",
		"Phone_locked":                     "\xee\x98\x9e",
		"Phone_missed":                     "\xee\x98\x9f",
		"Phone_paused":                     "\xee\x98\xa0",
		"Phonelink":                        "\xee\x8c\xa6",
		"Phonelink_erase":                  "\xee\x83\x9b",
		"Phonelink_lock":                   "\xee\x83\x9c",
		"Phonelink_off":                    "\xee\x8c\xa7",
		"Phonelink_ring":                   "\xee\x83\x9d",
		"Phonelink_ring_off":               "\xef\x9e\xaa",
		"Phonelink_setup":                  "\xee\xbd\x81",
		"Photo":                            "\xee\x90\xb2",
		"Photo_album":                      "\xee\x90\x91",
		"Photo_auto_merge":                 "\xef\x94\xb0",
		"Photo_camera":                     "\xee\x90\x92",
		"Photo_camera_back":                "\xee\xbd\xa8",
		"Photo_camera_front":               "\xee\xbd\xa9",
		"Photo_filter":                     "\xee\x90\xbb",
		"Photo_frame":                      "\xef\x83\x99",
		"Photo_library":                    "\xee\x90\x93",
		"Photo_prints":                     "\xee\xbe\xb2",
		"Photo_size_select_actual":         "\xee\x90\xb2",
		"Photo_size_select_large":          "\xee\x90\xb3",
		"Photo_size_select_small":          "\xee\x90\xb4",
		"Php":                              "\xee\xae\x8f",
		"Physical_therapy":                 "\xee\x84\x9e",
		"Piano":                            "\xee\x94\xa1",
		"Piano_off":                        "\xee\x94\xa0",
		"Picture_as_pdf":                   "\xee\x90\x95",
		"Picture_in_picture":               "\xee\xa2\xaa",
		"Picture_in_picture_alt":           "\xee\xa4\x91",
		"Picture_in_picture_center":        "\xef\x95\x90",
		"Picture_in_picture_large":         "\xef\x95\x8f",
		"Picture_in_picture_medium":        "\xef\x95\x8e",
		"Picture_in_picture_mobile":        "\xef\x94\x97",
		"Picture_in_picture_off":           "\xef\x94\xaf",
		"Picture_in_picture_small":         "\xef\x95\x8d",
		"Pie_chart":                        "\xef\x83\x9a",
		"Pie_chart_filled":                 "\xef\x83\x9a",
		"Pie_chart_outline":                "\xef\x83\x9a",
		"Pie_chart_outlined":               "\xef\x83\x9a",
		"Pill":                             "\xee\x84\x9f",
		"Pill_off":                         "\xef\xa0\x89",
		"Pin":                              "\xef\x81\x85",
		"Pin_drop":                         "\xee\x95\x9e",
		"Pin_end":                          "\xee\x9d\xa7",
		"Pin_invoke":                       "\xee\x9d\xa3",
		"Pinboard":                         "\xef\x8e\xab",
		"Pinboard_unread":                  "\xef\x8e\xac",
		"Pinch":                            "\xee\xac\xb8",
		"Pinch_zoom_in":                    "\xef\x87\xba",
		"Pinch_zoom_out":                   "\xef\x87\xbb",
		"Pip":                              "\xef\x99\x8d",
		"Pip_exit":                         "\xef\x9c\x8d",
		"Pivot_table_chart":                "\xee\xa7\x8e",
		"Place":                            "\xef\x87\x9b",
		"Place_item":                       "\xef\x87\xb0",
		"Plagiarism":                       "\xee\xa9\x9a",
		"Planet":                           "\xef\x8e\x87",
		"Planner_banner_ad_pt":             "\xee\x9a\x92",
		"Planner_review":                   "\xee\x9a\x94",
		"Play_arrow":                       "\xee\x80\xb7",
		"Play_circle":                      "\xee\x87\x84",
		"Play_disabled":                    "\xee\xbd\xaa",
		"Play_for_work":                    "\xee\xa4\x86",
		"Play_lesson":                      "\xef\x81\x87",
		"Play_music":                       "\xee\x9b\xae",
		"Play_pause":                       "\xef\x84\xb7",
		"Play_shapes":                      "\xef\x9f\xbc",
		"Playing_cards":                    "\xef\x97\x9c",
		"Playlist_add":                     "\xee\x80\xbb",
		"Playlist_add_check":               "\xee\x81\xa5",
		"Playlist_add_check_circle":        "\xee\x9f\xa6",
		"Playlist_add_circle":              "\xee\x9f\xa5",
		"Playlist_play":                    "\xee\x81\x9f",
		"Playlist_remove":                  "\xee\xae\x80",
		"Plug_connect":                     "\xef\x8d\x9a",
		"Plumbing":                         "\xef\x84\x87",
		"Plus_one":                         "\xee\xa0\x80",
		"Podcasts":                         "\xef\x81\x88",
		"Podiatry":                         "\xee\x84\xa0",
		"Podium":                           "\xef\x9f\xbb",
		"Point_of_sale":                    "\xef\x85\xbe",
		"Point_scan":                       "\xef\x9c\x8c",
		"Poker_chip":                       "\xef\x92\x9b",
		"Policy":                           "\xee\xa8\x97",
		"Policy_alert":                     "\xef\x90\x87",
		"Poll":                             "\xef\x83\x8c",
		"Polyline":                         "\xee\xae\xbb",
		"Polymer":                          "\xee\xa2\xab",
		"Pool":                             "\xee\xad\x88",
		"Portable_wifi_off":                "\xef\x82\x87",
		"Portrait":                         "\xee\xa1\x91",
		"Position_bottom_left":             "\xef\x9c\x8b",
		"Position_bottom_right":            "\xef\x9c\x8a",
		"Position_top_right":               "\xef\x9c\x89",
		"Post":                             "\xee\x9c\x85",
		"Post_add":                         "\xee\xa8\xa0",
		"Potted_plant":                     "\xef\xa2\xaa",
		"Power":                            "\xee\x98\xbc",
		"Power_input":                      "\xee\x8c\xb6",
		"Power_off":                        "\xee\x99\x86",
		"Power_rounded":                    "\xef\xa3\x87",
		"Power_settings_circle":            "\xef\x90\x98",
		"Power_settings_new":               "\xef\xa3\x87",
		"Prayer_times":                     "\xef\xa0\xb8",
		"Precision_manufacturing":          "\xef\x81\x89",
		"Pregnancy":                        "\xef\x97\xb1",
		"Pregnant_woman":                   "\xef\x97\xb1",
		"Preliminary":                      "\xee\x9f\x98",
		"Prescriptions":                    "\xee\x84\xa1",
		"Present_to_all":                   "\xee\x83\x9f",
		"Preview":                          "\xef\x87\x85",
		"Preview_off":                      "\xef\x9e\xaf",
		"Price_change":                     "\xef\x81\x8a",
		"Price_check":                      "\xef\x81\x8b",
		"Print":                            "\xee\xa2\xad",
		"Print_add":                        "\xef\x9e\xa2",
		"Print_connect":                    "\xef\x9e\xa1",
		"Print_disabled":                   "\xee\xa7\x8f",
		"Print_error":                      "\xef\x9e\xa0",
		"Print_lock":                       "\xef\x99\x91",
		"Priority":                         "\xee\x86\x9f",
		"Priority_high":                    "\xee\x99\x85",
		"Privacy":                          "\xef\x85\x88",
		"Privacy_tip":                      "\xef\x83\x9c",
		"Private_connectivity":             "\xee\x9d\x84",
		"Problem":                          "\xee\x84\xa2",
		"Procedure":                        "\xee\x99\x91",
		"Process_chart":                    "\xef\xa1\x95",
		"Production_quantity_limits":       "\xee\x87\x91",
		"Productivity":                     "\xee\x8a\x96",
		"Progress_activity":                "\xee\xa7\x90",
		"Prompt_suggestion":                "\xef\x93\xb6",
		"Propane":                          "\xee\xb0\x94",
		"Propane_tank":                     "\xee\xb0\x93",
		"Psychiatry":                       "\xee\x84\xa3",
		"Psychology":                       "\xee\xa9\x8a",
		"Psychology_alt":                   "\xef\xa3\xaa",
		"Public":                           "\xee\xa0\x8b",
		"Public_off":                       "\xef\x87\x8a",
		"Publish":                          "\xee\x89\x95",
		"Published_with_changes":           "\xef\x88\xb2",
		"Pulmonology":                      "\xee\x84\xa4",
		"Pulse_alert":                      "\xef\x94\x81",
		"Punch_clock":                      "\xee\xaa\xa8",
		"Push_pin":                         "\xef\x84\x8d",
		"Qr_code":                          "\xee\xbd\xab",
		"Qr_code_2":                        "\xee\x80\x8a",
		"Qr_code_2_add":                    "\xef\x99\x98",
		"Qr_code_scanner":                  "\xef\x88\x86",
		"Query_builder":                    "\xee\xbf\x96",
		"Query_stats":                      "\xee\x93\xbc",
		"Question_answer":                  "\xee\xa2\xaf",
		"Question_exchange":                "\xef\x9f\xb3",
		"Question_mark":                    "\xee\xae\x8b",
		"Queue":                            "\xee\x80\xbc",
		"Queue_music":                      "\xee\x80\xbd",
		"Queue_play_next":                  "\xee\x81\xa6",
		"Quick_phrases":                    "\xee\x9f\x91",
		"Quick_reference":                  "\xee\x91\xae",
		"Quick_reference_all":              "\xef\xa0\x81",
		"Quick_reorder":                    "\xee\xac\x95",
		"Quickreply":                       "\xee\xbd\xac",
		"Quiet_time":                       "\xef\x85\x99",
		"Quiet_time_active":                "\xee\xad\xb6",
		"Quiz":                             "\xef\x81\x8c",
		"R_mobiledata":                     "\xef\x81\x8d",
		"Radar":                            "\xef\x81\x8e",
		"Radio":                            "\xee\x80\xbe",
		"Radio_button_checked":             "\xee\xa0\xb7",
		"Radio_button_partial":             "\xef\x95\xa0",
		"Radio_button_unchecked":           "\xee\xa0\xb6",
		"Radiology":                        "\xee\x84\xa5",
		"Railway_alert":                    "\xee\xa7\x91",
		"Railway_alert_2":                  "\xef\x91\xa1",
		"Rainy":                            "\xef\x85\xb6",
		"Rainy_heavy":                      "\xef\x98\x9f",
		"Rainy_light":                      "\xef\x98\x9e",
		"Rainy_snow":                       "\xef\x98\x9d",
		"Ramen_dining":                     "\xee\xa9\xa4",
		"Ramp_left":                        "\xee\xae\x9c",
		"Ramp_right":                       "\xee\xae\x96",
		"Range_hood":                       "\xee\x87\xaa",
		"Rate_review":                      "\xee\x95\xa0",
		"Rate_review_rtl":                  "\xee\x9c\x86",
		"Raven":                            "\xef\x95\x95",
		"Raw_off":                          "\xef\x81\x8f",
		"Raw_on":                           "\xef\x81\x90",
		"Read_more":                        "\xee\xbd\xad",
		"Readiness_score":                  "\xef\x9b\x9d",
		"Real_estate_agent":                "\xee\x9c\xba",
		"Rear_camera":                      "\xef\x9b\x82",
		"Rebase":                           "\xef\xa1\x85",
		"Rebase_edit":                      "\xef\xa1\x86",
		"Receipt":                          "\xee\xa2\xb0",
		"Receipt_long":                     "\xee\xbd\xae",
		"Receipt_long_off":                 "\xef\x90\x8a",
		"Recent_actors":                    "\xee\x80\xbf",
		"Recent_patient":                   "\xef\xa0\x88",
		"Recenter":                         "\xef\x93\x80",
		"Recommend":                        "\xee\xa7\x92",
		"Record_voice_over":                "\xee\xa4\x9f",
		"Rectangle":                        "\xee\xad\x94",
		"Recycling":                        "\xee\x9d\xa0",
		"Redeem":                           "\xee\xa3\xb6",
		"Redo":                             "\xee\x85\x9a",
		"Reduce_capacity":                  "\xef\x88\x9c",
		"Refresh":                          "\xee\x97\x95",
		"Regular_expression":               "\xef\x9d\x90",
		"Relax":                            "\xef\x9b\x9c",
		"Release_alert":                    "\xef\x99\x94",
		"Remember_me":                      "\xef\x81\x91",
		"Reminder":                         "\xee\x9b\x86",
		"Reminders_alt":                    "\xee\x9b\x86",
		"Remote_gen":                       "\xee\xa0\xbe",
		"Remove":                           "\xee\x85\x9b",
		"Remove_circle":                    "\xef\x82\x8f",
		"Remove_circle_outline":            "\xef\x82\x8f",
		"Remove_done":                      "\xee\xa7\x93",
		"Remove_from_queue":                "\xee\x81\xa7",
		"Remove_moderator":                 "\xee\xa7\x94",
		"Remove_red_eye":                   "\xee\xa3\xb4",
		"Remove_road":                      "\xee\xaf\xbc",
		"Remove_selection":                 "\xee\xa7\x95",
		"Remove_shopping_cart":             "\xee\xa4\xa8",
		"Reopen_window":                    "\xef\x9c\x88",
		"Reorder":                          "\xee\xa3\xbe",
		"Repartition":                      "\xef\xa3\xa8",
		"Repeat":                           "\xee\x81\x80",
		"Repeat_on":                        "\xee\xa7\x96",
		"Repeat_one":                       "\xee\x81\x81",
		"Repeat_one_on":                    "\xee\xa7\x97",
		"Replace_audio":                    "\xef\x91\x91",
		"Replace_image":                    "\xef\x91\x90",
		"Replace_video":                    "\xef\x91\x8f",
		"Replay":                           "\xee\x81\x82",
		"Replay_10":                        "\xee\x81\x99",
		"Replay_30":                        "\xee\x81\x9a",
		"Replay_5":                         "\xee\x81\x9b",
		"Replay_circle_filled":             "\xee\xa7\x98",
		"Reply":                            "\xee\x85\x9e",
		"Reply_all":                        "\xee\x85\x9f",
		"Report":                           "\xef\x81\x92",
		"Report_gmailerrorred":             "\xef\x81\x92",
		"Report_off":                       "\xee\x85\xb0",
		"Report_problem":                   "\xef\x82\x83",
		"Request_page":                     "\xef\x88\xac",
		"Request_quote":                    "\xef\x86\xb6",
		"Reset_brightness":                 "\xef\x92\x82",
		"Reset_focus":                      "\xef\x92\x81",
		"Reset_image":                      "\xef\xa0\xa4",
		"Reset_iso":                        "\xef\x92\x80",
		"Reset_settings":                   "\xef\x91\xbf",
		"Reset_shadow":                     "\xef\x91\xbe",
		"Reset_shutter_speed":              "\xef\x91\xbd",
		"Reset_tv":                         "\xee\xa7\x99",
		"Reset_white_balance":              "\xef\x91\xbc",
		"Reset_wrench":                     "\xef\x95\xac",
		"Resize":                           "\xef\x9c\x87",
		"Respiratory_rate":                 "\xee\x84\xa7",
		"Responsive_layout":                "\xee\xa7\x9a",
		"Restart_alt":                      "\xef\x81\x93",
		"Restaurant":                       "\xee\x95\xac",
		"Restaurant_menu":                  "\xee\x95\xa1",
		"Restore":                          "\xee\xa2\xb3",
		"Restore_from_trash":               "\xee\xa4\xb8",
		"Restore_page":                     "\xee\xa4\xa9",
		"Resume":                           "\xef\x9f\x90",
		"Reviews":                          "\xef\x81\xbc",
		"Rewarded_ads":                     "\xee\xbe\xb6",
		"Rheumatology":                     "\xee\x84\xa8",
		"Rib_cage":                         "\xef\xa2\x98",
		"Rice_bowl":                        "\xef\x87\xb5",
		"Right_click":                      "\xef\x9c\x86",
		"Right_panel_close":                "\xef\x9c\x85",
		"Right_panel_open":                 "\xef\x9c\x84",
		"Ring_volume":                      "\xef\x83\x9d",
		"Ring_volume_filled":               "\xef\x83\x9d",
		"Ripples":                          "\xee\xa7\x9b",
		"Road":                             "\xef\x91\xb2",
		"Robot":                            "\xef\xa2\x82",
		"Robot_2":                          "\xef\x97\x90",
		"Rocket":                           "\xee\xae\xa5",
		"Rocket_launch":                    "\xee\xae\x9b",
		"Roller_shades":                    "\xee\xb0\x92",
		"Roller_shades_closed":             "\xee\xb0\x91",
		"Roller_skating":                   "\xee\xaf\x8d",
		"Roofing":                          "\xef\x88\x81",
		"Room":                             "\xef\x87\x9b",
		"Room_preferences":                 "\xef\x86\xb8",
		"Room_service":                     "\xee\xad\x89",
		"Rotate_90_degrees_ccw":            "\xee\x90\x98",
		"Rotate_90_degrees_cw":             "\xee\xaa\xab",
		"Rotate_auto":                      "\xef\x90\x97",
		"Rotate_left":                      "\xee\x90\x99",
		"Rotate_right":                     "\xee\x90\x9a",
		"Roundabout_left":                  "\xee\xae\x99",
		"Roundabout_right":                 "\xee\xae\xa3",
		"Rounded_corner":                   "\xee\xa4\xa0",
		"Route":                            "\xee\xab\x8d",
		"Router":                           "\xee\x8c\xa8",
		"Router_off":                       "\xef\x8b\xb4",
		"Routine":                          "\xee\x88\x8c",
		"Rowing":                           "\xee\xa4\xa1",
		"Rss_feed":                         "\xee\x83\xa5",
		"Rsvp":                             "\xef\x81\x95",
		"Rtt":                              "\xee\xa6\xad",
		"Rubric":                           "\xee\xac\xa7",
		"Rule":                             "\xef\x87\x82",
		"Rule_folder":                      "\xef\x87\x89",
		"Rule_settings":                    "\xef\x99\x8c",
		"Run_circle":                       "\xee\xbd\xaf",
		"Running_with_errors":              "\xee\x94\x9d",
		"Rv_hookup":                        "\xee\x99\x82",
		"Safety_check":                     "\xee\xaf\xaf",
		"Safety_check_off":                 "\xef\x96\x9d",
		"Safety_divider":                   "\xee\x87\x8c",
		"Sailing":                          "\xee\x94\x82",
		"Salinity":                         "\xef\xa1\xb6",
		"Sanitizer":                        "\xef\x88\x9d",
		"Satellite":                        "\xee\x95\xa2",
		"Satellite_alt":                    "\xee\xac\xba",
		"Sauna":                            "\xef\x9b\xb7",
		"Save":                             "\xee\x85\xa1",
		"Save_alt":                         "\xef\x82\x90",
		"Save_as":                          "\xee\xad\xa0",
		"Save_clock":                       "\xef\x8e\x98",
		"Saved_search":                     "\xee\xa8\x91",
		"Savings":                          "\xee\x8b\xab",
		"Scale":                            "\xee\xad\x9f",
		"Scan":                             "\xef\x9d\x8e",
		"Scan_delete":                      "\xef\x9d\x8f",
		"Scanner":                          "\xee\x8c\xa9",
		"Scatter_plot":                     "\xee\x89\xa8",
		"Scene":                            "\xee\x8a\xa7",
		"Schedule":                         "\xee\xbf\x96",
		"Schedule_send":                    "\xee\xa8\x8a",
		"Schema":                           "\xee\x93\xbd",
		"School":                           "\xee\xa0\x8c",
		"Science":                          "\xee\xa9\x8b",
		"Science_off":                      "\xef\x95\x82",
		"Scooter":                          "\xef\x91\xb1",
		"Score":                            "\xee\x89\xa9",
		"Scoreboard":                       "\xee\xaf\x90",
		"Screen_lock_landscape":            "\xee\x86\xbe",
		"Screen_lock_portrait":             "\xee\x86\xbf",
		"Screen_lock_rotation":             "\xee\x87\x80",
		"Screen_record":                    "\xef\x99\xb9",
		"Screen_rotation":                  "\xee\x87\x81",
		"Screen_rotation_alt":              "\xee\xaf\xae",
		"Screen_rotation_up":               "\xef\x99\xb8",
		"Screen_search_desktop":            "\xee\xbd\xb0",
		"Screen_share":                     "\xee\x83\xa2",
		"Screenshot":                       "\xef\x81\x96",
		"Screenshot_frame":                 "\xef\x99\xb7",
		"Screenshot_frame_2":               "\xef\x8d\xb4",
		"Screenshot_keyboard":              "\xef\x9f\x93",
		"Screenshot_monitor":               "\xee\xb0\x88",
		"Screenshot_region":                "\xef\x9f\x92",
		"Screenshot_tablet":                "\xef\x9a\x97",
		"Script":                           "\xef\x91\x9f",
		"Scrollable_header":                "\xee\xa7\x9c",
		"Scuba_diving":                     "\xee\xaf\x8e",
		"Sd":                               "\xee\xa7\x9d",
		"Sd_card":                          "\xee\x98\xa3",
		"Sd_card_alert":                    "\xef\x81\x97",
		"Sd_storage":                       "\xee\x98\xa3",
		"Sdk":                              "\xee\x9c\xa0",
		"Search":                           "\xee\xa2\xb6",
		"Search_activity":                  "\xef\x8f\xa5",
		"Search_check":                     "\xef\xa0\x80",
		"Search_check_2":                   "\xef\x91\xa9",
		"Search_hands_free":                "\xee\x9a\x96",
		"Search_insights":                  "\xef\x92\xbc",
		"Search_off":                       "\xee\xa9\xb6",
		"Seat_cool_left":                   "\xef\x8c\xb1",
		"Seat_cool_right":                  "\xef\x8c\xb0",
		"Seat_heat_left":                   "\xef\x8c\xaf",
		"Seat_heat_right":                  "\xef\x8c\xae",
		"Seat_vent_left":                   "\xef\x8c\xad",
		"Seat_vent_right":                  "\xef\x8c\xac",
		"Security":                         "\xee\x8c\xaa",
		"Security_key":                     "\xef\x94\x83",
		"Security_update":                  "\xef\x81\xb2",
		"Security_update_good":             "\xef\x81\xb3",
		"Security_update_warning":          "\xef\x81\xb4",
		"Segment":                          "\xee\xa5\x8b",
		"Select":                           "\xef\x9d\x8d",
		"Select_all":                       "\xee\x85\xa2",
		"Select_check_box":                 "\xef\x87\xbe",
		"Select_to_speak":                  "\xef\x9f\x8f",
		"Select_window":                    "\xee\x9b\xba",
		"Select_window_2":                  "\xef\x93\x88",
		"Select_window_off":                "\xee\x94\x86",
		"Self_care":                        "\xef\xa1\xad",
		"Self_improvement":                 "\xee\xa9\xb8",
		"Sell":                             "\xef\x81\x9b",
		"Send":                             "\xee\x85\xa3",
		"Send_and_archive":                 "\xee\xa8\x8c",
		"Send_money":                       "\xee\xa2\xb7",
		"Send_time_extension":              "\xee\xab\x9b",
		"Send_to_mobile":                   "\xef\x81\x9c",
		"Sensor_door":                      "\xef\x86\xb5",
		"Sensor_occupied":                  "\xee\xb0\x90",
		"Sensor_window":                    "\xef\x86\xb4",
		"Sensors":                          "\xee\x94\x9e",
		"Sensors_krx":                      "\xef\x95\x96",
		"Sensors_krx_off":                  "\xef\x94\x95",
		"Sensors_off":                      "\xee\x94\x9f",
		"Sentiment_calm":                   "\xef\x9a\xa7",
		"Sentiment_content":                "\xef\x9a\xa6",
		"Sentiment_dissatisfied":           "\xee\xa0\x91",
		"Sentiment_excited":                "\xef\x9a\xa5",
		"Sentiment_extremely_dissatisfied": "\xef\x86\x94",
		"Sentiment_frustrated":             "\xef\x9a\xa4",
		"Sentiment_neutral":                "\xee\xa0\x92",
		"Sentiment_sad":                    "\xef\x9a\xa3",
		"Sentiment_satisfied":              "\xee\xa0\x93",
		"Sentiment_satisfied_alt":          "\xee\xa0\x93",
		"Sentiment_stressed":               "\xef\x9a\xa2",
		"Sentiment_very_dissatisfied":      "\xee\xa0\x94",
		"Sentiment_very_satisfied":         "\xee\xa0\x95",
		"Sentiment_worried":                "\xef\x9a\xa1",
		"Serif":                            "\xef\x92\xac",
		"Server_person":                    "\xef\x8e\xbd",
		"Service_toolbox":                  "\xee\x9c\x97",
		"Set_meal":                         "\xef\x87\xaa",
		"Settings":                         "\xee\xa2\xb8",
		"Settings_accessibility":           "\xef\x81\x9d",
		"Settings_account_box":             "\xef\xa0\xb5",
		"Settings_alert":                   "\xef\x85\x83",
		"Settings_applications":            "\xee\xa2\xb9",
		"Settings_b_roll":                  "\xef\x98\xa5",
		"Settings_backup_restore":          "\xee\xa2\xba",
		"Settings_bluetooth":               "\xee\xa2\xbb",
		"Settings_brightness":              "\xee\xa2\xbd",
		"Settings_cell":                    "\xee\xa2\xbc",
		"Settings_cinematic_blur":          "\xef\x98\xa4",
		"Settings_ethernet":                "\xee\xa2\xbe",
		"Settings_heart":                   "\xef\x94\xa2",
		"Settings_input_antenna":           "\xee\xa2\xbf",
		"Settings_input_component":         "\xee\xa3\x81",
		"Settings_input_composite":         "\xee\xa3\x81",
		"Settings_input_hdmi":              "\xee\xa3\x82",
		"Settings_input_svideo":            "\xee\xa3\x83",
		"Settings_motion_mode":             "\xef\xa0\xb3",
		"Settings_night_sight":             "\xef\xa0\xb2",
		"Settings_overscan":                "\xee\xa3\x84",
		"Settings_panorama":                "\xef\xa0\xb1",
		"Settings_phone":                   "\xee\xa3\x85",
		"Settings_photo_camera":            "\xef\xa0\xb4",
		"Settings_power":                   "\xee\xa3\x86",
		"Settings_remote":                  "\xee\xa3\x87",
		"Settings_slow_motion":             "\xef\x98\xa3",
		"Settings_suggest":                 "\xef\x81\x9e",
		"Settings_system_daydream":         "\xee\x87\x83",
		"Settings_timelapse":               "\xef\x98\xa2",
		"Settings_video_camera":            "\xef\x98\xa1",
		"Settings_voice":                   "\xee\xa3\x88",
		"Settop_component":                 "\xee\x8a\xac",
		"Severe_cold":                      "\xee\xaf\x93",
		"Shadow":                           "\xee\xa7\x9f",
		"Shadow_add":                       "\xef\x96\x84",
		"Shadow_minus":                     "\xef\x96\x83",
		"Shape_line":                       "\xef\xa3\x93",
		"Shape_recognition":                "\xee\xac\x81",
		"Shapes":                           "\xee\x98\x82",
		"Share":                            "\xee\xa0\x8d",
		"Share_eta":                        "\xee\x97\xb7",
		"Share_location":                   "\xef\x81\x9f",
		"Share_off":                        "\xef\x9b\x8b",
		"Share_reviews":                    "\xef\xa2\xa4",
		"Share_windows":                    "\xef\x98\x93",
		"Sheets_rtl":                       "\xef\xa0\xa3",
		"Shelf_auto_hide":                  "\xef\x9c\x83",
		"Shelf_position":                   "\xef\x9c\x82",
		"Shelves":                          "\xef\xa1\xae",
		"Shield":                           "\xee\xa7\xa0",
		"Shield_lock":                      "\xef\x9a\x86",
		"Shield_locked":                    "\xef\x96\x92",
		"Shield_moon":                      "\xee\xaa\xa9",
		"Shield_person":                    "\xef\x99\x90",
		"Shield_question":                  "\xef\x94\xa9",
		"Shield_watch":                     "\xef\x8c\x8f",
		"Shield_with_heart":                "\xee\x9e\x8f",
		"Shield_with_house":                "\xee\x9e\x8d",
		"Shift":                            "\xee\x97\xb2",
		"Shift_lock":                       "\xef\x9e\xae",
		"Shift_lock_off":                   "\xef\x92\x83",
		"Shop":                             "\xee\xa3\x89",
		"Shop_2":                           "\xee\xa3\x8a",
		"Shop_two":                         "\xee\xa3\x8a",
		"Shopping_bag":                     "\xef\x87\x8c",
		"Shopping_bag_speed":               "\xef\x8e\x9a",
		"Shopping_basket":                  "\xee\xa3\x8b",
		"Shopping_cart":                    "\xee\xa3\x8c",
		"Shopping_cart_checkout":           "\xee\xae\x88",
		"Shopping_cart_off":                "\xef\x93\xb7",
		"Shoppingmode":                     "\xee\xbe\xb7",
		"Short_stay":                       "\xee\x93\x90",
		"Short_text":                       "\xee\x89\xa1",
		"Shortcut":                         "\xef\x95\xba",
		"Show_chart":                       "\xee\x9b\xa1",
		"Shower":                           "\xef\x81\xa1",
		"Shuffle":                          "\xee\x81\x83",
		"Shuffle_on":                       "\xee\xa7\xa1",
		"Shutter_speed":                    "\xee\x90\xbd",
		"Shutter_speed_add":                "\xef\x95\xbe",
		"Shutter_speed_minus":              "\xef\x95\xbd",
		"Sick":                             "\xef\x88\xa0",
		"Side_navigation":                  "\xee\xa7\xa2",
		"Sign_language":                    "\xee\xaf\xa5",
		"Signal_cellular_0_bar":            "\xef\x82\xa8",
		"Signal_cellular_1_bar":            "\xef\x82\xa9",
		"Signal_cellular_2_bar":            "\xef\x82\xaa",
		"Signal_cellular_3_bar":            "\xef\x82\xab",
		"Signal_cellular_4_bar":            "\xee\x87\x88",
		"Signal_cellular_add":              "\xef\x9e\xa9",
		"Signal_cellular_alt":              "\xee\x88\x82",
		"Signal_cellular_alt_1_bar":        "\xee\xaf\x9f",
		"Signal_cellular_alt_2_bar":        "\xee\xaf\xa3",
		"Signal_cellular_connected_no_internet_0_bar": "\xef\x82\xac",
		"Signal_cellular_connected_no_internet_4_bar": "\xee\x87\x8d",
		"Signal_cellular_no_sim":                      "\xee\x87\x8e",
		"Signal_cellular_nodata":                      "\xef\x81\xa2",
		"Signal_cellular_null":                        "\xee\x87\x8f",
		"Signal_cellular_off":                         "\xee\x87\x90",
		"Signal_cellular_pause":                       "\xef\x96\xa7",
		"Signal_disconnected":                         "\xef\x88\xb9",
		"Signal_wifi_0_bar":                           "\xef\x82\xb0",
		"Signal_wifi_4_bar":                           "\xef\x81\xa5",
		"Signal_wifi_4_bar_lock":                      "\xee\x87\xa1",
		"Signal_wifi_bad":                             "\xef\x81\xa4",
		"Signal_wifi_connected_no_internet_4":         "\xef\x81\xa4",
		"Signal_wifi_off":                             "\xee\x87\x9a",
		"Signal_wifi_statusbar_4_bar":                 "\xef\x81\xa5",
		"Signal_wifi_statusbar_not_connected":         "\xef\x83\xaf",
		"Signal_wifi_statusbar_null":                  "\xef\x81\xa7",
		"Signature":                                   "\xef\x9d\x8c",
		"Signpost":                                    "\xee\xae\x91",
		"Sim_card":                                    "\xee\x8c\xab",
		"Sim_card_alert":                              "\xef\x81\x97",
		"Sim_card_download":                           "\xef\x81\xa8",
		"Simulation":                                  "\xef\x8f\xa1",
		"Single_bed":                                  "\xee\xa9\x88",
		"Sip":                                         "\xef\x81\xa9",
		"Siren":                                       "\xef\x8e\xa7",
		"Siren_check":                                 "\xef\x8e\xa6",
		"Siren_open":                                  "\xef\x8e\xa5",
		"Siren_question":                              "\xef\x8e\xa4",
		"Skateboarding":                               "\xee\x94\x91",
		"Skeleton":                                    "\xef\xa2\x99",
		"Skillet":                                     "\xef\x95\x83",
		"Skillet_cooktop":                             "\xef\x95\x84",
		"Skip_next":                                   "\xee\x81\x84",
		"Skip_previous":                               "\xee\x81\x85",
		"Skull":                                       "\xef\xa2\x9a",
		"Skull_list":                                  "\xef\x8d\xb0",
		"Slab_serif":                                  "\xef\x92\xab",
		"Sledding":                                    "\xee\x94\x92",
		"Sleep":                                       "\xee\x88\x93",
		"Sleep_score":                                 "\xef\x9a\xb7",
		"Slide_library":                               "\xef\xa0\xa2",
		"Sliders":                                     "\xee\xa7\xa3",
		"Slideshow":                                   "\xee\x90\x9b",
		"Slow_motion_video":                           "\xee\x81\xa8",
		"Smart_button":                                "\xef\x87\x81",
		"Smart_card_reader":                           "\xef\x92\xa5",
		"Smart_card_reader_off":                       "\xef\x92\xa6",
		"Smart_display":                               "\xef\x81\xaa",
		"Smart_outlet":                                "\xee\xa1\x84",
		"Smart_screen":                                "\xef\x81\xab",
		"Smart_toy":                                   "\xef\x81\xac",
		"Smartphone":                                  "\xee\x8c\xac",
		"Smartphone_camera":                           "\xef\x91\x8e",
		"Smb_share":                                   "\xef\x9d\x8b",
		"Smoke_free":                                  "\xee\xad\x8a",
		"Smoking_rooms":                               "\xee\xad\x8b",
		"Sms":                                         "\xee\x98\xa5",
		"Sms_failed":                                  "\xee\xa1\xbf",
		"Snippet_folder":                              "\xef\x87\x87",
		"Snooze":                                      "\xee\x81\x86",
		"Snowboarding":                                "\xee\x94\x93",
		"Snowing":                                     "\xee\xa0\x8f",
		"Snowing_heavy":                               "\xef\x98\x9c",
		"Snowmobile":                                  "\xee\x94\x83",
		"Snowshoeing":                                 "\xee\x94\x94",
		"Soap":                                        "\xef\x86\xb2",
		"Social_distance":                             "\xee\x87\x8b",
		"Social_leaderboard":                          "\xef\x9a\xa0",
		"Solar_power":                                 "\xee\xb0\x8f",
		"Sort":                                        "\xee\x85\xa4",
		"Sort_by_alpha":                               "\xee\x81\x93",
		"Sos":                                         "\xee\xaf\xb7",
		"Sound_detection_dog_barking":                 "\xef\x85\x89",
		"Sound_detection_glass_break":                 "\xef\x85\x8a",
		"Sound_detection_loud_sound":                  "\xef\x85\x8b",
		"Sound_sampler":                               "\xef\x9a\xb4",
		"Soup_kitchen":                                "\xee\x9f\x93",
		"Source":                                      "\xef\x87\x88",
		"Source_environment":                          "\xee\x94\xa7",
		"Source_notes":                                "\xee\x84\xad",
		"South":                                       "\xef\x87\xa3",
		"South_america":                               "\xee\x9f\xa4",
		"South_east":                                  "\xef\x87\xa4",
		"South_west":                                  "\xef\x87\xa5",
		"Spa":                                         "\xee\xad\x8c",
		"Space_bar":                                   "\xee\x89\x96",
		"Space_dashboard":                             "\xee\x99\xab",
		"Spatial_audio":                               "\xee\xaf\xab",
		"Spatial_audio_off":                           "\xee\xaf\xa8",
		"Spatial_speaker":                             "\xef\x93\x8f",
		"Spatial_tracking":                            "\xee\xaf\xaa",
		"Speaker":                                     "\xee\x8c\xad",
		"Speaker_group":                               "\xee\x8c\xae",
		"Speaker_notes":                               "\xee\xa3\x8d",
		"Speaker_notes_off":                           "\xee\xa4\xaa",
		"Speaker_phone":                               "\xee\x83\x92",
		"Special_character":                           "\xef\x9d\x8a",
		"Specific_gravity":                            "\xef\xa1\xb2",
		"Speech_to_text":                              "\xef\xa2\xa7",
		"Speed":                                       "\xee\xa7\xa4",
		"Speed_0_25":                                  "\xef\x93\x94",
		"Speed_0_2x":                                  "\xef\x92\x98",
		"Speed_0_5":                                   "\xef\x93\xa2",
		"Speed_0_5x":                                  "\xef\x92\x97",
		"Speed_0_75":                                  "\xef\x93\x93",
		"Speed_0_7x":                                  "\xef\x92\x96",
		"Speed_1_2":                                   "\xef\x93\xa1",
		"Speed_1_25":                                  "\xef\x93\x92",
		"Speed_1_2x":                                  "\xef\x92\x95",
		"Speed_1_5":                                   "\xef\x93\xa0",
		"Speed_1_5x":                                  "\xef\x92\x94",
		"Speed_1_75":                                  "\xef\x93\x91",
		"Speed_1_7x":                                  "\xef\x92\x93",
		"Speed_2x":                                    "\xef\x93\xab",
		"Speed_camera":                                "\xef\x91\xb0",
		"Spellcheck":                                  "\xee\xa3\x8e",
		"Split_scene":                                 "\xef\x8e\xbf",
		"Split_scene_down":                            "\xef\x8b\xbf",
		"Split_scene_left":                            "\xef\x8b\xbe",
		"Split_scene_right":                           "\xef\x8b\xbd",
		"Split_scene_up":                              "\xef\x8b\xbc",
		"Splitscreen":                                 "\xef\x81\xad",
		"Splitscreen_add":                             "\xef\x93\xbd",
		"Splitscreen_bottom":                          "\xef\x99\xb6",
		"Splitscreen_landscape":                       "\xef\x91\x99",
		"Splitscreen_left":                            "\xef\x99\xb5",
		"Splitscreen_portrait":                        "\xef\x91\x98",
		"Splitscreen_right":                           "\xef\x99\xb4",
		"Splitscreen_top":                             "\xef\x99\xb3",
		"Splitscreen_vertical_add":                    "\xef\x93\xbc",
		"Spo2":                                        "\xef\x9b\x9b",
		"Spoke":                                       "\xee\xa6\xa7",
		"Sports":                                      "\xee\xa8\xb0",
		"Sports_and_outdoors":                         "\xee\xbe\xb8",
		"Sports_bar":                                  "\xef\x87\xb3",
		"Sports_baseball":                             "\xee\xa9\x91",
		"Sports_basketball":                           "\xee\xa8\xa6",
		"Sports_cricket":                              "\xee\xa8\xa7",
		"Sports_esports":                              "\xee\xa8\xa8",
		"Sports_football":                             "\xee\xa8\xa9",
		"Sports_golf":                                 "\xee\xa8\xaa",
		"Sports_gymnastics":                           "\xee\xaf\x84",
		"Sports_handball":                             "\xee\xa8\xb3",
		"Sports_hockey":                               "\xee\xa8\xab",
		"Sports_kabaddi":                              "\xee\xa8\xb4",
		"Sports_martial_arts":                         "\xee\xab\xa9",
		"Sports_mma":                                  "\xee\xa8\xac",
		"Sports_motorsports":                          "\xee\xa8\xad",
		"Sports_rugby":                                "\xee\xa8\xae",
		"Sports_score":                                "\xef\x81\xae",
		"Sports_soccer":                               "\xee\xa8\xaf",
		"Sports_tennis":                               "\xee\xa8\xb2",
		"Sports_volleyball":                           "\xee\xa8\xb1",
		"Sprinkler":                                   "\xee\x8a\x9a",
		"Sprint":                                      "\xef\xa0\x9f",
		"Square":                                      "\xee\xac\xb6",
		"Square_dot":                                  "\xef\x8e\xb3",
		"Square_foot":                                 "\xee\xa9\x89",
		"Ssid_chart":                                  "\xee\xad\xa6",
		"Stack":                                       "\xef\x98\x89",
		"Stack_group":                                 "\xef\x8d\x99",
		"Stack_hexagon":                               "\xef\x90\x9c",
		"Stack_off":                                   "\xef\x98\x88",
		"Stack_star":                                  "\xef\x98\x87",
		"Stacked_bar_chart":                           "\xee\xa7\xa6",
		"Stacked_email":                               "\xee\x9b\x87",
		"Stacked_inbox":                               "\xee\x9b\x89",
		"Stacked_line_chart":                          "\xef\x88\xab",
		"Stacks":                                      "\xef\x94\x80",
		"Stadia_controller":                           "\xef\x84\xb5",
		"Stadium":                                     "\xee\xae\x90",
		"Stairs":                                      "\xef\x86\xa9",
		"Stairs_2":                                    "\xef\x91\xac",
		"Star":                                        "\xef\x82\x9a",
		"Star_border":                                 "\xef\x82\x9a",
		"Star_border_purple500":                       "\xef\x82\x9a",
		"Star_half":                                   "\xee\xa0\xb9",
		"Star_outline":                                "\xef\x82\x9a",
		"Star_purple500":                              "\xef\x82\x9a",
		"Star_rate":                                   "\xef\x83\xac",
		"Star_rate_half":                              "\xee\xb1\x85",
		"Star_shine":                                  "\xef\x8c\x9d",
		"Stars":                                       "\xee\xa3\x90",
		"Stars_2":                                     "\xef\x8c\x9c",
		"Start":                                       "\xee\x82\x89",
		"Stat_0":                                      "\xee\x9a\x97",
		"Stat_1":                                      "\xee\x9a\x98",
		"Stat_2":                                      "\xee\x9a\x99",
		"Stat_3":                                      "\xee\x9a\x9a",
		"Stat_minus_1":                                "\xee\x9a\x9b",
		"Stat_minus_2":                                "\xee\x9a\x9c",
		"Stat_minus_3":                                "\xee\x9a\x9d",
		"Stay_current_landscape":                      "\xee\x83\x93",
		"Stay_current_portrait":                       "\xee\x83\x94",
		"Stay_primary_landscape":                      "\xee\x83\x95",
		"Stay_primary_portrait":                       "\xee\x83\x96",
		"Steering_wheel_heat":                         "\xef\x8c\xab",
		"Step":                                        "\xef\x9b\xbe",
		"Step_into":                                   "\xef\x9c\x81",
		"Step_out":                                    "\xef\x9c\x80",
		"Step_over":                                   "\xef\x9b\xbf",
		"Steppers":                                    "\xee\xa7\xa7",
		"Steps":                                       "\xef\x9b\x9a",
		"Stethoscope":                                 "\xef\xa0\x85",
		"Stethoscope_arrow":                           "\xef\xa0\x87",
		"Stethoscope_check":                           "\xef\xa0\x86",
		"Sticky_note":                                 "\xee\xa7\xa8",
		"Sticky_note_2":                               "\xef\x87\xbc",
		"Stock_media":                                 "\xef\x95\xb0",
		"Stockpot":                                    "\xef\x95\x85",
		"Stop":                                        "\xee\x81\x87",
		"Stop_circle":                                 "\xee\xbd\xb1",
		"Stop_screen_share":                           "\xee\x83\xa3",
		"Storage":                                     "\xee\x87\x9b",
		"Store":                                       "\xee\xa3\x91",
		"Store_mall_directory":                        "\xee\xa3\x91",
		"Storefront":                                  "\xee\xa8\x92",
		"Storm":                                       "\xef\x81\xb0",
		"Straight":                                    "\xee\xae\x95",
		"Straighten":                                  "\xee\x90\x9c",
		"Strategy":                                    "\xef\x97\x9f",
		"Stream":                                      "\xee\xa7\xa9",
		"Stream_apps":                                 "\xef\x9e\x9f",
		"Streetview":                                  "\xee\x95\xae",
		"Stress_management":                           "\xef\x9b\x99",
		"Strikethrough_s":                             "\xee\x89\x97",
		"Stroke_full":                                 "\xef\x9d\x89",
		"Stroke_partial":                              "\xef\x9d\x88",
		"Stroller":                                    "\xef\x86\xae",
		"Style":                                       "\xee\x90\x9d",
		"Styler":                                      "\xee\x89\xb3",
		"Stylus":                                      "\xef\x98\x84",
		"Stylus_brush":                                "\xef\x8d\xa6",
		"Stylus_fountain_pen":                         "\xef\x8d\xa5",
		"Stylus_highlighter":                          "\xef\x8d\xa4",
		"Stylus_laser_pointer":                        "\xef\x9d\x87",
		"Stylus_note":                                 "\xef\x98\x83",
		"Stylus_pen":                                  "\xef\x8d\xa3",
		"Stylus_pencil":                               "\xef\x8d\xa2",
		"Subdirectory_arrow_left":                     "\xee\x97\x99",
		"Subdirectory_arrow_right":                    "\xee\x97\x9a",
		"Subheader":                                   "\xee\xa7\xaa",
		"Subject":                                     "\xee\xa3\x92",
		"Subscript":                                   "\xef\x84\x91",
		"Subscriptions":                               "\xee\x81\xa4",
		"Subtitles":                                   "\xee\x81\x88",
		"Subtitles_gear":                              "\xef\x8d\x95",
		"Subtitles_off":                               "\xee\xbd\xb2",
		"Subway":                                      "\xee\x95\xaf",
		"Summarize":                                   "\xef\x81\xb1",
		"Sunny":                                       "\xee\xa0\x9a",
		"Sunny_snowing":                               "\xee\xa0\x99",
		"Superscript":                                 "\xef\x84\x92",
		"Supervised_user_circle":                      "\xee\xa4\xb9",
		"Supervised_user_circle_off":                  "\xef\x98\x8e",
		"Supervisor_account":                          "\xee\xa3\x93",
		"Support":                                     "\xee\xbd\xb3",
		"Support_agent":                               "\xef\x83\xa2",
		"Surfing":                                     "\xee\x94\x95",
		"Surgical":                                    "\xee\x84\xb1",
		"Surround_sound":                              "\xee\x81\x89",
		"Swap_calls":                                  "\xee\x83\x97",
		"Swap_driving_apps":                           "\xee\x9a\x9e",
		"Swap_driving_apps_wheel":                     "\xee\x9a\x9f",
		"Swap_horiz":                                  "\xee\xa3\x94",
		"Swap_horizontal_circle":                      "\xee\xa4\xb3",
		"Swap_vert":                                   "\xee\xa3\x95",
		"Swap_vertical_circle":                        "\xee\xa3\x96",
		"Sweep":                                       "\xee\x9a\xac",
		"Swipe":                                       "\xee\xa7\xac",
		"Swipe_down":                                  "\xee\xad\x93",
		"Swipe_down_alt":                              "\xee\xac\xb0",
		"Swipe_left":                                  "\xee\xad\x99",
		"Swipe_left_alt":                              "\xee\xac\xb3",
		"Swipe_right":                                 "\xee\xad\x92",
		"Swipe_right_alt":                             "\xee\xad\x96",
		"Swipe_up":                                    "\xee\xac\xae",
		"Swipe_up_alt":                                "\xee\xac\xb5",
		"Swipe_vertical":                              "\xee\xad\x91",
		"Switch":                                      "\xee\x87\xb4",
		"Switch_access":                               "\xef\x9b\xbd",
		"Switch_access_2":                             "\xef\x94\x86",
		"Switch_access_3":                             "\xef\x8d\x8d",
		"Switch_access_shortcut":                      "\xee\x9f\xa1",
		"Switch_access_shortcut_add":                  "\xee\x9f\xa2",
		"Switch_account":                              "\xee\xa7\xad",
		"Switch_camera":                               "\xee\x90\x9e",
		"Switch_left":                                 "\xef\x87\x91",
		"Switch_right":                                "\xef\x87\x92",
		"Switch_video":                                "\xee\x90\x9f",
		"Switches":                                    "\xee\x9c\xb3",
		"Sword_rose":                                  "\xef\x97\x9e",
		"Swords":                                      "\xef\xa2\x89",
		"Symptoms":                                    "\xee\x84\xb2",
		"Synagogue":                                   "\xee\xaa\xb0",
		"Sync":                                        "\xee\x98\xa7",
		"Sync_alt":                                    "\xee\xa8\x98",
		"Sync_arrow_down":                             "\xef\x8d\xbc",
		"Sync_arrow_up":                               "\xef\x8d\xbb",
		"Sync_desktop":                                "\xef\x90\x9a",
		"Sync_disabled":                               "\xee\x98\xa8",
		"Sync_lock":                                   "\xee\xab\xae",
		"Sync_problem":                                "\xee\x98\xa9",
		"Sync_saved_locally":                          "\xef\xa0\xa0",
		"Syringe":                                     "\xee\x84\xb3",
		"System_security_update":                      "\xef\x81\xb2",
		"System_security_update_good":                 "\xef\x81\xb3",
		"System_security_update_warning":              "\xef\x81\xb4",
		"System_update":                               "\xef\x81\xb2",
		"System_update_alt":                           "\xee\xa3\x97",
		"Tab":                                         "\xee\xa3\x98",
		"Tab_close":                                   "\xef\x9d\x85",
		"Tab_close_inactive":                          "\xef\x8f\x90",
		"Tab_close_right":                             "\xef\x9d\x86",
		"Tab_duplicate":                               "\xef\x9d\x84",
		"Tab_group":                                   "\xef\x9d\x83",
		"Tab_inactive":                                "\xef\x90\xbb",
		"Tab_move":                                    "\xef\x9d\x82",
		"Tab_new_right":                               "\xef\x9d\x81",
		"Tab_recent":                                  "\xef\x9d\x80",
		"Tab_search":                                  "\xef\x8b\xb2",
		"Tab_unselected":                              "\xee\xa3\x99",
		"Table":                                       "\xef\x86\x91",
		"Table_bar":                                   "\xee\xab\x92",
		"Table_chart":                                 "\xee\x89\xa5",
		"Table_chart_view":                            "\xef\x9b\xaf",
		"Table_convert":                               "\xef\x8f\x87",
		"Table_edit":                                  "\xef\x8f\x86",
		"Table_eye":                                   "\xef\x91\xa6",
		"Table_lamp":                                  "\xee\x87\xb2",
		"Table_restaurant":                            "\xee\xab\x86",
		"Table_rows":                                  "\xef\x84\x81",
		"Table_rows_narrow":                           "\xef\x9c\xbf",
		"Table_view":                                  "\xef\x86\xbe",
		"Tablet":                                      "\xee\x8c\xaf",
		"Tablet_android":                              "\xee\x8c\xb0",
		"Tablet_camera":                               "\xef\x91\x8d",
		"Tablet_mac":                                  "\xee\x8c\xb1",
		"Tabs":                                        "\xee\xa7\xae",
		"Tactic":                                      "\xef\x95\xa4",
		"Tag":                                         "\xee\xa7\xaf",
		"Tag_faces":                                   "\xee\xa8\xa2",
		"Takeout_dining":                              "\xee\xa9\xb4",
		"Tamper_detection_off":                        "\xee\xa0\xae",
		"Tamper_detection_on":                         "\xef\xa3\x88",
		"Tap_and_play":                                "\xee\x98\xab",
		"Tapas":                                       "\xef\x87\xa9",
		"Target":                                      "\xee\x9c\x99",
		"Task":                                        "\xef\x81\xb5",
		"Task_alt":                                    "\xee\x8b\xa6",
		"Taunt":                                       "\xef\x9a\x9f",
		"Taxi_alert":                                  "\xee\xbd\xb4",
		"Team_dashboard":                              "\xee\x80\x93",
		"Temp_preferences_custom":                     "\xef\xa3\x89",
		"Temp_preferences_eco":                        "\xef\xa3\x8a",
		"Temple_buddhist":                             "\xee\xaa\xb3",
		"Temple_hindu":                                "\xee\xaa\xaf",
		"Tenancy":                                     "\xef\x83\xa3",
		"Terminal":                                    "\xee\xae\x8e",
		"Terrain":                                     "\xee\x95\xa4",
		"Text_ad":                                     "\xee\x9c\xa8",
		"Text_compare":                                "\xef\x8f\x85",
		"Text_decrease":                               "\xee\xab\x9d",
		"Text_fields":                                 "\xee\x89\xa2",
		"Text_fields_alt":                             "\xee\xa7\xb1",
		"Text_format":                                 "\xee\x85\xa5",
		"Text_increase":                               "\xee\xab\xa2",
		"Text_rotate_up":                              "\xee\xa4\xba",
		"Text_rotate_vertical":                        "\xee\xa4\xbb",
		"Text_rotation_angledown":                     "\xee\xa4\xbc",
		"Text_rotation_angleup":                       "\xee\xa4\xbd",
		"Text_rotation_down":                          "\xee\xa4\xbe",
		"Text_rotation_none":                          "\xee\xa4\xbf",
		"Text_select_end":                             "\xef\x9c\xbe",
		"Text_select_jump_to_beginning":               "\xef\x9c\xbd",
		"Text_select_jump_to_end":                     "\xef\x9c\xbc",
		"Text_select_move_back_character":             "\xef\x9c\xbb",
		"Text_select_move_back_word":                  "\xef\x9c\xba",
		"Text_select_move_down":                       "\xef\x9c\xb9",
		"Text_select_move_forward_character":          "\xef\x9c\xb8",
		"Text_select_move_forward_word":               "\xef\x9c\xb7",
		"Text_select_move_up":                         "\xef\x9c\xb6",
		"Text_select_start":                           "\xef\x9c\xb5",
		"Text_snippet":                                "\xef\x87\x86",
		"Text_to_speech":                              "\xef\x86\xbc",
		"Text_up":                                     "\xef\x92\x9e",
		"Textsms":                                     "\xee\x98\xa5",
		"Texture":                                     "\xee\x90\xa1",
		"Texture_add":                                 "\xef\x95\xbc",
		"Texture_minus":                               "\xef\x95\xbb",
		"Theater_comedy":                              "\xee\xa9\xa6",
		"Theaters":                                    "\xee\xa3\x9a",
		"Thermometer":                                 "\xee\xa1\x86",
		"Thermometer_add":                             "\xef\x96\x82",
		"Thermometer_gain":                            "\xef\x9b\x98",
		"Thermometer_loss":                            "\xef\x9b\x97",
		"Thermometer_minus":                           "\xef\x96\x81",
		"Thermostat":                                  "\xef\x81\xb6",
		"Thermostat_arrow_down":                       "\xef\x8d\xba",
		"Thermostat_arrow_up":                         "\xef\x8d\xb9",
		"Thermostat_auto":                             "\xef\x81\xb7",
		"Thermostat_carbon":                           "\xef\x85\xb8",
		"Things_to_do":                                "\xee\xac\xaa",
		"Thread_unread":                               "\xef\x93\xb9",
		"Threat_intelligence":                         "\xee\xab\xad",
		"Thumb_down":                                  "\xef\x95\xb8",
		"Thumb_down_alt":                              "\xef\x95\xb8",
		"Thumb_down_filled":                           "\xef\x95\xb8",
		"Thumb_down_off":                              "\xef\x95\xb8",
		"Thumb_down_off_alt":                          "\xef\x95\xb8",
		"Thumb_up":                                    "\xef\x95\xb7",
		"Thumb_up_alt":                                "\xef\x95\xb7",
		"Thumb_up_filled":                             "\xef\x95\xb7",
		"Thumb_up_off":                                "\xef\x95\xb7",
		"Thumb_up_off_alt":                            "\xef\x95\xb7",
		"Thumbnail_bar":                               "\xef\x9c\xb4",
		"Thumbs_up_down":                              "\xee\xa3\x9d",
		"Thunderstorm":                                "\xee\xaf\x9b",
		"Tibia":                                       "\xef\xa2\x9b",
		"Tibia_alt":                                   "\xef\xa2\x9c",
		"Tile_large":                                  "\xef\x8f\x83",
		"Tile_medium":                                 "\xef\x8f\x82",
		"Tile_small":                                  "\xef\x8f\x81",
		"Time_auto":                                   "\xef\x83\xa4",
		"Time_to_leave":                               "\xee\xbf\xb7",
		"Timelapse":                                   "\xee\x90\xa2",
		"Timeline":                                    "\xee\xa4\xa2",
		"Timer":                                       "\xee\x90\xa5",
		"Timer_10":                                    "\xee\x90\xa3",
		"Timer_10_alt_1":                              "\xee\xbe\xbf",
		"Timer_10_select":                             "\xef\x81\xba",
		"Timer_3":                                     "\xee\x90\xa4",
		"Timer_3_alt_1":                               "\xee\xbf\x80",
		"Timer_3_select":                              "\xef\x81\xbb",
		"Timer_5":                                     "\xef\x92\xb1",
		"Timer_5_shutter":                             "\xef\x92\xb2",
		"Timer_arrow_down":                            "\xef\x8d\xb8",
		"Timer_arrow_up":                              "\xef\x8d\xb7",
		"Timer_off":                                   "\xee\x90\xa6",
		"Timer_pause":                                 "\xef\x92\xbb",
		"Timer_play":                                  "\xef\x92\xba",
		"Tips_and_updates":                            "\xee\x9e\x9a",
		"Tire_repair":                                 "\xee\xaf\x88",
		"Title":                                       "\xee\x89\xa4",
		"Titlecase":                                   "\xef\x92\x89",
		"Toast":                                       "\xee\xbf\x81",
		"Toc":                                         "\xee\xa3\x9e",
		"Today":                                       "\xee\xa3\x9f",
		"Toggle_off":                                  "\xee\xa7\xb5",
		"Toggle_on":                                   "\xee\xa7\xb6",
		"Token":                                       "\xee\xa8\xa5",
		"Toll":                                        "\xee\xa3\xa0",
		"Tonality":                                    "\xee\x90\xa7",
		"Toolbar":                                     "\xee\xa7\xb7",
		"Tools_flat_head":                             "\xef\xa3\x8b",
		"Tools_installation_kit":                      "\xee\x8a\xab",
		"Tools_ladder":                                "\xee\x8b\x8b",
		"Tools_level":                                 "\xee\x9d\xbb",
		"Tools_phillips":                              "\xef\xa3\x8c",
		"Tools_pliers_wire_stripper":                  "\xee\x8a\xaa",
		"Tools_power_drill":                           "\xee\x87\xa9",
		"Tools_wrench":                                "\xef\xa3\x8d",
		"Tooltip":                                     "\xee\xa7\xb8",
		"Tooltip_2":                                   "\xef\x8f\xad",
		"Top_panel_close":                             "\xef\x9c\xb3",
		"Top_panel_open":                              "\xef\x9c\xb2",
		"Topic":                                       "\xef\x87\x88",
		"Tornado":                                     "\xee\x86\x99",
		"Total_dissolved_solids":                      "\xef\xa1\xb7",
		"Touch_app":                                   "\xee\xa4\x93",
		"Touch_double":                                "\xef\x8e\x8b",
		"Touch_long":                                  "\xef\x8e\x8a",
		"Touch_triple":                                "\xef\x8e\x89",
		"Touchpad_mouse":                              "\xef\x9a\x87",
		"Touchpad_mouse_off":                          "\xef\x93\xa6",
		"Tour":                                        "\xee\xbd\xb5",
		"Toys":                                        "\xee\x8c\xb2",
		"Toys_and_games":                              "\xee\xbf\x82",
		"Toys_fan":                                    "\xef\xa2\x87",
		"Track_changes":                               "\xee\xa3\xa1",
		"Trackpad_input":                              "\xef\x93\x87",
		"Trackpad_input_2":                            "\xef\x90\x89",
		"Trackpad_input_3":                            "\xef\x90\x88",
		"Traffic":                                     "\xee\x95\xa5",
		"Traffic_jam":                                 "\xef\x91\xaf",
		"Trail_length":                                "\xee\xad\x9e",
		"Trail_length_medium":                         "\xee\xad\xa3",
		"Trail_length_short":                          "\xee\xad\xad",
		"Train":                                       "\xee\x95\xb0",
		"Tram":                                        "\xee\x95\xb1",
		"Transcribe":                                  "\xef\xa3\xac",
		"Transfer_within_a_station":                   "\xee\x95\xb2",
		"Transform":                                   "\xee\x90\xa8",
		"Transgender":                                 "\xee\x96\x8d",
		"Transit_enterexit":                           "\xee\x95\xb9",
		"Transit_ticket":                              "\xef\x8f\xb1",
		"Transition_chop":                             "\xef\x94\x8e",
		"Transition_dissolve":                         "\xef\x94\x8d",
		"Transition_fade":                             "\xef\x94\x8c",
		"Transition_push":                             "\xef\x94\x8b",
		"Transition_slide":                            "\xef\x94\x8a",
		"Translate":                                   "\xee\xa3\xa2",
		"Transportation":                              "\xee\x88\x9d",
		"Travel":                                      "\xee\xbe\x93",
		"Travel_explore":                              "\xee\x8b\x9b",
		"Travel_luggage_and_bags":                     "\xee\xbf\x83",
		"Trending_down":                               "\xee\xa3\xa3",
		"Trending_flat":                               "\xee\xa3\xa4",
		"Trending_up":                                 "\xee\xa3\xa5",
		"Trip":                                        "\xee\x9b\xbb",
		"Trip_origin":                                 "\xee\x95\xbb",
		"Trolley":                                     "\xef\xa1\xab",
		"Trolley_cable_car":                           "\xef\x91\xae",
		"Trophy":                                      "\xee\xa8\xa3",
		"Troubleshoot":                                "\xee\x87\x92",
		"Try":                                         "\xef\x81\xbc",
		"Tsunami":                                     "\xee\xaf\x98",
		"Tsv":                                         "\xee\x9b\x96",
		"Tty":                                         "\xef\x86\xaa",
		"Tune":                                        "\xee\x90\xa9",
		"Tungsten":                                    "\xef\x81\xbd",
		"Turn_left":                                   "\xee\xae\xa6",
		"Turn_right":                                  "\xee\xae\xab",
		"Turn_sharp_left":                             "\xee\xae\xa7",
		"Turn_sharp_right":                            "\xee\xae\xaa",
		"Turn_slight_left":                            "\xee\xae\xa4",
		"Turn_slight_right":                           "\xee\xae\x9a",
		"Turned_in":                                   "\xee\xa3\xa7",
		"Turned_in_not":                               "\xee\xa3\xa7",
		"Tv":                                          "\xee\x98\xbb",
		"Tv_displays":                                 "\xef\x8f\xac",
		"Tv_gen":                                      "\xee\xa0\xb0",
		"Tv_guide":                                    "\xee\x87\x9c",
		"Tv_next":                                     "\xef\x8f\xab",
		"Tv_off":                                      "\xee\x99\x87",
		"Tv_options_edit_channels":                    "\xee\x87\x9d",
		"Tv_options_input_settings":                   "\xee\x87\x9e",
		"Tv_remote":                                   "\xef\x97\x99",
		"Tv_signin":                                   "\xee\x9c\x9b",
		"Tv_with_assistant":                           "\xee\x9e\x85",
		"Two_pager":                                   "\xef\x94\x9f",
		"Two_pager_store":                             "\xef\x8f\x84",
		"Two_wheeler":                                 "\xee\xa7\xb9",
		"Type_specimen":                               "\xef\xa3\xb0",
		"U_turn_left":                                 "\xee\xae\xa1",
		"U_turn_right":                                "\xee\xae\xa2",
		"Ulna_radius":                                 "\xef\xa2\x9d",
		"Ulna_radius_alt":                             "\xef\xa2\x9e",
		"Umbrella":                                    "\xef\x86\xad",
		"Unarchive":                                   "\xee\x85\xa9",
		"Undo":                                        "\xee\x85\xa6",
		"Unfold_less":                                 "\xee\x97\x96",
		"Unfold_less_double":                          "\xef\xa3\x8f",
		"Unfold_more":                                 "\xee\x97\x97",
		"Unfold_more_double":                          "\xef\xa3\x90",
		"Ungroup":                                     "\xef\x9c\xb1",
		"Universal_currency":                          "\xee\xa7\xba",
		"Universal_currency_alt":                      "\xee\x9c\xb4",
		"Universal_local":                             "\xee\xa7\xbb",
		"Unknown_2":                                   "\xef\x92\x9f",
		"Unknown_5":                                   "\xee\x9a\xa5",
		"Unknown_7":                                   "\xef\x92\x9e",
		"Unknown_document":                            "\xef\xa0\x84",
		"Unknown_med":                                 "\xee\xaa\xbd",
		"Unlicense":                                   "\xee\xac\x85",
		"Unpaved_road":                                "\xef\x91\xad",
		"Unpin":                                       "\xee\x9b\xb9",
		"Unpublished":                                 "\xef\x88\xb6",
		"Unsubscribe":                                 "\xee\x83\xab",
		"Upcoming":                                    "\xef\x81\xbe",
		"Update":                                      "\xee\xa4\xa3",
		"Update_disabled":                             "\xee\x81\xb5",
		"Upgrade":                                     "\xef\x83\xbb",
		"Upi_pay":                                     "\xef\x8f\x8f",
		"Upload":                                      "\xef\x82\x9b",
		"Upload_2":                                    "\xef\x94\xa1",
		"Upload_file":                                 "\xee\xa7\xbc",
		"Uppercase":                                   "\xef\x92\x88",
		"Urology":                                     "\xee\x84\xb7",
		"Usb":                                         "\xee\x87\xa0",
		"Usb_off":                                     "\xee\x93\xba",
		"User_attributes":                             "\xee\x9c\x88",
		"Vaccines":                                    "\xee\x84\xb8",
		"Vacuum":                                      "\xee\xbf\x85",
		"Valve":                                       "\xee\x88\xa4",
		"Vape_free":                                   "\xee\xaf\x86",
		"Vaping_rooms":                                "\xee\xaf\x8f",
		"Variable_add":                                "\xef\x94\x9e",
		"Variable_insert":                             "\xef\x94\x9d",
		"Variable_remove":                             "\xef\x94\x9c",
		"Variables":                                   "\xef\xa1\x91",
		"Ventilator":                                  "\xee\x84\xb9",
		"Verified":                                    "\xee\xbd\xb6",
		"Verified_off":                                "\xef\x8c\x8e",
		"Verified_user":                               "\xef\x80\x93",
		"Vertical_align_bottom":                       "\xee\x89\x98",
		"Vertical_align_center":                       "\xee\x89\x99",
		"Vertical_align_top":                          "\xee\x89\x9a",
		"Vertical_distribute":                         "\xee\x81\xb6",
		"Vertical_shades":                             "\xee\xb0\x8e",
		"Vertical_shades_closed":                      "\xee\xb0\x8d",
		"Vertical_split":                              "\xee\xa5\x89",
		"Vibration":                                   "\xee\x98\xad",
		"Video_call":                                  "\xee\x81\xb0",
		"Video_camera_back":                           "\xef\x81\xbf",
		"Video_camera_back_add":                       "\xef\x90\x8c",
		"Video_camera_front":                          "\xef\x82\x80",
		"Video_camera_front_off":                      "\xef\xa0\xbb",
		"Video_chat":                                  "\xef\xa2\xa0",
		"Video_file":                                  "\xee\xae\x87",
		"Video_label":                                 "\xee\x81\xb1",
		"Video_library":                               "\xee\x81\x8a",
		"Video_search":                                "\xee\xbf\x86",
		"Video_settings":                              "\xee\xa9\xb5",
		"Video_stable":                                "\xef\x82\x81",
		"Videocam":                                    "\xee\x81\x8b",
		"Videocam_alert":                              "\xef\x8e\x90",
		"Videocam_off":                                "\xee\x81\x8c",
		"Videogame_asset":                             "\xee\x8c\xb8",
		"Videogame_asset_off":                         "\xee\x94\x80",
		"View_agenda":                                 "\xee\xa3\xa9",
		"View_apps":                                   "\xef\x8d\xb6",
		"View_array":                                  "\xee\xa3\xaa",
		"View_carousel":                               "\xee\xa3\xab",
		"View_column":                                 "\xee\xa3\xac",
		"View_column_2":                               "\xef\xa1\x87",
		"View_comfy":                                  "\xee\x90\xaa",
		"View_comfy_alt":                              "\xee\xad\xb3",
		"View_compact":                                "\xee\x90\xab",
		"View_compact_alt":                            "\xee\xad\xb4",
		"View_cozy":                                   "\xee\xad\xb5",
		"View_day":                                    "\xee\xa3\xad",
		"View_headline":                               "\xee\xa3\xae",
		"View_in_ar":                                  "\xee\xbf\x89",
		"View_in_ar_new":                              "\xee\xbf\x89",
		"View_in_ar_off":                              "\xef\x98\x9b",
		"View_kanban":                                 "\xee\xad\xbf",
		"View_list":                                   "\xee\xa3\xaf",
		"View_module":                                 "\xee\xa3\xb0",
		"View_object_track":                           "\xef\x90\xb2",
		"View_quilt":                                  "\xee\xa3\xb1",
		"View_real_size":                              "\xef\x93\x82",
		"View_sidebar":                                "\xef\x84\x94",
		"View_stream":                                 "\xee\xa3\xb2",
		"View_timeline":                               "\xee\xae\x85",
		"View_week":                                   "\xee\xa3\xb3",
		"Vignette":                                    "\xee\x90\xb5",
		"Villa":                                       "\xee\x96\x86",
		"Visibility":                                  "\xee\xa3\xb4",
		"Visibility_lock":                             "\xef\x99\x93",
		"Visibility_off":                              "\xee\xa3\xb5",
		"Vital_signs":                                 "\xee\x99\x90",
		"Vitals":                                      "\xee\x84\xbb",
		"Vo2_max":                                     "\xef\x92\xaa",
		"Voice_chat":                                  "\xee\x98\xae",
		"Voice_over_off":                              "\xee\xa5\x8a",
		"Voice_selection":                             "\xef\x96\x8a",
		"Voice_selection_off":                         "\xef\x90\xac",
		"Voicemail":                                   "\xee\x83\x99",
		"Voicemail_2":                                 "\xef\x8d\x92",
		"Volcano":                                     "\xee\xaf\x9a",
		"Volume_down":                                 "\xee\x81\x8d",
		"Volume_down_alt":                             "\xee\x9e\x9c",
		"Volume_mute":                                 "\xee\x81\x8e",
		"Volume_off":                                  "\xee\x81\x8f",
		"Volume_up":                                   "\xee\x81\x90",
		"Volunteer_activism":                          "\xee\xa9\xb0",
		"Voting_chip":                                 "\xef\xa1\x92",
		"Vpn_key":                                     "\xee\x83\x9a",
		"Vpn_key_alert":                               "\xef\x9b\x8c",
		"Vpn_key_off":                                 "\xee\xad\xba",
		"Vpn_lock":                                    "\xee\x98\xaf",
		"Vpn_lock_2":                                  "\xef\x8d\x90",
		"Vr180_create2d":                              "\xee\xbf\x8a",
		"Vr180_create2d_off":                          "\xef\x95\xb1",
		"Vrpano":                                      "\xef\x82\x82",
		"Wall_art":                                    "\xee\xbf\x8b",
		"Wall_lamp":                                   "\xee\x8a\xb4",
		"Wallet":                                      "\xef\xa3\xbf",
		"Wallpaper":                                   "\xee\x86\xbc",
		"Wallpaper_slideshow":                         "\xef\x99\xb2",
		"Wand_shine":                                  "\xef\x8c\x9f",
		"Wand_stars":                                  "\xef\x8c\x9e",
		"Ward":                                        "\xee\x84\xbc",
		"Warehouse":                                   "\xee\xae\xb8",
		"Warning":                                     "\xef\x82\x83",
		"Warning_amber":                               "\xef\x82\x83",
		"Warning_off":                                 "\xef\x9e\xad",
		"Wash":                                        "\xef\x86\xb1",
		"Watch":                                       "\xee\x8c\xb4",
		"Watch_button_press":                          "\xef\x9a\xaa",
		"Watch_check":                                 "\xef\x91\xa8",
		"Watch_later":                                 "\xee\xbf\x96",
		"Watch_off":                                   "\xee\xab\xa3",
		"Watch_screentime":                            "\xef\x9a\xae",
		"Watch_vibration":                             "\xef\x91\xa7",
		"Watch_wake":                                  "\xef\x9a\xa9",
		"Water":                                       "\xef\x82\x84",
		"Water_bottle":                                "\xef\x9a\x9d",
		"Water_bottle_large":                          "\xef\x9a\x9e",
		"Water_damage":                                "\xef\x88\x83",
		"Water_do":                                    "\xef\xa1\xb0",
		"Water_drop":                                  "\xee\x9e\x98",
		"Water_ec":                                    "\xef\xa1\xb5",
		"Water_full":                                  "\xef\x9b\x96",
		"Water_heater":                                "\xee\x8a\x84",
		"Water_lock":                                  "\xef\x9a\xad",
		"Water_loss":                                  "\xef\x9b\x95",
		"Water_lux":                                   "\xef\xa1\xb4",
		"Water_medium":                                "\xef\x9b\x94",
		"Water_orp":                                   "\xef\xa1\xb8",
		"Water_ph":                                    "\xef\xa1\xba",
		"Water_pump":                                  "\xef\x97\x98",
		"Water_voc":                                   "\xef\xa1\xbb",
		"Waterfall_chart":                             "\xee\xa8\x80",
		"Waves":                                       "\xee\x85\xb6",
		"Waving_hand":                                 "\xee\x9d\xa6",
		"Wb_auto":                                     "\xee\x90\xac",
		"Wb_cloudy":                                   "\xef\x85\x9c",
		"Wb_incandescent":                             "\xee\x90\xae",
		"Wb_iridescent":                               "\xef\x81\xbd",
		"Wb_shade":                                    "\xee\xa8\x81",
		"Wb_sunny":                                    "\xee\x90\xb0",
		"Wb_twilight":                                 "\xee\x87\x86",
		"Wc":                                          "\xee\x98\xbd",
		"Weather_hail":                                "\xef\x99\xbf",
		"Weather_mix":                                 "\xef\x98\x8b",
		"Weather_snowy":                               "\xee\x8b\x8d",
		"Web":                                         "\xee\x81\x91",
		"Web_asset":                                   "\xee\x81\xa9",
		"Web_asset_off":                               "\xee\xbd\x87",
		"Web_stories":                                 "\xee\x96\x95",
		"Web_traffic":                                 "\xee\xa8\x83",
		"Webhook":                                     "\xee\xae\x92",
		"Weekend":                                     "\xee\x85\xab",
		"Weight":                                      "\xee\x84\xbd",
		"West":                                        "\xef\x87\xa6",
		"Whatshot":                                    "\xee\xa0\x8e",
		"Wheelchair_pickup":                           "\xef\x86\xab",
		"Where_to_vote":                               "\xee\x85\xb7",
		"Widget_medium":                               "\xef\x8e\xba",
		"Widget_small":                                "\xef\x8e\xb9",
		"Widget_width":                                "\xef\x8e\xb8",
		"Widgets":                                     "\xee\x86\xbd",
		"Width":                                       "\xef\x9c\xb0",
		"Width_full":                                  "\xef\xa3\xb5",
		"Width_normal":                                "\xef\xa3\xb6",
		"Width_wide":                                  "\xef\xa3\xb7",
		"Wifi":                                        "\xee\x98\xbe",
		"Wifi_1_bar":                                  "\xee\x93\x8a",
		"Wifi_2_bar":                                  "\xee\x93\x99",
		"Wifi_add":                                    "\xef\x9e\xa8",
		"Wifi_calling":                                "\xee\xbd\xb7",
		"Wifi_calling_1":                              "\xef\x83\xa7",
		"Wifi_calling_2":                              "\xef\x83\xb6",
		"Wifi_calling_3":                              "\xef\x83\xa7",
		"Wifi_calling_bar_1":                          "\xef\x91\x8c",
		"Wifi_calling_bar_2":                          "\xef\x91\x8b",
		"Wifi_calling_bar_3":                          "\xef\x91\x8a",
		"Wifi_channel":                                "\xee\xad\xaa",
		"Wifi_find":                                   "\xee\xac\xb1",
		"Wifi_home":                                   "\xef\x99\xb1",
		"Wifi_lock":                                   "\xee\x87\xa1",
		"Wifi_notification":                           "\xef\x99\xb0",
		"Wifi_off":                                    "\xee\x99\x88",
		"Wifi_password":                               "\xee\xad\xab",
		"Wifi_protected_setup":                        "\xef\x83\xbc",
		"Wifi_proxy":                                  "\xef\x9e\xa7",
		"Wifi_tethering":                              "\xee\x87\xa2",
		"Wifi_tethering_error":                        "\xee\xab\x99",
		"Wifi_tethering_off":                          "\xef\x82\x87",
		"Wind_power":                                  "\xee\xb0\x8c",
		"Window":                                      "\xef\x82\x88",
		"Window_closed":                               "\xee\x9d\xbe",
		"Window_open":                                 "\xee\x9e\x8c",
		"Window_sensor":                               "\xee\x8a\xbb",
		"Windshield_defrost_front":                    "\xef\x8c\xaa",
		"Windshield_defrost_rear":                     "\xef\x8c\xa9",
		"Windshield_heat_front":                       "\xef\x8c\xa8",
		"Wine_bar":                                    "\xef\x87\xa8",
		"Woman":                                       "\xee\x84\xbe",
		"Woman_2":                                     "\xef\xa3\xa7",
		"Work":                                        "\xee\xa5\x83",
		"Work_alert":                                  "\xef\x97\xb7",
		"Work_history":                                "\xee\xb0\x89",
		"Work_off":                                    "\xee\xa5\x82",
		"Work_outline":                                "\xee\xa5\x83",
		"Work_update":                                 "\xef\x97\xb8",
		"Workflow":                                    "\xee\xa8\x84",
		"Workspace_premium":                           "\xee\x9e\xaf",
		"Workspaces":                                  "\xee\xa8\x8f",
		"Workspaces_outline":                          "\xee\xa8\x8f",
		"Wounds_injuries":                             "\xee\x84\xbf",
		"Wrap_text":                                   "\xee\x89\x9b",
		"Wrist":                                       "\xef\x9a\x9c",
		"Wrong_location":                              "\xee\xbd\xb8",
		"Wysiwyg":                                     "\xef\x87\x83",
		"Yard":                                        "\xef\x82\x89",
		"Your_trips":                                  "\xee\xac\xab",
		"Youtube_activity":                            "\xef\xa1\x9a",
		"Youtube_searched_for":                        "\xee\xa3\xba",
		"Zone_person_alert":                           "\xee\x9e\x81",
		"Zone_person_idle":                            "\xee\x9d\xba",
		"Zone_person_urgent":                          "\xee\x9e\x88",
		"Zoom_in":                                     "\xee\xa3\xbf",
		"Zoom_in_map":                                 "\xee\xac\xad",
		"Zoom_out":                                    "\xee\xa4\x80",
		"Zoom_out_map":                                "\xee\x95\xab",
	},
}

Functions

This section is empty.

Types

type Font

type Font struct {
	// The filenames of the associated TTF files are provided in Filenames,
	// where each entry stores first an abbreviated name for the fot and
	// then the actual filename.
	Filenames [][2]string
	// The range of Unicode code points is given by [Min, Max). The largest
	// 16-bit code point is stored in Max16.
	Min, Max16, Max int
	// Icons stores the mapping from user-friendly names to code points.
	Icons map[string]string
}

Font encapsulates all of the information for a particular icon font.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL