diff --git a/gulpfile.js b/gulpfile.js
index 330af7f768..c2240aac49 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -67,8 +67,26 @@ function watch() {
gulp.watch(paths.styles.src, styles);
}
+function copyIconifyIcons() {
+ return gulp.src([
+ 'node_modules/@iconify/json/json/fa.json',
+ 'node_modules/@iconify/json/json/ic.json',
+ 'node_modules/@iconify/json/json/mdi.json',
+ ])
+ .pipe(gulp.dest('phpBB/assets/iconify'));
+}
+
+function copyIconifyJs() {
+ return gulp.src([
+ 'node_modules/@iconify/iconify/dist/iconify.without-api.min.js',
+ ])
+ .pipe(rename('iconify.min.js'))
+ .pipe(gulp.dest('phpBB/assets/iconify'));
+}
+
exports.style = styles;
exports.minify = minify;
exports.watch = watch;
+exports.copyIconify = gulp.parallel(copyIconifyJs, copyIconifyIcons);
exports.default = gulp.series(styles, minify, watch);
diff --git a/package-lock.json b/package-lock.json
index 7471a2fec2..4ca1f511ca 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -9,6 +9,8 @@
"version": "4.0.0-dev",
"license": "GPL-2.0",
"devDependencies": {
+ "@iconify/iconify": "^3.1.1",
+ "@iconify/json": "^2.2.163",
"autoprefixer": "^10.4.4",
"cssnano": "^5.1.7",
"eslint": "^8.13.0",
@@ -263,6 +265,34 @@
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
"dev": true
},
+ "node_modules/@iconify/iconify": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@iconify/iconify/-/iconify-3.1.1.tgz",
+ "integrity": "sha512-1nemfyD/OJzh9ALepH7YfuuP8BdEB24Skhd8DXWh0hzcOxImbb1ZizSZkpCzAwSZSGcJFmscIBaBQu+yLyWaxQ==",
+ "dev": true,
+ "dependencies": {
+ "@iconify/types": "^2.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/cyberalien"
+ }
+ },
+ "node_modules/@iconify/json": {
+ "version": "2.2.163",
+ "resolved": "https://registry.npmjs.org/@iconify/json/-/json-2.2.163.tgz",
+ "integrity": "sha512-cBca9e8x6Bp5qN2++sl54OUbME/Y20OhXJEdkpFFvvHvt8UfQLiBKzz7q3uZ1l3EQjc8JoKgDB/n8nqfNqEWig==",
+ "dev": true,
+ "dependencies": {
+ "@iconify/types": "*",
+ "pathe": "^1.1.0"
+ }
+ },
+ "node_modules/@iconify/types": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz",
+ "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==",
+ "dev": true
+ },
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
@@ -5102,6 +5132,12 @@
"node": ">=8"
}
},
+ "node_modules/pathe": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.1.tgz",
+ "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==",
+ "dev": true
+ },
"node_modules/picocolors": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
@@ -8397,6 +8433,31 @@
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
"dev": true
},
+ "@iconify/iconify": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@iconify/iconify/-/iconify-3.1.1.tgz",
+ "integrity": "sha512-1nemfyD/OJzh9ALepH7YfuuP8BdEB24Skhd8DXWh0hzcOxImbb1ZizSZkpCzAwSZSGcJFmscIBaBQu+yLyWaxQ==",
+ "dev": true,
+ "requires": {
+ "@iconify/types": "^2.0.0"
+ }
+ },
+ "@iconify/json": {
+ "version": "2.2.163",
+ "resolved": "https://registry.npmjs.org/@iconify/json/-/json-2.2.163.tgz",
+ "integrity": "sha512-cBca9e8x6Bp5qN2++sl54OUbME/Y20OhXJEdkpFFvvHvt8UfQLiBKzz7q3uZ1l3EQjc8JoKgDB/n8nqfNqEWig==",
+ "dev": true,
+ "requires": {
+ "@iconify/types": "*",
+ "pathe": "^1.1.0"
+ }
+ },
+ "@iconify/types": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz",
+ "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==",
+ "dev": true
+ },
"@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
@@ -12213,6 +12274,12 @@
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
"dev": true
},
+ "pathe": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.1.tgz",
+ "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==",
+ "dev": true
+ },
"picocolors": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
diff --git a/package.json b/package.json
index 2cdc5e1a13..6256f80449 100644
--- a/package.json
+++ b/package.json
@@ -56,11 +56,7 @@
"always"
],
"no-lonely-if": "off",
- "unicorn/prefer-module": "off",
- "space-before-function-paren": [
- "error",
- "never"
- ]
+ "unicorn/prefer-module": "off"
},
"env": {
"es6": true,
@@ -103,6 +99,8 @@
},
"homepage": "https://www.phpbb.com",
"devDependencies": {
+ "@iconify/iconify": "^3.1.1",
+ "@iconify/json": "^2.2.163",
"autoprefixer": "^10.4.4",
"cssnano": "^5.1.7",
"eslint": "^8.13.0",
diff --git a/phpBB/assets/iconify/fa.json b/phpBB/assets/iconify/fa.json
new file mode 100644
index 0000000000..24fa3fb0a2
--- /dev/null
+++ b/phpBB/assets/iconify/fa.json
@@ -0,0 +1,4003 @@
+{
+ "prefix": "fa",
+ "info": {
+ "name": "Font Awesome 4",
+ "total": 678,
+ "version": "4.7.0",
+ "author": {
+ "name": "Dave Gandy",
+ "url": "https://github.com/FortAwesome/Font-Awesome/tree/fa-4"
+ },
+ "license": {
+ "title": "Open Font License",
+ "spdx": "OFL-1.1",
+ "url": "https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL"
+ },
+ "samples": [
+ "wrench",
+ "bell-o",
+ "user-o"
+ ],
+ "category": "Archive / Unmaintained",
+ "palette": false
+ },
+ "lastModified": 1702311954,
+ "icons": {
+ "500px": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "address-book": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "address-book-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "address-card": {
+ "body": "",
+ "width": 2048
+ },
+ "address-card-o": {
+ "body": "",
+ "width": 2048
+ },
+ "adjust": {
+ "body": ""
+ },
+ "adn": {
+ "body": ""
+ },
+ "align-center": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "align-justify": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "align-left": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "amazon": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "ambulance": {
+ "body": "",
+ "width": 1856
+ },
+ "american-sign-language-interpreting": {
+ "body": "",
+ "width": 2304,
+ "height": 1792
+ },
+ "anchor": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "android": {
+ "body": "",
+ "width": 1408,
+ "height": 1664
+ },
+ "angellist": {
+ "body": "",
+ "width": 1280,
+ "height": 1792
+ },
+ "angle-double-left": {
+ "body": "",
+ "width": 992,
+ "height": 1280
+ },
+ "angle-double-up": {
+ "body": "",
+ "width": 1024,
+ "height": 1280
+ },
+ "angle-down": {
+ "body": "",
+ "width": 1024,
+ "height": 1280
+ },
+ "angle-left": {
+ "body": "",
+ "width": 608,
+ "height": 1280
+ },
+ "angle-up": {
+ "body": "",
+ "width": 1024,
+ "height": 1280
+ },
+ "apple": {
+ "body": "",
+ "width": 1408,
+ "height": 1664
+ },
+ "archive": {
+ "body": "",
+ "width": 1664
+ },
+ "area-chart": {
+ "body": "",
+ "width": 2048
+ },
+ "arrow-circle-left": {
+ "body": ""
+ },
+ "arrow-circle-o-left": {
+ "body": ""
+ },
+ "arrow-circle-o-up": {
+ "body": ""
+ },
+ "arrow-circle-up": {
+ "body": ""
+ },
+ "arrow-left": {
+ "body": "",
+ "width": 1472,
+ "height": 1600
+ },
+ "arrow-up": {
+ "body": "",
+ "width": 1600,
+ "height": 1472
+ },
+ "arrows": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "arrows-alt": {
+ "body": ""
+ },
+ "arrows-h": {
+ "body": "",
+ "width": 1792,
+ "height": 1280
+ },
+ "arrows-v": {
+ "body": "",
+ "width": 640,
+ "height": 1792
+ },
+ "assistive-listening-systems": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "asterisk": {
+ "body": "",
+ "width": 1472
+ },
+ "at": {
+ "body": ""
+ },
+ "audio-description": {
+ "body": "",
+ "width": 2304,
+ "height": 1280
+ },
+ "automobile": {
+ "body": "",
+ "width": 2048,
+ "height": 1600
+ },
+ "backward": {
+ "body": "",
+ "width": 1568
+ },
+ "balance-scale": {
+ "body": "",
+ "width": 2176,
+ "height": 1792
+ },
+ "ban": {
+ "body": "",
+ "height": 1568
+ },
+ "bandcamp": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "bank": {
+ "body": "",
+ "width": 1920,
+ "height": 1792
+ },
+ "bar-chart": {
+ "body": "",
+ "width": 2048
+ },
+ "barcode": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "bars": {
+ "body": "",
+ "height": 1280
+ },
+ "bath": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "battery": {
+ "body": "",
+ "width": 2304,
+ "height": 1280
+ },
+ "battery-0": {
+ "body": "",
+ "width": 2304,
+ "height": 1280
+ },
+ "battery-1": {
+ "body": "",
+ "width": 2304,
+ "height": 1280
+ },
+ "battery-2": {
+ "body": "",
+ "width": 2304,
+ "height": 1280
+ },
+ "battery-3": {
+ "body": "",
+ "width": 2304,
+ "height": 1280
+ },
+ "bed": {
+ "body": "",
+ "width": 2048,
+ "height": 1280
+ },
+ "beer": {
+ "body": "",
+ "width": 1600,
+ "height": 1408
+ },
+ "behance": {
+ "body": "",
+ "width": 2048,
+ "height": 1344
+ },
+ "behance-square": {
+ "body": ""
+ },
+ "bell": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "bell-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "bell-slash": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "bell-slash-o": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "bicycle": {
+ "body": "",
+ "width": 2304,
+ "height": 1280
+ },
+ "binoculars": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "birthday-cake": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "bitbucket": {
+ "body": "",
+ "width": 1440,
+ "height": 1664
+ },
+ "bitbucket-square": {
+ "body": ""
+ },
+ "bitcoin": {
+ "body": "",
+ "width": 1248,
+ "height": 1664
+ },
+ "black-tie": {
+ "body": ""
+ },
+ "blind": {
+ "body": "",
+ "width": 1344,
+ "height": 1792
+ },
+ "bluetooth": {
+ "body": "",
+ "width": 1344,
+ "height": 1792
+ },
+ "bluetooth-b": {
+ "body": "",
+ "width": 960,
+ "height": 1792
+ },
+ "bold": {
+ "body": "",
+ "width": 1408
+ },
+ "bolt": {
+ "body": "",
+ "width": 896,
+ "height": 1664
+ },
+ "bomb": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "book": {
+ "body": "",
+ "width": 1696
+ },
+ "bookmark": {
+ "body": "",
+ "width": 1280
+ },
+ "bookmark-o": {
+ "body": "",
+ "width": 1280
+ },
+ "braille": {
+ "body": "",
+ "width": 2176,
+ "height": 1408
+ },
+ "briefcase": {
+ "body": "",
+ "width": 1792
+ },
+ "bug": {
+ "body": "",
+ "width": 1600,
+ "height": 1568
+ },
+ "building": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "building-o": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "bullhorn": {
+ "body": "",
+ "width": 1792
+ },
+ "bullseye": {
+ "body": ""
+ },
+ "bus": {
+ "body": "",
+ "height": 1792
+ },
+ "buysellads": {
+ "body": ""
+ },
+ "cab": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "calculator": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "calendar": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "calendar-check-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "calendar-minus-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "calendar-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "calendar-plus-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "calendar-times-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "camera": {
+ "body": "",
+ "width": 1920,
+ "height": 1664
+ },
+ "camera-retro": {
+ "body": "",
+ "width": 1792
+ },
+ "caret-down": {
+ "body": "",
+ "width": 1024,
+ "height": 1280
+ },
+ "caret-left": {
+ "body": "",
+ "width": 576,
+ "height": 1280
+ },
+ "caret-square-o-left": {
+ "body": ""
+ },
+ "caret-square-o-up": {
+ "body": ""
+ },
+ "caret-up": {
+ "body": "",
+ "width": 1024,
+ "height": 1280
+ },
+ "cart-arrow-down": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "cart-plus": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "cc": {
+ "body": "",
+ "width": 2048
+ },
+ "cc-amex": {
+ "body": "",
+ "width": 2304
+ },
+ "cc-diners-club": {
+ "body": "",
+ "width": 2304
+ },
+ "cc-discover": {
+ "body": "",
+ "width": 2304
+ },
+ "cc-jcb": {
+ "body": "",
+ "width": 2304
+ },
+ "cc-mastercard": {
+ "body": "",
+ "width": 2304
+ },
+ "cc-paypal": {
+ "body": "",
+ "width": 2304
+ },
+ "cc-stripe": {
+ "body": "",
+ "width": 2304
+ },
+ "cc-visa": {
+ "body": "",
+ "width": 2304
+ },
+ "certificate": {
+ "body": ""
+ },
+ "chain": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "chain-broken": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "check": {
+ "body": "",
+ "width": 1600,
+ "height": 1280
+ },
+ "check-circle": {
+ "body": ""
+ },
+ "check-circle-o": {
+ "body": ""
+ },
+ "check-square": {
+ "body": ""
+ },
+ "check-square-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "chevron-circle-left": {
+ "body": ""
+ },
+ "chevron-circle-up": {
+ "body": ""
+ },
+ "chevron-down": {
+ "body": "",
+ "width": 1664,
+ "height": 1312
+ },
+ "chevron-left": {
+ "body": "",
+ "width": 1088,
+ "height": 1664
+ },
+ "chevron-up": {
+ "body": "",
+ "width": 1664,
+ "height": 1280
+ },
+ "child": {
+ "body": "",
+ "width": 1152,
+ "height": 1632
+ },
+ "chrome": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "circle": {
+ "body": ""
+ },
+ "circle-o": {
+ "body": ""
+ },
+ "circle-o-notch": {
+ "body": "",
+ "width": 1728,
+ "height": 1728
+ },
+ "circle-thin": {
+ "body": ""
+ },
+ "clipboard": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "clock-o": {
+ "body": ""
+ },
+ "clone": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "close": {
+ "body": "",
+ "width": 1216,
+ "height": 1312
+ },
+ "cloud": {
+ "body": "",
+ "width": 1920,
+ "height": 1408
+ },
+ "cloud-download": {
+ "body": "",
+ "width": 1920,
+ "height": 1408
+ },
+ "cloud-upload": {
+ "body": "",
+ "width": 1920,
+ "height": 1408
+ },
+ "cny": {
+ "body": "",
+ "width": 1024,
+ "height": 1408
+ },
+ "code": {
+ "body": "",
+ "width": 1856,
+ "height": 1408
+ },
+ "code-fork": {
+ "body": "",
+ "width": 1024
+ },
+ "codepen": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "codiepie": {
+ "body": "",
+ "width": 1728,
+ "height": 1792
+ },
+ "coffee": {
+ "body": "",
+ "width": 1856,
+ "height": 1408
+ },
+ "cog": {
+ "body": ""
+ },
+ "cogs": {
+ "body": "",
+ "width": 1920,
+ "height": 1792
+ },
+ "columns": {
+ "body": "",
+ "width": 1664
+ },
+ "comment": {
+ "body": "",
+ "width": 1792
+ },
+ "comment-o": {
+ "body": "",
+ "width": 1792
+ },
+ "commenting": {
+ "body": "",
+ "width": 1792,
+ "height": 1504
+ },
+ "commenting-o": {
+ "body": "",
+ "width": 1792
+ },
+ "comments": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "comments-o": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "compass": {
+ "body": ""
+ },
+ "compress": {
+ "body": ""
+ },
+ "connectdevelop": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "contao": {
+ "body": "",
+ "width": 1792
+ },
+ "copy": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "copyright": {
+ "body": ""
+ },
+ "creative-commons": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "credit-card": {
+ "body": "",
+ "width": 1920
+ },
+ "credit-card-alt": {
+ "body": "",
+ "width": 2304
+ },
+ "crop": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "crosshairs": {
+ "body": ""
+ },
+ "css3": {
+ "body": "",
+ "width": 1792,
+ "height": 1600
+ },
+ "cube": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "cubes": {
+ "body": "",
+ "width": 2176,
+ "height": 1792
+ },
+ "cut": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "cutlery": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "dashboard": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "dashcube": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "database": {
+ "body": "",
+ "height": 1792
+ },
+ "deaf": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "dedent": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "delicious": {
+ "body": ""
+ },
+ "desktop": {
+ "body": "",
+ "width": 1920,
+ "height": 1664
+ },
+ "deviantart": {
+ "body": "",
+ "width": 1024,
+ "height": 1664
+ },
+ "diamond": {
+ "body": "",
+ "width": 2048,
+ "height": 1664
+ },
+ "digg": {
+ "body": "",
+ "width": 2048,
+ "height": 1280
+ },
+ "dollar": {
+ "body": "",
+ "width": 960,
+ "height": 1792
+ },
+ "dot-circle-o": {
+ "body": ""
+ },
+ "download": {
+ "body": "",
+ "width": 1664
+ },
+ "dribbble": {
+ "body": ""
+ },
+ "drivers-license": {
+ "body": "",
+ "width": 2048
+ },
+ "drivers-license-o": {
+ "body": "",
+ "width": 2048
+ },
+ "dropbox": {
+ "body": "",
+ "width": 1664,
+ "height": 1568
+ },
+ "drupal": {
+ "body": "",
+ "height": 1792
+ },
+ "edge": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "edit": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "eercast": {
+ "body": "",
+ "width": 1728,
+ "height": 1792
+ },
+ "eject": {
+ "body": "",
+ "width": 1568,
+ "height": 1312
+ },
+ "ellipsis-h": {
+ "body": "",
+ "width": 1408,
+ "height": 1280
+ },
+ "ellipsis-v": {
+ "body": "",
+ "width": 384,
+ "height": 1408
+ },
+ "empire": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "envelope": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "envelope-o": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "envelope-open": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "envelope-open-o": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "envelope-square": {
+ "body": ""
+ },
+ "envira": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "eraser": {
+ "body": "",
+ "width": 1920,
+ "height": 1280
+ },
+ "etsy": {
+ "body": "",
+ "height": 1792
+ },
+ "eur": {
+ "body": "",
+ "width": 1024,
+ "height": 1408
+ },
+ "exchange": {
+ "body": "",
+ "width": 1792,
+ "height": 1376
+ },
+ "exclamation": {
+ "body": "",
+ "width": 448,
+ "height": 1408
+ },
+ "exclamation-circle": {
+ "body": ""
+ },
+ "exclamation-triangle": {
+ "body": "",
+ "width": 1856,
+ "height": 1664
+ },
+ "expand": {
+ "body": ""
+ },
+ "expeditedssl": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "external-link": {
+ "body": "",
+ "width": 1792
+ },
+ "external-link-square": {
+ "body": ""
+ },
+ "eye": {
+ "body": "",
+ "width": 1792,
+ "height": 1280
+ },
+ "eye-slash": {
+ "body": "",
+ "width": 1792,
+ "height": 1376
+ },
+ "eyedropper": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "fa": {
+ "body": "",
+ "width": 1504,
+ "height": 1792
+ },
+ "facebook": {
+ "body": "",
+ "width": 896,
+ "height": 1664
+ },
+ "facebook-official": {
+ "body": ""
+ },
+ "facebook-square": {
+ "body": ""
+ },
+ "fast-backward": {
+ "body": "",
+ "width": 1792
+ },
+ "fax": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "feed": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "female": {
+ "body": "",
+ "width": 1280,
+ "height": 1760
+ },
+ "fighter-jet": {
+ "body": "",
+ "width": 1920,
+ "height": 1280
+ },
+ "file": {
+ "body": "",
+ "height": 1792
+ },
+ "file-archive-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-audio-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-code-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-excel-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-image-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-movie-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-pdf-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-powerpoint-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-text": {
+ "body": "",
+ "height": 1792
+ },
+ "file-text-o": {
+ "body": "",
+ "height": 1792
+ },
+ "file-word-o": {
+ "body": "",
+ "height": 1792
+ },
+ "film": {
+ "body": "",
+ "width": 1920,
+ "height": 1664
+ },
+ "filter": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "fire": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "fire-extinguisher": {
+ "body": "",
+ "width": 1408,
+ "height": 1632
+ },
+ "firefox": {
+ "body": "",
+ "width": 1792,
+ "height": 1760
+ },
+ "first-order": {
+ "body": "",
+ "height": 1792
+ },
+ "flag": {
+ "body": "",
+ "width": 1728
+ },
+ "flag-checkered": {
+ "body": "",
+ "width": 1728
+ },
+ "flag-o": {
+ "body": "",
+ "width": 1728
+ },
+ "flask": {
+ "body": "",
+ "width": 1472
+ },
+ "flickr": {
+ "body": ""
+ },
+ "floppy-o": {
+ "body": ""
+ },
+ "folder": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "folder-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "folder-open": {
+ "body": "",
+ "width": 1888,
+ "height": 1408
+ },
+ "folder-open-o": {
+ "body": "",
+ "width": 1920,
+ "height": 1408
+ },
+ "font": {
+ "body": "",
+ "width": 1664
+ },
+ "fonticons": {
+ "body": ""
+ },
+ "fort-awesome": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "forumbee": {
+ "body": ""
+ },
+ "foursquare": {
+ "body": "",
+ "width": 1216,
+ "height": 1664
+ },
+ "free-code-camp": {
+ "body": "",
+ "width": 2304,
+ "height": 1600
+ },
+ "frown-o": {
+ "body": ""
+ },
+ "futbol-o": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "gamepad": {
+ "body": "",
+ "width": 1920,
+ "height": 1280
+ },
+ "gavel": {
+ "body": "",
+ "width": 1760,
+ "height": 1760
+ },
+ "gbp": {
+ "body": "",
+ "width": 1024,
+ "height": 1408
+ },
+ "genderless": {
+ "body": "",
+ "width": 1152,
+ "height": 1280
+ },
+ "get-pocket": {
+ "body": "",
+ "width": 1728
+ },
+ "gg": {
+ "body": "",
+ "width": 1920,
+ "height": 1344
+ },
+ "gg-circle": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "gift": {
+ "body": "",
+ "height": 1344
+ },
+ "git": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "git-square": {
+ "body": ""
+ },
+ "github": {
+ "body": "",
+ "height": 1504
+ },
+ "github-alt": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "github-square": {
+ "body": ""
+ },
+ "gitlab": {
+ "body": "",
+ "width": 1792,
+ "height": 1664
+ },
+ "gittip": {
+ "body": ""
+ },
+ "glass": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "glide": {
+ "body": ""
+ },
+ "glide-g": {
+ "body": "",
+ "width": 1472,
+ "height": 1792
+ },
+ "globe": {
+ "body": ""
+ },
+ "google": {
+ "body": ""
+ },
+ "google-plus": {
+ "body": "",
+ "width": 2304,
+ "height": 1472
+ },
+ "google-plus-circle": {
+ "body": ""
+ },
+ "google-plus-square": {
+ "body": ""
+ },
+ "google-wallet": {
+ "body": "",
+ "width": 1760,
+ "height": 1792
+ },
+ "graduation-cap": {
+ "body": "",
+ "width": 2304
+ },
+ "grav": {
+ "body": "",
+ "width": 1824,
+ "height": 1792
+ },
+ "group": {
+ "body": "",
+ "width": 1920,
+ "height": 1792
+ },
+ "h-square": {
+ "body": ""
+ },
+ "hacker-news": {
+ "body": ""
+ },
+ "hand-grab-o": {
+ "body": "",
+ "height": 1408
+ },
+ "hand-lizard-o": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "hand-o-left": {
+ "body": "",
+ "width": 1792
+ },
+ "hand-o-up": {
+ "body": "",
+ "height": 1792
+ },
+ "hand-paper-o": {
+ "body": "",
+ "width": 1632,
+ "height": 1792
+ },
+ "hand-peace-o": {
+ "body": "",
+ "height": 1792
+ },
+ "hand-pointer-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "hand-scissors-o": {
+ "body": "",
+ "width": 1792
+ },
+ "hand-spock-o": {
+ "body": "",
+ "width": 1920,
+ "height": 1792
+ },
+ "handshake-o": {
+ "body": "",
+ "width": 2304,
+ "height": 1472
+ },
+ "hashtag": {
+ "body": "",
+ "width": 1728
+ },
+ "hdd-o": {
+ "body": "",
+ "height": 1280
+ },
+ "header": {
+ "body": "",
+ "width": 1728
+ },
+ "headphones": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "heart": {
+ "body": "",
+ "width": 1792
+ },
+ "heart-o": {
+ "body": "",
+ "width": 1792
+ },
+ "heartbeat": {
+ "body": "",
+ "width": 1792
+ },
+ "history": {
+ "body": ""
+ },
+ "home": {
+ "body": "",
+ "width": 1664,
+ "height": 1312
+ },
+ "hospital-o": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "hourglass": {
+ "body": "",
+ "height": 1792
+ },
+ "hourglass-1": {
+ "body": "",
+ "height": 1792
+ },
+ "hourglass-2": {
+ "body": "",
+ "height": 1792
+ },
+ "hourglass-3": {
+ "body": "",
+ "height": 1792
+ },
+ "hourglass-o": {
+ "body": "",
+ "height": 1792
+ },
+ "houzz": {
+ "body": "",
+ "width": 1024,
+ "height": 1792
+ },
+ "html5": {
+ "body": "",
+ "width": 1408,
+ "height": 1600
+ },
+ "i-cursor": {
+ "body": "",
+ "width": 896,
+ "height": 1792
+ },
+ "id-badge": {
+ "body": "",
+ "width": 1280,
+ "height": 1792
+ },
+ "ils": {
+ "body": "",
+ "width": 1376,
+ "height": 1408
+ },
+ "image": {
+ "body": "",
+ "width": 1920
+ },
+ "imdb": {
+ "body": ""
+ },
+ "inbox": {
+ "body": "",
+ "height": 1280
+ },
+ "indent": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "industry": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "info": {
+ "body": "",
+ "width": 640,
+ "height": 1408
+ },
+ "info-circle": {
+ "body": ""
+ },
+ "inr": {
+ "body": "",
+ "width": 928,
+ "height": 1408
+ },
+ "instagram": {
+ "body": ""
+ },
+ "internet-explorer": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "intersex": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "ioxhost": {
+ "body": "",
+ "width": 2048,
+ "height": 1664
+ },
+ "italic": {
+ "body": "",
+ "width": 1024
+ },
+ "joomla": {
+ "body": ""
+ },
+ "jsfiddle": {
+ "body": "",
+ "width": 2048,
+ "height": 1408
+ },
+ "key": {
+ "body": "",
+ "width": 1696,
+ "height": 1600
+ },
+ "keyboard-o": {
+ "body": "",
+ "width": 1920,
+ "height": 1280
+ },
+ "krw": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "language": {
+ "body": "",
+ "height": 1792
+ },
+ "laptop": {
+ "body": "",
+ "width": 1920,
+ "height": 1280
+ },
+ "lastfm": {
+ "body": "",
+ "width": 1792,
+ "height": 1280
+ },
+ "lastfm-square": {
+ "body": ""
+ },
+ "leaf": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "leanpub": {
+ "body": "",
+ "width": 2048,
+ "height": 1408
+ },
+ "lemon-o": {
+ "body": ""
+ },
+ "level-up": {
+ "body": "",
+ "width": 1056,
+ "height": 1408
+ },
+ "life-bouy": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "lightbulb-o": {
+ "body": "",
+ "width": 1024
+ },
+ "line-chart": {
+ "body": "",
+ "width": 2048
+ },
+ "linkedin": {
+ "body": "",
+ "height": 1504
+ },
+ "linkedin-square": {
+ "body": ""
+ },
+ "linode": {
+ "body": "",
+ "height": 1792
+ },
+ "linux": {
+ "body": "",
+ "height": 1792
+ },
+ "list": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "list-alt": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "list-ol": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "list-ul": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "location-arrow": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "lock": {
+ "body": "",
+ "width": 1152,
+ "height": 1408
+ },
+ "long-arrow-left": {
+ "body": "",
+ "width": 1728,
+ "height": 1280
+ },
+ "long-arrow-up": {
+ "body": "",
+ "width": 768,
+ "height": 1728
+ },
+ "low-vision": {
+ "body": "",
+ "width": 1792,
+ "height": 1664
+ },
+ "magic": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "magnet": {
+ "body": ""
+ },
+ "mail-forward": {
+ "body": "",
+ "width": 1792,
+ "height": 1600
+ },
+ "mail-reply": {
+ "body": "",
+ "width": 1792,
+ "height": 1600
+ },
+ "mail-reply-all": {
+ "body": "",
+ "width": 1792,
+ "height": 1600
+ },
+ "male": {
+ "body": "",
+ "width": 1024,
+ "height": 1760
+ },
+ "map": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "map-marker": {
+ "body": "",
+ "width": 1024
+ },
+ "map-o": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "map-pin": {
+ "body": "",
+ "width": 1024,
+ "height": 1792
+ },
+ "map-signs": {
+ "body": "",
+ "width": 1728,
+ "height": 1792
+ },
+ "mars": {
+ "body": ""
+ },
+ "mars-double": {
+ "body": "",
+ "width": 1920,
+ "height": 1792
+ },
+ "mars-stroke": {
+ "body": ""
+ },
+ "mars-stroke-h": {
+ "body": "",
+ "width": 1920,
+ "height": 1280
+ },
+ "mars-stroke-v": {
+ "body": "",
+ "width": 1152,
+ "height": 1792
+ },
+ "maxcdn": {
+ "body": "",
+ "width": 1760,
+ "height": 1280
+ },
+ "meanpath": {
+ "body": ""
+ },
+ "medium": {
+ "body": "",
+ "width": 1792
+ },
+ "medkit": {
+ "body": "",
+ "width": 1792
+ },
+ "meetup": {
+ "body": "",
+ "width": 1856,
+ "height": 1792
+ },
+ "meh-o": {
+ "body": ""
+ },
+ "mercury": {
+ "body": "",
+ "width": 1152,
+ "height": 1792
+ },
+ "microchip": {
+ "body": "",
+ "height": 1664
+ },
+ "microphone": {
+ "body": "",
+ "width": 1152,
+ "height": 1664
+ },
+ "microphone-slash": {
+ "body": "",
+ "width": 1408,
+ "height": 1664
+ },
+ "minus": {
+ "body": "",
+ "width": 1408,
+ "height": 1280
+ },
+ "minus-circle": {
+ "body": ""
+ },
+ "minus-square": {
+ "body": ""
+ },
+ "minus-square-o": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "mixcloud": {
+ "body": "",
+ "width": 2304,
+ "height": 1408
+ },
+ "mobile": {
+ "body": "",
+ "width": 768,
+ "height": 1280
+ },
+ "modx": {
+ "body": "",
+ "width": 1728,
+ "height": 1792
+ },
+ "money": {
+ "body": "",
+ "width": 1920,
+ "height": 1280
+ },
+ "moon-o": {
+ "body": "",
+ "width": 1472
+ },
+ "motorcycle": {
+ "body": "",
+ "width": 2304,
+ "height": 1280
+ },
+ "mouse-pointer": {
+ "body": "",
+ "width": 1152,
+ "height": 1792
+ },
+ "music": {
+ "body": "",
+ "height": 1664
+ },
+ "neuter": {
+ "body": "",
+ "width": 1152,
+ "height": 1792
+ },
+ "newspaper-o": {
+ "body": "",
+ "width": 2048,
+ "height": 1408
+ },
+ "object-group": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "object-ungroup": {
+ "body": "",
+ "width": 2304,
+ "height": 1792
+ },
+ "odnoklassniki": {
+ "body": "",
+ "width": 1088,
+ "height": 1792
+ },
+ "odnoklassniki-square": {
+ "body": ""
+ },
+ "opencart": {
+ "body": "",
+ "width": 2336,
+ "height": 1664
+ },
+ "openid": {
+ "body": "",
+ "width": 1792,
+ "height": 1664
+ },
+ "opera": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "optin-monster": {
+ "body": "",
+ "width": 2176,
+ "height": 1792
+ },
+ "pagelines": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "paint-brush": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "paper-plane": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "paper-plane-o": {
+ "body": "",
+ "width": 1792,
+ "height": 1824
+ },
+ "paperclip": {
+ "body": "",
+ "width": 1408
+ },
+ "paragraph": {
+ "body": "",
+ "width": 1280
+ },
+ "pause": {
+ "body": ""
+ },
+ "pause-circle": {
+ "body": ""
+ },
+ "pause-circle-o": {
+ "body": ""
+ },
+ "paw": {
+ "body": "",
+ "width": 1664
+ },
+ "paypal": {
+ "body": "",
+ "height": 1792
+ },
+ "pencil": {
+ "body": ""
+ },
+ "pencil-square": {
+ "body": ""
+ },
+ "percent": {
+ "body": ""
+ },
+ "phone": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "phone-square": {
+ "body": ""
+ },
+ "pie-chart": {
+ "body": "",
+ "width": 1728,
+ "height": 1664
+ },
+ "pied-piper": {
+ "body": "",
+ "width": 2304,
+ "height": 1664
+ },
+ "pied-piper-alt": {
+ "body": "",
+ "width": 1984,
+ "height": 1792
+ },
+ "pied-piper-pp": {
+ "body": ""
+ },
+ "pinterest": {
+ "body": ""
+ },
+ "pinterest-p": {
+ "body": "",
+ "width": 1280,
+ "height": 1664
+ },
+ "pinterest-square": {
+ "body": ""
+ },
+ "plane": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "play": {
+ "body": "",
+ "width": 1408,
+ "height": 1600
+ },
+ "play-circle": {
+ "body": ""
+ },
+ "play-circle-o": {
+ "body": ""
+ },
+ "plug": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "plus": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "plus-circle": {
+ "body": ""
+ },
+ "plus-square": {
+ "body": ""
+ },
+ "plus-square-o": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "podcast": {
+ "body": "",
+ "height": 1792
+ },
+ "power-off": {
+ "body": "",
+ "height": 1664
+ },
+ "print": {
+ "body": "",
+ "width": 1664
+ },
+ "product-hunt": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "puzzle-piece": {
+ "body": "",
+ "width": 1664,
+ "height": 1600
+ },
+ "qq": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "qrcode": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "question": {
+ "body": "",
+ "width": 928,
+ "height": 1280
+ },
+ "question-circle": {
+ "body": ""
+ },
+ "question-circle-o": {
+ "body": ""
+ },
+ "quora": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "quote-left": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "quote-right": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "ra": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "random": {
+ "body": "",
+ "width": 1792,
+ "height": 1600
+ },
+ "ravelry": {
+ "body": "",
+ "width": 2112,
+ "height": 1792
+ },
+ "recycle": {
+ "body": "",
+ "width": 1792,
+ "height": 1728
+ },
+ "reddit": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "reddit-alien": {
+ "body": "",
+ "width": 1792,
+ "height": 1696
+ },
+ "reddit-square": {
+ "body": ""
+ },
+ "refresh": {
+ "body": ""
+ },
+ "registered": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "renren": {
+ "body": ""
+ },
+ "repeat": {
+ "body": ""
+ },
+ "retweet": {
+ "body": "",
+ "width": 1920,
+ "height": 1280
+ },
+ "road": {
+ "body": "",
+ "width": 1856,
+ "height": 1280
+ },
+ "rocket": {
+ "body": "",
+ "width": 1664,
+ "height": 1632
+ },
+ "rotate-left": {
+ "body": ""
+ },
+ "rouble": {
+ "body": "",
+ "width": 1280,
+ "height": 1408
+ },
+ "rss-square": {
+ "body": ""
+ },
+ "safari": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "scribd": {
+ "body": "",
+ "width": 1472,
+ "height": 1792
+ },
+ "search": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "search-minus": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "search-plus": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "sellsy": {
+ "body": "",
+ "width": 2048,
+ "height": 1472
+ },
+ "server": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "share-alt": {
+ "body": ""
+ },
+ "share-alt-square": {
+ "body": ""
+ },
+ "share-square": {
+ "body": ""
+ },
+ "share-square-o": {
+ "body": "",
+ "width": 1664
+ },
+ "shield": {
+ "body": "",
+ "width": 1280
+ },
+ "ship": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "shirtsinbulk": {
+ "body": "",
+ "height": 1760
+ },
+ "shopping-bag": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "shopping-basket": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "shopping-cart": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "shower": {
+ "body": "",
+ "width": 1920,
+ "height": 1792
+ },
+ "sign-in": {
+ "body": "",
+ "height": 1280
+ },
+ "sign-language": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "sign-out": {
+ "body": "",
+ "width": 1568,
+ "height": 1280
+ },
+ "signal": {
+ "body": "",
+ "width": 1792
+ },
+ "simplybuilt": {
+ "body": "",
+ "width": 2048,
+ "height": 1600
+ },
+ "sitemap": {
+ "body": "",
+ "width": 1792
+ },
+ "skyatlas": {
+ "body": "",
+ "width": 2048,
+ "height": 1280
+ },
+ "skype": {
+ "body": ""
+ },
+ "slack": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "sliders": {
+ "body": "",
+ "height": 1408
+ },
+ "slideshare": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "smile-o": {
+ "body": ""
+ },
+ "snapchat": {
+ "body": ""
+ },
+ "snapchat-ghost": {
+ "body": "",
+ "width": 1664
+ },
+ "snapchat-square": {
+ "body": ""
+ },
+ "snowflake-o": {
+ "body": "",
+ "width": 1600,
+ "height": 1792
+ },
+ "sort": {
+ "body": "",
+ "width": 1024,
+ "height": 1408
+ },
+ "sort-alpha-asc": {
+ "body": "",
+ "width": 1632,
+ "height": 1792
+ },
+ "sort-alpha-desc": {
+ "body": "",
+ "width": 1632,
+ "height": 1792
+ },
+ "sort-amount-asc": {
+ "body": "",
+ "width": 1760,
+ "height": 1792
+ },
+ "sort-amount-desc": {
+ "body": "",
+ "width": 1760,
+ "height": 1792
+ },
+ "sort-asc": {
+ "body": "",
+ "width": 1024,
+ "height": 1344
+ },
+ "sort-numeric-asc": {
+ "body": "",
+ "width": 1472,
+ "height": 1792
+ },
+ "sort-numeric-desc": {
+ "body": "",
+ "width": 1472,
+ "height": 1792
+ },
+ "soundcloud": {
+ "body": "",
+ "width": 2304,
+ "height": 1280
+ },
+ "space-shuttle": {
+ "body": "",
+ "width": 2176,
+ "height": 1408
+ },
+ "spinner": {
+ "body": "",
+ "width": 1664,
+ "height": 1728
+ },
+ "spoon": {
+ "body": "",
+ "width": 640,
+ "height": 1792
+ },
+ "spotify": {
+ "body": ""
+ },
+ "square": {
+ "body": ""
+ },
+ "square-o": {
+ "body": "",
+ "width": 1408,
+ "height": 1408
+ },
+ "stack-exchange": {
+ "body": "",
+ "width": 1280
+ },
+ "stack-overflow": {
+ "body": "",
+ "height": 1792
+ },
+ "star": {
+ "body": "",
+ "width": 1664,
+ "height": 1600
+ },
+ "star-half": {
+ "body": "",
+ "width": 832,
+ "height": 1600
+ },
+ "star-half-empty": {
+ "body": "",
+ "width": 1664,
+ "height": 1600
+ },
+ "star-o": {
+ "body": "",
+ "width": 1664,
+ "height": 1600
+ },
+ "steam": {
+ "body": "",
+ "width": 1792
+ },
+ "steam-square": {
+ "body": ""
+ },
+ "step-backward": {
+ "body": "",
+ "width": 1024
+ },
+ "stethoscope": {
+ "body": "",
+ "width": 1408
+ },
+ "sticky-note": {
+ "body": ""
+ },
+ "sticky-note-o": {
+ "body": ""
+ },
+ "stop": {
+ "body": ""
+ },
+ "stop-circle": {
+ "body": ""
+ },
+ "stop-circle-o": {
+ "body": ""
+ },
+ "street-view": {
+ "body": "",
+ "width": 1408,
+ "height": 1760
+ },
+ "strikethrough": {
+ "body": "",
+ "width": 1792
+ },
+ "stumbleupon": {
+ "body": "",
+ "width": 1920,
+ "height": 1472
+ },
+ "stumbleupon-circle": {
+ "body": ""
+ },
+ "subscript": {
+ "body": ""
+ },
+ "subway": {
+ "body": "",
+ "height": 1792
+ },
+ "suitcase": {
+ "body": "",
+ "width": 1792
+ },
+ "sun-o": {
+ "body": "",
+ "width": 1728,
+ "height": 1792
+ },
+ "superpowers": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "superscript": {
+ "body": "",
+ "height": 1408
+ },
+ "table": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "tablet": {
+ "body": "",
+ "width": 1152,
+ "height": 1408
+ },
+ "tag": {
+ "body": ""
+ },
+ "tags": {
+ "body": "",
+ "width": 1920
+ },
+ "tasks": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "telegram": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "television": {
+ "body": "",
+ "width": 1920
+ },
+ "tencent-weibo": {
+ "body": "",
+ "width": 1216,
+ "height": 1792
+ },
+ "terminal": {
+ "body": "",
+ "width": 1664,
+ "height": 1280
+ },
+ "text-height": {
+ "body": "",
+ "width": 1792
+ },
+ "text-width": {
+ "body": "",
+ "height": 1664
+ },
+ "th": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "th-large": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "th-list": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "themeisle": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "thermometer": {
+ "body": "",
+ "width": 1024,
+ "height": 1792
+ },
+ "thermometer-0": {
+ "body": "",
+ "width": 1024,
+ "height": 1792
+ },
+ "thermometer-1": {
+ "body": "",
+ "width": 1024,
+ "height": 1792
+ },
+ "thermometer-2": {
+ "body": "",
+ "width": 1024,
+ "height": 1792
+ },
+ "thermometer-3": {
+ "body": "",
+ "width": 1024,
+ "height": 1792
+ },
+ "thumb-tack": {
+ "body": "",
+ "width": 1152,
+ "height": 1664
+ },
+ "thumbs-down": {
+ "body": "",
+ "width": 1600
+ },
+ "thumbs-o-up": {
+ "body": "",
+ "height": 1664
+ },
+ "thumbs-up": {
+ "body": "",
+ "width": 1600
+ },
+ "ticket": {
+ "body": "",
+ "width": 1728,
+ "height": 1728
+ },
+ "times-circle": {
+ "body": ""
+ },
+ "times-circle-o": {
+ "body": ""
+ },
+ "times-rectangle": {
+ "body": "",
+ "width": 1792
+ },
+ "times-rectangle-o": {
+ "body": "",
+ "width": 1792
+ },
+ "tint": {
+ "body": "",
+ "width": 1024,
+ "height": 1472
+ },
+ "toggle-off": {
+ "body": "",
+ "width": 2048,
+ "height": 1280
+ },
+ "toggle-on": {
+ "body": "",
+ "width": 2048,
+ "height": 1280
+ },
+ "trademark": {
+ "body": "",
+ "width": 1984,
+ "height": 1280
+ },
+ "train": {
+ "body": "",
+ "height": 1792
+ },
+ "transgender-alt": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "trash": {
+ "body": "",
+ "width": 1408
+ },
+ "trash-o": {
+ "body": "",
+ "width": 1408
+ },
+ "tree": {
+ "body": "",
+ "width": 1472,
+ "height": 1792
+ },
+ "trello": {
+ "body": ""
+ },
+ "tripadvisor": {
+ "body": "",
+ "width": 2304,
+ "height": 1408
+ },
+ "trophy": {
+ "body": "",
+ "width": 1664
+ },
+ "truck": {
+ "body": "",
+ "width": 1728,
+ "height": 1408
+ },
+ "try": {
+ "body": "",
+ "width": 1152,
+ "height": 1408
+ },
+ "tty": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "tumblr": {
+ "body": "",
+ "width": 960,
+ "height": 1664
+ },
+ "tumblr-square": {
+ "body": ""
+ },
+ "twitch": {
+ "body": "",
+ "width": 1600,
+ "height": 1664
+ },
+ "twitter": {
+ "body": "",
+ "width": 1600,
+ "height": 1280
+ },
+ "twitter-square": {
+ "body": ""
+ },
+ "umbrella": {
+ "body": "",
+ "width": 1664,
+ "height": 1600
+ },
+ "underline": {
+ "body": ""
+ },
+ "universal-access": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "unlock": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "unlock-alt": {
+ "body": "",
+ "width": 1152
+ },
+ "upload": {
+ "body": "",
+ "width": 1664,
+ "height": 1600
+ },
+ "usb": {
+ "body": "",
+ "width": 2304,
+ "height": 1408
+ },
+ "user": {
+ "body": "",
+ "width": 1280
+ },
+ "user-circle": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "user-circle-o": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "user-md": {
+ "body": "",
+ "width": 1408
+ },
+ "user-o": {
+ "body": "",
+ "height": 1792
+ },
+ "user-plus": {
+ "body": "",
+ "width": 2048
+ },
+ "user-secret": {
+ "body": "",
+ "width": 1408,
+ "height": 1664
+ },
+ "user-times": {
+ "body": "",
+ "width": 2048
+ },
+ "venus": {
+ "body": "",
+ "width": 1152,
+ "height": 1792
+ },
+ "venus-double": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "venus-mars": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "viacoin": {
+ "body": "",
+ "height": 1792
+ },
+ "viadeo": {
+ "body": "",
+ "width": 1280
+ },
+ "viadeo-square": {
+ "body": ""
+ },
+ "video-camera": {
+ "body": "",
+ "width": 1792,
+ "height": 1280
+ },
+ "vimeo": {
+ "body": "",
+ "width": 1664,
+ "height": 1408
+ },
+ "vimeo-square": {
+ "body": ""
+ },
+ "vine": {
+ "body": "",
+ "width": 1472,
+ "height": 1664
+ },
+ "vk": {
+ "body": "",
+ "width": 1952,
+ "height": 1280
+ },
+ "volume-control-phone": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "volume-down": {
+ "body": "",
+ "width": 1152,
+ "height": 1280
+ },
+ "volume-off": {
+ "body": "",
+ "width": 768,
+ "height": 1280
+ },
+ "volume-up": {
+ "body": "",
+ "width": 1664,
+ "height": 1472
+ },
+ "wechat": {
+ "body": "",
+ "width": 2048,
+ "height": 1728
+ },
+ "weibo": {
+ "body": "",
+ "width": 1792,
+ "height": 1472
+ },
+ "whatsapp": {
+ "body": "",
+ "height": 1600
+ },
+ "wheelchair": {
+ "body": "",
+ "width": 1632,
+ "height": 1760
+ },
+ "wheelchair-alt": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "wifi": {
+ "body": "",
+ "width": 1984,
+ "height": 1408
+ },
+ "wikipedia-w": {
+ "body": "",
+ "width": 2304
+ },
+ "window-maximize": {
+ "body": "",
+ "width": 1792
+ },
+ "window-minimize": {
+ "body": "",
+ "width": 1792,
+ "height": 1408
+ },
+ "window-restore": {
+ "body": "",
+ "width": 2048,
+ "height": 1792
+ },
+ "windows": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "wordpress": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "wpbeginner": {
+ "body": "",
+ "width": 1792,
+ "height": 1728
+ },
+ "wpexplorer": {
+ "body": "",
+ "width": 1792,
+ "height": 1792
+ },
+ "wpforms": {
+ "body": ""
+ },
+ "wrench": {
+ "body": "",
+ "width": 1664,
+ "height": 1664
+ },
+ "xing": {
+ "body": "",
+ "width": 1408,
+ "height": 1664
+ },
+ "xing-square": {
+ "body": ""
+ },
+ "y-combinator": {
+ "body": ""
+ },
+ "yahoo": {
+ "body": "",
+ "width": 1344,
+ "height": 1664
+ },
+ "yelp": {
+ "body": "",
+ "width": 1408,
+ "height": 1792
+ },
+ "yoast": {
+ "body": "",
+ "width": 1664,
+ "height": 1792
+ },
+ "youtube": {
+ "body": "",
+ "height": 1792
+ },
+ "youtube-play": {
+ "body": "",
+ "width": 1792,
+ "height": 1280
+ },
+ "youtube-square": {
+ "body": ""
+ }
+ },
+ "aliases": {
+ "align-right": {
+ "parent": "align-left",
+ "hFlip": true
+ },
+ "angle-double-down": {
+ "parent": "angle-double-up",
+ "vFlip": true
+ },
+ "angle-double-right": {
+ "parent": "angle-double-left",
+ "hFlip": true
+ },
+ "angle-right": {
+ "parent": "angle-left",
+ "hFlip": true
+ },
+ "arrow-circle-down": {
+ "parent": "arrow-circle-up",
+ "vFlip": true
+ },
+ "arrow-circle-o-down": {
+ "parent": "arrow-circle-o-up",
+ "vFlip": true
+ },
+ "arrow-circle-o-right": {
+ "parent": "arrow-circle-o-left",
+ "hFlip": true
+ },
+ "arrow-circle-right": {
+ "parent": "arrow-circle-left",
+ "hFlip": true
+ },
+ "arrow-down": {
+ "parent": "arrow-up",
+ "vFlip": true
+ },
+ "arrow-right": {
+ "parent": "arrow-left",
+ "hFlip": true
+ },
+ "asl-interpreting": {
+ "parent": "american-sign-language-interpreting"
+ },
+ "bar-chart-o": {
+ "parent": "bar-chart"
+ },
+ "bathtub": {
+ "parent": "bath"
+ },
+ "battery-4": {
+ "parent": "battery"
+ },
+ "battery-empty": {
+ "parent": "battery-0"
+ },
+ "battery-full": {
+ "parent": "battery"
+ },
+ "battery-half": {
+ "parent": "battery-2"
+ },
+ "battery-quarter": {
+ "parent": "battery-1"
+ },
+ "battery-three-quarters": {
+ "parent": "battery-3"
+ },
+ "btc": {
+ "parent": "bitcoin"
+ },
+ "car": {
+ "parent": "automobile"
+ },
+ "caret-right": {
+ "parent": "caret-left",
+ "hFlip": true
+ },
+ "caret-square-o-down": {
+ "parent": "caret-square-o-up",
+ "vFlip": true
+ },
+ "caret-square-o-right": {
+ "parent": "caret-square-o-left",
+ "hFlip": true
+ },
+ "chevron-circle-down": {
+ "parent": "chevron-circle-up",
+ "vFlip": true
+ },
+ "chevron-circle-right": {
+ "parent": "chevron-circle-left",
+ "hFlip": true
+ },
+ "chevron-right": {
+ "parent": "chevron-left",
+ "hFlip": true
+ },
+ "deafness": {
+ "parent": "deaf"
+ },
+ "euro": {
+ "parent": "eur"
+ },
+ "facebook-f": {
+ "parent": "facebook"
+ },
+ "fast-forward": {
+ "parent": "fast-backward",
+ "hFlip": true
+ },
+ "file-photo-o": {
+ "parent": "file-image-o"
+ },
+ "file-picture-o": {
+ "parent": "file-image-o"
+ },
+ "file-sound-o": {
+ "parent": "file-audio-o"
+ },
+ "file-video-o": {
+ "parent": "file-movie-o"
+ },
+ "file-zip-o": {
+ "parent": "file-archive-o"
+ },
+ "files-o": {
+ "parent": "copy"
+ },
+ "flash": {
+ "parent": "bolt"
+ },
+ "font-awesome": {
+ "parent": "fa"
+ },
+ "forward": {
+ "parent": "backward",
+ "hFlip": true
+ },
+ "ge": {
+ "parent": "empire"
+ },
+ "gear": {
+ "parent": "cog"
+ },
+ "gears": {
+ "parent": "cogs"
+ },
+ "google-plus-official": {
+ "parent": "google-plus-circle"
+ },
+ "gratipay": {
+ "parent": "gittip"
+ },
+ "hand-o-down": {
+ "parent": "hand-o-up",
+ "vFlip": true
+ },
+ "hand-o-right": {
+ "parent": "hand-o-left",
+ "hFlip": true
+ },
+ "hand-rock-o": {
+ "parent": "hand-grab-o"
+ },
+ "hand-stop-o": {
+ "parent": "hand-paper-o"
+ },
+ "hard-of-hearing": {
+ "parent": "deaf"
+ },
+ "hotel": {
+ "parent": "bed"
+ },
+ "hourglass-end": {
+ "parent": "hourglass-3"
+ },
+ "hourglass-half": {
+ "parent": "hourglass-2"
+ },
+ "hourglass-start": {
+ "parent": "hourglass-1"
+ },
+ "id-card": {
+ "parent": "drivers-license"
+ },
+ "id-card-o": {
+ "parent": "drivers-license-o"
+ },
+ "institution": {
+ "parent": "bank"
+ },
+ "jpy": {
+ "parent": "cny"
+ },
+ "legal": {
+ "parent": "gavel"
+ },
+ "level-down": {
+ "parent": "level-up",
+ "vFlip": true
+ },
+ "life-buoy": {
+ "parent": "life-bouy"
+ },
+ "life-ring": {
+ "parent": "life-bouy"
+ },
+ "life-saver": {
+ "parent": "life-bouy"
+ },
+ "link": {
+ "parent": "chain"
+ },
+ "long-arrow-down": {
+ "parent": "long-arrow-up",
+ "vFlip": true
+ },
+ "long-arrow-right": {
+ "parent": "long-arrow-left",
+ "hFlip": true
+ },
+ "mobile-phone": {
+ "parent": "mobile"
+ },
+ "mortar-board": {
+ "parent": "graduation-cap"
+ },
+ "navicon": {
+ "parent": "bars"
+ },
+ "outdent": {
+ "parent": "dedent"
+ },
+ "paste": {
+ "parent": "clipboard"
+ },
+ "pencil-square-o": {
+ "parent": "edit"
+ },
+ "photo": {
+ "parent": "image"
+ },
+ "picture-o": {
+ "parent": "image"
+ },
+ "rebel": {
+ "parent": "ra"
+ },
+ "remove": {
+ "parent": "close"
+ },
+ "reorder": {
+ "parent": "bars"
+ },
+ "reply": {
+ "parent": "mail-reply"
+ },
+ "reply-all": {
+ "parent": "mail-reply-all"
+ },
+ "resistance": {
+ "parent": "ra"
+ },
+ "rmb": {
+ "parent": "cny"
+ },
+ "rotate-right": {
+ "parent": "repeat"
+ },
+ "rss": {
+ "parent": "feed"
+ },
+ "rub": {
+ "parent": "rouble"
+ },
+ "ruble": {
+ "parent": "rouble"
+ },
+ "rupee": {
+ "parent": "inr"
+ },
+ "s15": {
+ "parent": "bath"
+ },
+ "save": {
+ "parent": "floppy-o"
+ },
+ "scissors": {
+ "parent": "cut"
+ },
+ "send": {
+ "parent": "paper-plane"
+ },
+ "send-o": {
+ "parent": "paper-plane-o"
+ },
+ "share": {
+ "parent": "mail-forward"
+ },
+ "shekel": {
+ "parent": "ils"
+ },
+ "sheqel": {
+ "parent": "ils"
+ },
+ "signing": {
+ "parent": "sign-language"
+ },
+ "soccer-ball-o": {
+ "parent": "futbol-o"
+ },
+ "sort-desc": {
+ "parent": "sort-asc",
+ "vFlip": true
+ },
+ "sort-down": {
+ "parent": "sort-asc",
+ "vFlip": true
+ },
+ "sort-up": {
+ "parent": "sort-asc"
+ },
+ "star-half-full": {
+ "parent": "star-half-empty"
+ },
+ "star-half-o": {
+ "parent": "star-half-empty"
+ },
+ "step-forward": {
+ "parent": "step-backward",
+ "hFlip": true
+ },
+ "support": {
+ "parent": "life-bouy"
+ },
+ "tachometer": {
+ "parent": "dashboard"
+ },
+ "taxi": {
+ "parent": "cab"
+ },
+ "thermometer-4": {
+ "parent": "thermometer"
+ },
+ "thermometer-empty": {
+ "parent": "thermometer-0"
+ },
+ "thermometer-full": {
+ "parent": "thermometer"
+ },
+ "thermometer-half": {
+ "parent": "thermometer-2"
+ },
+ "thermometer-quarter": {
+ "parent": "thermometer-1"
+ },
+ "thermometer-three-quarters": {
+ "parent": "thermometer-3"
+ },
+ "thumbs-o-down": {
+ "parent": "thumbs-o-up",
+ "vFlip": true
+ },
+ "times": {
+ "parent": "close"
+ },
+ "toggle-down": {
+ "parent": "caret-square-o-up",
+ "vFlip": true
+ },
+ "toggle-left": {
+ "parent": "caret-square-o-left"
+ },
+ "toggle-right": {
+ "parent": "caret-square-o-left",
+ "hFlip": true
+ },
+ "toggle-up": {
+ "parent": "caret-square-o-up"
+ },
+ "transgender": {
+ "parent": "intersex"
+ },
+ "turkish-lira": {
+ "parent": "try"
+ },
+ "tv": {
+ "parent": "television"
+ },
+ "undo": {
+ "parent": "rotate-left"
+ },
+ "university": {
+ "parent": "bank"
+ },
+ "unlink": {
+ "parent": "chain-broken"
+ },
+ "unsorted": {
+ "parent": "sort"
+ },
+ "usd": {
+ "parent": "dollar"
+ },
+ "users": {
+ "parent": "group"
+ },
+ "vcard": {
+ "parent": "address-card"
+ },
+ "vcard-o": {
+ "parent": "address-card-o"
+ },
+ "warning": {
+ "parent": "exclamation-triangle"
+ },
+ "weixin": {
+ "parent": "wechat"
+ },
+ "window-close": {
+ "parent": "times-rectangle"
+ },
+ "window-close-o": {
+ "parent": "times-rectangle-o"
+ },
+ "won": {
+ "parent": "krw"
+ },
+ "y-combinator-square": {
+ "parent": "hacker-news"
+ },
+ "yc": {
+ "parent": "y-combinator"
+ },
+ "yc-square": {
+ "parent": "hacker-news"
+ },
+ "yen": {
+ "parent": "cny"
+ }
+ },
+ "chars": {
+ "f26e": "500px",
+ "f2b9": "address-book",
+ "f2ba": "address-book-o",
+ "f2bb": "address-card",
+ "f2bc": "address-card-o",
+ "f042": "adjust",
+ "f170": "adn",
+ "f037": "align-center",
+ "f039": "align-justify",
+ "f036": "align-left",
+ "f270": "amazon",
+ "f0f9": "ambulance",
+ "f2a3": "american-sign-language-interpreting",
+ "f13d": "anchor",
+ "f17b": "android",
+ "f209": "angellist",
+ "f100": "angle-double-left",
+ "f102": "angle-double-up",
+ "f107": "angle-down",
+ "f104": "angle-left",
+ "f106": "angle-up",
+ "f179": "apple",
+ "f187": "archive",
+ "f1fe": "area-chart",
+ "f0a8": "arrow-circle-left",
+ "f190": "arrow-circle-o-left",
+ "f01b": "arrow-circle-o-up",
+ "f0aa": "arrow-circle-up",
+ "f060": "arrow-left",
+ "f062": "arrow-up",
+ "f047": "arrows",
+ "f0b2": "arrows-alt",
+ "f07e": "arrows-h",
+ "f07d": "arrows-v",
+ "f2a2": "assistive-listening-systems",
+ "f069": "asterisk",
+ "f1fa": "at",
+ "f29e": "audio-description",
+ "f1b9": "automobile",
+ "f04a": "backward",
+ "f24e": "balance-scale",
+ "f05e": "ban",
+ "f2d5": "bandcamp",
+ "f19c": "bank",
+ "f080": "bar-chart",
+ "f02a": "barcode",
+ "f0c9": "bars",
+ "f2cd": "bath",
+ "f240": "battery",
+ "f244": "battery-0",
+ "f243": "battery-1",
+ "f242": "battery-2",
+ "f241": "battery-3",
+ "f236": "bed",
+ "f0fc": "beer",
+ "f1b4": "behance",
+ "f1b5": "behance-square",
+ "f0f3": "bell",
+ "f0a2": "bell-o",
+ "f1f6": "bell-slash",
+ "f1f7": "bell-slash-o",
+ "f206": "bicycle",
+ "f1e5": "binoculars",
+ "f1fd": "birthday-cake",
+ "f171": "bitbucket",
+ "f172": "bitbucket-square",
+ "f15a": "bitcoin",
+ "f27e": "black-tie",
+ "f29d": "blind",
+ "f293": "bluetooth",
+ "f294": "bluetooth-b",
+ "f032": "bold",
+ "f0e7": "bolt",
+ "f1e2": "bomb",
+ "f02d": "book",
+ "f02e": "bookmark",
+ "f097": "bookmark-o",
+ "f2a1": "braille",
+ "f0b1": "briefcase",
+ "f188": "bug",
+ "f1ad": "building",
+ "f0f7": "building-o",
+ "f0a1": "bullhorn",
+ "f140": "bullseye",
+ "f207": "bus",
+ "f20d": "buysellads",
+ "f1ba": "cab",
+ "f1ec": "calculator",
+ "f073": "calendar",
+ "f274": "calendar-check-o",
+ "f272": "calendar-minus-o",
+ "f133": "calendar-o",
+ "f271": "calendar-plus-o",
+ "f273": "calendar-times-o",
+ "f030": "camera",
+ "f083": "camera-retro",
+ "f0d7": "caret-down",
+ "f0d9": "caret-left",
+ "f191": "caret-square-o-left",
+ "f151": "caret-square-o-up",
+ "f0d8": "caret-up",
+ "f218": "cart-arrow-down",
+ "f217": "cart-plus",
+ "f20a": "cc",
+ "f1f3": "cc-amex",
+ "f24c": "cc-diners-club",
+ "f1f2": "cc-discover",
+ "f24b": "cc-jcb",
+ "f1f1": "cc-mastercard",
+ "f1f4": "cc-paypal",
+ "f1f5": "cc-stripe",
+ "f1f0": "cc-visa",
+ "f0a3": "certificate",
+ "f0c1": "chain",
+ "f127": "chain-broken",
+ "f00c": "check",
+ "f058": "check-circle",
+ "f05d": "check-circle-o",
+ "f14a": "check-square",
+ "f046": "check-square-o",
+ "f137": "chevron-circle-left",
+ "f139": "chevron-circle-up",
+ "f078": "chevron-down",
+ "f053": "chevron-left",
+ "f077": "chevron-up",
+ "f1ae": "child",
+ "f268": "chrome",
+ "f111": "circle",
+ "f10c": "circle-o",
+ "f1ce": "circle-o-notch",
+ "f1db": "circle-thin",
+ "f0ea": "clipboard",
+ "f017": "clock-o",
+ "f24d": "clone",
+ "f00d": "close",
+ "f0c2": "cloud",
+ "f0ed": "cloud-download",
+ "f0ee": "cloud-upload",
+ "f157": "cny",
+ "f121": "code",
+ "f126": "code-fork",
+ "f1cb": "codepen",
+ "f284": "codiepie",
+ "f0f4": "coffee",
+ "f013": "cog",
+ "f085": "cogs",
+ "f0db": "columns",
+ "f075": "comment",
+ "f0e5": "comment-o",
+ "f27a": "commenting",
+ "f27b": "commenting-o",
+ "f086": "comments",
+ "f0e6": "comments-o",
+ "f14e": "compass",
+ "f066": "compress",
+ "f20e": "connectdevelop",
+ "f26d": "contao",
+ "f0c5": "copy",
+ "f1f9": "copyright",
+ "f25e": "creative-commons",
+ "f09d": "credit-card",
+ "f283": "credit-card-alt",
+ "f125": "crop",
+ "f05b": "crosshairs",
+ "f13c": "css3",
+ "f1b2": "cube",
+ "f1b3": "cubes",
+ "f0c4": "cut",
+ "f0f5": "cutlery",
+ "f0e4": "dashboard",
+ "f210": "dashcube",
+ "f1c0": "database",
+ "f2a4": "deaf",
+ "f03b": "dedent",
+ "f1a5": "delicious",
+ "f108": "desktop",
+ "f1bd": "deviantart",
+ "f219": "diamond",
+ "f1a6": "digg",
+ "f155": "dollar",
+ "f192": "dot-circle-o",
+ "f019": "download",
+ "f17d": "dribbble",
+ "f2c2": "drivers-license",
+ "f2c3": "drivers-license-o",
+ "f16b": "dropbox",
+ "f1a9": "drupal",
+ "f282": "edge",
+ "f044": "edit",
+ "f2da": "eercast",
+ "f052": "eject",
+ "f141": "ellipsis-h",
+ "f142": "ellipsis-v",
+ "f1d1": "empire",
+ "f0e0": "envelope",
+ "f003": "envelope-o",
+ "f2b6": "envelope-open",
+ "f2b7": "envelope-open-o",
+ "f199": "envelope-square",
+ "f299": "envira",
+ "f12d": "eraser",
+ "f2d7": "etsy",
+ "f153": "eur",
+ "f0ec": "exchange",
+ "f12a": "exclamation",
+ "f06a": "exclamation-circle",
+ "f071": "exclamation-triangle",
+ "f065": "expand",
+ "f23e": "expeditedssl",
+ "f08e": "external-link",
+ "f14c": "external-link-square",
+ "f06e": "eye",
+ "f070": "eye-slash",
+ "f1fb": "eyedropper",
+ "f2b4": "fa",
+ "f09a": "facebook",
+ "f230": "facebook-official",
+ "f082": "facebook-square",
+ "f049": "fast-backward",
+ "f1ac": "fax",
+ "f09e": "feed",
+ "f182": "female",
+ "f0fb": "fighter-jet",
+ "f15b": "file",
+ "f1c6": "file-archive-o",
+ "f1c7": "file-audio-o",
+ "f1c9": "file-code-o",
+ "f1c3": "file-excel-o",
+ "f1c5": "file-image-o",
+ "f1c8": "file-movie-o",
+ "f016": "file-o",
+ "f1c1": "file-pdf-o",
+ "f1c4": "file-powerpoint-o",
+ "f15c": "file-text",
+ "f0f6": "file-text-o",
+ "f1c2": "file-word-o",
+ "f008": "film",
+ "f0b0": "filter",
+ "f06d": "fire",
+ "f134": "fire-extinguisher",
+ "f269": "firefox",
+ "f2b0": "first-order",
+ "f024": "flag",
+ "f11e": "flag-checkered",
+ "f11d": "flag-o",
+ "f0c3": "flask",
+ "f16e": "flickr",
+ "f0c7": "floppy-o",
+ "f07b": "folder",
+ "f114": "folder-o",
+ "f07c": "folder-open",
+ "f115": "folder-open-o",
+ "f031": "font",
+ "f280": "fonticons",
+ "f286": "fort-awesome",
+ "f211": "forumbee",
+ "f180": "foursquare",
+ "f2c5": "free-code-camp",
+ "f119": "frown-o",
+ "f1e3": "futbol-o",
+ "f11b": "gamepad",
+ "f0e3": "gavel",
+ "f154": "gbp",
+ "f22d": "genderless",
+ "f265": "get-pocket",
+ "f260": "gg",
+ "f261": "gg-circle",
+ "f06b": "gift",
+ "f1d3": "git",
+ "f1d2": "git-square",
+ "f09b": "github",
+ "f113": "github-alt",
+ "f092": "github-square",
+ "f296": "gitlab",
+ "f184": "gittip",
+ "f000": "glass",
+ "f2a5": "glide",
+ "f2a6": "glide-g",
+ "f0ac": "globe",
+ "f1a0": "google",
+ "f0d5": "google-plus",
+ "f2b3": "google-plus-circle",
+ "f0d4": "google-plus-square",
+ "f1ee": "google-wallet",
+ "f19d": "graduation-cap",
+ "f2d6": "grav",
+ "f0c0": "group",
+ "f0fd": "h-square",
+ "f1d4": "hacker-news",
+ "f255": "hand-grab-o",
+ "f258": "hand-lizard-o",
+ "f0a5": "hand-o-left",
+ "f0a6": "hand-o-up",
+ "f256": "hand-paper-o",
+ "f25b": "hand-peace-o",
+ "f25a": "hand-pointer-o",
+ "f257": "hand-scissors-o",
+ "f259": "hand-spock-o",
+ "f2b5": "handshake-o",
+ "f292": "hashtag",
+ "f0a0": "hdd-o",
+ "f1dc": "header",
+ "f025": "headphones",
+ "f004": "heart",
+ "f08a": "heart-o",
+ "f21e": "heartbeat",
+ "f1da": "history",
+ "f015": "home",
+ "f0f8": "hospital-o",
+ "f254": "hourglass",
+ "f251": "hourglass-1",
+ "f252": "hourglass-2",
+ "f253": "hourglass-3",
+ "f250": "hourglass-o",
+ "f27c": "houzz",
+ "f13b": "html5",
+ "f246": "i-cursor",
+ "f2c1": "id-badge",
+ "f20b": "ils",
+ "f03e": "image",
+ "f2d8": "imdb",
+ "f01c": "inbox",
+ "f03c": "indent",
+ "f275": "industry",
+ "f129": "info",
+ "f05a": "info-circle",
+ "f156": "inr",
+ "f16d": "instagram",
+ "f26b": "internet-explorer",
+ "f224": "intersex",
+ "f208": "ioxhost",
+ "f033": "italic",
+ "f1aa": "joomla",
+ "f1cc": "jsfiddle",
+ "f084": "key",
+ "f11c": "keyboard-o",
+ "f159": "krw",
+ "f1ab": "language",
+ "f109": "laptop",
+ "f202": "lastfm",
+ "f203": "lastfm-square",
+ "f06c": "leaf",
+ "f212": "leanpub",
+ "f094": "lemon-o",
+ "f148": "level-up",
+ "f1cd": "life-bouy",
+ "f0eb": "lightbulb-o",
+ "f201": "line-chart",
+ "f0e1": "linkedin",
+ "f08c": "linkedin-square",
+ "f2b8": "linode",
+ "f17c": "linux",
+ "f03a": "list",
+ "f022": "list-alt",
+ "f0cb": "list-ol",
+ "f0ca": "list-ul",
+ "f124": "location-arrow",
+ "f023": "lock",
+ "f177": "long-arrow-left",
+ "f176": "long-arrow-up",
+ "f2a8": "low-vision",
+ "f0d0": "magic",
+ "f076": "magnet",
+ "f064": "mail-forward",
+ "f112": "mail-reply",
+ "f122": "mail-reply-all",
+ "f183": "male",
+ "f279": "map",
+ "f041": "map-marker",
+ "f278": "map-o",
+ "f276": "map-pin",
+ "f277": "map-signs",
+ "f222": "mars",
+ "f227": "mars-double",
+ "f229": "mars-stroke",
+ "f22b": "mars-stroke-h",
+ "f22a": "mars-stroke-v",
+ "f136": "maxcdn",
+ "f20c": "meanpath",
+ "f23a": "medium",
+ "f0fa": "medkit",
+ "f2e0": "meetup",
+ "f11a": "meh-o",
+ "f223": "mercury",
+ "f2db": "microchip",
+ "f130": "microphone",
+ "f131": "microphone-slash",
+ "f068": "minus",
+ "f056": "minus-circle",
+ "f146": "minus-square",
+ "f147": "minus-square-o",
+ "f289": "mixcloud",
+ "f10b": "mobile",
+ "f285": "modx",
+ "f0d6": "money",
+ "f186": "moon-o",
+ "f21c": "motorcycle",
+ "f245": "mouse-pointer",
+ "f001": "music",
+ "f22c": "neuter",
+ "f1ea": "newspaper-o",
+ "f247": "object-group",
+ "f248": "object-ungroup",
+ "f263": "odnoklassniki",
+ "f264": "odnoklassniki-square",
+ "f23d": "opencart",
+ "f19b": "openid",
+ "f26a": "opera",
+ "f23c": "optin-monster",
+ "f18c": "pagelines",
+ "f1fc": "paint-brush",
+ "f1d8": "paper-plane",
+ "f1d9": "paper-plane-o",
+ "f0c6": "paperclip",
+ "f1dd": "paragraph",
+ "f04c": "pause",
+ "f28b": "pause-circle",
+ "f28c": "pause-circle-o",
+ "f1b0": "paw",
+ "f1ed": "paypal",
+ "f040": "pencil",
+ "f14b": "pencil-square",
+ "f295": "percent",
+ "f095": "phone",
+ "f098": "phone-square",
+ "f200": "pie-chart",
+ "f2ae": "pied-piper",
+ "f1a8": "pied-piper-alt",
+ "f1a7": "pied-piper-pp",
+ "f0d2": "pinterest",
+ "f231": "pinterest-p",
+ "f0d3": "pinterest-square",
+ "f072": "plane",
+ "f04b": "play",
+ "f144": "play-circle",
+ "f01d": "play-circle-o",
+ "f1e6": "plug",
+ "f067": "plus",
+ "f055": "plus-circle",
+ "f0fe": "plus-square",
+ "f196": "plus-square-o",
+ "f2ce": "podcast",
+ "f011": "power-off",
+ "f02f": "print",
+ "f288": "product-hunt",
+ "f12e": "puzzle-piece",
+ "f1d6": "qq",
+ "f029": "qrcode",
+ "f128": "question",
+ "f059": "question-circle",
+ "f29c": "question-circle-o",
+ "f2c4": "quora",
+ "f10d": "quote-left",
+ "f10e": "quote-right",
+ "f1d0": "ra",
+ "f074": "random",
+ "f2d9": "ravelry",
+ "f1b8": "recycle",
+ "f1a1": "reddit",
+ "f281": "reddit-alien",
+ "f1a2": "reddit-square",
+ "f021": "refresh",
+ "f25d": "registered",
+ "f18b": "renren",
+ "f01e": "repeat",
+ "f079": "retweet",
+ "f018": "road",
+ "f135": "rocket",
+ "f0e2": "rotate-left",
+ "f158": "rouble",
+ "f143": "rss-square",
+ "f267": "safari",
+ "f28a": "scribd",
+ "f002": "search",
+ "f010": "search-minus",
+ "f00e": "search-plus",
+ "f213": "sellsy",
+ "f233": "server",
+ "f1e0": "share-alt",
+ "f1e1": "share-alt-square",
+ "f14d": "share-square",
+ "f045": "share-square-o",
+ "f132": "shield",
+ "f21a": "ship",
+ "f214": "shirtsinbulk",
+ "f290": "shopping-bag",
+ "f291": "shopping-basket",
+ "f07a": "shopping-cart",
+ "f2cc": "shower",
+ "f090": "sign-in",
+ "f2a7": "sign-language",
+ "f08b": "sign-out",
+ "f012": "signal",
+ "f215": "simplybuilt",
+ "f0e8": "sitemap",
+ "f216": "skyatlas",
+ "f17e": "skype",
+ "f198": "slack",
+ "f1de": "sliders",
+ "f1e7": "slideshare",
+ "f118": "smile-o",
+ "f2ab": "snapchat",
+ "f2ac": "snapchat-ghost",
+ "f2ad": "snapchat-square",
+ "f2dc": "snowflake-o",
+ "f0dc": "sort",
+ "f15d": "sort-alpha-asc",
+ "f15e": "sort-alpha-desc",
+ "f160": "sort-amount-asc",
+ "f161": "sort-amount-desc",
+ "f0de": "sort-asc",
+ "f162": "sort-numeric-asc",
+ "f163": "sort-numeric-desc",
+ "f1be": "soundcloud",
+ "f197": "space-shuttle",
+ "f110": "spinner",
+ "f1b1": "spoon",
+ "f1bc": "spotify",
+ "f0c8": "square",
+ "f096": "square-o",
+ "f18d": "stack-exchange",
+ "f16c": "stack-overflow",
+ "f005": "star",
+ "f089": "star-half",
+ "f123": "star-half-empty",
+ "f006": "star-o",
+ "f1b6": "steam",
+ "f1b7": "steam-square",
+ "f048": "step-backward",
+ "f0f1": "stethoscope",
+ "f249": "sticky-note",
+ "f24a": "sticky-note-o",
+ "f04d": "stop",
+ "f28d": "stop-circle",
+ "f28e": "stop-circle-o",
+ "f21d": "street-view",
+ "f0cc": "strikethrough",
+ "f1a4": "stumbleupon",
+ "f1a3": "stumbleupon-circle",
+ "f12c": "subscript",
+ "f239": "subway",
+ "f0f2": "suitcase",
+ "f185": "sun-o",
+ "f2dd": "superpowers",
+ "f12b": "superscript",
+ "f0ce": "table",
+ "f10a": "tablet",
+ "f02b": "tag",
+ "f02c": "tags",
+ "f0ae": "tasks",
+ "f2c6": "telegram",
+ "f26c": "television",
+ "f1d5": "tencent-weibo",
+ "f120": "terminal",
+ "f034": "text-height",
+ "f035": "text-width",
+ "f00a": "th",
+ "f009": "th-large",
+ "f00b": "th-list",
+ "f2b2": "themeisle",
+ "f2c7": "thermometer",
+ "f2cb": "thermometer-0",
+ "f2ca": "thermometer-1",
+ "f2c9": "thermometer-2",
+ "f2c8": "thermometer-3",
+ "f08d": "thumb-tack",
+ "f165": "thumbs-down",
+ "f087": "thumbs-o-up",
+ "f164": "thumbs-up",
+ "f145": "ticket",
+ "f057": "times-circle",
+ "f05c": "times-circle-o",
+ "f2d3": "times-rectangle",
+ "f2d4": "times-rectangle-o",
+ "f043": "tint",
+ "f204": "toggle-off",
+ "f205": "toggle-on",
+ "f25c": "trademark",
+ "f238": "train",
+ "f225": "transgender-alt",
+ "f1f8": "trash",
+ "f014": "trash-o",
+ "f1bb": "tree",
+ "f181": "trello",
+ "f262": "tripadvisor",
+ "f091": "trophy",
+ "f0d1": "truck",
+ "f195": "try",
+ "f1e4": "tty",
+ "f173": "tumblr",
+ "f174": "tumblr-square",
+ "f1e8": "twitch",
+ "f099": "twitter",
+ "f081": "twitter-square",
+ "f0e9": "umbrella",
+ "f0cd": "underline",
+ "f29a": "universal-access",
+ "f09c": "unlock",
+ "f13e": "unlock-alt",
+ "f093": "upload",
+ "f287": "usb",
+ "f007": "user",
+ "f2bd": "user-circle",
+ "f2be": "user-circle-o",
+ "f0f0": "user-md",
+ "f2c0": "user-o",
+ "f234": "user-plus",
+ "f21b": "user-secret",
+ "f235": "user-times",
+ "f221": "venus",
+ "f226": "venus-double",
+ "f228": "venus-mars",
+ "f237": "viacoin",
+ "f2a9": "viadeo",
+ "f2aa": "viadeo-square",
+ "f03d": "video-camera",
+ "f27d": "vimeo",
+ "f194": "vimeo-square",
+ "f1ca": "vine",
+ "f189": "vk",
+ "f2a0": "volume-control-phone",
+ "f027": "volume-down",
+ "f026": "volume-off",
+ "f028": "volume-up",
+ "f1d7": "wechat",
+ "f18a": "weibo",
+ "f232": "whatsapp",
+ "f193": "wheelchair",
+ "f29b": "wheelchair-alt",
+ "f1eb": "wifi",
+ "f266": "wikipedia-w",
+ "f2d0": "window-maximize",
+ "f2d1": "window-minimize",
+ "f2d2": "window-restore",
+ "f17a": "windows",
+ "f19a": "wordpress",
+ "f297": "wpbeginner",
+ "f2de": "wpexplorer",
+ "f298": "wpforms",
+ "f0ad": "wrench",
+ "f168": "xing",
+ "f169": "xing-square",
+ "f23b": "y-combinator",
+ "f19e": "yahoo",
+ "f1e9": "yelp",
+ "f2b1": "yoast",
+ "f167": "youtube",
+ "f16a": "youtube-play",
+ "f166": "youtube-square",
+ "f038": "align-right",
+ "f103": "angle-double-down",
+ "f101": "angle-double-right",
+ "f105": "angle-right",
+ "f0ab": "arrow-circle-down",
+ "f01a": "arrow-circle-o-down",
+ "f18e": "arrow-circle-o-right",
+ "f0a9": "arrow-circle-right",
+ "f063": "arrow-down",
+ "f061": "arrow-right",
+ "f0da": "caret-right",
+ "f13a": "chevron-circle-down",
+ "f138": "chevron-circle-right",
+ "f054": "chevron-right",
+ "f050": "fast-forward",
+ "f04e": "forward",
+ "f0a7": "hand-o-down",
+ "f0a4": "hand-o-right",
+ "f149": "level-down",
+ "f175": "long-arrow-down",
+ "f178": "long-arrow-right",
+ "f0dd": "sort-down",
+ "f051": "step-forward",
+ "f088": "thumbs-o-down",
+ "f150": "toggle-down",
+ "f152": "toggle-right"
+ },
+ "width": 1536,
+ "height": 1536
+}
\ No newline at end of file
diff --git a/phpBB/assets/iconify/ic.json b/phpBB/assets/iconify/ic.json
new file mode 100644
index 0000000000..392fec7bd8
--- /dev/null
+++ b/phpBB/assets/iconify/ic.json
@@ -0,0 +1,46779 @@
+{
+ "prefix": "ic",
+ "info": {
+ "name": "Google Material Icons",
+ "total": 10955,
+ "version": "1.0.32",
+ "author": {
+ "name": "Material Design Authors",
+ "url": "https://github.com/material-icons/material-icons"
+ },
+ "license": {
+ "title": "Apache 2.0",
+ "spdx": "Apache-2.0",
+ "url": "https://github.com/material-icons/material-icons/blob/master/LICENSE"
+ },
+ "samples": [
+ "baseline-notifications-active",
+ "outline-person-outline",
+ "twotone-videocam-off"
+ ],
+ "height": 24,
+ "category": "General",
+ "palette": false
+ },
+ "lastModified": 1702312629,
+ "icons": {
+ "baseline-10k": {
+ "body": ""
+ },
+ "baseline-10mp": {
+ "body": ""
+ },
+ "baseline-11mp": {
+ "body": ""
+ },
+ "baseline-123": {
+ "body": ""
+ },
+ "baseline-12mp": {
+ "body": ""
+ },
+ "baseline-13mp": {
+ "body": ""
+ },
+ "baseline-14mp": {
+ "body": ""
+ },
+ "baseline-15mp": {
+ "body": ""
+ },
+ "baseline-16mp": {
+ "body": ""
+ },
+ "baseline-17mp": {
+ "body": ""
+ },
+ "baseline-18-up-rating": {
+ "body": ""
+ },
+ "baseline-18mp": {
+ "body": ""
+ },
+ "baseline-19mp": {
+ "body": ""
+ },
+ "baseline-1k": {
+ "body": ""
+ },
+ "baseline-1k-plus": {
+ "body": ""
+ },
+ "baseline-1x-mobiledata": {
+ "body": ""
+ },
+ "baseline-20mp": {
+ "body": ""
+ },
+ "baseline-21mp": {
+ "body": ""
+ },
+ "baseline-22mp": {
+ "body": ""
+ },
+ "baseline-23mp": {
+ "body": ""
+ },
+ "baseline-24mp": {
+ "body": ""
+ },
+ "baseline-2k": {
+ "body": ""
+ },
+ "baseline-2k-plus": {
+ "body": ""
+ },
+ "baseline-2mp": {
+ "body": ""
+ },
+ "baseline-30fps": {
+ "body": ""
+ },
+ "baseline-30fps-select": {
+ "body": ""
+ },
+ "baseline-360": {
+ "body": ""
+ },
+ "baseline-3d-rotation": {
+ "body": ""
+ },
+ "baseline-3g-mobiledata": {
+ "body": ""
+ },
+ "baseline-3k": {
+ "body": ""
+ },
+ "baseline-3k-plus": {
+ "body": ""
+ },
+ "baseline-3mp": {
+ "body": ""
+ },
+ "baseline-3p": {
+ "body": ""
+ },
+ "baseline-4g-mobiledata": {
+ "body": ""
+ },
+ "baseline-4g-plus-mobiledata": {
+ "body": ""
+ },
+ "baseline-4k": {
+ "body": ""
+ },
+ "baseline-4k-plus": {
+ "body": ""
+ },
+ "baseline-4mp": {
+ "body": ""
+ },
+ "baseline-5g": {
+ "body": ""
+ },
+ "baseline-5k": {
+ "body": ""
+ },
+ "baseline-5k-plus": {
+ "body": ""
+ },
+ "baseline-5mp": {
+ "body": ""
+ },
+ "baseline-6-ft-apart": {
+ "body": ""
+ },
+ "baseline-60fps": {
+ "body": ""
+ },
+ "baseline-60fps-select": {
+ "body": ""
+ },
+ "baseline-6k": {
+ "body": ""
+ },
+ "baseline-6k-plus": {
+ "body": ""
+ },
+ "baseline-6mp": {
+ "body": ""
+ },
+ "baseline-7k": {
+ "body": ""
+ },
+ "baseline-7k-plus": {
+ "body": ""
+ },
+ "baseline-7mp": {
+ "body": ""
+ },
+ "baseline-8k": {
+ "body": ""
+ },
+ "baseline-8k-plus": {
+ "body": ""
+ },
+ "baseline-8mp": {
+ "body": ""
+ },
+ "baseline-9k": {
+ "body": ""
+ },
+ "baseline-9k-plus": {
+ "body": ""
+ },
+ "baseline-9mp": {
+ "body": ""
+ },
+ "baseline-abc": {
+ "body": ""
+ },
+ "baseline-ac-unit": {
+ "body": ""
+ },
+ "baseline-access-alarm": {
+ "body": ""
+ },
+ "baseline-access-alarms": {
+ "body": ""
+ },
+ "baseline-access-time": {
+ "body": ""
+ },
+ "baseline-access-time-filled": {
+ "body": ""
+ },
+ "baseline-accessibility": {
+ "body": ""
+ },
+ "baseline-accessibility-new": {
+ "body": ""
+ },
+ "baseline-accessible": {
+ "body": ""
+ },
+ "baseline-accessible-forward": {
+ "body": ""
+ },
+ "baseline-account-balance": {
+ "body": ""
+ },
+ "baseline-account-balance-wallet": {
+ "body": ""
+ },
+ "baseline-account-box": {
+ "body": ""
+ },
+ "baseline-account-circle": {
+ "body": ""
+ },
+ "baseline-account-tree": {
+ "body": ""
+ },
+ "baseline-ad-units": {
+ "body": ""
+ },
+ "baseline-adb": {
+ "body": ""
+ },
+ "baseline-add": {
+ "body": ""
+ },
+ "baseline-add-a-photo": {
+ "body": ""
+ },
+ "baseline-add-alarm": {
+ "body": ""
+ },
+ "baseline-add-alert": {
+ "body": ""
+ },
+ "baseline-add-box": {
+ "body": ""
+ },
+ "baseline-add-business": {
+ "body": ""
+ },
+ "baseline-add-card": {
+ "body": ""
+ },
+ "baseline-add-chart": {
+ "body": ""
+ },
+ "baseline-add-circle": {
+ "body": ""
+ },
+ "baseline-add-circle-outline": {
+ "body": ""
+ },
+ "baseline-add-comment": {
+ "body": ""
+ },
+ "baseline-add-home": {
+ "body": ""
+ },
+ "baseline-add-home-work": {
+ "body": ""
+ },
+ "baseline-add-ic-call": {
+ "body": ""
+ },
+ "baseline-add-link": {
+ "body": ""
+ },
+ "baseline-add-location": {
+ "body": ""
+ },
+ "baseline-add-location-alt": {
+ "body": ""
+ },
+ "baseline-add-moderator": {
+ "body": ""
+ },
+ "baseline-add-photo-alternate": {
+ "body": ""
+ },
+ "baseline-add-reaction": {
+ "body": ""
+ },
+ "baseline-add-road": {
+ "body": ""
+ },
+ "baseline-add-shopping-cart": {
+ "body": ""
+ },
+ "baseline-add-task": {
+ "body": ""
+ },
+ "baseline-add-to-drive": {
+ "body": ""
+ },
+ "baseline-add-to-home-screen": {
+ "body": ""
+ },
+ "baseline-add-to-photos": {
+ "body": ""
+ },
+ "baseline-add-to-queue": {
+ "body": ""
+ },
+ "baseline-addchart": {
+ "body": ""
+ },
+ "baseline-adf-scanner": {
+ "body": ""
+ },
+ "baseline-adjust": {
+ "body": ""
+ },
+ "baseline-admin-panel-settings": {
+ "body": ""
+ },
+ "baseline-adobe": {
+ "body": ""
+ },
+ "baseline-ads-click": {
+ "body": ""
+ },
+ "baseline-agriculture": {
+ "body": ""
+ },
+ "baseline-air": {
+ "body": ""
+ },
+ "baseline-airline-seat-flat": {
+ "body": ""
+ },
+ "baseline-airline-seat-flat-angled": {
+ "body": ""
+ },
+ "baseline-airline-seat-individual-suite": {
+ "body": ""
+ },
+ "baseline-airline-seat-legroom-extra": {
+ "body": ""
+ },
+ "baseline-airline-seat-legroom-normal": {
+ "body": ""
+ },
+ "baseline-airline-seat-legroom-reduced": {
+ "body": ""
+ },
+ "baseline-airline-seat-recline-extra": {
+ "body": ""
+ },
+ "baseline-airline-seat-recline-normal": {
+ "body": ""
+ },
+ "baseline-airline-stops": {
+ "body": ""
+ },
+ "baseline-airlines": {
+ "body": ""
+ },
+ "baseline-airplane-ticket": {
+ "body": ""
+ },
+ "baseline-airplanemode-active": {
+ "body": ""
+ },
+ "baseline-airplanemode-inactive": {
+ "body": ""
+ },
+ "baseline-airplay": {
+ "body": ""
+ },
+ "baseline-airport-shuttle": {
+ "body": ""
+ },
+ "baseline-alarm": {
+ "body": ""
+ },
+ "baseline-alarm-add": {
+ "body": ""
+ },
+ "baseline-alarm-off": {
+ "body": ""
+ },
+ "baseline-alarm-on": {
+ "body": ""
+ },
+ "baseline-album": {
+ "body": ""
+ },
+ "baseline-align-horizontal-center": {
+ "body": ""
+ },
+ "baseline-align-horizontal-left": {
+ "body": ""
+ },
+ "baseline-align-horizontal-right": {
+ "body": ""
+ },
+ "baseline-align-vertical-bottom": {
+ "body": ""
+ },
+ "baseline-align-vertical-center": {
+ "body": ""
+ },
+ "baseline-align-vertical-top": {
+ "body": ""
+ },
+ "baseline-all-inbox": {
+ "body": ""
+ },
+ "baseline-all-inclusive": {
+ "body": ""
+ },
+ "baseline-all-out": {
+ "body": ""
+ },
+ "baseline-alt-route": {
+ "body": ""
+ },
+ "baseline-alternate-email": {
+ "body": ""
+ },
+ "baseline-amp-stories": {
+ "body": ""
+ },
+ "baseline-analytics": {
+ "body": ""
+ },
+ "baseline-anchor": {
+ "body": ""
+ },
+ "baseline-android": {
+ "body": ""
+ },
+ "baseline-animation": {
+ "body": ""
+ },
+ "baseline-announcement": {
+ "body": ""
+ },
+ "baseline-aod": {
+ "body": ""
+ },
+ "baseline-apartment": {
+ "body": ""
+ },
+ "baseline-api": {
+ "body": ""
+ },
+ "baseline-app-blocking": {
+ "body": ""
+ },
+ "baseline-app-registration": {
+ "body": ""
+ },
+ "baseline-app-settings-alt": {
+ "body": ""
+ },
+ "baseline-app-shortcut": {
+ "body": ""
+ },
+ "baseline-apple": {
+ "body": ""
+ },
+ "baseline-approval": {
+ "body": ""
+ },
+ "baseline-apps": {
+ "body": ""
+ },
+ "baseline-apps-outage": {
+ "body": ""
+ },
+ "baseline-architecture": {
+ "body": ""
+ },
+ "baseline-archive": {
+ "body": ""
+ },
+ "baseline-area-chart": {
+ "body": ""
+ },
+ "baseline-arrow-back": {
+ "body": ""
+ },
+ "baseline-arrow-back-ios": {
+ "body": ""
+ },
+ "baseline-arrow-back-ios-new": {
+ "body": ""
+ },
+ "baseline-arrow-circle-down": {
+ "body": ""
+ },
+ "baseline-arrow-circle-left": {
+ "body": ""
+ },
+ "baseline-arrow-circle-right": {
+ "body": ""
+ },
+ "baseline-arrow-circle-up": {
+ "body": ""
+ },
+ "baseline-arrow-downward": {
+ "body": ""
+ },
+ "baseline-arrow-drop-down": {
+ "body": ""
+ },
+ "baseline-arrow-drop-down-circle": {
+ "body": ""
+ },
+ "baseline-arrow-drop-up": {
+ "body": ""
+ },
+ "baseline-arrow-forward": {
+ "body": ""
+ },
+ "baseline-arrow-forward-ios": {
+ "body": ""
+ },
+ "baseline-arrow-left": {
+ "body": ""
+ },
+ "baseline-arrow-outward": {
+ "body": ""
+ },
+ "baseline-arrow-right": {
+ "body": ""
+ },
+ "baseline-arrow-right-alt": {
+ "body": ""
+ },
+ "baseline-arrow-upward": {
+ "body": ""
+ },
+ "baseline-art-track": {
+ "body": ""
+ },
+ "baseline-article": {
+ "body": ""
+ },
+ "baseline-aspect-ratio": {
+ "body": ""
+ },
+ "baseline-assessment": {
+ "body": ""
+ },
+ "baseline-assignment": {
+ "body": ""
+ },
+ "baseline-assignment-ind": {
+ "body": ""
+ },
+ "baseline-assignment-late": {
+ "body": ""
+ },
+ "baseline-assignment-return": {
+ "body": ""
+ },
+ "baseline-assignment-returned": {
+ "body": ""
+ },
+ "baseline-assignment-turned-in": {
+ "body": ""
+ },
+ "baseline-assist-walker": {
+ "body": ""
+ },
+ "baseline-assistant": {
+ "body": ""
+ },
+ "baseline-assistant-direction": {
+ "body": ""
+ },
+ "baseline-assistant-photo": {
+ "body": ""
+ },
+ "baseline-assured-workload": {
+ "body": ""
+ },
+ "baseline-atm": {
+ "body": ""
+ },
+ "baseline-attach-email": {
+ "body": ""
+ },
+ "baseline-attach-file": {
+ "body": ""
+ },
+ "baseline-attach-money": {
+ "body": ""
+ },
+ "baseline-attachment": {
+ "body": ""
+ },
+ "baseline-attractions": {
+ "body": ""
+ },
+ "baseline-attribution": {
+ "body": ""
+ },
+ "baseline-audio-file": {
+ "body": ""
+ },
+ "baseline-audiotrack": {
+ "body": ""
+ },
+ "baseline-auto-awesome": {
+ "body": ""
+ },
+ "baseline-auto-awesome-mosaic": {
+ "body": ""
+ },
+ "baseline-auto-awesome-motion": {
+ "body": ""
+ },
+ "baseline-auto-delete": {
+ "body": ""
+ },
+ "baseline-auto-fix-high": {
+ "body": ""
+ },
+ "baseline-auto-fix-normal": {
+ "body": ""
+ },
+ "baseline-auto-fix-off": {
+ "body": ""
+ },
+ "baseline-auto-graph": {
+ "body": ""
+ },
+ "baseline-auto-mode": {
+ "body": ""
+ },
+ "baseline-auto-stories": {
+ "body": ""
+ },
+ "baseline-autofps-select": {
+ "body": ""
+ },
+ "baseline-autorenew": {
+ "body": ""
+ },
+ "baseline-av-timer": {
+ "body": ""
+ },
+ "baseline-baby-changing-station": {
+ "body": ""
+ },
+ "baseline-back-hand": {
+ "body": ""
+ },
+ "baseline-backpack": {
+ "body": ""
+ },
+ "baseline-backspace": {
+ "body": ""
+ },
+ "baseline-backup": {
+ "body": ""
+ },
+ "baseline-backup-table": {
+ "body": ""
+ },
+ "baseline-badge": {
+ "body": ""
+ },
+ "baseline-bakery-dining": {
+ "body": ""
+ },
+ "baseline-balance": {
+ "body": ""
+ },
+ "baseline-balcony": {
+ "body": ""
+ },
+ "baseline-ballot": {
+ "body": ""
+ },
+ "baseline-bar-chart": {
+ "body": ""
+ },
+ "baseline-barcode": {
+ "body": ""
+ },
+ "baseline-batch-prediction": {
+ "body": ""
+ },
+ "baseline-bathroom": {
+ "body": ""
+ },
+ "baseline-bathtub": {
+ "body": ""
+ },
+ "baseline-battery-0-bar": {
+ "body": ""
+ },
+ "baseline-battery-1-bar": {
+ "body": ""
+ },
+ "baseline-battery-2-bar": {
+ "body": ""
+ },
+ "baseline-battery-20": {
+ "body": ""
+ },
+ "baseline-battery-3-bar": {
+ "body": ""
+ },
+ "baseline-battery-30": {
+ "body": ""
+ },
+ "baseline-battery-4-bar": {
+ "body": ""
+ },
+ "baseline-battery-5-bar": {
+ "body": ""
+ },
+ "baseline-battery-50": {
+ "body": ""
+ },
+ "baseline-battery-6-bar": {
+ "body": ""
+ },
+ "baseline-battery-60": {
+ "body": ""
+ },
+ "baseline-battery-80": {
+ "body": ""
+ },
+ "baseline-battery-90": {
+ "body": ""
+ },
+ "baseline-battery-alert": {
+ "body": ""
+ },
+ "baseline-battery-charging-20": {
+ "body": ""
+ },
+ "baseline-battery-charging-30": {
+ "body": ""
+ },
+ "baseline-battery-charging-50": {
+ "body": ""
+ },
+ "baseline-battery-charging-60": {
+ "body": ""
+ },
+ "baseline-battery-charging-80": {
+ "body": ""
+ },
+ "baseline-battery-charging-90": {
+ "body": ""
+ },
+ "baseline-battery-charging-full": {
+ "body": ""
+ },
+ "baseline-battery-full": {
+ "body": ""
+ },
+ "baseline-battery-saver": {
+ "body": ""
+ },
+ "baseline-battery-std": {
+ "body": ""
+ },
+ "baseline-battery-unknown": {
+ "body": ""
+ },
+ "baseline-beach-access": {
+ "body": ""
+ },
+ "baseline-bed": {
+ "body": ""
+ },
+ "baseline-bedroom-baby": {
+ "body": ""
+ },
+ "baseline-bedroom-child": {
+ "body": ""
+ },
+ "baseline-bedroom-parent": {
+ "body": ""
+ },
+ "baseline-bedtime": {
+ "body": ""
+ },
+ "baseline-bedtime-off": {
+ "body": ""
+ },
+ "baseline-beenhere": {
+ "body": ""
+ },
+ "baseline-bento": {
+ "body": ""
+ },
+ "baseline-bike-scooter": {
+ "body": ""
+ },
+ "baseline-biotech": {
+ "body": ""
+ },
+ "baseline-blender": {
+ "body": ""
+ },
+ "baseline-blind": {
+ "body": ""
+ },
+ "baseline-blinds": {
+ "body": ""
+ },
+ "baseline-blinds-closed": {
+ "body": ""
+ },
+ "baseline-block": {
+ "body": ""
+ },
+ "baseline-bloodtype": {
+ "body": ""
+ },
+ "baseline-bluetooth": {
+ "body": ""
+ },
+ "baseline-bluetooth-audio": {
+ "body": ""
+ },
+ "baseline-bluetooth-connected": {
+ "body": ""
+ },
+ "baseline-bluetooth-disabled": {
+ "body": ""
+ },
+ "baseline-bluetooth-drive": {
+ "body": ""
+ },
+ "baseline-bluetooth-searching": {
+ "body": ""
+ },
+ "baseline-blur-circular": {
+ "body": ""
+ },
+ "baseline-blur-linear": {
+ "body": ""
+ },
+ "baseline-blur-off": {
+ "body": ""
+ },
+ "baseline-blur-on": {
+ "body": ""
+ },
+ "baseline-bolt": {
+ "body": ""
+ },
+ "baseline-book": {
+ "body": ""
+ },
+ "baseline-book-online": {
+ "body": ""
+ },
+ "baseline-bookmark": {
+ "body": ""
+ },
+ "baseline-bookmark-add": {
+ "body": ""
+ },
+ "baseline-bookmark-added": {
+ "body": ""
+ },
+ "baseline-bookmark-border": {
+ "body": ""
+ },
+ "baseline-bookmark-remove": {
+ "body": ""
+ },
+ "baseline-bookmarks": {
+ "body": ""
+ },
+ "baseline-border-all": {
+ "body": ""
+ },
+ "baseline-border-bottom": {
+ "body": ""
+ },
+ "baseline-border-clear": {
+ "body": ""
+ },
+ "baseline-border-color": {
+ "body": ""
+ },
+ "baseline-border-horizontal": {
+ "body": ""
+ },
+ "baseline-border-inner": {
+ "body": ""
+ },
+ "baseline-border-left": {
+ "body": ""
+ },
+ "baseline-border-outer": {
+ "body": ""
+ },
+ "baseline-border-right": {
+ "body": ""
+ },
+ "baseline-border-style": {
+ "body": ""
+ },
+ "baseline-border-top": {
+ "body": ""
+ },
+ "baseline-border-vertical": {
+ "body": ""
+ },
+ "baseline-boy": {
+ "body": ""
+ },
+ "baseline-branding-watermark": {
+ "body": ""
+ },
+ "baseline-breakfast-dining": {
+ "body": ""
+ },
+ "baseline-brightness-1": {
+ "body": ""
+ },
+ "baseline-brightness-2": {
+ "body": ""
+ },
+ "baseline-brightness-3": {
+ "body": ""
+ },
+ "baseline-brightness-4": {
+ "body": ""
+ },
+ "baseline-brightness-5": {
+ "body": ""
+ },
+ "baseline-brightness-6": {
+ "body": ""
+ },
+ "baseline-brightness-7": {
+ "body": ""
+ },
+ "baseline-brightness-auto": {
+ "body": ""
+ },
+ "baseline-brightness-high": {
+ "body": ""
+ },
+ "baseline-brightness-low": {
+ "body": ""
+ },
+ "baseline-brightness-medium": {
+ "body": ""
+ },
+ "baseline-broadcast-on-home": {
+ "body": ""
+ },
+ "baseline-broadcast-on-personal": {
+ "body": ""
+ },
+ "baseline-broken-image": {
+ "body": ""
+ },
+ "baseline-browse-gallery": {
+ "body": ""
+ },
+ "baseline-browser-not-supported": {
+ "body": ""
+ },
+ "baseline-browser-updated": {
+ "body": ""
+ },
+ "baseline-brunch-dining": {
+ "body": ""
+ },
+ "baseline-brush": {
+ "body": ""
+ },
+ "baseline-bubble-chart": {
+ "body": ""
+ },
+ "baseline-bug-report": {
+ "body": ""
+ },
+ "baseline-build": {
+ "body": ""
+ },
+ "baseline-build-circle": {
+ "body": ""
+ },
+ "baseline-bungalow": {
+ "body": ""
+ },
+ "baseline-burst-mode": {
+ "body": ""
+ },
+ "baseline-bus-alert": {
+ "body": ""
+ },
+ "baseline-business": {
+ "body": ""
+ },
+ "baseline-business-center": {
+ "body": ""
+ },
+ "baseline-cabin": {
+ "body": ""
+ },
+ "baseline-cable": {
+ "body": ""
+ },
+ "baseline-cached": {
+ "body": ""
+ },
+ "baseline-cake": {
+ "body": ""
+ },
+ "baseline-calculate": {
+ "body": ""
+ },
+ "baseline-calendar-month": {
+ "body": ""
+ },
+ "baseline-calendar-today": {
+ "body": ""
+ },
+ "baseline-calendar-view-day": {
+ "body": ""
+ },
+ "baseline-calendar-view-month": {
+ "body": ""
+ },
+ "baseline-calendar-view-week": {
+ "body": ""
+ },
+ "baseline-call": {
+ "body": ""
+ },
+ "baseline-call-end": {
+ "body": ""
+ },
+ "baseline-call-made": {
+ "body": ""
+ },
+ "baseline-call-merge": {
+ "body": ""
+ },
+ "baseline-call-missed": {
+ "body": ""
+ },
+ "baseline-call-missed-outgoing": {
+ "body": ""
+ },
+ "baseline-call-received": {
+ "body": ""
+ },
+ "baseline-call-split": {
+ "body": ""
+ },
+ "baseline-call-to-action": {
+ "body": ""
+ },
+ "baseline-camera": {
+ "body": ""
+ },
+ "baseline-camera-alt": {
+ "body": ""
+ },
+ "baseline-camera-enhance": {
+ "body": ""
+ },
+ "baseline-camera-front": {
+ "body": ""
+ },
+ "baseline-camera-indoor": {
+ "body": ""
+ },
+ "baseline-camera-outdoor": {
+ "body": ""
+ },
+ "baseline-camera-rear": {
+ "body": ""
+ },
+ "baseline-camera-roll": {
+ "body": ""
+ },
+ "baseline-cameraswitch": {
+ "body": ""
+ },
+ "baseline-campaign": {
+ "body": ""
+ },
+ "baseline-cancel": {
+ "body": ""
+ },
+ "baseline-cancel-presentation": {
+ "body": ""
+ },
+ "baseline-cancel-schedule-send": {
+ "body": ""
+ },
+ "baseline-candlestick-chart": {
+ "body": ""
+ },
+ "baseline-car-crash": {
+ "body": ""
+ },
+ "baseline-car-rental": {
+ "body": ""
+ },
+ "baseline-car-repair": {
+ "body": ""
+ },
+ "baseline-card-giftcard": {
+ "body": ""
+ },
+ "baseline-card-membership": {
+ "body": ""
+ },
+ "baseline-card-travel": {
+ "body": ""
+ },
+ "baseline-carpenter": {
+ "body": ""
+ },
+ "baseline-cases": {
+ "body": ""
+ },
+ "baseline-casino": {
+ "body": ""
+ },
+ "baseline-cast": {
+ "body": ""
+ },
+ "baseline-cast-connected": {
+ "body": ""
+ },
+ "baseline-cast-for-education": {
+ "body": ""
+ },
+ "baseline-castle": {
+ "body": ""
+ },
+ "baseline-catching-pokemon": {
+ "body": ""
+ },
+ "baseline-category": {
+ "body": ""
+ },
+ "baseline-celebration": {
+ "body": ""
+ },
+ "baseline-cell-tower": {
+ "body": ""
+ },
+ "baseline-cell-wifi": {
+ "body": ""
+ },
+ "baseline-center-focus-strong": {
+ "body": ""
+ },
+ "baseline-center-focus-weak": {
+ "body": ""
+ },
+ "baseline-chair": {
+ "body": ""
+ },
+ "baseline-chair-alt": {
+ "body": ""
+ },
+ "baseline-chalet": {
+ "body": ""
+ },
+ "baseline-change-circle": {
+ "body": ""
+ },
+ "baseline-change-history": {
+ "body": ""
+ },
+ "baseline-charging-station": {
+ "body": ""
+ },
+ "baseline-chat": {
+ "body": ""
+ },
+ "baseline-chat-bubble": {
+ "body": ""
+ },
+ "baseline-chat-bubble-outline": {
+ "body": ""
+ },
+ "baseline-check": {
+ "body": ""
+ },
+ "baseline-check-box": {
+ "body": ""
+ },
+ "baseline-check-box-outline-blank": {
+ "body": ""
+ },
+ "baseline-check-circle": {
+ "body": ""
+ },
+ "baseline-check-circle-outline": {
+ "body": ""
+ },
+ "baseline-checklist": {
+ "body": ""
+ },
+ "baseline-checklist-rtl": {
+ "body": ""
+ },
+ "baseline-checkroom": {
+ "body": ""
+ },
+ "baseline-chevron-left": {
+ "body": ""
+ },
+ "baseline-chevron-right": {
+ "body": ""
+ },
+ "baseline-child-care": {
+ "body": ""
+ },
+ "baseline-child-friendly": {
+ "body": ""
+ },
+ "baseline-chrome-reader-mode": {
+ "body": ""
+ },
+ "baseline-church": {
+ "body": ""
+ },
+ "baseline-circle": {
+ "body": ""
+ },
+ "baseline-circle-notifications": {
+ "body": ""
+ },
+ "baseline-class": {
+ "body": ""
+ },
+ "baseline-clean-hands": {
+ "body": ""
+ },
+ "baseline-cleaning-services": {
+ "body": ""
+ },
+ "baseline-clear": {
+ "body": ""
+ },
+ "baseline-clear-all": {
+ "body": ""
+ },
+ "baseline-close": {
+ "body": ""
+ },
+ "baseline-close-fullscreen": {
+ "body": ""
+ },
+ "baseline-closed-caption": {
+ "body": ""
+ },
+ "baseline-closed-caption-disabled": {
+ "body": ""
+ },
+ "baseline-closed-caption-off": {
+ "body": ""
+ },
+ "baseline-cloud": {
+ "body": ""
+ },
+ "baseline-cloud-circle": {
+ "body": ""
+ },
+ "baseline-cloud-done": {
+ "body": ""
+ },
+ "baseline-cloud-download": {
+ "body": ""
+ },
+ "baseline-cloud-off": {
+ "body": ""
+ },
+ "baseline-cloud-queue": {
+ "body": ""
+ },
+ "baseline-cloud-sync": {
+ "body": ""
+ },
+ "baseline-cloud-upload": {
+ "body": ""
+ },
+ "baseline-co-present": {
+ "body": ""
+ },
+ "baseline-co2": {
+ "body": ""
+ },
+ "baseline-code": {
+ "body": ""
+ },
+ "baseline-code-off": {
+ "body": ""
+ },
+ "baseline-coffee": {
+ "body": ""
+ },
+ "baseline-coffee-maker": {
+ "body": ""
+ },
+ "baseline-collections": {
+ "body": ""
+ },
+ "baseline-collections-bookmark": {
+ "body": ""
+ },
+ "baseline-color-lens": {
+ "body": ""
+ },
+ "baseline-colorize": {
+ "body": ""
+ },
+ "baseline-comment": {
+ "body": ""
+ },
+ "baseline-comment-bank": {
+ "body": ""
+ },
+ "baseline-comments-disabled": {
+ "body": ""
+ },
+ "baseline-commit": {
+ "body": ""
+ },
+ "baseline-commute": {
+ "body": ""
+ },
+ "baseline-compare": {
+ "body": ""
+ },
+ "baseline-compare-arrows": {
+ "body": ""
+ },
+ "baseline-compass-calibration": {
+ "body": ""
+ },
+ "baseline-compost": {
+ "body": ""
+ },
+ "baseline-compress": {
+ "body": ""
+ },
+ "baseline-computer": {
+ "body": ""
+ },
+ "baseline-confirmation-number": {
+ "body": ""
+ },
+ "baseline-connect-without-contact": {
+ "body": ""
+ },
+ "baseline-connected-tv": {
+ "body": ""
+ },
+ "baseline-connecting-airports": {
+ "body": ""
+ },
+ "baseline-construction": {
+ "body": ""
+ },
+ "baseline-contact-emergency": {
+ "body": ""
+ },
+ "baseline-contact-mail": {
+ "body": ""
+ },
+ "baseline-contact-page": {
+ "body": ""
+ },
+ "baseline-contact-phone": {
+ "body": ""
+ },
+ "baseline-contact-support": {
+ "body": ""
+ },
+ "baseline-contactless": {
+ "body": ""
+ },
+ "baseline-contacts": {
+ "body": ""
+ },
+ "baseline-content-copy": {
+ "body": ""
+ },
+ "baseline-content-cut": {
+ "body": ""
+ },
+ "baseline-content-paste": {
+ "body": ""
+ },
+ "baseline-content-paste-go": {
+ "body": ""
+ },
+ "baseline-content-paste-off": {
+ "body": ""
+ },
+ "baseline-content-paste-search": {
+ "body": ""
+ },
+ "baseline-contrast": {
+ "body": ""
+ },
+ "baseline-control-camera": {
+ "body": ""
+ },
+ "baseline-control-point": {
+ "body": ""
+ },
+ "baseline-control-point-duplicate": {
+ "body": ""
+ },
+ "baseline-cookie": {
+ "body": ""
+ },
+ "baseline-copy-all": {
+ "body": ""
+ },
+ "baseline-copyright": {
+ "body": ""
+ },
+ "baseline-coronavirus": {
+ "body": ""
+ },
+ "baseline-corporate-fare": {
+ "body": ""
+ },
+ "baseline-cottage": {
+ "body": ""
+ },
+ "baseline-countertops": {
+ "body": ""
+ },
+ "baseline-create": {
+ "body": ""
+ },
+ "baseline-create-new-folder": {
+ "body": ""
+ },
+ "baseline-credit-card": {
+ "body": ""
+ },
+ "baseline-credit-card-off": {
+ "body": ""
+ },
+ "baseline-credit-score": {
+ "body": ""
+ },
+ "baseline-crib": {
+ "body": ""
+ },
+ "baseline-crisis-alert": {
+ "body": ""
+ },
+ "baseline-crop": {
+ "body": ""
+ },
+ "baseline-crop-16-9": {
+ "body": ""
+ },
+ "baseline-crop-3-2": {
+ "body": ""
+ },
+ "baseline-crop-5-4": {
+ "body": ""
+ },
+ "baseline-crop-7-5": {
+ "body": ""
+ },
+ "baseline-crop-din": {
+ "body": ""
+ },
+ "baseline-crop-free": {
+ "body": ""
+ },
+ "baseline-crop-landscape": {
+ "body": ""
+ },
+ "baseline-crop-original": {
+ "body": ""
+ },
+ "baseline-crop-portrait": {
+ "body": ""
+ },
+ "baseline-crop-rotate": {
+ "body": ""
+ },
+ "baseline-crop-square": {
+ "body": ""
+ },
+ "baseline-cruelty-free": {
+ "body": ""
+ },
+ "baseline-css": {
+ "body": ""
+ },
+ "baseline-currency-bitcoin": {
+ "body": ""
+ },
+ "baseline-currency-exchange": {
+ "body": ""
+ },
+ "baseline-currency-franc": {
+ "body": ""
+ },
+ "baseline-currency-lira": {
+ "body": ""
+ },
+ "baseline-currency-pound": {
+ "body": ""
+ },
+ "baseline-currency-ruble": {
+ "body": ""
+ },
+ "baseline-currency-rupee": {
+ "body": ""
+ },
+ "baseline-currency-yen": {
+ "body": ""
+ },
+ "baseline-currency-yuan": {
+ "body": ""
+ },
+ "baseline-curtains": {
+ "body": ""
+ },
+ "baseline-curtains-closed": {
+ "body": ""
+ },
+ "baseline-cyclone": {
+ "body": ""
+ },
+ "baseline-dangerous": {
+ "body": ""
+ },
+ "baseline-dark-mode": {
+ "body": ""
+ },
+ "baseline-dashboard": {
+ "body": ""
+ },
+ "baseline-dashboard-customize": {
+ "body": ""
+ },
+ "baseline-data-array": {
+ "body": ""
+ },
+ "baseline-data-exploration": {
+ "body": ""
+ },
+ "baseline-data-object": {
+ "body": ""
+ },
+ "baseline-data-saver-off": {
+ "body": ""
+ },
+ "baseline-data-saver-on": {
+ "body": ""
+ },
+ "baseline-data-thresholding": {
+ "body": ""
+ },
+ "baseline-data-usage": {
+ "body": ""
+ },
+ "baseline-dataset": {
+ "body": ""
+ },
+ "baseline-dataset-linked": {
+ "body": ""
+ },
+ "baseline-date-range": {
+ "body": ""
+ },
+ "baseline-deblur": {
+ "body": ""
+ },
+ "baseline-deck": {
+ "body": ""
+ },
+ "baseline-dehaze": {
+ "body": ""
+ },
+ "baseline-delete": {
+ "body": ""
+ },
+ "baseline-delete-forever": {
+ "body": ""
+ },
+ "baseline-delete-outline": {
+ "body": ""
+ },
+ "baseline-delete-sweep": {
+ "body": ""
+ },
+ "baseline-delivery-dining": {
+ "body": ""
+ },
+ "baseline-density-large": {
+ "body": ""
+ },
+ "baseline-density-medium": {
+ "body": ""
+ },
+ "baseline-density-small": {
+ "body": ""
+ },
+ "baseline-departure-board": {
+ "body": ""
+ },
+ "baseline-description": {
+ "body": ""
+ },
+ "baseline-deselect": {
+ "body": ""
+ },
+ "baseline-design-services": {
+ "body": ""
+ },
+ "baseline-desk": {
+ "body": ""
+ },
+ "baseline-desktop-access-disabled": {
+ "body": ""
+ },
+ "baseline-desktop-mac": {
+ "body": ""
+ },
+ "baseline-desktop-windows": {
+ "body": ""
+ },
+ "baseline-details": {
+ "body": ""
+ },
+ "baseline-developer-board": {
+ "body": ""
+ },
+ "baseline-developer-board-off": {
+ "body": ""
+ },
+ "baseline-developer-mode": {
+ "body": ""
+ },
+ "baseline-device-hub": {
+ "body": ""
+ },
+ "baseline-device-thermostat": {
+ "body": ""
+ },
+ "baseline-device-unknown": {
+ "body": ""
+ },
+ "baseline-devices": {
+ "body": ""
+ },
+ "baseline-devices-fold": {
+ "body": ""
+ },
+ "baseline-devices-other": {
+ "body": ""
+ },
+ "baseline-dialer-sip": {
+ "body": ""
+ },
+ "baseline-dialpad": {
+ "body": ""
+ },
+ "baseline-diamond": {
+ "body": ""
+ },
+ "baseline-difference": {
+ "body": ""
+ },
+ "baseline-dining": {
+ "body": ""
+ },
+ "baseline-dinner-dining": {
+ "body": ""
+ },
+ "baseline-directions": {
+ "body": ""
+ },
+ "baseline-directions-bike": {
+ "body": ""
+ },
+ "baseline-directions-boat": {
+ "body": ""
+ },
+ "baseline-directions-boat-filled": {
+ "body": ""
+ },
+ "baseline-directions-bus": {
+ "body": ""
+ },
+ "baseline-directions-bus-filled": {
+ "body": ""
+ },
+ "baseline-directions-car": {
+ "body": ""
+ },
+ "baseline-directions-car-filled": {
+ "body": ""
+ },
+ "baseline-directions-off": {
+ "body": ""
+ },
+ "baseline-directions-railway": {
+ "body": ""
+ },
+ "baseline-directions-railway-filled": {
+ "body": ""
+ },
+ "baseline-directions-run": {
+ "body": ""
+ },
+ "baseline-directions-subway": {
+ "body": ""
+ },
+ "baseline-directions-subway-filled": {
+ "body": ""
+ },
+ "baseline-directions-transit": {
+ "body": ""
+ },
+ "baseline-directions-transit-filled": {
+ "body": ""
+ },
+ "baseline-directions-walk": {
+ "body": ""
+ },
+ "baseline-dirty-lens": {
+ "body": ""
+ },
+ "baseline-disabled-by-default": {
+ "body": ""
+ },
+ "baseline-disabled-visible": {
+ "body": ""
+ },
+ "baseline-disc-full": {
+ "body": ""
+ },
+ "baseline-discord": {
+ "body": ""
+ },
+ "baseline-discount": {
+ "body": ""
+ },
+ "baseline-display-settings": {
+ "body": ""
+ },
+ "baseline-diversity-1": {
+ "body": ""
+ },
+ "baseline-diversity-2": {
+ "body": ""
+ },
+ "baseline-diversity-3": {
+ "body": ""
+ },
+ "baseline-divide": {
+ "body": ""
+ },
+ "baseline-dns": {
+ "body": ""
+ },
+ "baseline-do-disturb": {
+ "body": ""
+ },
+ "baseline-do-disturb-alt": {
+ "body": ""
+ },
+ "baseline-do-disturb-off": {
+ "body": ""
+ },
+ "baseline-do-disturb-on": {
+ "body": ""
+ },
+ "baseline-do-not-disturb": {
+ "body": ""
+ },
+ "baseline-do-not-disturb-alt": {
+ "body": ""
+ },
+ "baseline-do-not-disturb-off": {
+ "body": ""
+ },
+ "baseline-do-not-disturb-on": {
+ "body": ""
+ },
+ "baseline-do-not-disturb-on-total-silence": {
+ "body": ""
+ },
+ "baseline-do-not-step": {
+ "body": ""
+ },
+ "baseline-do-not-touch": {
+ "body": ""
+ },
+ "baseline-dock": {
+ "body": ""
+ },
+ "baseline-document-scanner": {
+ "body": ""
+ },
+ "baseline-domain": {
+ "body": ""
+ },
+ "baseline-domain-add": {
+ "body": ""
+ },
+ "baseline-domain-disabled": {
+ "body": ""
+ },
+ "baseline-domain-verification": {
+ "body": ""
+ },
+ "baseline-done": {
+ "body": ""
+ },
+ "baseline-done-all": {
+ "body": ""
+ },
+ "baseline-done-outline": {
+ "body": ""
+ },
+ "baseline-donut-large": {
+ "body": ""
+ },
+ "baseline-donut-small": {
+ "body": ""
+ },
+ "baseline-door-back": {
+ "body": ""
+ },
+ "baseline-door-front": {
+ "body": ""
+ },
+ "baseline-door-sliding": {
+ "body": ""
+ },
+ "baseline-doorbell": {
+ "body": ""
+ },
+ "baseline-double-arrow": {
+ "body": ""
+ },
+ "baseline-downhill-skiing": {
+ "body": ""
+ },
+ "baseline-download": {
+ "body": ""
+ },
+ "baseline-download-done": {
+ "body": ""
+ },
+ "baseline-download-for-offline": {
+ "body": ""
+ },
+ "baseline-downloading": {
+ "body": ""
+ },
+ "baseline-drafts": {
+ "body": ""
+ },
+ "baseline-drag-handle": {
+ "body": ""
+ },
+ "baseline-drag-indicator": {
+ "body": ""
+ },
+ "baseline-draw": {
+ "body": ""
+ },
+ "baseline-drive-eta": {
+ "body": ""
+ },
+ "baseline-drive-file-move": {
+ "body": ""
+ },
+ "baseline-drive-file-move-rtl": {
+ "body": ""
+ },
+ "baseline-drive-file-rename-outline": {
+ "body": ""
+ },
+ "baseline-drive-folder-upload": {
+ "body": ""
+ },
+ "baseline-dry": {
+ "body": ""
+ },
+ "baseline-dry-cleaning": {
+ "body": ""
+ },
+ "baseline-duo": {
+ "body": ""
+ },
+ "baseline-dvr": {
+ "body": ""
+ },
+ "baseline-dynamic-feed": {
+ "body": ""
+ },
+ "baseline-dynamic-form": {
+ "body": ""
+ },
+ "baseline-e-mobiledata": {
+ "body": ""
+ },
+ "baseline-earbuds": {
+ "body": ""
+ },
+ "baseline-earbuds-battery": {
+ "body": ""
+ },
+ "baseline-east": {
+ "body": ""
+ },
+ "baseline-eco": {
+ "body": ""
+ },
+ "baseline-edgesensor-high": {
+ "body": ""
+ },
+ "baseline-edgesensor-low": {
+ "body": ""
+ },
+ "baseline-edit": {
+ "body": ""
+ },
+ "baseline-edit-attributes": {
+ "body": ""
+ },
+ "baseline-edit-calendar": {
+ "body": ""
+ },
+ "baseline-edit-location": {
+ "body": ""
+ },
+ "baseline-edit-location-alt": {
+ "body": ""
+ },
+ "baseline-edit-note": {
+ "body": ""
+ },
+ "baseline-edit-notifications": {
+ "body": ""
+ },
+ "baseline-edit-off": {
+ "body": ""
+ },
+ "baseline-edit-road": {
+ "body": ""
+ },
+ "baseline-egg": {
+ "body": ""
+ },
+ "baseline-egg-alt": {
+ "body": ""
+ },
+ "baseline-eject": {
+ "body": ""
+ },
+ "baseline-elderly": {
+ "body": ""
+ },
+ "baseline-elderly-woman": {
+ "body": ""
+ },
+ "baseline-electric-bike": {
+ "body": ""
+ },
+ "baseline-electric-bolt": {
+ "body": ""
+ },
+ "baseline-electric-car": {
+ "body": ""
+ },
+ "baseline-electric-meter": {
+ "body": ""
+ },
+ "baseline-electric-moped": {
+ "body": ""
+ },
+ "baseline-electric-rickshaw": {
+ "body": ""
+ },
+ "baseline-electric-scooter": {
+ "body": ""
+ },
+ "baseline-electrical-services": {
+ "body": ""
+ },
+ "baseline-elevator": {
+ "body": ""
+ },
+ "baseline-email": {
+ "body": ""
+ },
+ "baseline-emergency": {
+ "body": ""
+ },
+ "baseline-emergency-recording": {
+ "body": ""
+ },
+ "baseline-emergency-share": {
+ "body": ""
+ },
+ "baseline-emoji-emotions": {
+ "body": ""
+ },
+ "baseline-emoji-events": {
+ "body": ""
+ },
+ "baseline-emoji-flags": {
+ "body": ""
+ },
+ "baseline-emoji-food-beverage": {
+ "body": ""
+ },
+ "baseline-emoji-nature": {
+ "body": ""
+ },
+ "baseline-emoji-objects": {
+ "body": ""
+ },
+ "baseline-emoji-people": {
+ "body": ""
+ },
+ "baseline-emoji-symbols": {
+ "body": ""
+ },
+ "baseline-emoji-transportation": {
+ "body": ""
+ },
+ "baseline-energy-savings-leaf": {
+ "body": ""
+ },
+ "baseline-engineering": {
+ "body": ""
+ },
+ "baseline-enhanced-encryption": {
+ "body": ""
+ },
+ "baseline-equalizer": {
+ "body": ""
+ },
+ "baseline-equals": {
+ "body": ""
+ },
+ "baseline-error": {
+ "body": ""
+ },
+ "baseline-error-outline": {
+ "body": ""
+ },
+ "baseline-escalator": {
+ "body": ""
+ },
+ "baseline-escalator-warning": {
+ "body": ""
+ },
+ "baseline-euro": {
+ "body": ""
+ },
+ "baseline-euro-symbol": {
+ "body": ""
+ },
+ "baseline-ev-station": {
+ "body": ""
+ },
+ "baseline-event": {
+ "body": ""
+ },
+ "baseline-event-available": {
+ "body": ""
+ },
+ "baseline-event-busy": {
+ "body": ""
+ },
+ "baseline-event-note": {
+ "body": ""
+ },
+ "baseline-event-repeat": {
+ "body": ""
+ },
+ "baseline-event-seat": {
+ "body": ""
+ },
+ "baseline-exit-to-app": {
+ "body": ""
+ },
+ "baseline-expand": {
+ "body": ""
+ },
+ "baseline-expand-circle-down": {
+ "body": ""
+ },
+ "baseline-expand-less": {
+ "body": ""
+ },
+ "baseline-expand-more": {
+ "body": ""
+ },
+ "baseline-explicit": {
+ "body": ""
+ },
+ "baseline-explore": {
+ "body": ""
+ },
+ "baseline-explore-off": {
+ "body": ""
+ },
+ "baseline-exposure": {
+ "body": ""
+ },
+ "baseline-exposure-neg-1": {
+ "body": ""
+ },
+ "baseline-exposure-neg-2": {
+ "body": ""
+ },
+ "baseline-exposure-plus-1": {
+ "body": ""
+ },
+ "baseline-exposure-plus-2": {
+ "body": ""
+ },
+ "baseline-exposure-zero": {
+ "body": ""
+ },
+ "baseline-extension": {
+ "body": ""
+ },
+ "baseline-extension-off": {
+ "body": ""
+ },
+ "baseline-face": {
+ "body": ""
+ },
+ "baseline-face-2": {
+ "body": ""
+ },
+ "baseline-face-3": {
+ "body": ""
+ },
+ "baseline-face-4": {
+ "body": ""
+ },
+ "baseline-face-5": {
+ "body": ""
+ },
+ "baseline-face-6": {
+ "body": ""
+ },
+ "baseline-face-retouching-natural": {
+ "body": ""
+ },
+ "baseline-face-retouching-off": {
+ "body": ""
+ },
+ "baseline-facebook": {
+ "body": ""
+ },
+ "baseline-fact-check": {
+ "body": ""
+ },
+ "baseline-factory": {
+ "body": ""
+ },
+ "baseline-family-restroom": {
+ "body": ""
+ },
+ "baseline-fast-forward": {
+ "body": ""
+ },
+ "baseline-fast-rewind": {
+ "body": ""
+ },
+ "baseline-fastfood": {
+ "body": ""
+ },
+ "baseline-favorite": {
+ "body": ""
+ },
+ "baseline-favorite-border": {
+ "body": ""
+ },
+ "baseline-fax": {
+ "body": ""
+ },
+ "baseline-featured-play-list": {
+ "body": ""
+ },
+ "baseline-featured-video": {
+ "body": ""
+ },
+ "baseline-feed": {
+ "body": ""
+ },
+ "baseline-feedback": {
+ "body": ""
+ },
+ "baseline-female": {
+ "body": ""
+ },
+ "baseline-fence": {
+ "body": ""
+ },
+ "baseline-festival": {
+ "body": ""
+ },
+ "baseline-fiber-dvr": {
+ "body": ""
+ },
+ "baseline-fiber-manual-record": {
+ "body": ""
+ },
+ "baseline-fiber-new": {
+ "body": ""
+ },
+ "baseline-fiber-pin": {
+ "body": ""
+ },
+ "baseline-fiber-smart-record": {
+ "body": ""
+ },
+ "baseline-file-copy": {
+ "body": ""
+ },
+ "baseline-file-download": {
+ "body": ""
+ },
+ "baseline-file-download-done": {
+ "body": ""
+ },
+ "baseline-file-download-off": {
+ "body": ""
+ },
+ "baseline-file-open": {
+ "body": ""
+ },
+ "baseline-file-present": {
+ "body": ""
+ },
+ "baseline-file-upload": {
+ "body": ""
+ },
+ "baseline-filter": {
+ "body": ""
+ },
+ "baseline-filter-1": {
+ "body": ""
+ },
+ "baseline-filter-2": {
+ "body": ""
+ },
+ "baseline-filter-3": {
+ "body": ""
+ },
+ "baseline-filter-4": {
+ "body": ""
+ },
+ "baseline-filter-5": {
+ "body": ""
+ },
+ "baseline-filter-6": {
+ "body": ""
+ },
+ "baseline-filter-7": {
+ "body": ""
+ },
+ "baseline-filter-8": {
+ "body": ""
+ },
+ "baseline-filter-9": {
+ "body": ""
+ },
+ "baseline-filter-9-plus": {
+ "body": ""
+ },
+ "baseline-filter-alt": {
+ "body": ""
+ },
+ "baseline-filter-alt-off": {
+ "body": ""
+ },
+ "baseline-filter-b-and-w": {
+ "body": ""
+ },
+ "baseline-filter-center-focus": {
+ "body": ""
+ },
+ "baseline-filter-drama": {
+ "body": ""
+ },
+ "baseline-filter-frames": {
+ "body": ""
+ },
+ "baseline-filter-hdr": {
+ "body": ""
+ },
+ "baseline-filter-list": {
+ "body": ""
+ },
+ "baseline-filter-list-off": {
+ "body": ""
+ },
+ "baseline-filter-none": {
+ "body": ""
+ },
+ "baseline-filter-tilt-shift": {
+ "body": ""
+ },
+ "baseline-filter-vintage": {
+ "body": ""
+ },
+ "baseline-find-in-page": {
+ "body": ""
+ },
+ "baseline-find-replace": {
+ "body": ""
+ },
+ "baseline-fingerprint": {
+ "body": ""
+ },
+ "baseline-fire-extinguisher": {
+ "body": ""
+ },
+ "baseline-fire-hydrant-alt": {
+ "body": ""
+ },
+ "baseline-fire-truck": {
+ "body": ""
+ },
+ "baseline-fireplace": {
+ "body": ""
+ },
+ "baseline-first-page": {
+ "body": ""
+ },
+ "baseline-fit-screen": {
+ "body": ""
+ },
+ "baseline-fitbit": {
+ "body": ""
+ },
+ "baseline-fitness-center": {
+ "body": ""
+ },
+ "baseline-flag": {
+ "body": ""
+ },
+ "baseline-flag-circle": {
+ "body": ""
+ },
+ "baseline-flaky": {
+ "body": ""
+ },
+ "baseline-flare": {
+ "body": ""
+ },
+ "baseline-flash-auto": {
+ "body": ""
+ },
+ "baseline-flash-off": {
+ "body": ""
+ },
+ "baseline-flash-on": {
+ "body": ""
+ },
+ "baseline-flashlight-off": {
+ "body": ""
+ },
+ "baseline-flashlight-on": {
+ "body": ""
+ },
+ "baseline-flatware": {
+ "body": ""
+ },
+ "baseline-flight": {
+ "body": ""
+ },
+ "baseline-flight-class": {
+ "body": ""
+ },
+ "baseline-flight-land": {
+ "body": ""
+ },
+ "baseline-flight-takeoff": {
+ "body": ""
+ },
+ "baseline-flip": {
+ "body": ""
+ },
+ "baseline-flip-camera-android": {
+ "body": ""
+ },
+ "baseline-flip-camera-ios": {
+ "body": ""
+ },
+ "baseline-flip-to-back": {
+ "body": ""
+ },
+ "baseline-flip-to-front": {
+ "body": ""
+ },
+ "baseline-flood": {
+ "body": ""
+ },
+ "baseline-flourescent": {
+ "body": ""
+ },
+ "baseline-fluorescent": {
+ "body": ""
+ },
+ "baseline-flutter-dash": {
+ "body": ""
+ },
+ "baseline-fmd-bad": {
+ "body": ""
+ },
+ "baseline-fmd-good": {
+ "body": ""
+ },
+ "baseline-folder": {
+ "body": ""
+ },
+ "baseline-folder-copy": {
+ "body": ""
+ },
+ "baseline-folder-delete": {
+ "body": ""
+ },
+ "baseline-folder-off": {
+ "body": ""
+ },
+ "baseline-folder-open": {
+ "body": ""
+ },
+ "baseline-folder-shared": {
+ "body": ""
+ },
+ "baseline-folder-special": {
+ "body": ""
+ },
+ "baseline-folder-zip": {
+ "body": ""
+ },
+ "baseline-follow-the-signs": {
+ "body": ""
+ },
+ "baseline-font-download": {
+ "body": ""
+ },
+ "baseline-font-download-off": {
+ "body": ""
+ },
+ "baseline-food-bank": {
+ "body": ""
+ },
+ "baseline-forest": {
+ "body": ""
+ },
+ "baseline-fork-left": {
+ "body": ""
+ },
+ "baseline-fork-right": {
+ "body": ""
+ },
+ "baseline-format-align-center": {
+ "body": ""
+ },
+ "baseline-format-align-justify": {
+ "body": ""
+ },
+ "baseline-format-align-left": {
+ "body": ""
+ },
+ "baseline-format-align-right": {
+ "body": ""
+ },
+ "baseline-format-bold": {
+ "body": ""
+ },
+ "baseline-format-clear": {
+ "body": ""
+ },
+ "baseline-format-color-fill": {
+ "body": ""
+ },
+ "baseline-format-color-reset": {
+ "body": ""
+ },
+ "baseline-format-color-text": {
+ "body": ""
+ },
+ "baseline-format-indent-decrease": {
+ "body": ""
+ },
+ "baseline-format-indent-increase": {
+ "body": ""
+ },
+ "baseline-format-italic": {
+ "body": ""
+ },
+ "baseline-format-line-spacing": {
+ "body": ""
+ },
+ "baseline-format-list-bulleted": {
+ "body": ""
+ },
+ "baseline-format-list-numbered": {
+ "body": ""
+ },
+ "baseline-format-list-numbered-rtl": {
+ "body": ""
+ },
+ "baseline-format-overline": {
+ "body": ""
+ },
+ "baseline-format-paint": {
+ "body": ""
+ },
+ "baseline-format-quote": {
+ "body": ""
+ },
+ "baseline-format-shapes": {
+ "body": ""
+ },
+ "baseline-format-size": {
+ "body": ""
+ },
+ "baseline-format-strikethrough": {
+ "body": ""
+ },
+ "baseline-format-textdirection-l-to-r": {
+ "body": ""
+ },
+ "baseline-format-textdirection-r-to-l": {
+ "body": ""
+ },
+ "baseline-format-underlined": {
+ "body": ""
+ },
+ "baseline-fort": {
+ "body": ""
+ },
+ "baseline-forum": {
+ "body": ""
+ },
+ "baseline-forward": {
+ "body": ""
+ },
+ "baseline-forward-10": {
+ "body": ""
+ },
+ "baseline-forward-30": {
+ "body": ""
+ },
+ "baseline-forward-5": {
+ "body": ""
+ },
+ "baseline-forward-to-inbox": {
+ "body": ""
+ },
+ "baseline-foundation": {
+ "body": ""
+ },
+ "baseline-free-breakfast": {
+ "body": ""
+ },
+ "baseline-free-cancellation": {
+ "body": ""
+ },
+ "baseline-front-hand": {
+ "body": ""
+ },
+ "baseline-fullscreen": {
+ "body": ""
+ },
+ "baseline-fullscreen-exit": {
+ "body": ""
+ },
+ "baseline-functions": {
+ "body": ""
+ },
+ "baseline-g-mobiledata": {
+ "body": ""
+ },
+ "baseline-g-translate": {
+ "body": ""
+ },
+ "baseline-gamepad": {
+ "body": ""
+ },
+ "baseline-games": {
+ "body": ""
+ },
+ "baseline-garage": {
+ "body": ""
+ },
+ "baseline-gas-meter": {
+ "body": ""
+ },
+ "baseline-gavel": {
+ "body": ""
+ },
+ "baseline-generating-tokens": {
+ "body": ""
+ },
+ "baseline-gesture": {
+ "body": ""
+ },
+ "baseline-get-app": {
+ "body": ""
+ },
+ "baseline-gif": {
+ "body": ""
+ },
+ "baseline-gif-box": {
+ "body": ""
+ },
+ "baseline-girl": {
+ "body": ""
+ },
+ "baseline-gite": {
+ "body": ""
+ },
+ "baseline-golf-course": {
+ "body": ""
+ },
+ "baseline-gpp-bad": {
+ "body": ""
+ },
+ "baseline-gpp-good": {
+ "body": ""
+ },
+ "baseline-gpp-maybe": {
+ "body": ""
+ },
+ "baseline-gps-fixed": {
+ "body": ""
+ },
+ "baseline-gps-not-fixed": {
+ "body": ""
+ },
+ "baseline-gps-off": {
+ "body": ""
+ },
+ "baseline-grade": {
+ "body": ""
+ },
+ "baseline-gradient": {
+ "body": ""
+ },
+ "baseline-grading": {
+ "body": ""
+ },
+ "baseline-grain": {
+ "body": ""
+ },
+ "baseline-graphic-eq": {
+ "body": ""
+ },
+ "baseline-grass": {
+ "body": ""
+ },
+ "baseline-greater-than": {
+ "body": ""
+ },
+ "baseline-greater-than-equal": {
+ "body": ""
+ },
+ "baseline-grid-3x3": {
+ "body": ""
+ },
+ "baseline-grid-4x4": {
+ "body": ""
+ },
+ "baseline-grid-goldenratio": {
+ "body": ""
+ },
+ "baseline-grid-off": {
+ "body": ""
+ },
+ "baseline-grid-on": {
+ "body": ""
+ },
+ "baseline-grid-view": {
+ "body": ""
+ },
+ "baseline-group": {
+ "body": ""
+ },
+ "baseline-group-add": {
+ "body": ""
+ },
+ "baseline-group-off": {
+ "body": ""
+ },
+ "baseline-group-remove": {
+ "body": ""
+ },
+ "baseline-group-work": {
+ "body": ""
+ },
+ "baseline-groups": {
+ "body": ""
+ },
+ "baseline-groups-2": {
+ "body": ""
+ },
+ "baseline-groups-3": {
+ "body": ""
+ },
+ "baseline-h-mobiledata": {
+ "body": ""
+ },
+ "baseline-h-plus-mobiledata": {
+ "body": ""
+ },
+ "baseline-hail": {
+ "body": ""
+ },
+ "baseline-handshake": {
+ "body": ""
+ },
+ "baseline-handyman": {
+ "body": ""
+ },
+ "baseline-hardware": {
+ "body": ""
+ },
+ "baseline-hd": {
+ "body": ""
+ },
+ "baseline-hdr-auto": {
+ "body": ""
+ },
+ "baseline-hdr-auto-select": {
+ "body": ""
+ },
+ "baseline-hdr-enhanced-select": {
+ "body": ""
+ },
+ "baseline-hdr-off": {
+ "body": ""
+ },
+ "baseline-hdr-off-select": {
+ "body": ""
+ },
+ "baseline-hdr-on": {
+ "body": ""
+ },
+ "baseline-hdr-on-select": {
+ "body": ""
+ },
+ "baseline-hdr-plus": {
+ "body": ""
+ },
+ "baseline-hdr-strong": {
+ "body": ""
+ },
+ "baseline-hdr-weak": {
+ "body": ""
+ },
+ "baseline-headphones": {
+ "body": ""
+ },
+ "baseline-headphones-battery": {
+ "body": ""
+ },
+ "baseline-headset": {
+ "body": ""
+ },
+ "baseline-headset-mic": {
+ "body": ""
+ },
+ "baseline-headset-off": {
+ "body": ""
+ },
+ "baseline-healing": {
+ "body": ""
+ },
+ "baseline-health-and-safety": {
+ "body": ""
+ },
+ "baseline-hearing": {
+ "body": ""
+ },
+ "baseline-hearing-disabled": {
+ "body": ""
+ },
+ "baseline-heart-broken": {
+ "body": ""
+ },
+ "baseline-heat-pump": {
+ "body": ""
+ },
+ "baseline-height": {
+ "body": ""
+ },
+ "baseline-help": {
+ "body": ""
+ },
+ "baseline-help-center": {
+ "body": ""
+ },
+ "baseline-help-outline": {
+ "body": ""
+ },
+ "baseline-hevc": {
+ "body": ""
+ },
+ "baseline-hexagon": {
+ "body": ""
+ },
+ "baseline-hide-image": {
+ "body": ""
+ },
+ "baseline-hide-source": {
+ "body": ""
+ },
+ "baseline-high-quality": {
+ "body": ""
+ },
+ "baseline-highlight": {
+ "body": ""
+ },
+ "baseline-highlight-alt": {
+ "body": ""
+ },
+ "baseline-highlight-off": {
+ "body": ""
+ },
+ "baseline-hiking": {
+ "body": ""
+ },
+ "baseline-history": {
+ "body": ""
+ },
+ "baseline-history-edu": {
+ "body": ""
+ },
+ "baseline-history-toggle-off": {
+ "body": ""
+ },
+ "baseline-hive": {
+ "body": ""
+ },
+ "baseline-hls": {
+ "body": ""
+ },
+ "baseline-hls-off": {
+ "body": ""
+ },
+ "baseline-holiday-village": {
+ "body": ""
+ },
+ "baseline-home": {
+ "body": ""
+ },
+ "baseline-home-max": {
+ "body": ""
+ },
+ "baseline-home-mini": {
+ "body": ""
+ },
+ "baseline-home-repair-service": {
+ "body": ""
+ },
+ "baseline-home-work": {
+ "body": ""
+ },
+ "baseline-horizontal-distribute": {
+ "body": ""
+ },
+ "baseline-horizontal-rule": {
+ "body": ""
+ },
+ "baseline-horizontal-split": {
+ "body": ""
+ },
+ "baseline-hot-tub": {
+ "body": ""
+ },
+ "baseline-hotel": {
+ "body": ""
+ },
+ "baseline-hotel-class": {
+ "body": ""
+ },
+ "baseline-hourglass-bottom": {
+ "body": ""
+ },
+ "baseline-hourglass-disabled": {
+ "body": ""
+ },
+ "baseline-hourglass-empty": {
+ "body": ""
+ },
+ "baseline-hourglass-full": {
+ "body": ""
+ },
+ "baseline-hourglass-top": {
+ "body": ""
+ },
+ "baseline-house": {
+ "body": ""
+ },
+ "baseline-house-siding": {
+ "body": ""
+ },
+ "baseline-houseboat": {
+ "body": ""
+ },
+ "baseline-how-to-reg": {
+ "body": ""
+ },
+ "baseline-how-to-vote": {
+ "body": ""
+ },
+ "baseline-html": {
+ "body": ""
+ },
+ "baseline-http": {
+ "body": ""
+ },
+ "baseline-https": {
+ "body": ""
+ },
+ "baseline-hub": {
+ "body": ""
+ },
+ "baseline-hvac": {
+ "body": ""
+ },
+ "baseline-ice-skating": {
+ "body": ""
+ },
+ "baseline-icecream": {
+ "body": ""
+ },
+ "baseline-image": {
+ "body": ""
+ },
+ "baseline-image-aspect-ratio": {
+ "body": ""
+ },
+ "baseline-image-not-supported": {
+ "body": ""
+ },
+ "baseline-image-search": {
+ "body": ""
+ },
+ "baseline-imagesearch-roller": {
+ "body": ""
+ },
+ "baseline-import-contacts": {
+ "body": ""
+ },
+ "baseline-import-export": {
+ "body": ""
+ },
+ "baseline-important-devices": {
+ "body": ""
+ },
+ "baseline-inbox": {
+ "body": ""
+ },
+ "baseline-incomplete-circle": {
+ "body": ""
+ },
+ "baseline-indeterminate-check-box": {
+ "body": ""
+ },
+ "baseline-info": {
+ "body": ""
+ },
+ "baseline-input": {
+ "body": ""
+ },
+ "baseline-insert-chart": {
+ "body": ""
+ },
+ "baseline-insert-chart-outlined": {
+ "body": ""
+ },
+ "baseline-insert-comment": {
+ "body": ""
+ },
+ "baseline-insert-drive-file": {
+ "body": ""
+ },
+ "baseline-insert-emoticon": {
+ "body": ""
+ },
+ "baseline-insert-invitation": {
+ "body": ""
+ },
+ "baseline-insert-link": {
+ "body": ""
+ },
+ "baseline-insert-page-break": {
+ "body": ""
+ },
+ "baseline-insert-photo": {
+ "body": ""
+ },
+ "baseline-insights": {
+ "body": ""
+ },
+ "baseline-install-desktop": {
+ "body": ""
+ },
+ "baseline-install-mobile": {
+ "body": ""
+ },
+ "baseline-integration-instructions": {
+ "body": ""
+ },
+ "baseline-interests": {
+ "body": ""
+ },
+ "baseline-interpreter-mode": {
+ "body": ""
+ },
+ "baseline-inventory": {
+ "body": ""
+ },
+ "baseline-inventory-2": {
+ "body": ""
+ },
+ "baseline-invert-colors": {
+ "body": ""
+ },
+ "baseline-invert-colors-off": {
+ "body": ""
+ },
+ "baseline-ios-share": {
+ "body": ""
+ },
+ "baseline-iron": {
+ "body": ""
+ },
+ "baseline-iso": {
+ "body": ""
+ },
+ "baseline-javascript": {
+ "body": ""
+ },
+ "baseline-join-full": {
+ "body": ""
+ },
+ "baseline-join-inner": {
+ "body": ""
+ },
+ "baseline-join-left": {
+ "body": ""
+ },
+ "baseline-join-right": {
+ "body": ""
+ },
+ "baseline-kayaking": {
+ "body": ""
+ },
+ "baseline-kebab-dining": {
+ "body": ""
+ },
+ "baseline-key": {
+ "body": ""
+ },
+ "baseline-key-off": {
+ "body": ""
+ },
+ "baseline-keyboard": {
+ "body": ""
+ },
+ "baseline-keyboard-alt": {
+ "body": ""
+ },
+ "baseline-keyboard-arrow-down": {
+ "body": ""
+ },
+ "baseline-keyboard-arrow-left": {
+ "body": ""
+ },
+ "baseline-keyboard-arrow-right": {
+ "body": ""
+ },
+ "baseline-keyboard-arrow-up": {
+ "body": ""
+ },
+ "baseline-keyboard-backspace": {
+ "body": ""
+ },
+ "baseline-keyboard-capslock": {
+ "body": ""
+ },
+ "baseline-keyboard-command-key": {
+ "body": ""
+ },
+ "baseline-keyboard-control-key": {
+ "body": ""
+ },
+ "baseline-keyboard-double-arrow-down": {
+ "body": ""
+ },
+ "baseline-keyboard-double-arrow-left": {
+ "body": ""
+ },
+ "baseline-keyboard-double-arrow-right": {
+ "body": ""
+ },
+ "baseline-keyboard-double-arrow-up": {
+ "body": ""
+ },
+ "baseline-keyboard-hide": {
+ "body": ""
+ },
+ "baseline-keyboard-option-key": {
+ "body": ""
+ },
+ "baseline-keyboard-return": {
+ "body": ""
+ },
+ "baseline-keyboard-tab": {
+ "body": ""
+ },
+ "baseline-keyboard-voice": {
+ "body": ""
+ },
+ "baseline-king-bed": {
+ "body": ""
+ },
+ "baseline-kitchen": {
+ "body": ""
+ },
+ "baseline-kitesurfing": {
+ "body": ""
+ },
+ "baseline-label": {
+ "body": ""
+ },
+ "baseline-label-important": {
+ "body": ""
+ },
+ "baseline-label-off": {
+ "body": ""
+ },
+ "baseline-lan": {
+ "body": ""
+ },
+ "baseline-landscape": {
+ "body": ""
+ },
+ "baseline-landslide": {
+ "body": ""
+ },
+ "baseline-language": {
+ "body": ""
+ },
+ "baseline-laptop": {
+ "body": ""
+ },
+ "baseline-laptop-chromebook": {
+ "body": ""
+ },
+ "baseline-laptop-mac": {
+ "body": ""
+ },
+ "baseline-laptop-windows": {
+ "body": ""
+ },
+ "baseline-last-page": {
+ "body": ""
+ },
+ "baseline-launch": {
+ "body": ""
+ },
+ "baseline-layers": {
+ "body": ""
+ },
+ "baseline-layers-clear": {
+ "body": ""
+ },
+ "baseline-leaderboard": {
+ "body": ""
+ },
+ "baseline-leak-add": {
+ "body": ""
+ },
+ "baseline-leak-remove": {
+ "body": ""
+ },
+ "baseline-leave-bags-at-home": {
+ "body": ""
+ },
+ "baseline-legend-toggle": {
+ "body": ""
+ },
+ "baseline-lens": {
+ "body": ""
+ },
+ "baseline-lens-blur": {
+ "body": ""
+ },
+ "baseline-less-than": {
+ "body": ""
+ },
+ "baseline-less-than-equal": {
+ "body": ""
+ },
+ "baseline-library-add": {
+ "body": ""
+ },
+ "baseline-library-add-check": {
+ "body": ""
+ },
+ "baseline-library-books": {
+ "body": ""
+ },
+ "baseline-library-music": {
+ "body": ""
+ },
+ "baseline-light": {
+ "body": ""
+ },
+ "baseline-light-mode": {
+ "body": ""
+ },
+ "baseline-lightbulb": {
+ "body": ""
+ },
+ "baseline-lightbulb-circle": {
+ "body": ""
+ },
+ "baseline-line-axis": {
+ "body": ""
+ },
+ "baseline-line-style": {
+ "body": ""
+ },
+ "baseline-line-weight": {
+ "body": ""
+ },
+ "baseline-linear-scale": {
+ "body": ""
+ },
+ "baseline-link": {
+ "body": ""
+ },
+ "baseline-link-off": {
+ "body": ""
+ },
+ "baseline-linked-camera": {
+ "body": ""
+ },
+ "baseline-liquor": {
+ "body": ""
+ },
+ "baseline-list": {
+ "body": ""
+ },
+ "baseline-list-alt": {
+ "body": ""
+ },
+ "baseline-live-help": {
+ "body": ""
+ },
+ "baseline-live-tv": {
+ "body": ""
+ },
+ "baseline-living": {
+ "body": ""
+ },
+ "baseline-local-activity": {
+ "body": ""
+ },
+ "baseline-local-airport": {
+ "body": ""
+ },
+ "baseline-local-atm": {
+ "body": ""
+ },
+ "baseline-local-bar": {
+ "body": ""
+ },
+ "baseline-local-cafe": {
+ "body": ""
+ },
+ "baseline-local-car-wash": {
+ "body": ""
+ },
+ "baseline-local-convenience-store": {
+ "body": ""
+ },
+ "baseline-local-dining": {
+ "body": ""
+ },
+ "baseline-local-drink": {
+ "body": ""
+ },
+ "baseline-local-fire-department": {
+ "body": ""
+ },
+ "baseline-local-florist": {
+ "body": ""
+ },
+ "baseline-local-gas-station": {
+ "body": ""
+ },
+ "baseline-local-grocery-store": {
+ "body": ""
+ },
+ "baseline-local-hospital": {
+ "body": ""
+ },
+ "baseline-local-hotel": {
+ "body": ""
+ },
+ "baseline-local-laundry-service": {
+ "body": ""
+ },
+ "baseline-local-library": {
+ "body": ""
+ },
+ "baseline-local-mall": {
+ "body": ""
+ },
+ "baseline-local-movies": {
+ "body": ""
+ },
+ "baseline-local-offer": {
+ "body": ""
+ },
+ "baseline-local-parking": {
+ "body": ""
+ },
+ "baseline-local-pharmacy": {
+ "body": ""
+ },
+ "baseline-local-phone": {
+ "body": ""
+ },
+ "baseline-local-pizza": {
+ "body": ""
+ },
+ "baseline-local-play": {
+ "body": ""
+ },
+ "baseline-local-police": {
+ "body": ""
+ },
+ "baseline-local-post-office": {
+ "body": ""
+ },
+ "baseline-local-printshop": {
+ "body": ""
+ },
+ "baseline-local-see": {
+ "body": ""
+ },
+ "baseline-local-shipping": {
+ "body": ""
+ },
+ "baseline-local-taxi": {
+ "body": ""
+ },
+ "baseline-location-city": {
+ "body": ""
+ },
+ "baseline-location-disabled": {
+ "body": ""
+ },
+ "baseline-location-off": {
+ "body": ""
+ },
+ "baseline-location-on": {
+ "body": ""
+ },
+ "baseline-location-searching": {
+ "body": ""
+ },
+ "baseline-lock": {
+ "body": ""
+ },
+ "baseline-lock-clock": {
+ "body": ""
+ },
+ "baseline-lock-open": {
+ "body": ""
+ },
+ "baseline-lock-person": {
+ "body": ""
+ },
+ "baseline-lock-reset": {
+ "body": ""
+ },
+ "baseline-log-in": {
+ "body": ""
+ },
+ "baseline-log-out": {
+ "body": ""
+ },
+ "baseline-login": {
+ "body": ""
+ },
+ "baseline-logo-dev": {
+ "body": ""
+ },
+ "baseline-logout": {
+ "body": ""
+ },
+ "baseline-looks": {
+ "body": ""
+ },
+ "baseline-looks-3": {
+ "body": ""
+ },
+ "baseline-looks-4": {
+ "body": ""
+ },
+ "baseline-looks-5": {
+ "body": ""
+ },
+ "baseline-looks-6": {
+ "body": ""
+ },
+ "baseline-looks-one": {
+ "body": ""
+ },
+ "baseline-looks-two": {
+ "body": ""
+ },
+ "baseline-loop": {
+ "body": ""
+ },
+ "baseline-loupe": {
+ "body": ""
+ },
+ "baseline-low-priority": {
+ "body": ""
+ },
+ "baseline-loyalty": {
+ "body": ""
+ },
+ "baseline-lte-mobiledata": {
+ "body": ""
+ },
+ "baseline-lte-plus-mobiledata": {
+ "body": ""
+ },
+ "baseline-luggage": {
+ "body": ""
+ },
+ "baseline-lunch-dining": {
+ "body": ""
+ },
+ "baseline-lyrics": {
+ "body": ""
+ },
+ "baseline-macro-off": {
+ "body": ""
+ },
+ "baseline-mail": {
+ "body": ""
+ },
+ "baseline-mail-lock": {
+ "body": ""
+ },
+ "baseline-mail-outline": {
+ "body": ""
+ },
+ "baseline-male": {
+ "body": ""
+ },
+ "baseline-man": {
+ "body": ""
+ },
+ "baseline-man-2": {
+ "body": ""
+ },
+ "baseline-man-3": {
+ "body": ""
+ },
+ "baseline-man-4": {
+ "body": ""
+ },
+ "baseline-manage-accounts": {
+ "body": ""
+ },
+ "baseline-manage-history": {
+ "body": ""
+ },
+ "baseline-manage-search": {
+ "body": ""
+ },
+ "baseline-map": {
+ "body": ""
+ },
+ "baseline-maps-home-work": {
+ "body": ""
+ },
+ "baseline-maps-ugc": {
+ "body": ""
+ },
+ "baseline-margin": {
+ "body": ""
+ },
+ "baseline-mark-as-unread": {
+ "body": ""
+ },
+ "baseline-mark-chat-read": {
+ "body": ""
+ },
+ "baseline-mark-chat-unread": {
+ "body": ""
+ },
+ "baseline-mark-email-read": {
+ "body": ""
+ },
+ "baseline-mark-email-unread": {
+ "body": ""
+ },
+ "baseline-mark-unread-chat-alt": {
+ "body": ""
+ },
+ "baseline-markunread": {
+ "body": ""
+ },
+ "baseline-markunread-mailbox": {
+ "body": ""
+ },
+ "baseline-masks": {
+ "body": ""
+ },
+ "baseline-maximize": {
+ "body": ""
+ },
+ "baseline-media-bluetooth-off": {
+ "body": ""
+ },
+ "baseline-media-bluetooth-on": {
+ "body": ""
+ },
+ "baseline-mediation": {
+ "body": ""
+ },
+ "baseline-medical-information": {
+ "body": ""
+ },
+ "baseline-medical-services": {
+ "body": ""
+ },
+ "baseline-medication": {
+ "body": ""
+ },
+ "baseline-medication-liquid": {
+ "body": ""
+ },
+ "baseline-meeting-room": {
+ "body": ""
+ },
+ "baseline-memory": {
+ "body": ""
+ },
+ "baseline-menu": {
+ "body": ""
+ },
+ "baseline-menu-book": {
+ "body": ""
+ },
+ "baseline-menu-open": {
+ "body": ""
+ },
+ "baseline-merge": {
+ "body": ""
+ },
+ "baseline-merge-type": {
+ "body": ""
+ },
+ "baseline-message": {
+ "body": ""
+ },
+ "baseline-mic": {
+ "body": ""
+ },
+ "baseline-mic-external-off": {
+ "body": ""
+ },
+ "baseline-mic-external-on": {
+ "body": ""
+ },
+ "baseline-mic-none": {
+ "body": ""
+ },
+ "baseline-mic-off": {
+ "body": ""
+ },
+ "baseline-microwave": {
+ "body": ""
+ },
+ "baseline-military-tech": {
+ "body": ""
+ },
+ "baseline-minimize": {
+ "body": ""
+ },
+ "baseline-minor-crash": {
+ "body": ""
+ },
+ "baseline-minus": {
+ "body": ""
+ },
+ "baseline-miscellaneous-services": {
+ "body": ""
+ },
+ "baseline-missed-video-call": {
+ "body": ""
+ },
+ "baseline-mms": {
+ "body": ""
+ },
+ "baseline-mobile-friendly": {
+ "body": ""
+ },
+ "baseline-mobile-off": {
+ "body": ""
+ },
+ "baseline-mobile-screen-share": {
+ "body": ""
+ },
+ "baseline-mobiledata-off": {
+ "body": ""
+ },
+ "baseline-mode": {
+ "body": ""
+ },
+ "baseline-mode-comment": {
+ "body": ""
+ },
+ "baseline-mode-edit": {
+ "body": ""
+ },
+ "baseline-mode-edit-outline": {
+ "body": ""
+ },
+ "baseline-mode-fan-off": {
+ "body": ""
+ },
+ "baseline-mode-night": {
+ "body": ""
+ },
+ "baseline-mode-of-travel": {
+ "body": ""
+ },
+ "baseline-mode-standby": {
+ "body": ""
+ },
+ "baseline-model-training": {
+ "body": ""
+ },
+ "baseline-monetization-on": {
+ "body": ""
+ },
+ "baseline-money": {
+ "body": ""
+ },
+ "baseline-money-off": {
+ "body": ""
+ },
+ "baseline-money-off-csred": {
+ "body": ""
+ },
+ "baseline-monitor": {
+ "body": ""
+ },
+ "baseline-monitor-heart": {
+ "body": ""
+ },
+ "baseline-monitor-weight": {
+ "body": ""
+ },
+ "baseline-monochrome-photos": {
+ "body": ""
+ },
+ "baseline-mood": {
+ "body": ""
+ },
+ "baseline-mood-bad": {
+ "body": ""
+ },
+ "baseline-moped": {
+ "body": ""
+ },
+ "baseline-more": {
+ "body": ""
+ },
+ "baseline-more-horiz": {
+ "body": ""
+ },
+ "baseline-more-time": {
+ "body": ""
+ },
+ "baseline-more-vert": {
+ "body": ""
+ },
+ "baseline-mosque": {
+ "body": ""
+ },
+ "baseline-motion-photos-auto": {
+ "body": ""
+ },
+ "baseline-motion-photos-off": {
+ "body": ""
+ },
+ "baseline-motion-photos-on": {
+ "body": ""
+ },
+ "baseline-motion-photos-pause": {
+ "body": ""
+ },
+ "baseline-motion-photos-paused": {
+ "body": ""
+ },
+ "baseline-motorcycle": {
+ "body": ""
+ },
+ "baseline-mouse": {
+ "body": ""
+ },
+ "baseline-move-down": {
+ "body": ""
+ },
+ "baseline-move-to-inbox": {
+ "body": ""
+ },
+ "baseline-move-up": {
+ "body": ""
+ },
+ "baseline-movie": {
+ "body": ""
+ },
+ "baseline-movie-creation": {
+ "body": ""
+ },
+ "baseline-movie-filter": {
+ "body": ""
+ },
+ "baseline-moving": {
+ "body": ""
+ },
+ "baseline-mp": {
+ "body": ""
+ },
+ "baseline-multiline-chart": {
+ "body": ""
+ },
+ "baseline-multiple-stop": {
+ "body": ""
+ },
+ "baseline-museum": {
+ "body": ""
+ },
+ "baseline-music-note": {
+ "body": ""
+ },
+ "baseline-music-off": {
+ "body": ""
+ },
+ "baseline-music-video": {
+ "body": ""
+ },
+ "baseline-my-location": {
+ "body": ""
+ },
+ "baseline-nat": {
+ "body": ""
+ },
+ "baseline-nature": {
+ "body": ""
+ },
+ "baseline-nature-people": {
+ "body": ""
+ },
+ "baseline-navigate-before": {
+ "body": ""
+ },
+ "baseline-navigate-next": {
+ "body": ""
+ },
+ "baseline-navigation": {
+ "body": ""
+ },
+ "baseline-near-me": {
+ "body": ""
+ },
+ "baseline-near-me-disabled": {
+ "body": ""
+ },
+ "baseline-nearby-error": {
+ "body": ""
+ },
+ "baseline-nearby-off": {
+ "body": ""
+ },
+ "baseline-nest-cam-wired-stand": {
+ "body": ""
+ },
+ "baseline-network-cell": {
+ "body": ""
+ },
+ "baseline-network-check": {
+ "body": ""
+ },
+ "baseline-network-locked": {
+ "body": ""
+ },
+ "baseline-network-ping": {
+ "body": ""
+ },
+ "baseline-network-wifi": {
+ "body": ""
+ },
+ "baseline-network-wifi-1-bar": {
+ "body": ""
+ },
+ "baseline-network-wifi-2-bar": {
+ "body": ""
+ },
+ "baseline-network-wifi-3-bar": {
+ "body": ""
+ },
+ "baseline-new-label": {
+ "body": ""
+ },
+ "baseline-new-releases": {
+ "body": ""
+ },
+ "baseline-newspaper": {
+ "body": ""
+ },
+ "baseline-next-plan": {
+ "body": ""
+ },
+ "baseline-next-week": {
+ "body": ""
+ },
+ "baseline-nfc": {
+ "body": ""
+ },
+ "baseline-night-shelter": {
+ "body": ""
+ },
+ "baseline-nightlife": {
+ "body": ""
+ },
+ "baseline-nightlight": {
+ "body": ""
+ },
+ "baseline-nightlight-round": {
+ "body": ""
+ },
+ "baseline-nights-stay": {
+ "body": ""
+ },
+ "baseline-no-accounts": {
+ "body": ""
+ },
+ "baseline-no-adult-content": {
+ "body": ""
+ },
+ "baseline-no-backpack": {
+ "body": ""
+ },
+ "baseline-no-cell": {
+ "body": ""
+ },
+ "baseline-no-crash": {
+ "body": ""
+ },
+ "baseline-no-drinks": {
+ "body": ""
+ },
+ "baseline-no-encryption": {
+ "body": ""
+ },
+ "baseline-no-encryption-gmailerrorred": {
+ "body": ""
+ },
+ "baseline-no-flash": {
+ "body": ""
+ },
+ "baseline-no-food": {
+ "body": ""
+ },
+ "baseline-no-luggage": {
+ "body": ""
+ },
+ "baseline-no-meals": {
+ "body": ""
+ },
+ "baseline-no-meeting-room": {
+ "body": ""
+ },
+ "baseline-no-photography": {
+ "body": ""
+ },
+ "baseline-no-sim": {
+ "body": ""
+ },
+ "baseline-no-stroller": {
+ "body": ""
+ },
+ "baseline-no-transfer": {
+ "body": ""
+ },
+ "baseline-noise-aware": {
+ "body": ""
+ },
+ "baseline-noise-control-off": {
+ "body": ""
+ },
+ "baseline-nordic-walking": {
+ "body": ""
+ },
+ "baseline-north": {
+ "body": ""
+ },
+ "baseline-north-east": {
+ "body": ""
+ },
+ "baseline-north-west": {
+ "body": ""
+ },
+ "baseline-not-accessible": {
+ "body": ""
+ },
+ "baseline-not-equal": {
+ "body": ""
+ },
+ "baseline-not-interested": {
+ "body": ""
+ },
+ "baseline-not-listed-location": {
+ "body": ""
+ },
+ "baseline-not-started": {
+ "body": ""
+ },
+ "baseline-note": {
+ "body": ""
+ },
+ "baseline-note-add": {
+ "body": ""
+ },
+ "baseline-note-alt": {
+ "body": ""
+ },
+ "baseline-notes": {
+ "body": ""
+ },
+ "baseline-notification-add": {
+ "body": ""
+ },
+ "baseline-notification-important": {
+ "body": ""
+ },
+ "baseline-notifications": {
+ "body": ""
+ },
+ "baseline-notifications-active": {
+ "body": ""
+ },
+ "baseline-notifications-none": {
+ "body": ""
+ },
+ "baseline-notifications-off": {
+ "body": ""
+ },
+ "baseline-notifications-paused": {
+ "body": ""
+ },
+ "baseline-numbers": {
+ "body": ""
+ },
+ "baseline-offline-bolt": {
+ "body": ""
+ },
+ "baseline-offline-pin": {
+ "body": ""
+ },
+ "baseline-offline-share": {
+ "body": ""
+ },
+ "baseline-oil-barrel": {
+ "body": ""
+ },
+ "baseline-on-device-training": {
+ "body": ""
+ },
+ "baseline-ondemand-video": {
+ "body": ""
+ },
+ "baseline-online-prediction": {
+ "body": ""
+ },
+ "baseline-opacity": {
+ "body": ""
+ },
+ "baseline-open-in-browser": {
+ "body": ""
+ },
+ "baseline-open-in-full": {
+ "body": ""
+ },
+ "baseline-open-in-new": {
+ "body": ""
+ },
+ "baseline-open-in-new-off": {
+ "body": ""
+ },
+ "baseline-open-with": {
+ "body": ""
+ },
+ "baseline-other-houses": {
+ "body": ""
+ },
+ "baseline-outbond": {
+ "body": ""
+ },
+ "baseline-outbound": {
+ "body": ""
+ },
+ "baseline-outbox": {
+ "body": ""
+ },
+ "baseline-outdoor-grill": {
+ "body": ""
+ },
+ "baseline-outlet": {
+ "body": ""
+ },
+ "baseline-outlined-flag": {
+ "body": ""
+ },
+ "baseline-output": {
+ "body": ""
+ },
+ "baseline-padding": {
+ "body": ""
+ },
+ "baseline-pages": {
+ "body": ""
+ },
+ "baseline-pageview": {
+ "body": ""
+ },
+ "baseline-paid": {
+ "body": ""
+ },
+ "baseline-palette": {
+ "body": ""
+ },
+ "baseline-pan-tool": {
+ "body": ""
+ },
+ "baseline-pan-tool-alt": {
+ "body": ""
+ },
+ "baseline-panorama": {
+ "body": ""
+ },
+ "baseline-panorama-fish-eye": {
+ "body": ""
+ },
+ "baseline-panorama-horizontal": {
+ "body": ""
+ },
+ "baseline-panorama-horizontal-select": {
+ "body": ""
+ },
+ "baseline-panorama-photosphere": {
+ "body": ""
+ },
+ "baseline-panorama-photosphere-select": {
+ "body": ""
+ },
+ "baseline-panorama-vertical": {
+ "body": ""
+ },
+ "baseline-panorama-vertical-select": {
+ "body": ""
+ },
+ "baseline-panorama-wide-angle": {
+ "body": ""
+ },
+ "baseline-panorama-wide-angle-select": {
+ "body": ""
+ },
+ "baseline-paragliding": {
+ "body": ""
+ },
+ "baseline-park": {
+ "body": ""
+ },
+ "baseline-party-mode": {
+ "body": ""
+ },
+ "baseline-password": {
+ "body": ""
+ },
+ "baseline-pattern": {
+ "body": ""
+ },
+ "baseline-pause": {
+ "body": ""
+ },
+ "baseline-pause-circle": {
+ "body": ""
+ },
+ "baseline-pause-circle-filled": {
+ "body": ""
+ },
+ "baseline-pause-circle-outline": {
+ "body": ""
+ },
+ "baseline-pause-presentation": {
+ "body": ""
+ },
+ "baseline-payment": {
+ "body": ""
+ },
+ "baseline-payments": {
+ "body": ""
+ },
+ "baseline-paypal": {
+ "body": ""
+ },
+ "baseline-pedal-bike": {
+ "body": ""
+ },
+ "baseline-pending": {
+ "body": ""
+ },
+ "baseline-pending-actions": {
+ "body": ""
+ },
+ "baseline-pentagon": {
+ "body": ""
+ },
+ "baseline-people": {
+ "body": ""
+ },
+ "baseline-people-alt": {
+ "body": ""
+ },
+ "baseline-people-outline": {
+ "body": ""
+ },
+ "baseline-percent": {
+ "body": ""
+ },
+ "baseline-percentage": {
+ "body": ""
+ },
+ "baseline-perm-camera-mic": {
+ "body": ""
+ },
+ "baseline-perm-contact-calendar": {
+ "body": ""
+ },
+ "baseline-perm-data-setting": {
+ "body": ""
+ },
+ "baseline-perm-device-information": {
+ "body": ""
+ },
+ "baseline-perm-identity": {
+ "body": ""
+ },
+ "baseline-perm-media": {
+ "body": ""
+ },
+ "baseline-perm-phone-msg": {
+ "body": ""
+ },
+ "baseline-perm-scan-wifi": {
+ "body": ""
+ },
+ "baseline-person": {
+ "body": ""
+ },
+ "baseline-person-2": {
+ "body": ""
+ },
+ "baseline-person-3": {
+ "body": ""
+ },
+ "baseline-person-4": {
+ "body": ""
+ },
+ "baseline-person-add": {
+ "body": ""
+ },
+ "baseline-person-add-alt": {
+ "body": ""
+ },
+ "baseline-person-add-alt-1": {
+ "body": ""
+ },
+ "baseline-person-add-disabled": {
+ "body": ""
+ },
+ "baseline-person-off": {
+ "body": ""
+ },
+ "baseline-person-outline": {
+ "body": ""
+ },
+ "baseline-person-pin": {
+ "body": ""
+ },
+ "baseline-person-pin-circle": {
+ "body": ""
+ },
+ "baseline-person-remove": {
+ "body": ""
+ },
+ "baseline-person-remove-alt-1": {
+ "body": ""
+ },
+ "baseline-person-search": {
+ "body": ""
+ },
+ "baseline-personal-injury": {
+ "body": ""
+ },
+ "baseline-personal-video": {
+ "body": ""
+ },
+ "baseline-pest-control": {
+ "body": ""
+ },
+ "baseline-pest-control-rodent": {
+ "body": ""
+ },
+ "baseline-pets": {
+ "body": ""
+ },
+ "baseline-phishing": {
+ "body": ""
+ },
+ "baseline-phone": {
+ "body": ""
+ },
+ "baseline-phone-android": {
+ "body": ""
+ },
+ "baseline-phone-bluetooth-speaker": {
+ "body": ""
+ },
+ "baseline-phone-callback": {
+ "body": ""
+ },
+ "baseline-phone-disabled": {
+ "body": ""
+ },
+ "baseline-phone-enabled": {
+ "body": ""
+ },
+ "baseline-phone-forwarded": {
+ "body": ""
+ },
+ "baseline-phone-in-talk": {
+ "body": ""
+ },
+ "baseline-phone-iphone": {
+ "body": ""
+ },
+ "baseline-phone-locked": {
+ "body": ""
+ },
+ "baseline-phone-missed": {
+ "body": ""
+ },
+ "baseline-phone-paused": {
+ "body": ""
+ },
+ "baseline-phonelink": {
+ "body": ""
+ },
+ "baseline-phonelink-erase": {
+ "body": ""
+ },
+ "baseline-phonelink-lock": {
+ "body": ""
+ },
+ "baseline-phonelink-off": {
+ "body": ""
+ },
+ "baseline-phonelink-ring": {
+ "body": ""
+ },
+ "baseline-phonelink-setup": {
+ "body": ""
+ },
+ "baseline-photo": {
+ "body": ""
+ },
+ "baseline-photo-album": {
+ "body": ""
+ },
+ "baseline-photo-camera": {
+ "body": ""
+ },
+ "baseline-photo-camera-back": {
+ "body": ""
+ },
+ "baseline-photo-camera-front": {
+ "body": ""
+ },
+ "baseline-photo-filter": {
+ "body": ""
+ },
+ "baseline-photo-library": {
+ "body": ""
+ },
+ "baseline-photo-size-select-actual": {
+ "body": ""
+ },
+ "baseline-photo-size-select-large": {
+ "body": ""
+ },
+ "baseline-photo-size-select-small": {
+ "body": ""
+ },
+ "baseline-php": {
+ "body": ""
+ },
+ "baseline-piano": {
+ "body": ""
+ },
+ "baseline-piano-off": {
+ "body": ""
+ },
+ "baseline-picture-as-pdf": {
+ "body": ""
+ },
+ "baseline-picture-in-picture": {
+ "body": ""
+ },
+ "baseline-picture-in-picture-alt": {
+ "body": ""
+ },
+ "baseline-pie-chart": {
+ "body": ""
+ },
+ "baseline-pie-chart-outline": {
+ "body": ""
+ },
+ "baseline-pin": {
+ "body": ""
+ },
+ "baseline-pin-drop": {
+ "body": ""
+ },
+ "baseline-pin-end": {
+ "body": ""
+ },
+ "baseline-pin-invoke": {
+ "body": ""
+ },
+ "baseline-pin-off": {
+ "body": ""
+ },
+ "baseline-pinch": {
+ "body": ""
+ },
+ "baseline-pivot-table-chart": {
+ "body": ""
+ },
+ "baseline-pix": {
+ "body": ""
+ },
+ "baseline-place": {
+ "body": ""
+ },
+ "baseline-plagiarism": {
+ "body": ""
+ },
+ "baseline-play-arrow": {
+ "body": ""
+ },
+ "baseline-play-circle": {
+ "body": ""
+ },
+ "baseline-play-circle-filled": {
+ "body": ""
+ },
+ "baseline-play-circle-filled-white": {
+ "body": ""
+ },
+ "baseline-play-circle-outline": {
+ "body": ""
+ },
+ "baseline-play-disabled": {
+ "body": ""
+ },
+ "baseline-play-for-work": {
+ "body": ""
+ },
+ "baseline-play-lesson": {
+ "body": ""
+ },
+ "baseline-playlist-add": {
+ "body": ""
+ },
+ "baseline-playlist-add-check": {
+ "body": ""
+ },
+ "baseline-playlist-add-check-circle": {
+ "body": ""
+ },
+ "baseline-playlist-add-circle": {
+ "body": ""
+ },
+ "baseline-playlist-play": {
+ "body": ""
+ },
+ "baseline-playlist-remove": {
+ "body": ""
+ },
+ "baseline-plumbing": {
+ "body": ""
+ },
+ "baseline-plus": {
+ "body": ""
+ },
+ "baseline-plus-minus": {
+ "body": ""
+ },
+ "baseline-plus-minus-alt": {
+ "body": ""
+ },
+ "baseline-plus-one": {
+ "body": ""
+ },
+ "baseline-podcasts": {
+ "body": ""
+ },
+ "baseline-point-of-sale": {
+ "body": ""
+ },
+ "baseline-policy": {
+ "body": ""
+ },
+ "baseline-poll": {
+ "body": ""
+ },
+ "baseline-polyline": {
+ "body": ""
+ },
+ "baseline-polymer": {
+ "body": ""
+ },
+ "baseline-pool": {
+ "body": ""
+ },
+ "baseline-portable-wifi-off": {
+ "body": ""
+ },
+ "baseline-portrait": {
+ "body": ""
+ },
+ "baseline-post-add": {
+ "body": ""
+ },
+ "baseline-power": {
+ "body": ""
+ },
+ "baseline-power-input": {
+ "body": ""
+ },
+ "baseline-power-off": {
+ "body": ""
+ },
+ "baseline-power-settings-new": {
+ "body": ""
+ },
+ "baseline-precision-manufacturing": {
+ "body": ""
+ },
+ "baseline-pregnant-woman": {
+ "body": ""
+ },
+ "baseline-present-to-all": {
+ "body": ""
+ },
+ "baseline-preview": {
+ "body": ""
+ },
+ "baseline-price-change": {
+ "body": ""
+ },
+ "baseline-price-check": {
+ "body": ""
+ },
+ "baseline-print": {
+ "body": ""
+ },
+ "baseline-print-disabled": {
+ "body": ""
+ },
+ "baseline-priority-high": {
+ "body": ""
+ },
+ "baseline-privacy-tip": {
+ "body": ""
+ },
+ "baseline-private-connectivity": {
+ "body": ""
+ },
+ "baseline-production-quantity-limits": {
+ "body": ""
+ },
+ "baseline-propane": {
+ "body": ""
+ },
+ "baseline-propane-tank": {
+ "body": ""
+ },
+ "baseline-psychology": {
+ "body": ""
+ },
+ "baseline-psychology-alt": {
+ "body": ""
+ },
+ "baseline-public": {
+ "body": ""
+ },
+ "baseline-public-off": {
+ "body": ""
+ },
+ "baseline-publish": {
+ "body": ""
+ },
+ "baseline-published-with-changes": {
+ "body": ""
+ },
+ "baseline-punch-clock": {
+ "body": ""
+ },
+ "baseline-push-pin": {
+ "body": ""
+ },
+ "baseline-qr-code": {
+ "body": ""
+ },
+ "baseline-qr-code-2": {
+ "body": ""
+ },
+ "baseline-qr-code-scanner": {
+ "body": ""
+ },
+ "baseline-qrcode": {
+ "body": ""
+ },
+ "baseline-query-builder": {
+ "body": ""
+ },
+ "baseline-query-stats": {
+ "body": ""
+ },
+ "baseline-question-answer": {
+ "body": ""
+ },
+ "baseline-question-mark": {
+ "body": ""
+ },
+ "baseline-queue": {
+ "body": ""
+ },
+ "baseline-queue-music": {
+ "body": ""
+ },
+ "baseline-queue-play-next": {
+ "body": ""
+ },
+ "baseline-quickreply": {
+ "body": ""
+ },
+ "baseline-quiz": {
+ "body": ""
+ },
+ "baseline-quora": {
+ "body": ""
+ },
+ "baseline-r-mobiledata": {
+ "body": ""
+ },
+ "baseline-radar": {
+ "body": ""
+ },
+ "baseline-radio": {
+ "body": ""
+ },
+ "baseline-radio-button-checked": {
+ "body": ""
+ },
+ "baseline-radio-button-unchecked": {
+ "body": ""
+ },
+ "baseline-railway-alert": {
+ "body": ""
+ },
+ "baseline-ramen-dining": {
+ "body": ""
+ },
+ "baseline-ramp-left": {
+ "body": ""
+ },
+ "baseline-ramp-right": {
+ "body": ""
+ },
+ "baseline-rate-review": {
+ "body": ""
+ },
+ "baseline-raw-off": {
+ "body": ""
+ },
+ "baseline-raw-on": {
+ "body": ""
+ },
+ "baseline-read-more": {
+ "body": ""
+ },
+ "baseline-real-estate-agent": {
+ "body": ""
+ },
+ "baseline-receipt": {
+ "body": ""
+ },
+ "baseline-receipt-long": {
+ "body": ""
+ },
+ "baseline-recent-actors": {
+ "body": ""
+ },
+ "baseline-recommend": {
+ "body": ""
+ },
+ "baseline-record-voice-over": {
+ "body": ""
+ },
+ "baseline-rectangle": {
+ "body": ""
+ },
+ "baseline-recycling": {
+ "body": ""
+ },
+ "baseline-reddit": {
+ "body": ""
+ },
+ "baseline-redeem": {
+ "body": ""
+ },
+ "baseline-redo": {
+ "body": ""
+ },
+ "baseline-reduce-capacity": {
+ "body": ""
+ },
+ "baseline-refresh": {
+ "body": ""
+ },
+ "baseline-remember-me": {
+ "body": ""
+ },
+ "baseline-remove": {
+ "body": ""
+ },
+ "baseline-remove-circle": {
+ "body": ""
+ },
+ "baseline-remove-circle-outline": {
+ "body": ""
+ },
+ "baseline-remove-done": {
+ "body": ""
+ },
+ "baseline-remove-from-queue": {
+ "body": ""
+ },
+ "baseline-remove-moderator": {
+ "body": ""
+ },
+ "baseline-remove-red-eye": {
+ "body": ""
+ },
+ "baseline-remove-road": {
+ "body": ""
+ },
+ "baseline-remove-shopping-cart": {
+ "body": ""
+ },
+ "baseline-reorder": {
+ "body": ""
+ },
+ "baseline-repartition": {
+ "body": ""
+ },
+ "baseline-repeat": {
+ "body": ""
+ },
+ "baseline-repeat-on": {
+ "body": ""
+ },
+ "baseline-repeat-one": {
+ "body": ""
+ },
+ "baseline-repeat-one-on": {
+ "body": ""
+ },
+ "baseline-replay": {
+ "body": ""
+ },
+ "baseline-replay-10": {
+ "body": ""
+ },
+ "baseline-replay-30": {
+ "body": ""
+ },
+ "baseline-replay-5": {
+ "body": ""
+ },
+ "baseline-replay-circle-filled": {
+ "body": ""
+ },
+ "baseline-reply": {
+ "body": ""
+ },
+ "baseline-reply-all": {
+ "body": ""
+ },
+ "baseline-report": {
+ "body": ""
+ },
+ "baseline-report-gmailerrorred": {
+ "body": ""
+ },
+ "baseline-report-off": {
+ "body": ""
+ },
+ "baseline-report-problem": {
+ "body": ""
+ },
+ "baseline-request-page": {
+ "body": ""
+ },
+ "baseline-request-quote": {
+ "body": ""
+ },
+ "baseline-reset-tv": {
+ "body": ""
+ },
+ "baseline-restart-alt": {
+ "body": ""
+ },
+ "baseline-restaurant": {
+ "body": ""
+ },
+ "baseline-restaurant-menu": {
+ "body": ""
+ },
+ "baseline-restore": {
+ "body": ""
+ },
+ "baseline-restore-from-trash": {
+ "body": ""
+ },
+ "baseline-restore-page": {
+ "body": ""
+ },
+ "baseline-reviews": {
+ "body": ""
+ },
+ "baseline-rice-bowl": {
+ "body": ""
+ },
+ "baseline-ring-volume": {
+ "body": ""
+ },
+ "baseline-rocket": {
+ "body": ""
+ },
+ "baseline-rocket-launch": {
+ "body": ""
+ },
+ "baseline-roller-shades": {
+ "body": ""
+ },
+ "baseline-roller-shades-closed": {
+ "body": ""
+ },
+ "baseline-roller-skating": {
+ "body": ""
+ },
+ "baseline-roofing": {
+ "body": ""
+ },
+ "baseline-room": {
+ "body": ""
+ },
+ "baseline-room-preferences": {
+ "body": ""
+ },
+ "baseline-room-service": {
+ "body": ""
+ },
+ "baseline-rotate-90-degrees-ccw": {
+ "body": ""
+ },
+ "baseline-rotate-90-degrees-cw": {
+ "body": ""
+ },
+ "baseline-rotate-left": {
+ "body": ""
+ },
+ "baseline-rotate-right": {
+ "body": ""
+ },
+ "baseline-roundabout-left": {
+ "body": ""
+ },
+ "baseline-roundabout-right": {
+ "body": ""
+ },
+ "baseline-rounded-corner": {
+ "body": ""
+ },
+ "baseline-route": {
+ "body": ""
+ },
+ "baseline-router": {
+ "body": ""
+ },
+ "baseline-rowing": {
+ "body": ""
+ },
+ "baseline-rss-feed": {
+ "body": ""
+ },
+ "baseline-rsvp": {
+ "body": ""
+ },
+ "baseline-rtt": {
+ "body": ""
+ },
+ "baseline-rule": {
+ "body": ""
+ },
+ "baseline-rule-folder": {
+ "body": ""
+ },
+ "baseline-run-circle": {
+ "body": ""
+ },
+ "baseline-running-with-errors": {
+ "body": ""
+ },
+ "baseline-rv-hookup": {
+ "body": ""
+ },
+ "baseline-safety-check": {
+ "body": ""
+ },
+ "baseline-safety-divider": {
+ "body": ""
+ },
+ "baseline-sailing": {
+ "body": ""
+ },
+ "baseline-sanitizer": {
+ "body": ""
+ },
+ "baseline-satellite": {
+ "body": ""
+ },
+ "baseline-satellite-alt": {
+ "body": ""
+ },
+ "baseline-save": {
+ "body": ""
+ },
+ "baseline-save-all": {
+ "body": ""
+ },
+ "baseline-save-alt": {
+ "body": ""
+ },
+ "baseline-save-as": {
+ "body": ""
+ },
+ "baseline-saved-search": {
+ "body": ""
+ },
+ "baseline-savings": {
+ "body": ""
+ },
+ "baseline-scale": {
+ "body": ""
+ },
+ "baseline-scanner": {
+ "body": ""
+ },
+ "baseline-scatter-plot": {
+ "body": ""
+ },
+ "baseline-schedule": {
+ "body": ""
+ },
+ "baseline-schedule-send": {
+ "body": ""
+ },
+ "baseline-schema": {
+ "body": ""
+ },
+ "baseline-school": {
+ "body": ""
+ },
+ "baseline-science": {
+ "body": ""
+ },
+ "baseline-score": {
+ "body": ""
+ },
+ "baseline-scoreboard": {
+ "body": ""
+ },
+ "baseline-screen-lock-landscape": {
+ "body": ""
+ },
+ "baseline-screen-lock-portrait": {
+ "body": ""
+ },
+ "baseline-screen-lock-rotation": {
+ "body": ""
+ },
+ "baseline-screen-rotation": {
+ "body": ""
+ },
+ "baseline-screen-rotation-alt": {
+ "body": ""
+ },
+ "baseline-screen-search-desktop": {
+ "body": ""
+ },
+ "baseline-screen-share": {
+ "body": ""
+ },
+ "baseline-screenshot": {
+ "body": ""
+ },
+ "baseline-screenshot-monitor": {
+ "body": ""
+ },
+ "baseline-scuba-diving": {
+ "body": ""
+ },
+ "baseline-sd": {
+ "body": ""
+ },
+ "baseline-sd-card": {
+ "body": ""
+ },
+ "baseline-sd-card-alert": {
+ "body": ""
+ },
+ "baseline-sd-storage": {
+ "body": ""
+ },
+ "baseline-search": {
+ "body": ""
+ },
+ "baseline-search-off": {
+ "body": ""
+ },
+ "baseline-security": {
+ "body": ""
+ },
+ "baseline-security-update": {
+ "body": ""
+ },
+ "baseline-security-update-good": {
+ "body": ""
+ },
+ "baseline-security-update-warning": {
+ "body": ""
+ },
+ "baseline-segment": {
+ "body": ""
+ },
+ "baseline-select-all": {
+ "body": ""
+ },
+ "baseline-self-improvement": {
+ "body": ""
+ },
+ "baseline-sell": {
+ "body": ""
+ },
+ "baseline-send": {
+ "body": ""
+ },
+ "baseline-send-and-archive": {
+ "body": ""
+ },
+ "baseline-send-time-extension": {
+ "body": ""
+ },
+ "baseline-send-to-mobile": {
+ "body": ""
+ },
+ "baseline-sensor-door": {
+ "body": ""
+ },
+ "baseline-sensor-occupied": {
+ "body": ""
+ },
+ "baseline-sensor-window": {
+ "body": ""
+ },
+ "baseline-sensors": {
+ "body": ""
+ },
+ "baseline-sensors-off": {
+ "body": ""
+ },
+ "baseline-sentiment-dissatisfied": {
+ "body": ""
+ },
+ "baseline-sentiment-neutral": {
+ "body": ""
+ },
+ "baseline-sentiment-satisfied": {
+ "body": ""
+ },
+ "baseline-sentiment-satisfied-alt": {
+ "body": ""
+ },
+ "baseline-sentiment-slightly-dissatisfied": {
+ "body": ""
+ },
+ "baseline-sentiment-very-dissatisfied": {
+ "body": ""
+ },
+ "baseline-sentiment-very-satisfied": {
+ "body": ""
+ },
+ "baseline-set-meal": {
+ "body": ""
+ },
+ "baseline-settings": {
+ "body": ""
+ },
+ "baseline-settings-accessibility": {
+ "body": ""
+ },
+ "baseline-settings-applications": {
+ "body": ""
+ },
+ "baseline-settings-backup-restore": {
+ "body": ""
+ },
+ "baseline-settings-bluetooth": {
+ "body": ""
+ },
+ "baseline-settings-brightness": {
+ "body": ""
+ },
+ "baseline-settings-cell": {
+ "body": ""
+ },
+ "baseline-settings-ethernet": {
+ "body": ""
+ },
+ "baseline-settings-input-antenna": {
+ "body": ""
+ },
+ "baseline-settings-input-component": {
+ "body": ""
+ },
+ "baseline-settings-input-composite": {
+ "body": ""
+ },
+ "baseline-settings-input-hdmi": {
+ "body": ""
+ },
+ "baseline-settings-input-svideo": {
+ "body": ""
+ },
+ "baseline-settings-overscan": {
+ "body": ""
+ },
+ "baseline-settings-phone": {
+ "body": ""
+ },
+ "baseline-settings-power": {
+ "body": ""
+ },
+ "baseline-settings-remote": {
+ "body": ""
+ },
+ "baseline-settings-suggest": {
+ "body": ""
+ },
+ "baseline-settings-system-daydream": {
+ "body": ""
+ },
+ "baseline-settings-voice": {
+ "body": ""
+ },
+ "baseline-severe-cold": {
+ "body": ""
+ },
+ "baseline-shape-line": {
+ "body": ""
+ },
+ "baseline-share": {
+ "body": ""
+ },
+ "baseline-share-arrival-time": {
+ "body": ""
+ },
+ "baseline-share-location": {
+ "body": ""
+ },
+ "baseline-shield": {
+ "body": ""
+ },
+ "baseline-shield-moon": {
+ "body": ""
+ },
+ "baseline-shop": {
+ "body": ""
+ },
+ "baseline-shop-2": {
+ "body": ""
+ },
+ "baseline-shop-two": {
+ "body": ""
+ },
+ "baseline-shopify": {
+ "body": ""
+ },
+ "baseline-shopping-bag": {
+ "body": ""
+ },
+ "baseline-shopping-basket": {
+ "body": ""
+ },
+ "baseline-shopping-cart": {
+ "body": ""
+ },
+ "baseline-shopping-cart-checkout": {
+ "body": ""
+ },
+ "baseline-short-text": {
+ "body": ""
+ },
+ "baseline-shortcut": {
+ "body": ""
+ },
+ "baseline-show-chart": {
+ "body": ""
+ },
+ "baseline-shower": {
+ "body": ""
+ },
+ "baseline-shuffle": {
+ "body": ""
+ },
+ "baseline-shuffle-on": {
+ "body": ""
+ },
+ "baseline-shutter-speed": {
+ "body": ""
+ },
+ "baseline-sick": {
+ "body": ""
+ },
+ "baseline-sign-language": {
+ "body": ""
+ },
+ "baseline-signal-cellular-0-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-1-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-2-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-3-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-4-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-alt": {
+ "body": ""
+ },
+ "baseline-signal-cellular-alt-1-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-alt-2-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-connected-no-internet-0-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-connected-no-internet-1-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-connected-no-internet-2-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-connected-no-internet-3-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-connected-no-internet-4-bar": {
+ "body": ""
+ },
+ "baseline-signal-cellular-no-sim": {
+ "body": ""
+ },
+ "baseline-signal-cellular-nodata": {
+ "body": ""
+ },
+ "baseline-signal-cellular-null": {
+ "body": ""
+ },
+ "baseline-signal-cellular-off": {
+ "body": ""
+ },
+ "baseline-signal-wifi-0-bar": {
+ "body": ""
+ },
+ "baseline-signal-wifi-1-bar": {
+ "body": ""
+ },
+ "baseline-signal-wifi-1-bar-lock": {
+ "body": ""
+ },
+ "baseline-signal-wifi-2-bar": {
+ "body": ""
+ },
+ "baseline-signal-wifi-2-bar-lock": {
+ "body": ""
+ },
+ "baseline-signal-wifi-3-bar": {
+ "body": ""
+ },
+ "baseline-signal-wifi-3-bar-lock": {
+ "body": ""
+ },
+ "baseline-signal-wifi-4-bar": {
+ "body": ""
+ },
+ "baseline-signal-wifi-4-bar-lock": {
+ "body": ""
+ },
+ "baseline-signal-wifi-bad": {
+ "body": ""
+ },
+ "baseline-signal-wifi-connected-no-internet-4": {
+ "body": ""
+ },
+ "baseline-signal-wifi-off": {
+ "body": ""
+ },
+ "baseline-signal-wifi-statusbar-4-bar": {
+ "body": ""
+ },
+ "baseline-signal-wifi-statusbar-connected-no-internet-4": {
+ "body": ""
+ },
+ "baseline-signal-wifi-statusbar-null": {
+ "body": ""
+ },
+ "baseline-signpost": {
+ "body": ""
+ },
+ "baseline-sim-card": {
+ "body": ""
+ },
+ "baseline-sim-card-alert": {
+ "body": ""
+ },
+ "baseline-sim-card-download": {
+ "body": ""
+ },
+ "baseline-single-bed": {
+ "body": ""
+ },
+ "baseline-sip": {
+ "body": ""
+ },
+ "baseline-skateboarding": {
+ "body": ""
+ },
+ "baseline-skip-next": {
+ "body": ""
+ },
+ "baseline-skip-previous": {
+ "body": ""
+ },
+ "baseline-sledding": {
+ "body": ""
+ },
+ "baseline-slideshow": {
+ "body": ""
+ },
+ "baseline-slow-motion-video": {
+ "body": ""
+ },
+ "baseline-smart-button": {
+ "body": ""
+ },
+ "baseline-smart-display": {
+ "body": ""
+ },
+ "baseline-smart-screen": {
+ "body": ""
+ },
+ "baseline-smart-toy": {
+ "body": ""
+ },
+ "baseline-smartphone": {
+ "body": ""
+ },
+ "baseline-smoke-free": {
+ "body": ""
+ },
+ "baseline-smoking-rooms": {
+ "body": ""
+ },
+ "baseline-sms": {
+ "body": ""
+ },
+ "baseline-sms-failed": {
+ "body": ""
+ },
+ "baseline-snapchat": {
+ "body": ""
+ },
+ "baseline-snippet-folder": {
+ "body": ""
+ },
+ "baseline-snooze": {
+ "body": ""
+ },
+ "baseline-snowboarding": {
+ "body": ""
+ },
+ "baseline-snowmobile": {
+ "body": ""
+ },
+ "baseline-snowshoeing": {
+ "body": ""
+ },
+ "baseline-soap": {
+ "body": ""
+ },
+ "baseline-social-distance": {
+ "body": ""
+ },
+ "baseline-solar-power": {
+ "body": ""
+ },
+ "baseline-sort": {
+ "body": ""
+ },
+ "baseline-sort-by-alpha": {
+ "body": ""
+ },
+ "baseline-sos": {
+ "body": ""
+ },
+ "baseline-soup-kitchen": {
+ "body": ""
+ },
+ "baseline-source": {
+ "body": ""
+ },
+ "baseline-south": {
+ "body": ""
+ },
+ "baseline-south-america": {
+ "body": ""
+ },
+ "baseline-south-east": {
+ "body": ""
+ },
+ "baseline-south-west": {
+ "body": ""
+ },
+ "baseline-spa": {
+ "body": ""
+ },
+ "baseline-space-bar": {
+ "body": ""
+ },
+ "baseline-space-dashboard": {
+ "body": ""
+ },
+ "baseline-spatial-audio": {
+ "body": ""
+ },
+ "baseline-spatial-audio-off": {
+ "body": ""
+ },
+ "baseline-spatial-tracking": {
+ "body": ""
+ },
+ "baseline-speaker": {
+ "body": ""
+ },
+ "baseline-speaker-group": {
+ "body": ""
+ },
+ "baseline-speaker-notes": {
+ "body": ""
+ },
+ "baseline-speaker-notes-off": {
+ "body": ""
+ },
+ "baseline-speaker-phone": {
+ "body": ""
+ },
+ "baseline-speed": {
+ "body": ""
+ },
+ "baseline-spellcheck": {
+ "body": ""
+ },
+ "baseline-splitscreen": {
+ "body": ""
+ },
+ "baseline-spoke": {
+ "body": ""
+ },
+ "baseline-sports": {
+ "body": ""
+ },
+ "baseline-sports-bar": {
+ "body": ""
+ },
+ "baseline-sports-baseball": {
+ "body": ""
+ },
+ "baseline-sports-basketball": {
+ "body": ""
+ },
+ "baseline-sports-cricket": {
+ "body": ""
+ },
+ "baseline-sports-esports": {
+ "body": ""
+ },
+ "baseline-sports-football": {
+ "body": ""
+ },
+ "baseline-sports-golf": {
+ "body": ""
+ },
+ "baseline-sports-gymnastics": {
+ "body": ""
+ },
+ "baseline-sports-handball": {
+ "body": ""
+ },
+ "baseline-sports-hockey": {
+ "body": ""
+ },
+ "baseline-sports-kabaddi": {
+ "body": ""
+ },
+ "baseline-sports-martial-arts": {
+ "body": ""
+ },
+ "baseline-sports-mma": {
+ "body": ""
+ },
+ "baseline-sports-motorsports": {
+ "body": ""
+ },
+ "baseline-sports-rugby": {
+ "body": ""
+ },
+ "baseline-sports-score": {
+ "body": ""
+ },
+ "baseline-sports-soccer": {
+ "body": ""
+ },
+ "baseline-sports-tennis": {
+ "body": ""
+ },
+ "baseline-sports-volleyball": {
+ "body": ""
+ },
+ "baseline-square": {
+ "body": ""
+ },
+ "baseline-square-foot": {
+ "body": ""
+ },
+ "baseline-ssid-chart": {
+ "body": ""
+ },
+ "baseline-stacked-bar-chart": {
+ "body": ""
+ },
+ "baseline-stacked-line-chart": {
+ "body": ""
+ },
+ "baseline-stadium": {
+ "body": ""
+ },
+ "baseline-stairs": {
+ "body": ""
+ },
+ "baseline-star": {
+ "body": ""
+ },
+ "baseline-star-border": {
+ "body": ""
+ },
+ "baseline-star-border-purple500": {
+ "body": ""
+ },
+ "baseline-star-half": {
+ "body": ""
+ },
+ "baseline-star-outline": {
+ "body": ""
+ },
+ "baseline-star-purple500": {
+ "body": ""
+ },
+ "baseline-star-rate": {
+ "body": ""
+ },
+ "baseline-stars": {
+ "body": ""
+ },
+ "baseline-start": {
+ "body": ""
+ },
+ "baseline-stay-current-landscape": {
+ "body": ""
+ },
+ "baseline-stay-current-portrait": {
+ "body": ""
+ },
+ "baseline-stay-primary-landscape": {
+ "body": ""
+ },
+ "baseline-stay-primary-portrait": {
+ "body": ""
+ },
+ "baseline-sticky-note-2": {
+ "body": ""
+ },
+ "baseline-stop": {
+ "body": ""
+ },
+ "baseline-stop-circle": {
+ "body": ""
+ },
+ "baseline-stop-screen-share": {
+ "body": ""
+ },
+ "baseline-storage": {
+ "body": ""
+ },
+ "baseline-store": {
+ "body": ""
+ },
+ "baseline-store-mall-directory": {
+ "body": ""
+ },
+ "baseline-storefront": {
+ "body": ""
+ },
+ "baseline-storm": {
+ "body": ""
+ },
+ "baseline-straight": {
+ "body": ""
+ },
+ "baseline-straighten": {
+ "body": ""
+ },
+ "baseline-stream": {
+ "body": ""
+ },
+ "baseline-streetview": {
+ "body": ""
+ },
+ "baseline-strikethrough-s": {
+ "body": ""
+ },
+ "baseline-stroller": {
+ "body": ""
+ },
+ "baseline-style": {
+ "body": ""
+ },
+ "baseline-subdirectory-arrow-left": {
+ "body": ""
+ },
+ "baseline-subdirectory-arrow-right": {
+ "body": ""
+ },
+ "baseline-subject": {
+ "body": ""
+ },
+ "baseline-subscript": {
+ "body": ""
+ },
+ "baseline-subscriptions": {
+ "body": ""
+ },
+ "baseline-subtitles": {
+ "body": ""
+ },
+ "baseline-subtitles-off": {
+ "body": ""
+ },
+ "baseline-subway": {
+ "body": ""
+ },
+ "baseline-summarize": {
+ "body": ""
+ },
+ "baseline-superscript": {
+ "body": ""
+ },
+ "baseline-supervised-user-circle": {
+ "body": ""
+ },
+ "baseline-supervisor-account": {
+ "body": ""
+ },
+ "baseline-support": {
+ "body": ""
+ },
+ "baseline-support-agent": {
+ "body": ""
+ },
+ "baseline-surfing": {
+ "body": ""
+ },
+ "baseline-surround-sound": {
+ "body": ""
+ },
+ "baseline-swap-calls": {
+ "body": ""
+ },
+ "baseline-swap-horiz": {
+ "body": ""
+ },
+ "baseline-swap-horizontal-circle": {
+ "body": ""
+ },
+ "baseline-swap-vert": {
+ "body": ""
+ },
+ "baseline-swap-vertical-circle": {
+ "body": ""
+ },
+ "baseline-swipe": {
+ "body": ""
+ },
+ "baseline-swipe-down": {
+ "body": ""
+ },
+ "baseline-swipe-down-alt": {
+ "body": ""
+ },
+ "baseline-swipe-left": {
+ "body": ""
+ },
+ "baseline-swipe-left-alt": {
+ "body": ""
+ },
+ "baseline-swipe-right": {
+ "body": ""
+ },
+ "baseline-swipe-right-alt": {
+ "body": ""
+ },
+ "baseline-swipe-up": {
+ "body": ""
+ },
+ "baseline-swipe-up-alt": {
+ "body": ""
+ },
+ "baseline-swipe-vertical": {
+ "body": ""
+ },
+ "baseline-switch-access-shortcut": {
+ "body": ""
+ },
+ "baseline-switch-access-shortcut-add": {
+ "body": ""
+ },
+ "baseline-switch-account": {
+ "body": ""
+ },
+ "baseline-switch-camera": {
+ "body": ""
+ },
+ "baseline-switch-left": {
+ "body": ""
+ },
+ "baseline-switch-right": {
+ "body": ""
+ },
+ "baseline-switch-video": {
+ "body": ""
+ },
+ "baseline-synagogue": {
+ "body": ""
+ },
+ "baseline-sync": {
+ "body": ""
+ },
+ "baseline-sync-alt": {
+ "body": ""
+ },
+ "baseline-sync-disabled": {
+ "body": ""
+ },
+ "baseline-sync-lock": {
+ "body": ""
+ },
+ "baseline-sync-problem": {
+ "body": ""
+ },
+ "baseline-system-security-update": {
+ "body": ""
+ },
+ "baseline-system-security-update-good": {
+ "body": ""
+ },
+ "baseline-system-security-update-warning": {
+ "body": ""
+ },
+ "baseline-system-update": {
+ "body": ""
+ },
+ "baseline-system-update-alt": {
+ "body": ""
+ },
+ "baseline-tab": {
+ "body": ""
+ },
+ "baseline-tab-unselected": {
+ "body": ""
+ },
+ "baseline-table-bar": {
+ "body": ""
+ },
+ "baseline-table-chart": {
+ "body": ""
+ },
+ "baseline-table-restaurant": {
+ "body": ""
+ },
+ "baseline-table-rows": {
+ "body": ""
+ },
+ "baseline-table-view": {
+ "body": ""
+ },
+ "baseline-tablet": {
+ "body": ""
+ },
+ "baseline-tablet-android": {
+ "body": ""
+ },
+ "baseline-tablet-mac": {
+ "body": ""
+ },
+ "baseline-tag": {
+ "body": ""
+ },
+ "baseline-tag-faces": {
+ "body": ""
+ },
+ "baseline-takeout-dining": {
+ "body": ""
+ },
+ "baseline-tap-and-play": {
+ "body": ""
+ },
+ "baseline-tapas": {
+ "body": ""
+ },
+ "baseline-task": {
+ "body": ""
+ },
+ "baseline-task-alt": {
+ "body": ""
+ },
+ "baseline-taxi-alert": {
+ "body": ""
+ },
+ "baseline-telegram": {
+ "body": ""
+ },
+ "baseline-temple-buddhist": {
+ "body": ""
+ },
+ "baseline-temple-hindu": {
+ "body": ""
+ },
+ "baseline-terminal": {
+ "body": ""
+ },
+ "baseline-terrain": {
+ "body": ""
+ },
+ "baseline-text-decrease": {
+ "body": ""
+ },
+ "baseline-text-fields": {
+ "body": ""
+ },
+ "baseline-text-format": {
+ "body": ""
+ },
+ "baseline-text-increase": {
+ "body": ""
+ },
+ "baseline-text-rotate-up": {
+ "body": ""
+ },
+ "baseline-text-rotate-vertical": {
+ "body": ""
+ },
+ "baseline-text-rotation-angledown": {
+ "body": ""
+ },
+ "baseline-text-rotation-angleup": {
+ "body": ""
+ },
+ "baseline-text-rotation-down": {
+ "body": ""
+ },
+ "baseline-text-rotation-none": {
+ "body": ""
+ },
+ "baseline-text-snippet": {
+ "body": ""
+ },
+ "baseline-textsms": {
+ "body": ""
+ },
+ "baseline-texture": {
+ "body": ""
+ },
+ "baseline-theater-comedy": {
+ "body": ""
+ },
+ "baseline-theaters": {
+ "body": ""
+ },
+ "baseline-thermostat": {
+ "body": ""
+ },
+ "baseline-thermostat-auto": {
+ "body": ""
+ },
+ "baseline-thumb-down": {
+ "body": ""
+ },
+ "baseline-thumb-down-alt": {
+ "body": ""
+ },
+ "baseline-thumb-down-off-alt": {
+ "body": ""
+ },
+ "baseline-thumb-up": {
+ "body": ""
+ },
+ "baseline-thumb-up-alt": {
+ "body": ""
+ },
+ "baseline-thumb-up-off-alt": {
+ "body": ""
+ },
+ "baseline-thumbs-up-down": {
+ "body": ""
+ },
+ "baseline-thunderstorm": {
+ "body": ""
+ },
+ "baseline-tiktok": {
+ "body": ""
+ },
+ "baseline-time-to-leave": {
+ "body": ""
+ },
+ "baseline-timelapse": {
+ "body": ""
+ },
+ "baseline-timeline": {
+ "body": ""
+ },
+ "baseline-timer": {
+ "body": ""
+ },
+ "baseline-timer-10": {
+ "body": ""
+ },
+ "baseline-timer-10-select": {
+ "body": ""
+ },
+ "baseline-timer-3": {
+ "body": ""
+ },
+ "baseline-timer-3-select": {
+ "body": ""
+ },
+ "baseline-timer-off": {
+ "body": ""
+ },
+ "baseline-tips-and-updates": {
+ "body": ""
+ },
+ "baseline-tire-repair": {
+ "body": ""
+ },
+ "baseline-title": {
+ "body": ""
+ },
+ "baseline-toc": {
+ "body": ""
+ },
+ "baseline-today": {
+ "body": ""
+ },
+ "baseline-toggle-off": {
+ "body": ""
+ },
+ "baseline-toggle-on": {
+ "body": ""
+ },
+ "baseline-token": {
+ "body": ""
+ },
+ "baseline-toll": {
+ "body": ""
+ },
+ "baseline-tonality": {
+ "body": ""
+ },
+ "baseline-topic": {
+ "body": ""
+ },
+ "baseline-tornado": {
+ "body": ""
+ },
+ "baseline-touch-app": {
+ "body": ""
+ },
+ "baseline-tour": {
+ "body": ""
+ },
+ "baseline-toys": {
+ "body": ""
+ },
+ "baseline-track-changes": {
+ "body": ""
+ },
+ "baseline-traffic": {
+ "body": ""
+ },
+ "baseline-train": {
+ "body": ""
+ },
+ "baseline-tram": {
+ "body": ""
+ },
+ "baseline-transcribe": {
+ "body": ""
+ },
+ "baseline-transfer-within-a-station": {
+ "body": ""
+ },
+ "baseline-transform": {
+ "body": ""
+ },
+ "baseline-transgender": {
+ "body": ""
+ },
+ "baseline-transit-enterexit": {
+ "body": ""
+ },
+ "baseline-translate": {
+ "body": ""
+ },
+ "baseline-travel-explore": {
+ "body": ""
+ },
+ "baseline-trending-down": {
+ "body": ""
+ },
+ "baseline-trending-flat": {
+ "body": ""
+ },
+ "baseline-trending-up": {
+ "body": ""
+ },
+ "baseline-trip-origin": {
+ "body": ""
+ },
+ "baseline-troubleshoot": {
+ "body": ""
+ },
+ "baseline-try": {
+ "body": ""
+ },
+ "baseline-tsunami": {
+ "body": ""
+ },
+ "baseline-tty": {
+ "body": ""
+ },
+ "baseline-tune": {
+ "body": ""
+ },
+ "baseline-tungsten": {
+ "body": ""
+ },
+ "baseline-turn-left": {
+ "body": ""
+ },
+ "baseline-turn-right": {
+ "body": ""
+ },
+ "baseline-turn-sharp-left": {
+ "body": ""
+ },
+ "baseline-turn-sharp-right": {
+ "body": ""
+ },
+ "baseline-turn-slight-left": {
+ "body": ""
+ },
+ "baseline-turn-slight-right": {
+ "body": ""
+ },
+ "baseline-turned-in": {
+ "body": ""
+ },
+ "baseline-turned-in-not": {
+ "body": ""
+ },
+ "baseline-tv": {
+ "body": ""
+ },
+ "baseline-tv-off": {
+ "body": ""
+ },
+ "baseline-two-wheeler": {
+ "body": ""
+ },
+ "baseline-type-specimen": {
+ "body": ""
+ },
+ "baseline-u-turn-left": {
+ "body": ""
+ },
+ "baseline-u-turn-right": {
+ "body": ""
+ },
+ "baseline-umbrella": {
+ "body": ""
+ },
+ "baseline-unarchive": {
+ "body": ""
+ },
+ "baseline-undo": {
+ "body": ""
+ },
+ "baseline-unfold-less": {
+ "body": ""
+ },
+ "baseline-unfold-less-double": {
+ "body": ""
+ },
+ "baseline-unfold-more": {
+ "body": ""
+ },
+ "baseline-unfold-more-double": {
+ "body": ""
+ },
+ "baseline-unpublished": {
+ "body": ""
+ },
+ "baseline-unsubscribe": {
+ "body": ""
+ },
+ "baseline-upcoming": {
+ "body": ""
+ },
+ "baseline-update": {
+ "body": ""
+ },
+ "baseline-update-disabled": {
+ "body": ""
+ },
+ "baseline-upgrade": {
+ "body": ""
+ },
+ "baseline-upload": {
+ "body": ""
+ },
+ "baseline-upload-file": {
+ "body": ""
+ },
+ "baseline-usb": {
+ "body": ""
+ },
+ "baseline-usb-off": {
+ "body": ""
+ },
+ "baseline-vaccines": {
+ "body": ""
+ },
+ "baseline-vape-free": {
+ "body": ""
+ },
+ "baseline-vaping-rooms": {
+ "body": ""
+ },
+ "baseline-verified": {
+ "body": ""
+ },
+ "baseline-verified-user": {
+ "body": ""
+ },
+ "baseline-vertical-align-bottom": {
+ "body": ""
+ },
+ "baseline-vertical-align-center": {
+ "body": ""
+ },
+ "baseline-vertical-align-top": {
+ "body": ""
+ },
+ "baseline-vertical-distribute": {
+ "body": ""
+ },
+ "baseline-vertical-shades": {
+ "body": ""
+ },
+ "baseline-vertical-shades-closed": {
+ "body": ""
+ },
+ "baseline-vertical-split": {
+ "body": ""
+ },
+ "baseline-vibration": {
+ "body": ""
+ },
+ "baseline-video-call": {
+ "body": ""
+ },
+ "baseline-video-camera-back": {
+ "body": ""
+ },
+ "baseline-video-camera-front": {
+ "body": ""
+ },
+ "baseline-video-chat": {
+ "body": ""
+ },
+ "baseline-video-file": {
+ "body": ""
+ },
+ "baseline-video-label": {
+ "body": ""
+ },
+ "baseline-video-library": {
+ "body": ""
+ },
+ "baseline-video-settings": {
+ "body": ""
+ },
+ "baseline-video-stable": {
+ "body": ""
+ },
+ "baseline-videocam": {
+ "body": ""
+ },
+ "baseline-videocam-off": {
+ "body": ""
+ },
+ "baseline-videogame-asset": {
+ "body": ""
+ },
+ "baseline-videogame-asset-off": {
+ "body": ""
+ },
+ "baseline-view-agenda": {
+ "body": ""
+ },
+ "baseline-view-array": {
+ "body": ""
+ },
+ "baseline-view-carousel": {
+ "body": ""
+ },
+ "baseline-view-column": {
+ "body": ""
+ },
+ "baseline-view-comfy": {
+ "body": ""
+ },
+ "baseline-view-comfy-alt": {
+ "body": ""
+ },
+ "baseline-view-compact": {
+ "body": ""
+ },
+ "baseline-view-compact-alt": {
+ "body": ""
+ },
+ "baseline-view-cozy": {
+ "body": ""
+ },
+ "baseline-view-day": {
+ "body": ""
+ },
+ "baseline-view-headline": {
+ "body": ""
+ },
+ "baseline-view-in-ar": {
+ "body": ""
+ },
+ "baseline-view-kanban": {
+ "body": ""
+ },
+ "baseline-view-list": {
+ "body": ""
+ },
+ "baseline-view-module": {
+ "body": ""
+ },
+ "baseline-view-quilt": {
+ "body": ""
+ },
+ "baseline-view-sidebar": {
+ "body": ""
+ },
+ "baseline-view-stream": {
+ "body": ""
+ },
+ "baseline-view-timeline": {
+ "body": ""
+ },
+ "baseline-view-week": {
+ "body": ""
+ },
+ "baseline-vignette": {
+ "body": ""
+ },
+ "baseline-villa": {
+ "body": ""
+ },
+ "baseline-visibility": {
+ "body": ""
+ },
+ "baseline-visibility-off": {
+ "body": ""
+ },
+ "baseline-voice-chat": {
+ "body": ""
+ },
+ "baseline-voice-over-off": {
+ "body": ""
+ },
+ "baseline-voicemail": {
+ "body": ""
+ },
+ "baseline-volcano": {
+ "body": ""
+ },
+ "baseline-volume-down": {
+ "body": ""
+ },
+ "baseline-volume-mute": {
+ "body": ""
+ },
+ "baseline-volume-off": {
+ "body": ""
+ },
+ "baseline-volume-up": {
+ "body": ""
+ },
+ "baseline-volunteer-activism": {
+ "body": ""
+ },
+ "baseline-vpn-key": {
+ "body": ""
+ },
+ "baseline-vpn-key-off": {
+ "body": ""
+ },
+ "baseline-vpn-lock": {
+ "body": ""
+ },
+ "baseline-vrpano": {
+ "body": ""
+ },
+ "baseline-wallet": {
+ "body": ""
+ },
+ "baseline-wallpaper": {
+ "body": ""
+ },
+ "baseline-warehouse": {
+ "body": ""
+ },
+ "baseline-warning": {
+ "body": ""
+ },
+ "baseline-warning-amber": {
+ "body": ""
+ },
+ "baseline-wash": {
+ "body": ""
+ },
+ "baseline-watch": {
+ "body": ""
+ },
+ "baseline-watch-later": {
+ "body": ""
+ },
+ "baseline-watch-off": {
+ "body": ""
+ },
+ "baseline-water": {
+ "body": ""
+ },
+ "baseline-water-damage": {
+ "body": ""
+ },
+ "baseline-water-drop": {
+ "body": ""
+ },
+ "baseline-waterfall-chart": {
+ "body": ""
+ },
+ "baseline-waves": {
+ "body": ""
+ },
+ "baseline-waving-hand": {
+ "body": ""
+ },
+ "baseline-wb-auto": {
+ "body": ""
+ },
+ "baseline-wb-cloudy": {
+ "body": ""
+ },
+ "baseline-wb-incandescent": {
+ "body": ""
+ },
+ "baseline-wb-iridescent": {
+ "body": ""
+ },
+ "baseline-wb-shade": {
+ "body": ""
+ },
+ "baseline-wb-sunny": {
+ "body": ""
+ },
+ "baseline-wb-twilight": {
+ "body": ""
+ },
+ "baseline-wc": {
+ "body": ""
+ },
+ "baseline-web": {
+ "body": ""
+ },
+ "baseline-web-asset": {
+ "body": ""
+ },
+ "baseline-web-asset-off": {
+ "body": ""
+ },
+ "baseline-web-stories": {
+ "body": ""
+ },
+ "baseline-webhook": {
+ "body": ""
+ },
+ "baseline-wechat": {
+ "body": ""
+ },
+ "baseline-weekend": {
+ "body": ""
+ },
+ "baseline-west": {
+ "body": ""
+ },
+ "baseline-whatsapp": {
+ "body": ""
+ },
+ "baseline-whatshot": {
+ "body": ""
+ },
+ "baseline-wheelchair-pickup": {
+ "body": ""
+ },
+ "baseline-where-to-vote": {
+ "body": ""
+ },
+ "baseline-widgets": {
+ "body": ""
+ },
+ "baseline-width-full": {
+ "body": ""
+ },
+ "baseline-width-normal": {
+ "body": ""
+ },
+ "baseline-width-wide": {
+ "body": ""
+ },
+ "baseline-wifi": {
+ "body": ""
+ },
+ "baseline-wifi-1-bar": {
+ "body": ""
+ },
+ "baseline-wifi-2-bar": {
+ "body": ""
+ },
+ "baseline-wifi-calling": {
+ "body": ""
+ },
+ "baseline-wifi-calling-3": {
+ "body": ""
+ },
+ "baseline-wifi-channel": {
+ "body": ""
+ },
+ "baseline-wifi-find": {
+ "body": ""
+ },
+ "baseline-wifi-lock": {
+ "body": ""
+ },
+ "baseline-wifi-off": {
+ "body": ""
+ },
+ "baseline-wifi-password": {
+ "body": ""
+ },
+ "baseline-wifi-protected-setup": {
+ "body": ""
+ },
+ "baseline-wifi-tethering": {
+ "body": ""
+ },
+ "baseline-wifi-tethering-error": {
+ "body": ""
+ },
+ "baseline-wifi-tethering-error-rounded": {
+ "body": ""
+ },
+ "baseline-wifi-tethering-off": {
+ "body": ""
+ },
+ "baseline-wind-power": {
+ "body": ""
+ },
+ "baseline-window": {
+ "body": ""
+ },
+ "baseline-wine-bar": {
+ "body": ""
+ },
+ "baseline-woman": {
+ "body": ""
+ },
+ "baseline-woman-2": {
+ "body": ""
+ },
+ "baseline-woo-commerce": {
+ "body": ""
+ },
+ "baseline-wordpress": {
+ "body": ""
+ },
+ "baseline-work": {
+ "body": ""
+ },
+ "baseline-work-history": {
+ "body": ""
+ },
+ "baseline-work-off": {
+ "body": ""
+ },
+ "baseline-work-outline": {
+ "body": ""
+ },
+ "baseline-workspace-premium": {
+ "body": ""
+ },
+ "baseline-workspaces": {
+ "body": ""
+ },
+ "baseline-wrap-text": {
+ "body": ""
+ },
+ "baseline-wrong-location": {
+ "body": ""
+ },
+ "baseline-wysiwyg": {
+ "body": ""
+ },
+ "baseline-yard": {
+ "body": ""
+ },
+ "baseline-youtube-searched-for": {
+ "body": ""
+ },
+ "baseline-zoom-in": {
+ "body": ""
+ },
+ "baseline-zoom-in-map": {
+ "body": ""
+ },
+ "baseline-zoom-out": {
+ "body": ""
+ },
+ "baseline-zoom-out-map": {
+ "body": ""
+ },
+ "content-cut": {
+ "body": "",
+ "hidden": true
+ },
+ "outline-10k": {
+ "body": ""
+ },
+ "outline-10mp": {
+ "body": ""
+ },
+ "outline-11mp": {
+ "body": ""
+ },
+ "outline-123": {
+ "body": ""
+ },
+ "outline-12mp": {
+ "body": ""
+ },
+ "outline-13mp": {
+ "body": ""
+ },
+ "outline-14mp": {
+ "body": ""
+ },
+ "outline-15mp": {
+ "body": ""
+ },
+ "outline-16mp": {
+ "body": ""
+ },
+ "outline-17mp": {
+ "body": ""
+ },
+ "outline-18-up-rating": {
+ "body": ""
+ },
+ "outline-18mp": {
+ "body": ""
+ },
+ "outline-19mp": {
+ "body": ""
+ },
+ "outline-1k": {
+ "body": ""
+ },
+ "outline-1k-plus": {
+ "body": ""
+ },
+ "outline-1x-mobiledata": {
+ "body": ""
+ },
+ "outline-20mp": {
+ "body": ""
+ },
+ "outline-21mp": {
+ "body": ""
+ },
+ "outline-22mp": {
+ "body": ""
+ },
+ "outline-23mp": {
+ "body": ""
+ },
+ "outline-24mp": {
+ "body": ""
+ },
+ "outline-2k": {
+ "body": ""
+ },
+ "outline-2k-plus": {
+ "body": ""
+ },
+ "outline-2mp": {
+ "body": ""
+ },
+ "outline-30fps": {
+ "body": ""
+ },
+ "outline-30fps-select": {
+ "body": ""
+ },
+ "outline-360": {
+ "body": ""
+ },
+ "outline-3d-rotation": {
+ "body": ""
+ },
+ "outline-3g-mobiledata": {
+ "body": ""
+ },
+ "outline-3k": {
+ "body": ""
+ },
+ "outline-3k-plus": {
+ "body": ""
+ },
+ "outline-3mp": {
+ "body": ""
+ },
+ "outline-3p": {
+ "body": ""
+ },
+ "outline-4g-mobiledata": {
+ "body": ""
+ },
+ "outline-4g-plus-mobiledata": {
+ "body": ""
+ },
+ "outline-4k": {
+ "body": ""
+ },
+ "outline-4k-plus": {
+ "body": ""
+ },
+ "outline-4mp": {
+ "body": ""
+ },
+ "outline-5g": {
+ "body": ""
+ },
+ "outline-5k": {
+ "body": ""
+ },
+ "outline-5k-plus": {
+ "body": ""
+ },
+ "outline-5mp": {
+ "body": ""
+ },
+ "outline-6-ft-apart": {
+ "body": ""
+ },
+ "outline-60fps": {
+ "body": ""
+ },
+ "outline-60fps-select": {
+ "body": ""
+ },
+ "outline-6k": {
+ "body": ""
+ },
+ "outline-6k-plus": {
+ "body": ""
+ },
+ "outline-6mp": {
+ "body": ""
+ },
+ "outline-7k": {
+ "body": ""
+ },
+ "outline-7k-plus": {
+ "body": ""
+ },
+ "outline-7mp": {
+ "body": ""
+ },
+ "outline-8k": {
+ "body": ""
+ },
+ "outline-8k-plus": {
+ "body": ""
+ },
+ "outline-8mp": {
+ "body": ""
+ },
+ "outline-9k": {
+ "body": ""
+ },
+ "outline-9k-plus": {
+ "body": ""
+ },
+ "outline-9mp": {
+ "body": ""
+ },
+ "outline-abc": {
+ "body": ""
+ },
+ "outline-ac-unit": {
+ "body": ""
+ },
+ "outline-access-alarm": {
+ "body": ""
+ },
+ "outline-access-alarms": {
+ "body": ""
+ },
+ "outline-access-time": {
+ "body": ""
+ },
+ "outline-access-time-filled": {
+ "body": ""
+ },
+ "outline-accessibility": {
+ "body": ""
+ },
+ "outline-accessibility-new": {
+ "body": ""
+ },
+ "outline-accessible": {
+ "body": ""
+ },
+ "outline-accessible-forward": {
+ "body": ""
+ },
+ "outline-account-balance": {
+ "body": ""
+ },
+ "outline-account-balance-wallet": {
+ "body": ""
+ },
+ "outline-account-box": {
+ "body": ""
+ },
+ "outline-account-circle": {
+ "body": ""
+ },
+ "outline-account-tree": {
+ "body": ""
+ },
+ "outline-ad-units": {
+ "body": ""
+ },
+ "outline-adb": {
+ "body": ""
+ },
+ "outline-add": {
+ "body": ""
+ },
+ "outline-add-a-photo": {
+ "body": ""
+ },
+ "outline-add-alarm": {
+ "body": ""
+ },
+ "outline-add-alert": {
+ "body": ""
+ },
+ "outline-add-box": {
+ "body": ""
+ },
+ "outline-add-business": {
+ "body": ""
+ },
+ "outline-add-card": {
+ "body": ""
+ },
+ "outline-add-chart": {
+ "body": ""
+ },
+ "outline-add-circle": {
+ "body": ""
+ },
+ "outline-add-circle-outline": {
+ "body": ""
+ },
+ "outline-add-comment": {
+ "body": ""
+ },
+ "outline-add-home": {
+ "body": ""
+ },
+ "outline-add-home-work": {
+ "body": ""
+ },
+ "outline-add-ic-call": {
+ "body": ""
+ },
+ "outline-add-link": {
+ "body": ""
+ },
+ "outline-add-location": {
+ "body": ""
+ },
+ "outline-add-location-alt": {
+ "body": ""
+ },
+ "outline-add-moderator": {
+ "body": ""
+ },
+ "outline-add-photo-alternate": {
+ "body": ""
+ },
+ "outline-add-reaction": {
+ "body": ""
+ },
+ "outline-add-road": {
+ "body": ""
+ },
+ "outline-add-shopping-cart": {
+ "body": ""
+ },
+ "outline-add-task": {
+ "body": ""
+ },
+ "outline-add-to-drive": {
+ "body": ""
+ },
+ "outline-add-to-home-screen": {
+ "body": ""
+ },
+ "outline-add-to-photos": {
+ "body": ""
+ },
+ "outline-add-to-queue": {
+ "body": ""
+ },
+ "outline-addchart": {
+ "body": ""
+ },
+ "outline-adf-scanner": {
+ "body": ""
+ },
+ "outline-adjust": {
+ "body": ""
+ },
+ "outline-admin-panel-settings": {
+ "body": ""
+ },
+ "outline-adobe": {
+ "body": ""
+ },
+ "outline-ads-click": {
+ "body": ""
+ },
+ "outline-agriculture": {
+ "body": ""
+ },
+ "outline-air": {
+ "body": ""
+ },
+ "outline-airline-seat-flat": {
+ "body": ""
+ },
+ "outline-airline-seat-flat-angled": {
+ "body": ""
+ },
+ "outline-airline-seat-individual-suite": {
+ "body": ""
+ },
+ "outline-airline-seat-legroom-extra": {
+ "body": ""
+ },
+ "outline-airline-seat-legroom-normal": {
+ "body": ""
+ },
+ "outline-airline-seat-legroom-reduced": {
+ "body": ""
+ },
+ "outline-airline-seat-recline-extra": {
+ "body": ""
+ },
+ "outline-airline-seat-recline-normal": {
+ "body": ""
+ },
+ "outline-airline-stops": {
+ "body": ""
+ },
+ "outline-airlines": {
+ "body": ""
+ },
+ "outline-airplane-ticket": {
+ "body": ""
+ },
+ "outline-airplanemode-active": {
+ "body": ""
+ },
+ "outline-airplanemode-inactive": {
+ "body": ""
+ },
+ "outline-airplay": {
+ "body": ""
+ },
+ "outline-airport-shuttle": {
+ "body": ""
+ },
+ "outline-alarm": {
+ "body": ""
+ },
+ "outline-alarm-add": {
+ "body": ""
+ },
+ "outline-alarm-off": {
+ "body": ""
+ },
+ "outline-alarm-on": {
+ "body": ""
+ },
+ "outline-album": {
+ "body": ""
+ },
+ "outline-align-horizontal-center": {
+ "body": ""
+ },
+ "outline-align-horizontal-left": {
+ "body": ""
+ },
+ "outline-align-horizontal-right": {
+ "body": ""
+ },
+ "outline-align-vertical-bottom": {
+ "body": ""
+ },
+ "outline-align-vertical-center": {
+ "body": ""
+ },
+ "outline-align-vertical-top": {
+ "body": ""
+ },
+ "outline-all-inbox": {
+ "body": ""
+ },
+ "outline-all-inclusive": {
+ "body": ""
+ },
+ "outline-all-out": {
+ "body": ""
+ },
+ "outline-alt-route": {
+ "body": ""
+ },
+ "outline-alternate-email": {
+ "body": ""
+ },
+ "outline-amp-stories": {
+ "body": ""
+ },
+ "outline-analytics": {
+ "body": ""
+ },
+ "outline-anchor": {
+ "body": ""
+ },
+ "outline-android": {
+ "body": ""
+ },
+ "outline-animation": {
+ "body": ""
+ },
+ "outline-announcement": {
+ "body": ""
+ },
+ "outline-aod": {
+ "body": ""
+ },
+ "outline-apartment": {
+ "body": ""
+ },
+ "outline-api": {
+ "body": ""
+ },
+ "outline-app-blocking": {
+ "body": ""
+ },
+ "outline-app-registration": {
+ "body": ""
+ },
+ "outline-app-settings-alt": {
+ "body": ""
+ },
+ "outline-app-shortcut": {
+ "body": ""
+ },
+ "outline-apple": {
+ "body": ""
+ },
+ "outline-approval": {
+ "body": ""
+ },
+ "outline-apps": {
+ "body": ""
+ },
+ "outline-apps-outage": {
+ "body": ""
+ },
+ "outline-architecture": {
+ "body": ""
+ },
+ "outline-archive": {
+ "body": ""
+ },
+ "outline-area-chart": {
+ "body": ""
+ },
+ "outline-arrow-back": {
+ "body": ""
+ },
+ "outline-arrow-back-ios": {
+ "body": ""
+ },
+ "outline-arrow-back-ios-new": {
+ "body": ""
+ },
+ "outline-arrow-circle-down": {
+ "body": ""
+ },
+ "outline-arrow-circle-left": {
+ "body": ""
+ },
+ "outline-arrow-circle-right": {
+ "body": ""
+ },
+ "outline-arrow-circle-up": {
+ "body": ""
+ },
+ "outline-arrow-downward": {
+ "body": ""
+ },
+ "outline-arrow-drop-down": {
+ "body": ""
+ },
+ "outline-arrow-drop-down-circle": {
+ "body": ""
+ },
+ "outline-arrow-drop-up": {
+ "body": ""
+ },
+ "outline-arrow-forward": {
+ "body": ""
+ },
+ "outline-arrow-forward-ios": {
+ "body": ""
+ },
+ "outline-arrow-left": {
+ "body": ""
+ },
+ "outline-arrow-outward": {
+ "body": ""
+ },
+ "outline-arrow-right": {
+ "body": ""
+ },
+ "outline-arrow-right-alt": {
+ "body": ""
+ },
+ "outline-arrow-upward": {
+ "body": ""
+ },
+ "outline-art-track": {
+ "body": ""
+ },
+ "outline-article": {
+ "body": ""
+ },
+ "outline-aspect-ratio": {
+ "body": ""
+ },
+ "outline-assessment": {
+ "body": ""
+ },
+ "outline-assignment": {
+ "body": ""
+ },
+ "outline-assignment-ind": {
+ "body": ""
+ },
+ "outline-assignment-late": {
+ "body": ""
+ },
+ "outline-assignment-return": {
+ "body": ""
+ },
+ "outline-assignment-returned": {
+ "body": ""
+ },
+ "outline-assignment-turned-in": {
+ "body": ""
+ },
+ "outline-assist-walker": {
+ "body": ""
+ },
+ "outline-assistant": {
+ "body": ""
+ },
+ "outline-assistant-direction": {
+ "body": ""
+ },
+ "outline-assistant-photo": {
+ "body": ""
+ },
+ "outline-assured-workload": {
+ "body": ""
+ },
+ "outline-atm": {
+ "body": ""
+ },
+ "outline-attach-email": {
+ "body": ""
+ },
+ "outline-attach-file": {
+ "body": ""
+ },
+ "outline-attach-money": {
+ "body": ""
+ },
+ "outline-attachment": {
+ "body": ""
+ },
+ "outline-attractions": {
+ "body": ""
+ },
+ "outline-attribution": {
+ "body": ""
+ },
+ "outline-audio-file": {
+ "body": ""
+ },
+ "outline-audiotrack": {
+ "body": ""
+ },
+ "outline-auto-awesome": {
+ "body": ""
+ },
+ "outline-auto-awesome-mosaic": {
+ "body": ""
+ },
+ "outline-auto-awesome-motion": {
+ "body": ""
+ },
+ "outline-auto-delete": {
+ "body": ""
+ },
+ "outline-auto-fix-high": {
+ "body": ""
+ },
+ "outline-auto-fix-normal": {
+ "body": ""
+ },
+ "outline-auto-fix-off": {
+ "body": ""
+ },
+ "outline-auto-graph": {
+ "body": ""
+ },
+ "outline-auto-mode": {
+ "body": ""
+ },
+ "outline-auto-stories": {
+ "body": ""
+ },
+ "outline-autofps-select": {
+ "body": ""
+ },
+ "outline-autorenew": {
+ "body": ""
+ },
+ "outline-av-timer": {
+ "body": ""
+ },
+ "outline-baby-changing-station": {
+ "body": ""
+ },
+ "outline-back-hand": {
+ "body": ""
+ },
+ "outline-backpack": {
+ "body": ""
+ },
+ "outline-backspace": {
+ "body": ""
+ },
+ "outline-backup": {
+ "body": ""
+ },
+ "outline-backup-table": {
+ "body": ""
+ },
+ "outline-badge": {
+ "body": ""
+ },
+ "outline-bakery-dining": {
+ "body": ""
+ },
+ "outline-balance": {
+ "body": ""
+ },
+ "outline-balcony": {
+ "body": ""
+ },
+ "outline-ballot": {
+ "body": ""
+ },
+ "outline-bar-chart": {
+ "body": ""
+ },
+ "outline-barcode": {
+ "body": ""
+ },
+ "outline-batch-prediction": {
+ "body": ""
+ },
+ "outline-bathroom": {
+ "body": ""
+ },
+ "outline-bathtub": {
+ "body": ""
+ },
+ "outline-battery-0-bar": {
+ "body": ""
+ },
+ "outline-battery-1-bar": {
+ "body": ""
+ },
+ "outline-battery-2-bar": {
+ "body": ""
+ },
+ "outline-battery-20": {
+ "body": ""
+ },
+ "outline-battery-3-bar": {
+ "body": ""
+ },
+ "outline-battery-30": {
+ "body": ""
+ },
+ "outline-battery-4-bar": {
+ "body": ""
+ },
+ "outline-battery-5-bar": {
+ "body": ""
+ },
+ "outline-battery-50": {
+ "body": ""
+ },
+ "outline-battery-6-bar": {
+ "body": ""
+ },
+ "outline-battery-60": {
+ "body": ""
+ },
+ "outline-battery-80": {
+ "body": ""
+ },
+ "outline-battery-90": {
+ "body": ""
+ },
+ "outline-battery-alert": {
+ "body": ""
+ },
+ "outline-battery-charging-20": {
+ "body": ""
+ },
+ "outline-battery-charging-30": {
+ "body": ""
+ },
+ "outline-battery-charging-50": {
+ "body": ""
+ },
+ "outline-battery-charging-60": {
+ "body": ""
+ },
+ "outline-battery-charging-80": {
+ "body": ""
+ },
+ "outline-battery-charging-90": {
+ "body": ""
+ },
+ "outline-battery-charging-full": {
+ "body": ""
+ },
+ "outline-battery-full": {
+ "body": ""
+ },
+ "outline-battery-saver": {
+ "body": ""
+ },
+ "outline-battery-std": {
+ "body": ""
+ },
+ "outline-battery-unknown": {
+ "body": ""
+ },
+ "outline-beach-access": {
+ "body": ""
+ },
+ "outline-bed": {
+ "body": ""
+ },
+ "outline-bedroom-baby": {
+ "body": ""
+ },
+ "outline-bedroom-child": {
+ "body": ""
+ },
+ "outline-bedroom-parent": {
+ "body": ""
+ },
+ "outline-bedtime": {
+ "body": ""
+ },
+ "outline-bedtime-off": {
+ "body": ""
+ },
+ "outline-beenhere": {
+ "body": ""
+ },
+ "outline-bento": {
+ "body": ""
+ },
+ "outline-bike-scooter": {
+ "body": ""
+ },
+ "outline-biotech": {
+ "body": ""
+ },
+ "outline-blender": {
+ "body": ""
+ },
+ "outline-blind": {
+ "body": ""
+ },
+ "outline-blinds": {
+ "body": ""
+ },
+ "outline-blinds-closed": {
+ "body": ""
+ },
+ "outline-block": {
+ "body": ""
+ },
+ "outline-bloodtype": {
+ "body": ""
+ },
+ "outline-bluetooth": {
+ "body": ""
+ },
+ "outline-bluetooth-audio": {
+ "body": ""
+ },
+ "outline-bluetooth-connected": {
+ "body": ""
+ },
+ "outline-bluetooth-disabled": {
+ "body": ""
+ },
+ "outline-bluetooth-drive": {
+ "body": ""
+ },
+ "outline-bluetooth-searching": {
+ "body": ""
+ },
+ "outline-blur-circular": {
+ "body": ""
+ },
+ "outline-blur-linear": {
+ "body": ""
+ },
+ "outline-blur-off": {
+ "body": ""
+ },
+ "outline-blur-on": {
+ "body": ""
+ },
+ "outline-bolt": {
+ "body": ""
+ },
+ "outline-book": {
+ "body": ""
+ },
+ "outline-book-online": {
+ "body": ""
+ },
+ "outline-bookmark": {
+ "body": ""
+ },
+ "outline-bookmark-add": {
+ "body": ""
+ },
+ "outline-bookmark-added": {
+ "body": ""
+ },
+ "outline-bookmark-border": {
+ "body": ""
+ },
+ "outline-bookmark-remove": {
+ "body": ""
+ },
+ "outline-bookmarks": {
+ "body": ""
+ },
+ "outline-border-all": {
+ "body": ""
+ },
+ "outline-border-bottom": {
+ "body": ""
+ },
+ "outline-border-clear": {
+ "body": ""
+ },
+ "outline-border-color": {
+ "body": ""
+ },
+ "outline-border-horizontal": {
+ "body": ""
+ },
+ "outline-border-inner": {
+ "body": ""
+ },
+ "outline-border-left": {
+ "body": ""
+ },
+ "outline-border-outer": {
+ "body": ""
+ },
+ "outline-border-right": {
+ "body": ""
+ },
+ "outline-border-style": {
+ "body": ""
+ },
+ "outline-border-top": {
+ "body": ""
+ },
+ "outline-border-vertical": {
+ "body": ""
+ },
+ "outline-boy": {
+ "body": ""
+ },
+ "outline-branding-watermark": {
+ "body": ""
+ },
+ "outline-breakfast-dining": {
+ "body": ""
+ },
+ "outline-brightness-1": {
+ "body": ""
+ },
+ "outline-brightness-2": {
+ "body": ""
+ },
+ "outline-brightness-3": {
+ "body": ""
+ },
+ "outline-brightness-4": {
+ "body": ""
+ },
+ "outline-brightness-5": {
+ "body": ""
+ },
+ "outline-brightness-6": {
+ "body": ""
+ },
+ "outline-brightness-7": {
+ "body": ""
+ },
+ "outline-brightness-auto": {
+ "body": ""
+ },
+ "outline-brightness-high": {
+ "body": ""
+ },
+ "outline-brightness-low": {
+ "body": ""
+ },
+ "outline-brightness-medium": {
+ "body": ""
+ },
+ "outline-broadcast-on-home": {
+ "body": ""
+ },
+ "outline-broadcast-on-personal": {
+ "body": ""
+ },
+ "outline-broken-image": {
+ "body": ""
+ },
+ "outline-browse-gallery": {
+ "body": ""
+ },
+ "outline-browser-not-supported": {
+ "body": ""
+ },
+ "outline-browser-updated": {
+ "body": ""
+ },
+ "outline-brunch-dining": {
+ "body": ""
+ },
+ "outline-brush": {
+ "body": ""
+ },
+ "outline-bubble-chart": {
+ "body": ""
+ },
+ "outline-bug-report": {
+ "body": ""
+ },
+ "outline-build": {
+ "body": ""
+ },
+ "outline-build-circle": {
+ "body": ""
+ },
+ "outline-bungalow": {
+ "body": ""
+ },
+ "outline-burst-mode": {
+ "body": ""
+ },
+ "outline-bus-alert": {
+ "body": ""
+ },
+ "outline-business": {
+ "body": ""
+ },
+ "outline-business-center": {
+ "body": ""
+ },
+ "outline-cabin": {
+ "body": ""
+ },
+ "outline-cable": {
+ "body": ""
+ },
+ "outline-cached": {
+ "body": ""
+ },
+ "outline-cake": {
+ "body": ""
+ },
+ "outline-calculate": {
+ "body": ""
+ },
+ "outline-calendar-month": {
+ "body": ""
+ },
+ "outline-calendar-today": {
+ "body": ""
+ },
+ "outline-calendar-view-day": {
+ "body": ""
+ },
+ "outline-calendar-view-month": {
+ "body": ""
+ },
+ "outline-calendar-view-week": {
+ "body": ""
+ },
+ "outline-call": {
+ "body": ""
+ },
+ "outline-call-end": {
+ "body": ""
+ },
+ "outline-call-made": {
+ "body": ""
+ },
+ "outline-call-merge": {
+ "body": ""
+ },
+ "outline-call-missed": {
+ "body": ""
+ },
+ "outline-call-missed-outgoing": {
+ "body": ""
+ },
+ "outline-call-received": {
+ "body": ""
+ },
+ "outline-call-split": {
+ "body": ""
+ },
+ "outline-call-to-action": {
+ "body": ""
+ },
+ "outline-camera": {
+ "body": ""
+ },
+ "outline-camera-alt": {
+ "body": ""
+ },
+ "outline-camera-enhance": {
+ "body": ""
+ },
+ "outline-camera-front": {
+ "body": ""
+ },
+ "outline-camera-indoor": {
+ "body": ""
+ },
+ "outline-camera-outdoor": {
+ "body": ""
+ },
+ "outline-camera-rear": {
+ "body": ""
+ },
+ "outline-camera-roll": {
+ "body": ""
+ },
+ "outline-cameraswitch": {
+ "body": ""
+ },
+ "outline-campaign": {
+ "body": ""
+ },
+ "outline-cancel": {
+ "body": ""
+ },
+ "outline-cancel-presentation": {
+ "body": ""
+ },
+ "outline-cancel-schedule-send": {
+ "body": ""
+ },
+ "outline-candlestick-chart": {
+ "body": ""
+ },
+ "outline-car-crash": {
+ "body": ""
+ },
+ "outline-car-rental": {
+ "body": ""
+ },
+ "outline-car-repair": {
+ "body": ""
+ },
+ "outline-card-giftcard": {
+ "body": ""
+ },
+ "outline-card-membership": {
+ "body": ""
+ },
+ "outline-card-travel": {
+ "body": ""
+ },
+ "outline-carpenter": {
+ "body": ""
+ },
+ "outline-cases": {
+ "body": ""
+ },
+ "outline-casino": {
+ "body": ""
+ },
+ "outline-cast": {
+ "body": ""
+ },
+ "outline-cast-connected": {
+ "body": ""
+ },
+ "outline-cast-for-education": {
+ "body": ""
+ },
+ "outline-castle": {
+ "body": ""
+ },
+ "outline-catching-pokemon": {
+ "body": ""
+ },
+ "outline-category": {
+ "body": ""
+ },
+ "outline-celebration": {
+ "body": ""
+ },
+ "outline-cell-tower": {
+ "body": ""
+ },
+ "outline-cell-wifi": {
+ "body": ""
+ },
+ "outline-center-focus-strong": {
+ "body": ""
+ },
+ "outline-center-focus-weak": {
+ "body": ""
+ },
+ "outline-chair": {
+ "body": ""
+ },
+ "outline-chair-alt": {
+ "body": ""
+ },
+ "outline-chalet": {
+ "body": ""
+ },
+ "outline-change-circle": {
+ "body": ""
+ },
+ "outline-change-history": {
+ "body": ""
+ },
+ "outline-charging-station": {
+ "body": ""
+ },
+ "outline-chat": {
+ "body": ""
+ },
+ "outline-chat-bubble": {
+ "body": ""
+ },
+ "outline-chat-bubble-outline": {
+ "body": ""
+ },
+ "outline-check": {
+ "body": ""
+ },
+ "outline-check-box": {
+ "body": ""
+ },
+ "outline-check-box-outline-blank": {
+ "body": ""
+ },
+ "outline-check-circle": {
+ "body": ""
+ },
+ "outline-check-circle-outline": {
+ "body": ""
+ },
+ "outline-checklist": {
+ "body": ""
+ },
+ "outline-checklist-rtl": {
+ "body": ""
+ },
+ "outline-checkroom": {
+ "body": ""
+ },
+ "outline-chevron-left": {
+ "body": ""
+ },
+ "outline-chevron-right": {
+ "body": ""
+ },
+ "outline-child-care": {
+ "body": ""
+ },
+ "outline-child-friendly": {
+ "body": ""
+ },
+ "outline-chrome-reader-mode": {
+ "body": ""
+ },
+ "outline-church": {
+ "body": ""
+ },
+ "outline-circle": {
+ "body": ""
+ },
+ "outline-circle-notifications": {
+ "body": ""
+ },
+ "outline-class": {
+ "body": ""
+ },
+ "outline-clean-hands": {
+ "body": ""
+ },
+ "outline-cleaning-services": {
+ "body": ""
+ },
+ "outline-clear": {
+ "body": ""
+ },
+ "outline-clear-all": {
+ "body": ""
+ },
+ "outline-close": {
+ "body": ""
+ },
+ "outline-close-fullscreen": {
+ "body": ""
+ },
+ "outline-closed-caption": {
+ "body": ""
+ },
+ "outline-closed-caption-disabled": {
+ "body": ""
+ },
+ "outline-closed-caption-off": {
+ "body": ""
+ },
+ "outline-cloud": {
+ "body": ""
+ },
+ "outline-cloud-circle": {
+ "body": ""
+ },
+ "outline-cloud-done": {
+ "body": ""
+ },
+ "outline-cloud-download": {
+ "body": ""
+ },
+ "outline-cloud-off": {
+ "body": ""
+ },
+ "outline-cloud-queue": {
+ "body": ""
+ },
+ "outline-cloud-sync": {
+ "body": ""
+ },
+ "outline-cloud-upload": {
+ "body": ""
+ },
+ "outline-co-present": {
+ "body": ""
+ },
+ "outline-co2": {
+ "body": ""
+ },
+ "outline-code": {
+ "body": ""
+ },
+ "outline-code-off": {
+ "body": ""
+ },
+ "outline-coffee": {
+ "body": ""
+ },
+ "outline-coffee-maker": {
+ "body": ""
+ },
+ "outline-collections": {
+ "body": ""
+ },
+ "outline-collections-bookmark": {
+ "body": ""
+ },
+ "outline-color-lens": {
+ "body": ""
+ },
+ "outline-colorize": {
+ "body": ""
+ },
+ "outline-comment": {
+ "body": ""
+ },
+ "outline-comment-bank": {
+ "body": ""
+ },
+ "outline-comments-disabled": {
+ "body": ""
+ },
+ "outline-commit": {
+ "body": ""
+ },
+ "outline-commute": {
+ "body": ""
+ },
+ "outline-compare": {
+ "body": ""
+ },
+ "outline-compare-arrows": {
+ "body": ""
+ },
+ "outline-compass-calibration": {
+ "body": ""
+ },
+ "outline-compost": {
+ "body": ""
+ },
+ "outline-compress": {
+ "body": ""
+ },
+ "outline-computer": {
+ "body": ""
+ },
+ "outline-confirmation-number": {
+ "body": ""
+ },
+ "outline-connect-without-contact": {
+ "body": ""
+ },
+ "outline-connected-tv": {
+ "body": ""
+ },
+ "outline-connecting-airports": {
+ "body": ""
+ },
+ "outline-construction": {
+ "body": ""
+ },
+ "outline-contact-emergency": {
+ "body": ""
+ },
+ "outline-contact-mail": {
+ "body": ""
+ },
+ "outline-contact-page": {
+ "body": ""
+ },
+ "outline-contact-phone": {
+ "body": ""
+ },
+ "outline-contact-support": {
+ "body": ""
+ },
+ "outline-contactless": {
+ "body": ""
+ },
+ "outline-contacts": {
+ "body": ""
+ },
+ "outline-content-copy": {
+ "body": ""
+ },
+ "outline-content-cut": {
+ "body": ""
+ },
+ "outline-content-paste": {
+ "body": ""
+ },
+ "outline-content-paste-go": {
+ "body": ""
+ },
+ "outline-content-paste-off": {
+ "body": ""
+ },
+ "outline-content-paste-search": {
+ "body": ""
+ },
+ "outline-contrast": {
+ "body": ""
+ },
+ "outline-control-camera": {
+ "body": ""
+ },
+ "outline-control-point": {
+ "body": ""
+ },
+ "outline-control-point-duplicate": {
+ "body": ""
+ },
+ "outline-cookie": {
+ "body": ""
+ },
+ "outline-copy-all": {
+ "body": ""
+ },
+ "outline-copyright": {
+ "body": ""
+ },
+ "outline-coronavirus": {
+ "body": ""
+ },
+ "outline-corporate-fare": {
+ "body": ""
+ },
+ "outline-cottage": {
+ "body": ""
+ },
+ "outline-countertops": {
+ "body": ""
+ },
+ "outline-create": {
+ "body": ""
+ },
+ "outline-create-new-folder": {
+ "body": ""
+ },
+ "outline-credit-card": {
+ "body": ""
+ },
+ "outline-credit-card-off": {
+ "body": ""
+ },
+ "outline-credit-score": {
+ "body": ""
+ },
+ "outline-crib": {
+ "body": ""
+ },
+ "outline-crisis-alert": {
+ "body": ""
+ },
+ "outline-crop": {
+ "body": ""
+ },
+ "outline-crop-16-9": {
+ "body": ""
+ },
+ "outline-crop-3-2": {
+ "body": ""
+ },
+ "outline-crop-5-4": {
+ "body": ""
+ },
+ "outline-crop-7-5": {
+ "body": ""
+ },
+ "outline-crop-din": {
+ "body": ""
+ },
+ "outline-crop-free": {
+ "body": ""
+ },
+ "outline-crop-landscape": {
+ "body": ""
+ },
+ "outline-crop-original": {
+ "body": ""
+ },
+ "outline-crop-portrait": {
+ "body": ""
+ },
+ "outline-crop-rotate": {
+ "body": ""
+ },
+ "outline-crop-square": {
+ "body": ""
+ },
+ "outline-cruelty-free": {
+ "body": ""
+ },
+ "outline-css": {
+ "body": ""
+ },
+ "outline-currency-bitcoin": {
+ "body": ""
+ },
+ "outline-currency-exchange": {
+ "body": ""
+ },
+ "outline-currency-franc": {
+ "body": ""
+ },
+ "outline-currency-lira": {
+ "body": ""
+ },
+ "outline-currency-pound": {
+ "body": ""
+ },
+ "outline-currency-ruble": {
+ "body": ""
+ },
+ "outline-currency-rupee": {
+ "body": ""
+ },
+ "outline-currency-yen": {
+ "body": ""
+ },
+ "outline-currency-yuan": {
+ "body": ""
+ },
+ "outline-curtains": {
+ "body": ""
+ },
+ "outline-curtains-closed": {
+ "body": ""
+ },
+ "outline-cyclone": {
+ "body": ""
+ },
+ "outline-dangerous": {
+ "body": ""
+ },
+ "outline-dark-mode": {
+ "body": ""
+ },
+ "outline-dashboard": {
+ "body": ""
+ },
+ "outline-dashboard-customize": {
+ "body": ""
+ },
+ "outline-data-array": {
+ "body": ""
+ },
+ "outline-data-exploration": {
+ "body": ""
+ },
+ "outline-data-object": {
+ "body": ""
+ },
+ "outline-data-saver-off": {
+ "body": ""
+ },
+ "outline-data-saver-on": {
+ "body": ""
+ },
+ "outline-data-thresholding": {
+ "body": ""
+ },
+ "outline-data-usage": {
+ "body": ""
+ },
+ "outline-dataset": {
+ "body": ""
+ },
+ "outline-dataset-linked": {
+ "body": ""
+ },
+ "outline-date-range": {
+ "body": ""
+ },
+ "outline-deblur": {
+ "body": ""
+ },
+ "outline-deck": {
+ "body": ""
+ },
+ "outline-dehaze": {
+ "body": ""
+ },
+ "outline-delete": {
+ "body": ""
+ },
+ "outline-delete-forever": {
+ "body": ""
+ },
+ "outline-delete-outline": {
+ "body": ""
+ },
+ "outline-delete-sweep": {
+ "body": ""
+ },
+ "outline-delivery-dining": {
+ "body": ""
+ },
+ "outline-density-large": {
+ "body": ""
+ },
+ "outline-density-medium": {
+ "body": ""
+ },
+ "outline-density-small": {
+ "body": ""
+ },
+ "outline-departure-board": {
+ "body": ""
+ },
+ "outline-description": {
+ "body": ""
+ },
+ "outline-deselect": {
+ "body": ""
+ },
+ "outline-design-services": {
+ "body": ""
+ },
+ "outline-desk": {
+ "body": ""
+ },
+ "outline-desktop-access-disabled": {
+ "body": ""
+ },
+ "outline-desktop-mac": {
+ "body": ""
+ },
+ "outline-desktop-windows": {
+ "body": ""
+ },
+ "outline-details": {
+ "body": ""
+ },
+ "outline-developer-board": {
+ "body": ""
+ },
+ "outline-developer-board-off": {
+ "body": ""
+ },
+ "outline-developer-mode": {
+ "body": ""
+ },
+ "outline-device-hub": {
+ "body": ""
+ },
+ "outline-device-thermostat": {
+ "body": ""
+ },
+ "outline-device-unknown": {
+ "body": ""
+ },
+ "outline-devices": {
+ "body": ""
+ },
+ "outline-devices-fold": {
+ "body": ""
+ },
+ "outline-devices-other": {
+ "body": ""
+ },
+ "outline-dialer-sip": {
+ "body": ""
+ },
+ "outline-dialpad": {
+ "body": ""
+ },
+ "outline-diamond": {
+ "body": ""
+ },
+ "outline-difference": {
+ "body": ""
+ },
+ "outline-dining": {
+ "body": ""
+ },
+ "outline-dinner-dining": {
+ "body": ""
+ },
+ "outline-directions": {
+ "body": ""
+ },
+ "outline-directions-bike": {
+ "body": ""
+ },
+ "outline-directions-boat": {
+ "body": ""
+ },
+ "outline-directions-boat-filled": {
+ "body": ""
+ },
+ "outline-directions-bus": {
+ "body": ""
+ },
+ "outline-directions-bus-filled": {
+ "body": ""
+ },
+ "outline-directions-car": {
+ "body": ""
+ },
+ "outline-directions-car-filled": {
+ "body": ""
+ },
+ "outline-directions-off": {
+ "body": ""
+ },
+ "outline-directions-railway": {
+ "body": ""
+ },
+ "outline-directions-railway-filled": {
+ "body": ""
+ },
+ "outline-directions-run": {
+ "body": ""
+ },
+ "outline-directions-subway": {
+ "body": ""
+ },
+ "outline-directions-subway-filled": {
+ "body": ""
+ },
+ "outline-directions-transit": {
+ "body": ""
+ },
+ "outline-directions-transit-filled": {
+ "body": ""
+ },
+ "outline-directions-walk": {
+ "body": ""
+ },
+ "outline-dirty-lens": {
+ "body": ""
+ },
+ "outline-disabled-by-default": {
+ "body": ""
+ },
+ "outline-disabled-visible": {
+ "body": ""
+ },
+ "outline-disc-full": {
+ "body": ""
+ },
+ "outline-discord": {
+ "body": ""
+ },
+ "outline-discount": {
+ "body": ""
+ },
+ "outline-display-settings": {
+ "body": ""
+ },
+ "outline-diversity-1": {
+ "body": ""
+ },
+ "outline-diversity-2": {
+ "body": ""
+ },
+ "outline-diversity-3": {
+ "body": ""
+ },
+ "outline-divide": {
+ "body": ""
+ },
+ "outline-dns": {
+ "body": ""
+ },
+ "outline-do-disturb": {
+ "body": ""
+ },
+ "outline-do-disturb-alt": {
+ "body": ""
+ },
+ "outline-do-disturb-off": {
+ "body": ""
+ },
+ "outline-do-disturb-on": {
+ "body": ""
+ },
+ "outline-do-not-disturb": {
+ "body": ""
+ },
+ "outline-do-not-disturb-alt": {
+ "body": ""
+ },
+ "outline-do-not-disturb-off": {
+ "body": ""
+ },
+ "outline-do-not-disturb-on": {
+ "body": ""
+ },
+ "outline-do-not-disturb-on-total-silence": {
+ "body": ""
+ },
+ "outline-do-not-step": {
+ "body": ""
+ },
+ "outline-do-not-touch": {
+ "body": ""
+ },
+ "outline-dock": {
+ "body": ""
+ },
+ "outline-document-scanner": {
+ "body": ""
+ },
+ "outline-domain": {
+ "body": ""
+ },
+ "outline-domain-add": {
+ "body": ""
+ },
+ "outline-domain-disabled": {
+ "body": ""
+ },
+ "outline-domain-verification": {
+ "body": ""
+ },
+ "outline-done": {
+ "body": ""
+ },
+ "outline-done-all": {
+ "body": ""
+ },
+ "outline-done-outline": {
+ "body": ""
+ },
+ "outline-donut-large": {
+ "body": ""
+ },
+ "outline-donut-small": {
+ "body": ""
+ },
+ "outline-door-back": {
+ "body": ""
+ },
+ "outline-door-front": {
+ "body": ""
+ },
+ "outline-door-sliding": {
+ "body": ""
+ },
+ "outline-doorbell": {
+ "body": ""
+ },
+ "outline-double-arrow": {
+ "body": ""
+ },
+ "outline-downhill-skiing": {
+ "body": ""
+ },
+ "outline-download": {
+ "body": ""
+ },
+ "outline-download-done": {
+ "body": ""
+ },
+ "outline-download-for-offline": {
+ "body": ""
+ },
+ "outline-downloading": {
+ "body": ""
+ },
+ "outline-drafts": {
+ "body": ""
+ },
+ "outline-drag-handle": {
+ "body": ""
+ },
+ "outline-drag-indicator": {
+ "body": ""
+ },
+ "outline-draw": {
+ "body": ""
+ },
+ "outline-drive-eta": {
+ "body": ""
+ },
+ "outline-drive-file-move": {
+ "body": ""
+ },
+ "outline-drive-file-move-rtl": {
+ "body": ""
+ },
+ "outline-drive-file-rename-outline": {
+ "body": ""
+ },
+ "outline-drive-folder-upload": {
+ "body": ""
+ },
+ "outline-dry": {
+ "body": ""
+ },
+ "outline-dry-cleaning": {
+ "body": ""
+ },
+ "outline-duo": {
+ "body": ""
+ },
+ "outline-dvr": {
+ "body": ""
+ },
+ "outline-dynamic-feed": {
+ "body": ""
+ },
+ "outline-dynamic-form": {
+ "body": ""
+ },
+ "outline-e-mobiledata": {
+ "body": ""
+ },
+ "outline-earbuds": {
+ "body": ""
+ },
+ "outline-earbuds-battery": {
+ "body": ""
+ },
+ "outline-east": {
+ "body": ""
+ },
+ "outline-eco": {
+ "body": ""
+ },
+ "outline-edgesensor-high": {
+ "body": ""
+ },
+ "outline-edgesensor-low": {
+ "body": ""
+ },
+ "outline-edit": {
+ "body": ""
+ },
+ "outline-edit-attributes": {
+ "body": ""
+ },
+ "outline-edit-calendar": {
+ "body": ""
+ },
+ "outline-edit-location": {
+ "body": ""
+ },
+ "outline-edit-location-alt": {
+ "body": ""
+ },
+ "outline-edit-note": {
+ "body": ""
+ },
+ "outline-edit-notifications": {
+ "body": ""
+ },
+ "outline-edit-off": {
+ "body": ""
+ },
+ "outline-edit-road": {
+ "body": ""
+ },
+ "outline-egg": {
+ "body": ""
+ },
+ "outline-egg-alt": {
+ "body": ""
+ },
+ "outline-eject": {
+ "body": ""
+ },
+ "outline-elderly": {
+ "body": ""
+ },
+ "outline-elderly-woman": {
+ "body": ""
+ },
+ "outline-electric-bike": {
+ "body": ""
+ },
+ "outline-electric-bolt": {
+ "body": ""
+ },
+ "outline-electric-car": {
+ "body": ""
+ },
+ "outline-electric-meter": {
+ "body": ""
+ },
+ "outline-electric-moped": {
+ "body": ""
+ },
+ "outline-electric-rickshaw": {
+ "body": ""
+ },
+ "outline-electric-scooter": {
+ "body": ""
+ },
+ "outline-electrical-services": {
+ "body": ""
+ },
+ "outline-elevator": {
+ "body": ""
+ },
+ "outline-email": {
+ "body": ""
+ },
+ "outline-emergency": {
+ "body": ""
+ },
+ "outline-emergency-recording": {
+ "body": ""
+ },
+ "outline-emergency-share": {
+ "body": ""
+ },
+ "outline-emoji-emotions": {
+ "body": ""
+ },
+ "outline-emoji-events": {
+ "body": ""
+ },
+ "outline-emoji-flags": {
+ "body": ""
+ },
+ "outline-emoji-food-beverage": {
+ "body": ""
+ },
+ "outline-emoji-nature": {
+ "body": ""
+ },
+ "outline-emoji-objects": {
+ "body": ""
+ },
+ "outline-emoji-people": {
+ "body": ""
+ },
+ "outline-emoji-symbols": {
+ "body": ""
+ },
+ "outline-emoji-transportation": {
+ "body": ""
+ },
+ "outline-energy-savings-leaf": {
+ "body": ""
+ },
+ "outline-engineering": {
+ "body": ""
+ },
+ "outline-enhanced-encryption": {
+ "body": ""
+ },
+ "outline-equalizer": {
+ "body": ""
+ },
+ "outline-equals": {
+ "body": ""
+ },
+ "outline-error": {
+ "body": ""
+ },
+ "outline-error-outline": {
+ "body": ""
+ },
+ "outline-escalator": {
+ "body": ""
+ },
+ "outline-escalator-warning": {
+ "body": ""
+ },
+ "outline-euro": {
+ "body": ""
+ },
+ "outline-euro-symbol": {
+ "body": ""
+ },
+ "outline-ev-station": {
+ "body": ""
+ },
+ "outline-event": {
+ "body": ""
+ },
+ "outline-event-available": {
+ "body": ""
+ },
+ "outline-event-busy": {
+ "body": ""
+ },
+ "outline-event-note": {
+ "body": ""
+ },
+ "outline-event-repeat": {
+ "body": ""
+ },
+ "outline-event-seat": {
+ "body": ""
+ },
+ "outline-exit-to-app": {
+ "body": ""
+ },
+ "outline-expand": {
+ "body": ""
+ },
+ "outline-expand-circle-down": {
+ "body": ""
+ },
+ "outline-expand-less": {
+ "body": ""
+ },
+ "outline-expand-more": {
+ "body": ""
+ },
+ "outline-explicit": {
+ "body": ""
+ },
+ "outline-explore": {
+ "body": ""
+ },
+ "outline-explore-off": {
+ "body": ""
+ },
+ "outline-exposure": {
+ "body": ""
+ },
+ "outline-exposure-neg-1": {
+ "body": ""
+ },
+ "outline-exposure-neg-2": {
+ "body": ""
+ },
+ "outline-exposure-plus-1": {
+ "body": ""
+ },
+ "outline-exposure-plus-2": {
+ "body": ""
+ },
+ "outline-exposure-zero": {
+ "body": ""
+ },
+ "outline-extension": {
+ "body": ""
+ },
+ "outline-extension-off": {
+ "body": ""
+ },
+ "outline-face": {
+ "body": ""
+ },
+ "outline-face-2": {
+ "body": ""
+ },
+ "outline-face-3": {
+ "body": ""
+ },
+ "outline-face-4": {
+ "body": "