Skip to content

Instantly share code, notes, and snippets.

@balloob
Created December 26, 2019 11:02
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 balloob/a49861771c1a155058033e029e121d10 to your computer and use it in GitHub Desktop.
Save balloob/a49861771c1a155058033e029e121d10 to your computer and use it in GitHub Desktop.
Icon finder
const path = require("path");
const fs = require("fs");
const ICON_PACKAGE_PATH = path.resolve("./node_modules/@mdi/svg/");
const META_PATH = path.resolve(ICON_PACKAGE_PATH, "meta.json");
const ICON_PATH = path.resolve(ICON_PACKAGE_PATH, "svg");
// Print icons + sizes to create sizes.json
// const getPath = (icon) => {
// const svg = fs.readFileSync(`${ICON_PATH}/${icon}.svg`, {
// encoding,
// });
// return svg.match(/ d="([^"]+)"/)[1];
// };
// const meta = require(META_PATH);
// console.log(
// Object.fromEntries(meta.map((icon) => [icon.name, getPath(icon.name).length]))
// );
const sizes = require("./sizes.json");
const chunks = [];
const CHUNK_SIZE = 20000;
let curSize = 0;
let startKey;
let icons = [];
Object.entries(sizes).forEach(([icon, size]) => {
if (startKey === undefined) {
startKey = icon;
}
curSize += size;
icons.push(icon);
if (curSize > CHUNK_SIZE) {
chunks.push({
startKey,
endKey: icon,
size: curSize,
icons,
});
curSize = 0;
startKey = undefined;
icons = [];
}
});
chunks.push({
startKey,
endKey: undefined,
size: curSize,
icons,
});
// Minify keys.
const findDifferentiator = (curString, prevString) => {
for (let i = 0; i < curString.length; i++) {
if (curString[i] !== prevString[i]) {
return curString.substring(0, i + 1);
}
}
console.error("Cannot find differentiator", curString, prevString);
};
let lastEnd;
chunks.forEach((chunk) => {
if (lastEnd == undefined) {
chunk.startKey = undefined;
chunk.startKeyCompressed = undefined;
} else {
chunk.startKeyCompressed = findDifferentiator(chunk.startKey, lastEnd);
}
lastEnd = chunk.endKey;
});
console.log(JSON.stringify(chunks, null, 4));
const findIconChunk = (icon) => {
let lastChunk;
for (const chunk of chunks) {
if (
chunk.startKeyCompressed !== undefined &&
icon < chunk.startKeyCompressed
) {
break;
}
lastChunk = chunk;
}
return lastChunk;
};
[
"account-badge-horizontal",
"alpha-e-box",
"apple-finder",
"phone-bluetooth",
"yelp",
].forEach((icon) => console.log(icon, findIconChunk(icon).icons));
{
"ab-testing": 243,
"access-point": 641,
"access-point-network": 738,
"access-point-network-off": 900,
"account": 126,
"account-alert": 161,
"account-alert-outline": 330,
"account-arrow-left": 221,
"account-arrow-left-outline": 390,
"account-arrow-right": 221,
"account-arrow-right-outline": 390,
"account-badge": 264,
"account-badge-alert": 295,
"account-badge-alert-outline": 303,
"account-badge-horizontal": 276,
"account-badge-horizontal-outline": 285,
"account-badge-outline": 272,
"account-box": 194,
"account-box-multiple": 230,
"account-box-multiple-outline": 314,
"account-box-outline": 273,
"account-card-details": 274,
"account-card-details-outline": 348,
"account-cash": 379,
"account-cash-outline": 431,
"account-check": 196,
"account-check-outline": 332,
"account-child": 555,
"account-child-circle": 630,
"account-child-outline": 687,
"account-circle": 254,
"account-circle-outline": 578,
"account-clock": 609,
"account-clock-outline": 551,
"account-convert": 322,
"account-details": 275,
"account-edit": 317,
"account-edit-outline": 457,
"account-group": 576,
"account-group-outline": 970,
"account-heart": 271,
"account-heart-outline": 458,
"account-key": 300,
"account-key-outline": 485,
"account-lock": 418,
"account-lock-outline": 521,
"account-minus": 142,
"account-minus-outline": 324,
"account-multiple": 241,
"account-multiple-check": 294,
"account-multiple-check-outline": 396,
"account-multiple-minus": 237,
"account-multiple-minus-outline": 339,
"account-multiple-outline": 342,
"account-multiple-plus": 256,
"account-multiple-plus-outline": 358,
"account-multiple-remove": 495,
"account-multiple-remove-outline": 637,
"account-network": 251,
"account-network-outline": 409,
"account-off": 240,
"account-off-outline": 391,
"account-outline": 270,
"account-plus": 161,
"account-plus-outline": 342,
"account-question": 392,
"account-question-outline": 554,
"account-remove": 251,
"account-remove-outline": 434,
"account-search": 461,
"account-search-outline": 598,
"account-settings": 177,
"account-settings-outline": 319,
"account-star": 230,
"account-star-outline": 410,
"account-supervisor": 322,
"account-supervisor-circle": 614,
"account-supervisor-outline": 469,
"account-switch": 324,
"account-tie": 313,
"account-tie-outline": 467,
"accusoft": 1273,
"adchoices": 440,
"adjust": 236,
"adobe": 98,
"adobe-acrobat": 1118,
"air-conditioner": 687,
"air-filter": 1271,
"air-horn": 398,
"air-humidifier": 337,
"air-purifier": 340,
"airbag": 386,
"airballoon": 467,
"airballoon-outline": 750,
"airplane": 128,
"airplane-landing": 221,
"airplane-off": 218,
"airplane-takeoff": 237,
"airplay": 111,
"airport": 236,
"alarm": 279,
"alarm-bell": 432,
"alarm-check": 310,
"alarm-light": 247,
"alarm-light-outline": 291,
"alarm-multiple": 451,
"alarm-note": 439,
"alarm-note-off": 684,
"alarm-off": 506,
"alarm-plus": 259,
"alarm-snooze": 278,
"album": 256,
"alert": 49,
"alert-box": 110,
"alert-box-outline": 127,
"alert-circle": 105,
"alert-circle-check": 294,
"alert-circle-check-outline": 377,
"alert-circle-outline": 179,
"alert-decagram": 232,
"alert-decagram-outline": 425,
"alert-octagon": 173,
"alert-octagon-outline": 156,
"alert-octagram": 204,
"alert-octagram-outline": 351,
"alert-outline": 62,
"alert-rhombus": 189,
"alert-rhombus-outline": 221,
"alien": 481,
"alien-outline": 574,
"align-horizontal-center": 62,
"align-horizontal-left": 44,
"align-horizontal-right": 48,
"align-vertical-bottom": 50,
"align-vertical-center": 61,
"align-vertical-top": 47,
"all-inclusive": 560,
"allergy": 521,
"alpha": 740,
"alpha-a": 74,
"alpha-a-box": 153,
"alpha-a-box-outline": 167,
"alpha-a-circle": 149,
"alpha-a-circle-outline": 217,
"alpha-b": 138,
"alpha-b-box": 212,
"alpha-b-box-outline": 231,
"alpha-b-circle": 213,
"alpha-b-circle-outline": 280,
"alpha-c": 101,
"alpha-c-box": 175,
"alpha-c-box-outline": 194,
"alpha-c-circle": 176,
"alpha-c-circle-outline": 243,
"alpha-d": 62,
"alpha-d-box": 136,
"alpha-d-box-outline": 155,
"alpha-d-circle": 137,
"alpha-d-circle-outline": 204,
"alpha-e": 38,
"alpha-e-box": 112,
"alpha-e-box-outline": 131,
"alpha-e-circle": 113,
"alpha-e-circle-outline": 180,
"alpha-f": 32,
"alpha-f-box": 106,
"alpha-f-box-outline": 125,
"alpha-f-circle": 107,
"alpha-f-circle-outline": 174,
"alpha-g": 80,
"alpha-g-box": 154,
"alpha-g-box-outline": 173,
"alpha-g-circle": 155,
"alpha-g-circle-outline": 222,
"alpha-h": 38,
"alpha-h-box": 112,
"alpha-h-box-outline": 131,
"alpha-h-circle": 113,
"alpha-h-circle-outline": 180,
"alpha-i": 39,
"alpha-i-box": 113,
"alpha-i-box-outline": 127,
"alpha-i-circle": 114,
"alpha-i-circle-outline": 181,
"alpha-j": 60,
"alpha-j-box": 134,
"alpha-j-box-outline": 148,
"alpha-j-circle": 135,
"alpha-j-circle-outline": 202,
"alpha-k": 53,
"alpha-k-box": 127,
"alpha-k-box-outline": 141,
"alpha-k-circle": 128,
"alpha-k-circle-outline": 195,
"alpha-l": 21,
"alpha-l-box": 95,
"alpha-l-box-outline": 109,
"alpha-l-circle": 96,
"alpha-l-circle-outline": 163,
"alpha-m": 65,
"alpha-m-box": 139,
"alpha-m-box-outline": 153,
"alpha-m-circle": 140,
"alpha-m-circle-outline": 207,
"alpha-n": 38,
"alpha-n-box": 112,
"alpha-n-box-outline": 126,
"alpha-n-circle": 113,
"alpha-n-circle-outline": 180,
"alpha-o": 94,
"alpha-o-box": 168,
"alpha-o-box-outline": 182,
"alpha-o-circle": 169,
"alpha-o-circle-outline": 236,
"alpha-p": 68,
"alpha-p-box": 142,
"alpha-p-box-outline": 156,
"alpha-p-circle": 143,
"alpha-p-circle-outline": 210,
"alpha-q": 100,
"alpha-q-box": 174,
"alpha-q-box-outline": 188,
"alpha-q-circle": 175,
"alpha-q-circle-outline": 242,
"alpha-r": 101,
"alpha-r-box": 175,
"alpha-r-box-outline": 189,
"alpha-r-circle": 176,
"alpha-r-circle-outline": 249,
"alpha-s": 101,
"alpha-s-box": 175,
"alpha-s-box-outline": 189,
"alpha-s-circle": 176,
"alpha-s-circle-outline": 243,
"alpha-t": 25,
"alpha-t-box": 99,
"alpha-t-box-outline": 113,
"alpha-t-circle": 100,
"alpha-t-circle-outline": 167,
"alpha-u": 58,
"alpha-u-box": 132,
"alpha-u-box-outline": 146,
"alpha-u-circle": 133,
"alpha-u-circle-outline": 200,
"alpha-v": 35,
"alpha-v-box": 109,
"alpha-v-box-outline": 123,
"alpha-v-circle": 110,
"alpha-v-circle-outline": 177,
"alpha-w": 68,
"alpha-w-box": 142,
"alpha-w-box-outline": 156,
"alpha-w-circle": 143,
"alpha-w-circle-outline": 210,
"alpha-x": 64,
"alpha-x-box": 138,
"alpha-x-box-outline": 152,
"alpha-x-circle": 139,
"alpha-x-circle-outline": 206,
"alpha-y": 41,
"alpha-y-box": 115,
"alpha-y-box-outline": 129,
"alpha-y-circle": 116,
"alpha-y-circle-outline": 183,
"alpha-z": 36,
"alpha-z-box": 110,
"alpha-z-box-outline": 124,
"alpha-z-circle": 111,
"alpha-z-circle-outline": 178,
"alphabetical": 226,
"alphabetical-off": 336,
"alphabetical-variant": 295,
"alphabetical-variant-off": 369,
"altimeter": 137,
"amazon": 1110,
"amazon-alexa": 250,
"amazon-drive": 375,
"ambulance": 363,
"ammunition": 282,
"ampersand": 778,
"amplifier": 369,
"amplifier-off": 429,
"anchor": 333,
"android": 596,
"android-auto": 339,
"android-debug-bridge": 363,
"android-head": 496,
"android-messages": 440,
"android-studio": 494,
"angle-acute": 189,
"angle-obtuse": 212,
"angle-right": 42,
"angular": 159,
"angularjs": 217,
"animation": 187,
"animation-outline": 165,
"animation-play": 208,
"animation-play-outline": 186,
"ansible": 349,
"antenna": 698,
"anvil": 106,
"apache-kafka": 1392,
"api": 165,
"api-off": 235,
"apple": 529,
"apple-finder": 919,
"apple-icloud": 315,
"apple-ios": 212,
"apple-keyboard-caps": 100,
"apple-keyboard-command": 457,
"apple-keyboard-control": 72,
"apple-keyboard-option": 57,
"apple-keyboard-shift": 69,
"apple-safari": 492,
"application": 102,
"application-export": 202,
"application-import": 180,
"approximately-equal": 452,
"approximately-equal-box": 565,
"apps": 123,
"apps-box": 219,
"arch": 460,
"archive": 93,
"archive-arrow-down": 61,
"archive-arrow-down-outline": 85,
"archive-arrow-up": 52,
"archive-arrow-up-outline": 85,
"archive-outline": 126,
"arm-flex": 146,
"arm-flex-outline": 456,
"arrange-bring-forward": 48,
"arrange-bring-to-front": 77,
"arrange-send-backward": 50,
"arrange-send-to-back": 96,
"arrow-all": 245,
"arrow-bottom-left": 51,
"arrow-bottom-left-bold-outline": 158,
"arrow-bottom-left-thick": 76,
"arrow-bottom-right": 50,
"arrow-bottom-right-bold-outline": 156,
"arrow-bottom-right-thick": 77,
"arrow-collapse": 110,
"arrow-collapse-all": 229,
"arrow-collapse-down": 103,
"arrow-collapse-horizontal": 102,
"arrow-collapse-left": 98,
"arrow-collapse-right": 102,
"arrow-collapse-up": 97,
"arrow-collapse-vertical": 89,
"arrow-decision": 398,
"arrow-decision-auto": 368,
"arrow-decision-auto-outline": 433,
"arrow-decision-outline": 463,
"arrow-down": 71,
"arrow-down-bold": 38,
"arrow-down-bold-box": 106,
"arrow-down-bold-box-outline": 120,
"arrow-down-bold-circle": 107,
"arrow-down-bold-circle-outline": 174,
"arrow-down-bold-hexagon-outline": 372,
"arrow-down-bold-outline": 62,
"arrow-down-box": 150,
"arrow-down-circle": 147,
"arrow-down-circle-outline": 215,
"arrow-down-drop-circle": 95,
"arrow-down-drop-circle-outline": 162,
"arrow-down-thick": 69,
"arrow-expand": 114,
"arrow-expand-all": 234,
"arrow-expand-down": 85,
"arrow-expand-horizontal": 74,
"arrow-expand-left": 84,
"arrow-expand-right": 84,
"arrow-expand-up": 83,
"arrow-expand-vertical": 72,
"arrow-horizontal-lock": 254,
"arrow-left": 70,
"arrow-left-bold": 39,
"arrow-left-bold-box": 106,
"arrow-left-bold-box-outline": 121,
"arrow-left-bold-circle": 107,
"arrow-left-bold-circle-outline": 175,
"arrow-left-bold-hexagon-outline": 371,
"arrow-left-bold-outline": 61,
"arrow-left-box": 148,
"arrow-left-circle": 147,
"arrow-left-circle-outline": 214,
"arrow-left-drop-circle": 95,
"arrow-left-drop-circle-outline": 163,
"arrow-left-right": 139,
"arrow-left-right-bold": 43,
"arrow-left-right-bold-outline": 87,
"arrow-left-thick": 72,
"arrow-right": 71,
"arrow-right-bold": 39,
"arrow-right-bold-box": 107,
"arrow-right-bold-box-outline": 122,
"arrow-right-bold-circle": 107,
"arrow-right-bold-circle-outline": 174,
"arrow-right-bold-hexagon-outline": 372,
"arrow-right-bold-outline": 61,
"arrow-right-box": 153,
"arrow-right-circle": 147,
"arrow-right-circle-outline": 215,
"arrow-right-drop-circle": 96,
"arrow-right-drop-circle-outline": 163,
"arrow-right-thick": 69,
"arrow-split-horizontal": 80,
"arrow-split-vertical": 81,
"arrow-top-left": 52,
"arrow-top-left-bold-outline": 159,
"arrow-top-left-bottom-right": 61,
"arrow-top-left-bottom-right-bold": 85,
"arrow-top-left-thick": 78,
"arrow-top-right": 51,
"arrow-top-right-bold-outline": 162,
"arrow-top-right-bottom-left": 61,
"arrow-top-right-bottom-left-bold": 86,
"arrow-top-right-thick": 76,
"arrow-up": 70,
"arrow-up-bold": 40,
"arrow-up-bold-box": 107,
"arrow-up-bold-box-outline": 123,
"arrow-up-bold-circle": 107,
"arrow-up-bold-circle-outline": 175,
"arrow-up-bold-hexagon-outline": 371,
"arrow-up-bold-outline": 61,
"arrow-up-box": 151,
"arrow-up-circle": 147,
"arrow-up-circle-outline": 214,
"arrow-up-down": 140,
"arrow-up-down-bold": 43,
"arrow-up-down-bold-outline": 88,
"arrow-up-drop-circle": 96,
"arrow-up-drop-circle-outline": 164,
"arrow-up-thick": 72,
"arrow-vertical-lock": 275,
"artist": 492,
"artist-outline": 457,
"artstation": 251,
"aspect-ratio": 134,
"assistant": 157,
"asterisk": 174,
"at": 928,
"atlassian": 446,
"atm": 203,
"atom": 1176,
"atom-variant": 870,
"attachment": 278,
"audio-video": 316,
"audio-video-off": 396,
"audiobook": 197,
"augmented-reality": 300,
"auto-fix": 423,
"auto-upload": 126,
"autorenew": 234,
"av-timer": 407,
"aws": 3697,
"axe": 93,
"axis": 78,
"axis-arrow": 146,
"axis-arrow-lock": 392,
"axis-lock": 311,
"axis-x-arrow": 106,
"axis-x-arrow-lock": 380,
"axis-x-rotate-clockwise": 419,
"axis-x-rotate-counterclockwise": 426,
"axis-x-y-arrow-lock": 378,
"axis-y-arrow": 111,
"axis-y-arrow-lock": 339,
"axis-y-rotate-clockwise": 433,
"axis-y-rotate-counterclockwise": 413,
"axis-z-arrow": 87,
"axis-z-arrow-lock": 319,
"axis-z-rotate-clockwise": 304,
"axis-z-rotate-counterclockwise": 308,
"azure": 108,
"azure-devops": 132,
"babel": 1564,
"baby": 360,
"baby-bottle": 487,
"baby-bottle-outline": 919,
"baby-carriage": 465,
"baby-carriage-off": 474,
"baby-face": 743,
"baby-face-outline": 695,
"backburger": 88,
"backspace": 212,
"backspace-outline": 247,
"backspace-reverse": 193,
"backspace-reverse-outline": 249,
"backup-restore": 245,
"bacteria": 989,
"bacteria-outline": 1166,
"badminton": 1222,
"bag-carry-on": 373,
"bag-carry-on-check": 287,
"bag-carry-on-off": 345,
"bag-checked": 419,
"bag-personal": 180,
"bag-personal-off": 263,
"bag-personal-off-outline": 341,
"bag-personal-outline": 225,
"baguette": 651,
"balloon": 194,
"ballot": 183,
"ballot-outline": 202,
"ballot-recount": 517,
"ballot-recount-outline": 516,
"bandage": 806,
"bandcamp": 25,
"bank": 77,
"bank-minus": 215,
"bank-outline": 145,
"bank-plus": 239,
"bank-remove": 341,
"bank-transfer": 184,
"bank-transfer-in": 132,
"bank-transfer-out": 127,
"barcode": 105,
"barcode-off": 351,
"barcode-scan": 229,
"barley": 818,
"barley-off": 865,
"barn": 140,
"barrel": 136,
"baseball": 1055,
"baseball-bat": 448,
"basecamp": 279,
"bash": 214,
"basket": 317,
"basket-fill": 251,
"basket-outline": 369,
"basket-unfill": 253,
"basketball": 1105,
"basketball-hoop": 194,
"basketball-hoop-outline": 200,
"bat": 284,
"battery": 132,
"battery-10": 145,
"battery-10-bluetooth": 333,
"battery-20": 145,
"battery-20-bluetooth": 333,
"battery-30": 145,
"battery-30-bluetooth": 333,
"battery-40": 145,
"battery-40-bluetooth": 333,
"battery-50": 145,
"battery-50-bluetooth": 333,
"battery-60": 145,
"battery-60-bluetooth": 333,
"battery-70": 145,
"battery-70-bluetooth": 333,
"battery-80": 144,
"battery-80-bluetooth": 332,
"battery-90": 144,
"battery-90-bluetooth": 332,
"battery-alert": 161,
"battery-alert-bluetooth": 347,
"battery-alert-variant": 163,
"battery-alert-variant-outline": 175,
"battery-bluetooth": 319,
"battery-bluetooth-variant": 342,
"battery-charging": 157,
"battery-charging-10": 210,
"battery-charging-100": 157,
"battery-charging-20": 211,
"battery-charging-30": 176,
"battery-charging-40": 170,
"battery-charging-50": 170,
"battery-charging-60": 176,
"battery-charging-70": 176,
"battery-charging-80": 169,
"battery-charging-90": 169,
"battery-charging-high": 220,
"battery-charging-low": 182,
"battery-charging-medium": 205,
"battery-charging-outline": 210,
"battery-charging-wireless": 291,
"battery-charging-wireless-10": 311,
"battery-charging-wireless-20": 307,
"battery-charging-wireless-30": 307,
"battery-charging-wireless-40": 311,
"battery-charging-wireless-50": 307,
"battery-charging-wireless-60": 311,
"battery-charging-wireless-70": 307,
"battery-charging-wireless-80": 305,
"battery-charging-wireless-90": 309,
"battery-charging-wireless-alert": 320,
"battery-charging-wireless-outline": 307,
"battery-heart": 308,
"battery-heart-outline": 312,
"battery-heart-variant": 318,
"battery-high": 198,
"battery-low": 159,
"battery-medium": 183,
"battery-minus": 145,
"battery-negative": 167,
"battery-off": 179,
"battery-off-outline": 215,
"battery-outline": 145,
"battery-plus": 172,
"battery-positive": 190,
"battery-unknown": 387,
"battery-unknown-bluetooth": 551,
"battlenet": 1896,
"beach": 389,
"beaker": 157,
"beaker-alert": 208,
"beaker-alert-outline": 200,
"beaker-check": 278,
"beaker-check-outline": 274,
"beaker-minus": 222,
"beaker-minus-outline": 192,
"beaker-outline": 145,
"beaker-plus": 246,
"beaker-plus-outline": 242,
"beaker-question": 467,
"beaker-question-outline": 462,
"beaker-remove": 348,
"beaker-remove-outline": 344,
"beats": 246,
"bed-double": 154,
"bed-double-outline": 257,
"bed-empty": 51,
"bed-king": 254,
"bed-king-outline": 167,
"bed-queen": 140,
"bed-queen-outline": 153,
"bed-single": 161,
"bed-single-outline": 171,
"bee": 836,
"bee-flower": 1409,
"beehive-outline": 898,
"beer": 111,
"behance": 1309,
"bell": 190,
"bell-alert": 192,
"bell-alert-outline": 237,
"bell-check": 349,
"bell-check-outline": 383,
"bell-circle": 319,
"bell-circle-outline": 386,
"bell-off": 291,
"bell-off-outline": 393,
"bell-outline": 225,
"bell-plus": 241,
"bell-plus-outline": 275,
"bell-ring": 333,
"bell-ring-outline": 381,
"bell-sleep": 242,
"bell-sleep-outline": 286,
"beta": 687,
"betamax": 221,
"biathlon": 696,
"bible": 160,
"bicycle": 720,
"bicycle-basket": 801,
"bike": 600,
"bike-fast": 857,
"billboard": 201,
"billiards": 364,
"billiards-rack": 887,
"bing": 83,
"binoculars": 188,
"bio": 243,
"biohazard": 1242,
"bitbucket": 213,
"bitcoin": 254,
"black-mesa": 184,
"blackberry": 663,
"blender": 317,
"blender-software": 1388,
"blinds": 281,
"blinds-open": 353,
"block-helper": 245,
"blogger": 367,
"blood-bag": 362,
"bluetooth": 165,
"bluetooth-audio": 392,
"bluetooth-connect": 203,
"bluetooth-off": 184,
"bluetooth-settings": 222,
"bluetooth-transfer": 239,
"blur": 1916,
"blur-linear": 974,
"blur-off": 1737,
"blur-radial": 1160,
"bolnisi-cross": 768,
"bolt": 182,
"bomb": 418,
"bomb-off": 499,
"bone": 359,
"book": 101,
"book-information-variant": 653,
"book-lock": 201,
"book-lock-open": 189,
"book-minus": 117,
"book-minus-multiple": 164,
"book-multiple": 132,
"book-open": 139,
"book-open-outline": 170,
"book-open-page-variant": 451,
"book-open-variant": 496,
"book-outline": 114,
"book-play": 282,
"book-play-outline": 129,
"book-plus": 141,
"book-plus-multiple": 170,
"book-remove": 243,
"book-remove-multiple": 272,
"book-search": 419,
"book-search-outline": 415,
"book-variant": 100,
"book-variant-multiple": 140,
"bookmark": 59,
"bookmark-check": 115,
"bookmark-minus": 70,
"bookmark-minus-outline": 104,
"bookmark-multiple": 109,
"bookmark-multiple-outline": 139,
"bookmark-music": 152,
"bookmark-off": 138,
"bookmark-off-outline": 181,
"bookmark-outline": 84,
"bookmark-plus": 94,
"bookmark-plus-outline": 122,
"bookmark-remove": 190,
"bookshelf": 71,
"boom-gate": 318,
"boom-gate-alert": 461,
"boom-gate-alert-outline": 511,
"boom-gate-down": 457,
"boom-gate-down-outline": 532,
"boom-gate-outline": 368,
"boom-gate-up": 457,
"boom-gate-up-outline": 511,
"boombox": 565,
"boomerang": 155,
"bootstrap": 326,
"border-all": 72,
"border-all-variant": 30,
"border-bottom": 223,
"border-bottom-variant": 149,
"border-color": 137,
"border-horizontal": 223,
"border-inside": 191,
"border-left": 234,
"border-left-variant": 164,
"border-none": 278,
"border-none-variant": 208,
"border-outside": 98,
"border-right": 222,
"border-right-variant": 152,
"border-style": 116,
"border-top": 231,
"border-top-variant": 161,
"border-vertical": 221,
"bottle-soda": 135,
"bottle-soda-classic": 157,
"bottle-soda-outline": 218,
"bottle-tonic": 95,
"bottle-tonic-outline": 158,
"bottle-tonic-plus": 135,
"bottle-tonic-plus-outline": 199,
"bottle-tonic-skull": 454,
"bottle-tonic-skull-outline": 516,
"bottle-wine": 136,
"bow-tie": 62,
"bowl": 81,
"bowling": 367,
"box": 1319,
"box-cutter": 335,
"box-shadow": 171,
"boxing-glove": 181,
"braille": 592,
"brain": 2158,
"bread-slice": 122,
"bread-slice-outline": 239,
"bridge": 334,
"briefcase": 143,
"briefcase-account": 304,
"briefcase-account-outline": 543,
"briefcase-check": 199,
"briefcase-clock": 225,
"briefcase-clock-outline": 497,
"briefcase-download": 175,
"briefcase-download-outline": 188,
"briefcase-edit": 379,
"briefcase-edit-outline": 345,
"briefcase-minus": 220,
"briefcase-minus-outline": 208,
"briefcase-outline": 349,
"briefcase-plus": 244,
"briefcase-plus-outline": 232,
"briefcase-remove": 346,
"briefcase-remove-outline": 334,
"briefcase-search": 466,
"briefcase-search-outline": 461,
"briefcase-upload": 173,
"briefcase-upload-outline": 187,
"brightness-1": 76,
"brightness-2": 132,
"brightness-3": 139,
"brightness-4": 251,
"brightness-5": 176,
"brightness-6": 148,
"brightness-7": 242,
"brightness-auto": 195,
"brightness-percent": 417,
"broom": 236,
"brush": 202,
"buddhism": 939,
"buffer": 1351,
"bug": 433,
"bug-check": 481,
"bug-check-outline": 622,
"bug-outline": 513,
"bugle": 342,
"bulldozer": 330,
"bullet": 100,
"bulletin-board": 188,
"bullhorn": 165,
"bullhorn-outline": 199,
"bullseye": 347,
"bullseye-arrow": 483,
"bus": 387,
"bus-alert": 790,
"bus-articulated-end": 286,
"bus-articulated-front": 415,
"bus-clock": 1319,
"bus-double-decker": 497,
"bus-marker": 440,
"bus-multiple": 571,
"bus-school": 405,
"bus-side": 400,
"bus-stop": 520,
"bus-stop-covered": 270,
"bus-stop-uncovered": 253,
"cached": 220,
"cactus": 204,
"cake": 419,
"cake-layered": 239,
"cake-variant": 590,
"calculator": 241,
"calculator-variant": 527,
"calendar": 131,
"calendar-account": 277,
"calendar-account-outline": 299,
"calendar-alert": 163,
"calendar-arrow-left": 164,
"calendar-arrow-right": 164,
"calendar-blank": 112,
"calendar-blank-multiple": 168,
"calendar-blank-outline": 128,
"calendar-check": 186,
"calendar-check-outline": 205,
"calendar-clock": 422,
"calendar-edit": 272,
"calendar-export": 141,
"calendar-heart": 324,
"calendar-import": 141,
"calendar-minus": 155,
"calendar-month": 217,
"calendar-month-outline": 231,
"calendar-multiple": 174,
"calendar-multiple-check": 236,
"calendar-multiselect": 188,
"calendar-outline": 146,
"calendar-plus": 185,
"calendar-question": 681,
"calendar-range": 164,
"calendar-range-outline": 180,
"calendar-remove": 244,
"calendar-remove-outline": 275,
"calendar-repeat": 371,
"calendar-repeat-outline": 382,
"calendar-search": 416,
"calendar-star": 205,
"calendar-text": 141,
"calendar-text-outline": 156,
"calendar-today": 123,
"calendar-week": 145,
"calendar-week-begin": 128,
"calendar-weekend": 143,
"calendar-weekend-outline": 163,
"call-made": 44,
"call-merge": 90,
"call-missed": 59,
"call-received": 42,
"call-split": 109,
"camcorder": 104,
"camcorder-box": 115,
"camcorder-box-off": 208,
"camcorder-off": 159,
"camera": 223,
"camera-account": 218,
"camera-burst": 151,
"camera-control": 496,
"camera-enhance": 230,
"camera-enhance-outline": 372,
"camera-front": 248,
"camera-front-variant": 248,
"camera-gopro": 342,
"camera-image": 165,
"camera-iris": 430,
"camera-metering-center": 432,
"camera-metering-matrix": 417,
"camera-metering-partial": 336,
"camera-metering-spot": 185,
"camera-off": 465,
"camera-outline": 273,
"camera-party-mode": 346,
"camera-plus": 304,
"camera-plus-outline": 346,
"camera-rear": 198,
"camera-rear-variant": 172,
"camera-retake": 320,
"camera-retake-outline": 365,
"camera-switch": 150,
"camera-timer": 390,
"camera-wireless": 384,
"camera-wireless-outline": 364,
"campfire": 977,
"cancel": 251,
"candle": 328,
"candycane": 367,
"cannabis": 440,
"caps-lock": 212,
"car": 369,
"car-2-plus": 422,
"car-3-plus": 450,
"car-back": 225,
"car-battery": 106,
"car-brake-abs": 979,
"car-brake-alert": 475,
"car-brake-hold": 442,
"car-brake-parking": 490,
"car-brake-retarder": 957,
"car-child-seat": 431,
"car-clutch": 104,
"car-connected": 629,
"car-convertible": 355,
"car-coolant-level": 323,
"car-cruise-control": 541,
"car-defrost-front": 1311,
"car-defrost-rear": 1178,
"car-door": 83,
"car-door-lock": 246,
"car-electric": 383,
"car-esp": 859,
"car-estate": 373,
"car-hatchback": 364,
"car-info": 266,
"car-key": 560,
"car-light-dimmed": 382,
"car-light-fog": 341,
"car-light-high": 346,
"car-limousine": 282,
"car-multiple": 563,
"car-off": 448,
"car-parking-lights": 673,
"car-pickup": 339,
"car-seat": 204,
"car-seat-cooler": 705,
"car-seat-heater": 420,
"car-shift-pattern": 130,
"car-side": 389,
"car-sports": 412,
"car-tire-alert": 309,
"car-traction-control": 658,
"car-turbocharger": 800,
"car-wash": 637,
"car-windshield": 218,
"car-windshield-outline": 338,
"caravan": 198,
"card": 77,
"card-bulleted": 139,
"card-bulleted-off": 279,
"card-bulleted-off-outline": 314,
"card-bulleted-outline": 158,
"card-bulleted-settings": 191,
"card-bulleted-settings-outline": 209,
"card-outline": 91,
"card-plus": 203,
"card-plus-outline": 133,
"card-search": 320,
"card-search-outline": 332,
"card-text": 107,
"card-text-outline": 121,
"cards": 387,
"cards-club": 324,
"cards-diamond": 22,
"cards-diamond-outline": 54,
"cards-heart": 182,
"cards-outline": 417,
"cards-playing-outline": 501,
"cards-spade": 143,
"cards-variant": 185,
"carrot": 481,
"cart": 404,
"cart-arrow-down": 401,
"cart-arrow-right": 419,
"cart-arrow-up": 399,
"cart-minus": 397,
"cart-off": 455,
"cart-outline": 419,
"cart-plus": 418,
"cart-remove": 510,
"case-sensitive-alt": 327,
"cash": 158,
"cash-100": 568,
"cash-marker": 476,
"cash-minus": 323,
"cash-multiple": 180,
"cash-plus": 347,
"cash-refund": 243,
"cash-register": 224,
"cash-remove": 436,
"cash-usd": 248,
"cash-usd-outline": 222,
"cassette": 294,
"cast": 199,
"cast-audio": 515,
"cast-connected": 245,
"cast-education": 276,
"cast-off": 269,
"castle": 181,
"cat": 792,
"cctv": 452,
"ceiling-light": 71,
"cellphone": 98,
"cellphone-android": 113,
"cellphone-arrow-down": 123,
"cellphone-basic": 319,
"cellphone-dock": 114,
"cellphone-erase": 186,
"cellphone-information": 141,
"cellphone-iphone": 219,
"cellphone-key": 264,
"cellphone-link": 137,
"cellphone-link-off": 252,
"cellphone-lock": 314,
"cellphone-message": 194,
"cellphone-message-off": 326,
"cellphone-nfc": 251,
"cellphone-off": 187,
"cellphone-play": 127,
"cellphone-screenshot": 142,
"cellphone-settings": 134,
"cellphone-settings-variant": 965,
"cellphone-sound": 257,
"cellphone-text": 130,
"cellphone-wireless": 501,
"celtic-cross": 482,
"centos": 1213,
"certificate": 219,
"certificate-outline": 214,
"chair-rolling": 145,
"chair-school": 223,
"charity": 1470,
"chart-arc": 433,
"chart-areaspline": 137,
"chart-areaspline-variant": 61,
"chart-bar": 50,
"chart-bar-stacked": 135,
"chart-bell-curve": 235,
"chart-bell-curve-cumulative": 116,
"chart-bubble": 309,
"chart-donut": 295,
"chart-donut-variant": 567,
"chart-gantt": 98,
"chart-histogram": 36,
"chart-line": 96,
"chart-line-stacked": 123,
"chart-line-variant": 79,
"chart-multiline": 280,
"chart-multiple": 113,
"chart-pie": 121,
"chart-scatter-plot": 221,
"chart-scatter-plot-hexbin": 177,
"chart-snakey": 115,
"chart-snakey-variant": 149,
"chart-timeline": 76,
"chart-timeline-variant": 444,
"chart-tree": 74,
"chat": 170,
"chat-alert": 205,
"chat-outline": 272,
"chat-processing": 221,
"check": 55,
"check-all": 139,
"check-bold": 69,
"check-box-multiple-outline": 201,
"check-box-outline": 137,
"check-circle": 115,
"check-circle-outline": 188,
"check-decagram": 250,
"check-network": 245,
"check-network-outline": 254,
"check-outline": 137,
"check-underline": 71,
"check-underline-circle": 150,
"check-underline-circle-outline": 243,
"checkbook": 63,
"checkbox-blank": 85,
"checkbox-blank-circle": 76,
"checkbox-blank-circle-outline": 144,
"checkbox-blank-outline": 100,
"checkbox-intermediate": 108,
"checkbox-marked": 132,
"checkbox-marked-circle": 123,
"checkbox-marked-circle-outline": 231,
"checkbox-marked-outline": 141,
"checkbox-multiple-blank": 122,
"checkbox-multiple-blank-circle": 285,
"checkbox-multiple-blank-circle-outline": 366,
"checkbox-multiple-blank-outline": 138,
"checkbox-multiple-marked": 177,
"checkbox-multiple-marked-circle": 341,
"checkbox-multiple-marked-circle-outline": 442,
"checkbox-multiple-marked-outline": 184,
"checkerboard": 116,
"checkerboard-minus": 159,
"checkerboard-plus": 194,
"checkerboard-remove": 266,
"cheese": 609,
"chef-hat": 330,
"chemical-weapon": 973,
"chess-bishop": 281,
"chess-king": 206,
"chess-knight": 259,
"chess-pawn": 168,
"chess-queen": 330,
"chess-rook": 69,
"chevron-double-down": 118,
"chevron-double-left": 119,
"chevron-double-right": 116,
"chevron-double-up": 119,
"chevron-down": 58,
"chevron-down-box": 152,
"chevron-down-box-outline": 169,
"chevron-down-circle": 124,
"chevron-down-circle-outline": 192,
"chevron-left": 61,
"chevron-left-box": 158,
"chevron-left-box-outline": 173,
"chevron-left-circle": 130,
"chevron-left-circle-outline": 198,
"chevron-right": 59,
"chevron-right-box": 151,
"chevron-right-box-outline": 170,
"chevron-right-circle": 125,
"chevron-right-circle-outline": 196,
"chevron-triple-down": 172,
"chevron-triple-left": 173,
"chevron-triple-right": 175,
"chevron-triple-up": 176,
"chevron-up": 60,
"chevron-up-box": 158,
"chevron-up-box-outline": 174,
"chevron-up-circle": 129,
"chevron-up-circle-outline": 197,
"chili-hot": 813,
"chili-medium": 541,
"chili-mild": 272,
"chip": 151,
"christianity": 48,
"christianity-outline": 92,
"church": 167,
"cigar": 472,
"circle": 76,
"circle-double": 277,
"circle-edit-outline": 291,
"circle-expand": 318,
"circle-medium": 68,
"circle-off-outline": 413,
"circle-outline": 144,
"circle-slice-1": 185,
"circle-slice-2": 202,
"circle-slice-3": 237,
"circle-slice-4": 260,
"circle-slice-5": 286,
"circle-slice-6": 304,
"circle-slice-7": 330,
"circle-slice-8": 339,
"circle-small": 86,
"circular-saw": 565,
"cisco-webex": 163,
"city": 156,
"city-variant": 248,
"city-variant-outline": 287,
"clipboard": 191,
"clipboard-account": 319,
"clipboard-account-outline": 340,
"clipboard-alert": 221,
"clipboard-alert-outline": 251,
"clipboard-arrow-down": 217,
"clipboard-arrow-down-outline": 246,
"clipboard-arrow-left": 220,
"clipboard-arrow-left-outline": 245,
"clipboard-arrow-right": 217,
"clipboard-arrow-right-outline": 261,
"clipboard-arrow-up": 222,
"clipboard-arrow-up-outline": 245,
"clipboard-check": 239,
"clipboard-check-multiple": 308,
"clipboard-check-multiple-outline": 371,
"clipboard-check-outline": 265,
"clipboard-file": 374,
"clipboard-file-outline": 368,
"clipboard-flow": 250,
"clipboard-flow-outline": 290,
"clipboard-list": 353,
"clipboard-list-outline": 378,
"clipboard-multiple": 258,
"clipboard-multiple-outline": 297,
"clipboard-outline": 215,
"clipboard-play": 222,
"clipboard-play-multiple": 271,
"clipboard-play-multiple-outline": 295,
"clipboard-play-outline": 245,
"clipboard-plus": 232,
"clipboard-pulse": 314,
"clipboard-pulse-outline": 344,
"clipboard-text": 232,
"clipboard-text-multiple": 284,
"clipboard-text-multiple-outline": 326,
"clipboard-text-outline": 258,
"clipboard-text-play": 339,
"clipboard-text-play-outline": 265,
"clippy": 1225,
"clock": 122,
"clock-alert": 182,
"clock-alert-outline": 269,
"clock-check": 282,
"clock-check-outline": 388,
"clock-digital": 286,
"clock-end": 290,
"clock-fast": 372,
"clock-in": 298,
"clock-out": 307,
"clock-outline": 194,
"clock-start": 285,
"close": 109,
"close-box": 208,
"close-box-multiple": 256,
"close-box-multiple-outline": 283,
"close-box-outline": 187,
"close-circle": 200,
"close-circle-outline": 292,
"close-network": 285,
"close-network-outline": 324,
"close-octagon": 156,
"close-octagon-outline": 246,
"close-outline": 240,
"closed-caption": 303,
"closed-caption-outline": 760,
"cloud": 152,
"cloud-alert": 195,
"cloud-braces": 428,
"cloud-check": 207,
"cloud-circle": 228,
"cloud-download": 180,
"cloud-download-outline": 383,
"cloud-lock": 462,
"cloud-lock-outline": 534,
"cloud-off-outline": 378,
"cloud-outline": 278,
"cloud-print": 216,
"cloud-print-outline": 355,
"cloud-question": 698,
"cloud-search": 484,
"cloud-search-outline": 597,
"cloud-sync": 496,
"cloud-tags": 276,
"cloud-upload": 180,
"cloud-upload-outline": 382,
"clover": 655,
"coach-lamp": 112,
"coat-rack": 233,
"code-array": 132,
"code-braces": 260,
"code-braces-box": 401,
"code-brackets": 47,
"code-equal": 132,
"code-greater-than": 130,
"code-greater-than-or-equal": 162,
"code-less-than": 134,
"code-less-than-or-equal": 165,
"code-not-equal": 130,
"code-not-equal-variant": 168,
"code-parentheses": 254,
"code-parentheses-box": 294,
"code-string": 381,
"code-tags": 102,
"code-tags-check": 190,
"codepen": 590,
"coffee": 114,
"coffee-maker": 177,
"coffee-off": 234,
"coffee-off-outline": 289,
"coffee-outline": 160,
"coffee-to-go": 186,
"coffin": 67,
"cog-clockwise": 1096,
"cog-counterclockwise": 1096,
"cogs": 1659,
"coin": 162,
"coin-outline": 267,
"coins": 249,
"collage": 124,
"collapse-all": 167,
"collapse-all-outline": 183,
"color-helper": 17,
"comma": 47,
"comma-box": 106,
"comma-box-outline": 120,
"comma-circle": 107,
"comma-circle-outline": 174,
"comment": 141,
"comment-account": 268,
"comment-account-outline": 302,
"comment-alert": 176,
"comment-alert-outline": 210,
"comment-arrow-left": 243,
"comment-arrow-left-outline": 279,
"comment-arrow-right": 238,
"comment-arrow-right-outline": 274,
"comment-check": 193,
"comment-check-outline": 234,
"comment-edit": 306,
"comment-eye": 514,
"comment-eye-outline": 506,
"comment-multiple": 174,
"comment-multiple-outline": 213,
"comment-outline": 175,
"comment-plus": 175,
"comment-plus-outline": 212,
"comment-processing": 189,
"comment-processing-outline": 223,
"comment-question": 665,
"comment-question-outline": 724,
"comment-quote": 226,
"comment-quote-outline": 260,
"comment-remove": 247,
"comment-remove-outline": 281,
"comment-search": 445,
"comment-search-outline": 428,
"comment-text": 184,
"comment-text-multiple": 204,
"comment-text-multiple-outline": 238,
"comment-text-outline": 204,
"compare": 140,
"compass": 204,
"compass-off": 259,
"compass-off-outline": 426,
"compass-outline": 274,
"concourse-ci": 5653,
"console": 198,
"console-line": 104,
"console-network": 264,
"console-network-outline": 305,
"consolidate": 183,
"contact-mail": 226,
"contact-mail-outline": 400,
"contact-phone": 404,
"contact-phone-outline": 555,
"contactless-payment": 1340,
"contacts": 275,
"contain": 101,
"contain-end": 79,
"contain-start": 74,
"content-copy": 122,
"content-cut": 511,
"content-duplicate": 167,
"content-paste": 214,
"content-save": 150,
"content-save-alert": 151,
"content-save-alert-outline": 258,
"content-save-all": 189,
"content-save-all-outline": 234,
"content-save-edit": 371,
"content-save-edit-outline": 436,
"content-save-move": 256,
"content-save-move-outline": 317,
"content-save-outline": 194,
"content-save-settings": 205,
"content-save-settings-outline": 244,
"contrast": 141,
"contrast-box": 157,
"contrast-circle": 222,
"controller-classic": 382,
"controller-classic-outline": 580,
"cookie": 632,
"coolant-temperature": 1466,
"copyright": 1234,
"cordova": 512,
"corn": 438,
"counter": 662,
"cow": 1214,
"cowboy": 336,
"cpu-32-bit": 352,
"cpu-64-bit": 326,
"crane": 654,
"creation": 192,
"creative-commons": 1092,
"credit-card": 89,
"credit-card-clock": 283,
"credit-card-clock-outline": 351,
"credit-card-marker": 393,
"credit-card-marker-outline": 398,
"credit-card-minus": 94,
"credit-card-minus-outline": 119,
"credit-card-multiple": 122,
"credit-card-multiple-outline": 151,
"credit-card-off": 185,
"credit-card-off-outline": 251,
"credit-card-outline": 111,
"credit-card-plus": 178,
"credit-card-plus-outline": 143,
"credit-card-refund": 169,
"credit-card-refund-outline": 192,
"credit-card-remove": 271,
"credit-card-remove-outline": 333,
"credit-card-scan": 228,
"credit-card-scan-outline": 246,
"credit-card-settings": 137,
"credit-card-settings-outline": 162,
"credit-card-wireless": 301,
"credit-card-wireless-outline": 292,
"cricket": 322,
"crop": 95,
"crop-free": 140,
"crop-landscape": 94,
"crop-portrait": 94,
"crop-rotate": 328,
"crop-square": 94,
"crosshairs": 234,
"crosshairs-gps": 301,
"crosshairs-off": 482,
"crosshairs-question": 465,
"crown": 101,
"crown-outline": 153,
"cryengine": 723,
"crystal-ball": 557,
"cube": 333,
"cube-outline": 407,
"cube-scan": 706,
"cube-send": 173,
"cube-unfolded": 134,
"cup": 100,
"cup-off": 172,
"cup-water": 178,
"cupboard": 178,
"cupboard-outline": 207,
"cupcake": 286,
"curling": 247,
"currency-bdt": 493,
"currency-brl": 509,
"currency-btc": 296,
"currency-cny": 119,
"currency-eth": 43,
"currency-eur": 317,
"currency-gbp": 139,
"currency-ils": 115,
"currency-inr": 197,
"currency-jpy": 119,
"currency-krw": 358,
"currency-kzt": 38,
"currency-ngn": 183,
"currency-php": 280,
"currency-rial": 258,
"currency-rub": 147,
"currency-sign": 334,
"currency-try": 153,
"currency-twd": 91,
"currency-usd": 342,
"currency-usd-off": 358,
"current-ac": 225,
"current-dc": 64,
"cursor-default": 312,
"cursor-default-click": 581,
"cursor-default-click-outline": 777,
"cursor-default-gesture": 1192,
"cursor-default-gesture-outline": 1299,
"cursor-default-outline": 487,
"cursor-move": 128,
"cursor-pointer": 310,
"cursor-text": 204,
"database": 289,
"database-check": 420,
"database-edit": 483,
"database-export": 427,
"database-import": 411,
"database-lock": 545,
"database-minus": 340,
"database-plus": 349,
"database-refresh": 656,
"database-remove": 446,
"database-search": 729,
"database-settings": 354,
"death-star": 230,
"death-star-variant": 339,
"deathly-hallows": 364,
"debian": 2440,
"debug-step-into": 137,
"debug-step-out": 138,
"debug-step-over": 240,
"decagram": 197,
"decagram-outline": 392,
"decimal": 232,
"decimal-comma": 276,
"decimal-comma-decrease": 137,
"decimal-comma-increase": 246,
"decimal-decrease": 235,
"decimal-increase": 379,
"delete": 81,
"delete-alert": 127,
"delete-alert-outline": 144,
"delete-circle": 176,
"delete-circle-outline": 230,
"delete-empty": 154,
"delete-empty-outline": 180,
"delete-forever": 224,
"delete-forever-outline": 239,
"delete-off": 199,
"delete-off-outline": 256,
"delete-outline": 99,
"delete-restore": 177,
"delete-sweep": 127,
"delete-sweep-outline": 144,
"delete-variant": 168,
"delta": 43,
"desk": 267,
"desk-lamp": 355,
"deskphone": 251,
"desktop-classic": 287,
"desktop-mac": 121,
"desktop-mac-dashboard": 202,
"desktop-tower": 121,
"desktop-tower-monitor": 224,
"details": 44,
"dev-to": 609,
"developer-board": 190,
"deviantart": 57,
"devices": 396,
"diabetes": 327,
"dialpad": 659,
"diameter": 119,
"diameter-outline": 187,
"diameter-variant": 391,
"diamond": 27,
"diamond-outline": 72,
"diamond-stone": 111,
"dice-1": 145,
"dice-1-outline": 205,
"dice-2": 205,
"dice-2-outline": 288,
"dice-3": 275,
"dice-3-outline": 361,
"dice-4": 335,
"dice-4-outline": 462,
"dice-5": 405,
"dice-5-outline": 522,
"dice-6": 470,
"dice-6-outline": 608,
"dice-d10": 506,
"dice-d10-outline": 535,
"dice-d12": 323,
"dice-d12-outline": 369,
"dice-d20": 803,
"dice-d20-outline": 883,
"dice-d4": 249,
"dice-d4-outline": 330,
"dice-d6": 434,
"dice-d6-outline": 459,
"dice-d8": 632,
"dice-d8-outline": 713,
"dice-multiple": 1110,
"dice-multiple-outline": 691,
"dictionary": 263,
"digital-ocean": 175,
"dip-switch": 277,
"directions": 247,
"directions-fork": 186,
"disc": 161,
"disc-alert": 180,
"disc-player": 386,
"discord": 891,
"dishwasher": 436,
"dishwasher-alert": 471,
"dishwasher-off": 468,
"disqus": 335,
"disqus-outline": 465,
"distribute-horizontal-center": 71,
"distribute-horizontal-left": 51,
"distribute-horizontal-right": 53,
"distribute-vertical-bottom": 51,
"distribute-vertical-center": 71,
"distribute-vertical-top": 53,
"diving-flippers": 748,
"diving-helmet": 502,
"diving-scuba": 503,
"diving-scuba-flag": 29,
"diving-scuba-tank": 268,
"diving-scuba-tank-multiple": 384,
"diving-snorkel": 581,
"division": 153,
"division-box": 237,
"dlna": 1037,
"dna": 822,
"dns": 280,
"dns-outline": 363,
"do-not-disturb": 93,
"do-not-disturb-off": 266,
"dock-bottom": 89,
"dock-left": 89,
"dock-right": 89,
"dock-window": 122,
"docker": 987,
"doctor": 252,
"dog": 779,
"dog-service": 299,
"dog-side": 102,
"dolby": 149,
"dolly": 597,
"domain": 187,
"domain-off": 239,
"domain-plus": 308,
"domain-remove": 401,
"domino-mask": 455,
"donkey": 384,
"door": 86,
"door-closed": 104,
"door-closed-lock": 219,
"door-open": 103,
"doorbell-video": 420,
"dot-net": 166,
"dots-horizontal": 206,
"dots-horizontal-circle": 363,
"dots-horizontal-circle-outline": 430,
"dots-vertical": 206,
"dots-vertical-circle": 363,
"dots-vertical-circle-outline": 430,
"douban": 119,
"download": 41,
"download-multiple": 59,
"download-network": 217,
"download-network-outline": 220,
"download-off": 132,
"download-off-outline": 148,
"download-outline": 84,
"drag": 193,
"drag-horizontal": 164,
"drag-variant": 337,
"drag-vertical": 159,
"drama-masks": 1049,
"draw": 626,
"drawing": 139,
"drawing-box": 246,
"dresser": 192,
"dresser-outline": 208,
"dribbble": 1109,
"dribbble-box": 1042,
"drone": 382,
"dropbox": 254,
"drupal": 601,
"duck": 294,
"dumbbell": 277,
"dump-truck": 354,
"ear-hearing": 649,
"ear-hearing-off": 766,
"earth": 327,
"earth-box": 305,
"earth-box-off": 403,
"earth-off": 599,
"edge": 410,
"edge-legacy": 358,
"egg": 105,
"egg-easter": 547,
"eight-track": 98,
"eject": 36,
"eject-outline": 69,
"electric-switch": 400,
"electric-switch-closed": 184,
"electron-framework": 2536,
"elephant": 214,
"elevation-decline": 119,
"elevation-rise": 122,
"elevator": 149,
"ellipse": 88,
"ellipse-outline": 179,
"email": 113,
"email-alert": 146,
"email-box": 230,
"email-check": 228,
"email-check-outline": 169,
"email-edit": 387,
"email-edit-outline": 313,
"email-lock": 330,
"email-mark-as-unread": 251,
"email-minus": 191,
"email-minus-outline": 131,
"email-multiple": 148,
"email-multiple-outline": 173,
"email-newsletter": 236,
"email-open": 142,
"email-open-multiple": 176,
"email-open-multiple-outline": 221,
"email-open-outline": 181,
"email-outline": 134,
"email-plus": 215,
"email-plus-outline": 155,
"email-receive": 165,
"email-receive-outline": 132,
"email-search": 440,
"email-search-outline": 474,
"email-send": 165,
"email-send-outline": 132,
"email-variant": 143,
"ember": 514,
"emby": 93,
"emoticon": 330,
"emoticon-angry": 346,
"emoticon-angry-outline": 408,
"emoticon-confused": 195,
"emoticon-confused-outline": 234,
"emoticon-cool": 480,
"emoticon-cool-outline": 517,
"emoticon-cry": 696,
"emoticon-cry-outline": 746,
"emoticon-dead": 419,
"emoticon-dead-outline": 480,
"emoticon-devil": 564,
"emoticon-devil-outline": 631,
"emoticon-excited": 291,
"emoticon-excited-outline": 358,
"emoticon-frown": 283,
"emoticon-frown-outline": 366,
"emoticon-happy": 418,
"emoticon-happy-outline": 487,
"emoticon-kiss": 838,
"emoticon-kiss-outline": 740,
"emoticon-lol": 461,
"emoticon-lol-outline": 641,
"emoticon-neutral": 274,
"emoticon-neutral-outline": 342,
"emoticon-outline": 400,
"emoticon-poop": 1801,
"emoticon-poop-outline": 2689,
"emoticon-sad": 409,
"emoticon-sad-outline": 472,
"emoticon-tongue": 436,
"emoticon-tongue-outline": 498,
"emoticon-wink": 338,
"emoticon-wink-outline": 407,
"engine": 90,
"engine-off": 150,
"engine-off-outline": 209,
"engine-outline": 114,
"epsilon": 418,
"equal": 34,
"equal-box": 118,
"equalizer": 49,
"equalizer-outline": 99,
"eraser": 271,
"eraser-variant": 192,
"escalator": 234,
"eslint": 759,
"et": 522,
"ethereum": 95,
"ethernet": 182,
"ethernet-cable": 58,
"ethernet-cable-off": 113,
"etsy": 1102,
"ev-station": 424,
"eventbrite": 344,
"evernote": 853,
"excavator": 465,
"exclamation": 72,
"exclamation-thick": 35,
"exit-run": 468,
"exit-to-app": 182,
"expand-all": 191,
"expand-all-outline": 207,
"expansion-card": 159,
"expansion-card-variant": 86,
"exponent": 303,
"exponent-box": 383,
"export": 126,
"export-variant": 124,
"eye": 241,
"eye-check": 439,
"eye-check-outline": 417,
"eye-circle": 675,
"eye-circle-outline": 413,
"eye-minus": 302,
"eye-minus-outline": 311,
"eye-off": 576,
"eye-off-outline": 565,
"eye-outline": 297,
"eye-plus": 495,
"eye-plus-outline": 509,
"eye-settings": 308,
"eye-settings-outline": 373,
"eyedropper": 268,
"eyedropper-variant": 226,
"face": 485,
"face-agent": 944,
"face-outline": 667,
"face-profile": 391,
"face-profile-woman": 358,
"face-recognition": 629,
"face-woman": 432,
"face-woman-outline": 678,
"facebook": 94,
"facebook-box": 158,
"facebook-messenger": 499,
"facebook-workplace": 821,
"factory": 133,
"fan": 569,
"fan-off": 462,
"fast-forward": 37,
"fast-forward-10": 283,
"fast-forward-30": 383,
"fast-forward-5": 232,
"fast-forward-outline": 88,
"fax": 239,
"feather": 340,
"feature-search": 367,
"feature-search-outline": 331,
"fedora": 2755,
"ferris-wheel": 1688,
"ferry": 529,
"file": 85,
"file-account": 222,
"file-account-outline": 222,
"file-alert": 118,
"file-alert-outline": 120,
"file-cabinet": 160,
"file-cad": 662,
"file-cad-box": 592,
"file-cancel": 376,
"file-cancel-outline": 373,
"file-certificate": 157,
"file-certificate-outline": 288,
"file-chart": 144,
"file-chart-outline": 150,
"file-check": 170,
"file-check-outline": 164,
"file-cloud": 251,
"file-cloud-outline": 285,
"file-code": 250,
"file-code-outline": 252,
"file-compare": 198,
"file-delimited": 166,
"file-delimited-outline": 160,
"file-document": 127,
"file-document-box": 125,
"file-document-box-check": 265,
"file-document-box-check-outline": 298,
"file-document-box-minus": 227,
"file-document-box-minus-outline": 252,
"file-document-box-multiple": 171,
"file-document-box-multiple-outline": 183,
"file-document-box-outline": 158,
"file-document-box-plus": 251,
"file-document-box-plus-outline": 276,
"file-document-box-remove": 353,
"file-document-box-remove-outline": 378,
"file-document-box-search": 474,
"file-document-box-search-outline": 503,
"file-document-edit": 336,
"file-document-edit-outline": 297,
"file-document-outline": 116,
"file-download": 139,
"file-download-outline": 123,
"file-edit": 261,
"file-edit-outline": 261,
"file-excel": 171,
"file-excel-box": 159,
"file-excel-box-outline": 193,
"file-excel-outline": 192,
"file-export": 146,
"file-export-outline": 155,
"file-eye": 502,
"file-eye-outline": 445,
"file-find": 275,
"file-find-outline": 526,
"file-hidden": 357,
"file-image": 191,
"file-image-outline": 202,
"file-import": 146,
"file-import-outline": 177,
"file-key": 161,
"file-key-outline": 168,
"file-link": 348,
"file-link-outline": 403,
"file-lock": 208,
"file-lock-outline": 221,
"file-move": 183,
"file-move-outline": 242,
"file-multiple": 123,
"file-multiple-outline": 136,
"file-music": 175,
"file-music-outline": 177,
"file-outline": 87,
"file-pdf": 697,
"file-pdf-box": 718,
"file-pdf-box-outline": 1144,
"file-pdf-outline": 753,
"file-percent": 314,
"file-percent-outline": 311,
"file-phone": 452,
"file-phone-outline": 446,
"file-plus": 132,
"file-plus-outline": 121,
"file-powerpoint": 362,
"file-powerpoint-box": 365,
"file-powerpoint-box-outline": 403,
"file-powerpoint-outline": 371,
"file-presentation-box": 98,
"file-question": 274,
"file-question-outline": 299,
"file-remove": 229,
"file-remove-outline": 243,
"file-replace": 180,
"file-replace-outline": 166,
"file-restore": 283,
"file-restore-outline": 380,
"file-search": 426,
"file-search-outline": 424,
"file-send": 154,
"file-send-outline": 163,
"file-settings": 140,
"file-settings-outline": 135,
"file-settings-variant": 1106,
"file-settings-variant-outline": 1052,
"file-star": 194,
"file-star-outline": 192,
"file-swap": 118,
"file-swap-outline": 125,
"file-sync": 458,
"file-sync-outline": 436,
"file-table": 190,
"file-table-box": 194,
"file-table-box-multiple": 239,
"file-table-box-multiple-outline": 251,
"file-table-box-outline": 215,
"file-table-outline": 192,
"file-tree": 86,
"file-undo": 272,
"file-undo-outline": 286,
"file-upload": 123,
"file-upload-outline": 123,
"file-video": 132,
"file-video-outline": 130,
"file-word": 182,
"file-word-box": 168,
"file-word-box-outline": 203,
"file-word-outline": 220,
"film": 275,
"filmstrip": 133,
"filmstrip-off": 215,
"filter": 275,
"filter-menu": 197,
"filter-menu-outline": 243,
"filter-minus": 290,
"filter-minus-outline": 337,
"filter-outline": 320,
"filter-plus": 310,
"filter-plus-outline": 361,
"filter-remove": 414,
"filter-remove-outline": 460,
"filter-variant": 43,
"filter-variant-minus": 104,
"filter-variant-plus": 128,
"filter-variant-remove": 230,
"finance": 156,
"find-replace": 343,
"fingerprint": 2189,
"fingerprint-off": 2027,
"fire": 887,
"fire-extinguisher": 140,
"fire-hydrant": 266,
"fire-hydrant-alert": 295,
"fire-hydrant-off": 401,
"fire-truck": 505,
"firebase": 307,
"firefox": 1601,
"fireplace": 812,
"fireplace-off": 93,
"firework": 586,
"fish": 475,
"fishbowl": 519,
"fishbowl-outline": 737,
"fit-to-page": 197,
"fit-to-page-outline": 218,
"flag": 44,
"flag-checkered": 164,
"flag-minus": 62,
"flag-minus-outline": 102,
"flag-outline": 83,
"flag-plus": 115,
"flag-plus-outline": 218,
"flag-remove": 217,
"flag-remove-outline": 320,
"flag-triangle": 36,
"flag-variant": 150,
"flag-variant-outline": 270,
"flare": 354,
"flash": 30,
"flash-alert": 61,
"flash-alert-outline": 99,
"flash-auto": 101,
"flash-circle": 233,
"flash-off": 101,
"flash-outline": 69,
"flash-red-eye": 371,
"flashlight": 121,
"flashlight-off": 125,
"flask": 390,
"flask-empty": 184,
"flask-empty-minus": 239,
"flask-empty-minus-outline": 326,
"flask-empty-outline": 309,
"flask-empty-plus": 263,
"flask-empty-plus-outline": 350,
"flask-empty-remove": 365,
"flask-empty-remove-outline": 452,
"flask-minus": 422,
"flask-minus-outline": 505,
"flask-outline": 455,
"flask-plus": 446,
"flask-plus-outline": 529,
"flask-remove": 548,
"flask-remove-outline": 631,
"flask-round-bottom": 408,
"flask-round-bottom-empty": 174,
"flask-round-bottom-empty-outline": 288,
"flask-round-bottom-outline": 406,
"flattr": 171,
"flickr": 189,
"flip-horizontal": 203,
"flip-to-back": 245,
"flip-to-front": 211,
"flip-vertical": 205,
"floor-lamp": 46,
"floor-lamp-dual": 185,
"floor-lamp-variant": 87,
"floor-plan": 98,
"floppy": 170,
"floppy-variant": 161,
"flower": 736,
"flower-outline": 1509,
"flower-poppy": 425,
"flower-tulip": 242,
"flower-tulip-outline": 485,
"focus-auto": 259,
"focus-field": 296,
"focus-field-horizontal": 203,
"focus-field-vertical": 203,
"folder": 93,
"folder-account": 226,
"folder-account-outline": 270,
"folder-alert": 257,
"folder-alert-outline": 339,
"folder-clock": 271,
"folder-clock-outline": 347,
"folder-download": 127,
"folder-download-outline": 126,
"folder-edit": 304,
"folder-edit-outline": 316,
"folder-google-drive": 222,
"folder-heart": 321,
"folder-heart-outline": 329,
"folder-home": 124,
"folder-home-outline": 137,
"folder-image": 120,
"folder-information": 260,
"folder-information-outline": 341,
"folder-key": 277,
"folder-key-network": 367,
"folder-key-network-outline": 425,
"folder-key-outline": 325,
"folder-lock": 198,
"folder-lock-open": 195,
"folder-marker": 401,
"folder-marker-outline": 396,
"folder-move": 119,
"folder-move-outline": 153,
"folder-multiple": 123,
"folder-multiple-image": 159,
"folder-multiple-outline": 137,
"folder-network": 181,
"folder-network-outline": 245,
"folder-open": 136,
"folder-open-outline": 144,
"folder-outline": 106,
"folder-plus": 133,
"folder-plus-outline": 165,
"folder-pound": 275,
"folder-pound-outline": 291,
"folder-remove": 235,
"folder-remove-outline": 262,
"folder-search": 408,
"folder-search-outline": 409,
"folder-settings": 143,
"folder-settings-outline": 156,
"folder-settings-variant": 1113,
"folder-settings-variant-outline": 1070,
"folder-star": 197,
"folder-star-outline": 236,
"folder-swap": 123,
"folder-swap-outline": 136,
"folder-sync": 457,
"folder-sync-outline": 519,
"folder-text": 118,
"folder-text-outline": 131,
"folder-upload": 118,
"folder-upload-outline": 126,
"folder-zip": 165,
"folder-zip-outline": 193,
"font-awesome": 428,
"food": 234,
"food-apple": 168,
"food-apple-outline": 574,
"food-croissant": 124,
"food-fork-drink": 451,
"food-off": 301,
"food-variant": 206,
"foot-print": 452,
"football": 633,
"football-australian": 525,
"football-helmet": 409,
"forklift": 351,
"format-align-bottom": 97,
"format-align-center": 75,
"format-align-justify": 75,
"format-align-left": 75,
"format-align-middle": 136,
"format-align-right": 75,
"format-align-top": 99,
"format-annotation-minus": 93,
"format-annotation-plus": 113,
"format-bold": 266,
"format-clear": 142,
"format-color-fill": 307,
"format-color-highlight": 260,
"format-color-text": 79,
"format-columns": 159,
"format-float-center": 60,
"format-float-left": 92,
"format-float-none": 77,
"format-float-right": 91,
"format-font": 154,
"format-font-size-decrease": 148,
"format-font-size-increase": 147,
"format-header-1": 86,
"format-header-2": 228,
"format-header-3": 146,
"format-header-4": 98,
"format-header-5": 184,
"format-header-6": 162,
"format-header-decrease": 96,
"format-header-equal": 71,
"format-header-increase": 96,
"format-header-pound": 238,
"format-horizontal-align-center": 76,
"format-horizontal-align-left": 46,
"format-horizontal-align-right": 48,
"format-indent-decrease": 83,
"format-indent-increase": 83,
"format-italic": 55,
"format-letter-case": 884,
"format-letter-case-lower": 904,
"format-letter-case-upper": 900,
"format-letter-ends-with": 107,
"format-letter-matches": 112,
"format-letter-starts-with": 106,
"format-line-spacing": 91,
"format-line-style": 187,
"format-line-weight": 62,
"format-list-bulleted": 314,
"format-list-bulleted-square": 87,
"format-list-bulleted-triangle": 116,
"format-list-bulleted-type": 146,
"format-list-checkbox": 308,
"format-list-checks": 114,
"format-list-numbered": 199,
"format-list-numbered-rtl": 223,
"format-list-text": 79,
"format-overline": 92,
"format-page-break": 177,
"format-paint": 132,
"format-paragraph": 95,
"format-pilcrow": 64,
"format-quote-close": 54,
"format-quote-close-outline": 153,
"format-quote-open": 60,
"format-quote-open-outline": 156,
"format-rotate-90": 385,
"format-section": 741,
"format-size": 47,
"format-strikethrough": 54,
"format-strikethrough-variant": 368,
"format-subscript": 576,
"format-superscript": 515,
"format-text": 282,
"format-text-rotation-angle-down": 192,
"format-text-rotation-angle-up": 188,
"format-text-rotation-down": 138,
"format-text-rotation-down-vertical": 154,
"format-text-rotation-none": 136,
"format-text-rotation-up": 137,
"format-text-rotation-vertical": 133,
"format-text-variant": 70,
"format-text-wrapping-clip": 42,
"format-text-wrapping-overflow": 79,
"format-text-wrapping-wrap": 163,
"format-textbox": 179,
"format-textdirection-l-to-r": 87,
"format-textdirection-r-to-l": 91,
"format-title": 29,
"format-underline": 115,
"format-vertical-align-bottom": 48,
"format-vertical-align-center": 75,
"format-vertical-align-top": 44,
"format-wrap-inline": 64,
"format-wrap-square": 141,
"format-wrap-tight": 141,
"format-wrap-top-bottom": 48,
"forum": 124,
"forum-outline": 149,
"forward": 30,
"forwardburger": 89,
"fountain": 665,
"fountain-pen": 277,
"fountain-pen-tip": 268,
"foursquare": 764,
"freebsd": 619,
"frequently-asked-questions": 646,
"fridge": 137,
"fridge-alert": 189,
"fridge-alert-outline": 203,
"fridge-bottom": 137,
"fridge-off": 271,
"fridge-off-outline": 274,
"fridge-outline": 151,
"fridge-top": 134,
"fruit-cherries": 581,
"fruit-citrus": 680,
"fruit-grapes": 648,
"fruit-grapes-outline": 1285,
"fruit-pineapple": 743,
"fruit-watermelon": 609,
"fuel": 388,
"fullscreen": 86,
"fullscreen-exit": 85,
"function": 345,
"function-variant": 478,
"furigana-horizontal": 422,
"furigana-vertical": 446,
"fuse": 155,
"fuse-blade": 176,
"gamepad": 108,
"gamepad-circle": 265,
"gamepad-circle-down": 465,
"gamepad-circle-left": 470,
"gamepad-circle-outline": 535,
"gamepad-circle-right": 465,
"gamepad-circle-up": 470,
"gamepad-down": 140,
"gamepad-left": 137,
"gamepad-right": 140,
"gamepad-round": 159,
"gamepad-round-down": 177,
"gamepad-round-left": 174,
"gamepad-round-outline": 198,
"gamepad-round-right": 177,
"gamepad-round-up": 174,
"gamepad-square": 300,
"gamepad-square-outline": 311,
"gamepad-up": 137,
"gamepad-variant": 354,
"gamepad-variant-outline": 469,
"gamma": 287,
"gantry-crane": 907,
"garage": 84,
"garage-alert": 103,
"garage-open": 51,
"gas-cylinder": 124,
"gas-station": 422,
"gas-station-outline": 436,
"gate": 206,
"gate-and": 87,
"gate-arrow-right": 220,
"gate-nand": 277,
"gate-nor": 302,
"gate-not": 218,
"gate-open": 106,
"gate-or": 129,
"gate-xnor": 342,
"gate-xor": 164,
"gatsby": 337,
"gauge": 685,
"gauge-empty": 685,
"gauge-full": 687,
"gauge-low": 684,
"gavel": 623,
"gender-female": 193,
"gender-male": 208,
"gender-male-female": 265,
"gender-male-female-variant": 231,
"gender-non-binary": 299,
"gender-transgender": 404,
"gentoo": 758,
"gesture": 783,
"gesture-double-tap": 595,
"gesture-pinch": 621,
"gesture-spread": 622,
"gesture-swipe": 678,
"gesture-swipe-down": 252,
"gesture-swipe-horizontal": 252,
"gesture-swipe-left": 252,
"gesture-swipe-right": 253,
"gesture-swipe-up": 252,
"gesture-swipe-vertical": 252,
"gesture-tap": 405,
"gesture-tap-box": 517,
"gesture-tap-button": 567,
"gesture-tap-hold": 357,
"gesture-two-double-tap": 745,
"gesture-two-tap": 686,
"ghost": 208,
"ghost-off": 329,
"gif": 187,
"gift": 400,
"gift-outline": 458,
"git": 525,
"github-box": 711,
"github-circle": 747,
"github-face": 796,
"gitlab": 299,
"glass-cocktail": 68,
"glass-flute": 379,
"glass-mug": 150,
"glass-mug-variant": 379,
"glass-stange": 30,
"glass-tulip": 445,
"glass-wine": 335,
"glassdoor": 101,
"glasses": 897,
"globe-model": 401,
"gmail": 142,
"gnome": 592,
"go-kart": 431,
"go-kart-track": 658,
"gog": 1641,
"gold": 167,
"golf": 225,
"golf-cart": 343,
"golf-tee": 784,
"gondola": 447,
"goodreads": 372,
"google": 295,
"google-adwords": 130,
"google-analytics": 142,
"google-assistant": 316,
"google-cardboard": 523,
"google-chrome": 495,
"google-circles": 338,
"google-circles-communities": 379,
"google-circles-extended": 536,
"google-circles-group": 464,
"google-classroom": 700,
"google-cloud": 432,
"google-controller": 711,
"google-controller-off": 733,
"google-drive": 110,
"google-earth": 1101,
"google-fit": 397,
"google-glass": 220,
"google-hangouts": 170,
"google-home": 895,
"google-keep": 333,
"google-lens": 256,
"google-maps": 1314,
"google-my-business": 1057,
"google-nearby": 263,
"google-pages": 163,
"google-photos": 576,
"google-physical-web": 644,
"google-play": 293,
"google-plus": 272,
"google-plus-box": 449,
"google-podcast": 1265,
"google-spreadsheet": 228,
"google-street-view": 711,
"google-translate": 793,
"gradient": 278,
"grain": 535,
"graph": 1014,
"graph-outline": 1583,
"graphql": 949,
"grave-stone": 192,
"grease-pencil": 323,
"greater-than": 60,
"greater-than-or-equal": 80,
"grid": 224,
"grid-large": 144,
"grid-off": 361,
"grill": 1378,
"grill-outline": 734,
"group": 139,
"guitar-acoustic": 348,
"guitar-electric": 418,
"guitar-pick": 277,
"guitar-pick-outline": 631,
"guy-fawkes-mask": 537,
"hackernews": 82,
"hail": 356,
"hair-dryer": 529,
"hair-dryer-outline": 626,
"halloween": 491,
"hamburger": 230,
"hammer": 190,
"hand": 580,
"hand-heart": 327,
"hand-left": 481,
"hand-okay": 785,
"hand-peace": 604,
"hand-peace-variant": 389,
"hand-pointing-down": 253,
"hand-pointing-left": 234,
"hand-pointing-right": 231,
"hand-pointing-up": 236,
"hand-right": 485,
"hand-saw": 192,
"handball": 394,
"handcuffs": 997,
"handshake": 313,
"hanger": 437,
"hard-hat": 412,
"harddisk": 459,
"harddisk-plus": 439,
"harddisk-remove": 527,
"hat-fedora": 592,
"hazard-lights": 92,
"hdr": 269,
"hdr-off": 324,
"headphones": 127,
"headphones-bluetooth": 327,
"headphones-box": 242,
"headphones-off": 321,
"headphones-settings": 177,
"headset": 139,
"headset-dock": 202,
"headset-off": 327,
"heart": 182,
"heart-box": 269,
"heart-box-outline": 283,
"heart-broken": 251,
"heart-broken-outline": 399,
"heart-circle": 275,
"heart-circle-outline": 341,
"heart-flash": 233,
"heart-half": 105,
"heart-half-full": 264,
"heart-half-outline": 181,
"heart-multiple": 274,
"heart-multiple-outline": 441,
"heart-off": 281,
"heart-outline": 363,
"heart-pulse": 466,
"helicopter": 323,
"help": 237,
"help-box": 209,
"help-circle": 321,
"help-circle-outline": 302,
"help-network": 714,
"help-network-outline": 750,
"help-rhombus": 418,
"help-rhombus-outline": 485,
"hexadecimal": 218,
"hexagon": 289,
"hexagon-multiple": 669,
"hexagon-multiple-outline": 831,
"hexagon-outline": 341,
"hexagon-slice-1": 369,
"hexagon-slice-2": 375,
"hexagon-slice-3": 377,
"hexagon-slice-4": 394,
"hexagon-slice-5": 396,
"hexagon-slice-6": 393,
"hexagram": 123,
"hexagram-outline": 199,
"high-definition": 131,
"high-definition-box": 202,
"highway": 123,
"hiking": 433,
"hinduism": 341,
"history": 229,
"hockey-puck": 276,
"hockey-sticks": 145,
"hololens": 277,
"home": 43,
"home-account": 209,
"home-alert": 65,
"home-analytics": 66,
"home-assistant": 899,
"home-automation": 473,
"home-circle": 278,
"home-circle-outline": 166,
"home-city": 135,
"home-city-outline": 185,
"home-currency-usd": 578,
"home-edit": 260,
"home-edit-outline": 308,
"home-export-outline": 90,
"home-flood": 266,
"home-floor-0": 129,
"home-floor-1": 52,
"home-floor-2": 115,
"home-floor-3": 157,
"home-floor-a": 110,
"home-floor-b": 161,
"home-floor-g": 121,
"home-floor-l": 50,
"home-floor-negative-1": 70,
"home-group": 126,
"home-heart": 226,
"home-import-outline": 91,
"home-lightbulb": 86,
"home-lightbulb-outline": 120,
"home-lock": 138,
"home-lock-open": 120,
"home-map-marker": 228,
"home-minus": 47,
"home-modern": 110,
"home-outline": 89,
"home-plus": 71,
"home-remove": 170,
"home-roof": 59,
"home-thermometer": 140,
"home-thermometer-outline": 172,
"home-variant": 34,
"home-variant-outline": 60,
"hook": 246,
"hook-off": 387,
"hops": 642,
"horizontal-rotate-clockwise": 282,
"horizontal-rotate-counterclockwise": 288,
"horseshoe": 591,
"hospital": 37,
"hospital-box": 122,
"hospital-box-outline": 145,
"hospital-building": 185,
"hospital-marker": 117,
"hot-tub": 717,
"hotel": 118,
"houzz": 57,
"houzz-box": 135,
"hubspot": 661,
"hulu": 160,
"human": 111,
"human-child": 104,
"human-female": 165,
"human-female-boy": 260,
"human-female-female": 300,
"human-female-girl": 264,
"human-greeting": 179,
"human-handsdown": 214,
"human-handsup": 195,
"human-male": 137,
"human-male-boy": 247,
"human-male-female": 298,
"human-male-girl": 251,
"human-male-height": 232,
"human-male-height-variant": 202,
"human-male-male": 272,
"human-pregnant": 167,
"humble-bundle": 452,
"ice-cream": 160,
"ice-pop": 195,
"id-card": 180,
"identifier": 232,
"iframe": 198,
"iframe-array": 162,
"iframe-array-outline": 161,
"iframe-braces": 468,
"iframe-braces-outline": 407,
"iframe-outline": 192,
"iframe-parentheses": 324,
"iframe-parentheses-outline": 311,
"iframe-variable": 408,
"iframe-variable-outline": 394,
"image": 115,
"image-album": 145,
"image-area": 123,
"image-area-close": 132,
"image-auto-adjust": 246,
"image-broken": 261,
"image-broken-variant": 171,
"image-edit": 311,
"image-edit-outline": 372,
"image-filter": 181,
"image-filter-black-white": 104,
"image-filter-center-focus": 203,
"image-filter-center-focus-strong": 230,
"image-filter-center-focus-strong-outline": 310,
"image-filter-center-focus-weak": 270,
"image-filter-drama": 327,
"image-filter-frames": 135,
"image-filter-hdr": 67,
"image-filter-none": 123,
"image-filter-tilt-shift": 733,
"image-filter-vintage": 794,
"image-frame": 341,
"image-move": 199,
"image-multiple": 140,
"image-off": 156,
"image-off-outline": 178,
"image-outline": 148,
"image-plus": 261,
"image-search": 429,
"image-search-outline": 744,
"image-size-select-actual": 114,
"image-size-select-large": 288,
"image-size-select-small": 277,
"import": 126,
"inbox": 126,
"inbox-arrow-down": 151,
"inbox-arrow-down-outline": 213,
"inbox-arrow-up": 164,
"inbox-arrow-up-outline": 213,
"inbox-full": 190,
"inbox-full-outline": 265,
"inbox-multiple": 204,
"inbox-multiple-outline": 433,
"inbox-outline": 189,
"incognito": 828,
"infinity": 573,
"information": 104,
"information-outline": 199,
"information-variant": 496,
"instagram": 465,
"instapaper": 97,
"instrument-triangle": 165,
"internet-explorer": 650,
"invert-colors": 274,
"invert-colors-off": 399,
"ip": 166,
"ip-network": 255,
"ip-network-outline": 274,
"ipod": 228,
"islam": 239,
"island": 1142,
"itunes": 437,
"iv-bag": 250,
"jabber": 1180,
"jeepney": 437,
"jellyfish": 972,
"jellyfish-outline": 983,
"jira": 363,
"jquery": 485,
"jsfiddle": 1208,
"json": 473,
"judaism": 288,
"kabaddi": 845,
"karate": 379,
"keg": 160,
"kettle": 500,
"kettle-outline": 389,
"key": 180,
"key-change": 420,
"key-link": 408,
"key-minus": 214,
"key-outline": 380,
"key-plus": 238,
"key-remove": 311,
"key-star": 273,
"key-variant": 199,
"key-wireless": 248,
"keyboard": 234,
"keyboard-backspace": 63,
"keyboard-caps": 72,
"keyboard-close": 238,
"keyboard-esc": 280,
"keyboard-f1": 51,
"keyboard-f10": 167,
"keyboard-f11": 70,
"keyboard-f12": 154,
"keyboard-f2": 135,
"keyboard-f3": 171,
"keyboard-f4": 63,
"keyboard-f5": 116,
"keyboard-f6": 164,
"keyboard-f7": 60,
"keyboard-f8": 281,
"keyboard-f9": 162,
"keyboard-off": 351,
"keyboard-off-outline": 375,
"keyboard-outline": 265,
"keyboard-return": 65,
"keyboard-settings": 276,
"keyboard-settings-outline": 316,
"keyboard-space": 69,
"keyboard-tab": 86,
"keyboard-variant": 285,
"khanda": 859,
"kickstarter": 579,
"knife": 81,
"knife-military": 161,
"kodi": 1408,
"kotlin": 22,
"kubernetes": 4598,
"label": 123,
"label-off": 188,
"label-off-outline": 238,
"label-outline": 145,
"label-variant": 108,
"label-variant-outline": 136,
"ladybug": 414,
"lambda": 134,
"lamp": 49,
"lan": 394,
"lan-check": 315,
"lan-connect": 285,
"lan-disconnect": 390,
"lan-pending": 335,
"language-c": 488,
"language-cpp": 546,
"language-csharp": 705,
"language-css3": 158,
"language-fortran": 194,
"language-go": 1331,
"language-haskell": 202,
"language-html5": 189,
"language-java": 1296,
"language-javascript": 665,
"language-lua": 279,
"language-php": 1150,
"language-python": 780,
"language-python-text": 387,
"language-r": 707,
"language-ruby-on-rails": 899,
"language-swift": 506,
"language-typescript": 539,
"laptop": 109,
"laptop-chromebook": 56,
"laptop-mac": 204,
"laptop-off": 206,
"laptop-windows": 111,
"laravel": 1893,
"lasso": 783,
"lastfm": 694,
"lastpass": 220,
"latitude": 258,
"launch": 133,
"lava-lamp": 351,
"layers": 110,
"layers-minus": 133,
"layers-off": 248,
"layers-off-outline": 314,
"layers-outline": 133,
"layers-plus": 157,
"layers-remove": 259,
"layers-search": 444,
"layers-search-outline": 464,
"layers-triple": 169,
"layers-triple-outline": 190,
"lead-pencil": 289,
"leaf": 174,
"leaf-maple": 186,
"leak": 227,
"leak-off": 612,
"led-off": 79,
"led-on": 225,
"led-outline": 124,
"led-strip": 424,
"led-strip-variant": 575,
"led-variant-off": 177,
"led-variant-on": 77,
"led-variant-outline": 120,
"leek": 200,
"less-than": 66,
"less-than-or-equal": 82,
"library": 179,
"library-books": 149,
"library-movie": 207,
"library-music": 221,
"library-music-outline": 238,
"library-shelves": 143,
"library-video": 136,
"license": 551,
"lifebuoy": 546,
"light-switch": 137,
"lightbulb": 179,
"lightbulb-cfl": 325,
"lightbulb-cfl-off": 376,
"lightbulb-cfl-spiral": 518,
"lightbulb-group": 414,
"lightbulb-group-outline": 477,
"lightbulb-multiple": 247,
"lightbulb-multiple-outline": 301,
"lightbulb-off": 249,
"lightbulb-off-outline": 387,
"lightbulb-on": 330,
"lightbulb-on-outline": 433,
"lightbulb-outline": 279,
"lighthouse": 179,
"lighthouse-on": 184,
"link": 237,
"link-box": 315,
"link-box-outline": 331,
"link-box-variant": 1107,
"link-box-variant-outline": 1122,
"link-lock": 321,
"link-off": 347,
"link-plus": 184,
"link-variant": 716,
"link-variant-minus": 493,
"link-variant-off": 757,
"link-variant-plus": 517,
"link-variant-remove": 590,
"linkedin": 227,
"linkedin-box": 404,
"linux": 829,
"linux-mint": 913,
"litecoin": 269,
"loading": 42,
"location-enter": 97,
"location-exit": 75,
"lock": 235,
"lock-alert": 218,
"lock-clock": 351,
"lock-open": 221,
"lock-open-outline": 238,
"lock-open-variant": 290,
"lock-open-variant-outline": 280,
"lock-outline": 266,
"lock-pattern": 469,
"lock-plus": 222,
"lock-question": 748,
"lock-reset": 581,
"lock-smart": 283,
"locker": 142,
"locker-multiple": 202,
"login": 130,
"login-variant": 182,
"logout": 128,
"logout-variant": 201,
"longitude": 319,
"looks": 176,
"loupe": 211,
"lumx": 314,
"lungs": 582,
"lyft": 935,
"magnet": 103,
"magnet-on": 135,
"magnify": 257,
"magnify-close": 274,
"magnify-minus": 161,
"magnify-minus-cursor": 203,
"magnify-minus-outline": 274,
"magnify-plus": 181,
"magnify-plus-cursor": 226,
"magnify-plus-outline": 296,
"magnify-remove-cursor": 333,
"magnify-remove-outline": 372,
"magnify-scan": 565,
"mail": 125,
"mail-ru": 729,
"mailbox": 141,
"mailbox-open": 129,
"mailbox-open-outline": 188,
"mailbox-open-up": 127,
"mailbox-open-up-outline": 249,
"mailbox-outline": 197,
"mailbox-up": 136,
"mailbox-up-outline": 195,
"map": 229,
"map-check": 345,
"map-check-outline": 388,
"map-clock": 401,
"map-clock-outline": 504,
"map-legend": 445,
"map-marker": 167,
"map-marker-alert": 115,
"map-marker-alert-outline": 179,
"map-marker-check": 146,
"map-marker-circle": 341,
"map-marker-distance": 796,
"map-marker-down": 100,
"map-marker-minus": 183,
"map-marker-multiple": 275,
"map-marker-multiple-outline": 450,
"map-marker-off": 326,
"map-marker-outline": 236,
"map-marker-path": 751,
"map-marker-plus": 207,
"map-marker-question": 295,
"map-marker-question-outline": 418,
"map-marker-radius": 395,
"map-marker-remove": 293,
"map-marker-remove-variant": 205,
"map-marker-up": 98,
"map-minus": 192,
"map-outline": 284,
"map-plus": 326,
"map-search": 505,
"map-search-outline": 561,
"mapbox": 325,
"margin": 336,
"markdown": 284,
"markdown-outline": 449,
"marker": 285,
"marker-cancel": 686,
"marker-check": 178,
"mastodon": 807,
"mastodon-variant": 841,
"material-design": 610,
"material-ui": 234,
"math-compass": 321,
"math-cos": 286,
"math-integral": 299,
"math-integral-box": 423,
"math-log": 224,
"math-norm": 33,
"math-norm-box": 125,
"math-sin": 169,
"math-tan": 134,
"matrix": 492,
"maxcdn": 224,
"medal": 279,
"medical-bag": 180,
"meditation": 394,
"medium": 376,
"meetup": 3794,
"memory": 210,
"menu": 46,
"menu-down": 20,
"menu-down-outline": 63,
"menu-left": 19,
"menu-left-outline": 64,
"menu-open": 107,
"menu-right": 21,
"menu-right-outline": 62,
"menu-swap": 38,
"menu-swap-outline": 122,
"menu-up": 20,
"menu-up-outline": 64,
"merge": 137,
"message": 71,
"message-alert": 100,
"message-alert-outline": 125,
"message-bulleted": 157,
"message-bulleted-off": 194,
"message-draw": 199,
"message-image": 105,
"message-image-outline": 132,
"message-lock": 259,
"message-lock-outline": 278,
"message-minus": 96,
"message-minus-outline": 113,
"message-outline": 83,
"message-plus": 106,
"message-plus-outline": 133,
"message-processing": 110,
"message-processing-outline": 137,
"message-reply": 71,
"message-reply-text": 113,
"message-settings": 117,
"message-settings-outline": 149,
"message-settings-variant": 931,
"message-settings-variant-outline": 962,
"message-text": 103,
"message-text-clock": 414,
"message-text-clock-outline": 450,
"message-text-lock": 302,
"message-text-lock-outline": 311,
"message-text-outline": 123,
"message-video": 104,
"meteor": 692,
"metronome": 393,
"metronome-tick": 222,
"micro-sd": 126,
"microphone": 181,
"microphone-minus": 189,
"microphone-off": 366,
"microphone-outline": 340,
"microphone-plus": 210,
"microphone-settings": 249,
"microphone-variant": 323,
"microphone-variant-off": 484,
"microscope": 322,
"microsoft": 66,
"microsoft-dynamics": 65,
"microwave": 240,
"middleware": 135,
"middleware-outline": 227,
"midi": 162,
"midi-port": 784,
"mine": 460,
"minecraft": 135,
"mini-sd": 129,
"minidisc": 287,
"minus": 18,
"minus-box": 99,
"minus-box-multiple": 148,
"minus-box-multiple-outline": 164,
"minus-box-outline": 112,
"minus-circle": 90,
"minus-circle-outline": 180,
"minus-network": 194,
"minus-network-outline": 204,
"mirror": 313,
"mixcloud": 1334,
"mixed-martial-arts": 488,
"mixed-reality": 289,
"mixer": 469,
"molecule": 694,
"monitor": 121,
"monitor-cellphone": 206,
"monitor-cellphone-star": 295,
"monitor-clean": 293,
"monitor-dashboard": 202,
"monitor-lock": 330,
"monitor-multiple": 161,
"monitor-off": 182,
"monitor-screenshot": 156,
"monitor-speaker": 464,
"monitor-speaker-off": 611,
"monitor-star": 214,
"moon-first-quarter": 26,
"moon-full": 40,
"moon-last-quarter": 24,
"moon-new": 79,
"moon-waning-crescent": 64,
"moon-waning-gibbous": 74,
"moon-waxing-crescent": 66,
"moon-waxing-gibbous": 68,
"moped": 362,
"more": 403,
"mother-nurse": 659,
"motion-sensor": 436,
"motorbike": 462,
"mouse": 115,
"mouse-bluetooth": 307,
"mouse-off": 283,
"mouse-variant": 264,
"mouse-variant-off": 407,
"move-resize": 255,
"move-resize-variant": 162,
"movie": 106,
"movie-edit": 326,
"movie-edit-outline": 342,
"movie-filter": 284,
"movie-filter-outline": 294,
"movie-open": 276,
"movie-open-outline": 302,
"movie-outline": 127,
"movie-roll": 824,
"movie-search": 420,
"movie-search-outline": 388,
"muffin": 168,
"multiplication": 145,
"multiplication-box": 234,
"mushroom": 370,
"mushroom-outline": 482,
"music": 220,
"music-accidental-double-flat": 407,
"music-accidental-double-sharp": 134,
"music-accidental-flat": 205,
"music-accidental-natural": 87,
"music-accidental-sharp": 191,
"music-box": 188,
"music-box-outline": 204,
"music-circle": 190,
"music-circle-outline": 257,
"music-clef-alto": 197,
"music-clef-bass": 253,
"music-clef-treble": 652,
"music-note": 99,
"music-note-bluetooth": 329,
"music-note-bluetooth-off": 406,
"music-note-eighth": 99,
"music-note-eighth-dotted": 87,
"music-note-half": 93,
"music-note-half-dotted": 145,
"music-note-off": 165,
"music-note-off-outline": 205,
"music-note-outline": 73,
"music-note-plus": 133,
"music-note-quarter": 94,
"music-note-quarter-dotted": 108,
"music-note-sixteenth": 110,
"music-note-sixteenth-dotted": 98,
"music-note-whole": 77,
"music-note-whole-dotted": 128,
"music-off": 292,
"music-rest-eighth": 99,
"music-rest-half": 28,
"music-rest-quarter": 352,
"music-rest-sixteenth": 190,
"music-rest-whole": 28,
"nail": 46,
"nas": 275,
"nativescript": 323,
"nature": 150,
"nature-people": 286,
"navigation": 55,
"near-me": 49,
"necklace": 210,
"needle": 305,
"netflix": 125,
"network": 178,
"network-off": 301,
"network-off-outline": 351,
"network-outline": 189,
"network-router": 277,
"network-strength-1": 30,
"network-strength-1-alert": 66,
"network-strength-2": 30,
"network-strength-2-alert": 66,
"network-strength-3": 29,
"network-strength-3-alert": 65,
"network-strength-4": 10,
"network-strength-4-alert": 44,
"network-strength-off": 81,
"network-strength-off-outline": 129,
"network-strength-outline": 23,
"new-box": 317,
"newspaper": 205,
"newspaper-minus": 302,
"newspaper-plus": 326,
"newspaper-variant": 95,
"newspaper-variant-multiple": 131,
"newspaper-variant-multiple-outline": 147,
"newspaper-variant-outline": 115,
"nfc": 949,
"nfc-off": 949,
"nfc-search-variant": 622,
"nfc-tap": 253,
"nfc-variant": 255,
"nfc-variant-off": 362,
"ninja": 537,
"nintendo-switch": 532,
"nix": 435,
"nodejs": 1426,
"noodles": 222,
"not-equal": 62,
"not-equal-variant": 131,
"note": 87,
"note-multiple": 123,
"note-multiple-outline": 143,
"note-outline": 115,
"note-plus": 133,
"note-plus-outline": 153,
"note-text": 127,
"note-text-outline": 112,
"notebook": 189,
"notebook-multiple": 294,
"notebook-outline": 202,
"notification-clear-all": 37,
"npm": 133,
"npm-variant": 26,
"npm-variant-outline": 40,
"nuke": 379,
"null": 400,
"numeric": 243,
"numeric-0": 94,
"numeric-0-box": 169,
"numeric-0-box-multiple": 204,
"numeric-0-box-multiple-outline": 220,
"numeric-0-box-outline": 185,
"numeric-0-circle": 169,
"numeric-0-circle-outline": 236,
"numeric-1": 22,
"numeric-1-box": 95,
"numeric-1-box-multiple": 132,
"numeric-1-box-multiple-outline": 142,
"numeric-1-box-outline": 107,
"numeric-1-circle": 97,
"numeric-1-circle-outline": 164,
"numeric-10": 139,
"numeric-10-box": 217,
"numeric-10-box-multiple": 276,
"numeric-10-box-multiple-outline": 290,
"numeric-10-box-outline": 225,
"numeric-10-circle": 202,
"numeric-10-circle-outline": 267,
"numeric-2": 90,
"numeric-2-box": 170,
"numeric-2-box-multiple": 200,
"numeric-2-box-multiple-outline": 210,
"numeric-2-box-outline": 176,
"numeric-2-circle": 165,
"numeric-2-circle-outline": 232,
"numeric-3": 123,
"numeric-3-box": 219,
"numeric-3-box-multiple": 233,
"numeric-3-box-multiple-outline": 244,
"numeric-3-box-outline": 212,
"numeric-3-circle": 199,
"numeric-3-circle-outline": 261,
"numeric-4": 32,
"numeric-4-box": 106,
"numeric-4-box-multiple": 143,
"numeric-4-box-multiple-outline": 153,
"numeric-4-box-outline": 118,
"numeric-4-circle": 107,
"numeric-4-circle-outline": 174,
"numeric-5": 69,
"numeric-5-box": 150,
"numeric-5-box-multiple": 186,
"numeric-5-box-multiple-outline": 197,
"numeric-5-box-outline": 166,
"numeric-5-circle": 144,
"numeric-5-circle-outline": 211,
"numeric-6": 108,
"numeric-6-box": 191,
"numeric-6-box-multiple": 230,
"numeric-6-box-multiple-outline": 240,
"numeric-6-box-outline": 206,
"numeric-6-circle": 183,
"numeric-6-circle-outline": 250,
"numeric-7": 25,
"numeric-7-box": 104,
"numeric-7-box-multiple": 140,
"numeric-7-box-multiple-outline": 150,
"numeric-7-box-outline": 114,
"numeric-7-circle": 104,
"numeric-7-circle-outline": 171,
"numeric-8": 214,
"numeric-8-box": 295,
"numeric-8-box-multiple": 330,
"numeric-8-box-multiple-outline": 338,
"numeric-8-box-outline": 303,
"numeric-8-circle": 295,
"numeric-8-circle-outline": 352,
"numeric-9": 107,
"numeric-9-box": 191,
"numeric-9-box-multiple": 226,
"numeric-9-box-multiple-outline": 237,
"numeric-9-box-outline": 201,
"numeric-9-circle": 182,
"numeric-9-circle-outline": 249,
"numeric-9-plus": 164,
"numeric-9-plus-box": 227,
"numeric-9-plus-box-multiple": 261,
"numeric-9-plus-box-multiple-outline": 266,
"numeric-9-plus-box-outline": 237,
"numeric-9-plus-circle": 227,
"numeric-9-plus-circle-outline": 294,
"numeric-negative-1": 39,
"nut": 356,
"nutrition": 186,
"nuxt": 453,
"oar": 175,
"ocarina": 693,
"ocr": 274,
"octagon": 54,
"octagon-outline": 122,
"octagram": 169,
"octagram-outline": 318,
"odnoklassniki": 775,
"offer": 205,
"office": 73,
"office-building": 200,
"oil": 541,
"oil-lamp": 258,
"oil-level": 1169,
"oil-temperature": 545,
"omega": 428,
"one-up": 677,
"onedrive": 674,
"onenote": 230,
"onepassword": 308,
"opacity": 278,
"open-in-app": 126,
"open-in-new": 132,
"open-source-initiative": 885,
"openid": 275,
"opera": 373,
"orbit": 468,
"origin": 457,
"ornament": 504,
"ornament-variant": 619,
"outdoor-lamp": 212,
"outlook": 379,
"overscan": 196,
"owl": 716,
"pac-man": 174,
"package": 223,
"package-down": 242,
"package-up": 245,
"package-variant": 628,
"package-variant-closed": 456,
"page-first": 75,
"page-last": 72,
"page-layout-body": 89,
"page-layout-footer": 91,
"page-layout-header": 88,
"page-layout-header-footer": 129,
"page-layout-sidebar-left": 89,
"page-layout-sidebar-right": 91,
"page-next": 165,
"page-next-outline": 174,
"page-previous": 164,
"page-previous-outline": 172,
"palette": 556,
"palette-advanced": 171,
"palette-outline": 747,
"palette-swatch": 502,
"palm-tree": 678,
"pan": 152,
"pan-bottom-left": 101,
"pan-bottom-right": 104,
"pan-down": 92,
"pan-horizontal": 110,
"pan-left": 89,
"pan-right": 92,
"pan-top-left": 99,
"pan-top-right": 102,
"pan-up": 92,
"pan-vertical": 113,
"panda": 1038,
"pandora": 98,
"panorama": 110,
"panorama-fisheye": 184,
"panorama-horizontal": 473,
"panorama-vertical": 474,
"panorama-wide-angle": 533,
"paper-cut-vertical": 691,
"paper-roll": 397,
"paper-roll-outline": 427,
"paperclip": 282,
"parachute": 405,
"parachute-outline": 575,
"parking": 109,
"party-popper": 800,
"passport": 1001,
"passport-biometric": 278,
"pasta": 501,
"patio-heater": 175,
"patreon": 143,
"pause": 30,
"pause-circle": 103,
"pause-circle-outline": 175,
"pause-octagon": 96,
"pause-octagon-outline": 149,
"paw": 780,
"paw-off": 729,
"paypal": 972,
"pdf-box": 305,
"peace": 335,
"peanut": 347,
"peanut-off": 488,
"peanut-off-outline": 989,
"peanut-outline": 918,
"pen": 333,
"pen-lock": 435,
"pen-minus": 278,
"pen-off": 340,
"pen-plus": 294,
"pen-remove": 382,
"pencil": 147,
"pencil-box": 245,
"pencil-box-multiple": 321,
"pencil-box-multiple-outline": 320,
"pencil-box-outline": 261,
"pencil-circle": 293,
"pencil-circle-outline": 305,
"pencil-lock": 359,
"pencil-lock-outline": 360,
"pencil-minus": 134,
"pencil-minus-outline": 203,
"pencil-off": 292,
"pencil-off-outline": 296,
"pencil-outline": 226,
"pencil-plus": 150,
"pencil-plus-outline": 219,
"pencil-remove": 216,
"pencil-remove-outline": 285,
"penguin": 510,
"pentagon": 42,
"pentagon-outline": 85,
"percent": 169,
"percent-outline": 408,
"periodic-table": 418,
"periodic-table-co2": 265,
"periscope": 306,
"perspective-less": 110,
"perspective-more": 110,
"pharmacy": 111,
"phone": 279,
"phone-alert": 316,
"phone-alert-outline": 434,
"phone-bluetooth": 445,
"phone-bluetooth-outline": 570,
"phone-cancel": 583,
"phone-cancel-outline": 672,
"phone-check": 296,
"phone-check-outline": 428,
"phone-classic": 728,
"phone-classic-off": 844,
"phone-forward": 305,
"phone-forward-outline": 430,
"phone-hangup": 521,
"phone-hangup-outline": 513,
"phone-in-talk": 369,
"phone-in-talk-outline": 494,
"phone-incoming": 317,
"phone-incoming-outline": 446,
"phone-lock": 471,
"phone-lock-outline": 596,
"phone-log": 355,
"phone-log-outline": 481,
"phone-message": 331,
"phone-message-outline": 542,
"phone-minus": 281,
"phone-minus-outline": 413,
"phone-missed": 595,
"phone-missed-outline": 488,
"phone-off": 412,
"phone-off-outline": 522,
"phone-outgoing": 317,
"phone-outgoing-outline": 446,
"phone-outline": 426,
"phone-paused": 306,
"phone-paused-outline": 431,
"phone-plus": 302,
"phone-plus-outline": 434,
"phone-return": 363,
"phone-return-outline": 482,
"phone-ring": 517,
"phone-ring-outline": 679,
"phone-rotate-landscape": 233,
"phone-rotate-portrait": 233,
"phone-settings": 320,
"phone-settings-outline": 445,
"phone-voip": 668,
"pi": 95,
"pi-box": 171,
"pi-hole": 646,
"piano": 155,
"pickaxe": 312,
"picture-in-picture-bottom-right": 119,
"picture-in-picture-bottom-right-outline": 136,
"picture-in-picture-top-right": 108,
"picture-in-picture-top-right-outline": 135,
"pier": 321,
"pier-crane": 887,
"pig": 974,
"pig-variant": 302,
"piggy-bank": 433,
"pill": 324,
"pillar": 127,
"pin": 59,
"pin-off": 123,
"pin-off-outline": 161,
"pin-outline": 96,
"pine-tree": 63,
"pine-tree-box": 138,
"pinterest": 741,
"pinterest-box": 702,
"pinwheel": 209,
"pinwheel-outline": 473,
"pipe": 99,
"pipe-disconnected": 117,
"pipe-leak": 153,
"pirate": 857,
"pistol": 292,
"piston": 337,
"pizza": 207,
"play": 30,
"play-box": 108,
"play-box-outline": 113,
"play-circle": 94,
"play-circle-outline": 194,
"play-network": 194,
"play-network-outline": 209,
"play-outline": 50,
"play-pause": 40,
"play-protected-content": 135,
"play-speed": 496,
"playlist-check": 102,
"playlist-edit": 261,
"playlist-minus": 58,
"playlist-music": 144,
"playlist-music-outline": 214,
"playlist-play": 67,
"playlist-plus": 82,
"playlist-remove": 190,
"playlist-star": 158,
"playstation": 684,
"plex": 147,
"plus": 41,
"plus-box": 122,
"plus-box-multiple": 145,
"plus-box-multiple-outline": 186,
"plus-box-outline": 134,
"plus-circle": 113,
"plus-circle-multiple-outline": 333,
"plus-circle-outline": 207,
"plus-minus": 54,
"plus-minus-box": 132,
"plus-network": 216,
"plus-network-outline": 227,
"plus-one": 77,
"plus-outline": 75,
"plus-thick": 41,
"pocket": 767,
"podcast": 658,
"podium": 351,
"podium-bronze": 182,
"podium-gold": 183,
"podium-silver": 188,
"point-of-sale": 454,
"pokeball": 389,
"pokemon-go": 550,
"poker-chip": 653,
"polaroid": 89,
"police-badge": 299,
"police-badge-outline": 607,
"poll": 50,
"poll-box": 126,
"poll-box-outline": 176,
"polymer": 87,
"pool": 492,
"popcorn": 504,
"post": 65,
"post-outline": 81,
"postage-stamp": 537,
"pot": 145,
"pot-mix": 91,
"pound": 233,
"pound-box": 304,
"pound-box-outline": 279,
"power": 213,
"power-cycle": 153,
"power-off": 136,
"power-on": 17,
"power-plug": 84,
"power-plug-off": 343,
"power-settings": 259,
"power-sleep": 173,
"power-socket": 97,
"power-socket-au": 285,
"power-socket-de": 407,
"power-socket-eu": 376,
"power-socket-fr": 465,
"power-socket-jp": 225,
"power-socket-uk": 156,
"power-socket-us": 290,
"power-standby": 260,
"powershell": 563,
"prescription": 215,
"presentation": 116,
"presentation-play": 324,
"printer": 154,
"printer-3d": 538,
"printer-3d-nozzle": 100,
"printer-3d-nozzle-alert": 151,
"printer-3d-nozzle-alert-outline": 192,
"printer-3d-nozzle-outline": 141,
"printer-alert": 193,
"printer-check": 301,
"printer-off": 243,
"printer-pos": 76,
"printer-settings": 209,
"printer-wireless": 325,
"priority-high": 171,
"priority-low": 172,
"professional-hexagon": 803,
"progress-alert": 502,
"progress-check": 545,
"progress-clock": 519,
"progress-close": 572,
"progress-download": 511,
"progress-upload": 510,
"progress-wrench": 743,
"projector": 446,
"projector-screen": 170,
"protocol": 212,
"publish": 43,
"pulse": 105,
"pumpkin": 344,
"purse": 157,
"purse-outline": 175,
"puzzle": 308,
"puzzle-outline": 544,
"qi": 680,
"qqchat": 637,
"qrcode": 233,
"qrcode-edit": 357,
"qrcode-minus": 205,
"qrcode-plus": 226,
"qrcode-remove": 326,
"qrcode-scan": 378,
"quadcopter": 1725,
"quality-high": 250,
"quality-low": 246,
"quality-medium": 299,
"quicktime": 356,
"quora": 1030,
"rabbit": 1040,
"racing-helmet": 452,
"racquetball": 737,
"radar": 466,
"radiator": 630,
"radiator-disabled": 358,
"radiator-off": 711,
"radio": 208,
"radio-am": 133,
"radio-fm": 96,
"radio-handheld": 146,
"radio-off": 310,
"radio-tower": 534,
"radioactive": 345,
"radioactive-off": 406,
"radiobox-blank": 144,
"radiobox-marked": 211,
"radius": 197,
"radius-outline": 265,
"railroad-light": 588,
"raspberry-pi": 282,
"ray-end": 103,
"ray-end-arrow": 115,
"ray-start": 94,
"ray-start-arrow": 110,
"ray-start-end": 180,
"ray-vertex": 134,
"react": 2323,
"read": 193,
"receipt": 222,
"record": 93,
"record-circle": 143,
"record-circle-outline": 210,
"record-player": 380,
"record-rec": 321,
"rectangle": 15,
"rectangle-outline": 31,
"recycle": 490,
"reddit": 1139,
"redhat": 2740,
"redo": 157,
"redo-variant": 179,
"reflect-horizontal": 334,
"reflect-vertical": 382,
"refresh": 210,
"regex": 602,
"registered-trademark": 540,
"relative-scale": 158,
"reload": 213,
"reload-alert": 201,
"reminder": 643,
"remote": 405,
"remote-desktop": 205,
"remote-off": 469,
"remote-tv": 214,
"remote-tv-off": 263,
"rename-box": 213,
"reorder-horizontal": 61,
"reorder-vertical": 60,
"repeat": 65,
"repeat-off": 153,
"repeat-once": 93,
"replay": 116,
"reply": 65,
"reply-all": 93,
"reply-all-outline": 188,
"reply-circle": 139,
"reply-outline": 158,
"reproduction": 585,
"resistor": 73,
"resistor-nodes": 532,
"resize": 108,
"resize-bottom-right": 109,
"responsive": 424,
"restart": 323,
"restart-alert": 434,
"restart-off": 392,
"restore": 194,
"restore-alert": 203,
"rewind": 38,
"rewind-10": 283,
"rewind-30": 383,
"rewind-5": 232,
"rewind-outline": 91,
"rhombus": 163,
"rhombus-medium": 191,
"rhombus-outline": 201,
"rhombus-split": 318,
"ribbon": 303,
"rice": 270,
"ring": 218,
"rivet": 208,
"road": 59,
"road-variant": 204,
"robber": 469,
"robot": 434,
"robot-industrial": 381,
"robot-mower": 280,
"robot-mower-outline": 386,
"robot-vacuum": 573,
"robot-vacuum-variant": 240,
"rocket": 455,
"roller-skate": 306,
"rollerblade": 401,
"rollupjs": 489,
"roman-numeral-1": 39,
"roman-numeral-10": 64,
"roman-numeral-2": 74,
"roman-numeral-3": 108,
"roman-numeral-4": 72,
"roman-numeral-5": 35,
"roman-numeral-6": 70,
"roman-numeral-7": 106,
"roman-numeral-8": 140,
"roman-numeral-9": 102,
"room-service": 162,
"room-service-outline": 232,
"rotate-3d": 2134,
"rotate-3d-variant": 245,
"rotate-left": 405,
"rotate-left-variant": 193,
"rotate-orbit": 635,
"rotate-right": 416,
"rotate-right-variant": 192,
"rounded-corner": 238,
"router": 284,
"router-wireless": 395,
"router-wireless-settings": 446,
"routes": 111,
"routes-clock": 330,
"rowing": 404,
"rss": 242,
"rss-box": 251,
"rss-off": 367,
"ruby": 375,
"rugby": 688,
"ruler": 308,
"ruler-square": 183,
"ruler-square-compass": 347,
"run": 362,
"run-fast": 433,
"rv-truck": 259,
"sack": 123,
"sack-percent": 367,
"safe": 316,
"safe-square": 571,
"safe-square-outline": 590,
"safety-goggles": 407,
"sailing": 32,
"sale": 440,
"salesforce": 498,
"sass": 1214,
"satellite": 178,
"satellite-uplink": 412,
"satellite-variant": 485,
"sausage": 210,
"saw-blade": 343,
"saxophone": 302,
"scale": 445,
"scale-balance": 390,
"scale-bathroom": 152,
"scale-off": 363,
"scanner": 152,
"scanner-off": 294,
"scatter-plot": 245,
"scatter-plot-outline": 486,
"school": 82,
"school-outline": 151,
"scissors-cutting": 743,
"scooter": 810,
"scoreboard": 488,
"scoreboard-outline": 496,
"screen-rotation": 425,
"screen-rotation-lock": 571,
"screw-flat-top": 263,
"screw-lag": 180,
"screw-machine-flat-top": 260,
"screw-machine-round-top": 237,
"screw-round-top": 240,
"screwdriver": 228,
"script": 219,
"script-outline": 180,
"script-text": 248,
"script-text-outline": 225,
"sd": 106,
"seal": 284,
"seal-variant": 776,
"search-web": 1028,
"seat": 109,
"seat-flat": 174,
"seat-flat-angled": 261,
"seat-individual-suite": 107,
"seat-legroom-extra": 226,
"seat-legroom-normal": 160,
"seat-legroom-reduced": 189,
"seat-outline": 121,
"seat-passenger": 311,
"seat-recline-extra": 461,
"seat-recline-normal": 399,
"seatbelt": 837,
"security": 131,
"security-network": 239,
"seed": 140,
"seed-outline": 288,
"segment": 38,
"select": 307,
"select-all": 277,
"select-color": 569,
"select-compare": 229,
"select-drag": 175,
"select-group": 303,
"select-inverse": 159,
"select-marker": 467,
"select-multiple": 364,
"select-multiple-marker": 497,
"select-off": 298,
"select-place": 276,
"select-search": 509,
"selection": 217,
"selection-drag": 162,
"selection-ellipse": 775,
"selection-ellipse-arrow-inside": 535,
"selection-marker": 445,
"selection-multiple-marker": 544,
"selection-mutliple": 315,
"selection-off": 273,
"selection-search": 512,
"send": 33,
"send-check": 76,
"send-check-outline": 127,
"send-circle": 125,
"send-circle-outline": 192,
"send-clock": 206,
"send-clock-outline": 307,
"send-lock": 226,
"send-lock-outline": 325,
"send-outline": 103,
"serial-port": 80,
"server": 313,
"server-minus": 114,
"server-network": 304,
"server-network-off": 447,
"server-off": 450,
"server-plus": 138,
"server-remove": 211,
"server-security": 460,
"set-all": 484,
"set-center": 450,
"set-center-right": 432,
"set-left": 428,
"set-left-center": 429,
"set-left-right": 282,
"set-none": 560,
"set-right": 383,
"set-top-box": 317,
"settings": 907,
"settings-box": 1001,
"settings-helper": 52,
"settings-outline": 1233,
"settings-transfer": 689,
"settings-transfer-outline": 1299,
"shaker": 495,
"shaker-outline": 644,
"shape": 134,
"shape-circle-plus": 141,
"shape-outline": 281,
"shape-oval-plus": 229,
"shape-plus": 157,
"shape-polygon-plus": 105,
"shape-rectangle-plus": 69,
"shape-square-plus": 69,
"share": 62,
"share-all": 94,
"share-all-outline": 184,
"share-circle": 136,
"share-off": 153,
"share-off-outline": 234,
"share-outline": 175,
"share-variant": 442,
"sheep": 1181,
"shield": 72,
"shield-account": 322,
"shield-account-outline": 535,
"shield-airplane": 273,
"shield-airplane-outline": 353,
"shield-alert": 95,
"shield-alert-outline": 186,
"shield-car": 428,
"shield-check": 119,
"shield-check-outline": 198,
"shield-cross": 104,
"shield-cross-outline": 176,
"shield-edit": 213,
"shield-edit-outline": 287,
"shield-half-full": 121,
"shield-home": 114,
"shield-home-outline": 193,
"shield-key": 251,
"shield-key-outline": 330,
"shield-link-variant": 1112,
"shield-link-variant-outline": 1187,
"shield-lock": 304,
"shield-lock-outline": 388,
"shield-off": 172,
"shield-off-outline": 313,
"shield-outline": 152,
"shield-plus": 199,
"shield-plus-outline": 286,
"shield-refresh": 350,
"shield-refresh-outline": 373,
"shield-remove": 293,
"shield-remove-outline": 380,
"shield-search": 337,
"shield-star": 181,
"shield-star-outline": 262,
"shield-sun": 690,
"shield-sun-outline": 770,
"ship-wheel": 1311,
"shoe-formal": 123,
"shoe-heel": 92,
"shoe-print": 473,
"shopify": 1208,
"shopping": 226,
"shopping-music": 175,
"shopping-outline": 269,
"shopping-search": 388,
"shovel": 322,
"shovel-off": 398,
"shower": 367,
"shower-head": 914,
"shredder": 200,
"shuffle": 178,
"shuffle-disabled": 60,
"shuffle-variant": 165,
"sigma": 56,
"sigma-lower": 205,
"sign-caution": 170,
"sign-direction": 101,
"sign-direction-minus": 94,
"sign-direction-plus": 150,
"sign-direction-remove": 243,
"sign-real-estate": 155,
"sign-text": 166,
"signal": 57,
"signal-2g": 199,
"signal-3g": 238,
"signal-4g": 151,
"signal-5g": 206,
"signal-cellular-1": 105,
"signal-cellular-2": 75,
"signal-cellular-3": 47,
"signal-cellular-outline": 132,
"signal-distance-variant": 141,
"signal-hspa": 68,
"signal-hspa-plus": 89,
"signal-off": 149,
"signal-variant": 176,
"signature": 153,
"signature-freehand": 910,
"signature-image": 249,
"signature-text": 393,
"silo": 219,
"silverware": 293,
"silverware-clean": 469,
"silverware-fork": 247,
"silverware-fork-knife": 141,
"silverware-spoon": 181,
"silverware-variant": 357,
"sim": 176,
"sim-alert": 96,
"sim-off": 159,
"sina-weibo": 837,
"sitemap": 137,
"skate": 268,
"skew-less": 82,
"skew-more": 82,
"skip-backward": 38,
"skip-backward-outline": 101,
"skip-forward": 40,
"skip-forward-outline": 100,
"skip-next": 35,
"skip-next-circle": 104,
"skip-next-circle-outline": 192,
"skip-next-outline": 55,
"skip-previous": 37,
"skip-previous-circle": 101,
"skip-previous-circle-outline": 192,
"skip-previous-outline": 59,
"skull": 283,
"skull-crossbones": 438,
"skull-crossbones-outline": 521,
"skull-outline": 379,
"skype": 747,
"skype-business": 1013,
"slack": 515,
"slackware": 704,
"slash-forward": 25,
"slash-forward-box": 118,
"sleep": 132,
"sleep-off": 183,
"slope-downhill": 218,
"slope-uphill": 225,
"slot-machine": 363,
"slot-machine-outline": 378,
"smart-card": 207,
"smart-card-outline": 238,
"smart-card-reader": 217,
"smart-card-reader-outline": 224,
"smog": 303,
"smoke-detector": 230,
"smoking": 494,
"smoking-off": 482,
"snapchat": 1106,
"snowflake": 592,
"snowflake-alert": 439,
"snowflake-variant": 402,
"snowman": 581,
"soccer": 707,
"soccer-field": 428,
"sofa": 223,
"solar-panel": 171,
"solar-panel-large": 292,
"solar-power": 227,
"soldering-iron": 403,
"solid": 12,
"sort": 100,
"sort-alphabetical": 280,
"sort-alphabetical-ascending": 246,
"sort-alphabetical-descending": 250,
"sort-ascending": 81,
"sort-descending": 84,
"sort-numeric": 1350,
"sort-variant": 40,
"sort-variant-lock": 151,
"sort-variant-lock-open": 139,
"sort-variant-remove": 183,
"soundcloud": 673,
"source-branch": 563,
"source-commit": 196,
"source-commit-end": 163,
"source-commit-end-local": 150,
"source-commit-local": 168,
"source-commit-next-local": 181,
"source-commit-start": 168,
"source-commit-start-next-local": 153,
"source-fork": 734,
"source-merge": 526,
"source-pull": 513,
"source-repository": 849,
"source-repository-multiple": 897,
"soy-sauce": 278,
"spa": 245,
"spa-outline": 446,
"space-invaders": 185,
"spade": 264,
"speaker": 299,
"speaker-bluetooth": 454,
"speaker-multiple": 310,
"speaker-off": 437,
"speaker-wireless": 570,
"speedometer": 533,
"speedometer-medium": 507,
"speedometer-slow": 522,
"spellcheck": 147,
"spider": 404,
"spider-thread": 505,
"spider-web": 1799,
"spotify": 651,
"spotlight": 437,
"spotlight-beam": 285,
"spray": 190,
"spray-bottle": 133,
"sprinkler": 143,
"sprinkler-variant": 232,
"sprout": 277,
"sprout-outline": 584,
"square": 12,
"square-edit-outline": 261,
"square-inc": 257,
"square-inc-cash": 613,
"square-medium": 16,
"square-medium-outline": 34,
"square-outline": 29,
"square-root": 207,
"square-root-box": 271,
"square-small": 19,
"squeegee": 84,
"ssh": 375,
"stack-exchange": 193,
"stack-overflow": 303,
"stadium": 327,
"stadium-variant": 430,
"stairs": 49,
"stamper": 125,
"standard-definition": 191,
"star": 100,
"star-box": 190,
"star-box-multiple": 230,
"star-box-multiple-outline": 244,
"star-box-outline": 204,
"star-circle": 183,
"star-circle-outline": 259,
"star-face": 414,
"star-four-points": 48,
"star-four-points-outline": 133,
"star-half": 158,
"star-off": 160,
"star-outline": 207,
"star-three-points": 51,
"star-three-points-outline": 110,
"state-machine": 467,
"steam": 899,
"steam-box": 887,
"steering": 602,
"steering-off": 739,
"step-backward": 26,
"step-backward-2": 51,
"step-forward": 25,
"step-forward-2": 47,
"stethoscope": 402,
"sticker": 488,
"sticker-emoji": 655,
"stocking": 208,
"stomach": 311,
"stop": 17,
"stop-circle": 87,
"stop-circle-outline": 178,
"store": 76,
"store-24-hour": 100,
"storefront": 1082,
"stove": 435,
"strategy": 465,
"strava": 138,
"stretch-to-page": 321,
"stretch-to-page-outline": 336,
"string-lights": 901,
"string-lights-off": 1083,
"subdirectory-arrow-left": 70,
"subdirectory-arrow-right": 72,
"subtitles": 144,
"subtitles-outline": 159,
"subway": 456,
"subway-alert-variant": 372,
"subway-variant": 333,
"summit": 59,
"sunglasses": 477,
"surround-sound": 497,
"surround-sound-2-0": 240,
"surround-sound-3-1": 169,
"surround-sound-5-1": 187,
"surround-sound-7-1": 132,
"svg": 896,
"swap-horizontal": 54,
"swap-horizontal-bold": 65,
"swap-horizontal-circle": 139,
"swap-horizontal-circle-outline": 205,
"swap-horizontal-variant": 172,
"swap-vertical": 55,
"swap-vertical-bold": 66,
"swap-vertical-circle": 137,
"swap-vertical-circle-outline": 205,
"swap-vertical-variant": 173,
"swim": 440,
"switch": 232,
"sword": 236,
"sword-cross": 459,
"symfony": 1407,
"sync": 226,
"sync-alert": 300,
"sync-off": 497,
"tab": 97,
"tab-minus": 110,
"tab-plus": 135,
"tab-remove": 232,
"tab-unselected": 276,
"table": 139,
"table-border": 281,
"table-chair": 104,
"table-column": 120,
"table-column-plus-after": 133,
"table-column-plus-before": 133,
"table-column-remove": 233,
"table-column-width": 170,
"table-edit": 310,
"table-eye": 609,
"table-headers-eye": 281,
"table-headers-eye-off": 473,
"table-large": 223,
"table-large-plus": 356,
"table-large-remove": 458,
"table-merge-cells": 146,
"table-of-contents": 97,
"table-plus": 228,
"table-remove": 330,
"table-row": 130,
"table-row-height": 165,
"table-row-plus-after": 165,
"table-row-plus-before": 170,
"table-row-remove": 228,
"table-search": 565,
"table-settings": 190,
"table-tennis": 266,
"tablet": 98,
"tablet-android": 113,
"tablet-cellphone": 174,
"tablet-dashboard": 162,
"tablet-ipad": 219,
"taco": 284,
"tag": 331,
"tag-faces": 466,
"tag-heart": 545,
"tag-heart-outline": 583,
"tag-minus": 420,
"tag-minus-outline": 360,
"tag-multiple": 465,
"tag-off": 295,
"tag-off-outline": 447,
"tag-outline": 247,
"tag-plus": 440,
"tag-plus-outline": 445,
"tag-remove": 534,
"tag-remove-outline": 531,
"tag-text": 297,
"tag-text-outline": 363,
"tank": 338,
"tanker-truck": 405,
"tape-measure": 158,
"target": 397,
"target-account": 479,
"target-variant": 359,
"taxi": 378,
"tea": 353,
"tea-outline": 469,
"teach": 191,
"teamviewer": 194,
"telegram": 265,
"telescope": 307,
"television": 100,
"television-box": 137,
"television-classic": 331,
"television-classic-off": 423,
"television-clean": 282,
"television-guide": 166,
"television-off": 217,
"television-pause": 139,
"television-play": 121,
"television-stop": 133,
"temperature-celsius": 349,
"temperature-fahrenheit": 155,
"temperature-kelvin": 71,
"tennis": 516,
"tennis-ball": 437,
"tent": 137,
"terraform": 136,
"terrain": 67,
"test-tube": 256,
"test-tube-empty": 98,
"test-tube-off": 332,
"text": 47,
"text-recognition": 185,
"text-shadow": 141,
"text-short": 31,
"text-subject": 60,
"text-to-speech": 292,
"text-to-speech-off": 332,
"textarea": 226,
"textbox": 257,
"textbox-password": 461,
"texture": 283,
"texture-box": 209,
"theater": 268,
"theme-light-dark": 656,
"thermometer": 84,
"thermometer-alert": 223,
"thermometer-chevron-down": 238,
"thermometer-chevron-up": 251,
"thermometer-high": 80,
"thermometer-lines": 381,
"thermometer-low": 85,
"thermometer-minus": 198,
"thermometer-plus": 218,
"thermostat": 378,
"thermostat-box": 377,
"thought-bubble": 525,
"thought-bubble-outline": 1072,
"thumb-down": 249,
"thumb-down-outline": 277,
"thumb-up": 255,
"thumb-up-outline": 278,
"thumbs-up-down": 439,
"ticket": 258,
"ticket-account": 338,
"ticket-confirmation": 218,
"ticket-outline": 273,
"ticket-percent": 461,
"tie": 37,
"tilde": 137,
"timelapse": 260,
"timeline": 225,
"timeline-alert": 259,
"timeline-alert-outline": 275,
"timeline-clock": 278,
"timeline-clock-outline": 371,
"timeline-help": 527,
"timeline-help-outline": 566,
"timeline-outline": 241,
"timeline-plus": 266,
"timeline-plus-outline": 282,
"timeline-text": 259,
"timeline-text-outline": 298,
"timer": 261,
"timer-10": 2638,
"timer-3": 2978,
"timer-off": 488,
"timer-sand": 158,
"timer-sand-empty": 127,
"timer-sand-full": 62,
"timetable": 423,
"toaster": 144,
"toaster-off": 280,
"toaster-oven": 238,
"toggle-switch": 141,
"toggle-switch-off": 137,
"toggle-switch-off-outline": 207,
"toggle-switch-outline": 212,
"toilet": 222,
"toolbox": 369,
"toolbox-outline": 475,
"tools": 350,
"tooltip": 89,
"tooltip-account": 251,
"tooltip-edit": 222,
"tooltip-image": 176,
"tooltip-image-outline": 238,
"tooltip-outline": 126,
"tooltip-plus": 126,
"tooltip-plus-outline": 163,
"tooltip-text": 132,
"tooltip-text-outline": 155,
"tooth": 174,
"tooth-outline": 469,
"toothbrush": 184,
"toothbrush-electric": 252,
"toothbrush-paste": 326,
"tor": 564,
"tortoise": 385,
"toslink": 284,
"tournament": 198,
"tower-beach": 238,
"tower-fire": 243,
"towing": 825,
"toy-brick": 90,
"toy-brick-marker": 346,
"toy-brick-marker-outline": 336,
"toy-brick-minus": 111,
"toy-brick-minus-outline": 121,
"toy-brick-outline": 103,
"toy-brick-plus": 173,
"toy-brick-plus-outline": 145,
"toy-brick-remove": 266,
"toy-brick-remove-outline": 145,
"toy-brick-search": 223,
"toy-brick-search-outline": 260,
"track-light": 274,
"trackpad": 123,
"trackpad-lock": 370,
"tractor": 486,
"trademark": 143,
"traffic-light": 519,
"train": 359,
"train-car": 581,
"train-variant": 219,
"tram": 321,
"tram-side": 254,
"transcribe": 219,
"transcribe-close": 229,
"transfer": 157,
"transfer-down": 65,
"transfer-left": 68,
"transfer-right": 75,
"transfer-up": 66,
"transit-connection": 418,
"transit-connection-variant": 602,
"transit-detour": 508,
"transit-transfer": 382,
"transition": 615,
"transition-masked": 388,
"translate": 318,
"translate-off": 444,
"transmission-tower": 381,
"trash-can": 94,
"trash-can-outline": 108,
"tray": 56,
"tray-alert": 85,
"tray-full": 94,
"tray-minus": 69,
"tray-plus": 91,
"tray-remove": 177,
"treasure-chest": 112,
"tree": 249,
"tree-outline": 495,
"trello": 391,
"trending-down": 96,
"trending-neutral": 32,
"trending-up": 94,
"triangle": 13,
"triangle-outline": 32,
"triforce": 47,
"trophy": 296,
"trophy-award": 167,
"trophy-broken": 448,
"trophy-outline": 303,
"trophy-variant": 274,
"trophy-variant-outline": 263,
"truck": 324,
"truck-check": 378,
"truck-check-outline": 531,
"truck-delivery": 343,
"truck-delivery-outline": 520,
"truck-fast": 392,
"truck-fast-outline": 565,
"truck-outline": 483,
"truck-trailer": 150,
"trumpet": 473,
"tshirt-crew": 283,
"tshirt-crew-outline": 431,
"tshirt-v": 296,
"tshirt-v-outline": 393,
"tumble-dryer": 566,
"tumble-dryer-alert": 597,
"tumble-dryer-off": 627,
"tumblr": 147,
"tumblr-box": 228,
"tumblr-reblog": 135,
"tune": 125,
"tune-vertical": 126,
"turnstile": 146,
"turnstile-outline": 262,
"turtle": 962,
"twitch": 104,
"twitter": 642,
"twitter-box": 529,
"twitter-circle": 530,
"twitter-retweet": 137,
"two-factor-authentication": 185,
"typewriter": 502,
"uber": 1159,
"ubisoft": 897,
"ubuntu": 1221,
"ufo": 150,
"ufo-outline": 267,
"ultra-high-definition": 214,
"umbraco": 362,
"umbrella": 119,
"umbrella-closed": 109,
"umbrella-outline": 175,
"undo": 154,
"undo-variant": 177,
"unfold-less-horizontal": 117,
"unfold-less-vertical": 128,
"unfold-more-horizontal": 113,
"unfold-more-vertical": 122,
"ungroup": 214,
"unicode": 269,
"unity": 262,
"unreal": 1133,
"untappd": 1079,
"update": 333,
"upload": 46,
"upload-multiple": 61,
"upload-network": 216,
"upload-network-outline": 219,
"upload-off": 144,
"upload-off-outline": 199,
"upload-outline": 83,
"usb": 311,
"usb-flash-drive": 620,
"usb-flash-drive-outline": 742,
"usb-port": 112,
"valve": 136,
"valve-closed": 82,
"valve-open": 87,
"van-passenger": 380,
"van-utility": 345,
"vanish": 287,
"vanity-light": 322,
"variable": 387,
"variable-box": 368,
"vector-arrange-above": 250,
"vector-arrange-below": 242,
"vector-bezier": 304,
"vector-circle": 388,
"vector-circle-variant": 236,
"vector-combine": 370,
"vector-curve": 601,
"vector-difference": 312,
"vector-difference-ab": 333,
"vector-difference-ba": 343,
"vector-ellipse": 294,
"vector-intersection": 472,
"vector-line": 69,
"vector-link": 235,
"vector-point": 77,
"vector-polygon": 232,
"vector-polyline": 117,
"vector-polyline-edit": 333,
"vector-polyline-minus": 144,
"vector-polyline-plus": 168,
"vector-polyline-remove": 237,
"vector-radius": 114,
"vector-rectangle": 155,
"vector-selection": 389,
"vector-square": 150,
"vector-triangle": 128,
"vector-union": 175,
"venmo": 178,
"vhs": 231,
"vibrate": 175,
"vibrate-off": 343,
"video": 104,
"video-3d": 160,
"video-3d-variant": 314,
"video-4k-box": 193,
"video-account": 231,
"video-check": 192,
"video-check-outline": 203,
"video-image": 177,
"video-input-antenna": 319,
"video-input-component": 384,
"video-input-hdmi": 104,
"video-input-scart": 159,
"video-input-svideo": 643,
"video-minus": 121,
"video-off": 159,
"video-off-outline": 227,
"video-outline": 116,
"video-plus": 142,
"video-stabilization": 143,
"video-switch": 151,
"video-vintage": 392,
"video-wireless": 262,
"video-wireless-outline": 285,
"view-agenda": 191,
"view-agenda-outline": 181,
"view-array": 40,
"view-carousel": 40,
"view-column": 42,
"view-comfy": 190,
"view-compact": 48,
"view-compact-outline": 62,
"view-dashboard": 56,
"view-dashboard-outline": 127,
"view-dashboard-variant": 78,
"view-day": 103,
"view-grid": 53,
"view-grid-outline": 104,
"view-grid-plus": 89,
"view-grid-plus-outline": 113,
"view-headline": 53,
"view-list": 75,
"view-module": 84,
"view-parallel": 49,
"view-quilt": 58,
"view-sequential": 46,
"view-split-horizontal": 45,
"view-split-vertical": 77,
"view-stream": 29,
"view-week": 227,
"vimeo": 543,
"violin": 383,
"virtual-reality": 253,
"visual-studio": 133,
"visual-studio-code": 378,
"vk": 752,
"vk-box": 848,
"vk-circle": 849,
"vlc": 589,
"voice": 314,
"voice-off": 438,
"voicemail": 389,
"volleyball": 1417,
"volume-high": 215,
"volume-low": 26,
"volume-medium": 92,
"volume-minus": 42,
"volume-mute": 137,
"volume-off": 392,
"volume-plus": 65,
"volume-source": 58,
"volume-variant-off": 109,
"volume-vibrate": 150,
"vote": 328,
"vote-outline": 358,
"vpn": 650,
"vuejs": 80,
"vuetify": 91,
"walk": 283,
"wall": 112,
"wall-sconce": 54,
"wall-sconce-flat": 144,
"wall-sconce-variant": 211,
"wallet": 236,
"wallet-giftcard": 473,
"wallet-membership": 147,
"wallet-outline": 308,
"wallet-plus": 313,
"wallet-plus-outline": 347,
"wallet-travel": 206,
"wallpaper": 275,
"wan": 1012,
"wardrobe": 162,
"wardrobe-outline": 178,
"warehouse": 166,
"washing-machine": 361,
"washing-machine-alert": 388,
"washing-machine-off": 521,
"watch": 220,
"watch-export": 297,
"watch-export-variant": 246,
"watch-import": 289,
"watch-import-variant": 229,
"watch-variant": 141,
"watch-vibrate": 370,
"watch-vibrate-off": 536,
"water": 79,
"water-boiler": 282,
"water-boiler-alert": 332,
"water-boiler-off": 380,
"water-off": 249,
"water-outline": 373,
"water-percent": 356,
"water-polo": 1150,
"water-pump": 304,
"water-pump-off": 233,
"water-well": 420,
"water-well-outline": 474,
"watermark": 94,
"wave": 182,
"waves": 535,
"waze": 1665,
"weather-cloudy": 266,
"weather-cloudy-alert": 297,
"weather-cloudy-arrow-right": 312,
"weather-fog": 525,
"weather-hail": 576,
"weather-hazy": 600,
"weather-hurricane": 348,
"weather-lightning": 363,
"weather-lightning-rainy": 548,
"weather-night": 632,
"weather-night-partly-cloudy": 1335,
"weather-partly-cloudy": 858,
"weather-partly-lightning": 959,
"weather-partly-rainy": 1095,
"weather-partly-snowy": 1600,
"weather-partly-snowy-rainy": 1759,
"weather-pouring": 911,
"weather-rainy": 795,
"weather-snowy": 864,
"weather-snowy-heavy": 1456,
"weather-snowy-rainy": 1009,
"weather-sunny": 645,
"weather-sunny-alert": 485,
"weather-sunset": 532,
"weather-sunset-down": 633,
"weather-sunset-up": 630,
"weather-tornado": 360,
"weather-windy": 664,
"weather-windy-variant": 514,
"web": 916,
"web-box": 811,
"web-clock": 913,
"webcam": 370,
"webhook": 1391,
"webpack": 459,
"webrtc": 517,
"wechat": 670,
"weight": 299,
"weight-gram": 385,
"weight-kilogram": 447,
"weight-lifter": 257,
"weight-pound": 486,
"whatsapp": 801,
"wheelchair-accessibility": 789,
"whistle": 225,
"white-balance-auto": 252,
"white-balance-incandescent": 292,
"white-balance-iridescent": 269,
"white-balance-sunny": 372,
"widgets": 93,
"wifi": 314,
"wifi-off": 468,
"wifi-star": 470,
"wifi-strength-1": 249,
"wifi-strength-1-alert": 322,
"wifi-strength-1-lock": 490,
"wifi-strength-2": 249,
"wifi-strength-2-alert": 322,
"wifi-strength-2-lock": 593,
"wifi-strength-3": 235,
"wifi-strength-3-alert": 308,
"wifi-strength-3-lock": 590,
"wifi-strength-4": 115,
"wifi-strength-4-alert": 182,
"wifi-strength-4-lock": 429,
"wifi-strength-alert-outline": 274,
"wifi-strength-lock-outline": 547,
"wifi-strength-off": 207,
"wifi-strength-off-outline": 379,
"wifi-strength-outline": 200,
"wii": 602,
"wiiu": 248,
"wikipedia": 815,
"wind-turbine": 482,
"window-close": 110,
"window-closed": 118,
"window-closed-variant": 79,
"window-maximize": 29,
"window-minimize": 14,
"window-open": 131,
"window-open-variant": 90,
"window-restore": 62,
"window-shutter": 96,
"window-shutter-alert": 100,
"window-shutter-open": 48,
"windows": 122,
"windows-classic": 2397,
"wiper": 354,
"wiper-wash": 654,
"wordpress": 983,
"worker": 276,
"wrap": 155,
"wrap-disabled": 62,
"wrench": 207,
"wrench-outline": 507,
"wunderlist": 224,
"xamarin": 495,
"xamarin-outline": 774,
"xaml": 157,
"xbox": 889,
"xbox-controller": 260,
"xbox-controller-battery-alert": 350,
"xbox-controller-battery-charging": 355,
"xbox-controller-battery-empty": 316,
"xbox-controller-battery-full": 299,
"xbox-controller-battery-low": 316,
"xbox-controller-battery-medium": 316,
"xbox-controller-battery-unknown": 861,
"xbox-controller-menu": 121,
"xbox-controller-off": 293,
"xbox-controller-view": 129,
"xda": 368,
"xing": 518,
"xing-box": 641,
"xing-circle": 603,
"xml": 151,
"xmpp": 283,
"yahoo": 482,
"yammer": 819,
"yeast": 498,
"yelp": 1018,
"yin-yang": 360,
"yoga": 201,
"youtube": 570,
"youtube-creator-studio": 802,
"youtube-gaming": 442,
"youtube-subscription": 135,
"youtube-tv": 287,
"z-wave": 358,
"zend": 307,
"zigbee": 611,
"zip-box": 158,
"zip-box-outline": 203,
"zip-disk": 138,
"zodiac-aquarius": 275,
"zodiac-aries": 385,
"zodiac-cancer": 611,
"zodiac-capricorn": 365,
"zodiac-gemini": 360,
"zodiac-leo": 601,
"zodiac-libra": 266,
"zodiac-pisces": 298,
"zodiac-sagittarius": 134,
"zodiac-scorpio": 302,
"zodiac-taurus": 271,
"zodiac-virgo": 504
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment