Skip to content

Instantly share code, notes, and snippets.

@dgmltn
Last active June 13, 2018 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgmltn/69e450921ecb64b0df5fc4d8414fd830 to your computer and use it in GitHub Desktop.
Save dgmltn/69e450921ecb64b0df5fc4d8414fd830 to your computer and use it in GitHub Desktop.
Simple view for materialdesignicons.com
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MaterialIconView">
<attr name="materialIcon" format="string" />
</declare-styleable>
</resources>
import android.content.Context
import android.support.v4.content.res.ResourcesCompat
import android.support.v4.widget.TextViewCompat
import android.util.AttributeSet
import android.widget.TextView
import com.dgmltn.dashboardlayout.R
import timber.log.Timber
/**
* Created by Doug Melton on 4/22/18.
*
* Include materialdesignicons.ttf in res/font/
*
* <com.dgmltn.views.MaterialIconView
* android:layout_width="48dp"
* android:layout_height="48dp"
* android:layout_gravity="center"
* app:materialIcon="lightbulb-outline"
* />
*
*/
class MaterialIconView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, defStyleRes: Int = 0)
: TextView(context, attrs, defStyleAttr, defStyleRes) {
var materialIcon: String? = null
set(value) {
field = value
text = ICONS[value] ?: ICONS["help"]
}
init {
typeface = ResourcesCompat.getFont(context, R.font.materialdesignicons)
TextViewCompat.setAutoSizeTextTypeWithDefaults(this, TextViewCompat.AUTO_SIZE_TEXT_TYPE_UNIFORM)
val a = context.obtainStyledAttributes(attrs, R.styleable.MaterialIconView)
materialIcon = a.getString(R.styleable.MaterialIconView_materialIcon)
a.recycle()
}
companion object {
val ICONS = mapOf(
"access-point" to "\uf002",
"access-point-network" to "\uf003",
"account" to "\uf004",
"account-alert" to "\uf005",
"account-box" to "\uf006",
"account-box-outline" to "\uf007",
"account-card-details" to "\uf5D2",
"account-check" to "\uf008",
"account-circle" to "\uf009",
"account-convert" to "\uf00A",
"account-edit" to "\uf6BB",
"account-group" to "\uf848",
"account-heart" to "\uf898",
"account-key" to "\uf00B",
"account-location" to "\uf00C",
"account-minus" to "\uf00D",
"account-multiple" to "\uf00E",
"account-multiple-check" to "\uf8C4",
"account-multiple-minus" to "\uf5D3",
"account-multiple-outline" to "\uf00F",
"account-multiple-plus" to "\uf010",
"account-multiple-plus-outline" to "\uf7FF",
"account-network" to "\uf011",
"account-off" to "\uf012",
"account-outline" to "\uf013",
"account-plus" to "\uf014",
"account-plus-outline" to "\uf800",
"account-remove" to "\uf015",
"account-search" to "\uf016",
"account-settings" to "\uf630",
"account-settings-variant" to "\uf631",
"account-star" to "\uf017",
"account-switch" to "\uf019",
"accusoft" to "\uf849",
"adjust" to "\uf01A",
"air-conditioner" to "\uf01B",
"airballoon" to "\uf01C",
"airplane" to "\uf01D",
"airplane-landing" to "\uf5D4",
"airplane-off" to "\uf01E",
"airplane-takeoff" to "\uf5D5",
"airplay" to "\uf01F",
"airport" to "\uf84A",
"alarm" to "\uf020",
"alarm-bell" to "\uf78D",
"alarm-check" to "\uf021",
"alarm-light" to "\uf78E",
"alarm-multiple" to "\uf022",
"alarm-off" to "\uf023",
"alarm-plus" to "\uf024",
"alarm-snooze" to "\uf68D",
"album" to "\uf025",
"alert" to "\uf026",
"alert-box" to "\uf027",
"alert-circle" to "\uf028",
"alert-circle-outline" to "\uf5D6",
"alert-decagram" to "\uf6BC",
"alert-octagon" to "\uf029",
"alert-octagram" to "\uf766",
"alert-outline" to "\uf02A",
"alien" to "\uf899",
"all-inclusive" to "\uf6BD",
"alpha" to "\uf02B",
"alphabetical" to "\uf02C",
"altimeter" to "\uf5D7",
"amazon" to "\uf02D",
"amazon-alexa" to "\uf8C5",
"amazon-drive" to "\uf02E",
"ambulance" to "\uf02F",
"amplifier" to "\uf030",
"anchor" to "\uf031",
"android" to "\uf032",
"android-debug-bridge" to "\uf033",
"android-head" to "\uf78F",
"android-studio" to "\uf034",
"angular" to "\uf6B1",
"angularjs" to "\uf6BE",
"animation" to "\uf5D8",
"anvil" to "\uf89A",
"apple" to "\uf035",
"apple-finder" to "\uf036",
"apple-icloud" to "\uf038",
"apple-ios" to "\uf037",
"apple-keyboard-caps" to "\uf632",
"apple-keyboard-command" to "\uf633",
"apple-keyboard-control" to "\uf634",
"apple-keyboard-option" to "\uf635",
"apple-keyboard-shift" to "\uf636",
"apple-safari" to "\uf039",
"application" to "\uf614",
"approval" to "\uf790",
"apps" to "\uf03B",
"arch" to "\uf8C6",
"archive" to "\uf03C",
"arrange-bring-forward" to "\uf03D",
"arrange-bring-to-front" to "\uf03E",
"arrange-send-backward" to "\uf03F",
"arrange-send-to-back" to "\uf040",
"arrow-all" to "\uf041",
"arrow-bottom-left" to "\uf042",
"arrow-bottom-right" to "\uf043",
"arrow-collapse" to "\uf615",
"arrow-collapse-all" to "\uf044",
"arrow-collapse-down" to "\uf791",
"arrow-collapse-horizontal" to "\uf84B",
"arrow-collapse-left" to "\uf792",
"arrow-collapse-right" to "\uf793",
"arrow-collapse-up" to "\uf794",
"arrow-collapse-vertical" to "\uf84C",
"arrow-down" to "\uf045",
"arrow-down-bold" to "\uf72D",
"arrow-down-bold-box" to "\uf72E",
"arrow-down-bold-box-outline" to "\uf72F",
"arrow-down-bold-circle" to "\uf047",
"arrow-down-bold-circle-outline" to "\uf048",
"arrow-down-bold-hexagon-outline" to "\uf049",
"arrow-down-box" to "\uf6BF",
"arrow-down-drop-circle" to "\uf04A",
"arrow-down-drop-circle-outline" to "\uf04B",
"arrow-down-thick" to "\uf046",
"arrow-expand" to "\uf616",
"arrow-expand-all" to "\uf04C",
"arrow-expand-down" to "\uf795",
"arrow-expand-horizontal" to "\uf84D",
"arrow-expand-left" to "\uf796",
"arrow-expand-right" to "\uf797",
"arrow-expand-up" to "\uf798",
"arrow-expand-vertical" to "\uf84E",
"arrow-left" to "\uf04D",
"arrow-left-bold" to "\uf730",
"arrow-left-bold-box" to "\uf731",
"arrow-left-bold-box-outline" to "\uf732",
"arrow-left-bold-circle" to "\uf04F",
"arrow-left-bold-circle-outline" to "\uf050",
"arrow-left-bold-hexagon-outline" to "\uf051",
"arrow-left-box" to "\uf6C0",
"arrow-left-drop-circle" to "\uf052",
"arrow-left-drop-circle-outline" to "\uf053",
"arrow-left-thick" to "\uf04E",
"arrow-right" to "\uf054",
"arrow-right-bold" to "\uf733",
"arrow-right-bold-box" to "\uf734",
"arrow-right-bold-box-outline" to "\uf735",
"arrow-right-bold-circle" to "\uf056",
"arrow-right-bold-circle-outline" to "\uf057",
"arrow-right-bold-hexagon-outline" to "\uf058",
"arrow-right-box" to "\uf6C1",
"arrow-right-drop-circle" to "\uf059",
"arrow-right-drop-circle-outline" to "\uf05A",
"arrow-right-thick" to "\uf055",
"arrow-top-left" to "\uf05B",
"arrow-top-right" to "\uf05C",
"arrow-up" to "\uf05D",
"arrow-up-bold" to "\uf736",
"arrow-up-bold-box" to "\uf737",
"arrow-up-bold-box-outline" to "\uf738",
"arrow-up-bold-circle" to "\uf05F",
"arrow-up-bold-circle-outline" to "\uf060",
"arrow-up-bold-hexagon-outline" to "\uf061",
"arrow-up-box" to "\uf6C2",
"arrow-up-drop-circle" to "\uf062",
"arrow-up-drop-circle-outline" to "\uf063",
"arrow-up-thick" to "\uf05E",
"artist" to "\uf802",
"assistant" to "\uf064",
"asterisk" to "\uf6C3",
"at" to "\uf065",
"atlassian" to "\uf803",
"atom" to "\uf767",
"attachment" to "\uf066",
"audiobook" to "\uf067",
"augmented-reality" to "\uf84F",
"auto-fix" to "\uf068",
"auto-upload" to "\uf069",
"autorenew" to "\uf06A",
"av-timer" to "\uf06B",
"axe" to "\uf8C7",
"azure" to "\uf804",
"baby" to "\uf06C",
"baby-buggy" to "\uf68E",
"backburger" to "\uf06D",
"backspace" to "\uf06E",
"backup-restore" to "\uf06F",
"badminton" to "\uf850",
"bandcamp" to "\uf674",
"bank" to "\uf070",
"barcode" to "\uf071",
"barcode-scan" to "\uf072",
"barley" to "\uf073",
"barrel" to "\uf074",
"baseball" to "\uf851",
"baseball-bat" to "\uf852",
"basecamp" to "\uf075",
"basket" to "\uf076",
"basket-fill" to "\uf077",
"basket-unfill" to "\uf078",
"basketball" to "\uf805",
"battery" to "\uf079",
"battery-10" to "\uf07A",
"battery-20" to "\uf07B",
"battery-30" to "\uf07C",
"battery-40" to "\uf07D",
"battery-50" to "\uf07E",
"battery-60" to "\uf07F",
"battery-70" to "\uf080",
"battery-80" to "\uf081",
"battery-90" to "\uf082",
"battery-alert" to "\uf083",
"battery-charging" to "\uf084",
"battery-charging-10" to "\uf89B",
"battery-charging-100" to "\uf085",
"battery-charging-20" to "\uf086",
"battery-charging-30" to "\uf087",
"battery-charging-40" to "\uf088",
"battery-charging-50" to "\uf89C",
"battery-charging-60" to "\uf089",
"battery-charging-70" to "\uf89D",
"battery-charging-80" to "\uf08A",
"battery-charging-90" to "\uf08B",
"battery-charging-outline" to "\uf89E",
"battery-charging-wireless" to "\uf806",
"battery-charging-wireless-10" to "\uf807",
"battery-charging-wireless-20" to "\uf808",
"battery-charging-wireless-30" to "\uf809",
"battery-charging-wireless-40" to "\uf80A",
"battery-charging-wireless-50" to "\uf80B",
"battery-charging-wireless-60" to "\uf80C",
"battery-charging-wireless-70" to "\uf80D",
"battery-charging-wireless-80" to "\uf80E",
"battery-charging-wireless-90" to "\uf80F",
"battery-charging-wireless-alert" to "\uf810",
"battery-charging-wireless-outline" to "\uf811",
"battery-minus" to "\uf08C",
"battery-negative" to "\uf08D",
"battery-outline" to "\uf08E",
"battery-plus" to "\uf08F",
"battery-positive" to "\uf090",
"battery-unknown" to "\uf091",
"beach" to "\uf092",
"beaker" to "\uf68F",
"beats" to "\uf097",
"bed-empty" to "\uf89F",
"beer" to "\uf098",
"behance" to "\uf099",
"bell" to "\uf09A",
"bell-off" to "\uf09B",
"bell-outline" to "\uf09C",
"bell-plus" to "\uf09D",
"bell-ring" to "\uf09E",
"bell-ring-outline" to "\uf09F",
"bell-sleep" to "\uf0A0",
"beta" to "\uf0A1",
"bible" to "\uf0A2",
"bike" to "\uf0A3",
"bing" to "\uf0A4",
"binoculars" to "\uf0A5",
"bio" to "\uf0A6",
"biohazard" to "\uf0A7",
"bitbucket" to "\uf0A8",
"bitcoin" to "\uf812",
"black-mesa" to "\uf0A9",
"blackberry" to "\uf0AA",
"blender" to "\uf0AB",
"blinds" to "\uf0AC",
"block-helper" to "\uf0AD",
"blogger" to "\uf0AE",
"bluetooth" to "\uf0AF",
"bluetooth-audio" to "\uf0B0",
"bluetooth-connect" to "\uf0B1",
"bluetooth-off" to "\uf0B2",
"bluetooth-settings" to "\uf0B3",
"bluetooth-transfer" to "\uf0B4",
"blur" to "\uf0B5",
"blur-linear" to "\uf0B6",
"blur-off" to "\uf0B7",
"blur-radial" to "\uf0B8",
"bomb" to "\uf690",
"bomb-off" to "\uf6C4",
"bone" to "\uf0B9",
"book" to "\uf0BA",
"book-minus" to "\uf5D9",
"book-multiple" to "\uf0BB",
"book-multiple-variant" to "\uf0BC",
"book-open" to "\uf0BD",
"book-open-page-variant" to "\uf5DA",
"book-open-variant" to "\uf0BE",
"book-plus" to "\uf5DB",
"book-secure" to "\uf799",
"book-unsecure" to "\uf79A",
"book-variant" to "\uf0BF",
"bookmark" to "\uf0C0",
"bookmark-check" to "\uf0C1",
"bookmark-music" to "\uf0C2",
"bookmark-outline" to "\uf0C3",
"bookmark-plus" to "\uf0C5",
"bookmark-plus-outline" to "\uf0C4",
"bookmark-remove" to "\uf0C6",
"boombox" to "\uf5DC",
"bootstrap" to "\uf6C5",
"border-all" to "\uf0C7",
"border-all-variant" to "\uf8A0",
"border-bottom" to "\uf0C8",
"border-bottom-variant" to "\uf8A1",
"border-color" to "\uf0C9",
"border-horizontal" to "\uf0CA",
"border-inside" to "\uf0CB",
"border-left" to "\uf0CC",
"border-left-variant" to "\uf8A2",
"border-none" to "\uf0CD",
"border-none-variant" to "\uf8A3",
"border-outside" to "\uf0CE",
"border-right" to "\uf0CF",
"border-right-variant" to "\uf8A4",
"border-style" to "\uf0D0",
"border-top" to "\uf0D1",
"border-top-variant" to "\uf8A5",
"border-vertical" to "\uf0D2",
"bottle-wine" to "\uf853",
"bow-tie" to "\uf677",
"bowl" to "\uf617",
"bowling" to "\uf0D3",
"box" to "\uf0D4",
"box-cutter" to "\uf0D5",
"box-shadow" to "\uf637",
"bridge" to "\uf618",
"briefcase" to "\uf0D6",
"briefcase-check" to "\uf0D7",
"briefcase-download" to "\uf0D8",
"briefcase-outline" to "\uf813",
"briefcase-upload" to "\uf0D9",
"brightness-1" to "\uf0DA",
"brightness-2" to "\uf0DB",
"brightness-3" to "\uf0DC",
"brightness-4" to "\uf0DD",
"brightness-5" to "\uf0DE",
"brightness-6" to "\uf0DF",
"brightness-7" to "\uf0E0",
"brightness-auto" to "\uf0E1",
"broom" to "\uf0E2",
"brush" to "\uf0E3",
"buffer" to "\uf619",
"bug" to "\uf0E4",
"bulletin-board" to "\uf0E5",
"bullhorn" to "\uf0E6",
"bullseye" to "\uf5DD",
"bullseye-arrow" to "\uf8C8",
"bus" to "\uf0E7",
"bus-articulated-end" to "\uf79B",
"bus-articulated-front" to "\uf79C",
"bus-clock" to "\uf8C9",
"bus-double-decker" to "\uf79D",
"bus-school" to "\uf79E",
"bus-side" to "\uf79F",
"cached" to "\uf0E8",
"cake" to "\uf0E9",
"cake-layered" to "\uf0EA",
"cake-variant" to "\uf0EB",
"calculator" to "\uf0EC",
"calendar" to "\uf0ED",
"calendar-blank" to "\uf0EE",
"calendar-check" to "\uf0EF",
"calendar-clock" to "\uf0F0",
"calendar-edit" to "\uf8A6",
"calendar-multiple" to "\uf0F1",
"calendar-multiple-check" to "\uf0F2",
"calendar-plus" to "\uf0F3",
"calendar-question" to "\uf691",
"calendar-range" to "\uf678",
"calendar-remove" to "\uf0F4",
"calendar-text" to "\uf0F5",
"calendar-today" to "\uf0F6",
"call-made" to "\uf0F7",
"call-merge" to "\uf0F8",
"call-missed" to "\uf0F9",
"call-received" to "\uf0FA",
"call-split" to "\uf0FB",
"camcorder" to "\uf0FC",
"camcorder-box" to "\uf0FD",
"camcorder-box-off" to "\uf0FE",
"camcorder-off" to "\uf0FF",
"camera" to "\uf100",
"camera-account" to "\uf8CA",
"camera-burst" to "\uf692",
"camera-enhance" to "\uf101",
"camera-front" to "\uf102",
"camera-front-variant" to "\uf103",
"camera-gopro" to "\uf7A0",
"camera-image" to "\uf8CB",
"camera-iris" to "\uf104",
"camera-metering-center" to "\uf7A1",
"camera-metering-matrix" to "\uf7A2",
"camera-metering-partial" to "\uf7A3",
"camera-metering-spot" to "\uf7A4",
"camera-off" to "\uf5DF",
"camera-party-mode" to "\uf105",
"camera-rear" to "\uf106",
"camera-rear-variant" to "\uf107",
"camera-switch" to "\uf108",
"camera-timer" to "\uf109",
"cancel" to "\uf739",
"candle" to "\uf5E2",
"candycane" to "\uf10A",
"cannabis" to "\uf7A5",
"car" to "\uf10B",
"car-battery" to "\uf10C",
"car-connected" to "\uf10D",
"car-convertible" to "\uf7A6",
"car-estate" to "\uf7A7",
"car-hatchback" to "\uf7A8",
"car-limousine" to "\uf8CC",
"car-pickup" to "\uf7A9",
"car-side" to "\uf7AA",
"car-sports" to "\uf7AB",
"car-wash" to "\uf10E",
"caravan" to "\uf7AC",
"cards" to "\uf638",
"cards-club" to "\uf8CD",
"cards-diamond" to "\uf8CE",
"cards-heart" to "\uf8CF",
"cards-outline" to "\uf639",
"cards-playing-outline" to "\uf63A",
"cards-spade" to "\uf8D0",
"cards-variant" to "\uf6C6",
"carrot" to "\uf10F",
"cart" to "\uf110",
"cart-off" to "\uf66B",
"cart-outline" to "\uf111",
"cart-plus" to "\uf112",
"case-sensitive-alt" to "\uf113",
"cash" to "\uf114",
"cash-100" to "\uf115",
"cash-multiple" to "\uf116",
"cash-usd" to "\uf117",
"cast" to "\uf118",
"cast-connected" to "\uf119",
"cast-off" to "\uf789",
"castle" to "\uf11A",
"cat" to "\uf11B",
"cctv" to "\uf7AD",
"ceiling-light" to "\uf768",
"cellphone" to "\uf11C",
"cellphone-android" to "\uf11D",
"cellphone-basic" to "\uf11E",
"cellphone-dock" to "\uf11F",
"cellphone-iphone" to "\uf120",
"cellphone-link" to "\uf121",
"cellphone-link-off" to "\uf122",
"cellphone-message" to "\uf8D2",
"cellphone-settings" to "\uf123",
"cellphone-text" to "\uf8D1",
"cellphone-wireless" to "\uf814",
"certificate" to "\uf124",
"chair-school" to "\uf125",
"chart-arc" to "\uf126",
"chart-areaspline" to "\uf127",
"chart-bar" to "\uf128",
"chart-bar-stacked" to "\uf769",
"chart-bubble" to "\uf5E3",
"chart-donut" to "\uf7AE",
"chart-donut-variant" to "\uf7AF",
"chart-gantt" to "\uf66C",
"chart-histogram" to "\uf129",
"chart-line" to "\uf12A",
"chart-line-stacked" to "\uf76A",
"chart-line-variant" to "\uf7B0",
"chart-multiline" to "\uf8D3",
"chart-pie" to "\uf12B",
"chart-scatterplot-hexbin" to "\uf66D",
"chart-timeline" to "\uf66E",
"check" to "\uf12C",
"check-all" to "\uf12D",
"check-circle" to "\uf5E0",
"check-circle-outline" to "\uf5E1",
"check-outline" to "\uf854",
"checkbox-blank" to "\uf12E",
"checkbox-blank-circle" to "\uf12F",
"checkbox-blank-circle-outline" to "\uf130",
"checkbox-blank-outline" to "\uf131",
"checkbox-intermediate" to "\uf855",
"checkbox-marked" to "\uf132",
"checkbox-marked-circle" to "\uf133",
"checkbox-marked-circle-outline" to "\uf134",
"checkbox-marked-outline" to "\uf135",
"checkbox-multiple-blank" to "\uf136",
"checkbox-multiple-blank-circle" to "\uf63B",
"checkbox-multiple-blank-circle-outline" to "\uf63C",
"checkbox-multiple-blank-outline" to "\uf137",
"checkbox-multiple-marked" to "\uf138",
"checkbox-multiple-marked-circle" to "\uf63D",
"checkbox-multiple-marked-circle-outline" to "\uf63E",
"checkbox-multiple-marked-outline" to "\uf139",
"checkerboard" to "\uf13A",
"chemical-weapon" to "\uf13B",
"chess-bishop" to "\uf85B",
"chess-king" to "\uf856",
"chess-knight" to "\uf857",
"chess-pawn" to "\uf858",
"chess-queen" to "\uf859",
"chess-rook" to "\uf85A",
"chevron-double-down" to "\uf13C",
"chevron-double-left" to "\uf13D",
"chevron-double-right" to "\uf13E",
"chevron-double-up" to "\uf13F",
"chevron-down" to "\uf140",
"chevron-left" to "\uf141",
"chevron-right" to "\uf142",
"chevron-up" to "\uf143",
"chili-hot" to "\uf7B1",
"chili-medium" to "\uf7B2",
"chili-mild" to "\uf7B3",
"chip" to "\uf61A",
"church" to "\uf144",
"circle" to "\uf764",
"circle-edit-outline" to "\uf8D4",
"circle-outline" to "\uf765",
"cisco-webex" to "\uf145",
"city" to "\uf146",
"clipboard" to "\uf147",
"clipboard-account" to "\uf148",
"clipboard-alert" to "\uf149",
"clipboard-arrow-down" to "\uf14A",
"clipboard-arrow-left" to "\uf14B",
"clipboard-check" to "\uf14C",
"clipboard-check-outline" to "\uf8A7",
"clipboard-flow" to "\uf6C7",
"clipboard-outline" to "\uf14D",
"clipboard-plus" to "\uf750",
"clipboard-pulse" to "\uf85C",
"clipboard-pulse-outline" to "\uf85D",
"clipboard-text" to "\uf14E",
"clippy" to "\uf14F",
"clock" to "\uf150",
"clock-alert" to "\uf5CE",
"clock-end" to "\uf151",
"clock-fast" to "\uf152",
"clock-in" to "\uf153",
"clock-out" to "\uf154",
"clock-start" to "\uf155",
"close" to "\uf156",
"close-box" to "\uf157",
"close-box-outline" to "\uf158",
"close-circle" to "\uf159",
"close-circle-outline" to "\uf15A",
"close-network" to "\uf15B",
"close-octagon" to "\uf15C",
"close-octagon-outline" to "\uf15D",
"close-outline" to "\uf6C8",
"closed-caption" to "\uf15E",
"cloud" to "\uf15F",
"cloud-braces" to "\uf7B4",
"cloud-check" to "\uf160",
"cloud-circle" to "\uf161",
"cloud-download" to "\uf162",
"cloud-off-outline" to "\uf164",
"cloud-outline" to "\uf163",
"cloud-print" to "\uf165",
"cloud-print-outline" to "\uf166",
"cloud-sync" to "\uf63F",
"cloud-tags" to "\uf7B5",
"cloud-upload" to "\uf167",
"clover" to "\uf815",
"code-array" to "\uf168",
"code-braces" to "\uf169",
"code-brackets" to "\uf16A",
"code-equal" to "\uf16B",
"code-greater-than" to "\uf16C",
"code-greater-than-or-equal" to "\uf16D",
"code-less-than" to "\uf16E",
"code-less-than-or-equal" to "\uf16F",
"code-not-equal" to "\uf170",
"code-not-equal-variant" to "\uf171",
"code-parentheses" to "\uf172",
"code-string" to "\uf173",
"code-tags" to "\uf174",
"code-tags-check" to "\uf693",
"codepen" to "\uf175",
"coffee" to "\uf176",
"coffee-outline" to "\uf6C9",
"coffee-to-go" to "\uf177",
"cogs" to "\uf8D5",
"coin" to "\uf178",
"coins" to "\uf694",
"collage" to "\uf640",
"color-helper" to "\uf179",
"comment" to "\uf17A",
"comment-account" to "\uf17B",
"comment-account-outline" to "\uf17C",
"comment-alert" to "\uf17D",
"comment-alert-outline" to "\uf17E",
"comment-check" to "\uf17F",
"comment-check-outline" to "\uf180",
"comment-multiple" to "\uf85E",
"comment-multiple-outline" to "\uf181",
"comment-outline" to "\uf182",
"comment-plus-outline" to "\uf183",
"comment-processing" to "\uf184",
"comment-processing-outline" to "\uf185",
"comment-question" to "\uf816",
"comment-question-outline" to "\uf186",
"comment-remove" to "\uf5DE",
"comment-remove-outline" to "\uf187",
"comment-text" to "\uf188",
"comment-text-multiple" to "\uf85F",
"comment-text-multiple-outline" to "\uf860",
"comment-text-outline" to "\uf189",
"compare" to "\uf18A",
"compass" to "\uf18B",
"compass-outline" to "\uf18C",
"console" to "\uf18D",
"console-line" to "\uf7B6",
"console-network" to "\uf8A8",
"contact-mail" to "\uf18E",
"contacts" to "\uf6CA",
"content-copy" to "\uf18F",
"content-cut" to "\uf190",
"content-duplicate" to "\uf191",
"content-paste" to "\uf192",
"content-save" to "\uf193",
"content-save-all" to "\uf194",
"content-save-outline" to "\uf817",
"content-save-settings" to "\uf61B",
"contrast" to "\uf195",
"contrast-box" to "\uf196",
"contrast-circle" to "\uf197",
"cookie" to "\uf198",
"copyright" to "\uf5E6",
"corn" to "\uf7B7",
"counter" to "\uf199",
"cow" to "\uf19A",
"crane" to "\uf861",
"creation" to "\uf1C9",
"credit-card" to "\uf19B",
"credit-card-multiple" to "\uf19C",
"credit-card-off" to "\uf5E4",
"credit-card-plus" to "\uf675",
"credit-card-scan" to "\uf19D",
"credit-card-settings" to "\uf8D6",
"crop" to "\uf19E",
"crop-free" to "\uf19F",
"crop-landscape" to "\uf1A0",
"crop-portrait" to "\uf1A1",
"crop-rotate" to "\uf695",
"crop-square" to "\uf1A2",
"crosshairs" to "\uf1A3",
"crosshairs-gps" to "\uf1A4",
"crown" to "\uf1A5",
"cube" to "\uf1A6",
"cube-outline" to "\uf1A7",
"cube-send" to "\uf1A8",
"cube-unfolded" to "\uf1A9",
"cup" to "\uf1AA",
"cup-off" to "\uf5E5",
"cup-water" to "\uf1AB",
"curling" to "\uf862",
"currency-bdt" to "\uf863",
"currency-btc" to "\uf1AC",
"currency-chf" to "\uf7B8",
"currency-cny" to "\uf7B9",
"currency-eth" to "\uf7BA",
"currency-eur" to "\uf1AD",
"currency-gbp" to "\uf1AE",
"currency-inr" to "\uf1AF",
"currency-jpy" to "\uf7BB",
"currency-krw" to "\uf7BC",
"currency-kzt" to "\uf864",
"currency-ngn" to "\uf1B0",
"currency-rub" to "\uf1B1",
"currency-sign" to "\uf7BD",
"currency-try" to "\uf1B2",
"currency-twd" to "\uf7BE",
"currency-usd" to "\uf1B3",
"currency-usd-off" to "\uf679",
"cursor-default" to "\uf1B4",
"cursor-default-outline" to "\uf1B5",
"cursor-move" to "\uf1B6",
"cursor-pointer" to "\uf1B7",
"cursor-text" to "\uf5E7",
"database" to "\uf1B8",
"database-minus" to "\uf1B9",
"database-plus" to "\uf1BA",
"database-search" to "\uf865",
"death-star" to "\uf8D7",
"death-star-variant" to "\uf8D8",
"debian" to "\uf8D9",
"debug-step-into" to "\uf1BB",
"debug-step-out" to "\uf1BC",
"debug-step-over" to "\uf1BD",
"decagram" to "\uf76B",
"decagram-outline" to "\uf76C",
"decimal-decrease" to "\uf1BE",
"decimal-increase" to "\uf1BF",
"delete" to "\uf1C0",
"delete-circle" to "\uf682",
"delete-empty" to "\uf6CB",
"delete-forever" to "\uf5E8",
"delete-restore" to "\uf818",
"delete-sweep" to "\uf5E9",
"delete-variant" to "\uf1C1",
"delta" to "\uf1C2",
"deskphone" to "\uf1C3",
"desktop-classic" to "\uf7BF",
"desktop-mac" to "\uf1C4",
"desktop-tower" to "\uf1C5",
"details" to "\uf1C6",
"developer-board" to "\uf696",
"deviantart" to "\uf1C7",
"dialpad" to "\uf61C",
"diamond" to "\uf1C8",
"dice-1" to "\uf1CA",
"dice-2" to "\uf1CB",
"dice-3" to "\uf1CC",
"dice-4" to "\uf1CD",
"dice-5" to "\uf1CE",
"dice-6" to "\uf1CF",
"dice-d10" to "\uf76E",
"dice-d12" to "\uf866",
"dice-d20" to "\uf5EA",
"dice-d4" to "\uf5EB",
"dice-d6" to "\uf5EC",
"dice-d8" to "\uf5ED",
"dice-multiple" to "\uf76D",
"dictionary" to "\uf61D",
"dip-switch" to "\uf7C0",
"directions" to "\uf1D0",
"directions-fork" to "\uf641",
"discord" to "\uf66F",
"disk" to "\uf5EE",
"disk-alert" to "\uf1D1",
"disqus" to "\uf1D2",
"disqus-outline" to "\uf1D3",
"division" to "\uf1D4",
"division-box" to "\uf1D5",
"dna" to "\uf683",
"dns" to "\uf1D6",
"do-not-disturb" to "\uf697",
"do-not-disturb-off" to "\uf698",
"docker" to "\uf867",
"dolby" to "\uf6B2",
"domain" to "\uf1D7",
"donkey" to "\uf7C1",
"door" to "\uf819",
"door-closed" to "\uf81A",
"door-open" to "\uf81B",
"doorbell-video" to "\uf868",
"dots-horizontal" to "\uf1D8",
"dots-horizontal-circle" to "\uf7C2",
"dots-vertical" to "\uf1D9",
"dots-vertical-circle" to "\uf7C3",
"douban" to "\uf699",
"download" to "\uf1DA",
"download-network" to "\uf6F3",
"drag" to "\uf1DB",
"drag-horizontal" to "\uf1DC",
"drag-vertical" to "\uf1DD",
"drawing" to "\uf1DE",
"drawing-box" to "\uf1DF",
"dribbble" to "\uf1E0",
"dribbble-box" to "\uf1E1",
"drone" to "\uf1E2",
"dropbox" to "\uf1E3",
"drupal" to "\uf1E4",
"duck" to "\uf1E5",
"dumbbell" to "\uf1E6",
"ear-hearing" to "\uf7C4",
"earth" to "\uf1E7",
"earth-box" to "\uf6CC",
"earth-box-off" to "\uf6CD",
"earth-off" to "\uf1E8",
"edge" to "\uf1E9",
"eject" to "\uf1EA",
"elephant" to "\uf7C5",
"elevation-decline" to "\uf1EB",
"elevation-rise" to "\uf1EC",
"elevator" to "\uf1ED",
"email" to "\uf1EE",
"email-alert" to "\uf6CE",
"email-open" to "\uf1EF",
"email-open-outline" to "\uf5EF",
"email-outline" to "\uf1F0",
"email-secure" to "\uf1F1",
"email-variant" to "\uf5F0",
"emby" to "\uf6B3",
"emoticon" to "\uf1F2",
"emoticon-cool" to "\uf1F3",
"emoticon-dead" to "\uf69A",
"emoticon-devil" to "\uf1F4",
"emoticon-excited" to "\uf69B",
"emoticon-happy" to "\uf1F5",
"emoticon-neutral" to "\uf1F6",
"emoticon-poop" to "\uf1F7",
"emoticon-sad" to "\uf1F8",
"emoticon-tongue" to "\uf1F9",
"engine" to "\uf1FA",
"engine-outline" to "\uf1FB",
"equal" to "\uf1FC",
"equal-box" to "\uf1FD",
"eraser" to "\uf1FE",
"eraser-variant" to "\uf642",
"escalator" to "\uf1FF",
"ethereum" to "\uf869",
"ethernet" to "\uf200",
"ethernet-cable" to "\uf201",
"ethernet-cable-off" to "\uf202",
"etsy" to "\uf203",
"ev-station" to "\uf5F1",
"eventbrite" to "\uf7C6",
"evernote" to "\uf204",
"exclamation" to "\uf205",
"exit-to-app" to "\uf206",
"export" to "\uf207",
"eye" to "\uf208",
"eye-off" to "\uf209",
"eye-off-outline" to "\uf6D0",
"eye-outline" to "\uf6CF",
"eye-plus" to "\uf86A",
"eye-plus-outline" to "\uf86B",
"eye-settings" to "\uf86C",
"eye-settings-outline" to "\uf86D",
"eyedropper" to "\uf20A",
"eyedropper-variant" to "\uf20B",
"face" to "\uf643",
"face-profile" to "\uf644",
"facebook" to "\uf20C",
"facebook-box" to "\uf20D",
"facebook-messenger" to "\uf20E",
"factory" to "\uf20F",
"fan" to "\uf210",
"fan-off" to "\uf81C",
"fast-forward" to "\uf211",
"fast-forward-outline" to "\uf6D1",
"fax" to "\uf212",
"feather" to "\uf6D2",
"fedora" to "\uf8DA",
"ferry" to "\uf213",
"file" to "\uf214",
"file-account" to "\uf73A",
"file-chart" to "\uf215",
"file-check" to "\uf216",
"file-cloud" to "\uf217",
"file-compare" to "\uf8A9",
"file-delimited" to "\uf218",
"file-document" to "\uf219",
"file-document-box" to "\uf21A",
"file-excel" to "\uf21B",
"file-excel-box" to "\uf21C",
"file-export" to "\uf21D",
"file-find" to "\uf21E",
"file-hidden" to "\uf613",
"file-image" to "\uf21F",
"file-import" to "\uf220",
"file-lock" to "\uf221",
"file-multiple" to "\uf222",
"file-music" to "\uf223",
"file-outline" to "\uf224",
"file-pdf" to "\uf225",
"file-pdf-box" to "\uf226",
"file-percent" to "\uf81D",
"file-plus" to "\uf751",
"file-powerpoint" to "\uf227",
"file-powerpoint-box" to "\uf228",
"file-presentation-box" to "\uf229",
"file-question" to "\uf86E",
"file-restore" to "\uf670",
"file-send" to "\uf22A",
"file-tree" to "\uf645",
"file-undo" to "\uf8DB",
"file-video" to "\uf22B",
"file-word" to "\uf22C",
"file-word-box" to "\uf22D",
"file-xml" to "\uf22E",
"film" to "\uf22F",
"filmstrip" to "\uf230",
"filmstrip-off" to "\uf231",
"filter" to "\uf232",
"filter-outline" to "\uf233",
"filter-remove" to "\uf234",
"filter-remove-outline" to "\uf235",
"filter-variant" to "\uf236",
"finance" to "\uf81E",
"find-replace" to "\uf6D3",
"fingerprint" to "\uf237",
"fire" to "\uf238",
"fire-truck" to "\uf8AA",
"firefox" to "\uf239",
"fish" to "\uf23A",
"flag" to "\uf23B",
"flag-checkered" to "\uf23C",
"flag-outline" to "\uf23D",
"flag-triangle" to "\uf23F",
"flag-variant" to "\uf240",
"flag-variant-outline" to "\uf23E",
"flash" to "\uf241",
"flash-auto" to "\uf242",
"flash-circle" to "\uf81F",
"flash-off" to "\uf243",
"flash-outline" to "\uf6D4",
"flash-red-eye" to "\uf67A",
"flashlight" to "\uf244",
"flashlight-off" to "\uf245",
"flask" to "\uf093",
"flask-empty" to "\uf094",
"flask-empty-outline" to "\uf095",
"flask-outline" to "\uf096",
"flattr" to "\uf246",
"flip-to-back" to "\uf247",
"flip-to-front" to "\uf248",
"floor-lamp" to "\uf8DC",
"floor-plan" to "\uf820",
"floppy" to "\uf249",
"flower" to "\uf24A",
"folder" to "\uf24B",
"folder-account" to "\uf24C",
"folder-download" to "\uf24D",
"folder-edit" to "\uf8DD",
"folder-google-drive" to "\uf24E",
"folder-image" to "\uf24F",
"folder-key" to "\uf8AB",
"folder-key-network" to "\uf8AC",
"folder-lock" to "\uf250",
"folder-lock-open" to "\uf251",
"folder-move" to "\uf252",
"folder-multiple" to "\uf253",
"folder-multiple-image" to "\uf254",
"folder-multiple-outline" to "\uf255",
"folder-network" to "\uf86F",
"folder-open" to "\uf76F",
"folder-outline" to "\uf256",
"folder-plus" to "\uf257",
"folder-remove" to "\uf258",
"folder-star" to "\uf69C",
"folder-upload" to "\uf259",
"font-awesome" to "\uf03A",
"food" to "\uf25A",
"food-apple" to "\uf25B",
"food-croissant" to "\uf7C7",
"food-fork-drink" to "\uf5F2",
"food-off" to "\uf5F3",
"food-variant" to "\uf25C",
"football" to "\uf25D",
"football-australian" to "\uf25E",
"football-helmet" to "\uf25F",
"forklift" to "\uf7C8",
"format-align-bottom" to "\uf752",
"format-align-center" to "\uf260",
"format-align-justify" to "\uf261",
"format-align-left" to "\uf262",
"format-align-middle" to "\uf753",
"format-align-right" to "\uf263",
"format-align-top" to "\uf754",
"format-annotation-plus" to "\uf646",
"format-bold" to "\uf264",
"format-clear" to "\uf265",
"format-color-fill" to "\uf266",
"format-color-text" to "\uf69D",
"format-columns" to "\uf8DE",
"format-float-center" to "\uf267",
"format-float-left" to "\uf268",
"format-float-none" to "\uf269",
"format-float-right" to "\uf26A",
"format-font" to "\uf6D5",
"format-header-1" to "\uf26B",
"format-header-2" to "\uf26C",
"format-header-3" to "\uf26D",
"format-header-4" to "\uf26E",
"format-header-5" to "\uf26F",
"format-header-6" to "\uf270",
"format-header-decrease" to "\uf271",
"format-header-equal" to "\uf272",
"format-header-increase" to "\uf273",
"format-header-pound" to "\uf274",
"format-horizontal-align-center" to "\uf61E",
"format-horizontal-align-left" to "\uf61F",
"format-horizontal-align-right" to "\uf620",
"format-indent-decrease" to "\uf275",
"format-indent-increase" to "\uf276",
"format-italic" to "\uf277",
"format-line-spacing" to "\uf278",
"format-line-style" to "\uf5C8",
"format-line-weight" to "\uf5C9",
"format-list-bulleted" to "\uf279",
"format-list-bulleted-type" to "\uf27A",
"format-list-checks" to "\uf755",
"format-list-numbers" to "\uf27B",
"format-page-break" to "\uf6D6",
"format-paint" to "\uf27C",
"format-paragraph" to "\uf27D",
"format-pilcrow" to "\uf6D7",
"format-quote-close" to "\uf27E",
"format-quote-open" to "\uf756",
"format-rotate-90" to "\uf6A9",
"format-section" to "\uf69E",
"format-size" to "\uf27F",
"format-strikethrough" to "\uf280",
"format-strikethrough-variant" to "\uf281",
"format-subscript" to "\uf282",
"format-superscript" to "\uf283",
"format-text" to "\uf284",
"format-textdirection-l-to-r" to "\uf285",
"format-textdirection-r-to-l" to "\uf286",
"format-title" to "\uf5F4",
"format-underline" to "\uf287",
"format-vertical-align-bottom" to "\uf621",
"format-vertical-align-center" to "\uf622",
"format-vertical-align-top" to "\uf623",
"format-wrap-inline" to "\uf288",
"format-wrap-square" to "\uf289",
"format-wrap-tight" to "\uf28A",
"format-wrap-top-bottom" to "\uf28B",
"forum" to "\uf28C",
"forum-outline" to "\uf821",
"forward" to "\uf28D",
"foursquare" to "\uf28E",
"freebsd" to "\uf8DF",
"fridge" to "\uf28F",
"fridge-filled" to "\uf290",
"fridge-filled-bottom" to "\uf291",
"fridge-filled-top" to "\uf292",
"fuel" to "\uf7C9",
"fullscreen" to "\uf293",
"fullscreen-exit" to "\uf294",
"function" to "\uf295",
"function-variant" to "\uf870",
"gamepad" to "\uf296",
"gamepad-variant" to "\uf297",
"garage" to "\uf6D8",
"garage-alert" to "\uf871",
"garage-open" to "\uf6D9",
"gas-cylinder" to "\uf647",
"gas-station" to "\uf298",
"gate" to "\uf299",
"gate-and" to "\uf8E0",
"gate-nand" to "\uf8E1",
"gate-nor" to "\uf8E2",
"gate-not" to "\uf8E3",
"gate-or" to "\uf8E4",
"gate-xnor" to "\uf8E5",
"gate-xor" to "\uf8E6",
"gauge" to "\uf29A",
"gauge-empty" to "\uf872",
"gauge-full" to "\uf873",
"gauge-low" to "\uf874",
"gavel" to "\uf29B",
"gender-female" to "\uf29C",
"gender-male" to "\uf29D",
"gender-male-female" to "\uf29E",
"gender-transgender" to "\uf29F",
"gentoo" to "\uf8E7",
"gesture" to "\uf7CA",
"gesture-double-tap" to "\uf73B",
"gesture-swipe-down" to "\uf73C",
"gesture-swipe-left" to "\uf73D",
"gesture-swipe-right" to "\uf73E",
"gesture-swipe-up" to "\uf73F",
"gesture-tap" to "\uf740",
"gesture-two-double-tap" to "\uf741",
"gesture-two-tap" to "\uf742",
"ghost" to "\uf2A0",
"gift" to "\uf2A1",
"git" to "\uf2A2",
"github-box" to "\uf2A3",
"github-circle" to "\uf2A4",
"github-face" to "\uf6DA",
"glass-cocktail" to "\uf356",
"glass-flute" to "\uf2A5",
"glass-mug" to "\uf2A6",
"glass-stange" to "\uf2A7",
"glass-tulip" to "\uf2A8",
"glass-wine" to "\uf875",
"glassdoor" to "\uf2A9",
"glasses" to "\uf2AA",
"globe-model" to "\uf8E8",
"gmail" to "\uf2AB",
"gnome" to "\uf2AC",
"golf" to "\uf822",
"gondola" to "\uf685",
"google" to "\uf2AD",
"google-allo" to "\uf801",
"google-analytics" to "\uf7CB",
"google-assistant" to "\uf7CC",
"google-cardboard" to "\uf2AE",
"google-chrome" to "\uf2AF",
"google-circles" to "\uf2B0",
"google-circles-communities" to "\uf2B1",
"google-circles-extended" to "\uf2B2",
"google-circles-group" to "\uf2B3",
"google-controller" to "\uf2B4",
"google-controller-off" to "\uf2B5",
"google-drive" to "\uf2B6",
"google-earth" to "\uf2B7",
"google-glass" to "\uf2B8",
"google-hangouts" to "\uf2C9",
"google-home" to "\uf823",
"google-keep" to "\uf6DB",
"google-maps" to "\uf5F5",
"google-nearby" to "\uf2B9",
"google-pages" to "\uf2BA",
"google-photos" to "\uf6DC",
"google-physical-web" to "\uf2BB",
"google-play" to "\uf2BC",
"google-plus" to "\uf2BD",
"google-plus-box" to "\uf2BE",
"google-translate" to "\uf2BF",
"google-wallet" to "\uf2C0",
"gpu" to "\uf8AD",
"gradient" to "\uf69F",
"graphql" to "\uf876",
"grease-pencil" to "\uf648",
"grid" to "\uf2C1",
"grid-large" to "\uf757",
"grid-off" to "\uf2C2",
"group" to "\uf2C3",
"guitar-acoustic" to "\uf770",
"guitar-electric" to "\uf2C4",
"guitar-pick" to "\uf2C5",
"guitar-pick-outline" to "\uf2C6",
"guy-fawkes-mask" to "\uf824",
"hackernews" to "\uf624",
"hamburger" to "\uf684",
"hammer" to "\uf8E9",
"hand-pointing-right" to "\uf2C7",
"hanger" to "\uf2C8",
"harddisk" to "\uf2CA",
"headphones" to "\uf2CB",
"headphones-box" to "\uf2CC",
"headphones-off" to "\uf7CD",
"headphones-settings" to "\uf2CD",
"headset" to "\uf2CE",
"headset-dock" to "\uf2CF",
"headset-off" to "\uf2D0",
"heart" to "\uf2D1",
"heart-box" to "\uf2D2",
"heart-box-outline" to "\uf2D3",
"heart-broken" to "\uf2D4",
"heart-half" to "\uf6DE",
"heart-half-full" to "\uf6DD",
"heart-half-outline" to "\uf6DF",
"heart-off" to "\uf758",
"heart-outline" to "\uf2D5",
"heart-pulse" to "\uf5F6",
"help" to "\uf2D6",
"help-box" to "\uf78A",
"help-circle" to "\uf2D7",
"help-circle-outline" to "\uf625",
"help-network" to "\uf6F4",
"hexagon" to "\uf2D8",
"hexagon-multiple" to "\uf6E0",
"hexagon-outline" to "\uf2D9",
"high-definition" to "\uf7CE",
"high-definition-box" to "\uf877",
"highway" to "\uf5F7",
"history" to "\uf2DA",
"hockey-puck" to "\uf878",
"hockey-sticks" to "\uf879",
"hololens" to "\uf2DB",
"home" to "\uf2DC",
"home-account" to "\uf825",
"home-alert" to "\uf87A",
"home-assistant" to "\uf7CF",
"home-automation" to "\uf7D0",
"home-circle" to "\uf7D1",
"home-currency-usd" to "\uf8AE",
"home-heart" to "\uf826",
"home-lock" to "\uf8EA",
"home-lock-open" to "\uf8EB",
"home-map-marker" to "\uf5F8",
"home-modern" to "\uf2DD",
"home-outline" to "\uf6A0",
"home-variant" to "\uf2DE",
"hook" to "\uf6E1",
"hook-off" to "\uf6E2",
"hops" to "\uf2DF",
"hospital" to "\uf2E0",
"hospital-building" to "\uf2E1",
"hospital-marker" to "\uf2E2",
"hot-tub" to "\uf827",
"hotel" to "\uf2E3",
"houzz" to "\uf2E4",
"houzz-box" to "\uf2E5",
"hulu" to "\uf828",
"human" to "\uf2E6",
"human-child" to "\uf2E7",
"human-female" to "\uf649",
"human-greeting" to "\uf64A",
"human-handsdown" to "\uf64B",
"human-handsup" to "\uf64C",
"human-male" to "\uf64D",
"human-male-female" to "\uf2E8",
"human-pregnant" to "\uf5CF",
"humble-bundle" to "\uf743",
"ice-cream" to "\uf829",
"image" to "\uf2E9",
"image-album" to "\uf2EA",
"image-area" to "\uf2EB",
"image-area-close" to "\uf2EC",
"image-broken" to "\uf2ED",
"image-broken-variant" to "\uf2EE",
"image-filter" to "\uf2EF",
"image-filter-black-white" to "\uf2F0",
"image-filter-center-focus" to "\uf2F1",
"image-filter-center-focus-weak" to "\uf2F2",
"image-filter-drama" to "\uf2F3",
"image-filter-frames" to "\uf2F4",
"image-filter-hdr" to "\uf2F5",
"image-filter-none" to "\uf2F6",
"image-filter-tilt-shift" to "\uf2F7",
"image-filter-vintage" to "\uf2F8",
"image-multiple" to "\uf2F9",
"image-off" to "\uf82A",
"image-plus" to "\uf87B",
"import" to "\uf2FA",
"inbox" to "\uf686",
"inbox-arrow-down" to "\uf2FB",
"inbox-arrow-up" to "\uf3D1",
"inbox-multiple" to "\uf8AF",
"incognito" to "\uf5F9",
"infinity" to "\uf6E3",
"information" to "\uf2FC",
"information-outline" to "\uf2FD",
"information-variant" to "\uf64E",
"instagram" to "\uf2FE",
"instapaper" to "\uf2FF",
"internet-explorer" to "\uf300",
"invert-colors" to "\uf301",
"itunes" to "\uf676",
"jeepney" to "\uf302",
"jira" to "\uf303",
"jquery" to "\uf87C",
"jsfiddle" to "\uf304",
"json" to "\uf626",
"karate" to "\uf82B",
"keg" to "\uf305",
"kettle" to "\uf5FA",
"key" to "\uf306",
"key-change" to "\uf307",
"key-minus" to "\uf308",
"key-plus" to "\uf309",
"key-remove" to "\uf30A",
"key-variant" to "\uf30B",
"keyboard" to "\uf30C",
"keyboard-backspace" to "\uf30D",
"keyboard-caps" to "\uf30E",
"keyboard-close" to "\uf30F",
"keyboard-off" to "\uf310",
"keyboard-return" to "\uf311",
"keyboard-tab" to "\uf312",
"keyboard-variant" to "\uf313",
"kickstarter" to "\uf744",
"kodi" to "\uf314",
"label" to "\uf315",
"label-outline" to "\uf316",
"ladybug" to "\uf82C",
"lambda" to "\uf627",
"lamp" to "\uf6B4",
"lan" to "\uf317",
"lan-connect" to "\uf318",
"lan-disconnect" to "\uf319",
"lan-pending" to "\uf31A",
"language-c" to "\uf671",
"language-cpp" to "\uf672",
"language-csharp" to "\uf31B",
"language-css3" to "\uf31C",
"language-go" to "\uf7D2",
"language-html5" to "\uf31D",
"language-javascript" to "\uf31E",
"language-lua" to "\uf8B0",
"language-php" to "\uf31F",
"language-python" to "\uf320",
"language-python-text" to "\uf321",
"language-r" to "\uf7D3",
"language-swift" to "\uf6E4",
"language-typescript" to "\uf6E5",
"laptop" to "\uf322",
"laptop-chromebook" to "\uf323",
"laptop-mac" to "\uf324",
"laptop-off" to "\uf6E6",
"laptop-windows" to "\uf325",
"lastfm" to "\uf326",
"lastpass" to "\uf446",
"launch" to "\uf327",
"lava-lamp" to "\uf7D4",
"layers" to "\uf328",
"layers-off" to "\uf329",
"lead-pencil" to "\uf64F",
"leaf" to "\uf32A",
"led-off" to "\uf32B",
"led-on" to "\uf32C",
"led-outline" to "\uf32D",
"led-strip" to "\uf7D5",
"led-variant-off" to "\uf32E",
"led-variant-on" to "\uf32F",
"led-variant-outline" to "\uf330",
"library" to "\uf331",
"library-books" to "\uf332",
"library-music" to "\uf333",
"library-plus" to "\uf334",
"lifebuoy" to "\uf87D",
"lightbulb" to "\uf335",
"lightbulb-on" to "\uf6E7",
"lightbulb-on-outline" to "\uf6E8",
"lightbulb-outline" to "\uf336",
"link" to "\uf337",
"link-off" to "\uf338",
"link-variant" to "\uf339",
"link-variant-off" to "\uf33A",
"linkedin" to "\uf33B",
"linkedin-box" to "\uf33C",
"linux" to "\uf33D",
"linux-mint" to "\uf8EC",
"loading" to "\uf771",
"lock" to "\uf33E",
"lock-alert" to "\uf8ED",
"lock-open" to "\uf33F",
"lock-open-outline" to "\uf340",
"lock-outline" to "\uf341",
"lock-pattern" to "\uf6E9",
"lock-plus" to "\uf5FB",
"lock-question" to "\uf8EE",
"lock-reset" to "\uf772",
"lock-smart" to "\uf8B1",
"locker" to "\uf7D6",
"locker-multiple" to "\uf7D7",
"login" to "\uf342",
"login-variant" to "\uf5FC",
"logout" to "\uf343",
"logout-variant" to "\uf5FD",
"looks" to "\uf344",
"loop" to "\uf6EA",
"loupe" to "\uf345",
"lumx" to "\uf346",
"magnet" to "\uf347",
"magnet-on" to "\uf348",
"magnify" to "\uf349",
"magnify-minus" to "\uf34A",
"magnify-minus-outline" to "\uf6EB",
"magnify-plus" to "\uf34B",
"magnify-plus-outline" to "\uf6EC",
"mail-ru" to "\uf34C",
"mailbox" to "\uf6ED",
"map" to "\uf34D",
"map-marker" to "\uf34E",
"map-marker-circle" to "\uf34F",
"map-marker-distance" to "\uf8EF",
"map-marker-minus" to "\uf650",
"map-marker-multiple" to "\uf350",
"map-marker-off" to "\uf351",
"map-marker-outline" to "\uf7D8",
"map-marker-plus" to "\uf651",
"map-marker-radius" to "\uf352",
"margin" to "\uf353",
"markdown" to "\uf354",
"marker" to "\uf652",
"marker-check" to "\uf355",
"material-ui" to "\uf357",
"math-compass" to "\uf358",
"matrix" to "\uf628",
"maxcdn" to "\uf359",
"medical-bag" to "\uf6EE",
"medium" to "\uf35A",
"memory" to "\uf35B",
"menu" to "\uf35C",
"menu-down" to "\uf35D",
"menu-down-outline" to "\uf6B5",
"menu-left" to "\uf35E",
"menu-right" to "\uf35F",
"menu-up" to "\uf360",
"menu-up-outline" to "\uf6B6",
"message" to "\uf361",
"message-alert" to "\uf362",
"message-bulleted" to "\uf6A1",
"message-bulleted-off" to "\uf6A2",
"message-draw" to "\uf363",
"message-image" to "\uf364",
"message-outline" to "\uf365",
"message-plus" to "\uf653",
"message-processing" to "\uf366",
"message-reply" to "\uf367",
"message-reply-text" to "\uf368",
"message-settings" to "\uf6EF",
"message-settings-variant" to "\uf6F0",
"message-text" to "\uf369",
"message-text-outline" to "\uf36A",
"message-video" to "\uf36B",
"meteor" to "\uf629",
"metronome" to "\uf7D9",
"metronome-tick" to "\uf7DA",
"micro-sd" to "\uf7DB",
"microphone" to "\uf36C",
"microphone-minus" to "\uf8B2",
"microphone-off" to "\uf36D",
"microphone-outline" to "\uf36E",
"microphone-plus" to "\uf8B3",
"microphone-settings" to "\uf36F",
"microphone-variant" to "\uf370",
"microphone-variant-off" to "\uf371",
"microscope" to "\uf654",
"microsoft" to "\uf372",
"midi" to "\uf8F0",
"midi-port" to "\uf8F1",
"minecraft" to "\uf373",
"minus" to "\uf374",
"minus-box" to "\uf375",
"minus-box-outline" to "\uf6F1",
"minus-circle" to "\uf376",
"minus-circle-outline" to "\uf377",
"minus-network" to "\uf378",
"mixcloud" to "\uf62A",
"mixed-reality" to "\uf87E",
"mixer" to "\uf7DC",
"monitor" to "\uf379",
"monitor-multiple" to "\uf37A",
"more" to "\uf37B",
"motorbike" to "\uf37C",
"mouse" to "\uf37D",
"mouse-off" to "\uf37E",
"mouse-variant" to "\uf37F",
"mouse-variant-off" to "\uf380",
"move-resize" to "\uf655",
"move-resize-variant" to "\uf656",
"movie" to "\uf381",
"movie-roll" to "\uf7DD",
"multiplication" to "\uf382",
"multiplication-box" to "\uf383",
"mushroom" to "\uf7DE",
"mushroom-outline" to "\uf7DF",
"music" to "\uf759",
"music-box" to "\uf384",
"music-box-outline" to "\uf385",
"music-circle" to "\uf386",
"music-note" to "\uf387",
"music-note-bluetooth" to "\uf5FE",
"music-note-bluetooth-off" to "\uf5FF",
"music-note-eighth" to "\uf388",
"music-note-half" to "\uf389",
"music-note-off" to "\uf38A",
"music-note-quarter" to "\uf38B",
"music-note-sixteenth" to "\uf38C",
"music-note-whole" to "\uf38D",
"music-off" to "\uf75A",
"nas" to "\uf8F2",
"nativescript" to "\uf87F",
"nature" to "\uf38E",
"nature-people" to "\uf38F",
"navigation" to "\uf390",
"near-me" to "\uf5CD",
"needle" to "\uf391",
"netflix" to "\uf745",
"network" to "\uf6F2",
"network-strength-1" to "\uf8F3",
"network-strength-1-alert" to "\uf8F4",
"network-strength-2" to "\uf8F5",
"network-strength-2-alert" to "\uf8F6",
"network-strength-3" to "\uf8F7",
"network-strength-3-alert" to "\uf8F8",
"network-strength-4" to "\uf8F9",
"network-strength-4-alert" to "\uf8FA",
"network-strength-off" to "\uf8FB",
"network-strength-off-outline" to "\uf8FC",
"network-strength-outline" to "\uf8FD",
"new-box" to "\uf394",
"newspaper" to "\uf395",
"nfc" to "\uf396",
"nfc-tap" to "\uf397",
"nfc-variant" to "\uf398",
"ninja" to "\uf773",
"nintendo-switch" to "\uf7E0",
"nodejs" to "\uf399",
"note" to "\uf39A",
"note-multiple" to "\uf6B7",
"note-multiple-outline" to "\uf6B8",
"note-outline" to "\uf39B",
"note-plus" to "\uf39C",
"note-plus-outline" to "\uf39D",
"note-text" to "\uf39E",
"notebook" to "\uf82D",
"notification-clear-all" to "\uf39F",
"npm" to "\uf6F6",
"nuke" to "\uf6A3",
"null" to "\uf7E1",
"numeric" to "\uf3A0",
"numeric-0-box" to "\uf3A1",
"numeric-0-box-multiple-outline" to "\uf3A2",
"numeric-0-box-outline" to "\uf3A3",
"numeric-1-box" to "\uf3A4",
"numeric-1-box-multiple-outline" to "\uf3A5",
"numeric-1-box-outline" to "\uf3A6",
"numeric-2-box" to "\uf3A7",
"numeric-2-box-multiple-outline" to "\uf3A8",
"numeric-2-box-outline" to "\uf3A9",
"numeric-3-box" to "\uf3AA",
"numeric-3-box-multiple-outline" to "\uf3AB",
"numeric-3-box-outline" to "\uf3AC",
"numeric-4-box" to "\uf3AD",
"numeric-4-box-multiple-outline" to "\uf3AE",
"numeric-4-box-outline" to "\uf3AF",
"numeric-5-box" to "\uf3B0",
"numeric-5-box-multiple-outline" to "\uf3B1",
"numeric-5-box-outline" to "\uf3B2",
"numeric-6-box" to "\uf3B3",
"numeric-6-box-multiple-outline" to "\uf3B4",
"numeric-6-box-outline" to "\uf3B5",
"numeric-7-box" to "\uf3B6",
"numeric-7-box-multiple-outline" to "\uf3B7",
"numeric-7-box-outline" to "\uf3B8",
"numeric-8-box" to "\uf3B9",
"numeric-8-box-multiple-outline" to "\uf3BA",
"numeric-8-box-outline" to "\uf3BB",
"numeric-9-box" to "\uf3BC",
"numeric-9-box-multiple-outline" to "\uf3BD",
"numeric-9-box-outline" to "\uf3BE",
"numeric-9-plus-box" to "\uf3BF",
"numeric-9-plus-box-multiple-outline" to "\uf3C0",
"numeric-9-plus-box-outline" to "\uf3C1",
"nut" to "\uf6F7",
"nutrition" to "\uf3C2",
"oar" to "\uf67B",
"octagon" to "\uf3C3",
"octagon-outline" to "\uf3C4",
"octagram" to "\uf6F8",
"octagram-outline" to "\uf774",
"odnoklassniki" to "\uf3C5",
"office" to "\uf3C6",
"oil" to "\uf3C7",
"oil-temperature" to "\uf3C8",
"omega" to "\uf3C9",
"onedrive" to "\uf3CA",
"onenote" to "\uf746",
"onepassword" to "\uf880",
"opacity" to "\uf5CC",
"open-in-app" to "\uf3CB",
"open-in-new" to "\uf3CC",
"openid" to "\uf3CD",
"opera" to "\uf3CE",
"orbit" to "\uf018",
"ornament" to "\uf3CF",
"ornament-variant" to "\uf3D0",
"owl" to "\uf3D2",
"package" to "\uf3D3",
"package-down" to "\uf3D4",
"package-up" to "\uf3D5",
"package-variant" to "\uf3D6",
"package-variant-closed" to "\uf3D7",
"page-first" to "\uf600",
"page-last" to "\uf601",
"page-layout-body" to "\uf6F9",
"page-layout-footer" to "\uf6FA",
"page-layout-header" to "\uf6FB",
"page-layout-sidebar-left" to "\uf6FC",
"page-layout-sidebar-right" to "\uf6FD",
"palette" to "\uf3D8",
"palette-advanced" to "\uf3D9",
"palette-swatch" to "\uf8B4",
"panda" to "\uf3DA",
"pandora" to "\uf3DB",
"panorama" to "\uf3DC",
"panorama-fisheye" to "\uf3DD",
"panorama-horizontal" to "\uf3DE",
"panorama-vertical" to "\uf3DF",
"panorama-wide-angle" to "\uf3E0",
"paper-cut-vertical" to "\uf3E1",
"paperclip" to "\uf3E2",
"parking" to "\uf3E3",
"passport" to "\uf7E2",
"patreon" to "\uf881",
"pause" to "\uf3E4",
"pause-circle" to "\uf3E5",
"pause-circle-outline" to "\uf3E6",
"pause-octagon" to "\uf3E7",
"pause-octagon-outline" to "\uf3E8",
"paw" to "\uf3E9",
"paw-off" to "\uf657",
"paypal" to "\uf882",
"peace" to "\uf883",
"pen" to "\uf3EA",
"pencil" to "\uf3EB",
"pencil-box" to "\uf3EC",
"pencil-box-outline" to "\uf3ED",
"pencil-circle" to "\uf6FE",
"pencil-circle-outline" to "\uf775",
"pencil-lock" to "\uf3EE",
"pencil-off" to "\uf3EF",
"pentagon" to "\uf6FF",
"pentagon-outline" to "\uf700",
"percent" to "\uf3F0",
"periodic-table" to "\uf8B5",
"periodic-table-co2" to "\uf7E3",
"periscope" to "\uf747",
"pharmacy" to "\uf3F1",
"phone" to "\uf3F2",
"phone-bluetooth" to "\uf3F3",
"phone-classic" to "\uf602",
"phone-forward" to "\uf3F4",
"phone-hangup" to "\uf3F5",
"phone-in-talk" to "\uf3F6",
"phone-incoming" to "\uf3F7",
"phone-locked" to "\uf3F8",
"phone-log" to "\uf3F9",
"phone-minus" to "\uf658",
"phone-missed" to "\uf3FA",
"phone-outgoing" to "\uf3FB",
"phone-paused" to "\uf3FC",
"phone-plus" to "\uf659",
"phone-return" to "\uf82E",
"phone-rotate-landscape" to "\uf884",
"phone-rotate-portrait" to "\uf885",
"phone-settings" to "\uf3FD",
"phone-voip" to "\uf3FE",
"pi" to "\uf3FF",
"pi-box" to "\uf400",
"piano" to "\uf67C",
"pickaxe" to "\uf8B6",
"pier" to "\uf886",
"pier-crane" to "\uf887",
"pig" to "\uf401",
"pill" to "\uf402",
"pillar" to "\uf701",
"pin" to "\uf403",
"pin-off" to "\uf404",
"pin-off-outline" to "\uf92F",
"pin-outline" to "\uf930",
"pine-tree" to "\uf405",
"pine-tree-box" to "\uf406",
"pinterest" to "\uf407",
"pinterest-box" to "\uf408",
"pipe" to "\uf7E4",
"pipe-disconnected" to "\uf7E5",
"pipe-leak" to "\uf888",
"pistol" to "\uf702",
"piston" to "\uf889",
"pizza" to "\uf409",
"plane-shield" to "\uf6BA",
"play" to "\uf40A",
"play-box-outline" to "\uf40B",
"play-circle" to "\uf40C",
"play-circle-outline" to "\uf40D",
"play-network" to "\uf88A",
"play-pause" to "\uf40E",
"play-protected-content" to "\uf40F",
"play-speed" to "\uf8FE",
"playlist-check" to "\uf5C7",
"playlist-edit" to "\uf8FF",
"playlist-minus" to "\uf410",
"playlist-play" to "\uf411",
"playlist-plus" to "\uf412",
"playlist-remove" to "\uf413",
"playstation" to "\uf414",
"plex" to "\uf6B9",
"plus" to "\uf415",
"plus-box" to "\uf416",
"plus-box-outline" to "\uf703",
"plus-circle" to "\uf417",
"plus-circle-multiple-outline" to "\uf418",
"plus-circle-outline" to "\uf419",
"plus-network" to "\uf41A",
"plus-one" to "\uf41B",
"plus-outline" to "\uf704",
"pocket" to "\uf41C",
"pokeball" to "\uf41D",
"poker-chip" to "\uf82F",
"polaroid" to "\uf41E",
"poll" to "\uf41F",
"poll-box" to "\uf420",
"polymer" to "\uf421",
"pool" to "\uf606",
"popcorn" to "\uf422",
"pot" to "\uf65A",
"pot-mix" to "\uf65B",
"pound" to "\uf423",
"pound-box" to "\uf424",
"power" to "\uf425",
"power-cycle" to "\uf900",
"power-off" to "\uf901",
"power-on" to "\uf902",
"power-plug" to "\uf6A4",
"power-plug-off" to "\uf6A5",
"power-settings" to "\uf426",
"power-sleep" to "\uf903",
"power-socket" to "\uf427",
"power-socket-au" to "\uf904",
"power-socket-eu" to "\uf7E6",
"power-socket-uk" to "\uf7E7",
"power-socket-us" to "\uf7E8",
"power-standby" to "\uf905",
"prescription" to "\uf705",
"presentation" to "\uf428",
"presentation-play" to "\uf429",
"printer" to "\uf42A",
"printer-3d" to "\uf42B",
"printer-alert" to "\uf42C",
"printer-settings" to "\uf706",
"priority-high" to "\uf603",
"priority-low" to "\uf604",
"professional-hexagon" to "\uf42D",
"projector" to "\uf42E",
"projector-screen" to "\uf42F",
"publish" to "\uf6A6",
"pulse" to "\uf430",
"puzzle" to "\uf431",
"qqchat" to "\uf605",
"qrcode" to "\uf432",
"qrcode-edit" to "\uf8B7",
"qrcode-scan" to "\uf433",
"quadcopter" to "\uf434",
"quality-high" to "\uf435",
"quicktime" to "\uf436",
"rabbit" to "\uf906",
"radar" to "\uf437",
"radiator" to "\uf438",
"radio" to "\uf439",
"radio-handheld" to "\uf43A",
"radio-tower" to "\uf43B",
"radioactive" to "\uf43C",
"radiobox-blank" to "\uf43D",
"radiobox-marked" to "\uf43E",
"raspberrypi" to "\uf43F",
"ray-end" to "\uf440",
"ray-end-arrow" to "\uf441",
"ray-start" to "\uf442",
"ray-start-arrow" to "\uf443",
"ray-start-end" to "\uf444",
"ray-vertex" to "\uf445",
"react" to "\uf707",
"read" to "\uf447",
"receipt" to "\uf449",
"record" to "\uf44A",
"record-rec" to "\uf44B",
"recycle" to "\uf44C",
"reddit" to "\uf44D",
"redo" to "\uf44E",
"redo-variant" to "\uf44F",
"refresh" to "\uf450",
"regex" to "\uf451",
"relative-scale" to "\uf452",
"reload" to "\uf453",
"reminder" to "\uf88B",
"remote" to "\uf454",
"remote-desktop" to "\uf8B8",
"rename-box" to "\uf455",
"reorder-horizontal" to "\uf687",
"reorder-vertical" to "\uf688",
"repeat" to "\uf456",
"repeat-off" to "\uf457",
"repeat-once" to "\uf458",
"replay" to "\uf459",
"reply" to "\uf45A",
"reply-all" to "\uf45B",
"reproduction" to "\uf45C",
"resize-bottom-right" to "\uf45D",
"responsive" to "\uf45E",
"restart" to "\uf708",
"restore" to "\uf6A7",
"rewind" to "\uf45F",
"rewind-outline" to "\uf709",
"rhombus" to "\uf70A",
"rhombus-outline" to "\uf70B",
"ribbon" to "\uf460",
"rice" to "\uf7E9",
"ring" to "\uf7EA",
"road" to "\uf461",
"road-variant" to "\uf462",
"robot" to "\uf6A8",
"robot-vacuum" to "\uf70C",
"robot-vacuum-variant" to "\uf907",
"rocket" to "\uf463",
"room-service" to "\uf88C",
"rotate-3d" to "\uf464",
"rotate-left" to "\uf465",
"rotate-left-variant" to "\uf466",
"rotate-right" to "\uf467",
"rotate-right-variant" to "\uf468",
"rounded-corner" to "\uf607",
"router-wireless" to "\uf469",
"routes" to "\uf46A",
"rowing" to "\uf608",
"rss" to "\uf46B",
"rss-box" to "\uf46C",
"ruler" to "\uf46D",
"run" to "\uf70D",
"run-fast" to "\uf46E",
"sale" to "\uf46F",
"salesforce" to "\uf88D",
"sass" to "\uf7EB",
"satellite" to "\uf470",
"satellite-uplink" to "\uf908",
"satellite-variant" to "\uf471",
"sausage" to "\uf8B9",
"saxophone" to "\uf609",
"scale" to "\uf472",
"scale-balance" to "\uf5D1",
"scale-bathroom" to "\uf473",
"scanner" to "\uf6AA",
"scanner-off" to "\uf909",
"school" to "\uf474",
"screen-rotation" to "\uf475",
"screen-rotation-lock" to "\uf476",
"screwdriver" to "\uf477",
"script" to "\uf478",
"sd" to "\uf479",
"seal" to "\uf47A",
"search-web" to "\uf70E",
"seat-flat" to "\uf47B",
"seat-flat-angled" to "\uf47C",
"seat-individual-suite" to "\uf47D",
"seat-legroom-extra" to "\uf47E",
"seat-legroom-normal" to "\uf47F",
"seat-legroom-reduced" to "\uf480",
"seat-recline-extra" to "\uf481",
"seat-recline-normal" to "\uf482",
"security" to "\uf483",
"security-account" to "\uf88E",
"security-home" to "\uf689",
"security-network" to "\uf484",
"select" to "\uf485",
"select-all" to "\uf486",
"select-inverse" to "\uf487",
"select-off" to "\uf488",
"selection" to "\uf489",
"selection-off" to "\uf776",
"send" to "\uf48A",
"send-secure" to "\uf7EC",
"serial-port" to "\uf65C",
"server" to "\uf48B",
"server-minus" to "\uf48C",
"server-network" to "\uf48D",
"server-network-off" to "\uf48E",
"server-off" to "\uf48F",
"server-plus" to "\uf490",
"server-remove" to "\uf491",
"server-security" to "\uf492",
"set-all" to "\uf777",
"set-center" to "\uf778",
"set-center-right" to "\uf779",
"set-left" to "\uf77A",
"set-left-center" to "\uf77B",
"set-left-right" to "\uf77C",
"set-none" to "\uf77D",
"set-right" to "\uf77E",
"settings" to "\uf493",
"settings-box" to "\uf494",
"settings-outline" to "\uf8BA",
"shape" to "\uf830",
"shape-circle-plus" to "\uf65D",
"shape-outline" to "\uf831",
"shape-plus" to "\uf495",
"shape-polygon-plus" to "\uf65E",
"shape-rectangle-plus" to "\uf65F",
"shape-square-plus" to "\uf660",
"share" to "\uf496",
"share-outline" to "\uf931",
"share-variant" to "\uf497",
"shield" to "\uf498",
"shield-half-full" to "\uf77F",
"shield-outline" to "\uf499",
"ship-wheel" to "\uf832",
"shopping" to "\uf49A",
"shopping-music" to "\uf49B",
"shovel" to "\uf70F",
"shovel-off" to "\uf710",
"shredder" to "\uf49C",
"shuffle" to "\uf49D",
"shuffle-disabled" to "\uf49E",
"shuffle-variant" to "\uf49F",
"sigma" to "\uf4A0",
"sigma-lower" to "\uf62B",
"sign-caution" to "\uf4A1",
"sign-direction" to "\uf780",
"sign-text" to "\uf781",
"signal" to "\uf4A2",
"signal-2g" to "\uf711",
"signal-3g" to "\uf712",
"signal-4g" to "\uf713",
"signal-cellular-1" to "\uf8BB",
"signal-cellular-2" to "\uf8BC",
"signal-cellular-3" to "\uf8BD",
"signal-cellular-outline" to "\uf8BE",
"signal-hspa" to "\uf714",
"signal-hspa-plus" to "\uf715",
"signal-off" to "\uf782",
"signal-variant" to "\uf60A",
"silverware" to "\uf4A3",
"silverware-fork" to "\uf4A4",
"silverware-spoon" to "\uf4A5",
"silverware-variant" to "\uf4A6",
"sim" to "\uf4A7",
"sim-alert" to "\uf4A8",
"sim-off" to "\uf4A9",
"sitemap" to "\uf4AA",
"skip-backward" to "\uf4AB",
"skip-forward" to "\uf4AC",
"skip-next" to "\uf4AD",
"skip-next-circle" to "\uf661",
"skip-next-circle-outline" to "\uf662",
"skip-previous" to "\uf4AE",
"skip-previous-circle" to "\uf663",
"skip-previous-circle-outline" to "\uf664",
"skull" to "\uf68B",
"skype" to "\uf4AF",
"skype-business" to "\uf4B0",
"slack" to "\uf4B1",
"slackware" to "\uf90A",
"sleep" to "\uf4B2",
"sleep-off" to "\uf4B3",
"smoke-detector" to "\uf392",
"smoking" to "\uf4B4",
"smoking-off" to "\uf4B5",
"snapchat" to "\uf4B6",
"snowflake" to "\uf716",
"snowman" to "\uf4B7",
"soccer" to "\uf4B8",
"soccer-field" to "\uf833",
"sofa" to "\uf4B9",
"solid" to "\uf68C",
"sort" to "\uf4BA",
"sort-alphabetical" to "\uf4BB",
"sort-ascending" to "\uf4BC",
"sort-descending" to "\uf4BD",
"sort-numeric" to "\uf4BE",
"sort-variant" to "\uf4BF",
"soundcloud" to "\uf4C0",
"source-branch" to "\uf62C",
"source-commit" to "\uf717",
"source-commit-end" to "\uf718",
"source-commit-end-local" to "\uf719",
"source-commit-local" to "\uf71A",
"source-commit-next-local" to "\uf71B",
"source-commit-start" to "\uf71C",
"source-commit-start-next-local" to "\uf71D",
"source-fork" to "\uf4C1",
"source-merge" to "\uf62D",
"source-pull" to "\uf4C2",
"soy-sauce" to "\uf7ED",
"speaker" to "\uf4C3",
"speaker-off" to "\uf4C4",
"speaker-wireless" to "\uf71E",
"speedometer" to "\uf4C5",
"spellcheck" to "\uf4C6",
"spotify" to "\uf4C7",
"spotlight" to "\uf4C8",
"spotlight-beam" to "\uf4C9",
"spray" to "\uf665",
"square" to "\uf763",
"square-edit-outline" to "\uf90B",
"square-inc" to "\uf4CA",
"square-inc-cash" to "\uf4CB",
"square-outline" to "\uf762",
"square-root" to "\uf783",
"ssh" to "\uf8BF",
"stack-exchange" to "\uf60B",
"stack-overflow" to "\uf4CC",
"stadium" to "\uf71F",
"stairs" to "\uf4CD",
"standard-definition" to "\uf7EE",
"star" to "\uf4CE",
"star-circle" to "\uf4CF",
"star-half" to "\uf4D0",
"star-off" to "\uf4D1",
"star-outline" to "\uf4D2",
"steam" to "\uf4D3",
"steam-box" to "\uf90C",
"steering" to "\uf4D4",
"steering-off" to "\uf90D",
"step-backward" to "\uf4D5",
"step-backward-2" to "\uf4D6",
"step-forward" to "\uf4D7",
"step-forward-2" to "\uf4D8",
"stethoscope" to "\uf4D9",
"sticker" to "\uf5D0",
"sticker-emoji" to "\uf784",
"stocking" to "\uf4DA",
"stop" to "\uf4DB",
"stop-circle" to "\uf666",
"stop-circle-outline" to "\uf667",
"store" to "\uf4DC",
"store-24-hour" to "\uf4DD",
"stove" to "\uf4DE",
"subdirectory-arrow-left" to "\uf60C",
"subdirectory-arrow-right" to "\uf60D",
"subway" to "\uf6AB",
"subway-variant" to "\uf4DF",
"summit" to "\uf785",
"sunglasses" to "\uf4E0",
"surround-sound" to "\uf5C5",
"surround-sound-2-0" to "\uf7EF",
"surround-sound-3-1" to "\uf7F0",
"surround-sound-5-1" to "\uf7F1",
"surround-sound-7-1" to "\uf7F2",
"svg" to "\uf720",
"swap-horizontal" to "\uf4E1",
"swap-horizontal-variant" to "\uf8C0",
"swap-vertical" to "\uf4E2",
"swap-vertical-variant" to "\uf8C1",
"swim" to "\uf4E3",
"switch" to "\uf4E4",
"sword" to "\uf4E5",
"sword-cross" to "\uf786",
"sync" to "\uf4E6",
"sync-alert" to "\uf4E7",
"sync-off" to "\uf4E8",
"tab" to "\uf4E9",
"tab-plus" to "\uf75B",
"tab-unselected" to "\uf4EA",
"table" to "\uf4EB",
"table-column" to "\uf834",
"table-column-plus-after" to "\uf4EC",
"table-column-plus-before" to "\uf4ED",
"table-column-remove" to "\uf4EE",
"table-column-width" to "\uf4EF",
"table-edit" to "\uf4F0",
"table-large" to "\uf4F1",
"table-of-contents" to "\uf835",
"table-row" to "\uf836",
"table-row-height" to "\uf4F2",
"table-row-plus-after" to "\uf4F3",
"table-row-plus-before" to "\uf4F4",
"table-row-remove" to "\uf4F5",
"table-search" to "\uf90E",
"table-settings" to "\uf837",
"tablet" to "\uf4F6",
"tablet-android" to "\uf4F7",
"tablet-ipad" to "\uf4F8",
"taco" to "\uf761",
"tag" to "\uf4F9",
"tag-faces" to "\uf4FA",
"tag-heart" to "\uf68A",
"tag-minus" to "\uf90F",
"tag-multiple" to "\uf4FB",
"tag-outline" to "\uf4FC",
"tag-plus" to "\uf721",
"tag-remove" to "\uf722",
"tag-text-outline" to "\uf4FD",
"target" to "\uf4FE",
"taxi" to "\uf4FF",
"teach" to "\uf88F",
"teamviewer" to "\uf500",
"telegram" to "\uf501",
"television" to "\uf502",
"television-box" to "\uf838",
"television-classic" to "\uf7F3",
"television-classic-off" to "\uf839",
"television-guide" to "\uf503",
"television-off" to "\uf83A",
"temperature-celsius" to "\uf504",
"temperature-fahrenheit" to "\uf505",
"temperature-kelvin" to "\uf506",
"tennis" to "\uf507",
"tent" to "\uf508",
"terrain" to "\uf509",
"test-tube" to "\uf668",
"test-tube-empty" to "\uf910",
"test-tube-off" to "\uf911",
"text-shadow" to "\uf669",
"text-to-speech" to "\uf50A",
"text-to-speech-off" to "\uf50B",
"textbox" to "\uf60E",
"textbox-password" to "\uf7F4",
"texture" to "\uf50C",
"theater" to "\uf50D",
"theme-light-dark" to "\uf50E",
"thermometer" to "\uf50F",
"thermometer-lines" to "\uf510",
"thermostat" to "\uf393",
"thermostat-box" to "\uf890",
"thought-bubble" to "\uf7F5",
"thought-bubble-outline" to "\uf7F6",
"thumb-down" to "\uf511",
"thumb-down-outline" to "\uf512",
"thumb-up" to "\uf513",
"thumb-up-outline" to "\uf514",
"thumbs-up-down" to "\uf515",
"ticket" to "\uf516",
"ticket-account" to "\uf517",
"ticket-confirmation" to "\uf518",
"ticket-outline" to "\uf912",
"ticket-percent" to "\uf723",
"tie" to "\uf519",
"tilde" to "\uf724",
"timelapse" to "\uf51A",
"timer" to "\uf51B",
"timer-10" to "\uf51C",
"timer-3" to "\uf51D",
"timer-off" to "\uf51E",
"timer-sand" to "\uf51F",
"timer-sand-empty" to "\uf6AC",
"timer-sand-full" to "\uf78B",
"timetable" to "\uf520",
"toggle-switch" to "\uf521",
"toggle-switch-off" to "\uf522",
"tooltip" to "\uf523",
"tooltip-edit" to "\uf524",
"tooltip-image" to "\uf525",
"tooltip-outline" to "\uf526",
"tooltip-outline-plus" to "\uf527",
"tooltip-text" to "\uf528",
"tooth" to "\uf8C2",
"tooth-outline" to "\uf529",
"tor" to "\uf52A",
"tower-beach" to "\uf680",
"tower-fire" to "\uf681",
"towing" to "\uf83B",
"track-light" to "\uf913",
"trackpad" to "\uf7F7",
"trackpad-lock" to "\uf932",
"tractor" to "\uf891",
"traffic-light" to "\uf52B",
"train" to "\uf52C",
"train-variant" to "\uf8C3",
"tram" to "\uf52D",
"transcribe" to "\uf52E",
"transcribe-close" to "\uf52F",
"transfer" to "\uf530",
"transit-transfer" to "\uf6AD",
"transition" to "\uf914",
"transition-masked" to "\uf915",
"translate" to "\uf5CA",
"treasure-chest" to "\uf725",
"tree" to "\uf531",
"trello" to "\uf532",
"trending-down" to "\uf533",
"trending-neutral" to "\uf534",
"trending-up" to "\uf535",
"triangle" to "\uf536",
"triangle-outline" to "\uf537",
"trophy" to "\uf538",
"trophy-award" to "\uf539",
"trophy-outline" to "\uf53A",
"trophy-variant" to "\uf53B",
"trophy-variant-outline" to "\uf53C",
"truck" to "\uf53D",
"truck-delivery" to "\uf53E",
"truck-fast" to "\uf787",
"truck-trailer" to "\uf726",
"tshirt-crew" to "\uf53F",
"tshirt-v" to "\uf540",
"tumble-dryer" to "\uf916",
"tumblr" to "\uf541",
"tumblr-box" to "\uf917",
"tumblr-reblog" to "\uf542",
"tune" to "\uf62E",
"tune-vertical" to "\uf66A",
"twitch" to "\uf543",
"twitter" to "\uf544",
"twitter-box" to "\uf545",
"twitter-circle" to "\uf546",
"twitter-retweet" to "\uf547",
"uber" to "\uf748",
"ubuntu" to "\uf548",
"ultra-high-definition" to "\uf7F8",
"umbraco" to "\uf549",
"umbrella" to "\uf54A",
"umbrella-outline" to "\uf54B",
"undo" to "\uf54C",
"undo-variant" to "\uf54D",
"unfold-less-horizontal" to "\uf54E",
"unfold-less-vertical" to "\uf75F",
"unfold-more-horizontal" to "\uf54F",
"unfold-more-vertical" to "\uf760",
"ungroup" to "\uf550",
"unity" to "\uf6AE",
"untappd" to "\uf551",
"update" to "\uf6AF",
"upload" to "\uf552",
"upload-multiple" to "\uf83C",
"upload-network" to "\uf6F5",
"usb" to "\uf553",
"van-passenger" to "\uf7F9",
"van-utility" to "\uf7FA",
"vanish" to "\uf7FB",
"vector-arrange-above" to "\uf554",
"vector-arrange-below" to "\uf555",
"vector-circle" to "\uf556",
"vector-circle-variant" to "\uf557",
"vector-combine" to "\uf558",
"vector-curve" to "\uf559",
"vector-difference" to "\uf55A",
"vector-difference-ab" to "\uf55B",
"vector-difference-ba" to "\uf55C",
"vector-ellipse" to "\uf892",
"vector-intersection" to "\uf55D",
"vector-line" to "\uf55E",
"vector-point" to "\uf55F",
"vector-polygon" to "\uf560",
"vector-polyline" to "\uf561",
"vector-radius" to "\uf749",
"vector-rectangle" to "\uf5C6",
"vector-selection" to "\uf562",
"vector-square" to "\uf001",
"vector-triangle" to "\uf563",
"vector-union" to "\uf564",
"venmo" to "\uf578",
"verified" to "\uf565",
"vibrate" to "\uf566",
"video" to "\uf567",
"video-3d" to "\uf7FC",
"video-4k-box" to "\uf83D",
"video-account" to "\uf918",
"video-image" to "\uf919",
"video-input-antenna" to "\uf83E",
"video-input-component" to "\uf83F",
"video-input-hdmi" to "\uf840",
"video-input-svideo" to "\uf841",
"video-off" to "\uf568",
"video-stabilization" to "\uf91A",
"video-switch" to "\uf569",
"view-agenda" to "\uf56A",
"view-array" to "\uf56B",
"view-carousel" to "\uf56C",
"view-column" to "\uf56D",
"view-dashboard" to "\uf56E",
"view-dashboard-variant" to "\uf842",
"view-day" to "\uf56F",
"view-grid" to "\uf570",
"view-headline" to "\uf571",
"view-list" to "\uf572",
"view-module" to "\uf573",
"view-parallel" to "\uf727",
"view-quilt" to "\uf574",
"view-sequential" to "\uf728",
"view-stream" to "\uf575",
"view-week" to "\uf576",
"vimeo" to "\uf577",
"violin" to "\uf60F",
"virtual-reality" to "\uf893",
"visualstudio" to "\uf610",
"vk" to "\uf579",
"vk-box" to "\uf57A",
"vk-circle" to "\uf57B",
"vlc" to "\uf57C",
"voice" to "\uf5CB",
"voicemail" to "\uf57D",
"volume-high" to "\uf57E",
"volume-low" to "\uf57F",
"volume-medium" to "\uf580",
"volume-minus" to "\uf75D",
"volume-mute" to "\uf75E",
"volume-off" to "\uf581",
"volume-plus" to "\uf75C",
"vpn" to "\uf582",
"vuejs" to "\uf843",
"walk" to "\uf583",
"wall" to "\uf7FD",
"wall-sconce" to "\uf91B",
"wall-sconce-flat" to "\uf91C",
"wall-sconce-variant" to "\uf91D",
"wallet" to "\uf584",
"wallet-giftcard" to "\uf585",
"wallet-membership" to "\uf586",
"wallet-travel" to "\uf587",
"wan" to "\uf588",
"washing-machine" to "\uf729",
"watch" to "\uf589",
"watch-export" to "\uf58A",
"watch-export-variant" to "\uf894",
"watch-import" to "\uf58B",
"watch-import-variant" to "\uf895",
"watch-variant" to "\uf896",
"watch-vibrate" to "\uf6B0",
"water" to "\uf58C",
"water-off" to "\uf58D",
"water-percent" to "\uf58E",
"water-pump" to "\uf58F",
"watermark" to "\uf612",
"waves" to "\uf78C",
"weather-cloudy" to "\uf590",
"weather-fog" to "\uf591",
"weather-hail" to "\uf592",
"weather-hurricane" to "\uf897",
"weather-lightning" to "\uf593",
"weather-lightning-rainy" to "\uf67D",
"weather-night" to "\uf594",
"weather-partlycloudy" to "\uf595",
"weather-pouring" to "\uf596",
"weather-rainy" to "\uf597",
"weather-snowy" to "\uf598",
"weather-snowy-rainy" to "\uf67E",
"weather-sunny" to "\uf599",
"weather-sunset" to "\uf59A",
"weather-sunset-down" to "\uf59B",
"weather-sunset-up" to "\uf59C",
"weather-windy" to "\uf59D",
"weather-windy-variant" to "\uf59E",
"web" to "\uf59F",
"webcam" to "\uf5A0",
"webhook" to "\uf62F",
"webpack" to "\uf72A",
"wechat" to "\uf611",
"weight" to "\uf5A1",
"weight-kilogram" to "\uf5A2",
"whatsapp" to "\uf5A3",
"wheelchair-accessibility" to "\uf5A4",
"white-balance-auto" to "\uf5A5",
"white-balance-incandescent" to "\uf5A6",
"white-balance-iridescent" to "\uf5A7",
"white-balance-sunny" to "\uf5A8",
"widgets" to "\uf72B",
"wifi" to "\uf5A9",
"wifi-off" to "\uf5AA",
"wifi-strength-1" to "\uf91E",
"wifi-strength-1-alert" to "\uf91F",
"wifi-strength-1-lock" to "\uf920",
"wifi-strength-2" to "\uf921",
"wifi-strength-2-alert" to "\uf922",
"wifi-strength-2-lock" to "\uf923",
"wifi-strength-3" to "\uf924",
"wifi-strength-3-alert" to "\uf925",
"wifi-strength-3-lock" to "\uf926",
"wifi-strength-4" to "\uf927",
"wifi-strength-4-alert" to "\uf928",
"wifi-strength-4-lock" to "\uf929",
"wifi-strength-alert-outline" to "\uf92A",
"wifi-strength-lock-outline" to "\uf92B",
"wifi-strength-off" to "\uf92C",
"wifi-strength-off-outline" to "\uf92D",
"wifi-strength-outline" to "\uf92E",
"wii" to "\uf5AB",
"wiiu" to "\uf72C",
"wikipedia" to "\uf5AC",
"window-close" to "\uf5AD",
"window-closed" to "\uf5AE",
"window-maximize" to "\uf5AF",
"window-minimize" to "\uf5B0",
"window-open" to "\uf5B1",
"window-restore" to "\uf5B2",
"windows" to "\uf5B3",
"wordpress" to "\uf5B4",
"worker" to "\uf5B5",
"wrap" to "\uf5B6",
"wrench" to "\uf5B7",
"wunderlist" to "\uf5B8",
"xamarin" to "\uf844",
"xamarin-outline" to "\uf845",
"xaml" to "\uf673",
"xbox" to "\uf5B9",
"xbox-controller" to "\uf5BA",
"xbox-controller-battery-alert" to "\uf74A",
"xbox-controller-battery-empty" to "\uf74B",
"xbox-controller-battery-full" to "\uf74C",
"xbox-controller-battery-low" to "\uf74D",
"xbox-controller-battery-medium" to "\uf74E",
"xbox-controller-battery-unknown" to "\uf74F",
"xbox-controller-off" to "\uf5BB",
"xda" to "\uf5BC",
"xing" to "\uf5BD",
"xing-box" to "\uf5BE",
"xing-circle" to "\uf5BF",
"xml" to "\uf5C0",
"xmpp" to "\uf7FE",
"yammer" to "\uf788",
"yeast" to "\uf5C1",
"yelp" to "\uf5C2",
"yin-yang" to "\uf67F",
"youtube" to "\uf5C3",
"youtube-creator-studio" to "\uf846",
"youtube-gaming" to "\uf847",
"youtube-tv" to "\uf448",
"zip-box" to "\uf5C4"
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment