From d91f3e29ccefec04f82afa02563006e5579fe36f Mon Sep 17 00:00:00 2001 From: Campbell He Date: Sun, 28 Jun 2026 16:02:49 +0800 Subject: [PATCH] fontawesome:0.6.2 update to support FontAwesome 7.3 --- packages/preview/fontawesome/0.6.2/LICENSE | 21 + packages/preview/fontawesome/0.6.2/README.md | 205 + .../fontawesome/0.6.2/lib-gen-func.typ | 5448 +++++++++++++++++ .../preview/fontawesome/0.6.2/lib-gen-map.typ | 5441 ++++++++++++++++ .../preview/fontawesome/0.6.2/lib-impl.typ | 90 + packages/preview/fontawesome/0.6.2/lib.typ | 79 + packages/preview/fontawesome/0.6.2/typst.toml | 8 + 7 files changed, 11292 insertions(+) create mode 100644 packages/preview/fontawesome/0.6.2/LICENSE create mode 100644 packages/preview/fontawesome/0.6.2/README.md create mode 100644 packages/preview/fontawesome/0.6.2/lib-gen-func.typ create mode 100644 packages/preview/fontawesome/0.6.2/lib-gen-map.typ create mode 100644 packages/preview/fontawesome/0.6.2/lib-impl.typ create mode 100644 packages/preview/fontawesome/0.6.2/lib.typ create mode 100644 packages/preview/fontawesome/0.6.2/typst.toml diff --git a/packages/preview/fontawesome/0.6.2/LICENSE b/packages/preview/fontawesome/0.6.2/LICENSE new file mode 100644 index 0000000000..fdb0416f4b --- /dev/null +++ b/packages/preview/fontawesome/0.6.2/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 duskmoon314 (Campbell He) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/preview/fontawesome/0.6.2/README.md b/packages/preview/fontawesome/0.6.2/README.md new file mode 100644 index 0000000000..b57340a7db --- /dev/null +++ b/packages/preview/fontawesome/0.6.2/README.md @@ -0,0 +1,205 @@ +# typst-fontawesome + +A Typst library for Font Awesome icons through the desktop fonts. + +- The library is based on the Font Awesome 7 desktop fonts (v7.3.0) +- The v6.7.2 is also included to provide some backward compatibility. See [v6 support](#using-font-awesome-v6) + +## Usage + +### Install the fonts + +You can download the fonts from the official website: https://fontawesome.com/download + +After downloading the zip file, you can install the fonts depending on your OS. + +#### Typst web app + +You can simply upload the `otf` files to the web app and use them with this package. + +#### Mac + +You can double click the `otf` files to install them. + +#### Windows + +You can right-click the `otf` files and select `Install`. + +#### Some notes + +This library is tested with the otf files of the Font Awesome Free set. TrueType fonts may not work as expected. (Though I am not sure whether Font Awesome provides TrueType fonts, some issue is reported with TrueType fonts.) + +### Import the library + +#### Using the typst packages + +You can install the library using the typst packages: + +`#import "@preview/fontawesome:0.6.2": *` + +#### Manually install + +Copy all files start with `lib` to your project and import the library: + +`#import "lib.typ": *` + +There are four files: + +- `lib.typ`: The main entrypoint of the library. +- `lib-impl.typ`: The implementation of `fa-icon`. +- `lib-gen-map.typ`: The generated icon maps. +- `lib-gen-func.typ`: The generated icon functions. + +I recommend renaming these files to avoid conflicts with other libraries. + +### Use the icons + +You can use the `fa-icon` function to create an icon with its name: + +`#fa-icon("chess-queen")` + +Or you can use the `fa-` prefix to create an icon with its name: + +`#fa-chess-queen()` (This is equivalent to `#fa-icon().with("chess-queen")`) + +You can also set `solid` to `true` to use the solid version of the icon: + +`#fa-icon("chess-queen", solid: true)` + +Some icons only have the solid version in the Free set, so you need to set `solid` to `true` to use them if you are using the Free set. +Otherwise, you may not get the expected glyph. + +#### Full list of icons + +You can find all icons on the [official website](https://fontawesome.com/search) + +#### Different sets + +By default, the library supports `Free`, `Brands`, `Pro`, `Duotone` and `Sharp` sets. +(See [Enable Pro sets](#enable-pro-sets) for enabling Pro sets.) + +But only `Free` and `Brands` are tested by me. +That is, three font files are used to test: + +- Font Awesome 7 Free (Also named as _Font Awesome 7 Free Regular_) +- Font Awesome 7 Free Solid +- Font Awesome 7 Brands + +Due to some limitations of typst (0.13.1), the regular and solid versions are treated as different fonts. +In this library, `solid` is used to switch between the regular and solid versions. + +To use other sets or specify one set, you can pass the `font` parameter to the inner `text` function: \ +`fa-icon("github", font: "Font Awesome 7 Pro Solid")` + +If you have Font Awesome Pro, please help me test the library with the Pro set. +Any feedback is appreciated. + +##### Enable Pro sets + +Typst 0.13.1 raise a warning when the font is not found. +To use the Pro set, `#fa-use-pro()` should be called before any `fa-*` functions. + +```typst +#fa-use-pro() // Enable Pro sets + +#fa-icon("chess-queen-piece") // Use icons from Pro sets +``` + +##### Using Font Awesome v6 + +Font Awesome v7 remaps some icons' unicode. For example: + +| Icon Name | v6 | v7 | +| :-----------: | :---: | :---: | +| user-alt | f406 | f007 | +| vector-square | f5cb | f5ef | + +We split all icons into multiple maps: + +- `fa-icon-map-common`: Icons with same unicode or only in one version +- `fa-icon-map-6`: Icons with different unicode, their v6 mapping +- `fa-icon-map-7`: Icons with different unicode, their v7 mapping + +By default, `fa-icon-map-common` and `fa-icon-map-7` is used, that means `fa-icon("user-alt")` will get v7 unicode and render. + +To change the version, `fa-version("6")` can be used. It changes the icon map and font list for `fa-icon`. + +We also provide some functions to use the v6 icons directly: + +```typst +#fa-user-alt-6() // Get the v6 unicode and render the icon +#fa-user-alt-7() // Get the v7 unicode and render the icon +#fa-user-alt() // The same as #fa-user-alt-7() +``` + +#### Customization + +The `fa-icon` function passes args to `text`, so you can customize the icon by passing parameters to it: + +`#fa-icon("chess-queen", fill: blue)` + +`#fa-chess-queen(size: 15pt)` + +##### Adjusting `top-edge` + +By default, Typst consider size of both normal text and icons to calculate the alignment. This may lead to unexpected behavior since icons usually have larger height (See [typst-fontawesome#24](https://github.com/duskmoon314/typst-fontawesome/issues/24)). + +To adjust the alignment, `top-edge` can be set to `baseline` in the `fa-icon` function: + +```typst +- text without icon +- text with icon #fa-icon("chess-queen") +- text with icon #fa-icon("chess-queen", top-edge: "baseline") +``` + +#### Stacking icons + +The `fa-stack` function can be used to create stacked icons: + +`#fa-stack(fa-icon-args: (solid: true), "square", ("chess-queen", (fill: white, size: 5.5pt)))` + +Declaration is `fa-stack(box-args: (:), grid-args: (:), fa-icon-args: (:), ..icons)` + +- The order of the icons is from the bottom to the top. +- `fa-icon-args` is used to set the default args for all icons. +- You can also control the internal `box` and `grid` by passing the `box-args` and `grid-args` to the `fa-stack` function. +- Currently, four types of icons are supported. The first three types leverage the `fa-icon` function, and the last type is just a content you want to put in the stack. + - `str`, e.g., `"square"` + - `array`, e.g., `("chess-queen", (fill: white, size: 5.5pt))` + - `arguments`, e.g. `arguments("chess-queen", solid: true, fill: white)` + - `content`, e.g. `fa-chess-queen(solid: true, fill: white)` + +#### Known Issues + +- [typst#2578](https://github.com/typst/typst/issues/2578) [typst-fontawesome#2](https://github.com/duskmoon314/typst-fontawesome/issues/2) + + This is a known issue that the ligatures may not work in headings, list items, grid items, and other elements. You can use the Unicode from the [official website](https://fontawesome.com) to avoid this issue when using Pro sets. + + For most icons, Unicode is used implicitly. So I assume we usually don't need to worry about this. + + Any help on this issue is appreciated. + +## Example + +See the [`example.typ`](https://typst.app/project/rQwGUWt5p33vrsb_uNPR9F) file for a complete example. + +## Contribution + +Feel free to open an issue or a pull request if you find any problems or have any suggestions. + +### Python helper + +The `helper.py` script is used to get metadata via the GraphQL API and generate typst code. I aim only to use standard python libraries, so running it on any platform with python installed should be easy. + +### Repo structure + +- `helper.py`: The helper script to get metadata and generate typst code. +- `lib.typ`: The main entrypoint of the library. +- `lib-impl.typ`: The implementation of `fa-icon`. +- `lib-gen.typ`: The generated functions of icons. +- `example.typ`: An example file to show how to use the library. +- `gallery.typ`: The generated gallery of icons. It is used in the example file. + +## License + +This library is licensed under the MIT license. Feel free to use it in your project. diff --git a/packages/preview/fontawesome/0.6.2/lib-gen-func.typ b/packages/preview/fontawesome/0.6.2/lib-gen-func.typ new file mode 100644 index 0000000000..8158b0b957 --- /dev/null +++ b/packages/preview/fontawesome/0.6.2/lib-gen-func.typ @@ -0,0 +1,5448 @@ +#import "lib-impl.typ": fa-icon + +// Generated icon functions of Font Awesome + +#let fa-exclamation = fa-icon.with("\u{21}") +#let fa-ditto = fa-icon.with("\u{22}") +#let fa-hashtag = fa-icon.with("\u{23}") +#let fa-dollar = fa-icon.with("\u{24}") +#let fa-dollar-sign = fa-icon.with("\u{24}") +#let fa-usd = fa-icon.with("\u{24}") +#let fa-percent = fa-icon.with("\u{25}") +#let fa-percentage = fa-icon.with("\u{25}") +#let fa-ampersand = fa-icon.with("\u{26}") +#let fa-apostrophe = fa-icon.with("\u{27}") +#let fa-bracket-round = fa-icon.with("\u{28}") +#let fa-parenthesis = fa-icon.with("\u{28}") +#let fa-bracket-round-right = fa-icon.with("\u{29}") +#let fa-asterisk = fa-icon.with("\u{2a}") +#let fa-add = fa-icon.with("\u{2b}") +#let fa-plus = fa-icon.with("\u{2b}") +#let fa-comma = fa-icon.with("\u{2c}") +#let fa-hyphen = fa-icon.with("\u{2d}") +#let fa-period = fa-icon.with("\u{2e}") +#let fa-slash-forward = fa-icon.with("\u{2f}") +#let fa-0 = fa-icon.with("\u{30}") +#let fa-1 = fa-icon.with("\u{31}") +#let fa-2 = fa-icon.with("\u{32}") +#let fa-3 = fa-icon.with("\u{33}") +#let fa-4 = fa-icon.with("\u{34}") +#let fa-5 = fa-icon.with("\u{35}") +#let fa-6 = fa-icon.with("\u{36}") +#let fa-7 = fa-icon.with("\u{37}") +#let fa-8 = fa-icon.with("\u{38}") +#let fa-9 = fa-icon.with("\u{39}") +#let fa-colon = fa-icon.with("\u{3a}") +#let fa-semicolon = fa-icon.with("\u{3b}") +#let fa-less-than = fa-icon.with("\u{3c}") +#let fa-equals = fa-icon.with("\u{3d}") +#let fa-greater-than = fa-icon.with("\u{3e}") +#let fa-question = fa-icon.with("\u{3f}") +#let fa-at = fa-icon.with("\u{40}") +#let fa-a = fa-icon.with("\u{41}") +#let fa-b = fa-icon.with("\u{42}") +#let fa-c = fa-icon.with("\u{43}") +#let fa-d = fa-icon.with("\u{44}") +#let fa-e = fa-icon.with("\u{45}") +#let fa-f = fa-icon.with("\u{46}") +#let fa-g = fa-icon.with("\u{47}") +#let fa-h = fa-icon.with("\u{48}") +#let fa-i = fa-icon.with("\u{49}") +#let fa-j = fa-icon.with("\u{4a}") +#let fa-k = fa-icon.with("\u{4b}") +#let fa-l = fa-icon.with("\u{4c}") +#let fa-m = fa-icon.with("\u{4d}") +#let fa-n = fa-icon.with("\u{4e}") +#let fa-o = fa-icon.with("\u{4f}") +#let fa-p = fa-icon.with("\u{50}") +#let fa-q = fa-icon.with("\u{51}") +#let fa-r = fa-icon.with("\u{52}") +#let fa-s = fa-icon.with("\u{53}") +#let fa-t = fa-icon.with("\u{54}") +#let fa-u = fa-icon.with("\u{55}") +#let fa-v = fa-icon.with("\u{56}") +#let fa-w = fa-icon.with("\u{57}") +#let fa-x = fa-icon.with("\u{58}") +#let fa-y = fa-icon.with("\u{59}") +#let fa-z = fa-icon.with("\u{5a}") +#let fa-bracket = fa-icon.with("\u{5b}") +#let fa-bracket-left = fa-icon.with("\u{5b}") +#let fa-bracket-square = fa-icon.with("\u{5b}") +#let fa-slash-back = fa-icon.with("\u{5c}") +#let fa-bracket-square-right = fa-icon.with("\u{5d}") +#let fa-accent-grave = fa-icon.with("\u{60}") +#let fa-bracket-curly = fa-icon.with("\u{7b}") +#let fa-bracket-curly-left = fa-icon.with("\u{7b}") +#let fa-pipe = fa-icon.with("\u{7c}") +#let fa-bracket-curly-right = fa-icon.with("\u{7d}") +#let fa-tilde = fa-icon.with("\u{7e}") +#let fa-caravan-alt = fa-icon.with("\u{e000}") +#let fa-caravan-simple = fa-icon.with("\u{e000}") +#let fa-cat-space = fa-icon.with("\u{e001}") +#let fa-coffee-pot = fa-icon.with("\u{e002}") +#let fa-comet = fa-icon.with("\u{e003}") +#let fa-fan-table = fa-icon.with("\u{e004}") +#let fa-faucet = fa-icon.with("\u{e005}") +#let fa-faucet-drip = fa-icon.with("\u{e006}") +#let fa-firefox-browser = fa-icon.with("\u{e007}") +#let fa-galaxy = fa-icon.with("\u{e008}") +#let fa-garage = fa-icon.with("\u{e009}") +#let fa-garage-car = fa-icon.with("\u{e00a}") +#let fa-garage-open = fa-icon.with("\u{e00b}") +#let fa-heat = fa-icon.with("\u{e00c}") +#let fa-house-chimney-window = fa-icon.with("\u{e00d}") +#let fa-house-day = fa-icon.with("\u{e00e}") +#let fa-house-leave = fa-icon.with("\u{e00f}") +#let fa-house-person-depart = fa-icon.with("\u{e00f}") +#let fa-house-person-leave = fa-icon.with("\u{e00f}") +#let fa-house-night = fa-icon.with("\u{e010}") +#let fa-house-person-arrive = fa-icon.with("\u{e011}") +#let fa-house-person-return = fa-icon.with("\u{e011}") +#let fa-house-return = fa-icon.with("\u{e011}") +#let fa-house-signal = fa-icon.with("\u{e012}") +#let fa-ideal = fa-icon.with("\u{e013}") +#let fa-lamp-desk = fa-icon.with("\u{e014}") +#let fa-lamp-floor = fa-icon.with("\u{e015}") +#let fa-light-ceiling = fa-icon.with("\u{e016}") +#let fa-light-switch = fa-icon.with("\u{e017}") +#let fa-light-switch-off = fa-icon.with("\u{e018}") +#let fa-light-switch-on = fa-icon.with("\u{e019}") +#let fa-microblog = fa-icon.with("\u{e01a}") +#let fa-microwave = fa-icon.with("\u{e01b}") +#let fa-outlet = fa-icon.with("\u{e01c}") +#let fa-oven = fa-icon.with("\u{e01d}") +#let fa-pied-piper-square = fa-icon.with("\u{e01e}") +#let fa-square-pied-piper = fa-icon.with("\u{e01e}") +#let fa-planet-moon = fa-icon.with("\u{e01f}") +#let fa-planet-ringed = fa-icon.with("\u{e020}") +#let fa-police-box = fa-icon.with("\u{e021}") +#let fa-person-to-portal = fa-icon.with("\u{e022}") +#let fa-portal-enter = fa-icon.with("\u{e022}") +#let fa-person-from-portal = fa-icon.with("\u{e023}") +#let fa-portal-exit = fa-icon.with("\u{e023}") +#let fa-radar = fa-icon.with("\u{e024}") +#let fa-raygun = fa-icon.with("\u{e025}") +#let fa-refrigerator = fa-icon.with("\u{e026}") +#let fa-rocket-launch = fa-icon.with("\u{e027}") +#let fa-sensor = fa-icon.with("\u{e028}") +#let fa-sensor-alert = fa-icon.with("\u{e029}") +#let fa-sensor-triangle-exclamation = fa-icon.with("\u{e029}") +#let fa-sensor-fire = fa-icon.with("\u{e02a}") +#let fa-sensor-on = fa-icon.with("\u{e02b}") +#let fa-sensor-cloud = fa-icon.with("\u{e02c}") +#let fa-sensor-smoke = fa-icon.with("\u{e02c}") +#let fa-siren = fa-icon.with("\u{e02d}") +#let fa-siren-on = fa-icon.with("\u{e02e}") +#let fa-solar-system = fa-icon.with("\u{e02f}") +#let fa-circle-sort = fa-icon.with("\u{e030}") +#let fa-sort-circle = fa-icon.with("\u{e030}") +#let fa-circle-sort-down = fa-icon.with("\u{e031}") +#let fa-sort-circle-down = fa-icon.with("\u{e031}") +#let fa-circle-sort-up = fa-icon.with("\u{e032}") +#let fa-sort-circle-up = fa-icon.with("\u{e032}") +#let fa-space-station-moon = fa-icon.with("\u{e033}") +#let fa-space-station-moon-alt = fa-icon.with("\u{e034}") +#let fa-space-station-moon-construction = fa-icon.with("\u{e034}") +#let fa-sprinkler = fa-icon.with("\u{e035}") +#let fa-star-shooting = fa-icon.with("\u{e036}") +#let fa-starfighter = fa-icon.with("\u{e037}") +#let fa-starfighter-alt = fa-icon.with("\u{e038}") +#let fa-starfighter-twin-ion-engine = fa-icon.with("\u{e038}") +#let fa-starship = fa-icon.with("\u{e039}") +#let fa-starship-freighter = fa-icon.with("\u{e03a}") +#let fa-sword-laser = fa-icon.with("\u{e03b}") +#let fa-sword-laser-alt = fa-icon.with("\u{e03c}") +#let fa-swords-laser = fa-icon.with("\u{e03d}") +#let fa-telescope = fa-icon.with("\u{e03e}") +#let fa-temperature-arrow-down = fa-icon.with("\u{e03f}") +#let fa-temperature-down = fa-icon.with("\u{e03f}") +#let fa-temperature-arrow-up = fa-icon.with("\u{e040}") +#let fa-temperature-up = fa-icon.with("\u{e040}") +#let fa-trailer = fa-icon.with("\u{e041}") +#let fa-transporter = fa-icon.with("\u{e042}") +#let fa-transporter-1 = fa-icon.with("\u{e043}") +#let fa-transporter-2 = fa-icon.with("\u{e044}") +#let fa-transporter-3 = fa-icon.with("\u{e045}") +#let fa-transporter-empty = fa-icon.with("\u{e046}") +#let fa-ufo = fa-icon.with("\u{e047}") +#let fa-ufo-beam = fa-icon.with("\u{e048}") +#let fa-unity = fa-icon.with("\u{e049}") +#let fa-user-alien = fa-icon.with("\u{e04a}") +#let fa-user-robot = fa-icon.with("\u{e04b}") +#let fa-user-visor = fa-icon.with("\u{e04c}") +#let fa-vacuum = fa-icon.with("\u{e04d}") +#let fa-vacuum-robot = fa-icon.with("\u{e04e}") +#let fa-window-frame = fa-icon.with("\u{e04f}") +#let fa-window-frame-open = fa-icon.with("\u{e050}") +#let fa-coffin-cross = fa-icon.with("\u{e051}") +#let fa-dailymotion = fa-icon.with("\u{e052}") +#let fa-folder-arrow-down = fa-icon.with("\u{e053}") +#let fa-folder-download = fa-icon.with("\u{e053}") +#let fa-folder-arrow-up = fa-icon.with("\u{e054}") +#let fa-folder-upload = fa-icon.with("\u{e054}") +#let fa-instagram-square = fa-icon.with("\u{e055}") +#let fa-square-instagram = fa-icon.with("\u{e055}") +#let fa-mixer = fa-icon.with("\u{e056}") +#let fa-shopify = fa-icon.with("\u{e057}") +#let fa-user-unlock = fa-icon.with("\u{e058}") +#let fa-bacteria = fa-icon.with("\u{e059}") +#let fa-bacterium = fa-icon.with("\u{e05a}") +#let fa-box-tissue = fa-icon.with("\u{e05b}") +#let fa-hand-holding-medical = fa-icon.with("\u{e05c}") +#let fa-hand-sparkles = fa-icon.with("\u{e05d}") +#let fa-hands-bubbles = fa-icon.with("\u{e05e}") +#let fa-hands-wash = fa-icon.with("\u{e05e}") +#let fa-handshake-slash = fa-icon.with("\u{e060}") +#let fa-head-side-cough = fa-icon.with("\u{e061}") +#let fa-head-side-cough-slash = fa-icon.with("\u{e062}") +#let fa-head-side-mask = fa-icon.with("\u{e063}") +#let fa-head-side-virus = fa-icon.with("\u{e064}") +#let fa-house-chimney-user = fa-icon.with("\u{e065}") +#let fa-house-laptop = fa-icon.with("\u{e066}") +#let fa-laptop-house = fa-icon.with("\u{e066}") +#let fa-lungs-virus = fa-icon.with("\u{e067}") +#let fa-people-arrows = fa-icon.with("\u{e068}") +#let fa-people-arrows-left-right = fa-icon.with("\u{e068}") +#let fa-plane-slash = fa-icon.with("\u{e069}") +#let fa-pump-medical = fa-icon.with("\u{e06a}") +#let fa-pump-soap = fa-icon.with("\u{e06b}") +#let fa-shield-virus = fa-icon.with("\u{e06c}") +#let fa-sink = fa-icon.with("\u{e06d}") +#let fa-soap = fa-icon.with("\u{e06e}") +#let fa-stopwatch-20 = fa-icon.with("\u{e06f}") +#let fa-shop-slash = fa-icon.with("\u{e070}") +#let fa-store-alt-slash = fa-icon.with("\u{e070}") +#let fa-store-slash = fa-icon.with("\u{e071}") +#let fa-toilet-paper-slash = fa-icon.with("\u{e072}") +#let fa-users-slash = fa-icon.with("\u{e073}") +#let fa-virus = fa-icon.with("\u{e074}") +#let fa-virus-slash = fa-icon.with("\u{e075}") +#let fa-viruses = fa-icon.with("\u{e076}") +#let fa-deezer = fa-icon.with("\u{e077}") +#let fa-edge-legacy = fa-icon.with("\u{e078}") +#let fa-google-pay = fa-icon.with("\u{e079}") +#let fa-rust = fa-icon.with("\u{e07a}") +#let fa-tiktok = fa-icon.with("\u{e07b}") +#let fa-unsplash = fa-icon.with("\u{e07c}") +#let fa-cloudflare = fa-icon.with("\u{e07d}") +#let fa-guilded = fa-icon.with("\u{e07e}") +#let fa-hive = fa-icon.with("\u{e07f}") +#let fa-42-group = fa-icon.with("\u{e080}") +#let fa-innosoft = fa-icon.with("\u{e080}") +#let fa-instalod = fa-icon.with("\u{e081}") +#let fa-octopus-deploy = fa-icon.with("\u{e082}") +#let fa-perbyte = fa-icon.with("\u{e083}") +#let fa-uncharted = fa-icon.with("\u{e084}") +#let fa-vest = fa-icon.with("\u{e085}") +#let fa-vest-patches = fa-icon.with("\u{e086}") +#let fa-watchman-monitoring = fa-icon.with("\u{e087}") +#let fa-wodu = fa-icon.with("\u{e088}") +#let fa-airplay = fa-icon.with("\u{e089}") +#let fa-alt = fa-icon.with("\u{e08a}") +#let fa-angle = fa-icon.with("\u{e08c}") +#let fa-angle-90 = fa-icon.with("\u{e08d}") +#let fa-apple-core = fa-icon.with("\u{e08f}") +#let fa-arrow-down-from-dotted-line = fa-icon.with("\u{e090}") +#let fa-arrow-down-left = fa-icon.with("\u{e091}") +#let fa-arrow-down-left-and-arrow-up-right-to-center = fa-icon.with("\u{e092}") +#let fa-arrow-down-right = fa-icon.with("\u{e093}") +#let fa-arrow-down-to-bracket = fa-icon.with("\u{e094}") +#let fa-arrow-down-to-dotted-line = fa-icon.with("\u{e095}") +#let fa-arrow-down-to-square = fa-icon.with("\u{e096}") +#let fa-arrow-trend-down = fa-icon.with("\u{e097}") +#let fa-arrow-trend-up = fa-icon.with("\u{e098}") +#let fa-arrow-up-arrow-down = fa-icon.with("\u{e099}") +#let fa-sort-up-down = fa-icon.with("\u{e099}") +#let fa-arrow-up-from-bracket = fa-icon.with("\u{e09a}") +#let fa-arrow-up-from-dotted-line = fa-icon.with("\u{e09b}") +#let fa-arrow-up-from-square = fa-icon.with("\u{e09c}") +#let fa-arrow-up-left = fa-icon.with("\u{e09d}") +#let fa-arrow-up-left-from-circle = fa-icon.with("\u{e09e}") +#let fa-arrow-up-right = fa-icon.with("\u{e09f}") +#let fa-arrow-up-right-and-arrow-down-left-from-center = fa-icon.with("\u{e0a0}") +#let fa-arrow-up-to-dotted-line = fa-icon.with("\u{e0a1}") +#let fa-arrows-cross = fa-icon.with("\u{e0a2}") +#let fa-arrows-from-dotted-line = fa-icon.with("\u{e0a3}") +#let fa-arrows-from-line = fa-icon.with("\u{e0a4}") +#let fa-arrows-minimize = fa-icon.with("\u{e0a5}") +#let fa-compress-arrows = fa-icon.with("\u{e0a5}") +#let fa-arrows-to-dotted-line = fa-icon.with("\u{e0a6}") +#let fa-arrows-to-line = fa-icon.with("\u{e0a7}") +#let fa-audio-description-slash = fa-icon.with("\u{e0a8}") +#let fa-austral-sign = fa-icon.with("\u{e0a9}") +#let fa-avocado = fa-icon.with("\u{e0aa}") +#let fa-award-simple = fa-icon.with("\u{e0ab}") +#let fa-baht-sign = fa-icon.with("\u{e0ac}") +#let fa-bars-filter = fa-icon.with("\u{e0ad}") +#let fa-bars-sort = fa-icon.with("\u{e0ae}") +#let fa-basket-shopping-simple = fa-icon.with("\u{e0af}") +#let fa-shopping-basket-alt = fa-icon.with("\u{e0af}") +#let fa-battery-exclamation = fa-icon.with("\u{e0b0}") +#let fa-battery-1 = fa-icon.with("\u{e0b1}") +#let fa-battery-low = fa-icon.with("\u{e0b1}") +#let fa-bee = fa-icon.with("\u{e0b2}") +#let fa-beer-foam = fa-icon.with("\u{e0b3}") +#let fa-beer-mug = fa-icon.with("\u{e0b3}") +#let fa-bitcoin-sign = fa-icon.with("\u{e0b4}") +#let fa-block-quote = fa-icon.with("\u{e0b5}") +#let fa-bolt-auto = fa-icon.with("\u{e0b6}") +#let fa-bolt-lightning = fa-icon.with("\u{e0b7}") +#let fa-bolt-slash = fa-icon.with("\u{e0b8}") +#let fa-book-arrow-right = fa-icon.with("\u{e0b9}") +#let fa-book-arrow-up = fa-icon.with("\u{e0ba}") +#let fa-book-bookmark = fa-icon.with("\u{e0bb}") +#let fa-book-circle-arrow-right = fa-icon.with("\u{e0bc}") +#let fa-book-circle-arrow-up = fa-icon.with("\u{e0bd}") +#let fa-book-copy = fa-icon.with("\u{e0be}") +#let fa-book-font = fa-icon.with("\u{e0bf}") +#let fa-book-open-alt = fa-icon.with("\u{e0c0}") +#let fa-book-open-cover = fa-icon.with("\u{e0c0}") +#let fa-book-law = fa-icon.with("\u{e0c1}") +#let fa-book-section = fa-icon.with("\u{e0c1}") +#let fa-bookmark-slash = fa-icon.with("\u{e0c2}") +#let fa-bowling-ball-pin = fa-icon.with("\u{e0c3}") +#let fa-box-circle-check = fa-icon.with("\u{e0c4}") +#let fa-brackets-round = fa-icon.with("\u{e0c5}") +#let fa-parentheses = fa-icon.with("\u{e0c5}") +#let fa-brain-circuit = fa-icon.with("\u{e0c6}") +#let fa-brake-warning = fa-icon.with("\u{e0c7}") +#let fa-briefcase-blank = fa-icon.with("\u{e0c8}") +#let fa-brightness = fa-icon.with("\u{e0c9}") +#let fa-brightness-low = fa-icon.with("\u{e0ca}") +#let fa-browsers = fa-icon.with("\u{e0cb}") +#let fa-buildings = fa-icon.with("\u{e0cc}") +#let fa-burger-fries = fa-icon.with("\u{e0cd}") +#let fa-burger-glass = fa-icon.with("\u{e0ce}") +#let fa-calendar-arrow-down = fa-icon.with("\u{e0d0}") +#let fa-calendar-download = fa-icon.with("\u{e0d0}") +#let fa-calendar-arrow-up = fa-icon.with("\u{e0d1}") +#let fa-calendar-upload = fa-icon.with("\u{e0d1}") +#let fa-calendar-clock = fa-icon.with("\u{e0d2}") +#let fa-calendar-time = fa-icon.with("\u{e0d2}") +#let fa-calendar-heart = fa-icon.with("\u{e0d3}") +#let fa-calendar-image = fa-icon.with("\u{e0d4}") +#let fa-calendar-lines = fa-icon.with("\u{e0d5}") +#let fa-calendar-note = fa-icon.with("\u{e0d5}") +#let fa-calendar-range = fa-icon.with("\u{e0d6}") +#let fa-calendars = fa-icon.with("\u{e0d7}") +#let fa-camera-rotate = fa-icon.with("\u{e0d8}") +#let fa-camera-slash = fa-icon.with("\u{e0d9}") +#let fa-camera-viewfinder = fa-icon.with("\u{e0da}") +#let fa-screenshot = fa-icon.with("\u{e0da}") +#let fa-cart-minus = fa-icon.with("\u{e0db}") +#let fa-cart-shopping-fast = fa-icon.with("\u{e0dc}") +#let fa-cart-xmark = fa-icon.with("\u{e0dd}") +#let fa-castle = fa-icon.with("\u{e0de}") +#let fa-cedi-sign = fa-icon.with("\u{e0df}") +#let fa-chart-bullet = fa-icon.with("\u{e0e1}") +#let fa-chart-candlestick = fa-icon.with("\u{e0e2}") +#let fa-chart-column = fa-icon.with("\u{e0e3}") +#let fa-chart-gantt = fa-icon.with("\u{e0e4}") +#let fa-chart-line-up = fa-icon.with("\u{e0e5}") +#let fa-chart-pyramid = fa-icon.with("\u{e0e6}") +#let fa-chart-radar = fa-icon.with("\u{e0e7}") +#let fa-chart-scatter-3d = fa-icon.with("\u{e0e8}") +#let fa-chart-scatter-bubble = fa-icon.with("\u{e0e9}") +#let fa-chart-tree-map = fa-icon.with("\u{e0ea}") +#let fa-chart-waterfall = fa-icon.with("\u{e0eb}") +#let fa-cherries = fa-icon.with("\u{e0ec}") +#let fa-circle-0 = fa-icon.with("\u{e0ed}") +#let fa-circle-1 = fa-icon.with("\u{e0ee}") +#let fa-circle-2 = fa-icon.with("\u{e0ef}") +#let fa-circle-3 = fa-icon.with("\u{e0f0}") +#let fa-circle-4 = fa-icon.with("\u{e0f1}") +#let fa-circle-5 = fa-icon.with("\u{e0f2}") +#let fa-circle-6 = fa-icon.with("\u{e0f3}") +#let fa-circle-7 = fa-icon.with("\u{e0f4}") +#let fa-circle-8 = fa-icon.with("\u{e0f5}") +#let fa-circle-9 = fa-icon.with("\u{e0f6}") +#let fa-circle-a = fa-icon.with("\u{e0f7}") +#let fa-circle-ampersand = fa-icon.with("\u{e0f8}") +#let fa-circle-arrow-down-left = fa-icon.with("\u{e0f9}") +#let fa-circle-arrow-down-right = fa-icon.with("\u{e0fa}") +#let fa-circle-arrow-up-left = fa-icon.with("\u{e0fb}") +#let fa-circle-arrow-up-right = fa-icon.with("\u{e0fc}") +#let fa-circle-b = fa-icon.with("\u{e0fd}") +#let fa-circle-bolt = fa-icon.with("\u{e0fe}") +#let fa-book-circle = fa-icon.with("\u{e0ff}") +#let fa-circle-book-open = fa-icon.with("\u{e0ff}") +#let fa-bookmark-circle = fa-icon.with("\u{e100}") +#let fa-circle-bookmark = fa-icon.with("\u{e100}") +#let fa-circle-c = fa-icon.with("\u{e101}") +#let fa-calendar-circle = fa-icon.with("\u{e102}") +#let fa-circle-calendar = fa-icon.with("\u{e102}") +#let fa-camera-circle = fa-icon.with("\u{e103}") +#let fa-circle-camera = fa-icon.with("\u{e103}") +#let fa-circle-d = fa-icon.with("\u{e104}") +#let fa-circle-dashed = fa-icon.with("\u{e105}") +#let fa-circle-divide = fa-icon.with("\u{e106}") +#let fa-circle-down-left = fa-icon.with("\u{e107}") +#let fa-circle-down-right = fa-icon.with("\u{e108}") +#let fa-circle-e = fa-icon.with("\u{e109}") +#let fa-circle-ellipsis = fa-icon.with("\u{e10a}") +#let fa-circle-ellipsis-vertical = fa-icon.with("\u{e10b}") +#let fa-circle-envelope = fa-icon.with("\u{e10c}") +#let fa-envelope-circle = fa-icon.with("\u{e10c}") +#let fa-circle-exclamation-check = fa-icon.with("\u{e10d}") +#let fa-circle-f = fa-icon.with("\u{e10e}") +#let fa-circle-g = fa-icon.with("\u{e10f}") +#let fa-circle-half = fa-icon.with("\u{e110}") +#let fa-circle-i = fa-icon.with("\u{e111}") +#let fa-circle-j = fa-icon.with("\u{e112}") +#let fa-circle-k = fa-icon.with("\u{e113}") +#let fa-circle-l = fa-icon.with("\u{e114}") +#let fa-circle-m = fa-icon.with("\u{e115}") +#let fa-circle-microphone = fa-icon.with("\u{e116}") +#let fa-microphone-circle = fa-icon.with("\u{e116}") +#let fa-circle-microphone-lines = fa-icon.with("\u{e117}") +#let fa-microphone-circle-alt = fa-icon.with("\u{e117}") +#let fa-circle-n = fa-icon.with("\u{e118}") +#let fa-circle-o = fa-icon.with("\u{e119}") +#let fa-circle-p = fa-icon.with("\u{e11a}") +#let fa-circle-phone = fa-icon.with("\u{e11b}") +#let fa-phone-circle = fa-icon.with("\u{e11b}") +#let fa-circle-phone-flip = fa-icon.with("\u{e11c}") +#let fa-phone-circle-alt = fa-icon.with("\u{e11c}") +#let fa-circle-phone-hangup = fa-icon.with("\u{e11d}") +#let fa-phone-circle-down = fa-icon.with("\u{e11d}") +#let fa-circle-q = fa-icon.with("\u{e11e}") +#let fa-circle-quarter = fa-icon.with("\u{e11f}") +#let fa-circle-r = fa-icon.with("\u{e120}") +#let fa-circle-s = fa-icon.with("\u{e121}") +#let fa-circle-small = fa-icon.with("\u{e122}") +#let fa-circle-star = fa-icon.with("\u{e123}") +#let fa-star-circle = fa-icon.with("\u{e123}") +#let fa-circle-t = fa-icon.with("\u{e124}") +#let fa-circle-three-quarters = fa-icon.with("\u{e125}") +#let fa-circle-trash = fa-icon.with("\u{e126}") +#let fa-trash-circle = fa-icon.with("\u{e126}") +#let fa-circle-u = fa-icon.with("\u{e127}") +#let fa-circle-up-left = fa-icon.with("\u{e128}") +#let fa-circle-up-right = fa-icon.with("\u{e129}") +#let fa-circle-v = fa-icon.with("\u{e12a}") +#let fa-circle-video = fa-icon.with("\u{e12b}") +#let fa-video-circle = fa-icon.with("\u{e12b}") +#let fa-circle-w = fa-icon.with("\u{e12c}") +#let fa-circle-waveform-lines = fa-icon.with("\u{e12d}") +#let fa-waveform-circle = fa-icon.with("\u{e12d}") +#let fa-circle-x = fa-icon.with("\u{e12e}") +#let fa-circle-y = fa-icon.with("\u{e12f}") +#let fa-circle-z = fa-icon.with("\u{e130}") +#let fa-clapperboard = fa-icon.with("\u{e131}") +#let fa-clapperboard-play = fa-icon.with("\u{e132}") +#let fa-clipboard-medical = fa-icon.with("\u{e133}") +#let fa-clock-desk = fa-icon.with("\u{e134}") +#let fa-closed-captioning-slash = fa-icon.with("\u{e135}") +#let fa-clothes-hanger = fa-icon.with("\u{e136}") +#let fa-cloud-slash = fa-icon.with("\u{e137}") +#let fa-cloud-word = fa-icon.with("\u{e138}") +#let fa-clover = fa-icon.with("\u{e139}") +#let fa-code-compare = fa-icon.with("\u{e13a}") +#let fa-code-fork = fa-icon.with("\u{e13b}") +#let fa-code-pull-request = fa-icon.with("\u{e13c}") +#let fa-code-simple = fa-icon.with("\u{e13d}") +#let fa-coffee-bean = fa-icon.with("\u{e13e}") +#let fa-coffee-beans = fa-icon.with("\u{e13f}") +#let fa-colon-sign = fa-icon.with("\u{e140}") +#let fa-command = fa-icon.with("\u{e142}") +#let fa-comment-arrow-down = fa-icon.with("\u{e143}") +#let fa-comment-arrow-up = fa-icon.with("\u{e144}") +#let fa-comment-arrow-up-right = fa-icon.with("\u{e145}") +#let fa-comment-captions = fa-icon.with("\u{e146}") +#let fa-comment-code = fa-icon.with("\u{e147}") +#let fa-comment-image = fa-icon.with("\u{e148}") +#let fa-comment-middle = fa-icon.with("\u{e149}") +#let fa-comment-middle-top = fa-icon.with("\u{e14a}") +#let fa-comment-question = fa-icon.with("\u{e14b}") +#let fa-comment-quote = fa-icon.with("\u{e14c}") +#let fa-comment-text = fa-icon.with("\u{e14d}") +#let fa-comments-question = fa-icon.with("\u{e14e}") +#let fa-comments-question-check = fa-icon.with("\u{e14f}") +#let fa-conveyor-belt-empty = fa-icon.with("\u{e150}") +#let fa-crate-empty = fa-icon.with("\u{e151}") +#let fa-cruzeiro-sign = fa-icon.with("\u{e152}") +#let fa-delete-right = fa-icon.with("\u{e154}") +#let fa-desktop-arrow-down = fa-icon.with("\u{e155}") +#let fa-diagram-lean-canvas = fa-icon.with("\u{e156}") +#let fa-diagram-nested = fa-icon.with("\u{e157}") +#let fa-diagram-sankey = fa-icon.with("\u{e158}") +#let fa-diagram-venn = fa-icon.with("\u{e15a}") +#let fa-dial = fa-icon.with("\u{e15b}") +#let fa-dial-med-high = fa-icon.with("\u{e15b}") +#let fa-dial-high = fa-icon.with("\u{e15c}") +#let fa-dial-low = fa-icon.with("\u{e15d}") +#let fa-dial-max = fa-icon.with("\u{e15e}") +#let fa-dial-med = fa-icon.with("\u{e15f}") +#let fa-dial-med-low = fa-icon.with("\u{e160}") +#let fa-dial-min = fa-icon.with("\u{e161}") +#let fa-dial-off = fa-icon.with("\u{e162}") +#let fa-display = fa-icon.with("\u{e163}") +#let fa-display-arrow-down = fa-icon.with("\u{e164}") +#let fa-desktop-code = fa-icon.with("\u{e165}") +#let fa-display-code = fa-icon.with("\u{e165}") +#let fa-desktop-medical = fa-icon.with("\u{e166}") +#let fa-display-medical = fa-icon.with("\u{e166}") +#let fa-dolphin = fa-icon.with("\u{e168}") +#let fa-dong-sign = fa-icon.with("\u{e169}") +#let fa-down-left = fa-icon.with("\u{e16a}") +#let fa-down-right = fa-icon.with("\u{e16b}") +#let fa-eggplant = fa-icon.with("\u{e16c}") +#let fa-elevator = fa-icon.with("\u{e16d}") +#let fa-engine = fa-icon.with("\u{e16e}") +#let fa-envelope-badge = fa-icon.with("\u{e16f}") +#let fa-envelope-dot = fa-icon.with("\u{e16f}") +#let fa-envelopes = fa-icon.with("\u{e170}") +#let fa-escalator = fa-icon.with("\u{e171}") +#let fa-eye-dropper-full = fa-icon.with("\u{e172}") +#let fa-eye-dropper-half = fa-icon.with("\u{e173}") +#let fa-ferris-wheel = fa-icon.with("\u{e174}") +#let fa-file-binary = fa-icon.with("\u{e175}") +#let fa-file-heart = fa-icon.with("\u{e176}") +#let fa-file-plus-minus = fa-icon.with("\u{e177}") +#let fa-files = fa-icon.with("\u{e178}") +#let fa-film-slash = fa-icon.with("\u{e179}") +#let fa-films = fa-icon.with("\u{e17a}") +#let fa-filter-circle-xmark = fa-icon.with("\u{e17b}") +#let fa-filter-list = fa-icon.with("\u{e17c}") +#let fa-filter-slash = fa-icon.with("\u{e17d}") +#let fa-filters = fa-icon.with("\u{e17e}") +#let fa-fire-hydrant = fa-icon.with("\u{e17f}") +#let fa-floppy-disk-circle-arrow-right = fa-icon.with("\u{e180}") +#let fa-save-circle-arrow-right = fa-icon.with("\u{e180}") +#let fa-floppy-disk-circle-xmark = fa-icon.with("\u{e181}") +#let fa-floppy-disk-times = fa-icon.with("\u{e181}") +#let fa-save-circle-xmark = fa-icon.with("\u{e181}") +#let fa-save-times = fa-icon.with("\u{e181}") +#let fa-floppy-disk-pen = fa-icon.with("\u{e182}") +#let fa-floppy-disks = fa-icon.with("\u{e183}") +#let fa-florin-sign = fa-icon.with("\u{e184}") +#let fa-folder-closed = fa-icon.with("\u{e185}") +#let fa-folder-bookmark = fa-icon.with("\u{e186}") +#let fa-folder-cog = fa-icon.with("\u{e187}") +#let fa-folder-gear = fa-icon.with("\u{e187}") +#let fa-folder-grid = fa-icon.with("\u{e188}") +#let fa-folder-heart = fa-icon.with("\u{e189}") +#let fa-folder-image = fa-icon.with("\u{e18a}") +#let fa-folder-magnifying-glass = fa-icon.with("\u{e18b}") +#let fa-folder-search = fa-icon.with("\u{e18b}") +#let fa-folder-medical = fa-icon.with("\u{e18c}") +#let fa-folder-music = fa-icon.with("\u{e18d}") +#let fa-folder-user = fa-icon.with("\u{e18e}") +#let fa-franc-sign = fa-icon.with("\u{e18f}") +#let fa-gif = fa-icon.with("\u{e190}") +#let fa-glass-empty = fa-icon.with("\u{e191}") +#let fa-glass-half = fa-icon.with("\u{e192}") +#let fa-glass-half-empty = fa-icon.with("\u{e192}") +#let fa-glass-half-full = fa-icon.with("\u{e192}") +#let fa-grate = fa-icon.with("\u{e193}") +#let fa-grate-droplet = fa-icon.with("\u{e194}") +#let fa-grid = fa-icon.with("\u{e195}") +#let fa-grid-3 = fa-icon.with("\u{e195}") +#let fa-grid-2 = fa-icon.with("\u{e196}") +#let fa-grid-2-plus = fa-icon.with("\u{e197}") +#let fa-grid-4 = fa-icon.with("\u{e198}") +#let fa-grid-5 = fa-icon.with("\u{e199}") +#let fa-guarani-sign = fa-icon.with("\u{e19a}") +#let fa-gun = fa-icon.with("\u{e19b}") +#let fa-gun-slash = fa-icon.with("\u{e19c}") +#let fa-gun-squirt = fa-icon.with("\u{e19d}") +#let fa-hand-back-point-down = fa-icon.with("\u{e19e}") +#let fa-hand-back-point-left = fa-icon.with("\u{e19f}") +#let fa-hand-back-point-ribbon = fa-icon.with("\u{e1a0}") +#let fa-hand-back-point-right = fa-icon.with("\u{e1a1}") +#let fa-hand-back-point-up = fa-icon.with("\u{e1a2}") +#let fa-hand-fingers-crossed = fa-icon.with("\u{e1a3}") +#let fa-hand-holding-skull = fa-icon.with("\u{e1a4}") +#let fa-hand-love = fa-icon.with("\u{e1a5}") +#let fa-hand-point-ribbon = fa-icon.with("\u{e1a6}") +#let fa-hand-wave = fa-icon.with("\u{e1a7}") +#let fa-hands-clapping = fa-icon.with("\u{e1a8}") +#let fa-hand-horns = fa-icon.with("\u{e1a9}") +#let fa-head-side-heart = fa-icon.with("\u{e1aa}") +#let fa-heart-half = fa-icon.with("\u{e1ab}") +#let fa-heart-half-alt = fa-icon.with("\u{e1ac}") +#let fa-heart-half-stroke = fa-icon.with("\u{e1ac}") +#let fa-hexagon-divide = fa-icon.with("\u{e1ad}") +#let fa-high-definition = fa-icon.with("\u{e1ae}") +#let fa-rectangle-hd = fa-icon.with("\u{e1ae}") +#let fa-highlighter-line = fa-icon.with("\u{e1af}") +#let fa-home-user = fa-icon.with("\u{e1b0}") +#let fa-house-user = fa-icon.with("\u{e1b0}") +#let fa-house-building = fa-icon.with("\u{e1b1}") +#let fa-house-chimney-heart = fa-icon.with("\u{e1b2}") +#let fa-house-tree = fa-icon.with("\u{e1b3}") +#let fa-house-turret = fa-icon.with("\u{e1b4}") +#let fa-image-landscape = fa-icon.with("\u{e1b5}") +#let fa-landscape = fa-icon.with("\u{e1b5}") +#let fa-image-polaroid-user = fa-icon.with("\u{e1b6}") +#let fa-image-slash = fa-icon.with("\u{e1b7}") +#let fa-image-user = fa-icon.with("\u{e1b8}") +#let fa-images-user = fa-icon.with("\u{e1b9}") +#let fa-inbox-full = fa-icon.with("\u{e1ba}") +#let fa-inboxes = fa-icon.with("\u{e1bb}") +#let fa-indian-rupee = fa-icon.with("\u{e1bc}") +#let fa-indian-rupee-sign = fa-icon.with("\u{e1bc}") +#let fa-inr = fa-icon.with("\u{e1bc}") +#let fa-input-numeric = fa-icon.with("\u{e1bd}") +#let fa-input-pipe = fa-icon.with("\u{e1be}") +#let fa-input-text = fa-icon.with("\u{e1bf}") +#let fa-keyboard-brightness = fa-icon.with("\u{e1c0}") +#let fa-keyboard-brightness-low = fa-icon.with("\u{e1c1}") +#let fa-keyboard-down = fa-icon.with("\u{e1c2}") +#let fa-keyboard-left = fa-icon.with("\u{e1c3}") +#let fa-kip-sign = fa-icon.with("\u{e1c4}") +#let fa-lamp-street = fa-icon.with("\u{e1c5}") +#let fa-laptop-arrow-down = fa-icon.with("\u{e1c6}") +#let fa-laptop-slash = fa-icon.with("\u{e1c7}") +#let fa-lari-sign = fa-icon.with("\u{e1c8}") +#let fa-lasso-sparkles = fa-icon.with("\u{e1c9}") +#let fa-lightbulb-exclamation-on = fa-icon.with("\u{e1ca}") +#let fa-chain-horizontal = fa-icon.with("\u{e1cb}") +#let fa-link-horizontal = fa-icon.with("\u{e1cb}") +#let fa-chain-horizontal-slash = fa-icon.with("\u{e1cc}") +#let fa-link-horizontal-slash = fa-icon.with("\u{e1cc}") +#let fa-link-simple = fa-icon.with("\u{e1cd}") +#let fa-link-simple-slash = fa-icon.with("\u{e1ce}") +#let fa-list-dropdown = fa-icon.with("\u{e1cf}") +#let fa-list-radio = fa-icon.with("\u{e1d0}") +#let fa-list-timeline = fa-icon.with("\u{e1d1}") +#let fa-list-tree = fa-icon.with("\u{e1d2}") +#let fa-litecoin-sign = fa-icon.with("\u{e1d3}") +#let fa-loader = fa-icon.with("\u{e1d4}") +#let fa-manat-sign = fa-icon.with("\u{e1d5}") +#let fa-manhole = fa-icon.with("\u{e1d6}") +#let fa-mask-face = fa-icon.with("\u{e1d7}") +#let fa-memo = fa-icon.with("\u{e1d8}") +#let fa-memo-circle-check = fa-icon.with("\u{e1d9}") +#let fa-memo-pad = fa-icon.with("\u{e1da}") +#let fa-comment-alt-arrow-down = fa-icon.with("\u{e1db}") +#let fa-message-arrow-down = fa-icon.with("\u{e1db}") +#let fa-comment-alt-arrow-up = fa-icon.with("\u{e1dc}") +#let fa-message-arrow-up = fa-icon.with("\u{e1dc}") +#let fa-message-arrow-up-right = fa-icon.with("\u{e1dd}") +#let fa-comment-alt-captions = fa-icon.with("\u{e1de}") +#let fa-message-captions = fa-icon.with("\u{e1de}") +#let fa-message-code = fa-icon.with("\u{e1df}") +#let fa-comment-alt-image = fa-icon.with("\u{e1e0}") +#let fa-message-image = fa-icon.with("\u{e1e0}") +#let fa-comment-middle-alt = fa-icon.with("\u{e1e1}") +#let fa-message-middle = fa-icon.with("\u{e1e1}") +#let fa-comment-middle-top-alt = fa-icon.with("\u{e1e2}") +#let fa-message-middle-top = fa-icon.with("\u{e1e2}") +#let fa-message-question = fa-icon.with("\u{e1e3}") +#let fa-comment-alt-quote = fa-icon.with("\u{e1e4}") +#let fa-message-quote = fa-icon.with("\u{e1e4}") +#let fa-message-sms = fa-icon.with("\u{e1e5}") +#let fa-comment-alt-text = fa-icon.with("\u{e1e6}") +#let fa-message-text = fa-icon.with("\u{e1e6}") +#let fa-messages-question = fa-icon.with("\u{e1e7}") +#let fa-meter = fa-icon.with("\u{e1e8}") +#let fa-meter-bolt = fa-icon.with("\u{e1e9}") +#let fa-meter-droplet = fa-icon.with("\u{e1ea}") +#let fa-meter-fire = fa-icon.with("\u{e1eb}") +#let fa-microchip-ai = fa-icon.with("\u{e1ec}") +#let fa-mill-sign = fa-icon.with("\u{e1ed}") +#let fa-mobile-iphone = fa-icon.with("\u{e1ee}") +#let fa-mobile-notch = fa-icon.with("\u{e1ee}") +#let fa-mobile-signal = fa-icon.with("\u{e1ef}") +#let fa-mobile-signal-out = fa-icon.with("\u{e1f0}") +#let fa-money-bill-simple = fa-icon.with("\u{e1f1}") +#let fa-money-bill-simple-wave = fa-icon.with("\u{e1f2}") +#let fa-money-bills = fa-icon.with("\u{e1f3}") +#let fa-money-bills-alt = fa-icon.with("\u{e1f4}") +#let fa-money-bills-simple = fa-icon.with("\u{e1f4}") +#let fa-mug-tea-saucer = fa-icon.with("\u{e1f5}") +#let fa-naira-sign = fa-icon.with("\u{e1f6}") +#let fa-nfc = fa-icon.with("\u{e1f7}") +#let fa-nfc-lock = fa-icon.with("\u{e1f8}") +#let fa-nfc-magnifying-glass = fa-icon.with("\u{e1f9}") +#let fa-nfc-pen = fa-icon.with("\u{e1fa}") +#let fa-nfc-signal = fa-icon.with("\u{e1fb}") +#let fa-nfc-slash = fa-icon.with("\u{e1fc}") +#let fa-nfc-trash = fa-icon.with("\u{e1fd}") +#let fa-notdef = fa-icon.with("\u{e1fe}") +#let fa-note = fa-icon.with("\u{e1ff}") +#let fa-note-medical = fa-icon.with("\u{e200}") +#let fa-notebook = fa-icon.with("\u{e201}") +#let fa-notes = fa-icon.with("\u{e202}") +#let fa-octagon-divide = fa-icon.with("\u{e203}") +#let fa-octagon-exclamation = fa-icon.with("\u{e204}") +#let fa-oil-can-drip = fa-icon.with("\u{e205}") +#let fa-paintbrush-pencil = fa-icon.with("\u{e206}") +#let fa-pallet-box = fa-icon.with("\u{e208}") +#let fa-panorama = fa-icon.with("\u{e209}") +#let fa-paper-plane-alt = fa-icon.with("\u{e20a}") +#let fa-paper-plane-top = fa-icon.with("\u{e20a}") +#let fa-send = fa-icon.with("\u{e20a}") +#let fa-peach = fa-icon.with("\u{e20b}") +#let fa-pear = fa-icon.with("\u{e20c}") +#let fa-pedestal = fa-icon.with("\u{e20d}") +#let fa-pen-circle = fa-icon.with("\u{e20e}") +#let fa-pen-alt-slash = fa-icon.with("\u{e20f}") +#let fa-pen-clip-slash = fa-icon.with("\u{e20f}") +#let fa-pen-fancy-slash = fa-icon.with("\u{e210}") +#let fa-pen-field = fa-icon.with("\u{e211}") +#let fa-pen-line = fa-icon.with("\u{e212}") +#let fa-pen-slash = fa-icon.with("\u{e213}") +#let fa-pen-swirl = fa-icon.with("\u{e214}") +#let fa-pencil-slash = fa-icon.with("\u{e215}") +#let fa-people = fa-icon.with("\u{e216}") +#let fa-people-dress = fa-icon.with("\u{e217}") +#let fa-people-dress-simple = fa-icon.with("\u{e218}") +#let fa-people-pants = fa-icon.with("\u{e219}") +#let fa-people-pants-simple = fa-icon.with("\u{e21a}") +#let fa-people-simple = fa-icon.with("\u{e21b}") +#let fa-person-dress-simple = fa-icon.with("\u{e21c}") +#let fa-person-pinball = fa-icon.with("\u{e21d}") +#let fa-person-seat = fa-icon.with("\u{e21e}") +#let fa-person-seat-reclined = fa-icon.with("\u{e21f}") +#let fa-person-simple = fa-icon.with("\u{e220}") +#let fa-peseta-sign = fa-icon.with("\u{e221}") +#let fa-peso-sign = fa-icon.with("\u{e222}") +#let fa-phone-arrow-down = fa-icon.with("\u{e223}") +#let fa-phone-arrow-down-left = fa-icon.with("\u{e223}") +#let fa-phone-incoming = fa-icon.with("\u{e223}") +#let fa-phone-arrow-up = fa-icon.with("\u{e224}") +#let fa-phone-arrow-up-right = fa-icon.with("\u{e224}") +#let fa-phone-outgoing = fa-icon.with("\u{e224}") +#let fa-phone-hangup = fa-icon.with("\u{e225}") +#let fa-phone-missed = fa-icon.with("\u{e226}") +#let fa-phone-xmark = fa-icon.with("\u{e227}") +#let fa-photo-film-music = fa-icon.with("\u{e228}") +#let fa-pinball = fa-icon.with("\u{e229}") +#let fa-plane-prop = fa-icon.with("\u{e22b}") +#let fa-plane-tail = fa-icon.with("\u{e22c}") +#let fa-plane-up = fa-icon.with("\u{e22d}") +#let fa-plane-up-slash = fa-icon.with("\u{e22e}") +#let fa-play-pause = fa-icon.with("\u{e22f}") +#let fa-puzzle-piece-alt = fa-icon.with("\u{e231}") +#let fa-puzzle-piece-simple = fa-icon.with("\u{e231}") +#let fa-quotes = fa-icon.with("\u{e234}") +#let fa-pro = fa-icon.with("\u{e235}") +#let fa-rectangle-pro = fa-icon.with("\u{e235}") +#let fa-rectangle-terminal = fa-icon.with("\u{e236}") +#let fa-rectangle-vertical-history = fa-icon.with("\u{e237}") +#let fa-reel = fa-icon.with("\u{e238}") +#let fa-reply-clock = fa-icon.with("\u{e239}") +#let fa-reply-time = fa-icon.with("\u{e239}") +#let fa-restroom-simple = fa-icon.with("\u{e23a}") +#let fa-rhombus = fa-icon.with("\u{e23b}") +#let fa-rotate-exclamation = fa-icon.with("\u{e23c}") +#let fa-rupiah-sign = fa-icon.with("\u{e23d}") +#let fa-screencast = fa-icon.with("\u{e23e}") +#let fa-scribble = fa-icon.with("\u{e23f}") +#let fa-sd-cards = fa-icon.with("\u{e240}") +#let fa-seal = fa-icon.with("\u{e241}") +#let fa-seal-exclamation = fa-icon.with("\u{e242}") +#let fa-seal-question = fa-icon.with("\u{e243}") +#let fa-seat-airline = fa-icon.with("\u{e244}") +#let fa-shelves-empty = fa-icon.with("\u{e246}") +#let fa-shield-exclamation = fa-icon.with("\u{e247}") +#let fa-shield-keyhole = fa-icon.with("\u{e248}") +#let fa-shield-minus = fa-icon.with("\u{e249}") +#let fa-shield-plus = fa-icon.with("\u{e24a}") +#let fa-shield-slash = fa-icon.with("\u{e24b}") +#let fa-shield-times = fa-icon.with("\u{e24c}") +#let fa-shield-xmark = fa-icon.with("\u{e24c}") +#let fa-shower-alt = fa-icon.with("\u{e24d}") +#let fa-shower-down = fa-icon.with("\u{e24d}") +#let fa-sidebar = fa-icon.with("\u{e24e}") +#let fa-sidebar-flip = fa-icon.with("\u{e24f}") +#let fa-signal-stream-slash = fa-icon.with("\u{e250}") +#let fa-sim-cards = fa-icon.with("\u{e251}") +#let fa-slider = fa-icon.with("\u{e252}") +#let fa-sliders-simple = fa-icon.with("\u{e253}") +#let fa-split = fa-icon.with("\u{e254}") +#let fa-square-0 = fa-icon.with("\u{e255}") +#let fa-square-1 = fa-icon.with("\u{e256}") +#let fa-square-2 = fa-icon.with("\u{e257}") +#let fa-square-3 = fa-icon.with("\u{e258}") +#let fa-square-4 = fa-icon.with("\u{e259}") +#let fa-square-5 = fa-icon.with("\u{e25a}") +#let fa-square-6 = fa-icon.with("\u{e25b}") +#let fa-square-7 = fa-icon.with("\u{e25c}") +#let fa-square-8 = fa-icon.with("\u{e25d}") +#let fa-square-9 = fa-icon.with("\u{e25e}") +#let fa-square-a = fa-icon.with("\u{e25f}") +#let fa-square-ampersand = fa-icon.with("\u{e260}") +#let fa-square-arrow-down-left = fa-icon.with("\u{e261}") +#let fa-square-arrow-down-right = fa-icon.with("\u{e262}") +#let fa-square-arrow-up-left = fa-icon.with("\u{e263}") +#let fa-square-b = fa-icon.with("\u{e264}") +#let fa-square-bolt = fa-icon.with("\u{e265}") +#let fa-square-c = fa-icon.with("\u{e266}") +#let fa-square-code = fa-icon.with("\u{e267}") +#let fa-square-d = fa-icon.with("\u{e268}") +#let fa-square-dashed = fa-icon.with("\u{e269}") +#let fa-square-divide = fa-icon.with("\u{e26a}") +#let fa-square-down-left = fa-icon.with("\u{e26b}") +#let fa-square-down-right = fa-icon.with("\u{e26c}") +#let fa-square-e = fa-icon.with("\u{e26d}") +#let fa-square-ellipsis = fa-icon.with("\u{e26e}") +#let fa-square-ellipsis-vertical = fa-icon.with("\u{e26f}") +#let fa-square-f = fa-icon.with("\u{e270}") +#let fa-square-g = fa-icon.with("\u{e271}") +#let fa-square-i = fa-icon.with("\u{e272}") +#let fa-square-j = fa-icon.with("\u{e273}") +#let fa-square-k = fa-icon.with("\u{e274}") +#let fa-square-l = fa-icon.with("\u{e275}") +#let fa-square-m = fa-icon.with("\u{e276}") +#let fa-square-n = fa-icon.with("\u{e277}") +#let fa-square-o = fa-icon.with("\u{e278}") +#let fa-square-p = fa-icon.with("\u{e279}") +#let fa-phone-square-down = fa-icon.with("\u{e27a}") +#let fa-square-phone-hangup = fa-icon.with("\u{e27a}") +#let fa-square-q = fa-icon.with("\u{e27b}") +#let fa-square-r = fa-icon.with("\u{e27c}") +#let fa-square-s = fa-icon.with("\u{e27d}") +#let fa-square-small = fa-icon.with("\u{e27e}") +#let fa-square-star = fa-icon.with("\u{e27f}") +#let fa-square-t = fa-icon.with("\u{e280}") +#let fa-square-u = fa-icon.with("\u{e281}") +#let fa-square-up-left = fa-icon.with("\u{e282}") +#let fa-square-user = fa-icon.with("\u{e283}") +#let fa-square-v = fa-icon.with("\u{e284}") +#let fa-square-w = fa-icon.with("\u{e285}") +#let fa-square-x = fa-icon.with("\u{e286}") +#let fa-square-y = fa-icon.with("\u{e287}") +#let fa-square-z = fa-icon.with("\u{e288}") +#let fa-stairs = fa-icon.with("\u{e289}") +#let fa-rectangle-sd = fa-icon.with("\u{e28a}") +#let fa-standard-definition = fa-icon.with("\u{e28a}") +#let fa-star-sharp = fa-icon.with("\u{e28b}") +#let fa-star-sharp-half = fa-icon.with("\u{e28c}") +#let fa-star-sharp-half-alt = fa-icon.with("\u{e28d}") +#let fa-star-sharp-half-stroke = fa-icon.with("\u{e28d}") +#let fa-starfighter-alt-advanced = fa-icon.with("\u{e28e}") +#let fa-starfighter-twin-ion-engine-advanced = fa-icon.with("\u{e28e}") +#let fa-sun-alt = fa-icon.with("\u{e28f}") +#let fa-sun-bright = fa-icon.with("\u{e28f}") +#let fa-table-layout = fa-icon.with("\u{e290}") +#let fa-table-pivot = fa-icon.with("\u{e291}") +#let fa-rows = fa-icon.with("\u{e292}") +#let fa-table-rows = fa-icon.with("\u{e292}") +#let fa-table-tree = fa-icon.with("\u{e293}") +#let fa-tally-1 = fa-icon.with("\u{e294}") +#let fa-tally-2 = fa-icon.with("\u{e295}") +#let fa-tally-3 = fa-icon.with("\u{e296}") +#let fa-tally-4 = fa-icon.with("\u{e297}") +#let fa-taxi-bus = fa-icon.with("\u{e298}") +#let fa-temperature-list = fa-icon.with("\u{e299}") +#let fa-ticket-airline = fa-icon.with("\u{e29a}") +#let fa-ticket-perforated-plane = fa-icon.with("\u{e29a}") +#let fa-ticket-plane = fa-icon.with("\u{e29a}") +#let fa-tickets-airline = fa-icon.with("\u{e29b}") +#let fa-tickets-perforated-plane = fa-icon.with("\u{e29b}") +#let fa-tickets-plane = fa-icon.with("\u{e29b}") +#let fa-timeline = fa-icon.with("\u{e29c}") +#let fa-timeline-arrow = fa-icon.with("\u{e29d}") +#let fa-timer = fa-icon.with("\u{e29e}") +#let fa-toilet-paper-reverse = fa-icon.with("\u{e2a0}") +#let fa-toilet-paper-under = fa-icon.with("\u{e2a0}") +#let fa-toilet-paper-reverse-slash = fa-icon.with("\u{e2a1}") +#let fa-toilet-paper-under-slash = fa-icon.with("\u{e2a1}") +#let fa-tower-control = fa-icon.with("\u{e2a2}") +#let fa-subway-tunnel = fa-icon.with("\u{e2a3}") +#let fa-train-subway-tunnel = fa-icon.with("\u{e2a3}") +#let fa-transformer-bolt = fa-icon.with("\u{e2a4}") +#let fa-transporter-4 = fa-icon.with("\u{e2a5}") +#let fa-transporter-5 = fa-icon.with("\u{e2a6}") +#let fa-transporter-6 = fa-icon.with("\u{e2a7}") +#let fa-transporter-7 = fa-icon.with("\u{e2a8}") +#let fa-trash-can-check = fa-icon.with("\u{e2a9}") +#let fa-trash-can-clock = fa-icon.with("\u{e2aa}") +#let fa-trash-can-list = fa-icon.with("\u{e2ab}") +#let fa-trash-can-plus = fa-icon.with("\u{e2ac}") +#let fa-trash-alt-slash = fa-icon.with("\u{e2ad}") +#let fa-trash-can-slash = fa-icon.with("\u{e2ad}") +#let fa-trash-can-xmark = fa-icon.with("\u{e2ae}") +#let fa-trash-check = fa-icon.with("\u{e2af}") +#let fa-trash-clock = fa-icon.with("\u{e2b0}") +#let fa-trash-list = fa-icon.with("\u{e2b1}") +#let fa-trash-plus = fa-icon.with("\u{e2b2}") +#let fa-trash-slash = fa-icon.with("\u{e2b3}") +#let fa-trash-xmark = fa-icon.with("\u{e2b4}") +#let fa-truck-container-empty = fa-icon.with("\u{e2b5}") +#let fa-truck-flatbed = fa-icon.with("\u{e2b6}") +#let fa-truck-front = fa-icon.with("\u{e2b7}") +#let fa-truck-tow = fa-icon.with("\u{e2b8}") +#let fa-teletype-answer = fa-icon.with("\u{e2b9}") +#let fa-tty-answer = fa-icon.with("\u{e2b9}") +#let fa-tugrik-sign = fa-icon.with("\u{e2ba}") +#let fa-try = fa-icon.with("\u{e2bb}") +#let fa-turkish-lira = fa-icon.with("\u{e2bb}") +#let fa-turkish-lira-sign = fa-icon.with("\u{e2bb}") +#let fa-umbrella-alt = fa-icon.with("\u{e2bc}") +#let fa-umbrella-simple = fa-icon.with("\u{e2bc}") +#let fa-up-left = fa-icon.with("\u{e2bd}") +#let fa-up-right = fa-icon.with("\u{e2be}") +#let fa-user-bounty-hunter = fa-icon.with("\u{e2bf}") +#let fa-user-pilot = fa-icon.with("\u{e2c0}") +#let fa-user-pilot-tie = fa-icon.with("\u{e2c1}") +#let fa-user-shakespeare = fa-icon.with("\u{e2c2}") +#let fa-utility-pole = fa-icon.with("\u{e2c3}") +#let fa-utility-pole-double = fa-icon.with("\u{e2c4}") +#let fa-vault = fa-icon.with("\u{e2c5}") +#let fa-video-arrow-down-left = fa-icon.with("\u{e2c8}") +#let fa-video-arrow-up-right = fa-icon.with("\u{e2c9}") +#let fa-magic-wand-sparkles = fa-icon.with("\u{e2ca}") +#let fa-wand-magic-sparkles = fa-icon.with("\u{e2ca}") +#let fa-watch-apple = fa-icon.with("\u{e2cb}") +#let fa-watch-smart = fa-icon.with("\u{e2cc}") +#let fa-wheat-alt = fa-icon.with("\u{e2cd}") +#let fa-wheat-awn = fa-icon.with("\u{e2cd}") +#let fa-wheelchair-alt = fa-icon.with("\u{e2ce}") +#let fa-wheelchair-move = fa-icon.with("\u{e2ce}") +#let fa-wifi-exclamation = fa-icon.with("\u{e2cf}") +#let fa-wirsindhandwerk = fa-icon.with("\u{e2d0}") +#let fa-wsh = fa-icon.with("\u{e2d0}") +#let fa-wrench-simple = fa-icon.with("\u{e2d1}") +#let fa-robot-astromech = fa-icon.with("\u{e2d2}") +#let fa-360-degrees = fa-icon.with("\u{e2dc}") +#let fa-aperture = fa-icon.with("\u{e2df}") +#let fa-arrow-turn-down-left = fa-icon.with("\u{e2e1}") +#let fa-balloon = fa-icon.with("\u{e2e3}") +#let fa-balloons = fa-icon.with("\u{e2e4}") +#let fa-banana = fa-icon.with("\u{e2e5}") +#let fa-bangladeshi-taka-sign = fa-icon.with("\u{e2e6}") +#let fa-bench-tree = fa-icon.with("\u{e2e7}") +#let fa-blueberries = fa-icon.with("\u{e2e8}") +#let fa-bowl-chopsticks = fa-icon.with("\u{e2e9}") +#let fa-bowl-chopsticks-noodles = fa-icon.with("\u{e2ea}") +#let fa-bowl-rice = fa-icon.with("\u{e2eb}") +#let fa-briefcase-arrow-right = fa-icon.with("\u{e2f2}") +#let fa-citrus = fa-icon.with("\u{e2f4}") +#let fa-citrus-slice = fa-icon.with("\u{e2f5}") +#let fa-coconut = fa-icon.with("\u{e2f6}") +#let fa-desktop-slash = fa-icon.with("\u{e2fa}") +#let fa-display-slash = fa-icon.with("\u{e2fa}") +#let fa-exploding-head = fa-icon.with("\u{e2fe}") +#let fa-face-explode = fa-icon.with("\u{e2fe}") +#let fa-face-viewfinder = fa-icon.with("\u{e2ff}") +#let fa-family = fa-icon.with("\u{e300}") +#let fa-family-dress = fa-icon.with("\u{e301}") +#let fa-family-pants = fa-icon.with("\u{e302}") +#let fa-fence = fa-icon.with("\u{e303}") +#let fa-fish-bones = fa-icon.with("\u{e304}") +#let fa-grapes = fa-icon.with("\u{e306}") +#let fa-kiwi-fruit = fa-icon.with("\u{e30c}") +#let fa-mango = fa-icon.with("\u{e30f}") +#let fa-melon = fa-icon.with("\u{e310}") +#let fa-melon-slice = fa-icon.with("\u{e311}") +#let fa-money-from-bracket = fa-icon.with("\u{e312}") +#let fa-money-simple-from-bracket = fa-icon.with("\u{e313}") +#let fa-olive = fa-icon.with("\u{e316}") +#let fa-olive-branch = fa-icon.with("\u{e317}") +#let fa-option = fa-icon.with("\u{e318}") +#let fa-party-bell = fa-icon.with("\u{e31a}") +#let fa-party-horn = fa-icon.with("\u{e31b}") +#let fa-peapod = fa-icon.with("\u{e31c}") +#let fa-person-pregnant = fa-icon.with("\u{e31e}") +#let fa-pineapple = fa-icon.with("\u{e31f}") +#let fa-rectangle-code = fa-icon.with("\u{e322}") +#let fa-rectangles-mixed = fa-icon.with("\u{e323}") +#let fa-roller-coaster = fa-icon.with("\u{e324}") +#let fa-square-quote = fa-icon.with("\u{e329}") +#let fa-square-terminal = fa-icon.with("\u{e32a}") +#let fa-strawberry = fa-icon.with("\u{e32b}") +#let fa-table-picnic = fa-icon.with("\u{e32d}") +#let fa-thought-bubble = fa-icon.with("\u{e32e}") +#let fa-tick = fa-icon.with("\u{e32f}") +#let fa-tomato = fa-icon.with("\u{e330}") +#let fa-turn-down-left = fa-icon.with("\u{e331}") +#let fa-user-police = fa-icon.with("\u{e333}") +#let fa-user-police-tie = fa-icon.with("\u{e334}") +#let fa-watermelon-slice = fa-icon.with("\u{e337}") +#let fa-wheat-awn-slash = fa-icon.with("\u{e338}") +#let fa-wheat-slash = fa-icon.with("\u{e339}") +#let fa-badminton = fa-icon.with("\u{e33a}") +#let fa-binary = fa-icon.with("\u{e33b}") +#let fa-binary-circle-check = fa-icon.with("\u{e33c}") +#let fa-binary-lock = fa-icon.with("\u{e33d}") +#let fa-binary-slash = fa-icon.with("\u{e33e}") +#let fa-boot-heeled = fa-icon.with("\u{e33f}") +#let fa-bots = fa-icon.with("\u{e340}") +#let fa-car-bolt = fa-icon.with("\u{e341}") +#let fa-car-circle-bolt = fa-icon.with("\u{e342}") +#let fa-car-mirrors = fa-icon.with("\u{e343}") +#let fa-car-side-bolt = fa-icon.with("\u{e344}") +#let fa-clock-eight = fa-icon.with("\u{e345}") +#let fa-clock-eight-thirty = fa-icon.with("\u{e346}") +#let fa-clock-eleven = fa-icon.with("\u{e347}") +#let fa-clock-eleven-thirty = fa-icon.with("\u{e348}") +#let fa-clock-five = fa-icon.with("\u{e349}") +#let fa-clock-five-thirty = fa-icon.with("\u{e34a}") +#let fa-clock-four-thirty = fa-icon.with("\u{e34b}") +#let fa-clock-nine = fa-icon.with("\u{e34c}") +#let fa-clock-nine-thirty = fa-icon.with("\u{e34d}") +#let fa-clock-one = fa-icon.with("\u{e34e}") +#let fa-clock-one-thirty = fa-icon.with("\u{e34f}") +#let fa-clock-seven = fa-icon.with("\u{e350}") +#let fa-clock-seven-thirty = fa-icon.with("\u{e351}") +#let fa-clock-six = fa-icon.with("\u{e352}") +#let fa-clock-six-thirty = fa-icon.with("\u{e353}") +#let fa-clock-ten = fa-icon.with("\u{e354}") +#let fa-clock-ten-thirty = fa-icon.with("\u{e355}") +#let fa-clock-three = fa-icon.with("\u{e356}") +#let fa-clock-three-thirty = fa-icon.with("\u{e357}") +#let fa-clock-twelve = fa-icon.with("\u{e358}") +#let fa-clock-twelve-thirty = fa-icon.with("\u{e359}") +#let fa-clock-two = fa-icon.with("\u{e35a}") +#let fa-clock-two-thirty = fa-icon.with("\u{e35b}") +#let fa-cloud-check = fa-icon.with("\u{e35c}") +#let fa-cloud-minus = fa-icon.with("\u{e35d}") +#let fa-cloud-plus = fa-icon.with("\u{e35e}") +#let fa-cloud-xmark = fa-icon.with("\u{e35f}") +#let fa-cmplid = fa-icon.with("\u{e360}") +#let fa-columns-3 = fa-icon.with("\u{e361}") +#let fa-crystal-ball = fa-icon.with("\u{e362}") +#let fa-cup-straw = fa-icon.with("\u{e363}") +#let fa-cup-straw-swoosh = fa-icon.with("\u{e364}") +#let fa-distribute-spacing-horizontal = fa-icon.with("\u{e365}") +#let fa-distribute-spacing-vertical = fa-icon.with("\u{e366}") +#let fa-eyes = fa-icon.with("\u{e367}") +#let fa-face-angry-horns = fa-icon.with("\u{e368}") +#let fa-face-anguished = fa-icon.with("\u{e369}") +#let fa-face-anxious-sweat = fa-icon.with("\u{e36a}") +#let fa-face-astonished = fa-icon.with("\u{e36b}") +#let fa-face-confounded = fa-icon.with("\u{e36c}") +#let fa-face-confused = fa-icon.with("\u{e36d}") +#let fa-face-cowboy-hat = fa-icon.with("\u{e36e}") +#let fa-face-disappointed = fa-icon.with("\u{e36f}") +#let fa-face-disguise = fa-icon.with("\u{e370}") +#let fa-face-downcast-sweat = fa-icon.with("\u{e371}") +#let fa-face-drooling = fa-icon.with("\u{e372}") +#let fa-face-expressionless = fa-icon.with("\u{e373}") +#let fa-face-eyes-xmarks = fa-icon.with("\u{e374}") +#let fa-face-fearful = fa-icon.with("\u{e375}") +#let fa-face-frown-slight = fa-icon.with("\u{e376}") +#let fa-face-glasses = fa-icon.with("\u{e377}") +#let fa-face-hand-over-mouth = fa-icon.with("\u{e378}") +#let fa-face-hand-yawn = fa-icon.with("\u{e379}") +#let fa-face-head-bandage = fa-icon.with("\u{e37a}") +#let fa-face-hushed = fa-icon.with("\u{e37b}") +#let fa-face-icicles = fa-icon.with("\u{e37c}") +#let fa-face-kiss-closed-eyes = fa-icon.with("\u{e37d}") +#let fa-face-lying = fa-icon.with("\u{e37e}") +#let fa-face-mask = fa-icon.with("\u{e37f}") +#let fa-face-monocle = fa-icon.with("\u{e380}") +#let fa-face-nauseated = fa-icon.with("\u{e381}") +#let fa-face-nose-steam = fa-icon.with("\u{e382}") +#let fa-face-party = fa-icon.with("\u{e383}") +#let fa-face-pensive = fa-icon.with("\u{e384}") +#let fa-face-persevering = fa-icon.with("\u{e385}") +#let fa-face-pleading = fa-icon.with("\u{e386}") +#let fa-face-pouting = fa-icon.with("\u{e387}") +#let fa-face-raised-eyebrow = fa-icon.with("\u{e388}") +#let fa-face-relieved = fa-icon.with("\u{e389}") +#let fa-face-sad-sweat = fa-icon.with("\u{e38a}") +#let fa-face-scream = fa-icon.with("\u{e38b}") +#let fa-face-shush = fa-icon.with("\u{e38c}") +#let fa-face-sleeping = fa-icon.with("\u{e38d}") +#let fa-face-sleepy = fa-icon.with("\u{e38e}") +#let fa-face-smile-halo = fa-icon.with("\u{e38f}") +#let fa-face-smile-hearts = fa-icon.with("\u{e390}") +#let fa-face-smile-horns = fa-icon.with("\u{e391}") +#let fa-face-smile-relaxed = fa-icon.with("\u{e392}") +#let fa-face-smile-tear = fa-icon.with("\u{e393}") +#let fa-face-smile-tongue = fa-icon.with("\u{e394}") +#let fa-face-smile-upside-down = fa-icon.with("\u{e395}") +#let fa-face-smiling-hands = fa-icon.with("\u{e396}") +#let fa-face-smirking = fa-icon.with("\u{e397}") +#let fa-face-sunglasses = fa-icon.with("\u{e398}") +#let fa-face-swear = fa-icon.with("\u{e399}") +#let fa-face-thermometer = fa-icon.with("\u{e39a}") +#let fa-face-thinking = fa-icon.with("\u{e39b}") +#let fa-face-tissue = fa-icon.with("\u{e39c}") +#let fa-face-tongue-money = fa-icon.with("\u{e39d}") +#let fa-face-tongue-sweat = fa-icon.with("\u{e39e}") +#let fa-face-unamused = fa-icon.with("\u{e39f}") +#let fa-face-vomit = fa-icon.with("\u{e3a0}") +#let fa-face-weary = fa-icon.with("\u{e3a1}") +#let fa-face-woozy = fa-icon.with("\u{e3a2}") +#let fa-face-worried = fa-icon.with("\u{e3a3}") +#let fa-face-zany = fa-icon.with("\u{e3a4}") +#let fa-face-zipper = fa-icon.with("\u{e3a5}") +#let fa-file-lock = fa-icon.with("\u{e3a6}") +#let fa-file-slash = fa-icon.with("\u{e3a7}") +#let fa-fishing-rod = fa-icon.with("\u{e3a8}") +#let fa-flying-disc = fa-icon.with("\u{e3a9}") +#let fa-gallery-thumbnails = fa-icon.with("\u{e3aa}") +#let fa-goal-net = fa-icon.with("\u{e3ab}") +#let fa-golf-flag-hole = fa-icon.with("\u{e3ac}") +#let fa-grid-dividers = fa-icon.with("\u{e3ad}") +#let fa-hockey-stick-puck = fa-icon.with("\u{e3ae}") +#let fa-home-lg = fa-icon.with("\u{e3af}") +#let fa-house-chimney = fa-icon.with("\u{e3af}") +#let fa-house-chimney-blank = fa-icon.with("\u{e3b0}") +#let fa-house-crack = fa-icon.with("\u{e3b1}") +#let fa-house-medical = fa-icon.with("\u{e3b2}") +#let fa-house-window = fa-icon.with("\u{e3b3}") +#let fa-key-skeleton-left-right = fa-icon.with("\u{e3b4}") +#let fa-lacrosse-stick = fa-icon.with("\u{e3b5}") +#let fa-lacrosse-stick-ball = fa-icon.with("\u{e3b6}") +#let fa-mask-snorkel = fa-icon.with("\u{e3b7}") +#let fa-message-bot = fa-icon.with("\u{e3b8}") +#let fa-moped = fa-icon.with("\u{e3b9}") +#let fa-nesting-dolls = fa-icon.with("\u{e3ba}") +#let fa-objects-align-bottom = fa-icon.with("\u{e3bb}") +#let fa-objects-align-center-horizontal = fa-icon.with("\u{e3bc}") +#let fa-objects-align-center-vertical = fa-icon.with("\u{e3bd}") +#let fa-objects-align-left = fa-icon.with("\u{e3be}") +#let fa-objects-align-right = fa-icon.with("\u{e3bf}") +#let fa-objects-align-top = fa-icon.with("\u{e3c0}") +#let fa-objects-column = fa-icon.with("\u{e3c1}") +#let fa-paperclip-vertical = fa-icon.with("\u{e3c2}") +#let fa-pinata = fa-icon.with("\u{e3c3}") +#let fa-pipe-smoking = fa-icon.with("\u{e3c4}") +#let fa-pool-8-ball = fa-icon.with("\u{e3c5}") +#let fa-rugby-ball = fa-icon.with("\u{e3c6}") +#let fa-shirt-long-sleeve = fa-icon.with("\u{e3c7}") +#let fa-shirt-running = fa-icon.with("\u{e3c8}") +#let fa-shirt-tank-top = fa-icon.with("\u{e3c9}") +#let fa-signature-lock = fa-icon.with("\u{e3ca}") +#let fa-signature-slash = fa-icon.with("\u{e3cb}") +#let fa-ski-boot = fa-icon.with("\u{e3cc}") +#let fa-ski-boot-ski = fa-icon.with("\u{e3cd}") +#let fa-slot-machine = fa-icon.with("\u{e3ce}") +#let fa-teddy-bear = fa-icon.with("\u{e3cf}") +#let fa-truck-bolt = fa-icon.with("\u{e3d0}") +#let fa-uniform-martial-arts = fa-icon.with("\u{e3d1}") +#let fa-user-chef = fa-icon.with("\u{e3d2}") +#let fa-user-hair-buns = fa-icon.with("\u{e3d3}") +#let fa-arrow-left-long-to-line = fa-icon.with("\u{e3d4}") +#let fa-arrow-right-long-to-line = fa-icon.with("\u{e3d5}") +#let fa-arrow-turn-down-right = fa-icon.with("\u{e3d6}") +#let fa-bagel = fa-icon.with("\u{e3d7}") +#let fa-baguette = fa-icon.with("\u{e3d8}") +#let fa-bilibili = fa-icon.with("\u{e3d9}") +#let fa-blanket-fire = fa-icon.with("\u{e3da}") +#let fa-block-brick = fa-icon.with("\u{e3db}") +#let fa-wall-brick = fa-icon.with("\u{e3db}") +#let fa-block-brick-fire = fa-icon.with("\u{e3dc}") +#let fa-firewall = fa-icon.with("\u{e3dc}") +#let fa-block-question = fa-icon.with("\u{e3dd}") +#let fa-bowl-scoop = fa-icon.with("\u{e3de}") +#let fa-bowl-shaved-ice = fa-icon.with("\u{e3de}") +#let fa-bowl-scoops = fa-icon.with("\u{e3df}") +#let fa-bowl-spoon = fa-icon.with("\u{e3e0}") +#let fa-bread-slice-butter = fa-icon.with("\u{e3e1}") +#let fa-broccoli = fa-icon.with("\u{e3e2}") +#let fa-burger-lettuce = fa-icon.with("\u{e3e3}") +#let fa-butter = fa-icon.with("\u{e3e4}") +#let fa-cake-slice = fa-icon.with("\u{e3e5}") +#let fa-shortcake = fa-icon.with("\u{e3e5}") +#let fa-can-food = fa-icon.with("\u{e3e6}") +#let fa-candy = fa-icon.with("\u{e3e7}") +#let fa-candy-bar = fa-icon.with("\u{e3e8}") +#let fa-chocolate-bar = fa-icon.with("\u{e3e8}") +#let fa-card-club = fa-icon.with("\u{e3e9}") +#let fa-card-diamond = fa-icon.with("\u{e3ea}") +#let fa-card-heart = fa-icon.with("\u{e3eb}") +#let fa-card-spade = fa-icon.with("\u{e3ec}") +#let fa-cards = fa-icon.with("\u{e3ed}") +#let fa-cart-arrow-up = fa-icon.with("\u{e3ee}") +#let fa-cart-circle-arrow-down = fa-icon.with("\u{e3ef}") +#let fa-cart-circle-arrow-up = fa-icon.with("\u{e3f0}") +#let fa-cart-circle-check = fa-icon.with("\u{e3f1}") +#let fa-cart-circle-exclamation = fa-icon.with("\u{e3f2}") +#let fa-cart-circle-plus = fa-icon.with("\u{e3f3}") +#let fa-cart-circle-xmark = fa-icon.with("\u{e3f4}") +#let fa-cent-sign = fa-icon.with("\u{e3f5}") +#let fa-chestnut = fa-icon.with("\u{e3f6}") +#let fa-chopsticks = fa-icon.with("\u{e3f7}") +#let fa-circle-quarters = fa-icon.with("\u{e3f8}") +#let fa-code-pull-request-closed = fa-icon.with("\u{e3f9}") +#let fa-code-pull-request-draft = fa-icon.with("\u{e3fa}") +#let fa-coin-blank = fa-icon.with("\u{e3fb}") +#let fa-coin-front = fa-icon.with("\u{e3fc}") +#let fa-coin-vertical = fa-icon.with("\u{e3fd}") +#let fa-corner = fa-icon.with("\u{e3fe}") +#let fa-crab = fa-icon.with("\u{e3ff}") +#let fa-creemee = fa-icon.with("\u{e400}") +#let fa-soft-serve = fa-icon.with("\u{e400}") +#let fa-cucumber = fa-icon.with("\u{e401}") +#let fa-cupcake = fa-icon.with("\u{e402}") +#let fa-custard = fa-icon.with("\u{e403}") +#let fa-dash = fa-icon.with("\u{e404}") +#let fa-minus-large = fa-icon.with("\u{e404}") +#let fa-diamond-exclamation = fa-icon.with("\u{e405}") +#let fa-donut = fa-icon.with("\u{e406}") +#let fa-doughnut = fa-icon.with("\u{e406}") +#let fa-down-from-dotted-line = fa-icon.with("\u{e407}") +#let fa-down-to-dotted-line = fa-icon.with("\u{e408}") +#let fa-face-awesome = fa-icon.with("\u{e409}") +#let fa-gave-dandy = fa-icon.with("\u{e409}") +#let fa-falafel = fa-icon.with("\u{e40a}") +#let fa-flatbread = fa-icon.with("\u{e40b}") +#let fa-flatbread-stuffed = fa-icon.with("\u{e40c}") +#let fa-fondue-pot = fa-icon.with("\u{e40d}") +#let fa-garlic = fa-icon.with("\u{e40e}") +#let fa-golang = fa-icon.with("\u{e40f}") +#let fa-grip-dots = fa-icon.with("\u{e410}") +#let fa-grip-dots-vertical = fa-icon.with("\u{e411}") +#let fa-h5 = fa-icon.with("\u{e412}") +#let fa-h6 = fa-icon.with("\u{e413}") +#let fa-hammer-crash = fa-icon.with("\u{e414}") +#let fa-hashtag-lock = fa-icon.with("\u{e415}") +#let fa-hexagon-check = fa-icon.with("\u{e416}") +#let fa-hexagon-exclamation = fa-icon.with("\u{e417}") +#let fa-honey-pot = fa-icon.with("\u{e418}") +#let fa-hose = fa-icon.with("\u{e419}") +#let fa-hose-reel = fa-icon.with("\u{e41a}") +#let fa-hourglass-clock = fa-icon.with("\u{e41b}") +#let fa-100 = fa-icon.with("\u{e41c}") +#let fa-hundred-points = fa-icon.with("\u{e41c}") +#let fa-leafy-green = fa-icon.with("\u{e41d}") +#let fa-left-long-to-line = fa-icon.with("\u{e41e}") +#let fa-light-emergency = fa-icon.with("\u{e41f}") +#let fa-light-emergency-on = fa-icon.with("\u{e420}") +#let fa-lobster = fa-icon.with("\u{e421}") +#let fa-lock-a = fa-icon.with("\u{e422}") +#let fa-lock-hashtag = fa-icon.with("\u{e423}") +#let fa-lollipop = fa-icon.with("\u{e424}") +#let fa-lollypop = fa-icon.with("\u{e424}") +#let fa-mushroom = fa-icon.with("\u{e425}") +#let fa-octagon-check = fa-icon.with("\u{e426}") +#let fa-onion = fa-icon.with("\u{e427}") +#let fa-page = fa-icon.with("\u{e428}") +#let fa-file-caret-down = fa-icon.with("\u{e429}") +#let fa-page-caret-down = fa-icon.with("\u{e429}") +#let fa-file-caret-up = fa-icon.with("\u{e42a}") +#let fa-page-caret-up = fa-icon.with("\u{e42a}") +#let fa-pan-food = fa-icon.with("\u{e42b}") +#let fa-pan-frying = fa-icon.with("\u{e42c}") +#let fa-pancakes = fa-icon.with("\u{e42d}") +#let fa-panel-ews = fa-icon.with("\u{e42e}") +#let fa-panel-fire = fa-icon.with("\u{e42f}") +#let fa-peanut = fa-icon.with("\u{e430}") +#let fa-peanuts = fa-icon.with("\u{e431}") +#let fa-pepper = fa-icon.with("\u{e432}") +#let fa-person-to-door = fa-icon.with("\u{e433}") +#let fa-phone-intercom = fa-icon.with("\u{e434}") +#let fa-pickleball = fa-icon.with("\u{e435}") +#let fa-pipe-circle-check = fa-icon.with("\u{e436}") +#let fa-pipe-collar = fa-icon.with("\u{e437}") +#let fa-pipe-section = fa-icon.with("\u{e438}") +#let fa-pipe-valve = fa-icon.with("\u{e439}") +#let fa-pix = fa-icon.with("\u{e43a}") +#let fa-plate-utensils = fa-icon.with("\u{e43b}") +#let fa-plus-minus = fa-icon.with("\u{e43c}") +#let fa-pompebled = fa-icon.with("\u{e43d}") +#let fa-popsicle = fa-icon.with("\u{e43e}") +#let fa-pot-food = fa-icon.with("\u{e43f}") +#let fa-potato = fa-icon.with("\u{e440}") +#let fa-pretzel = fa-icon.with("\u{e441}") +#let fa-pump = fa-icon.with("\u{e442}") +#let fa-puzzle = fa-icon.with("\u{e443}") +#let fa-right-long-to-line = fa-icon.with("\u{e444}") +#let fa-sailboat = fa-icon.with("\u{e445}") +#let fa-salt-shaker = fa-icon.with("\u{e446}") +#let fa-section = fa-icon.with("\u{e447}") +#let fa-shrimp = fa-icon.with("\u{e448}") +#let fa-shutters = fa-icon.with("\u{e449}") +#let fa-sitrox = fa-icon.with("\u{e44a}") +#let fa-sportsball = fa-icon.with("\u{e44b}") +#let fa-sprinkler-ceiling = fa-icon.with("\u{e44c}") +#let fa-square-a-lock = fa-icon.with("\u{e44d}") +#let fa-square-quarters = fa-icon.with("\u{e44e}") +#let fa-square-ring = fa-icon.with("\u{e44f}") +#let fa-squid = fa-icon.with("\u{e450}") +#let fa-tamale = fa-icon.with("\u{e451}") +#let fa-tank-water = fa-icon.with("\u{e452}") +#let fa-train-track = fa-icon.with("\u{e453}") +#let fa-train-tunnel = fa-icon.with("\u{e454}") +#let fa-turn-down-right = fa-icon.with("\u{e455}") +#let fa-up-from-dotted-line = fa-icon.with("\u{e456}") +#let fa-up-to-dotted-line = fa-icon.with("\u{e457}") +#let fa-user-doctor-hair = fa-icon.with("\u{e458}") +#let fa-user-doctor-hair-long = fa-icon.with("\u{e459}") +#let fa-user-hair = fa-icon.with("\u{e45a}") +#let fa-user-hair-long = fa-icon.with("\u{e45b}") +#let fa-business-front = fa-icon.with("\u{e45c}") +#let fa-party-back = fa-icon.with("\u{e45c}") +#let fa-trian-balbot = fa-icon.with("\u{e45c}") +#let fa-user-hair-mullet = fa-icon.with("\u{e45c}") +#let fa-user-nurse-hair = fa-icon.with("\u{e45d}") +#let fa-user-nurse-hair-long = fa-icon.with("\u{e45e}") +#let fa-user-tie-hair = fa-icon.with("\u{e45f}") +#let fa-user-tie-hair-long = fa-icon.with("\u{e460}") +#let fa-user-vneck = fa-icon.with("\u{e461}") +#let fa-user-vneck-hair = fa-icon.with("\u{e462}") +#let fa-user-vneck-hair-long = fa-icon.with("\u{e463}") +#let fa-utensils-slash = fa-icon.with("\u{e464}") +#let fa-vent-damper = fa-icon.with("\u{e465}") +#let fa-waffle = fa-icon.with("\u{e466}") +#let fa-00 = fa-icon.with("\u{e467}") +#let fa-apartment = fa-icon.with("\u{e468}") +#let fa-bird = fa-icon.with("\u{e469}") +#let fa-block = fa-icon.with("\u{e46a}") +#let fa-bowl-soft-serve = fa-icon.with("\u{e46b}") +#let fa-brazilian-real-sign = fa-icon.with("\u{e46c}") +#let fa-cabin = fa-icon.with("\u{e46d}") +#let fa-calendar-circle-exclamation = fa-icon.with("\u{e46e}") +#let fa-calendar-circle-minus = fa-icon.with("\u{e46f}") +#let fa-calendar-circle-plus = fa-icon.with("\u{e470}") +#let fa-calendar-circle-user = fa-icon.with("\u{e471}") +#let fa-calendar-lines-pen = fa-icon.with("\u{e472}") +#let fa-chart-simple = fa-icon.with("\u{e473}") +#let fa-chart-simple-horizontal = fa-icon.with("\u{e474}") +#let fa-diagram-cells = fa-icon.with("\u{e475}") +#let fa-diagram-next = fa-icon.with("\u{e476}") +#let fa-diagram-predecessor = fa-icon.with("\u{e477}") +#let fa-diagram-previous = fa-icon.with("\u{e478}") +#let fa-diagram-subtask = fa-icon.with("\u{e479}") +#let fa-diagram-successor = fa-icon.with("\u{e47a}") +#let fa-earth-oceania = fa-icon.with("\u{e47b}") +#let fa-globe-oceania = fa-icon.with("\u{e47b}") +#let fa-face-beam-hand-over-mouth = fa-icon.with("\u{e47c}") +#let fa-face-clouds = fa-icon.with("\u{e47d}") +#let fa-face-diagonal-mouth = fa-icon.with("\u{e47e}") +#let fa-face-dotted = fa-icon.with("\u{e47f}") +#let fa-face-exhaling = fa-icon.with("\u{e480}") +#let fa-face-hand-peeking = fa-icon.with("\u{e481}") +#let fa-face-holding-back-tears = fa-icon.with("\u{e482}") +#let fa-face-melting = fa-icon.with("\u{e483}") +#let fa-face-saluting = fa-icon.with("\u{e484}") +#let fa-face-spiral-eyes = fa-icon.with("\u{e485}") +#let fa-fort = fa-icon.with("\u{e486}") +#let fa-home-blank = fa-icon.with("\u{e487}") +#let fa-house-blank = fa-icon.with("\u{e487}") +#let fa-square-kanban = fa-icon.with("\u{e488}") +#let fa-square-list = fa-icon.with("\u{e489}") +#let fa-nigiri = fa-icon.with("\u{e48a}") +#let fa-sushi = fa-icon.with("\u{e48a}") +#let fa-maki-roll = fa-icon.with("\u{e48b}") +#let fa-makizushi = fa-icon.with("\u{e48b}") +#let fa-sushi-roll = fa-icon.with("\u{e48b}") +#let fa-album-circle-plus = fa-icon.with("\u{e48c}") +#let fa-album-circle-user = fa-icon.with("\u{e48d}") +#let fa-album-collection-circle-plus = fa-icon.with("\u{e48e}") +#let fa-album-collection-circle-user = fa-icon.with("\u{e48f}") +#let fa-bug-slash = fa-icon.with("\u{e490}") +#let fa-cloud-exclamation = fa-icon.with("\u{e491}") +#let fa-cloud-question = fa-icon.with("\u{e492}") +#let fa-file-circle-info = fa-icon.with("\u{e493}") +#let fa-file-circle-plus = fa-icon.with("\u{e494}") +#let fa-frame = fa-icon.with("\u{e495}") +#let fa-gauge-circle-bolt = fa-icon.with("\u{e496}") +#let fa-gauge-circle-minus = fa-icon.with("\u{e497}") +#let fa-gauge-circle-plus = fa-icon.with("\u{e498}") +#let fa-hashnode = fa-icon.with("\u{e499}") +#let fa-memo-circle-info = fa-icon.with("\u{e49a}") +#let fa-meta = fa-icon.with("\u{e49b}") +#let fa-object-exclude = fa-icon.with("\u{e49c}") +#let fa-object-intersect = fa-icon.with("\u{e49d}") +#let fa-object-subtract = fa-icon.with("\u{e49e}") +#let fa-object-union = fa-icon.with("\u{e49f}") +#let fa-padlet = fa-icon.with("\u{e4a0}") +#let fa-pen-nib-slash = fa-icon.with("\u{e4a1}") +#let fa-rectangle-history = fa-icon.with("\u{e4a2}") +#let fa-rectangle-history-circle-plus = fa-icon.with("\u{e4a3}") +#let fa-rectangle-history-circle-user = fa-icon.with("\u{e4a4}") +#let fa-shop-lock = fa-icon.with("\u{e4a5}") +#let fa-store-lock = fa-icon.with("\u{e4a6}") +#let fa-user-robot-xmarks = fa-icon.with("\u{e4a7}") +#let fa-virus-covid = fa-icon.with("\u{e4a8}") +#let fa-virus-covid-slash = fa-icon.with("\u{e4a9}") +#let fa-anchor-circle-check = fa-icon.with("\u{e4aa}") +#let fa-anchor-circle-exclamation = fa-icon.with("\u{e4ab}") +#let fa-anchor-circle-xmark = fa-icon.with("\u{e4ac}") +#let fa-anchor-lock = fa-icon.with("\u{e4ad}") +#let fa-arrow-down-to-arc = fa-icon.with("\u{e4ae}") +#let fa-arrow-down-up-across-line = fa-icon.with("\u{e4af}") +#let fa-arrow-down-up-lock = fa-icon.with("\u{e4b0}") +#let fa-arrow-right-from-arc = fa-icon.with("\u{e4b1}") +#let fa-arrow-right-to-arc = fa-icon.with("\u{e4b2}") +#let fa-arrow-right-to-city = fa-icon.with("\u{e4b3}") +#let fa-arrow-up-from-arc = fa-icon.with("\u{e4b4}") +#let fa-arrow-up-from-ground-water = fa-icon.with("\u{e4b5}") +#let fa-arrow-up-from-water-pump = fa-icon.with("\u{e4b6}") +#let fa-arrow-up-right-dots = fa-icon.with("\u{e4b7}") +#let fa-arrows-down-to-line = fa-icon.with("\u{e4b8}") +#let fa-arrows-down-to-people = fa-icon.with("\u{e4b9}") +#let fa-arrows-left-right-to-line = fa-icon.with("\u{e4ba}") +#let fa-arrows-spin = fa-icon.with("\u{e4bb}") +#let fa-arrows-split-up-and-left = fa-icon.with("\u{e4bc}") +#let fa-arrows-to-circle = fa-icon.with("\u{e4bd}") +#let fa-arrows-to-dot = fa-icon.with("\u{e4be}") +#let fa-arrows-to-eye = fa-icon.with("\u{e4bf}") +#let fa-arrows-turn-right = fa-icon.with("\u{e4c0}") +#let fa-arrows-turn-to-dots = fa-icon.with("\u{e4c1}") +#let fa-arrows-up-to-line = fa-icon.with("\u{e4c2}") +#let fa-bore-hole = fa-icon.with("\u{e4c3}") +#let fa-bottle-droplet = fa-icon.with("\u{e4c4}") +#let fa-bottle-water = fa-icon.with("\u{e4c5}") +#let fa-bowl-food = fa-icon.with("\u{e4c6}") +#let fa-boxes-packing = fa-icon.with("\u{e4c7}") +#let fa-bridge = fa-icon.with("\u{e4c8}") +#let fa-bridge-circle-check = fa-icon.with("\u{e4c9}") +#let fa-bridge-circle-exclamation = fa-icon.with("\u{e4ca}") +#let fa-bridge-circle-xmark = fa-icon.with("\u{e4cb}") +#let fa-bridge-lock = fa-icon.with("\u{e4cc}") +#let fa-bridge-suspension = fa-icon.with("\u{e4cd}") +#let fa-bridge-water = fa-icon.with("\u{e4ce}") +#let fa-bucket = fa-icon.with("\u{e4cf}") +#let fa-bugs = fa-icon.with("\u{e4d0}") +#let fa-building-circle-arrow-right = fa-icon.with("\u{e4d1}") +#let fa-building-circle-check = fa-icon.with("\u{e4d2}") +#let fa-building-circle-exclamation = fa-icon.with("\u{e4d3}") +#let fa-building-circle-xmark = fa-icon.with("\u{e4d4}") +#let fa-building-flag = fa-icon.with("\u{e4d5}") +#let fa-building-lock = fa-icon.with("\u{e4d6}") +#let fa-building-ngo = fa-icon.with("\u{e4d7}") +#let fa-building-shield = fa-icon.with("\u{e4d8}") +#let fa-building-un = fa-icon.with("\u{e4d9}") +#let fa-building-user = fa-icon.with("\u{e4da}") +#let fa-building-wheat = fa-icon.with("\u{e4db}") +#let fa-burst = fa-icon.with("\u{e4dc}") +#let fa-car-on = fa-icon.with("\u{e4dd}") +#let fa-car-tunnel = fa-icon.with("\u{e4de}") +#let fa-cards-blank = fa-icon.with("\u{e4df}") +#let fa-child-combatant = fa-icon.with("\u{e4e0}") +#let fa-child-rifle = fa-icon.with("\u{e4e0}") +#let fa-children = fa-icon.with("\u{e4e1}") +#let fa-circle-nodes = fa-icon.with("\u{e4e2}") +#let fa-clipboard-question = fa-icon.with("\u{e4e3}") +#let fa-cloud-showers-water = fa-icon.with("\u{e4e4}") +#let fa-computer = fa-icon.with("\u{e4e5}") +#let fa-cubes-stacked = fa-icon.with("\u{e4e6}") +#let fa-down-to-bracket = fa-icon.with("\u{e4e7}") +#let fa-envelope-circle-check = fa-icon.with("\u{e4e8}") +#let fa-explosion = fa-icon.with("\u{e4e9}") +#let fa-ferry = fa-icon.with("\u{e4ea}") +#let fa-file-circle-exclamation = fa-icon.with("\u{e4eb}") +#let fa-file-circle-minus = fa-icon.with("\u{e4ed}") +#let fa-file-circle-question = fa-icon.with("\u{e4ef}") +#let fa-file-shield = fa-icon.with("\u{e4f0}") +#let fa-fire-burner = fa-icon.with("\u{e4f1}") +#let fa-fish-fins = fa-icon.with("\u{e4f2}") +#let fa-flask-vial = fa-icon.with("\u{e4f3}") +#let fa-glass-water = fa-icon.with("\u{e4f4}") +#let fa-glass-water-droplet = fa-icon.with("\u{e4f5}") +#let fa-group-arrows-rotate = fa-icon.with("\u{e4f6}") +#let fa-hand-holding-hand = fa-icon.with("\u{e4f7}") +#let fa-handcuffs = fa-icon.with("\u{e4f8}") +#let fa-hands-bound = fa-icon.with("\u{e4f9}") +#let fa-hands-holding-child = fa-icon.with("\u{e4fa}") +#let fa-hands-holding-circle = fa-icon.with("\u{e4fb}") +#let fa-heart-circle-bolt = fa-icon.with("\u{e4fc}") +#let fa-heart-circle-check = fa-icon.with("\u{e4fd}") +#let fa-heart-circle-exclamation = fa-icon.with("\u{e4fe}") +#let fa-heart-circle-minus = fa-icon.with("\u{e4ff}") +#let fa-heart-circle-plus = fa-icon.with("\u{e500}") +#let fa-heart-circle-xmark = fa-icon.with("\u{e501}") +#let fa-helicopter-symbol = fa-icon.with("\u{e502}") +#let fa-helmet-un = fa-icon.with("\u{e503}") +#let fa-hexagon-image = fa-icon.with("\u{e504}") +#let fa-hexagon-vertical-nft = fa-icon.with("\u{e505}") +#let fa-hill-avalanche = fa-icon.with("\u{e507}") +#let fa-hill-rockslide = fa-icon.with("\u{e508}") +#let fa-house-circle-check = fa-icon.with("\u{e509}") +#let fa-house-circle-exclamation = fa-icon.with("\u{e50a}") +#let fa-house-circle-xmark = fa-icon.with("\u{e50b}") +#let fa-house-fire = fa-icon.with("\u{e50c}") +#let fa-house-flag = fa-icon.with("\u{e50d}") +#let fa-house-flood-water = fa-icon.with("\u{e50e}") +#let fa-house-flood-water-circle-arrow-right = fa-icon.with("\u{e50f}") +#let fa-house-lock = fa-icon.with("\u{e510}") +#let fa-house-medical-circle-check = fa-icon.with("\u{e511}") +#let fa-house-medical-circle-exclamation = fa-icon.with("\u{e512}") +#let fa-house-medical-circle-xmark = fa-icon.with("\u{e513}") +#let fa-house-medical-flag = fa-icon.with("\u{e514}") +#let fa-house-tsunami = fa-icon.with("\u{e515}") +#let fa-jar = fa-icon.with("\u{e516}") +#let fa-jar-wheat = fa-icon.with("\u{e517}") +#let fa-jet-fighter-up = fa-icon.with("\u{e518}") +#let fa-jug-detergent = fa-icon.with("\u{e519}") +#let fa-kitchen-set = fa-icon.with("\u{e51a}") +#let fa-land-mine-on = fa-icon.with("\u{e51b}") +#let fa-landmark-flag = fa-icon.with("\u{e51c}") +#let fa-laptop-file = fa-icon.with("\u{e51d}") +#let fa-lines-leaning = fa-icon.with("\u{e51e}") +#let fa-location-pin-lock = fa-icon.with("\u{e51f}") +#let fa-locust = fa-icon.with("\u{e520}") +#let fa-magnifying-glass-arrow-right = fa-icon.with("\u{e521}") +#let fa-magnifying-glass-chart = fa-icon.with("\u{e522}") +#let fa-mars-and-venus-burst = fa-icon.with("\u{e523}") +#let fa-mask-ventilator = fa-icon.with("\u{e524}") +#let fa-mattress-pillow = fa-icon.with("\u{e525}") +#let fa-merge = fa-icon.with("\u{e526}") +#let fa-mobile-retro = fa-icon.with("\u{e527}") +#let fa-money-bill-transfer = fa-icon.with("\u{e528}") +#let fa-money-bill-trend-up = fa-icon.with("\u{e529}") +#let fa-money-bill-wheat = fa-icon.with("\u{e52a}") +#let fa-mosquito = fa-icon.with("\u{e52b}") +#let fa-mosquito-net = fa-icon.with("\u{e52c}") +#let fa-mound = fa-icon.with("\u{e52d}") +#let fa-mountain-city = fa-icon.with("\u{e52e}") +#let fa-mountain-sun = fa-icon.with("\u{e52f}") +#let fa-nfc-directional = fa-icon.with("\u{e530}") +#let fa-nfc-symbol = fa-icon.with("\u{e531}") +#let fa-oil-well = fa-icon.with("\u{e532}") +#let fa-people-group = fa-icon.with("\u{e533}") +#let fa-people-line = fa-icon.with("\u{e534}") +#let fa-people-pulling = fa-icon.with("\u{e535}") +#let fa-people-robbery = fa-icon.with("\u{e536}") +#let fa-people-roof = fa-icon.with("\u{e537}") +#let fa-person-arrow-down-to-line = fa-icon.with("\u{e538}") +#let fa-person-arrow-up-from-line = fa-icon.with("\u{e539}") +#let fa-person-breastfeeding = fa-icon.with("\u{e53a}") +#let fa-person-burst = fa-icon.with("\u{e53b}") +#let fa-person-cane = fa-icon.with("\u{e53c}") +#let fa-person-chalkboard = fa-icon.with("\u{e53d}") +#let fa-person-circle-check = fa-icon.with("\u{e53e}") +#let fa-person-circle-exclamation = fa-icon.with("\u{e53f}") +#let fa-person-circle-minus = fa-icon.with("\u{e540}") +#let fa-person-circle-plus = fa-icon.with("\u{e541}") +#let fa-person-circle-question = fa-icon.with("\u{e542}") +#let fa-person-circle-xmark = fa-icon.with("\u{e543}") +#let fa-person-dress-burst = fa-icon.with("\u{e544}") +#let fa-person-drowning = fa-icon.with("\u{e545}") +#let fa-person-falling = fa-icon.with("\u{e546}") +#let fa-person-falling-burst = fa-icon.with("\u{e547}") +#let fa-person-half-dress = fa-icon.with("\u{e548}") +#let fa-person-harassing = fa-icon.with("\u{e549}") +#let fa-person-military-pointing = fa-icon.with("\u{e54a}") +#let fa-person-military-rifle = fa-icon.with("\u{e54b}") +#let fa-person-military-to-person = fa-icon.with("\u{e54c}") +#let fa-person-rays = fa-icon.with("\u{e54d}") +#let fa-person-rifle = fa-icon.with("\u{e54e}") +#let fa-person-shelter = fa-icon.with("\u{e54f}") +#let fa-person-walking-arrow-loop-left = fa-icon.with("\u{e551}") +#let fa-person-walking-arrow-right = fa-icon.with("\u{e552}") +#let fa-person-walking-dashed-line-arrow-right = fa-icon.with("\u{e553}") +#let fa-person-walking-luggage = fa-icon.with("\u{e554}") +#let fa-plane-circle-check = fa-icon.with("\u{e555}") +#let fa-plane-circle-exclamation = fa-icon.with("\u{e556}") +#let fa-plane-circle-xmark = fa-icon.with("\u{e557}") +#let fa-plane-lock = fa-icon.with("\u{e558}") +#let fa-plate-wheat = fa-icon.with("\u{e55a}") +#let fa-plug-circle-bolt = fa-icon.with("\u{e55b}") +#let fa-plug-circle-check = fa-icon.with("\u{e55c}") +#let fa-plug-circle-exclamation = fa-icon.with("\u{e55d}") +#let fa-plug-circle-minus = fa-icon.with("\u{e55e}") +#let fa-plug-circle-plus = fa-icon.with("\u{e55f}") +#let fa-plug-circle-xmark = fa-icon.with("\u{e560}") +#let fa-ranking-star = fa-icon.with("\u{e561}") +#let fa-road-barrier = fa-icon.with("\u{e562}") +#let fa-road-bridge = fa-icon.with("\u{e563}") +#let fa-road-circle-check = fa-icon.with("\u{e564}") +#let fa-road-circle-exclamation = fa-icon.with("\u{e565}") +#let fa-road-circle-xmark = fa-icon.with("\u{e566}") +#let fa-road-lock = fa-icon.with("\u{e567}") +#let fa-road-spikes = fa-icon.with("\u{e568}") +#let fa-rug = fa-icon.with("\u{e569}") +#let fa-sack-xmark = fa-icon.with("\u{e56a}") +#let fa-school-circle-check = fa-icon.with("\u{e56b}") +#let fa-school-circle-exclamation = fa-icon.with("\u{e56c}") +#let fa-school-circle-xmark = fa-icon.with("\u{e56d}") +#let fa-school-flag = fa-icon.with("\u{e56e}") +#let fa-school-lock = fa-icon.with("\u{e56f}") +#let fa-screenpal = fa-icon.with("\u{e570}") +#let fa-sheet-plastic = fa-icon.with("\u{e571}") +#let fa-shield-cat = fa-icon.with("\u{e572}") +#let fa-shield-dog = fa-icon.with("\u{e573}") +#let fa-shield-heart = fa-icon.with("\u{e574}") +#let fa-shield-quartered = fa-icon.with("\u{e575}") +#let fa-square-nfi = fa-icon.with("\u{e576}") +#let fa-square-person-confined = fa-icon.with("\u{e577}") +#let fa-square-virus = fa-icon.with("\u{e578}") +#let fa-rod-asclepius = fa-icon.with("\u{e579}") +#let fa-rod-snake = fa-icon.with("\u{e579}") +#let fa-staff-aesculapius = fa-icon.with("\u{e579}") +#let fa-staff-snake = fa-icon.with("\u{e579}") +#let fa-sun-plant-wilt = fa-icon.with("\u{e57a}") +#let fa-tarp = fa-icon.with("\u{e57b}") +#let fa-tarp-droplet = fa-icon.with("\u{e57c}") +#let fa-tent = fa-icon.with("\u{e57d}") +#let fa-tent-arrow-down-to-line = fa-icon.with("\u{e57e}") +#let fa-tent-arrow-left-right = fa-icon.with("\u{e57f}") +#let fa-tent-arrow-turn-left = fa-icon.with("\u{e580}") +#let fa-tent-arrows-down = fa-icon.with("\u{e581}") +#let fa-tents = fa-icon.with("\u{e582}") +#let fa-toilet-portable = fa-icon.with("\u{e583}") +#let fa-toilets-portable = fa-icon.with("\u{e584}") +#let fa-tower-cell = fa-icon.with("\u{e585}") +#let fa-tower-observation = fa-icon.with("\u{e586}") +#let fa-tree-city = fa-icon.with("\u{e587}") +#let fa-trillium = fa-icon.with("\u{e588}") +#let fa-trowel = fa-icon.with("\u{e589}") +#let fa-trowel-bricks = fa-icon.with("\u{e58a}") +#let fa-truck-arrow-right = fa-icon.with("\u{e58b}") +#let fa-truck-droplet = fa-icon.with("\u{e58c}") +#let fa-truck-field = fa-icon.with("\u{e58d}") +#let fa-truck-field-un = fa-icon.with("\u{e58e}") +#let fa-truck-plane = fa-icon.with("\u{e58f}") +#let fa-up-from-bracket = fa-icon.with("\u{e590}") +#let fa-users-between-lines = fa-icon.with("\u{e591}") +#let fa-users-line = fa-icon.with("\u{e592}") +#let fa-users-rays = fa-icon.with("\u{e593}") +#let fa-users-rectangle = fa-icon.with("\u{e594}") +#let fa-users-viewfinder = fa-icon.with("\u{e595}") +#let fa-vial-circle-check = fa-icon.with("\u{e596}") +#let fa-vial-virus = fa-icon.with("\u{e597}") +#let fa-wheat-awn-circle-exclamation = fa-icon.with("\u{e598}") +#let fa-worm = fa-icon.with("\u{e599}") +#let fa-xmarks-lines = fa-icon.with("\u{e59a}") +#let fa-xmark-large = fa-icon.with("\u{e59b}") +#let fa-child-dress = fa-icon.with("\u{e59c}") +#let fa-child-reaching = fa-icon.with("\u{e59d}") +#let fa-plus-large = fa-icon.with("\u{e59e}") +#let fa-crosshairs-simple = fa-icon.with("\u{e59f}") +#let fa-file-circle-check = fa-icon.with("\u{e5a0}") +#let fa-file-circle-xmark = fa-icon.with("\u{e5a1}") +#let fa-gamepad-alt = fa-icon.with("\u{e5a2}") +#let fa-gamepad-modern = fa-icon.with("\u{e5a2}") +#let fa-grill = fa-icon.with("\u{e5a3}") +#let fa-grill-fire = fa-icon.with("\u{e5a4}") +#let fa-grill-hot = fa-icon.with("\u{e5a5}") +#let fa-lightbulb-cfl = fa-icon.with("\u{e5a6}") +#let fa-lightbulb-cfl-on = fa-icon.with("\u{e5a7}") +#let fa-mouse-field = fa-icon.with("\u{e5a8}") +#let fa-person-through-window = fa-icon.with("\u{e5a9}") +#let fa-plant-wilt = fa-icon.with("\u{e5aa}") +#let fa-ring-diamond = fa-icon.with("\u{e5ab}") +#let fa-space-awesome = fa-icon.with("\u{e5ac}") +#let fa-square-font-awesome = fa-icon.with("\u{e5ad}") +#let fa-gitlab-square = fa-icon.with("\u{e5ae}") +#let fa-square-gitlab = fa-icon.with("\u{e5ae}") +#let fa-stapler = fa-icon.with("\u{e5af}") +#let fa-toggle-large-off = fa-icon.with("\u{e5b0}") +#let fa-toggle-large-on = fa-icon.with("\u{e5b1}") +#let fa-toilet-paper-check = fa-icon.with("\u{e5b2}") +#let fa-toilet-paper-xmark = fa-icon.with("\u{e5b3}") +#let fa-train-tram = fa-icon.with("\u{e5b4}") +#let fa-buoy = fa-icon.with("\u{e5b5}") +#let fa-buoy-mooring = fa-icon.with("\u{e5b6}") +#let fa-diamond-half = fa-icon.with("\u{e5b7}") +#let fa-diamond-half-stroke = fa-icon.with("\u{e5b8}") +#let fa-game-console-handheld-crank = fa-icon.with("\u{e5b9}") +#let fa-interrobang = fa-icon.with("\u{e5ba}") +#let fa-mailbox-flag-up = fa-icon.with("\u{e5bb}") +#let fa-mustache = fa-icon.with("\u{e5bc}") +#let fa-nose = fa-icon.with("\u{e5bd}") +#let fa-phone-arrow-right = fa-icon.with("\u{e5be}") +#let fa-pickaxe = fa-icon.with("\u{e5bf}") +#let fa-prescription-bottle-pill = fa-icon.with("\u{e5c0}") +#let fa-snowflake-droplets = fa-icon.with("\u{e5c1}") +#let fa-square-dashed-circle-plus = fa-icon.with("\u{e5c2}") +#let fa-tricycle = fa-icon.with("\u{e5c3}") +#let fa-tricycle-adult = fa-icon.with("\u{e5c4}") +#let fa-user-magnifying-glass = fa-icon.with("\u{e5c5}") +#let fa-odysee = fa-icon.with("\u{e5c6}") +#let fa-stubber = fa-icon.with("\u{e5c7}") +#let fa-comment-heart = fa-icon.with("\u{e5c8}") +#let fa-message-heart = fa-icon.with("\u{e5c9}") +#let fa-pencil-mechanical = fa-icon.with("\u{e5ca}") +#let fa-skeleton-ribs = fa-icon.with("\u{e5cb}") +#let fa-billboard = fa-icon.with("\u{e5cd}") +#let fa-circle-euro = fa-icon.with("\u{e5ce}") +#let fa-circle-sterling = fa-icon.with("\u{e5cf}") +#let fa-circle-yen = fa-icon.with("\u{e5d0}") +#let fa-broom-wide = fa-icon.with("\u{e5d1}") +#let fa-wreath-laurel = fa-icon.with("\u{e5d2}") +#let fa-circle-quarter-stroke = fa-icon.with("\u{e5d3}") +#let fa-circle-three-quarters-stroke = fa-icon.with("\u{e5d4}") +#let fa-webhook = fa-icon.with("\u{e5d5}") +#let fa-sparkle = fa-icon.with("\u{e5d6}") +#let fa-chart-line-up-down = fa-icon.with("\u{e5d7}") +#let fa-chart-mixed-up-circle-currency = fa-icon.with("\u{e5d8}") +#let fa-chart-mixed-up-circle-dollar = fa-icon.with("\u{e5d9}") +#let fa-grid-round = fa-icon.with("\u{e5da}") +#let fa-grid-round-2 = fa-icon.with("\u{e5db}") +#let fa-grid-round-2-plus = fa-icon.with("\u{e5dc}") +#let fa-grid-round-4 = fa-icon.with("\u{e5dd}") +#let fa-grid-round-5 = fa-icon.with("\u{e5de}") +#let fa-arrow-progress = fa-icon.with("\u{e5df}") +#let fa-right-left-large = fa-icon.with("\u{e5e1}") +#let fa-calendar-users = fa-icon.with("\u{e5e2}") +#let fa-display-chart-up = fa-icon.with("\u{e5e3}") +#let fa-display-chart-up-circle-currency = fa-icon.with("\u{e5e5}") +#let fa-display-chart-up-circle-dollar = fa-icon.with("\u{e5e6}") +#let fa-laptop-binary = fa-icon.with("\u{e5e7}") +#let fa-gear-code = fa-icon.with("\u{e5e8}") +#let fa-gear-complex = fa-icon.with("\u{e5e9}") +#let fa-gear-complex-code = fa-icon.with("\u{e5eb}") +#let fa-file-doc = fa-icon.with("\u{e5ed}") +#let fa-file-zip = fa-icon.with("\u{e5ee}") +#let fa-flask-gear = fa-icon.with("\u{e5f1}") +#let fa-bag-seedling = fa-icon.with("\u{e5f2}") +#let fa-bin-bottles = fa-icon.with("\u{e5f5}") +#let fa-bin-bottles-recycle = fa-icon.with("\u{e5f6}") +#let fa-bin-recycle = fa-icon.with("\u{e5f7}") +#let fa-conveyor-belt-arm = fa-icon.with("\u{e5f8}") +#let fa-jug-bottle = fa-icon.with("\u{e5fb}") +#let fa-lightbulb-gear = fa-icon.with("\u{e5fd}") +#let fa-dinosaur = fa-icon.with("\u{e5fe}") +#let fa-person-running-fast = fa-icon.with("\u{e5ff}") +#let fa-circles-overlap = fa-icon.with("\u{e600}") +#let fa-cloud-binary = fa-icon.with("\u{e601}") +#let fa-chf-sign = fa-icon.with("\u{e602}") +#let fa-user-group-simple = fa-icon.with("\u{e603}") +#let fa-chart-pie-simple-circle-currency = fa-icon.with("\u{e604}") +#let fa-chart-pie-simple-circle-dollar = fa-icon.with("\u{e605}") +#let fa-hat-beach = fa-icon.with("\u{e606}") +#let fa-person-dress-fairy = fa-icon.with("\u{e607}") +#let fa-person-fairy = fa-icon.with("\u{e608}") +#let fa-swap = fa-icon.with("\u{e609}") +#let fa-swap-arrows = fa-icon.with("\u{e60a}") +#let fa-debian = fa-icon.with("\u{e60b}") +#let fa-shoelace = fa-icon.with("\u{e60c}") +#let fa-angles-up-down = fa-icon.with("\u{e60d}") +#let fa-globe-pointer = fa-icon.with("\u{e60e}") +#let fa-subtitles = fa-icon.with("\u{e60f}") +#let fa-subtitles-slash = fa-icon.with("\u{e610}") +#let fa-head-side-gear = fa-icon.with("\u{e611}") +#let fa-lighthouse = fa-icon.with("\u{e612}") +#let fa-raccoon = fa-icon.with("\u{e613}") +#let fa-arrow-down-from-arc = fa-icon.with("\u{e614}") +#let fa-arrow-left-from-arc = fa-icon.with("\u{e615}") +#let fa-arrow-left-to-arc = fa-icon.with("\u{e616}") +#let fa-arrow-up-to-arc = fa-icon.with("\u{e617}") +#let fa-threads = fa-icon.with("\u{e618}") +#let fa-square-threads = fa-icon.with("\u{e619}") +#let fa-square-x-twitter = fa-icon.with("\u{e61a}") +#let fa-x-twitter = fa-icon.with("\u{e61b}") +#let fa-building-magnifying-glass = fa-icon.with("\u{e61c}") +#let fa-building-memo = fa-icon.with("\u{e61e}") +#let fa-hammer-brush = fa-icon.with("\u{e620}") +#let fa-hand-holding-circle-dollar = fa-icon.with("\u{e621}") +#let fa-landmark-magnifying-glass = fa-icon.with("\u{e622}") +#let fa-sign-post = fa-icon.with("\u{e624}") +#let fa-sign-posts = fa-icon.with("\u{e625}") +#let fa-sign-posts-wrench = fa-icon.with("\u{e626}") +#let fa-tent-double-peak = fa-icon.with("\u{e627}") +#let fa-truck-utensils = fa-icon.with("\u{e628}") +#let fa-t-rex = fa-icon.with("\u{e629}") +#let fa-spinner-scale = fa-icon.with("\u{e62a}") +#let fa-opensuse = fa-icon.with("\u{e62b}") +#let fa-bell-ring = fa-icon.with("\u{e62c}") +#let fa-letterboxd = fa-icon.with("\u{e62d}") +#let fa-square-letterboxd = fa-icon.with("\u{e62e}") +#let fa-mintbit = fa-icon.with("\u{e62f}") +#let fa-arrows-rotate-reverse = fa-icon.with("\u{e630}") +#let fa-rotate-reverse = fa-icon.with("\u{e631}") +#let fa-arrow-turn-left = fa-icon.with("\u{e632}") +#let fa-arrow-turn-left-down = fa-icon.with("\u{e633}") +#let fa-arrow-turn-left-up = fa-icon.with("\u{e634}") +#let fa-arrow-turn-right = fa-icon.with("\u{e635}") +#let fa-turn-left = fa-icon.with("\u{e636}") +#let fa-turn-left-down = fa-icon.with("\u{e637}") +#let fa-turn-left-up = fa-icon.with("\u{e638}") +#let fa-turn-right = fa-icon.with("\u{e639}") +#let fa-location-arrow-up = fa-icon.with("\u{e63a}") +#let fa-google-scholar = fa-icon.with("\u{e63b}") +#let fa-brave = fa-icon.with("\u{e63c}") +#let fa-brave-reverse = fa-icon.with("\u{e63d}") +#let fa-ticket-perforated = fa-icon.with("\u{e63e}") +#let fa-tickets-perforated = fa-icon.with("\u{e63f}") +#let fa-pixiv = fa-icon.with("\u{e640}") +#let fa-upwork = fa-icon.with("\u{e641}") +#let fa-cannon = fa-icon.with("\u{e642}") +#let fa-court-sport = fa-icon.with("\u{e643}") +#let fa-file-eps = fa-icon.with("\u{e644}") +#let fa-file-gif = fa-icon.with("\u{e645}") +#let fa-file-jpg = fa-icon.with("\u{e646}") +#let fa-file-mov = fa-icon.with("\u{e647}") +#let fa-file-mp3 = fa-icon.with("\u{e648}") +#let fa-file-mp4 = fa-icon.with("\u{e649}") +#let fa-file-ppt = fa-icon.with("\u{e64a}") +#let fa-file-svg = fa-icon.with("\u{e64b}") +#let fa-file-vector = fa-icon.with("\u{e64c}") +#let fa-file-xls = fa-icon.with("\u{e64d}") +#let fa-folder-check = fa-icon.with("\u{e64e}") +#let fa-chart-kanban = fa-icon.with("\u{e64f}") +#let fa-bag-shopping-minus = fa-icon.with("\u{e650}") +#let fa-bag-shopping-plus = fa-icon.with("\u{e651}") +#let fa-basket-shopping-minus = fa-icon.with("\u{e652}") +#let fa-basket-shopping-plus = fa-icon.with("\u{e653}") +#let fa-file-xml = fa-icon.with("\u{e654}") +#let fa-bulldozer = fa-icon.with("\u{e655}") +#let fa-excavator = fa-icon.with("\u{e656}") +#let fa-truck-ladder = fa-icon.with("\u{e657}") +#let fa-tickets = fa-icon.with("\u{e658}") +#let fa-tickets-simple = fa-icon.with("\u{e659}") +#let fa-truck-fire = fa-icon.with("\u{e65a}") +#let fa-wave = fa-icon.with("\u{e65b}") +#let fa-webflow = fa-icon.with("\u{e65c}") +#let fa-waves-sine = fa-icon.with("\u{e65d}") +#let fa-magnifying-glass-arrows-rotate = fa-icon.with("\u{e65e}") +#let fa-magnifying-glass-music = fa-icon.with("\u{e65f}") +#let fa-magnifying-glass-play = fa-icon.with("\u{e660}") +#let fa-magnifying-glass-waveform = fa-icon.with("\u{e661}") +#let fa-music-magnifying-glass = fa-icon.with("\u{e662}") +#let fa-signal-messenger = fa-icon.with("\u{e663}") +#let fa-reflect-horizontal = fa-icon.with("\u{e664}") +#let fa-reflect-vertical = fa-icon.with("\u{e665}") +#let fa-file-png = fa-icon.with("\u{e666}") +#let fa-arrow-down-from-bracket = fa-icon.with("\u{e667}") +#let fa-arrow-left-from-bracket = fa-icon.with("\u{e668}") +#let fa-arrow-left-to-bracket = fa-icon.with("\u{e669}") +#let fa-arrow-up-to-bracket = fa-icon.with("\u{e66a}") +#let fa-down-from-bracket = fa-icon.with("\u{e66b}") +#let fa-left-from-bracket = fa-icon.with("\u{e66c}") +#let fa-left-to-bracket = fa-icon.with("\u{e66d}") +#let fa-up-to-bracket = fa-icon.with("\u{e66e}") +#let fa-reflect-both = fa-icon.with("\u{e66f}") +#let fa-bluesky = fa-icon.with("\u{e671}") +#let fa-file-cad = fa-icon.with("\u{e672}") +#let fa-bottle-baby = fa-icon.with("\u{e673}") +#let fa-table-cells-column-lock = fa-icon.with("\u{e678}") +#let fa-table-cells-lock = fa-icon.with("\u{e679}") +#let fa-table-cells-row-lock = fa-icon.with("\u{e67a}") +#let fa-jxl = fa-icon.with("\u{e67b}") +#let fa-square-upwork = fa-icon.with("\u{e67c}") +#let fa-circle-wifi = fa-icon.with("\u{e67d}") +#let fa-circle-wifi-circle-wifi = fa-icon.with("\u{e67e}") +#let fa-circle-wifi-group = fa-icon.with("\u{e67e}") +#let fa-circle-gf = fa-icon.with("\u{e67f}") +#let fa-ant = fa-icon.with("\u{e680}") +#let fa-caduceus = fa-icon.with("\u{e681}") +#let fa-web-awesome = fa-icon.with("\u{e682}") +#let fa-square-web-awesome = fa-icon.with("\u{e683}") +#let fa-square-web-awesome-stroke = fa-icon.with("\u{e684}") +#let fa-globe-wifi = fa-icon.with("\u{e685}") +#let fa-hydra = fa-icon.with("\u{e686}") +#let fa-lightbulb-message = fa-icon.with("\u{e687}") +#let fa-octopus = fa-icon.with("\u{e688}") +#let fa-user-beard-bolt = fa-icon.with("\u{e689}") +#let fa-user-hoodie = fa-icon.with("\u{e68a}") +#let fa-diamonds-4 = fa-icon.with("\u{e68b}") +#let fa-thumb-tack-slash = fa-icon.with("\u{e68f}") +#let fa-thumbtack-slash = fa-icon.with("\u{e68f}") +#let fa-table-cells-column-unlock = fa-icon.with("\u{e690}") +#let fa-table-cells-row-unlock = fa-icon.with("\u{e691}") +#let fa-table-cells-unlock = fa-icon.with("\u{e692}") +#let fa-dart-lang = fa-icon.with("\u{e693}") +#let fa-flutter = fa-icon.with("\u{e694}") +#let fa-chart-diagram = fa-icon.with("\u{e695}") +#let fa-comment-nodes = fa-icon.with("\u{e696}") +#let fa-file-fragment = fa-icon.with("\u{e697}") +#let fa-file-half-dashed = fa-icon.with("\u{e698}") +#let fa-hexagon-nodes = fa-icon.with("\u{e699}") +#let fa-hexagon-nodes-bolt = fa-icon.with("\u{e69a}") +#let fa-square-binary = fa-icon.with("\u{e69b}") +#let fa-car-people = fa-icon.with("\u{e69c}") +#let fa-carpool = fa-icon.with("\u{e69c}") +#let fa-chart-sine = fa-icon.with("\u{e69d}") +#let fa-chart-fft = fa-icon.with("\u{e69e}") +#let fa-files-pinwheel = fa-icon.with("\u{e69f}") +#let fa-circles-overlap-3 = fa-icon.with("\u{e6a1}") +#let fa-pronoun = fa-icon.with("\u{e6a1}") +#let fa-css = fa-icon.with("\u{e6a2}") +#let fa-square-bluesky = fa-icon.with("\u{e6a3}") +#let fa-bar-progress = fa-icon.with("\u{e6a4}") +#let fa-bar-progress-empty = fa-icon.with("\u{e6a5}") +#let fa-bar-progress-full = fa-icon.with("\u{e6a6}") +#let fa-bar-progress-half = fa-icon.with("\u{e6a7}") +#let fa-bar-progress-quarter = fa-icon.with("\u{e6a8}") +#let fa-bar-progress-three-quarters = fa-icon.with("\u{e6a9}") +#let fa-grid-2-minus = fa-icon.with("\u{e6aa}") +#let fa-grid-round-2-minus = fa-icon.with("\u{e6ab}") +#let fa-table-cells-columns = fa-icon.with("\u{e6ac}") +#let fa-table-cells-header = fa-icon.with("\u{e6ad}") +#let fa-table-cells-header-lock = fa-icon.with("\u{e6ae}") +#let fa-table-cells-header-unlock = fa-icon.with("\u{e6af}") +#let fa-table-cells-rows = fa-icon.with("\u{e6b0}") +#let fa-circle-equals = fa-icon.with("\u{e6b1}") +#let fa-hexagon-equals = fa-icon.with("\u{e6b2}") +#let fa-octagon-equals = fa-icon.with("\u{e6b3}") +#let fa-rectangle-minus = fa-icon.with("\u{e6b4}") +#let fa-rectangle-plus = fa-icon.with("\u{e6b5}") +#let fa-square-equals = fa-icon.with("\u{e6b6}") +#let fa-arrow-down-long-to-line = fa-icon.with("\u{e6b7}") +#let fa-arrow-left-arrow-right = fa-icon.with("\u{e6b8}") +#let fa-arrow-left-from-dotted-line = fa-icon.with("\u{e6b9}") +#let fa-arrow-left-to-dotted-line = fa-icon.with("\u{e6ba}") +#let fa-arrow-right-from-dotted-line = fa-icon.with("\u{e6bb}") +#let fa-arrow-right-to-dotted-line = fa-icon.with("\u{e6bc}") +#let fa-arrow-up-long-to-line = fa-icon.with("\u{e6bd}") +#let fa-direction-left-right = fa-icon.with("\u{e6be}") +#let fa-direction-up-down = fa-icon.with("\u{e6bf}") +#let fa-down-long-to-line = fa-icon.with("\u{e6c0}") +#let fa-down-up = fa-icon.with("\u{e6c1}") +#let fa-left-from-dotted-line = fa-icon.with("\u{e6c2}") +#let fa-left-to-dotted-line = fa-icon.with("\u{e6c3}") +#let fa-right-from-dotted-line = fa-icon.with("\u{e6c4}") +#let fa-right-to-dotted-line = fa-icon.with("\u{e6c5}") +#let fa-up-long-to-line = fa-icon.with("\u{e6c6}") +#let fa-barn = fa-icon.with("\u{e6c7}") +#let fa-circle-house = fa-icon.with("\u{e6c8}") +#let fa-garage-empty = fa-icon.with("\u{e6c9}") +#let fa-house-unlock = fa-icon.with("\u{e6ca}") +#let fa-school-unlock = fa-icon.with("\u{e6cb}") +#let fa-stadium = fa-icon.with("\u{e6cc}") +#let fa-tent-circus = fa-icon.with("\u{e6cd}") +#let fa-ball-yarn = fa-icon.with("\u{e6ce}") +#let fa-bra = fa-icon.with("\u{e6cf}") +#let fa-briefs = fa-icon.with("\u{e6d0}") +#let fa-dress = fa-icon.with("\u{e6d1}") +#let fa-jeans = fa-icon.with("\u{e6d2}") +#let fa-jeans-straight = fa-icon.with("\u{e6d3}") +#let fa-panties = fa-icon.with("\u{e6d4}") +#let fa-pants = fa-icon.with("\u{e6d5}") +#let fa-pants-straight = fa-icon.with("\u{e6d6}") +#let fa-shirt-jersey = fa-icon.with("\u{e6d7}") +#let fa-shoe = fa-icon.with("\u{e6d8}") +#let fa-shorts = fa-icon.with("\u{e6d9}") +#let fa-sneaker = fa-icon.with("\u{e6da}") +#let fa-circle-share-nodes = fa-icon.with("\u{e6db}") +#let fa-comment-dot = fa-icon.with("\u{e6dc}") +#let fa-comment-waveform = fa-icon.with("\u{e6dd}") +#let fa-envelope-circle-user = fa-icon.with("\u{e6de}") +#let fa-message-dot = fa-icon.with("\u{e6df}") +#let fa-message-waveform = fa-icon.with("\u{e6e0}") +#let fa-phone-connection = fa-icon.with("\u{e6e1}") +#let fa-phone-waveform = fa-icon.with("\u{e6e2}") +#let fa-postage-stamp = fa-icon.with("\u{e6e3}") +#let fa-circle-florin = fa-icon.with("\u{e6e4}") +#let fa-circle-ruble = fa-icon.with("\u{e6e5}") +#let fa-square-chf = fa-icon.with("\u{e6e6}") +#let fa-square-lira = fa-icon.with("\u{e6e7}") +#let fa-norwegian-krone-sign = fa-icon.with("\u{e6e8}") +#let fa-circle-renminbi = fa-icon.with("\u{e6e9}") +#let fa-square-peseta = fa-icon.with("\u{e6ea}") +#let fa-circle-brazilian-real = fa-icon.with("\u{e6eb}") +#let fa-circle-won = fa-icon.with("\u{e6ec}") +#let fa-square-cruzeiro = fa-icon.with("\u{e6ed}") +#let fa-circle-currency = fa-icon.with("\u{e6ee}") +#let fa-circle-hryvnia = fa-icon.with("\u{e6ef}") +#let fa-square-cent = fa-icon.with("\u{e6f0}") +#let fa-square-brazilian-real = fa-icon.with("\u{e6f1}") +#let fa-square-bitcoin = fa-icon.with("\u{e6f2}") +#let fa-circle-peruvian-soles = fa-icon.with("\u{e6f3}") +#let fa-circle-litecoin = fa-icon.with("\u{e6f4}") +#let fa-square-indian-rupee = fa-icon.with("\u{e6f5}") +#let fa-circle-lira = fa-icon.with("\u{e6f6}") +#let fa-square-litecoin = fa-icon.with("\u{e6f7}") +#let fa-square-ruble = fa-icon.with("\u{e6f8}") +#let fa-circle-malaysian-ringgit = fa-icon.with("\u{e6f9}") +#let fa-malaysian-ringgit-sign = fa-icon.with("\u{e6fa}") +#let fa-circle-manat = fa-icon.with("\u{e6fb}") +#let fa-circle-colon = fa-icon.with("\u{e6fc}") +#let fa-circle-kip = fa-icon.with("\u{e6fd}") +#let fa-australian-dollar-sign = fa-icon.with("\u{e6fe}") +#let fa-circle-peso = fa-icon.with("\u{e6ff}") +#let fa-circle-polish-zloty = fa-icon.with("\u{e700}") +#let fa-circle-bangladeshi-taka = fa-icon.with("\u{e701}") +#let fa-circle-mill = fa-icon.with("\u{e702}") +#let fa-circle-shekel = fa-icon.with("\u{e703}") +#let fa-square-manat = fa-icon.with("\u{e704}") +#let fa-peruvian-soles-sign = fa-icon.with("\u{e705}") +#let fa-circle-rupiah = fa-icon.with("\u{e706}") +#let fa-square-norwegian-krone = fa-icon.with("\u{e707}") +#let fa-square-naira = fa-icon.with("\u{e708}") +#let fa-square-won = fa-icon.with("\u{e709}") +#let fa-square-mill = fa-icon.with("\u{e70a}") +#let fa-polish-zloty-sign = fa-icon.with("\u{e70b}") +#let fa-square-currency = fa-icon.with("\u{e70c}") +#let fa-square-kip = fa-icon.with("\u{e70d}") +#let fa-square-guarani = fa-icon.with("\u{e70e}") +#let fa-square-dong = fa-icon.with("\u{e70f}") +#let fa-square-hryvnia = fa-icon.with("\u{e710}") +#let fa-circle-tugrik = fa-icon.with("\u{e711}") +#let fa-square-rupiah = fa-icon.with("\u{e712}") +#let fa-square-sterling = fa-icon.with("\u{e713}") +#let fa-circle-rupee = fa-icon.with("\u{e714}") +#let fa-square-rupee = fa-icon.with("\u{e715}") +#let fa-square-peruvian-soles = fa-icon.with("\u{e716}") +#let fa-square-florin = fa-icon.with("\u{e717}") +#let fa-square-australian-dollar = fa-icon.with("\u{e718}") +#let fa-square-baht = fa-icon.with("\u{e719}") +#let fa-square-peso = fa-icon.with("\u{e71a}") +#let fa-circle-austral = fa-icon.with("\u{e71b}") +#let fa-square-swedish-krona = fa-icon.with("\u{e71c}") +#let fa-circle-lari = fa-icon.with("\u{e71d}") +#let fa-circleapore-dollar = fa-icon.with("\u{e71e}") +#let fa-square-turkish-lira = fa-icon.with("\u{e71f}") +#let fa-danish-krone-sign = fa-icon.with("\u{e720}") +#let fa-circle-franc = fa-icon.with("\u{e721}") +#let fa-circle-cruzeiro = fa-icon.with("\u{e722}") +#let fa-circle-dong = fa-icon.with("\u{e723}") +#let fa-square-yen = fa-icon.with("\u{e724}") +#let fa-circle-tenge = fa-icon.with("\u{e725}") +#let fa-square-austral = fa-icon.with("\u{e726}") +#let fa-square-eurozone = fa-icon.with("\u{e727}") +#let fa-square-tugrik = fa-icon.with("\u{e728}") +#let fa-square-cedi = fa-icon.with("\u{e729}") +#let fa-circle-cent = fa-icon.with("\u{e72a}") +#let fa-currency-sign = fa-icon.with("\u{e72b}") +#let fa-circle-chf = fa-icon.with("\u{e72c}") +#let fa-circle-baht = fa-icon.with("\u{e72d}") +#let fa-signapore-dollar-sign = fa-icon.with("\u{e72e}") +#let fa-square-franc = fa-icon.with("\u{e72f}") +#let fa-circle-australian-dollar = fa-icon.with("\u{e730}") +#let fa-square-tenge = fa-icon.with("\u{e731}") +#let fa-square-euro = fa-icon.with("\u{e732}") +#let fa-squareapore-dollar = fa-icon.with("\u{e733}") +#let fa-circle-indian-rupee = fa-icon.with("\u{e734}") +#let fa-square-shekel = fa-icon.with("\u{e735}") +#let fa-square-polish-zloty = fa-icon.with("\u{e736}") +#let fa-circle-bitcoin = fa-icon.with("\u{e737}") +#let fa-circle-norwegian-krone = fa-icon.with("\u{e738}") +#let fa-circle-turkish-lira = fa-icon.with("\u{e739}") +#let fa-square-colon = fa-icon.with("\u{e73a}") +#let fa-circle-guarani = fa-icon.with("\u{e73b}") +#let fa-renminbi-sign = fa-icon.with("\u{e73c}") +#let fa-square-renminbi = fa-icon.with("\u{e73d}") +#let fa-swedish-krona-sign = fa-icon.with("\u{e73e}") +#let fa-square-lari = fa-icon.with("\u{e73f}") +#let fa-eurozone-sign = fa-icon.with("\u{e740}") +#let fa-circle-peseta = fa-icon.with("\u{e741}") +#let fa-circle-cedi = fa-icon.with("\u{e742}") +#let fa-circle-swedish-krona = fa-icon.with("\u{e743}") +#let fa-square-bangladeshi-taka = fa-icon.with("\u{e744}") +#let fa-circle-eurozone = fa-icon.with("\u{e745}") +#let fa-circle-danish-krone = fa-icon.with("\u{e746}") +#let fa-square-danish-krone = fa-icon.with("\u{e747}") +#let fa-square-malaysian-ringgit = fa-icon.with("\u{e748}") +#let fa-circle-naira = fa-icon.with("\u{e749}") +#let fa-mobile-arrow-down = fa-icon.with("\u{e74b}") +#let fa-clone-plus = fa-icon.with("\u{e74c}") +#let fa-paintbrush-fine-slash = fa-icon.with("\u{e74d}") +#let fa-paintbrush-slash = fa-icon.with("\u{e74e}") +#let fa-pencil-line = fa-icon.with("\u{e74f}") +#let fa-slider-circle = fa-icon.with("\u{e750}") +#let fa-thumbtack-angle = fa-icon.with("\u{e751}") +#let fa-thumbtack-angle-slash = fa-icon.with("\u{e752}") +#let fa-book-open-lines = fa-icon.with("\u{e753}") +#let fa-book-spine = fa-icon.with("\u{e754}") +#let fa-bookmark-plus = fa-icon.with("\u{e755}") +#let fa-clipboard-clock = fa-icon.with("\u{e756}") +#let fa-clipboard-exclamation = fa-icon.with("\u{e757}") +#let fa-file-ban = fa-icon.with("\u{e758}") +#let fa-notes-sticky = fa-icon.with("\u{e759}") +#let fa-capsule = fa-icon.with("\u{e75a}") +#let fa-ear-circle-checkmark = fa-icon.with("\u{e75b}") +#let fa-ear-triangle-exclamation = fa-icon.with("\u{e75c}") +#let fa-ear-waveform = fa-icon.with("\u{e75d}") +#let fa-head-side-circuit = fa-icon.with("\u{e75e}") +#let fa-head-side-speak = fa-icon.with("\u{e75f}") +#let fa-microphone-signal-meter = fa-icon.with("\u{e760}") +#let fa-spine = fa-icon.with("\u{e761}") +#let fa-vial-vertical = fa-icon.with("\u{e762}") +#let fa-bin = fa-icon.with("\u{e763}") +#let fa-seat = fa-icon.with("\u{e764}") +#let fa-seats = fa-icon.with("\u{e765}") +#let fa-camera-circle-ellipsis = fa-icon.with("\u{e766}") +#let fa-camera-clock = fa-icon.with("\u{e767}") +#let fa-camera-shutter = fa-icon.with("\u{e768}") +#let fa-film-music = fa-icon.with("\u{e769}") +#let fa-film-stack = fa-icon.with("\u{e76b}") +#let fa-image-circle-arrow-down = fa-icon.with("\u{e76c}") +#let fa-image-circle-check = fa-icon.with("\u{e76d}") +#let fa-image-circle-plus = fa-icon.with("\u{e76e}") +#let fa-image-circle-xmark = fa-icon.with("\u{e76f}") +#let fa-image-music = fa-icon.with("\u{e770}") +#let fa-image-stack = fa-icon.with("\u{e771}") +#let fa-rectangle-4k = fa-icon.with("\u{e772}") +#let fa-rectangle-hdr = fa-icon.with("\u{e773}") +#let fa-rectangle-high-dynamic-range = fa-icon.with("\u{e773}") +#let fa-rectangle-video-on-demand = fa-icon.with("\u{e774}") +#let fa-user-viewfinder = fa-icon.with("\u{e775}") +#let fa-video-down-to-line = fa-icon.with("\u{e776}") +#let fa-video-question = fa-icon.with("\u{e777}") +#let fa-gas-pump-left = fa-icon.with("\u{e778}") +#let fa-gas-pump-right = fa-icon.with("\u{e779}") +#let fa-location-arrow-slash = fa-icon.with("\u{e77a}") +#let fa-airplay-audio = fa-icon.with("\u{e77b}") +#let fa-headphones-slash = fa-icon.with("\u{e77c}") +#let fa-microphone-circle-plus = fa-icon.with("\u{e77d}") +#let fa-microphone-circle-xmark = fa-icon.with("\u{e77e}") +#let fa-open-captioning = fa-icon.with("\u{e77f}") +#let fa-play-flip = fa-icon.with("\u{e780}") +#let fa-square-microphone = fa-icon.with("\u{e781}") +#let fa-trombone = fa-icon.with("\u{e782}") +#let fa-person-arms-raised = fa-icon.with("\u{e783}") +#let fa-person-basketball = fa-icon.with("\u{e784}") +#let fa-person-carry-empty = fa-icon.with("\u{e785}") +#let fa-person-golfing = fa-icon.with("\u{e786}") +#let fa-person-limbs-wide = fa-icon.with("\u{e787}") +#let fa-person-seat-window = fa-icon.with("\u{e788}") +#let fa-person-soccer = fa-icon.with("\u{e789}") +#let fa-person-swimming-pool = fa-icon.with("\u{e78a}") +#let fa-person-swimming-water = fa-icon.with("\u{e78b}") +#let fa-person-water-arms-raised = fa-icon.with("\u{e78c}") +#let fa-person-waving = fa-icon.with("\u{e78d}") +#let fa-heart-slash = fa-icon.with("\u{e78e}") +#let fa-hearts = fa-icon.with("\u{e78f}") +#let fa-pentagon = fa-icon.with("\u{e790}") +#let fa-rectangle-tall = fa-icon.with("\u{e791}") +#let fa-square-half = fa-icon.with("\u{e792}") +#let fa-square-half-stroke = fa-icon.with("\u{e793}") +#let fa-box-arrow-down = fa-icon.with("\u{e794}") +#let fa-box-arrow-down-arrow-up = fa-icon.with("\u{e795}") +#let fa-box-arrow-down-magnifying-glass = fa-icon.with("\u{e796}") +#let fa-box-isometric = fa-icon.with("\u{e797}") +#let fa-box-isometric-tape = fa-icon.with("\u{e798}") +#let fa-qrcode-read = fa-icon.with("\u{e799}") +#let fa-shop-24 = fa-icon.with("\u{e79a}") +#let fa-store-24 = fa-icon.with("\u{e79b}") +#let fa-face-shaking = fa-icon.with("\u{e79c}") +#let fa-face-shaking-horizontal = fa-icon.with("\u{e79d}") +#let fa-face-shaking-vertical = fa-icon.with("\u{e79e}") +#let fa-circle-user-circle-check = fa-icon.with("\u{e79f}") +#let fa-circle-user-circle-exclamation = fa-icon.with("\u{e7a0}") +#let fa-circle-user-circle-minus = fa-icon.with("\u{e7a1}") +#let fa-circle-user-circle-moon = fa-icon.with("\u{e7a2}") +#let fa-circle-user-circle-plus = fa-icon.with("\u{e7a3}") +#let fa-circle-user-circle-question = fa-icon.with("\u{e7a4}") +#let fa-circle-user-circle-user = fa-icon.with("\u{e7a5}") +#let fa-circle-user-circle-xmark = fa-icon.with("\u{e7a6}") +#let fa-circle-user-clock = fa-icon.with("\u{e7a7}") +#let fa-user-beard = fa-icon.with("\u{e7a8}") +#let fa-user-chef-hair-long = fa-icon.with("\u{e7a9}") +#let fa-user-circle-minus = fa-icon.with("\u{e7aa}") +#let fa-user-circle-plus = fa-icon.with("\u{e7ab}") +#let fa-user-dashed = fa-icon.with("\u{e7ac}") +#let fa-user-doctor-hair-mullet = fa-icon.with("\u{e7ad}") +#let fa-user-hat-tie = fa-icon.with("\u{e7ae}") +#let fa-user-hat-tie-magnifying-glass = fa-icon.with("\u{e7af}") +#let fa-user-key = fa-icon.with("\u{e7b0}") +#let fa-user-message = fa-icon.with("\u{e7b1}") +#let fa-user-microphone = fa-icon.with("\u{e7b2}") +#let fa-user-pilot-hair-long = fa-icon.with("\u{e7b3}") +#let fa-user-pilot-tie-hair-long = fa-icon.with("\u{e7b4}") +#let fa-user-police-hair-long = fa-icon.with("\u{e7b5}") +#let fa-user-police-tie-hair-long = fa-icon.with("\u{e7b6}") +#let fa-user-question = fa-icon.with("\u{e7b7}") +#let fa-user-sith = fa-icon.with("\u{e7b8}") +#let fa-user-tie-hair-mullet = fa-icon.with("\u{e7b9}") +#let fa-user-vneck-hair-mullet = fa-icon.with("\u{e7ba}") +#let fa-plane-flying = fa-icon.with("\u{e7bb}") +#let fa-plane-landing-gear = fa-icon.with("\u{e7bc}") +#let fa-rocket-vertical = fa-icon.with("\u{e7bd}") +#let fa-seat-airline-window = fa-icon.with("\u{e7be}") +#let fa-shuttle-space-vertical = fa-icon.with("\u{e7bf}") +#let fa-car-key = fa-icon.with("\u{e7c0}") +#let fa-car-siren = fa-icon.with("\u{e7c1}") +#let fa-car-siren-on = fa-icon.with("\u{e7c2}") +#let fa-scooter = fa-icon.with("\u{e7c3}") +#let fa-snowmobile-blank = fa-icon.with("\u{e7c4}") +#let fa-stair-car = fa-icon.with("\u{e7c5}") +#let fa-truck-suv = fa-icon.with("\u{e7c6}") +#let fa-unicycle = fa-icon.with("\u{e7c7}") +#let fa-van = fa-icon.with("\u{e7c8}") +#let fa-moon-star = fa-icon.with("\u{e7c9}") +#let fa-rainbow-half = fa-icon.with("\u{e7ca}") +#let fa-temperature-slash = fa-icon.with("\u{e7cb}") +#let fa-dialpad = fa-icon.with("\u{e7cc}") +#let fa-numpad = fa-icon.with("\u{e7cc}") +#let fa-computer-mouse-button-left = fa-icon.with("\u{e7cd}") +#let fa-computer-mouse-button-right = fa-icon.with("\u{e7ce}") +#let fa-openai = fa-icon.with("\u{e7cf}") +#let fa-square-linkedin = fa-icon.with("\u{e7d0}") +#let fa-dot = fa-icon.with("\u{e7d1}") +#let fa-folder-arrow-left = fa-icon.with("\u{e7d2}") +#let fa-folder-arrow-right = fa-icon.with("\u{e7d3}") +#let fa-cash-app = fa-icon.with("\u{e7d4}") +#let fa-disqus = fa-icon.with("\u{e7d5}") +#let fa-11ty = fa-icon.with("\u{e7d6}") +#let fa-eleventy = fa-icon.with("\u{e7d6}") +#let fa-kakao-talk = fa-icon.with("\u{e7d7}") +#let fa-linktree = fa-icon.with("\u{e7d8}") +#let fa-notion = fa-icon.with("\u{e7d9}") +#let fa-pandora = fa-icon.with("\u{e7da}") +#let fa-pixelfed = fa-icon.with("\u{e7db}") +#let fa-tidal = fa-icon.with("\u{e7dc}") +#let fa-vsco = fa-icon.with("\u{e7dd}") +#let fa-w3c = fa-icon.with("\u{e7de}") +#let fa-wireless = fa-icon.with("\u{e7df}") +#let fa-circle-moon = fa-icon.with("\u{e7e0}") +#let fa-person-meditating = fa-icon.with("\u{e7e1}") +#let fa-lumon = fa-icon.with("\u{e7e2}") +#let fa-lumon-drop = fa-icon.with("\u{e7e3}") +#let fa-square-figma = fa-icon.with("\u{e7e4}") +#let fa-baseball-bat = fa-icon.with("\u{e7e5}") +#let fa-hockey-stick = fa-icon.with("\u{e7e6}") +#let fa-arrow-u-turn-down-left = fa-icon.with("\u{e7e7}") +#let fa-arrow-u-turn-down-right = fa-icon.with("\u{e7e8}") +#let fa-arrow-u-turn-left-down = fa-icon.with("\u{e7e9}") +#let fa-arrow-u-turn-left-up = fa-icon.with("\u{e7ea}") +#let fa-arrow-u-turn-right-down = fa-icon.with("\u{e7eb}") +#let fa-arrow-u-turn-right-up = fa-icon.with("\u{e7ec}") +#let fa-arrow-u-turn-up-left = fa-icon.with("\u{e7ed}") +#let fa-arrow-u-turn-up-right = fa-icon.with("\u{e7ee}") +#let fa-u-turn-down-left = fa-icon.with("\u{e7ef}") +#let fa-u-turn-down-right = fa-icon.with("\u{e7f0}") +#let fa-u-turn = fa-icon.with("\u{e7f1}") +#let fa-u-turn-left-down = fa-icon.with("\u{e7f1}") +#let fa-u-turn-left-up = fa-icon.with("\u{e7f2}") +#let fa-u-turn-right-down = fa-icon.with("\u{e7f3}") +#let fa-u-turn-right-up = fa-icon.with("\u{e7f4}") +#let fa-u-turn-up-left = fa-icon.with("\u{e7f5}") +#let fa-u-turn-up-right = fa-icon.with("\u{e7f6}") +#let fa-triple-chevrons-down = fa-icon.with("\u{e7f7}") +#let fa-triple-chevrons-left = fa-icon.with("\u{e7f8}") +#let fa-triple-chevrons-right = fa-icon.with("\u{e7f9}") +#let fa-triple-chevrons-up = fa-icon.with("\u{e7fa}") +#let fa-file-aiff = fa-icon.with("\u{e7fb}") +#let fa-file-odf = fa-icon.with("\u{e7fc}") +#let fa-file-tex = fa-icon.with("\u{e7fd}") +#let fa-file-wav = fa-icon.with("\u{e7fe}") +#let fa-tex = fa-icon.with("\u{e7ff}") +#let fa-droplet-plus = fa-icon.with("\u{e800}") +#let fa-hand-holding-star = fa-icon.with("\u{e801}") +#let fa-transmission = fa-icon.with("\u{e802}") +#let fa-alarm-minus = fa-icon.with("\u{e803}") +#let fa-file-brackets-curly = fa-icon.with("\u{e804}") +#let fa-file-midi = fa-icon.with("\u{e805}") +#let fa-midi = fa-icon.with("\u{e806}") +#let fa-non-binary = fa-icon.with("\u{e807}") +#let fa-rectangle-beta = fa-icon.with("\u{e808}") +#let fa-shield-user = fa-icon.with("\u{e809}") +#let fa-spiral = fa-icon.with("\u{e80a}") +#let fa-picture-in-picture = fa-icon.with("\u{e80b}") +#let fa-circle-half-horizontal = fa-icon.with("\u{e80c}") +#let fa-circle-half-stroke-horizontal = fa-icon.with("\u{e80d}") +#let fa-square-half-horizontal = fa-icon.with("\u{e80e}") +#let fa-square-half-stroke-horizontal = fa-icon.with("\u{e80f}") +#let fa-ship-large = fa-icon.with("\u{e810}") +#let fa-butterfly = fa-icon.with("\u{e811}") +#let fa-duolingo = fa-icon.with("\u{e812}") +#let fa-mobile-rotate = fa-icon.with("\u{e813}") +#let fa-mobile-rotate-reverse = fa-icon.with("\u{e814}") +#let fa-mobile-slash = fa-icon.with("\u{e815}") +#let fa-mobile-vibrate = fa-icon.with("\u{e816}") +#let fa-mobile-vibrate-slash = fa-icon.with("\u{e817}") +#let fa-almost-equal-to = fa-icon.with("\u{e818}") +#let fa-sneaker-running = fa-icon.with("\u{e819}") +#let fa-horseshoe = fa-icon.with("\u{e81a}") +#let fa-single-quote-left = fa-icon.with("\u{e81b}") +#let fa-single-quote-right = fa-icon.with("\u{e81c}") +#let fa-bus-side = fa-icon.with("\u{e81d}") +#let fa-bus-stop = fa-icon.with("\u{e81e}") +#let fa-train-stop = fa-icon.with("\u{e81f}") +#let fa-heptagon = fa-icon.with("\u{e820}") +#let fa-septagon = fa-icon.with("\u{e820}") +#let fa-mailbox-open-empty = fa-icon.with("\u{e821}") +#let fa-mailbox-open-letter = fa-icon.with("\u{e823}") +#let fa-lychee = fa-icon.with("\u{e824}") +#let fa-tank-recovery = fa-icon.with("\u{e825}") +#let fa-transducer = fa-icon.with("\u{e826}") +#let fa-box-arrow-up = fa-icon.with("\u{e827}") +#let fa-box-magnifying-glass = fa-icon.with("\u{e828}") +#let fa-envelope-certificate = fa-icon.with("\u{e829}") +#let fa-envelope-ribbon = fa-icon.with("\u{e829}") +#let fa-water-temp = fa-icon.with("\u{e82a}") +#let fa-water-temperature = fa-icon.with("\u{e82a}") +#let fa-aeropress = fa-icon.with("\u{e82b}") +#let fa-caret-large-down = fa-icon.with("\u{e82c}") +#let fa-caret-large-left = fa-icon.with("\u{e82d}") +#let fa-caret-large-right = fa-icon.with("\u{e82e}") +#let fa-caret-large-up = fa-icon.with("\u{e82f}") +#let fa-chemex = fa-icon.with("\u{e830}") +#let fa-hand-shaka = fa-icon.with("\u{e831}") +#let fa-kettlebell = fa-icon.with("\u{e832}") +#let fa-supportnow = fa-icon.with("\u{e833}") +#let fa-foot-wing = fa-icon.with("\u{e834}") +#let fa-pump-impeller = fa-icon.with("\u{e835}") +#let fa-arrow-rotate-left-10 = fa-icon.with("\u{e836}") +#let fa-arrow-rotate-right-10 = fa-icon.with("\u{e837}") +#let fa-tor-browser = fa-icon.with("\u{e838}") +#let fa-arrow-archery = fa-icon.with("\u{e839}") +#let fa-bow-archery = fa-icon.with("\u{e83a}") +#let fa-eye-closed = fa-icon.with("\u{e83b}") +#let fa-file-css = fa-icon.with("\u{e83c}") +#let fa-file-html = fa-icon.with("\u{e83d}") +#let fa-file-js = fa-icon.with("\u{e83e}") +#let fa-layer = fa-icon.with("\u{e83f}") +#let fa-typescript = fa-icon.with("\u{e840}") +#let fa-file-icns = fa-icon.with("\u{e841}") +#let fa-link-broken = fa-icon.with("\u{e842}") +#let fa-gpu = fa-icon.with("\u{e843}") +#let fa-square-deskpro = fa-icon.with("\u{e844}") +#let fa-aquarius = fa-icon.with("\u{e845}") +#let fa-aries = fa-icon.with("\u{e846}") +#let fa-cancer = fa-icon.with("\u{e847}") +#let fa-capricorn = fa-icon.with("\u{e848}") +#let fa-gemini = fa-icon.with("\u{e849}") +#let fa-leo = fa-icon.with("\u{e84a}") +#let fa-libra = fa-icon.with("\u{e84b}") +#let fa-pisces = fa-icon.with("\u{e84c}") +#let fa-sagittarius = fa-icon.with("\u{e84d}") +#let fa-scorpio = fa-icon.with("\u{e84e}") +#let fa-taurus = fa-icon.with("\u{e84f}") +#let fa-virgo = fa-icon.with("\u{e850}") +#let fa-circle-zulip = fa-icon.with("\u{e851}") +#let fa-julia = fa-icon.with("\u{e852}") +#let fa-zulip = fa-icon.with("\u{e853}") +#let fa-unison = fa-icon.with("\u{e854}") +#let fa-bgg = fa-icon.with("\u{e855}") +#let fa-board-game-geek = fa-icon.with("\u{e855}") +#let fa-ko-fi = fa-icon.with("\u{e856}") +#let fa-kubernetes = fa-icon.with("\u{e857}") +#let fa-postgresql = fa-icon.with("\u{e858}") +#let fa-scaleway = fa-icon.with("\u{e859}") +#let fa-venmo = fa-icon.with("\u{e85a}") +#let fa-venmo-v = fa-icon.with("\u{e85b}") +#let fa-unreal-engine = fa-icon.with("\u{e85c}") +#let fa-globaleaks = fa-icon.with("\u{e85d}") +#let fa-solana = fa-icon.with("\u{e85e}") +#let fa-threema = fa-icon.with("\u{e85f}") +#let fa-forgejo = fa-icon.with("\u{e860}") +#let fa-claude = fa-icon.with("\u{e861}") +#let fa-bicep = fa-icon.with("\u{e862}") +#let fa-gitee = fa-icon.with("\u{e863}") +#let fa-xmpp = fa-icon.with("\u{e864}") +#let fa-fediverse = fa-icon.with("\u{e865}") +#let fa-tailwind-css = fa-icon.with("\u{e866}") +#let fa-arch-linux = fa-icon.with("\u{e867}") +#let fa-svelte = fa-icon.with("\u{e868}") +#let fa-hugging-face = fa-icon.with("\u{e869}") +#let fa-leetcode = fa-icon.with("\u{e86a}") +#let fa-openstreetmap = fa-icon.with("\u{e86b}") +#let fa-rectangle-irc = fa-icon.with("\u{e86c}") +#let fa-ultralytics = fa-icon.with("\u{e86d}") +#let fa-ultralytics-hub = fa-icon.with("\u{e86e}") +#let fa-ultralytics-yolo = fa-icon.with("\u{e86f}") +#let fa-moon-first-quarter = fa-icon.with("\u{e870}") +#let fa-moon-last-quarter-inverse = fa-icon.with("\u{e870}") +#let fa-moon-full = fa-icon.with("\u{e871}") +#let fa-moon-new-inverse = fa-icon.with("\u{e871}") +#let fa-moon-first-quarter-inverse = fa-icon.with("\u{e872}") +#let fa-moon-last-quarter = fa-icon.with("\u{e872}") +#let fa-moon-full-inverse = fa-icon.with("\u{e873}") +#let fa-moon-new = fa-icon.with("\u{e873}") +#let fa-moon-waning-crescent = fa-icon.with("\u{e874}") +#let fa-moon-waxing-gibbous-inverse = fa-icon.with("\u{e874}") +#let fa-moon-waning-gibbous = fa-icon.with("\u{e875}") +#let fa-moon-waxing-crescent-inverse = fa-icon.with("\u{e875}") +#let fa-moon-waning-gibbous-inverse = fa-icon.with("\u{e876}") +#let fa-moon-waxing-crescent = fa-icon.with("\u{e876}") +#let fa-moon-waning-crescent-inverse = fa-icon.with("\u{e877}") +#let fa-moon-waxing-gibbous = fa-icon.with("\u{e877}") +#let fa-burst-new = fa-icon.with("\u{e878}") +#let fa-obsidian = fa-icon.with("\u{e879}") +#let fa-rectangle-new = fa-icon.with("\u{e87a}") +#let fa-zoom = fa-icon.with("\u{e87b}") +#let fa-opossum = fa-icon.with("\u{e87c}") +#let fa-possum = fa-icon.with("\u{e87c}") +#let fa-input-password = fa-icon.with("\u{e87d}") +#let fa-desk = fa-icon.with("\u{e87e}") +#let fa-dresser = fa-icon.with("\u{e87f}") +#let fa-stool = fa-icon.with("\u{e880}") +#let fa-wardrobe = fa-icon.with("\u{e881}") +#let fa-table-dining = fa-icon.with("\u{e882}") +#let fa-chest-drawers = fa-icon.with("\u{e883}") +#let fa-oar = fa-icon.with("\u{e884}") +#let fa-oars = fa-icon.with("\u{e885}") +#let fa-arrow-rotate-left-15 = fa-icon.with("\u{e886}") +#let fa-arrow-rotate-left-30 = fa-icon.with("\u{e887}") +#let fa-arrow-rotate-right-15 = fa-icon.with("\u{e888}") +#let fa-arrow-rotate-right-30 = fa-icon.with("\u{e889}") +#let fa-vim = fa-icon.with("\u{e88a}") +#let fa-rows-3 = fa-icon.with("\u{e88b}") +#let fa-table-cells-merge = fa-icon.with("\u{e88c}") +#let fa-table-cells-split = fa-icon.with("\u{e88d}") +#let fa-table-columns-add-after = fa-icon.with("\u{e88e}") +#let fa-table-columns-add-before = fa-icon.with("\u{e88f}") +#let fa-table-columns-merge-next = fa-icon.with("\u{e890}") +#let fa-table-columns-merge-previous = fa-icon.with("\u{e891}") +#let fa-table-columns-remove-after = fa-icon.with("\u{e892}") +#let fa-table-columns-remove-before = fa-icon.with("\u{e893}") +#let fa-table-rows-add-above = fa-icon.with("\u{e894}") +#let fa-table-rows-add-below = fa-icon.with("\u{e895}") +#let fa-table-rows-merge-next = fa-icon.with("\u{e896}") +#let fa-table-rows-merge-previous = fa-icon.with("\u{e897}") +#let fa-table-rows-remove-above = fa-icon.with("\u{e898}") +#let fa-table-rows-remove-below = fa-icon.with("\u{e899}") +#let fa-table-slash = fa-icon.with("\u{e89a}") +#let fa-kayak = fa-icon.with("\u{e89b}") +#let fa-canoe-person = fa-icon.with("\u{e89c}") +#let fa-utility-can = fa-icon.with("\u{e89d}") +#let fa-table-bar = fa-icon.with("\u{e89e}") +#let fa-owl = fa-icon.with("\u{e89f}") +#let fa-rectangle-api = fa-icon.with("\u{e8a0}") +#let fa-nas = fa-icon.with("\u{e8a1}") +#let fa-poker-chip = fa-icon.with("\u{e8a2}") +#let fa-tower-receive = fa-icon.with("\u{e8a3}") +#let fa-gear-api = fa-icon.with("\u{e8a4}") +#let fa-gear-complex-api = fa-icon.with("\u{e8a5}") +#let fa-globe-www = fa-icon.with("\u{e8a6}") +#let fa-label = fa-icon.with("\u{e8a7}") +#let fa-rectangle-n-a = fa-icon.with("\u{e8a8}") +#let fa-remote = fa-icon.with("\u{e8a9}") +#let fa-image-broken = fa-icon.with("\u{e8aa}") +#let fa-symfonycasts = fa-icon.with("\u{e8ab}") +#let fa-build-awesome = fa-icon.with("\u{e8ac}") +#let fa-codeberg = fa-icon.with("\u{e8ad}") +#let fa-devpost = fa-icon.with("\u{e8ae}") +#let fa-envelope-heart = fa-icon.with("\u{e8af}") +#let fa-internet-archive = fa-icon.with("\u{e8b1}") +#let fa-lets-encrypt = fa-icon.with("\u{e8b2}") +#let fa-matrix = fa-icon.with("\u{e8b3}") +#let fa-mattermost = fa-icon.with("\u{e8b4}") +#let fa-nextcloud = fa-icon.with("\u{e8b5}") +#let fa-roblox-creator-studio = fa-icon.with("\u{e8b6}") +#let fa-square-build-awesome-stroke = fa-icon.with("\u{e8b7}") +#let fa-substack = fa-icon.with("\u{e8b8}") +#let fa-tesla = fa-icon.with("\u{e8b9}") +#let fa-xrp = fa-icon.with("\u{e8ba}") +#let fa-xrpl = fa-icon.with("\u{e8bb}") +#let fa-youtube-shorts = fa-icon.with("\u{e8bc}") +#let fa-ror = fa-icon.with("\u{e8bd}") +#let fa-visual-studio = fa-icon.with("\u{e8be}") +#let fa-dolibarr = fa-icon.with("\u{e8bf}") +#let fa-obs-studio = fa-icon.with("\u{e8c0}") +#let fa-storybook = fa-icon.with("\u{e8c1}") +#let fa-a11y-project = fa-icon.with("\u{e8c2}") +#let fa-Suricata = fa-icon.with("\u{e8c4}") +#let fa-meerkat = fa-icon.with("\u{e8c4}") +#let fa-suricate = fa-icon.with("\u{e8c4}") +#let fa-suricatta = fa-icon.with("\u{e8c4}") +#let fa-file-md = fa-icon.with("\u{e8c5}") +#let fa-file-txt = fa-icon.with("\u{e8c6}") +#let fa-copilot = fa-icon.with("\u{e8c7}") +#let fa-glass-martini = fa-icon.with("\u{f000}") +#let fa-martini-glass-empty = fa-icon.with("\u{f000}") +#let fa-music = fa-icon.with("\u{f001}") +#let fa-magnifying-glass = fa-icon.with("\u{f002}") +#let fa-search = fa-icon.with("\u{f002}") +#let fa-heart = fa-icon.with("\u{f004}") +#let fa-star = fa-icon.with("\u{f005}") +#let fa-user = fa-icon.with("\u{f007}") +#let fa-film = fa-icon.with("\u{f008}") +#let fa-table-cells-large = fa-icon.with("\u{f009}") +#let fa-th-large = fa-icon.with("\u{f009}") +#let fa-table-cells = fa-icon.with("\u{f00a}") +#let fa-th = fa-icon.with("\u{f00a}") +#let fa-table-list = fa-icon.with("\u{f00b}") +#let fa-th-list = fa-icon.with("\u{f00b}") +#let fa-check = fa-icon.with("\u{f00c}") +#let fa-close = fa-icon.with("\u{f00d}") +#let fa-multiply = fa-icon.with("\u{f00d}") +#let fa-remove = fa-icon.with("\u{f00d}") +#let fa-times = fa-icon.with("\u{f00d}") +#let fa-xmark = fa-icon.with("\u{f00d}") +#let fa-magnifying-glass-plus = fa-icon.with("\u{f00e}") +#let fa-search-plus = fa-icon.with("\u{f00e}") +#let fa-magnifying-glass-minus = fa-icon.with("\u{f010}") +#let fa-search-minus = fa-icon.with("\u{f010}") +#let fa-power-off = fa-icon.with("\u{f011}") +#let fa-signal = fa-icon.with("\u{f012}") +#let fa-signal-5 = fa-icon.with("\u{f012}") +#let fa-signal-perfect = fa-icon.with("\u{f012}") +#let fa-cog = fa-icon.with("\u{f013}") +#let fa-gear = fa-icon.with("\u{f013}") +#let fa-home = fa-icon.with("\u{f015}") +#let fa-home-alt = fa-icon.with("\u{f015}") +#let fa-home-lg-alt = fa-icon.with("\u{f015}") +#let fa-house = fa-icon.with("\u{f015}") +#let fa-clock = fa-icon.with("\u{f017}") +#let fa-clock-four = fa-icon.with("\u{f017}") +#let fa-road = fa-icon.with("\u{f018}") +#let fa-download = fa-icon.with("\u{f019}") +#let fa-inbox = fa-icon.with("\u{f01c}") +#let fa-arrow-right-rotate = fa-icon.with("\u{f01e}") +#let fa-arrow-rotate-forward = fa-icon.with("\u{f01e}") +#let fa-arrow-rotate-right = fa-icon.with("\u{f01e}") +#let fa-redo = fa-icon.with("\u{f01e}") +#let fa-arrows-rotate = fa-icon.with("\u{f021}") +#let fa-refresh = fa-icon.with("\u{f021}") +#let fa-sync = fa-icon.with("\u{f021}") +#let fa-list-alt = fa-icon.with("\u{f022}") +#let fa-rectangle-list = fa-icon.with("\u{f022}") +#let fa-lock = fa-icon.with("\u{f023}") +#let fa-flag = fa-icon.with("\u{f024}") +#let fa-headphones = fa-icon.with("\u{f025}") +#let fa-volume-off = fa-icon.with("\u{f026}") +#let fa-volume-down = fa-icon.with("\u{f027}") +#let fa-volume-low = fa-icon.with("\u{f027}") +#let fa-volume-high = fa-icon.with("\u{f028}") +#let fa-volume-up = fa-icon.with("\u{f028}") +#let fa-qrcode = fa-icon.with("\u{f029}") +#let fa-barcode = fa-icon.with("\u{f02a}") +#let fa-tag = fa-icon.with("\u{f02b}") +#let fa-tags = fa-icon.with("\u{f02c}") +#let fa-book = fa-icon.with("\u{f02d}") +#let fa-bookmark = fa-icon.with("\u{f02e}") +#let fa-print = fa-icon.with("\u{f02f}") +#let fa-camera = fa-icon.with("\u{f030}") +#let fa-camera-alt = fa-icon.with("\u{f030}") +#let fa-font = fa-icon.with("\u{f031}") +#let fa-bold = fa-icon.with("\u{f032}") +#let fa-italic = fa-icon.with("\u{f033}") +#let fa-text-height = fa-icon.with("\u{f034}") +#let fa-text-width = fa-icon.with("\u{f035}") +#let fa-align-left = fa-icon.with("\u{f036}") +#let fa-align-center = fa-icon.with("\u{f037}") +#let fa-align-right = fa-icon.with("\u{f038}") +#let fa-align-justify = fa-icon.with("\u{f039}") +#let fa-list = fa-icon.with("\u{f03a}") +#let fa-list-squares = fa-icon.with("\u{f03a}") +#let fa-dedent = fa-icon.with("\u{f03b}") +#let fa-outdent = fa-icon.with("\u{f03b}") +#let fa-indent = fa-icon.with("\u{f03c}") +#let fa-video = fa-icon.with("\u{f03d}") +#let fa-video-camera = fa-icon.with("\u{f03d}") +#let fa-image = fa-icon.with("\u{f03e}") +#let fa-location-pin = fa-icon.with("\u{f041}") +#let fa-map-marker = fa-icon.with("\u{f041}") +#let fa-adjust = fa-icon.with("\u{f042}") +#let fa-circle-half-stroke = fa-icon.with("\u{f042}") +#let fa-droplet = fa-icon.with("\u{f043}") +#let fa-tint = fa-icon.with("\u{f043}") +#let fa-edit = fa-icon.with("\u{f044}") +#let fa-pen-to-square = fa-icon.with("\u{f044}") +#let fa-arrows = fa-icon.with("\u{f047}") +#let fa-arrows-up-down-left-right = fa-icon.with("\u{f047}") +#let fa-backward-step = fa-icon.with("\u{f048}") +#let fa-step-backward = fa-icon.with("\u{f048}") +#let fa-backward-fast = fa-icon.with("\u{f049}") +#let fa-fast-backward = fa-icon.with("\u{f049}") +#let fa-backward = fa-icon.with("\u{f04a}") +#let fa-play = fa-icon.with("\u{f04b}") +#let fa-pause = fa-icon.with("\u{f04c}") +#let fa-stop = fa-icon.with("\u{f04d}") +#let fa-forward = fa-icon.with("\u{f04e}") +#let fa-fast-forward = fa-icon.with("\u{f050}") +#let fa-forward-fast = fa-icon.with("\u{f050}") +#let fa-forward-step = fa-icon.with("\u{f051}") +#let fa-step-forward = fa-icon.with("\u{f051}") +#let fa-eject = fa-icon.with("\u{f052}") +#let fa-chevron-left = fa-icon.with("\u{f053}") +#let fa-chevron-right = fa-icon.with("\u{f054}") +#let fa-circle-plus = fa-icon.with("\u{f055}") +#let fa-plus-circle = fa-icon.with("\u{f055}") +#let fa-circle-minus = fa-icon.with("\u{f056}") +#let fa-minus-circle = fa-icon.with("\u{f056}") +#let fa-circle-xmark = fa-icon.with("\u{f057}") +#let fa-times-circle = fa-icon.with("\u{f057}") +#let fa-xmark-circle = fa-icon.with("\u{f057}") +#let fa-check-circle = fa-icon.with("\u{f058}") +#let fa-circle-check = fa-icon.with("\u{f058}") +#let fa-circle-question = fa-icon.with("\u{f059}") +#let fa-question-circle = fa-icon.with("\u{f059}") +#let fa-circle-info = fa-icon.with("\u{f05a}") +#let fa-info-circle = fa-icon.with("\u{f05a}") +#let fa-crosshairs = fa-icon.with("\u{f05b}") +#let fa-ban = fa-icon.with("\u{f05e}") +#let fa-cancel = fa-icon.with("\u{f05e}") +#let fa-arrow-left = fa-icon.with("\u{f060}") +#let fa-arrow-right = fa-icon.with("\u{f061}") +#let fa-arrow-up = fa-icon.with("\u{f062}") +#let fa-arrow-down = fa-icon.with("\u{f063}") +#let fa-mail-forward = fa-icon.with("\u{f064}") +#let fa-share = fa-icon.with("\u{f064}") +#let fa-expand = fa-icon.with("\u{f065}") +#let fa-compress = fa-icon.with("\u{f066}") +#let fa-minus = fa-icon.with("\u{f068}") +#let fa-subtract = fa-icon.with("\u{f068}") +#let fa-circle-exclamation = fa-icon.with("\u{f06a}") +#let fa-exclamation-circle = fa-icon.with("\u{f06a}") +#let fa-gift = fa-icon.with("\u{f06b}") +#let fa-leaf = fa-icon.with("\u{f06c}") +#let fa-fire = fa-icon.with("\u{f06d}") +#let fa-eye = fa-icon.with("\u{f06e}") +#let fa-eye-slash = fa-icon.with("\u{f070}") +#let fa-exclamation-triangle = fa-icon.with("\u{f071}") +#let fa-triangle-exclamation = fa-icon.with("\u{f071}") +#let fa-warning = fa-icon.with("\u{f071}") +#let fa-plane = fa-icon.with("\u{f072}") +#let fa-calendar-alt = fa-icon.with("\u{f073}") +#let fa-calendar-days = fa-icon.with("\u{f073}") +#let fa-random = fa-icon.with("\u{f074}") +#let fa-shuffle = fa-icon.with("\u{f074}") +#let fa-comment = fa-icon.with("\u{f075}") +#let fa-magnet = fa-icon.with("\u{f076}") +#let fa-chevron-up = fa-icon.with("\u{f077}") +#let fa-chevron-down = fa-icon.with("\u{f078}") +#let fa-retweet = fa-icon.with("\u{f079}") +#let fa-cart-shopping = fa-icon.with("\u{f07a}") +#let fa-shopping-cart = fa-icon.with("\u{f07a}") +#let fa-folder = fa-icon.with("\u{f07b}") +#let fa-folder-blank = fa-icon.with("\u{f07b}") +#let fa-folder-open = fa-icon.with("\u{f07c}") +#let fa-arrows-up-down = fa-icon.with("\u{f07d}") +#let fa-arrows-v = fa-icon.with("\u{f07d}") +#let fa-arrows-h = fa-icon.with("\u{f07e}") +#let fa-arrows-left-right = fa-icon.with("\u{f07e}") +#let fa-bar-chart = fa-icon.with("\u{f080}") +#let fa-chart-bar = fa-icon.with("\u{f080}") +#let fa-square-twitter = fa-icon.with("\u{f081}") +#let fa-twitter-square = fa-icon.with("\u{f081}") +#let fa-facebook-square = fa-icon.with("\u{f082}") +#let fa-square-facebook = fa-icon.with("\u{f082}") +#let fa-camera-retro = fa-icon.with("\u{f083}") +#let fa-key = fa-icon.with("\u{f084}") +#let fa-cogs = fa-icon.with("\u{f085}") +#let fa-gears = fa-icon.with("\u{f085}") +#let fa-comments = fa-icon.with("\u{f086}") +#let fa-star-half = fa-icon.with("\u{f089}") +#let fa-arrow-right-from-bracket = fa-icon.with("\u{f08b}") +#let fa-sign-out = fa-icon.with("\u{f08b}") +#let fa-linkedin = fa-icon.with("\u{f08c}") +#let fa-thumb-tack = fa-icon.with("\u{f08d}") +#let fa-thumbtack = fa-icon.with("\u{f08d}") +#let fa-arrow-up-right-from-square = fa-icon.with("\u{f08e}") +#let fa-external-link = fa-icon.with("\u{f08e}") +#let fa-arrow-right-to-bracket = fa-icon.with("\u{f090}") +#let fa-sign-in = fa-icon.with("\u{f090}") +#let fa-trophy = fa-icon.with("\u{f091}") +#let fa-github-square = fa-icon.with("\u{f092}") +#let fa-square-github = fa-icon.with("\u{f092}") +#let fa-upload = fa-icon.with("\u{f093}") +#let fa-lemon = fa-icon.with("\u{f094}") +#let fa-phone = fa-icon.with("\u{f095}") +#let fa-phone-square = fa-icon.with("\u{f098}") +#let fa-square-phone = fa-icon.with("\u{f098}") +#let fa-twitter = fa-icon.with("\u{f099}") +#let fa-facebook = fa-icon.with("\u{f09a}") +#let fa-github = fa-icon.with("\u{f09b}") +#let fa-unlock = fa-icon.with("\u{f09c}") +#let fa-credit-card = fa-icon.with("\u{f09d}") +#let fa-credit-card-alt = fa-icon.with("\u{f09d}") +#let fa-feed = fa-icon.with("\u{f09e}") +#let fa-rss = fa-icon.with("\u{f09e}") +#let fa-hard-drive = fa-icon.with("\u{f0a0}") +#let fa-hdd = fa-icon.with("\u{f0a0}") +#let fa-bullhorn = fa-icon.with("\u{f0a1}") +#let fa-certificate = fa-icon.with("\u{f0a3}") +#let fa-hand-point-right = fa-icon.with("\u{f0a4}") +#let fa-hand-point-left = fa-icon.with("\u{f0a5}") +#let fa-hand-point-up = fa-icon.with("\u{f0a6}") +#let fa-hand-point-down = fa-icon.with("\u{f0a7}") +#let fa-arrow-circle-left = fa-icon.with("\u{f0a8}") +#let fa-circle-arrow-left = fa-icon.with("\u{f0a8}") +#let fa-arrow-circle-right = fa-icon.with("\u{f0a9}") +#let fa-circle-arrow-right = fa-icon.with("\u{f0a9}") +#let fa-arrow-circle-up = fa-icon.with("\u{f0aa}") +#let fa-circle-arrow-up = fa-icon.with("\u{f0aa}") +#let fa-arrow-circle-down = fa-icon.with("\u{f0ab}") +#let fa-circle-arrow-down = fa-icon.with("\u{f0ab}") +#let fa-globe = fa-icon.with("\u{f0ac}") +#let fa-wrench = fa-icon.with("\u{f0ad}") +#let fa-list-check = fa-icon.with("\u{f0ae}") +#let fa-tasks = fa-icon.with("\u{f0ae}") +#let fa-filter = fa-icon.with("\u{f0b0}") +#let fa-briefcase = fa-icon.with("\u{f0b1}") +#let fa-arrows-alt = fa-icon.with("\u{f0b2}") +#let fa-up-down-left-right = fa-icon.with("\u{f0b2}") +#let fa-users = fa-icon.with("\u{f0c0}") +#let fa-chain = fa-icon.with("\u{f0c1}") +#let fa-link = fa-icon.with("\u{f0c1}") +#let fa-cloud = fa-icon.with("\u{f0c2}") +#let fa-flask = fa-icon.with("\u{f0c3}") +#let fa-cut = fa-icon.with("\u{f0c4}") +#let fa-scissors = fa-icon.with("\u{f0c4}") +#let fa-copy = fa-icon.with("\u{f0c5}") +#let fa-paperclip = fa-icon.with("\u{f0c6}") +#let fa-floppy-disk = fa-icon.with("\u{f0c7}") +#let fa-save = fa-icon.with("\u{f0c7}") +#let fa-square = fa-icon.with("\u{f0c8}") +#let fa-bars = fa-icon.with("\u{f0c9}") +#let fa-navicon = fa-icon.with("\u{f0c9}") +#let fa-list-dots = fa-icon.with("\u{f0ca}") +#let fa-list-ul = fa-icon.with("\u{f0ca}") +#let fa-list-1-2 = fa-icon.with("\u{f0cb}") +#let fa-list-numeric = fa-icon.with("\u{f0cb}") +#let fa-list-ol = fa-icon.with("\u{f0cb}") +#let fa-strikethrough = fa-icon.with("\u{f0cc}") +#let fa-underline = fa-icon.with("\u{f0cd}") +#let fa-table = fa-icon.with("\u{f0ce}") +#let fa-magic = fa-icon.with("\u{f0d0}") +#let fa-wand-magic = fa-icon.with("\u{f0d0}") +#let fa-truck = fa-icon.with("\u{f0d1}") +#let fa-pinterest = fa-icon.with("\u{f0d2}") +#let fa-pinterest-square = fa-icon.with("\u{f0d3}") +#let fa-square-pinterest = fa-icon.with("\u{f0d3}") +#let fa-google-plus-square = fa-icon.with("\u{f0d4}") +#let fa-square-google-plus = fa-icon.with("\u{f0d4}") +#let fa-google-plus-g = fa-icon.with("\u{f0d5}") +#let fa-money-bill = fa-icon.with("\u{f0d6}") +#let fa-caret-down = fa-icon.with("\u{f0d7}") +#let fa-caret-up = fa-icon.with("\u{f0d8}") +#let fa-caret-left = fa-icon.with("\u{f0d9}") +#let fa-caret-right = fa-icon.with("\u{f0da}") +#let fa-columns = fa-icon.with("\u{f0db}") +#let fa-table-columns = fa-icon.with("\u{f0db}") +#let fa-sort = fa-icon.with("\u{f0dc}") +#let fa-unsorted = fa-icon.with("\u{f0dc}") +#let fa-sort-desc = fa-icon.with("\u{f0dd}") +#let fa-sort-down = fa-icon.with("\u{f0dd}") +#let fa-sort-asc = fa-icon.with("\u{f0de}") +#let fa-sort-up = fa-icon.with("\u{f0de}") +#let fa-envelope = fa-icon.with("\u{f0e0}") +#let fa-linkedin-in = fa-icon.with("\u{f0e1}") +#let fa-arrow-left-rotate = fa-icon.with("\u{f0e2}") +#let fa-arrow-rotate-back = fa-icon.with("\u{f0e2}") +#let fa-arrow-rotate-backward = fa-icon.with("\u{f0e2}") +#let fa-arrow-rotate-left = fa-icon.with("\u{f0e2}") +#let fa-undo = fa-icon.with("\u{f0e2}") +#let fa-gavel = fa-icon.with("\u{f0e3}") +#let fa-legal = fa-icon.with("\u{f0e3}") +#let fa-bolt = fa-icon.with("\u{f0e7}") +#let fa-zap = fa-icon.with("\u{f0e7}") +#let fa-sitemap = fa-icon.with("\u{f0e8}") +#let fa-umbrella = fa-icon.with("\u{f0e9}") +#let fa-file-clipboard = fa-icon.with("\u{f0ea}") +#let fa-paste = fa-icon.with("\u{f0ea}") +#let fa-lightbulb = fa-icon.with("\u{f0eb}") +#let fa-arrow-right-arrow-left = fa-icon.with("\u{f0ec}") +#let fa-exchange = fa-icon.with("\u{f0ec}") +#let fa-cloud-arrow-down = fa-icon.with("\u{f0ed}") +#let fa-cloud-download = fa-icon.with("\u{f0ed}") +#let fa-cloud-download-alt = fa-icon.with("\u{f0ed}") +#let fa-cloud-arrow-up = fa-icon.with("\u{f0ee}") +#let fa-cloud-upload = fa-icon.with("\u{f0ee}") +#let fa-cloud-upload-alt = fa-icon.with("\u{f0ee}") +#let fa-user-doctor = fa-icon.with("\u{f0f0}") +#let fa-user-md = fa-icon.with("\u{f0f0}") +#let fa-stethoscope = fa-icon.with("\u{f0f1}") +#let fa-suitcase = fa-icon.with("\u{f0f2}") +#let fa-bell = fa-icon.with("\u{f0f3}") +#let fa-coffee = fa-icon.with("\u{f0f4}") +#let fa-mug-saucer = fa-icon.with("\u{f0f4}") +#let fa-hospital = fa-icon.with("\u{f0f8}") +#let fa-hospital-alt = fa-icon.with("\u{f0f8}") +#let fa-hospital-wide = fa-icon.with("\u{f0f8}") +#let fa-ambulance = fa-icon.with("\u{f0f9}") +#let fa-truck-medical = fa-icon.with("\u{f0f9}") +#let fa-medkit = fa-icon.with("\u{f0fa}") +#let fa-suitcase-medical = fa-icon.with("\u{f0fa}") +#let fa-fighter-jet = fa-icon.with("\u{f0fb}") +#let fa-jet-fighter = fa-icon.with("\u{f0fb}") +#let fa-beer = fa-icon.with("\u{f0fc}") +#let fa-beer-mug-empty = fa-icon.with("\u{f0fc}") +#let fa-h-square = fa-icon.with("\u{f0fd}") +#let fa-square-h = fa-icon.with("\u{f0fd}") +#let fa-plus-square = fa-icon.with("\u{f0fe}") +#let fa-square-plus = fa-icon.with("\u{f0fe}") +#let fa-angle-double-left = fa-icon.with("\u{f100}") +#let fa-angles-left = fa-icon.with("\u{f100}") +#let fa-angle-double-right = fa-icon.with("\u{f101}") +#let fa-angles-right = fa-icon.with("\u{f101}") +#let fa-angle-double-up = fa-icon.with("\u{f102}") +#let fa-angles-up = fa-icon.with("\u{f102}") +#let fa-angle-double-down = fa-icon.with("\u{f103}") +#let fa-angles-down = fa-icon.with("\u{f103}") +#let fa-angle-left = fa-icon.with("\u{f104}") +#let fa-angle-right = fa-icon.with("\u{f105}") +#let fa-angle-up = fa-icon.with("\u{f106}") +#let fa-angle-down = fa-icon.with("\u{f107}") +#let fa-laptop = fa-icon.with("\u{f109}") +#let fa-tablet-button = fa-icon.with("\u{f10a}") +#let fa-mobile-button = fa-icon.with("\u{f10b}") +#let fa-quote-left = fa-icon.with("\u{f10d}") +#let fa-quote-left-alt = fa-icon.with("\u{f10d}") +#let fa-quote-right = fa-icon.with("\u{f10e}") +#let fa-quote-right-alt = fa-icon.with("\u{f10e}") +#let fa-spinner = fa-icon.with("\u{f110}") +#let fa-circle = fa-icon.with("\u{f111}") +#let fa-github-alt = fa-icon.with("\u{f113}") +#let fa-face-smile = fa-icon.with("\u{f118}") +#let fa-smile = fa-icon.with("\u{f118}") +#let fa-face-frown = fa-icon.with("\u{f119}") +#let fa-frown = fa-icon.with("\u{f119}") +#let fa-face-meh = fa-icon.with("\u{f11a}") +#let fa-meh = fa-icon.with("\u{f11a}") +#let fa-gamepad = fa-icon.with("\u{f11b}") +#let fa-keyboard = fa-icon.with("\u{f11c}") +#let fa-flag-checkered = fa-icon.with("\u{f11e}") +#let fa-terminal = fa-icon.with("\u{f120}") +#let fa-code = fa-icon.with("\u{f121}") +#let fa-mail-reply-all = fa-icon.with("\u{f122}") +#let fa-reply-all = fa-icon.with("\u{f122}") +#let fa-location-arrow = fa-icon.with("\u{f124}") +#let fa-crop = fa-icon.with("\u{f125}") +#let fa-code-branch = fa-icon.with("\u{f126}") +#let fa-chain-broken = fa-icon.with("\u{f127}") +#let fa-chain-slash = fa-icon.with("\u{f127}") +#let fa-link-slash = fa-icon.with("\u{f127}") +#let fa-unlink = fa-icon.with("\u{f127}") +#let fa-info = fa-icon.with("\u{f129}") +#let fa-superscript = fa-icon.with("\u{f12b}") +#let fa-subscript = fa-icon.with("\u{f12c}") +#let fa-eraser = fa-icon.with("\u{f12d}") +#let fa-puzzle-piece = fa-icon.with("\u{f12e}") +#let fa-microphone = fa-icon.with("\u{f130}") +#let fa-microphone-slash = fa-icon.with("\u{f131}") +#let fa-shield = fa-icon.with("\u{f132}") +#let fa-shield-blank = fa-icon.with("\u{f132}") +#let fa-calendar = fa-icon.with("\u{f133}") +#let fa-fire-extinguisher = fa-icon.with("\u{f134}") +#let fa-rocket = fa-icon.with("\u{f135}") +#let fa-maxcdn = fa-icon.with("\u{f136}") +#let fa-chevron-circle-left = fa-icon.with("\u{f137}") +#let fa-circle-chevron-left = fa-icon.with("\u{f137}") +#let fa-chevron-circle-right = fa-icon.with("\u{f138}") +#let fa-circle-chevron-right = fa-icon.with("\u{f138}") +#let fa-chevron-circle-up = fa-icon.with("\u{f139}") +#let fa-circle-chevron-up = fa-icon.with("\u{f139}") +#let fa-chevron-circle-down = fa-icon.with("\u{f13a}") +#let fa-circle-chevron-down = fa-icon.with("\u{f13a}") +#let fa-html5 = fa-icon.with("\u{f13b}") +#let fa-css3 = fa-icon.with("\u{f13c}") +#let fa-anchor = fa-icon.with("\u{f13d}") +#let fa-unlock-alt = fa-icon.with("\u{f13e}") +#let fa-unlock-keyhole = fa-icon.with("\u{f13e}") +#let fa-bullseye = fa-icon.with("\u{f140}") +#let fa-ellipsis = fa-icon.with("\u{f141}") +#let fa-ellipsis-h = fa-icon.with("\u{f141}") +#let fa-ellipsis-v = fa-icon.with("\u{f142}") +#let fa-ellipsis-vertical = fa-icon.with("\u{f142}") +#let fa-rss-square = fa-icon.with("\u{f143}") +#let fa-square-rss = fa-icon.with("\u{f143}") +#let fa-circle-play = fa-icon.with("\u{f144}") +#let fa-play-circle = fa-icon.with("\u{f144}") +#let fa-ticket = fa-icon.with("\u{f145}") +#let fa-minus-square = fa-icon.with("\u{f146}") +#let fa-square-minus = fa-icon.with("\u{f146}") +#let fa-arrow-turn-up = fa-icon.with("\u{f148}") +#let fa-level-up = fa-icon.with("\u{f148}") +#let fa-arrow-turn-down = fa-icon.with("\u{f149}") +#let fa-level-down = fa-icon.with("\u{f149}") +#let fa-check-square = fa-icon.with("\u{f14a}") +#let fa-square-check = fa-icon.with("\u{f14a}") +#let fa-pen-square = fa-icon.with("\u{f14b}") +#let fa-pencil-square = fa-icon.with("\u{f14b}") +#let fa-square-pen = fa-icon.with("\u{f14b}") +#let fa-external-link-square = fa-icon.with("\u{f14c}") +#let fa-square-arrow-up-right = fa-icon.with("\u{f14c}") +#let fa-share-from-square = fa-icon.with("\u{f14d}") +#let fa-share-square = fa-icon.with("\u{f14d}") +#let fa-compass = fa-icon.with("\u{f14e}") +#let fa-caret-square-down = fa-icon.with("\u{f150}") +#let fa-square-caret-down = fa-icon.with("\u{f150}") +#let fa-caret-square-up = fa-icon.with("\u{f151}") +#let fa-square-caret-up = fa-icon.with("\u{f151}") +#let fa-caret-square-right = fa-icon.with("\u{f152}") +#let fa-square-caret-right = fa-icon.with("\u{f152}") +#let fa-eur = fa-icon.with("\u{f153}") +#let fa-euro = fa-icon.with("\u{f153}") +#let fa-euro-sign = fa-icon.with("\u{f153}") +#let fa-gbp = fa-icon.with("\u{f154}") +#let fa-pound-sign = fa-icon.with("\u{f154}") +#let fa-sterling-sign = fa-icon.with("\u{f154}") +#let fa-rupee = fa-icon.with("\u{f156}") +#let fa-rupee-sign = fa-icon.with("\u{f156}") +#let fa-cny = fa-icon.with("\u{f157}") +#let fa-jpy = fa-icon.with("\u{f157}") +#let fa-rmb = fa-icon.with("\u{f157}") +#let fa-yen = fa-icon.with("\u{f157}") +#let fa-yen-sign = fa-icon.with("\u{f157}") +#let fa-rouble = fa-icon.with("\u{f158}") +#let fa-rub = fa-icon.with("\u{f158}") +#let fa-ruble = fa-icon.with("\u{f158}") +#let fa-ruble-sign = fa-icon.with("\u{f158}") +#let fa-krw = fa-icon.with("\u{f159}") +#let fa-won = fa-icon.with("\u{f159}") +#let fa-won-sign = fa-icon.with("\u{f159}") +#let fa-btc = fa-icon.with("\u{f15a}") +#let fa-file = fa-icon.with("\u{f15b}") +#let fa-file-alt = fa-icon.with("\u{f15c}") +#let fa-file-lines = fa-icon.with("\u{f15c}") +#let fa-file-text = fa-icon.with("\u{f15c}") +#let fa-arrow-down-a-z = fa-icon.with("\u{f15d}") +#let fa-sort-alpha-asc = fa-icon.with("\u{f15d}") +#let fa-sort-alpha-down = fa-icon.with("\u{f15d}") +#let fa-arrow-up-a-z = fa-icon.with("\u{f15e}") +#let fa-sort-alpha-up = fa-icon.with("\u{f15e}") +#let fa-arrow-down-wide-short = fa-icon.with("\u{f160}") +#let fa-sort-amount-asc = fa-icon.with("\u{f160}") +#let fa-sort-amount-down = fa-icon.with("\u{f160}") +#let fa-arrow-up-wide-short = fa-icon.with("\u{f161}") +#let fa-sort-amount-up = fa-icon.with("\u{f161}") +#let fa-arrow-down-1-9 = fa-icon.with("\u{f162}") +#let fa-sort-numeric-asc = fa-icon.with("\u{f162}") +#let fa-sort-numeric-down = fa-icon.with("\u{f162}") +#let fa-arrow-up-1-9 = fa-icon.with("\u{f163}") +#let fa-sort-numeric-up = fa-icon.with("\u{f163}") +#let fa-thumbs-up = fa-icon.with("\u{f164}") +#let fa-thumbs-down = fa-icon.with("\u{f165}") +#let fa-youtube = fa-icon.with("\u{f167}") +#let fa-xing = fa-icon.with("\u{f168}") +#let fa-square-xing = fa-icon.with("\u{f169}") +#let fa-xing-square = fa-icon.with("\u{f169}") +#let fa-dropbox = fa-icon.with("\u{f16b}") +#let fa-stack-overflow = fa-icon.with("\u{f16c}") +#let fa-instagram = fa-icon.with("\u{f16d}") +#let fa-flickr = fa-icon.with("\u{f16e}") +#let fa-adn = fa-icon.with("\u{f170}") +#let fa-bitbucket = fa-icon.with("\u{f171}") +#let fa-tumblr = fa-icon.with("\u{f173}") +#let fa-square-tumblr = fa-icon.with("\u{f174}") +#let fa-tumblr-square = fa-icon.with("\u{f174}") +#let fa-arrow-down-long = fa-icon.with("\u{f175}") +#let fa-long-arrow-down = fa-icon.with("\u{f175}") +#let fa-arrow-up-long = fa-icon.with("\u{f176}") +#let fa-long-arrow-up = fa-icon.with("\u{f176}") +#let fa-arrow-left-long = fa-icon.with("\u{f177}") +#let fa-long-arrow-left = fa-icon.with("\u{f177}") +#let fa-arrow-right-long = fa-icon.with("\u{f178}") +#let fa-long-arrow-right = fa-icon.with("\u{f178}") +#let fa-apple = fa-icon.with("\u{f179}") +#let fa-windows = fa-icon.with("\u{f17a}") +#let fa-android = fa-icon.with("\u{f17b}") +#let fa-linux = fa-icon.with("\u{f17c}") +#let fa-dribbble = fa-icon.with("\u{f17d}") +#let fa-skype = fa-icon.with("\u{f17e}") +#let fa-foursquare = fa-icon.with("\u{f180}") +#let fa-trello = fa-icon.with("\u{f181}") +#let fa-female = fa-icon.with("\u{f182}") +#let fa-person-dress = fa-icon.with("\u{f182}") +#let fa-male = fa-icon.with("\u{f183}") +#let fa-person = fa-icon.with("\u{f183}") +#let fa-gratipay = fa-icon.with("\u{f184}") +#let fa-sun = fa-icon.with("\u{f185}") +#let fa-moon = fa-icon.with("\u{f186}") +#let fa-archive = fa-icon.with("\u{f187}") +#let fa-box-archive = fa-icon.with("\u{f187}") +#let fa-bug = fa-icon.with("\u{f188}") +#let fa-vk = fa-icon.with("\u{f189}") +#let fa-weibo = fa-icon.with("\u{f18a}") +#let fa-renren = fa-icon.with("\u{f18b}") +#let fa-pagelines = fa-icon.with("\u{f18c}") +#let fa-stack-exchange = fa-icon.with("\u{f18d}") +#let fa-caret-square-left = fa-icon.with("\u{f191}") +#let fa-square-caret-left = fa-icon.with("\u{f191}") +#let fa-circle-dot = fa-icon.with("\u{f192}") +#let fa-dot-circle = fa-icon.with("\u{f192}") +#let fa-wheelchair = fa-icon.with("\u{f193}") +#let fa-square-vimeo = fa-icon.with("\u{f194}") +#let fa-vimeo-square = fa-icon.with("\u{f194}") +#let fa-lira-sign = fa-icon.with("\u{f195}") +#let fa-shuttle-space = fa-icon.with("\u{f197}") +#let fa-space-shuttle = fa-icon.with("\u{f197}") +#let fa-slack = fa-icon.with("\u{f198}") +#let fa-slack-hash = fa-icon.with("\u{f198}") +#let fa-envelope-square = fa-icon.with("\u{f199}") +#let fa-square-envelope = fa-icon.with("\u{f199}") +#let fa-wordpress = fa-icon.with("\u{f19a}") +#let fa-openid = fa-icon.with("\u{f19b}") +#let fa-bank = fa-icon.with("\u{f19c}") +#let fa-building-columns = fa-icon.with("\u{f19c}") +#let fa-institution = fa-icon.with("\u{f19c}") +#let fa-museum = fa-icon.with("\u{f19c}") +#let fa-university = fa-icon.with("\u{f19c}") +#let fa-graduation-cap = fa-icon.with("\u{f19d}") +#let fa-mortar-board = fa-icon.with("\u{f19d}") +#let fa-yahoo = fa-icon.with("\u{f19e}") +#let fa-google = fa-icon.with("\u{f1a0}") +#let fa-reddit = fa-icon.with("\u{f1a1}") +#let fa-reddit-square = fa-icon.with("\u{f1a2}") +#let fa-square-reddit = fa-icon.with("\u{f1a2}") +#let fa-stumbleupon-circle = fa-icon.with("\u{f1a3}") +#let fa-stumbleupon = fa-icon.with("\u{f1a4}") +#let fa-delicious = fa-icon.with("\u{f1a5}") +#let fa-digg = fa-icon.with("\u{f1a6}") +#let fa-pied-piper-pp = fa-icon.with("\u{f1a7}") +#let fa-pied-piper-alt = fa-icon.with("\u{f1a8}") +#let fa-drupal = fa-icon.with("\u{f1a9}") +#let fa-joomla = fa-icon.with("\u{f1aa}") +#let fa-language = fa-icon.with("\u{f1ab}") +#let fa-fax = fa-icon.with("\u{f1ac}") +#let fa-building = fa-icon.with("\u{f1ad}") +#let fa-child = fa-icon.with("\u{f1ae}") +#let fa-paw = fa-icon.with("\u{f1b0}") +#let fa-cube = fa-icon.with("\u{f1b2}") +#let fa-cubes = fa-icon.with("\u{f1b3}") +#let fa-behance = fa-icon.with("\u{f1b4}") +#let fa-behance-square = fa-icon.with("\u{f1b5}") +#let fa-square-behance = fa-icon.with("\u{f1b5}") +#let fa-steam = fa-icon.with("\u{f1b6}") +#let fa-square-steam = fa-icon.with("\u{f1b7}") +#let fa-steam-square = fa-icon.with("\u{f1b7}") +#let fa-recycle = fa-icon.with("\u{f1b8}") +#let fa-automobile = fa-icon.with("\u{f1b9}") +#let fa-car = fa-icon.with("\u{f1b9}") +#let fa-cab = fa-icon.with("\u{f1ba}") +#let fa-taxi = fa-icon.with("\u{f1ba}") +#let fa-tree = fa-icon.with("\u{f1bb}") +#let fa-spotify = fa-icon.with("\u{f1bc}") +#let fa-deviantart = fa-icon.with("\u{f1bd}") +#let fa-soundcloud = fa-icon.with("\u{f1be}") +#let fa-database = fa-icon.with("\u{f1c0}") +#let fa-file-pdf = fa-icon.with("\u{f1c1}") +#let fa-file-word = fa-icon.with("\u{f1c2}") +#let fa-file-excel = fa-icon.with("\u{f1c3}") +#let fa-file-powerpoint = fa-icon.with("\u{f1c4}") +#let fa-file-image = fa-icon.with("\u{f1c5}") +#let fa-file-archive = fa-icon.with("\u{f1c6}") +#let fa-file-zipper = fa-icon.with("\u{f1c6}") +#let fa-file-audio = fa-icon.with("\u{f1c7}") +#let fa-file-video = fa-icon.with("\u{f1c8}") +#let fa-file-code = fa-icon.with("\u{f1c9}") +#let fa-vine = fa-icon.with("\u{f1ca}") +#let fa-codepen = fa-icon.with("\u{f1cb}") +#let fa-jsfiddle = fa-icon.with("\u{f1cc}") +#let fa-life-ring = fa-icon.with("\u{f1cd}") +#let fa-circle-notch = fa-icon.with("\u{f1ce}") +#let fa-rebel = fa-icon.with("\u{f1d0}") +#let fa-empire = fa-icon.with("\u{f1d1}") +#let fa-git-square = fa-icon.with("\u{f1d2}") +#let fa-square-git = fa-icon.with("\u{f1d2}") +#let fa-git = fa-icon.with("\u{f1d3}") +#let fa-hacker-news = fa-icon.with("\u{f1d4}") +#let fa-tencent-weibo = fa-icon.with("\u{f1d5}") +#let fa-qq = fa-icon.with("\u{f1d6}") +#let fa-weixin = fa-icon.with("\u{f1d7}") +#let fa-paper-plane = fa-icon.with("\u{f1d8}") +#let fa-clock-rotate-left = fa-icon.with("\u{f1da}") +#let fa-history = fa-icon.with("\u{f1da}") +#let fa-header = fa-icon.with("\u{f1dc}") +#let fa-heading = fa-icon.with("\u{f1dc}") +#let fa-paragraph = fa-icon.with("\u{f1dd}") +#let fa-sliders = fa-icon.with("\u{f1de}") +#let fa-sliders-h = fa-icon.with("\u{f1de}") +#let fa-share-alt = fa-icon.with("\u{f1e0}") +#let fa-share-nodes = fa-icon.with("\u{f1e0}") +#let fa-share-alt-square = fa-icon.with("\u{f1e1}") +#let fa-square-share-nodes = fa-icon.with("\u{f1e1}") +#let fa-bomb = fa-icon.with("\u{f1e2}") +#let fa-futbol = fa-icon.with("\u{f1e3}") +#let fa-futbol-ball = fa-icon.with("\u{f1e3}") +#let fa-soccer-ball = fa-icon.with("\u{f1e3}") +#let fa-teletype = fa-icon.with("\u{f1e4}") +#let fa-tty = fa-icon.with("\u{f1e4}") +#let fa-binoculars = fa-icon.with("\u{f1e5}") +#let fa-plug = fa-icon.with("\u{f1e6}") +#let fa-slideshare = fa-icon.with("\u{f1e7}") +#let fa-twitch = fa-icon.with("\u{f1e8}") +#let fa-yelp = fa-icon.with("\u{f1e9}") +#let fa-newspaper = fa-icon.with("\u{f1ea}") +#let fa-wifi = fa-icon.with("\u{f1eb}") +#let fa-wifi-3 = fa-icon.with("\u{f1eb}") +#let fa-wifi-strong = fa-icon.with("\u{f1eb}") +#let fa-calculator = fa-icon.with("\u{f1ec}") +#let fa-paypal = fa-icon.with("\u{f1ed}") +#let fa-google-wallet = fa-icon.with("\u{f1ee}") +#let fa-cc-visa = fa-icon.with("\u{f1f0}") +#let fa-cc-mastercard = fa-icon.with("\u{f1f1}") +#let fa-cc-discover = fa-icon.with("\u{f1f2}") +#let fa-cc-amex = fa-icon.with("\u{f1f3}") +#let fa-cc-paypal = fa-icon.with("\u{f1f4}") +#let fa-cc-stripe = fa-icon.with("\u{f1f5}") +#let fa-bell-slash = fa-icon.with("\u{f1f6}") +#let fa-trash = fa-icon.with("\u{f1f8}") +#let fa-copyright = fa-icon.with("\u{f1f9}") +#let fa-eye-dropper = fa-icon.with("\u{f1fb}") +#let fa-eye-dropper-empty = fa-icon.with("\u{f1fb}") +#let fa-eyedropper = fa-icon.with("\u{f1fb}") +#let fa-paint-brush = fa-icon.with("\u{f1fc}") +#let fa-paintbrush = fa-icon.with("\u{f1fc}") +#let fa-birthday-cake = fa-icon.with("\u{f1fd}") +#let fa-cake = fa-icon.with("\u{f1fd}") +#let fa-cake-candles = fa-icon.with("\u{f1fd}") +#let fa-area-chart = fa-icon.with("\u{f1fe}") +#let fa-chart-area = fa-icon.with("\u{f1fe}") +#let fa-chart-pie = fa-icon.with("\u{f200}") +#let fa-pie-chart = fa-icon.with("\u{f200}") +#let fa-chart-line = fa-icon.with("\u{f201}") +#let fa-line-chart = fa-icon.with("\u{f201}") +#let fa-lastfm = fa-icon.with("\u{f202}") +#let fa-lastfm-square = fa-icon.with("\u{f203}") +#let fa-square-lastfm = fa-icon.with("\u{f203}") +#let fa-toggle-off = fa-icon.with("\u{f204}") +#let fa-toggle-on = fa-icon.with("\u{f205}") +#let fa-bicycle = fa-icon.with("\u{f206}") +#let fa-bus = fa-icon.with("\u{f207}") +#let fa-ioxhost = fa-icon.with("\u{f208}") +#let fa-angellist = fa-icon.with("\u{f209}") +#let fa-closed-captioning = fa-icon.with("\u{f20a}") +#let fa-ils = fa-icon.with("\u{f20b}") +#let fa-shekel = fa-icon.with("\u{f20b}") +#let fa-shekel-sign = fa-icon.with("\u{f20b}") +#let fa-sheqel = fa-icon.with("\u{f20b}") +#let fa-sheqel-sign = fa-icon.with("\u{f20b}") +#let fa-buysellads = fa-icon.with("\u{f20d}") +#let fa-connectdevelop = fa-icon.with("\u{f20e}") +#let fa-dashcube = fa-icon.with("\u{f210}") +#let fa-forumbee = fa-icon.with("\u{f211}") +#let fa-leanpub = fa-icon.with("\u{f212}") +#let fa-sellsy = fa-icon.with("\u{f213}") +#let fa-shirtsinbulk = fa-icon.with("\u{f214}") +#let fa-simplybuilt = fa-icon.with("\u{f215}") +#let fa-skyatlas = fa-icon.with("\u{f216}") +#let fa-cart-plus = fa-icon.with("\u{f217}") +#let fa-cart-arrow-down = fa-icon.with("\u{f218}") +#let fa-diamond = fa-icon.with("\u{f219}") +#let fa-ship = fa-icon.with("\u{f21a}") +#let fa-user-secret = fa-icon.with("\u{f21b}") +#let fa-motorcycle = fa-icon.with("\u{f21c}") +#let fa-street-view = fa-icon.with("\u{f21d}") +#let fa-heart-pulse = fa-icon.with("\u{f21e}") +#let fa-heartbeat = fa-icon.with("\u{f21e}") +#let fa-venus = fa-icon.with("\u{f221}") +#let fa-mars = fa-icon.with("\u{f222}") +#let fa-mercury = fa-icon.with("\u{f223}") +#let fa-mars-and-venus = fa-icon.with("\u{f224}") +#let fa-transgender = fa-icon.with("\u{f225}") +#let fa-transgender-alt = fa-icon.with("\u{f225}") +#let fa-venus-double = fa-icon.with("\u{f226}") +#let fa-mars-double = fa-icon.with("\u{f227}") +#let fa-venus-mars = fa-icon.with("\u{f228}") +#let fa-mars-stroke = fa-icon.with("\u{f229}") +#let fa-mars-stroke-up = fa-icon.with("\u{f22a}") +#let fa-mars-stroke-v = fa-icon.with("\u{f22a}") +#let fa-mars-stroke-h = fa-icon.with("\u{f22b}") +#let fa-mars-stroke-right = fa-icon.with("\u{f22b}") +#let fa-neuter = fa-icon.with("\u{f22c}") +#let fa-genderless = fa-icon.with("\u{f22d}") +#let fa-pinterest-p = fa-icon.with("\u{f231}") +#let fa-whatsapp = fa-icon.with("\u{f232}") +#let fa-server = fa-icon.with("\u{f233}") +#let fa-user-plus = fa-icon.with("\u{f234}") +#let fa-user-times = fa-icon.with("\u{f235}") +#let fa-user-xmark = fa-icon.with("\u{f235}") +#let fa-bed = fa-icon.with("\u{f236}") +#let fa-viacoin = fa-icon.with("\u{f237}") +#let fa-train = fa-icon.with("\u{f238}") +#let fa-subway = fa-icon.with("\u{f239}") +#let fa-train-subway = fa-icon.with("\u{f239}") +#let fa-medium = fa-icon.with("\u{f23a}") +#let fa-medium-m = fa-icon.with("\u{f23a}") +#let fa-y-combinator = fa-icon.with("\u{f23b}") +#let fa-optin-monster = fa-icon.with("\u{f23c}") +#let fa-opencart = fa-icon.with("\u{f23d}") +#let fa-expeditedssl = fa-icon.with("\u{f23e}") +#let fa-battery = fa-icon.with("\u{f240}") +#let fa-battery-5 = fa-icon.with("\u{f240}") +#let fa-battery-full = fa-icon.with("\u{f240}") +#let fa-battery-4 = fa-icon.with("\u{f241}") +#let fa-battery-three-quarters = fa-icon.with("\u{f241}") +#let fa-battery-3 = fa-icon.with("\u{f242}") +#let fa-battery-half = fa-icon.with("\u{f242}") +#let fa-battery-2 = fa-icon.with("\u{f243}") +#let fa-battery-quarter = fa-icon.with("\u{f243}") +#let fa-battery-0 = fa-icon.with("\u{f244}") +#let fa-battery-empty = fa-icon.with("\u{f244}") +#let fa-arrow-pointer = fa-icon.with("\u{f245}") +#let fa-mouse-pointer = fa-icon.with("\u{f245}") +#let fa-i-cursor = fa-icon.with("\u{f246}") +#let fa-object-group = fa-icon.with("\u{f247}") +#let fa-object-ungroup = fa-icon.with("\u{f248}") +#let fa-note-sticky = fa-icon.with("\u{f249}") +#let fa-sticky-note = fa-icon.with("\u{f249}") +#let fa-cc-jcb = fa-icon.with("\u{f24b}") +#let fa-cc-diners-club = fa-icon.with("\u{f24c}") +#let fa-clone = fa-icon.with("\u{f24d}") +#let fa-balance-scale = fa-icon.with("\u{f24e}") +#let fa-scale-balanced = fa-icon.with("\u{f24e}") +#let fa-hourglass-1 = fa-icon.with("\u{f251}") +#let fa-hourglass-start = fa-icon.with("\u{f251}") +#let fa-hourglass-2 = fa-icon.with("\u{f252}") +#let fa-hourglass-half = fa-icon.with("\u{f252}") +#let fa-hourglass-3 = fa-icon.with("\u{f253}") +#let fa-hourglass-end = fa-icon.with("\u{f253}") +#let fa-hourglass = fa-icon.with("\u{f254}") +#let fa-hourglass-empty = fa-icon.with("\u{f254}") +#let fa-hand-back-fist = fa-icon.with("\u{f255}") +#let fa-hand-rock = fa-icon.with("\u{f255}") +#let fa-hand = fa-icon.with("\u{f256}") +#let fa-hand-paper = fa-icon.with("\u{f256}") +#let fa-hand-scissors = fa-icon.with("\u{f257}") +#let fa-hand-lizard = fa-icon.with("\u{f258}") +#let fa-hand-spock = fa-icon.with("\u{f259}") +#let fa-hand-pointer = fa-icon.with("\u{f25a}") +#let fa-hand-peace = fa-icon.with("\u{f25b}") +#let fa-trademark = fa-icon.with("\u{f25c}") +#let fa-registered = fa-icon.with("\u{f25d}") +#let fa-creative-commons = fa-icon.with("\u{f25e}") +#let fa-gg = fa-icon.with("\u{f260}") +#let fa-gg-circle = fa-icon.with("\u{f261}") +#let fa-odnoklassniki = fa-icon.with("\u{f263}") +#let fa-odnoklassniki-square = fa-icon.with("\u{f264}") +#let fa-square-odnoklassniki = fa-icon.with("\u{f264}") +#let fa-get-pocket = fa-icon.with("\u{f265}") +#let fa-wikipedia-w = fa-icon.with("\u{f266}") +#let fa-safari = fa-icon.with("\u{f267}") +#let fa-chrome = fa-icon.with("\u{f268}") +#let fa-firefox = fa-icon.with("\u{f269}") +#let fa-opera = fa-icon.with("\u{f26a}") +#let fa-internet-explorer = fa-icon.with("\u{f26b}") +#let fa-television = fa-icon.with("\u{f26c}") +#let fa-tv = fa-icon.with("\u{f26c}") +#let fa-tv-alt = fa-icon.with("\u{f26c}") +#let fa-contao = fa-icon.with("\u{f26d}") +#let fa-500px = fa-icon.with("\u{f26e}") +#let fa-amazon = fa-icon.with("\u{f270}") +#let fa-calendar-plus = fa-icon.with("\u{f271}") +#let fa-calendar-minus = fa-icon.with("\u{f272}") +#let fa-calendar-times = fa-icon.with("\u{f273}") +#let fa-calendar-xmark = fa-icon.with("\u{f273}") +#let fa-calendar-check = fa-icon.with("\u{f274}") +#let fa-industry = fa-icon.with("\u{f275}") +#let fa-map-pin = fa-icon.with("\u{f276}") +#let fa-map-signs = fa-icon.with("\u{f277}") +#let fa-signs-post = fa-icon.with("\u{f277}") +#let fa-map = fa-icon.with("\u{f279}") +#let fa-comment-alt = fa-icon.with("\u{f27a}") +#let fa-message = fa-icon.with("\u{f27a}") +#let fa-houzz = fa-icon.with("\u{f27c}") +#let fa-vimeo-v = fa-icon.with("\u{f27d}") +#let fa-black-tie = fa-icon.with("\u{f27e}") +#let fa-fonticons = fa-icon.with("\u{f280}") +#let fa-reddit-alien = fa-icon.with("\u{f281}") +#let fa-edge = fa-icon.with("\u{f282}") +#let fa-codiepie = fa-icon.with("\u{f284}") +#let fa-modx = fa-icon.with("\u{f285}") +#let fa-fort-awesome = fa-icon.with("\u{f286}") +#let fa-usb = fa-icon.with("\u{f287}") +#let fa-product-hunt = fa-icon.with("\u{f288}") +#let fa-mixcloud = fa-icon.with("\u{f289}") +#let fa-scribd = fa-icon.with("\u{f28a}") +#let fa-circle-pause = fa-icon.with("\u{f28b}") +#let fa-pause-circle = fa-icon.with("\u{f28b}") +#let fa-circle-stop = fa-icon.with("\u{f28d}") +#let fa-stop-circle = fa-icon.with("\u{f28d}") +#let fa-bag-shopping = fa-icon.with("\u{f290}") +#let fa-shopping-bag = fa-icon.with("\u{f290}") +#let fa-basket-shopping = fa-icon.with("\u{f291}") +#let fa-shopping-basket = fa-icon.with("\u{f291}") +#let fa-bluetooth = fa-icon.with("\u{f293}") +#let fa-bluetooth-b = fa-icon.with("\u{f294}") +#let fa-gitlab = fa-icon.with("\u{f296}") +#let fa-wpbeginner = fa-icon.with("\u{f297}") +#let fa-wpforms = fa-icon.with("\u{f298}") +#let fa-envira = fa-icon.with("\u{f299}") +#let fa-universal-access = fa-icon.with("\u{f29a}") +#let fa-blind = fa-icon.with("\u{f29d}") +#let fa-person-walking-with-cane = fa-icon.with("\u{f29d}") +#let fa-audio-description = fa-icon.with("\u{f29e}") +#let fa-phone-volume = fa-icon.with("\u{f2a0}") +#let fa-volume-control-phone = fa-icon.with("\u{f2a0}") +#let fa-braille = fa-icon.with("\u{f2a1}") +#let fa-assistive-listening-systems = fa-icon.with("\u{f2a2}") +#let fa-ear-listen = fa-icon.with("\u{f2a2}") +#let fa-american-sign-language-interpreting = fa-icon.with("\u{f2a3}") +#let fa-asl-interpreting = fa-icon.with("\u{f2a3}") +#let fa-hands-american-sign-language-interpreting = fa-icon.with("\u{f2a3}") +#let fa-hands-asl-interpreting = fa-icon.with("\u{f2a3}") +#let fa-deaf = fa-icon.with("\u{f2a4}") +#let fa-deafness = fa-icon.with("\u{f2a4}") +#let fa-ear-deaf = fa-icon.with("\u{f2a4}") +#let fa-hard-of-hearing = fa-icon.with("\u{f2a4}") +#let fa-glide = fa-icon.with("\u{f2a5}") +#let fa-glide-g = fa-icon.with("\u{f2a6}") +#let fa-hands = fa-icon.with("\u{f2a7}") +#let fa-sign-language = fa-icon.with("\u{f2a7}") +#let fa-signing = fa-icon.with("\u{f2a7}") +#let fa-eye-low-vision = fa-icon.with("\u{f2a8}") +#let fa-low-vision = fa-icon.with("\u{f2a8}") +#let fa-viadeo = fa-icon.with("\u{f2a9}") +#let fa-square-viadeo = fa-icon.with("\u{f2aa}") +#let fa-viadeo-square = fa-icon.with("\u{f2aa}") +#let fa-snapchat = fa-icon.with("\u{f2ab}") +#let fa-snapchat-ghost = fa-icon.with("\u{f2ab}") +#let fa-snapchat-square = fa-icon.with("\u{f2ad}") +#let fa-square-snapchat = fa-icon.with("\u{f2ad}") +#let fa-pied-piper = fa-icon.with("\u{f2ae}") +#let fa-first-order = fa-icon.with("\u{f2b0}") +#let fa-yoast = fa-icon.with("\u{f2b1}") +#let fa-themeisle = fa-icon.with("\u{f2b2}") +#let fa-google-plus = fa-icon.with("\u{f2b3}") +#let fa-font-awesome = fa-icon.with("\u{f2b4}") +#let fa-font-awesome-flag = fa-icon.with("\u{f2b4}") +#let fa-font-awesome-logo-full = fa-icon.with("\u{f2b4}") +#let fa-handshake = fa-icon.with("\u{f2b5}") +#let fa-envelope-open = fa-icon.with("\u{f2b6}") +#let fa-linode = fa-icon.with("\u{f2b8}") +#let fa-address-book = fa-icon.with("\u{f2b9}") +#let fa-contact-book = fa-icon.with("\u{f2b9}") +#let fa-address-card = fa-icon.with("\u{f2bb}") +#let fa-contact-card = fa-icon.with("\u{f2bb}") +#let fa-vcard = fa-icon.with("\u{f2bb}") +#let fa-circle-user = fa-icon.with("\u{f2bd}") +#let fa-user-circle = fa-icon.with("\u{f2bd}") +#let fa-id-badge = fa-icon.with("\u{f2c1}") +#let fa-drivers-license = fa-icon.with("\u{f2c2}") +#let fa-id-card = fa-icon.with("\u{f2c2}") +#let fa-quora = fa-icon.with("\u{f2c4}") +#let fa-free-code-camp = fa-icon.with("\u{f2c5}") +#let fa-telegram = fa-icon.with("\u{f2c6}") +#let fa-telegram-plane = fa-icon.with("\u{f2c6}") +#let fa-temperature-4 = fa-icon.with("\u{f2c7}") +#let fa-temperature-full = fa-icon.with("\u{f2c7}") +#let fa-thermometer-4 = fa-icon.with("\u{f2c7}") +#let fa-thermometer-full = fa-icon.with("\u{f2c7}") +#let fa-temperature-3 = fa-icon.with("\u{f2c8}") +#let fa-temperature-three-quarters = fa-icon.with("\u{f2c8}") +#let fa-thermometer-3 = fa-icon.with("\u{f2c8}") +#let fa-thermometer-three-quarters = fa-icon.with("\u{f2c8}") +#let fa-temperature-2 = fa-icon.with("\u{f2c9}") +#let fa-temperature-half = fa-icon.with("\u{f2c9}") +#let fa-thermometer-2 = fa-icon.with("\u{f2c9}") +#let fa-thermometer-half = fa-icon.with("\u{f2c9}") +#let fa-temperature-1 = fa-icon.with("\u{f2ca}") +#let fa-temperature-quarter = fa-icon.with("\u{f2ca}") +#let fa-thermometer-1 = fa-icon.with("\u{f2ca}") +#let fa-thermometer-quarter = fa-icon.with("\u{f2ca}") +#let fa-temperature-0 = fa-icon.with("\u{f2cb}") +#let fa-temperature-empty = fa-icon.with("\u{f2cb}") +#let fa-thermometer-0 = fa-icon.with("\u{f2cb}") +#let fa-thermometer-empty = fa-icon.with("\u{f2cb}") +#let fa-shower = fa-icon.with("\u{f2cc}") +#let fa-bath = fa-icon.with("\u{f2cd}") +#let fa-bathtub = fa-icon.with("\u{f2cd}") +#let fa-podcast = fa-icon.with("\u{f2ce}") +#let fa-window-maximize = fa-icon.with("\u{f2d0}") +#let fa-window-minimize = fa-icon.with("\u{f2d1}") +#let fa-window-restore = fa-icon.with("\u{f2d2}") +#let fa-square-xmark = fa-icon.with("\u{f2d3}") +#let fa-times-square = fa-icon.with("\u{f2d3}") +#let fa-xmark-square = fa-icon.with("\u{f2d3}") +#let fa-bandcamp = fa-icon.with("\u{f2d5}") +#let fa-grav = fa-icon.with("\u{f2d6}") +#let fa-etsy = fa-icon.with("\u{f2d7}") +#let fa-imdb = fa-icon.with("\u{f2d8}") +#let fa-ravelry = fa-icon.with("\u{f2d9}") +#let fa-sellcast = fa-icon.with("\u{f2da}") +#let fa-microchip = fa-icon.with("\u{f2db}") +#let fa-snowflake = fa-icon.with("\u{f2dc}") +#let fa-superpowers = fa-icon.with("\u{f2dd}") +#let fa-wpexplorer = fa-icon.with("\u{f2de}") +#let fa-meetup = fa-icon.with("\u{f2e0}") +#let fa-watch = fa-icon.with("\u{f2e1}") +#let fa-volume-slash = fa-icon.with("\u{f2e2}") +#let fa-fork = fa-icon.with("\u{f2e3}") +#let fa-utensil-fork = fa-icon.with("\u{f2e3}") +#let fa-knife = fa-icon.with("\u{f2e4}") +#let fa-utensil-knife = fa-icon.with("\u{f2e4}") +#let fa-spoon = fa-icon.with("\u{f2e5}") +#let fa-utensil-spoon = fa-icon.with("\u{f2e5}") +#let fa-fork-knife = fa-icon.with("\u{f2e6}") +#let fa-utensils-alt = fa-icon.with("\u{f2e6}") +#let fa-cutlery = fa-icon.with("\u{f2e7}") +#let fa-utensils = fa-icon.with("\u{f2e7}") +#let fa-circle-dollar = fa-icon.with("\u{f2e8}") +#let fa-dollar-circle = fa-icon.with("\u{f2e8}") +#let fa-usd-circle = fa-icon.with("\u{f2e8}") +#let fa-dollar-square = fa-icon.with("\u{f2e9}") +#let fa-square-dollar = fa-icon.with("\u{f2e9}") +#let fa-usd-square = fa-icon.with("\u{f2e9}") +#let fa-rotate-back = fa-icon.with("\u{f2ea}") +#let fa-rotate-backward = fa-icon.with("\u{f2ea}") +#let fa-rotate-left = fa-icon.with("\u{f2ea}") +#let fa-undo-alt = fa-icon.with("\u{f2ea}") +#let fa-trophy-alt = fa-icon.with("\u{f2eb}") +#let fa-trophy-star = fa-icon.with("\u{f2eb}") +#let fa-triangle = fa-icon.with("\u{f2ec}") +#let fa-trash-alt = fa-icon.with("\u{f2ed}") +#let fa-trash-can = fa-icon.with("\u{f2ed}") +#let fa-hexagon-xmark = fa-icon.with("\u{f2ee}") +#let fa-times-hexagon = fa-icon.with("\u{f2ee}") +#let fa-xmark-hexagon = fa-icon.with("\u{f2ee}") +#let fa-octagon-xmark = fa-icon.with("\u{f2f0}") +#let fa-times-octagon = fa-icon.with("\u{f2f0}") +#let fa-xmark-octagon = fa-icon.with("\u{f2f0}") +#let fa-rotate = fa-icon.with("\u{f2f1}") +#let fa-sync-alt = fa-icon.with("\u{f2f1}") +#let fa-stopwatch = fa-icon.with("\u{f2f2}") +#let fa-star-exclamation = fa-icon.with("\u{f2f3}") +#let fa-spade = fa-icon.with("\u{f2f4}") +#let fa-right-from-bracket = fa-icon.with("\u{f2f5}") +#let fa-sign-out-alt = fa-icon.with("\u{f2f5}") +#let fa-right-to-bracket = fa-icon.with("\u{f2f6}") +#let fa-sign-in-alt = fa-icon.with("\u{f2f6}") +#let fa-shield-check = fa-icon.with("\u{f2f7}") +#let fa-scrubber = fa-icon.with("\u{f2f8}") +#let fa-redo-alt = fa-icon.with("\u{f2f9}") +#let fa-rotate-forward = fa-icon.with("\u{f2f9}") +#let fa-rotate-right = fa-icon.with("\u{f2f9}") +#let fa-rectangle = fa-icon.with("\u{f2fa}") +#let fa-rectangle-landscape = fa-icon.with("\u{f2fa}") +#let fa-rectangle-portrait = fa-icon.with("\u{f2fb}") +#let fa-rectangle-vertical = fa-icon.with("\u{f2fb}") +#let fa-rectangle-wide = fa-icon.with("\u{f2fc}") +#let fa-question-square = fa-icon.with("\u{f2fd}") +#let fa-square-question = fa-icon.with("\u{f2fd}") +#let fa-poo = fa-icon.with("\u{f2fe}") +#let fa-hexagon-plus = fa-icon.with("\u{f300}") +#let fa-plus-hexagon = fa-icon.with("\u{f300}") +#let fa-octagon-plus = fa-icon.with("\u{f301}") +#let fa-plus-octagon = fa-icon.with("\u{f301}") +#let fa-images = fa-icon.with("\u{f302}") +#let fa-pencil = fa-icon.with("\u{f303}") +#let fa-pencil-alt = fa-icon.with("\u{f303}") +#let fa-pen = fa-icon.with("\u{f304}") +#let fa-pen-alt = fa-icon.with("\u{f305}") +#let fa-pen-clip = fa-icon.with("\u{f305}") +#let fa-octagon = fa-icon.with("\u{f306}") +#let fa-hexagon-minus = fa-icon.with("\u{f307}") +#let fa-minus-hexagon = fa-icon.with("\u{f307}") +#let fa-minus-octagon = fa-icon.with("\u{f308}") +#let fa-octagon-minus = fa-icon.with("\u{f308}") +#let fa-down-long = fa-icon.with("\u{f309}") +#let fa-long-arrow-alt-down = fa-icon.with("\u{f309}") +#let fa-left-long = fa-icon.with("\u{f30a}") +#let fa-long-arrow-alt-left = fa-icon.with("\u{f30a}") +#let fa-long-arrow-alt-right = fa-icon.with("\u{f30b}") +#let fa-right-long = fa-icon.with("\u{f30b}") +#let fa-long-arrow-alt-up = fa-icon.with("\u{f30c}") +#let fa-up-long = fa-icon.with("\u{f30c}") +#let fa-lock-alt = fa-icon.with("\u{f30d}") +#let fa-lock-keyhole = fa-icon.with("\u{f30d}") +#let fa-jack-o-lantern = fa-icon.with("\u{f30e}") +#let fa-info-square = fa-icon.with("\u{f30f}") +#let fa-square-info = fa-icon.with("\u{f30f}") +#let fa-inbox-arrow-down = fa-icon.with("\u{f310}") +#let fa-inbox-in = fa-icon.with("\u{f310}") +#let fa-inbox-arrow-up = fa-icon.with("\u{f311}") +#let fa-inbox-out = fa-icon.with("\u{f311}") +#let fa-hexagon = fa-icon.with("\u{f312}") +#let fa-h1 = fa-icon.with("\u{f313}") +#let fa-h2 = fa-icon.with("\u{f314}") +#let fa-h3 = fa-icon.with("\u{f315}") +#let fa-file-check = fa-icon.with("\u{f316}") +#let fa-file-times = fa-icon.with("\u{f317}") +#let fa-file-xmark = fa-icon.with("\u{f317}") +#let fa-file-minus = fa-icon.with("\u{f318}") +#let fa-file-plus = fa-icon.with("\u{f319}") +#let fa-file-exclamation = fa-icon.with("\u{f31a}") +#let fa-file-edit = fa-icon.with("\u{f31c}") +#let fa-file-pen = fa-icon.with("\u{f31c}") +#let fa-arrows-maximize = fa-icon.with("\u{f31d}") +#let fa-expand-arrows = fa-icon.with("\u{f31d}") +#let fa-expand-arrows-alt = fa-icon.with("\u{f31e}") +#let fa-maximize = fa-icon.with("\u{f31e}") +#let fa-expand-wide = fa-icon.with("\u{f320}") +#let fa-exclamation-square = fa-icon.with("\u{f321}") +#let fa-square-exclamation = fa-icon.with("\u{f321}") +#let fa-chevron-double-down = fa-icon.with("\u{f322}") +#let fa-chevrons-down = fa-icon.with("\u{f322}") +#let fa-chevron-double-left = fa-icon.with("\u{f323}") +#let fa-chevrons-left = fa-icon.with("\u{f323}") +#let fa-chevron-double-right = fa-icon.with("\u{f324}") +#let fa-chevrons-right = fa-icon.with("\u{f324}") +#let fa-chevron-double-up = fa-icon.with("\u{f325}") +#let fa-chevrons-up = fa-icon.with("\u{f325}") +#let fa-compress-wide = fa-icon.with("\u{f326}") +#let fa-club = fa-icon.with("\u{f327}") +#let fa-clipboard = fa-icon.with("\u{f328}") +#let fa-chevron-square-down = fa-icon.with("\u{f329}") +#let fa-square-chevron-down = fa-icon.with("\u{f329}") +#let fa-chevron-square-left = fa-icon.with("\u{f32a}") +#let fa-square-chevron-left = fa-icon.with("\u{f32a}") +#let fa-chevron-square-right = fa-icon.with("\u{f32b}") +#let fa-square-chevron-right = fa-icon.with("\u{f32b}") +#let fa-chevron-square-up = fa-icon.with("\u{f32c}") +#let fa-square-chevron-up = fa-icon.with("\u{f32c}") +#let fa-caret-circle-down = fa-icon.with("\u{f32d}") +#let fa-circle-caret-down = fa-icon.with("\u{f32d}") +#let fa-caret-circle-left = fa-icon.with("\u{f32e}") +#let fa-circle-caret-left = fa-icon.with("\u{f32e}") +#let fa-caret-circle-right = fa-icon.with("\u{f330}") +#let fa-circle-caret-right = fa-icon.with("\u{f330}") +#let fa-caret-circle-up = fa-icon.with("\u{f331}") +#let fa-circle-caret-up = fa-icon.with("\u{f331}") +#let fa-calendar-edit = fa-icon.with("\u{f333}") +#let fa-calendar-pen = fa-icon.with("\u{f333}") +#let fa-calendar-exclamation = fa-icon.with("\u{f334}") +#let fa-badge = fa-icon.with("\u{f335}") +#let fa-badge-check = fa-icon.with("\u{f336}") +#let fa-arrows-alt-h = fa-icon.with("\u{f337}") +#let fa-left-right = fa-icon.with("\u{f337}") +#let fa-arrows-alt-v = fa-icon.with("\u{f338}") +#let fa-up-down = fa-icon.with("\u{f338}") +#let fa-arrow-square-down = fa-icon.with("\u{f339}") +#let fa-square-arrow-down = fa-icon.with("\u{f339}") +#let fa-arrow-square-left = fa-icon.with("\u{f33a}") +#let fa-square-arrow-left = fa-icon.with("\u{f33a}") +#let fa-arrow-square-right = fa-icon.with("\u{f33b}") +#let fa-square-arrow-right = fa-icon.with("\u{f33b}") +#let fa-arrow-square-up = fa-icon.with("\u{f33c}") +#let fa-square-arrow-up = fa-icon.with("\u{f33c}") +#let fa-arrow-down-to-line = fa-icon.with("\u{f33d}") +#let fa-arrow-to-bottom = fa-icon.with("\u{f33d}") +#let fa-arrow-left-to-line = fa-icon.with("\u{f33e}") +#let fa-arrow-to-left = fa-icon.with("\u{f33e}") +#let fa-arrow-right-to-line = fa-icon.with("\u{f340}") +#let fa-arrow-to-right = fa-icon.with("\u{f340}") +#let fa-arrow-to-top = fa-icon.with("\u{f341}") +#let fa-arrow-up-to-line = fa-icon.with("\u{f341}") +#let fa-arrow-from-bottom = fa-icon.with("\u{f342}") +#let fa-arrow-up-from-line = fa-icon.with("\u{f342}") +#let fa-arrow-from-left = fa-icon.with("\u{f343}") +#let fa-arrow-right-from-line = fa-icon.with("\u{f343}") +#let fa-arrow-from-right = fa-icon.with("\u{f344}") +#let fa-arrow-left-from-line = fa-icon.with("\u{f344}") +#let fa-arrow-down-from-line = fa-icon.with("\u{f345}") +#let fa-arrow-from-top = fa-icon.with("\u{f345}") +#let fa-arrow-alt-from-bottom = fa-icon.with("\u{f346}") +#let fa-up-from-line = fa-icon.with("\u{f346}") +#let fa-arrow-alt-from-left = fa-icon.with("\u{f347}") +#let fa-right-from-line = fa-icon.with("\u{f347}") +#let fa-arrow-alt-from-right = fa-icon.with("\u{f348}") +#let fa-left-from-line = fa-icon.with("\u{f348}") +#let fa-arrow-alt-from-top = fa-icon.with("\u{f349}") +#let fa-down-from-line = fa-icon.with("\u{f349}") +#let fa-arrow-alt-to-bottom = fa-icon.with("\u{f34a}") +#let fa-down-to-line = fa-icon.with("\u{f34a}") +#let fa-arrow-alt-to-left = fa-icon.with("\u{f34b}") +#let fa-left-to-line = fa-icon.with("\u{f34b}") +#let fa-arrow-alt-to-right = fa-icon.with("\u{f34c}") +#let fa-right-to-line = fa-icon.with("\u{f34c}") +#let fa-arrow-alt-to-top = fa-icon.with("\u{f34d}") +#let fa-up-to-line = fa-icon.with("\u{f34d}") +#let fa-alarm-clock = fa-icon.with("\u{f34e}") +#let fa-arrow-alt-square-down = fa-icon.with("\u{f350}") +#let fa-square-down = fa-icon.with("\u{f350}") +#let fa-arrow-alt-square-left = fa-icon.with("\u{f351}") +#let fa-square-left = fa-icon.with("\u{f351}") +#let fa-arrow-alt-square-right = fa-icon.with("\u{f352}") +#let fa-square-right = fa-icon.with("\u{f352}") +#let fa-arrow-alt-square-up = fa-icon.with("\u{f353}") +#let fa-square-up = fa-icon.with("\u{f353}") +#let fa-arrow-alt-down = fa-icon.with("\u{f354}") +#let fa-down = fa-icon.with("\u{f354}") +#let fa-arrow-alt-left = fa-icon.with("\u{f355}") +#let fa-left = fa-icon.with("\u{f355}") +#let fa-arrow-alt-right = fa-icon.with("\u{f356}") +#let fa-right = fa-icon.with("\u{f356}") +#let fa-arrow-alt-up = fa-icon.with("\u{f357}") +#let fa-up = fa-icon.with("\u{f357}") +#let fa-arrow-alt-circle-down = fa-icon.with("\u{f358}") +#let fa-circle-down = fa-icon.with("\u{f358}") +#let fa-arrow-alt-circle-left = fa-icon.with("\u{f359}") +#let fa-circle-left = fa-icon.with("\u{f359}") +#let fa-arrow-alt-circle-right = fa-icon.with("\u{f35a}") +#let fa-circle-right = fa-icon.with("\u{f35a}") +#let fa-arrow-alt-circle-up = fa-icon.with("\u{f35b}") +#let fa-circle-up = fa-icon.with("\u{f35b}") +#let fa-font-awesome-alt = fa-icon.with("\u{f35c}") +#let fa-square-font-awesome-stroke = fa-icon.with("\u{f35c}") +#let fa-external-link-alt = fa-icon.with("\u{f35d}") +#let fa-up-right-from-square = fa-icon.with("\u{f35d}") +#let fa-external-link-square-alt = fa-icon.with("\u{f360}") +#let fa-square-up-right = fa-icon.with("\u{f360}") +#let fa-arrows-retweet = fa-icon.with("\u{f361}") +#let fa-retweet-alt = fa-icon.with("\u{f361}") +#let fa-exchange-alt = fa-icon.with("\u{f362}") +#let fa-right-left = fa-icon.with("\u{f362}") +#let fa-repeat = fa-icon.with("\u{f363}") +#let fa-arrows-repeat = fa-icon.with("\u{f364}") +#let fa-repeat-alt = fa-icon.with("\u{f364}") +#let fa-repeat-1 = fa-icon.with("\u{f365}") +#let fa-arrows-repeat-1 = fa-icon.with("\u{f366}") +#let fa-repeat-1-alt = fa-icon.with("\u{f366}") +#let fa-share-all = fa-icon.with("\u{f367}") +#let fa-accessible-icon = fa-icon.with("\u{f368}") +#let fa-accusoft = fa-icon.with("\u{f369}") +#let fa-adversal = fa-icon.with("\u{f36a}") +#let fa-affiliatetheme = fa-icon.with("\u{f36b}") +#let fa-algolia = fa-icon.with("\u{f36c}") +#let fa-amilia = fa-icon.with("\u{f36d}") +#let fa-angrycreative = fa-icon.with("\u{f36e}") +#let fa-app-store = fa-icon.with("\u{f36f}") +#let fa-app-store-ios = fa-icon.with("\u{f370}") +#let fa-apper = fa-icon.with("\u{f371}") +#let fa-asymmetrik = fa-icon.with("\u{f372}") +#let fa-audible = fa-icon.with("\u{f373}") +#let fa-avianex = fa-icon.with("\u{f374}") +#let fa-aws = fa-icon.with("\u{f375}") +#let fa-battery-bolt = fa-icon.with("\u{f376}") +#let fa-battery-slash = fa-icon.with("\u{f377}") +#let fa-bimobject = fa-icon.with("\u{f378}") +#let fa-bitcoin = fa-icon.with("\u{f379}") +#let fa-bity = fa-icon.with("\u{f37a}") +#let fa-blackberry = fa-icon.with("\u{f37b}") +#let fa-blogger = fa-icon.with("\u{f37c}") +#let fa-blogger-b = fa-icon.with("\u{f37d}") +#let fa-browser = fa-icon.with("\u{f37e}") +#let fa-buromobelexperte = fa-icon.with("\u{f37f}") +#let fa-centercode = fa-icon.with("\u{f380}") +#let fa-cloudscale = fa-icon.with("\u{f383}") +#let fa-cloudsmith = fa-icon.with("\u{f384}") +#let fa-cloudversify = fa-icon.with("\u{f385}") +#let fa-code-commit = fa-icon.with("\u{f386}") +#let fa-code-merge = fa-icon.with("\u{f387}") +#let fa-cpanel = fa-icon.with("\u{f388}") +#let fa-credit-card-blank = fa-icon.with("\u{f389}") +#let fa-credit-card-front = fa-icon.with("\u{f38a}") +#let fa-css3-alt = fa-icon.with("\u{f38b}") +#let fa-cuttlefish = fa-icon.with("\u{f38c}") +#let fa-d-and-d = fa-icon.with("\u{f38d}") +#let fa-deploydog = fa-icon.with("\u{f38e}") +#let fa-deskpro = fa-icon.with("\u{f38f}") +#let fa-desktop = fa-icon.with("\u{f390}") +#let fa-desktop-alt = fa-icon.with("\u{f390}") +#let fa-digital-ocean = fa-icon.with("\u{f391}") +#let fa-discord = fa-icon.with("\u{f392}") +#let fa-discourse = fa-icon.with("\u{f393}") +#let fa-dochub = fa-icon.with("\u{f394}") +#let fa-docker = fa-icon.with("\u{f395}") +#let fa-draft2digital = fa-icon.with("\u{f396}") +#let fa-dribbble-square = fa-icon.with("\u{f397}") +#let fa-square-dribbble = fa-icon.with("\u{f397}") +#let fa-dyalog = fa-icon.with("\u{f399}") +#let fa-earlybirds = fa-icon.with("\u{f39a}") +#let fa-ellipsis-h-alt = fa-icon.with("\u{f39b}") +#let fa-ellipsis-stroke = fa-icon.with("\u{f39b}") +#let fa-ellipsis-stroke-vertical = fa-icon.with("\u{f39c}") +#let fa-ellipsis-v-alt = fa-icon.with("\u{f39c}") +#let fa-erlang = fa-icon.with("\u{f39d}") +#let fa-facebook-f = fa-icon.with("\u{f39e}") +#let fa-facebook-messenger = fa-icon.with("\u{f39f}") +#let fa-firstdraft = fa-icon.with("\u{f3a1}") +#let fa-fonticons-fi = fa-icon.with("\u{f3a2}") +#let fa-fort-awesome-alt = fa-icon.with("\u{f3a3}") +#let fa-freebsd = fa-icon.with("\u{f3a4}") +#let fa-gem = fa-icon.with("\u{f3a5}") +#let fa-gitkraken = fa-icon.with("\u{f3a6}") +#let fa-gofore = fa-icon.with("\u{f3a7}") +#let fa-goodreads = fa-icon.with("\u{f3a8}") +#let fa-goodreads-g = fa-icon.with("\u{f3a9}") +#let fa-google-drive = fa-icon.with("\u{f3aa}") +#let fa-google-play = fa-icon.with("\u{f3ab}") +#let fa-gripfire = fa-icon.with("\u{f3ac}") +#let fa-grunt = fa-icon.with("\u{f3ad}") +#let fa-gulp = fa-icon.with("\u{f3ae}") +#let fa-hacker-news-square = fa-icon.with("\u{f3af}") +#let fa-square-hacker-news = fa-icon.with("\u{f3af}") +#let fa-hire-a-helper = fa-icon.with("\u{f3b0}") +#let fa-hotjar = fa-icon.with("\u{f3b1}") +#let fa-hubspot = fa-icon.with("\u{f3b2}") +#let fa-industry-alt = fa-icon.with("\u{f3b3}") +#let fa-industry-windows = fa-icon.with("\u{f3b3}") +#let fa-itunes = fa-icon.with("\u{f3b4}") +#let fa-itunes-note = fa-icon.with("\u{f3b5}") +#let fa-jenkins = fa-icon.with("\u{f3b6}") +#let fa-joget = fa-icon.with("\u{f3b7}") +#let fa-js = fa-icon.with("\u{f3b8}") +#let fa-js-square = fa-icon.with("\u{f3b9}") +#let fa-square-js = fa-icon.with("\u{f3b9}") +#let fa-keycdn = fa-icon.with("\u{f3ba}") +#let fa-kickstarter = fa-icon.with("\u{f3bb}") +#let fa-square-kickstarter = fa-icon.with("\u{f3bb}") +#let fa-kickstarter-k = fa-icon.with("\u{f3bc}") +#let fa-laravel = fa-icon.with("\u{f3bd}") +#let fa-level-down-alt = fa-icon.with("\u{f3be}") +#let fa-turn-down = fa-icon.with("\u{f3be}") +#let fa-level-up-alt = fa-icon.with("\u{f3bf}") +#let fa-turn-up = fa-icon.with("\u{f3bf}") +#let fa-line = fa-icon.with("\u{f3c0}") +#let fa-lock-open = fa-icon.with("\u{f3c1}") +#let fa-lock-keyhole-open = fa-icon.with("\u{f3c2}") +#let fa-lock-open-alt = fa-icon.with("\u{f3c2}") +#let fa-lyft = fa-icon.with("\u{f3c3}") +#let fa-magento = fa-icon.with("\u{f3c4}") +#let fa-location-dot = fa-icon.with("\u{f3c5}") +#let fa-map-marker-alt = fa-icon.with("\u{f3c5}") +#let fa-medapps = fa-icon.with("\u{f3c6}") +#let fa-medrt = fa-icon.with("\u{f3c8}") +#let fa-microphone-alt = fa-icon.with("\u{f3c9}") +#let fa-microphone-lines = fa-icon.with("\u{f3c9}") +#let fa-microsoft = fa-icon.with("\u{f3ca}") +#let fa-mix = fa-icon.with("\u{f3cb}") +#let fa-mizuni = fa-icon.with("\u{f3cc}") +#let fa-mobile-alt = fa-icon.with("\u{f3cd}") +#let fa-mobile-screen-button = fa-icon.with("\u{f3cd}") +#let fa-mobile = fa-icon.with("\u{f3ce}") +#let fa-mobile-android = fa-icon.with("\u{f3ce}") +#let fa-mobile-phone = fa-icon.with("\u{f3ce}") +#let fa-mobile-android-alt = fa-icon.with("\u{f3cf}") +#let fa-mobile-screen = fa-icon.with("\u{f3cf}") +#let fa-monero = fa-icon.with("\u{f3d0}") +#let fa-money-bill-1 = fa-icon.with("\u{f3d1}") +#let fa-money-bill-alt = fa-icon.with("\u{f3d1}") +#let fa-napster = fa-icon.with("\u{f3d2}") +#let fa-node-js = fa-icon.with("\u{f3d3}") +#let fa-npm = fa-icon.with("\u{f3d4}") +#let fa-ns8 = fa-icon.with("\u{f3d5}") +#let fa-nutritionix = fa-icon.with("\u{f3d6}") +#let fa-page4 = fa-icon.with("\u{f3d7}") +#let fa-palfed = fa-icon.with("\u{f3d8}") +#let fa-patreon = fa-icon.with("\u{f3d9}") +#let fa-periscope = fa-icon.with("\u{f3da}") +#let fa-phabricator = fa-icon.with("\u{f3db}") +#let fa-phoenix-framework = fa-icon.with("\u{f3dc}") +#let fa-phone-slash = fa-icon.with("\u{f3dd}") +#let fa-plane-alt = fa-icon.with("\u{f3de}") +#let fa-plane-engines = fa-icon.with("\u{f3de}") +#let fa-playstation = fa-icon.with("\u{f3df}") +#let fa-image-portrait = fa-icon.with("\u{f3e0}") +#let fa-portrait = fa-icon.with("\u{f3e0}") +#let fa-pushed = fa-icon.with("\u{f3e1}") +#let fa-python = fa-icon.with("\u{f3e2}") +#let fa-red-river = fa-icon.with("\u{f3e3}") +#let fa-rendact = fa-icon.with("\u{f3e4}") +#let fa-wpressr = fa-icon.with("\u{f3e4}") +#let fa-mail-reply = fa-icon.with("\u{f3e5}") +#let fa-reply = fa-icon.with("\u{f3e5}") +#let fa-replyd = fa-icon.with("\u{f3e6}") +#let fa-resolving = fa-icon.with("\u{f3e7}") +#let fa-rocketchat = fa-icon.with("\u{f3e8}") +#let fa-rockrms = fa-icon.with("\u{f3e9}") +#let fa-schlix = fa-icon.with("\u{f3ea}") +#let fa-searchengin = fa-icon.with("\u{f3eb}") +#let fa-servicestack = fa-icon.with("\u{f3ec}") +#let fa-shield-alt = fa-icon.with("\u{f3ed}") +#let fa-shield-halved = fa-icon.with("\u{f3ed}") +#let fa-sistrix = fa-icon.with("\u{f3ee}") +#let fa-sliders-h-square = fa-icon.with("\u{f3f0}") +#let fa-square-sliders = fa-icon.with("\u{f3f0}") +#let fa-sliders-up = fa-icon.with("\u{f3f1}") +#let fa-sliders-v = fa-icon.with("\u{f3f1}") +#let fa-sliders-v-square = fa-icon.with("\u{f3f2}") +#let fa-square-sliders-vertical = fa-icon.with("\u{f3f2}") +#let fa-speakap = fa-icon.with("\u{f3f3}") +#let fa-spinner-third = fa-icon.with("\u{f3f4}") +#let fa-staylinked = fa-icon.with("\u{f3f5}") +#let fa-steam-symbol = fa-icon.with("\u{f3f6}") +#let fa-sticker-mule = fa-icon.with("\u{f3f7}") +#let fa-studiovinari = fa-icon.with("\u{f3f8}") +#let fa-supple = fa-icon.with("\u{f3f9}") +#let fa-tablet-alt = fa-icon.with("\u{f3fa}") +#let fa-tablet-screen-button = fa-icon.with("\u{f3fa}") +#let fa-tablet = fa-icon.with("\u{f3fb}") +#let fa-tablet-android = fa-icon.with("\u{f3fb}") +#let fa-tablet-android-alt = fa-icon.with("\u{f3fc}") +#let fa-tablet-screen = fa-icon.with("\u{f3fc}") +#let fa-ticket-alt = fa-icon.with("\u{f3ff}") +#let fa-ticket-simple = fa-icon.with("\u{f3ff}") +#let fa-tree-alt = fa-icon.with("\u{f400}") +#let fa-tree-deciduous = fa-icon.with("\u{f400}") +#let fa-tv-retro = fa-icon.with("\u{f401}") +#let fa-uber = fa-icon.with("\u{f402}") +#let fa-uikit = fa-icon.with("\u{f403}") +#let fa-uniregistry = fa-icon.with("\u{f404}") +#let fa-untappd = fa-icon.with("\u{f405}") +#let fa-ussunnah = fa-icon.with("\u{f407}") +#let fa-vaadin = fa-icon.with("\u{f408}") +#let fa-viber = fa-icon.with("\u{f409}") +#let fa-vimeo = fa-icon.with("\u{f40a}") +#let fa-vnv = fa-icon.with("\u{f40b}") +#let fa-square-whatsapp = fa-icon.with("\u{f40c}") +#let fa-whatsapp-square = fa-icon.with("\u{f40c}") +#let fa-whmcs = fa-icon.with("\u{f40d}") +#let fa-window = fa-icon.with("\u{f40e}") +#let fa-window-alt = fa-icon.with("\u{f40f}") +#let fa-window-flip = fa-icon.with("\u{f40f}") +#let fa-rectangle-times = fa-icon.with("\u{f410}") +#let fa-rectangle-xmark = fa-icon.with("\u{f410}") +#let fa-times-rectangle = fa-icon.with("\u{f410}") +#let fa-window-close = fa-icon.with("\u{f410}") +#let fa-wordpress-simple = fa-icon.with("\u{f411}") +#let fa-xbox = fa-icon.with("\u{f412}") +#let fa-yandex = fa-icon.with("\u{f413}") +#let fa-yandex-international = fa-icon.with("\u{f414}") +#let fa-apple-pay = fa-icon.with("\u{f415}") +#let fa-cc-apple-pay = fa-icon.with("\u{f416}") +#let fa-fly = fa-icon.with("\u{f417}") +#let fa-node = fa-icon.with("\u{f419}") +#let fa-osi = fa-icon.with("\u{f41a}") +#let fa-react = fa-icon.with("\u{f41b}") +#let fa-autoprefixer = fa-icon.with("\u{f41c}") +#let fa-less = fa-icon.with("\u{f41d}") +#let fa-sass = fa-icon.with("\u{f41e}") +#let fa-vuejs = fa-icon.with("\u{f41f}") +#let fa-angular = fa-icon.with("\u{f420}") +#let fa-aviato = fa-icon.with("\u{f421}") +#let fa-compress-alt = fa-icon.with("\u{f422}") +#let fa-down-left-and-up-right-to-center = fa-icon.with("\u{f422}") +#let fa-ember = fa-icon.with("\u{f423}") +#let fa-expand-alt = fa-icon.with("\u{f424}") +#let fa-up-right-and-down-left-from-center = fa-icon.with("\u{f424}") +#let fa-gitter = fa-icon.with("\u{f426}") +#let fa-hooli = fa-icon.with("\u{f427}") +#let fa-strava = fa-icon.with("\u{f428}") +#let fa-stripe = fa-icon.with("\u{f429}") +#let fa-stripe-s = fa-icon.with("\u{f42a}") +#let fa-typo3 = fa-icon.with("\u{f42b}") +#let fa-amazon-pay = fa-icon.with("\u{f42c}") +#let fa-cc-amazon-pay = fa-icon.with("\u{f42d}") +#let fa-ethereum = fa-icon.with("\u{f42e}") +#let fa-korvue = fa-icon.with("\u{f42f}") +#let fa-elementor = fa-icon.with("\u{f430}") +#let fa-square-youtube = fa-icon.with("\u{f431}") +#let fa-youtube-square = fa-icon.with("\u{f431}") +#let fa-baseball-bat-ball = fa-icon.with("\u{f432}") +#let fa-baseball = fa-icon.with("\u{f433}") +#let fa-baseball-ball = fa-icon.with("\u{f433}") +#let fa-basketball = fa-icon.with("\u{f434}") +#let fa-basketball-ball = fa-icon.with("\u{f434}") +#let fa-basketball-hoop = fa-icon.with("\u{f435}") +#let fa-bowling-ball = fa-icon.with("\u{f436}") +#let fa-bowling-pins = fa-icon.with("\u{f437}") +#let fa-boxing-glove = fa-icon.with("\u{f438}") +#let fa-glove-boxing = fa-icon.with("\u{f438}") +#let fa-chess = fa-icon.with("\u{f439}") +#let fa-chess-bishop = fa-icon.with("\u{f43a}") +#let fa-chess-bishop-alt = fa-icon.with("\u{f43b}") +#let fa-chess-bishop-piece = fa-icon.with("\u{f43b}") +#let fa-chess-board = fa-icon.with("\u{f43c}") +#let fa-chess-clock = fa-icon.with("\u{f43d}") +#let fa-chess-clock-alt = fa-icon.with("\u{f43e}") +#let fa-chess-clock-flip = fa-icon.with("\u{f43e}") +#let fa-chess-king = fa-icon.with("\u{f43f}") +#let fa-chess-king-alt = fa-icon.with("\u{f440}") +#let fa-chess-king-piece = fa-icon.with("\u{f440}") +#let fa-chess-knight = fa-icon.with("\u{f441}") +#let fa-chess-knight-alt = fa-icon.with("\u{f442}") +#let fa-chess-knight-piece = fa-icon.with("\u{f442}") +#let fa-chess-pawn = fa-icon.with("\u{f443}") +#let fa-chess-pawn-alt = fa-icon.with("\u{f444}") +#let fa-chess-pawn-piece = fa-icon.with("\u{f444}") +#let fa-chess-queen = fa-icon.with("\u{f445}") +#let fa-chess-queen-alt = fa-icon.with("\u{f446}") +#let fa-chess-queen-piece = fa-icon.with("\u{f446}") +#let fa-chess-rook = fa-icon.with("\u{f447}") +#let fa-chess-rook-alt = fa-icon.with("\u{f448}") +#let fa-chess-rook-piece = fa-icon.with("\u{f448}") +#let fa-cricket = fa-icon.with("\u{f449}") +#let fa-cricket-bat-ball = fa-icon.with("\u{f449}") +#let fa-curling = fa-icon.with("\u{f44a}") +#let fa-curling-stone = fa-icon.with("\u{f44a}") +#let fa-dumbbell = fa-icon.with("\u{f44b}") +#let fa-field-hockey = fa-icon.with("\u{f44c}") +#let fa-field-hockey-stick-ball = fa-icon.with("\u{f44c}") +#let fa-flipboard = fa-icon.with("\u{f44d}") +#let fa-football = fa-icon.with("\u{f44e}") +#let fa-football-ball = fa-icon.with("\u{f44e}") +#let fa-football-helmet = fa-icon.with("\u{f44f}") +#let fa-golf-ball = fa-icon.with("\u{f450}") +#let fa-golf-ball-tee = fa-icon.with("\u{f450}") +#let fa-golf-club = fa-icon.with("\u{f451}") +#let fa-hips = fa-icon.with("\u{f452}") +#let fa-hockey-puck = fa-icon.with("\u{f453}") +#let fa-hockey-sticks = fa-icon.with("\u{f454}") +#let fa-luchador = fa-icon.with("\u{f455}") +#let fa-luchador-mask = fa-icon.with("\u{f455}") +#let fa-mask-luchador = fa-icon.with("\u{f455}") +#let fa-flag-pennant = fa-icon.with("\u{f456}") +#let fa-pennant = fa-icon.with("\u{f456}") +#let fa-php = fa-icon.with("\u{f457}") +#let fa-broom-ball = fa-icon.with("\u{f458}") +#let fa-quidditch = fa-icon.with("\u{f458}") +#let fa-quidditch-broom-ball = fa-icon.with("\u{f458}") +#let fa-quinscape = fa-icon.with("\u{f459}") +#let fa-racquet = fa-icon.with("\u{f45a}") +#let fa-shuttlecock = fa-icon.with("\u{f45b}") +#let fa-square-full = fa-icon.with("\u{f45c}") +#let fa-ping-pong-paddle-ball = fa-icon.with("\u{f45d}") +#let fa-table-tennis = fa-icon.with("\u{f45d}") +#let fa-table-tennis-paddle-ball = fa-icon.with("\u{f45d}") +#let fa-tennis-ball = fa-icon.with("\u{f45e}") +#let fa-volleyball = fa-icon.with("\u{f45f}") +#let fa-volleyball-ball = fa-icon.with("\u{f45f}") +#let fa-whistle = fa-icon.with("\u{f460}") +#let fa-allergies = fa-icon.with("\u{f461}") +#let fa-hand-dots = fa-icon.with("\u{f461}") +#let fa-band-aid = fa-icon.with("\u{f462}") +#let fa-bandage = fa-icon.with("\u{f462}") +#let fa-barcode-alt = fa-icon.with("\u{f463}") +#let fa-rectangle-barcode = fa-icon.with("\u{f463}") +#let fa-barcode-read = fa-icon.with("\u{f464}") +#let fa-barcode-scan = fa-icon.with("\u{f465}") +#let fa-box = fa-icon.with("\u{f466}") +#let fa-box-check = fa-icon.with("\u{f467}") +#let fa-boxes = fa-icon.with("\u{f468}") +#let fa-boxes-alt = fa-icon.with("\u{f468}") +#let fa-boxes-stacked = fa-icon.with("\u{f468}") +#let fa-briefcase-medical = fa-icon.with("\u{f469}") +#let fa-burn = fa-icon.with("\u{f46a}") +#let fa-fire-flame-simple = fa-icon.with("\u{f46a}") +#let fa-capsules = fa-icon.with("\u{f46b}") +#let fa-clipboard-check = fa-icon.with("\u{f46c}") +#let fa-clipboard-list = fa-icon.with("\u{f46d}") +#let fa-conveyor-belt = fa-icon.with("\u{f46e}") +#let fa-conveyor-belt-alt = fa-icon.with("\u{f46f}") +#let fa-conveyor-belt-boxes = fa-icon.with("\u{f46f}") +#let fa-diagnoses = fa-icon.with("\u{f470}") +#let fa-person-dots-from-line = fa-icon.with("\u{f470}") +#let fa-dna = fa-icon.with("\u{f471}") +#let fa-dolly = fa-icon.with("\u{f472}") +#let fa-dolly-box = fa-icon.with("\u{f472}") +#let fa-dolly-empty = fa-icon.with("\u{f473}") +#let fa-cart-flatbed = fa-icon.with("\u{f474}") +#let fa-dolly-flatbed = fa-icon.with("\u{f474}") +#let fa-cart-flatbed-boxes = fa-icon.with("\u{f475}") +#let fa-dolly-flatbed-alt = fa-icon.with("\u{f475}") +#let fa-cart-flatbed-empty = fa-icon.with("\u{f476}") +#let fa-dolly-flatbed-empty = fa-icon.with("\u{f476}") +#let fa-file-medical = fa-icon.with("\u{f477}") +#let fa-file-medical-alt = fa-icon.with("\u{f478}") +#let fa-file-waveform = fa-icon.with("\u{f478}") +#let fa-first-aid = fa-icon.with("\u{f479}") +#let fa-kit-medical = fa-icon.with("\u{f479}") +#let fa-forklift = fa-icon.with("\u{f47a}") +#let fa-hand-holding-box = fa-icon.with("\u{f47b}") +#let fa-hand-receiving = fa-icon.with("\u{f47c}") +#let fa-hands-holding-diamond = fa-icon.with("\u{f47c}") +#let fa-circle-h = fa-icon.with("\u{f47e}") +#let fa-hospital-symbol = fa-icon.with("\u{f47e}") +#let fa-id-card-alt = fa-icon.with("\u{f47f}") +#let fa-id-card-clip = fa-icon.with("\u{f47f}") +#let fa-inventory = fa-icon.with("\u{f480}") +#let fa-shelves = fa-icon.with("\u{f480}") +#let fa-notes-medical = fa-icon.with("\u{f481}") +#let fa-pallet = fa-icon.with("\u{f482}") +#let fa-palette-boxes = fa-icon.with("\u{f483}") +#let fa-pallet-alt = fa-icon.with("\u{f483}") +#let fa-pallet-boxes = fa-icon.with("\u{f483}") +#let fa-pills = fa-icon.with("\u{f484}") +#let fa-prescription-bottle = fa-icon.with("\u{f485}") +#let fa-prescription-bottle-alt = fa-icon.with("\u{f486}") +#let fa-prescription-bottle-medical = fa-icon.with("\u{f486}") +#let fa-bed-pulse = fa-icon.with("\u{f487}") +#let fa-procedures = fa-icon.with("\u{f487}") +#let fa-scanner = fa-icon.with("\u{f488}") +#let fa-scanner-gun = fa-icon.with("\u{f488}") +#let fa-scanner-keyboard = fa-icon.with("\u{f489}") +#let fa-scanner-touchscreen = fa-icon.with("\u{f48a}") +#let fa-shipping-fast = fa-icon.with("\u{f48b}") +#let fa-truck-fast = fa-icon.with("\u{f48b}") +#let fa-shipping-timed = fa-icon.with("\u{f48c}") +#let fa-truck-clock = fa-icon.with("\u{f48c}") +#let fa-smoking = fa-icon.with("\u{f48d}") +#let fa-syringe = fa-icon.with("\u{f48e}") +#let fa-tablet-rugged = fa-icon.with("\u{f48f}") +#let fa-tablets = fa-icon.with("\u{f490}") +#let fa-thermometer = fa-icon.with("\u{f491}") +#let fa-vial = fa-icon.with("\u{f492}") +#let fa-vials = fa-icon.with("\u{f493}") +#let fa-warehouse = fa-icon.with("\u{f494}") +#let fa-warehouse-alt = fa-icon.with("\u{f495}") +#let fa-warehouse-full = fa-icon.with("\u{f495}") +#let fa-weight = fa-icon.with("\u{f496}") +#let fa-weight-scale = fa-icon.with("\u{f496}") +#let fa-x-ray = fa-icon.with("\u{f497}") +#let fa-blanket = fa-icon.with("\u{f498}") +#let fa-book-heart = fa-icon.with("\u{f499}") +#let fa-box-alt = fa-icon.with("\u{f49a}") +#let fa-box-taped = fa-icon.with("\u{f49a}") +#let fa-box-fragile = fa-icon.with("\u{f49b}") +#let fa-square-fragile = fa-icon.with("\u{f49b}") +#let fa-square-wine-glass-crack = fa-icon.with("\u{f49b}") +#let fa-box-full = fa-icon.with("\u{f49c}") +#let fa-box-open-full = fa-icon.with("\u{f49c}") +#let fa-box-heart = fa-icon.with("\u{f49d}") +#let fa-box-open = fa-icon.with("\u{f49e}") +#let fa-box-up = fa-icon.with("\u{f49f}") +#let fa-square-this-way-up = fa-icon.with("\u{f49f}") +#let fa-box-dollar = fa-icon.with("\u{f4a0}") +#let fa-box-usd = fa-icon.with("\u{f4a0}") +#let fa-comment-alt-check = fa-icon.with("\u{f4a2}") +#let fa-message-check = fa-icon.with("\u{f4a2}") +#let fa-comment-alt-dots = fa-icon.with("\u{f4a3}") +#let fa-message-dots = fa-icon.with("\u{f4a3}") +#let fa-messaging = fa-icon.with("\u{f4a3}") +#let fa-comment-alt-edit = fa-icon.with("\u{f4a4}") +#let fa-message-edit = fa-icon.with("\u{f4a4}") +#let fa-message-pen = fa-icon.with("\u{f4a4}") +#let fa-comment-alt-exclamation = fa-icon.with("\u{f4a5}") +#let fa-message-exclamation = fa-icon.with("\u{f4a5}") +#let fa-comment-alt-lines = fa-icon.with("\u{f4a6}") +#let fa-message-lines = fa-icon.with("\u{f4a6}") +#let fa-comment-alt-minus = fa-icon.with("\u{f4a7}") +#let fa-message-minus = fa-icon.with("\u{f4a7}") +#let fa-comment-alt-plus = fa-icon.with("\u{f4a8}") +#let fa-message-plus = fa-icon.with("\u{f4a8}") +#let fa-comment-alt-slash = fa-icon.with("\u{f4a9}") +#let fa-message-slash = fa-icon.with("\u{f4a9}") +#let fa-comment-alt-smile = fa-icon.with("\u{f4aa}") +#let fa-message-smile = fa-icon.with("\u{f4aa}") +#let fa-comment-alt-times = fa-icon.with("\u{f4ab}") +#let fa-message-times = fa-icon.with("\u{f4ab}") +#let fa-message-xmark = fa-icon.with("\u{f4ab}") +#let fa-comment-check = fa-icon.with("\u{f4ac}") +#let fa-comment-dots = fa-icon.with("\u{f4ad}") +#let fa-commenting = fa-icon.with("\u{f4ad}") +#let fa-comment-edit = fa-icon.with("\u{f4ae}") +#let fa-comment-pen = fa-icon.with("\u{f4ae}") +#let fa-comment-exclamation = fa-icon.with("\u{f4af}") +#let fa-comment-lines = fa-icon.with("\u{f4b0}") +#let fa-comment-minus = fa-icon.with("\u{f4b1}") +#let fa-comment-plus = fa-icon.with("\u{f4b2}") +#let fa-comment-slash = fa-icon.with("\u{f4b3}") +#let fa-comment-smile = fa-icon.with("\u{f4b4}") +#let fa-comment-times = fa-icon.with("\u{f4b5}") +#let fa-comment-xmark = fa-icon.with("\u{f4b5}") +#let fa-comments-alt = fa-icon.with("\u{f4b6}") +#let fa-messages = fa-icon.with("\u{f4b6}") +#let fa-container-storage = fa-icon.with("\u{f4b7}") +#let fa-couch = fa-icon.with("\u{f4b8}") +#let fa-circle-dollar-to-slot = fa-icon.with("\u{f4b9}") +#let fa-donate = fa-icon.with("\u{f4b9}") +#let fa-dove = fa-icon.with("\u{f4ba}") +#let fa-fragile = fa-icon.with("\u{f4bb}") +#let fa-wine-glass-crack = fa-icon.with("\u{f4bb}") +#let fa-hand-heart = fa-icon.with("\u{f4bc}") +#let fa-hand-holding = fa-icon.with("\u{f4bd}") +#let fa-hand-holding-heart = fa-icon.with("\u{f4be}") +#let fa-hand-holding-seedling = fa-icon.with("\u{f4bf}") +#let fa-hand-holding-dollar = fa-icon.with("\u{f4c0}") +#let fa-hand-holding-usd = fa-icon.with("\u{f4c0}") +#let fa-hand-holding-droplet = fa-icon.with("\u{f4c1}") +#let fa-hand-holding-water = fa-icon.with("\u{f4c1}") +#let fa-hands-holding = fa-icon.with("\u{f4c2}") +#let fa-hands-heart = fa-icon.with("\u{f4c3}") +#let fa-hands-holding-heart = fa-icon.with("\u{f4c3}") +#let fa-hands-helping = fa-icon.with("\u{f4c4}") +#let fa-handshake-angle = fa-icon.with("\u{f4c4}") +#let fa-hands-holding-dollar = fa-icon.with("\u{f4c5}") +#let fa-hands-usd = fa-icon.with("\u{f4c5}") +#let fa-circle-heart = fa-icon.with("\u{f4c7}") +#let fa-heart-circle = fa-icon.with("\u{f4c7}") +#let fa-heart-square = fa-icon.with("\u{f4c8}") +#let fa-square-heart = fa-icon.with("\u{f4c8}") +#let fa-home-heart = fa-icon.with("\u{f4c9}") +#let fa-house-heart = fa-icon.with("\u{f4c9}") +#let fa-lamp = fa-icon.with("\u{f4ca}") +#let fa-leaf-heart = fa-icon.with("\u{f4cb}") +#let fa-couch-small = fa-icon.with("\u{f4cc}") +#let fa-loveseat = fa-icon.with("\u{f4cc}") +#let fa-parachute-box = fa-icon.with("\u{f4cd}") +#let fa-people-carry = fa-icon.with("\u{f4ce}") +#let fa-people-carry-box = fa-icon.with("\u{f4ce}") +#let fa-person-carry = fa-icon.with("\u{f4cf}") +#let fa-person-carry-box = fa-icon.with("\u{f4cf}") +#let fa-person-dolly = fa-icon.with("\u{f4d0}") +#let fa-person-dolly-empty = fa-icon.with("\u{f4d1}") +#let fa-phone-plus = fa-icon.with("\u{f4d2}") +#let fa-piggy-bank = fa-icon.with("\u{f4d3}") +#let fa-ramp-loading = fa-icon.with("\u{f4d4}") +#let fa-readme = fa-icon.with("\u{f4d5}") +#let fa-ribbon = fa-icon.with("\u{f4d6}") +#let fa-route = fa-icon.with("\u{f4d7}") +#let fa-seedling = fa-icon.with("\u{f4d8}") +#let fa-sprout = fa-icon.with("\u{f4d8}") +#let fa-sign = fa-icon.with("\u{f4d9}") +#let fa-sign-hanging = fa-icon.with("\u{f4d9}") +#let fa-face-smile-wink = fa-icon.with("\u{f4da}") +#let fa-smile-wink = fa-icon.with("\u{f4da}") +#let fa-tape = fa-icon.with("\u{f4db}") +#let fa-truck-container = fa-icon.with("\u{f4dc}") +#let fa-truck-couch = fa-icon.with("\u{f4dd}") +#let fa-truck-ramp-couch = fa-icon.with("\u{f4dd}") +#let fa-truck-loading = fa-icon.with("\u{f4de}") +#let fa-truck-ramp-box = fa-icon.with("\u{f4de}") +#let fa-truck-moving = fa-icon.with("\u{f4df}") +#let fa-truck-ramp = fa-icon.with("\u{f4e0}") +#let fa-video-plus = fa-icon.with("\u{f4e1}") +#let fa-video-slash = fa-icon.with("\u{f4e2}") +#let fa-wine-glass = fa-icon.with("\u{f4e3}") +#let fa-java = fa-icon.with("\u{f4e4}") +#let fa-pied-piper-hat = fa-icon.with("\u{f4e5}") +#let fa-creative-commons-by = fa-icon.with("\u{f4e7}") +#let fa-creative-commons-nc = fa-icon.with("\u{f4e8}") +#let fa-creative-commons-nc-eu = fa-icon.with("\u{f4e9}") +#let fa-creative-commons-nc-jp = fa-icon.with("\u{f4ea}") +#let fa-creative-commons-nd = fa-icon.with("\u{f4eb}") +#let fa-creative-commons-pd = fa-icon.with("\u{f4ec}") +#let fa-creative-commons-pd-alt = fa-icon.with("\u{f4ed}") +#let fa-creative-commons-remix = fa-icon.with("\u{f4ee}") +#let fa-creative-commons-sa = fa-icon.with("\u{f4ef}") +#let fa-creative-commons-sampling = fa-icon.with("\u{f4f0}") +#let fa-creative-commons-sampling-plus = fa-icon.with("\u{f4f1}") +#let fa-creative-commons-share = fa-icon.with("\u{f4f2}") +#let fa-creative-commons-zero = fa-icon.with("\u{f4f3}") +#let fa-ebay = fa-icon.with("\u{f4f4}") +#let fa-keybase = fa-icon.with("\u{f4f5}") +#let fa-mastodon = fa-icon.with("\u{f4f6}") +#let fa-r-project = fa-icon.with("\u{f4f7}") +#let fa-researchgate = fa-icon.with("\u{f4f8}") +#let fa-teamspeak = fa-icon.with("\u{f4f9}") +#let fa-user-astronaut = fa-icon.with("\u{f4fb}") +#let fa-user-check = fa-icon.with("\u{f4fc}") +#let fa-user-clock = fa-icon.with("\u{f4fd}") +#let fa-user-cog = fa-icon.with("\u{f4fe}") +#let fa-user-gear = fa-icon.with("\u{f4fe}") +#let fa-user-edit = fa-icon.with("\u{f4ff}") +#let fa-user-pen = fa-icon.with("\u{f4ff}") +#let fa-user-friends = fa-icon.with("\u{f500}") +#let fa-user-group = fa-icon.with("\u{f500}") +#let fa-user-graduate = fa-icon.with("\u{f501}") +#let fa-user-lock = fa-icon.with("\u{f502}") +#let fa-user-minus = fa-icon.with("\u{f503}") +#let fa-user-ninja = fa-icon.with("\u{f504}") +#let fa-user-shield = fa-icon.with("\u{f505}") +#let fa-user-slash = fa-icon.with("\u{f506}") +#let fa-user-tag = fa-icon.with("\u{f507}") +#let fa-user-tie = fa-icon.with("\u{f508}") +#let fa-users-cog = fa-icon.with("\u{f509}") +#let fa-users-gear = fa-icon.with("\u{f509}") +#let fa-first-order-alt = fa-icon.with("\u{f50a}") +#let fa-fulcrum = fa-icon.with("\u{f50b}") +#let fa-galactic-republic = fa-icon.with("\u{f50c}") +#let fa-galactic-senate = fa-icon.with("\u{f50d}") +#let fa-jedi-order = fa-icon.with("\u{f50e}") +#let fa-mandalorian = fa-icon.with("\u{f50f}") +#let fa-old-republic = fa-icon.with("\u{f510}") +#let fa-phoenix-squadron = fa-icon.with("\u{f511}") +#let fa-sith = fa-icon.with("\u{f512}") +#let fa-trade-federation = fa-icon.with("\u{f513}") +#let fa-wolf-pack-battalion = fa-icon.with("\u{f514}") +#let fa-balance-scale-left = fa-icon.with("\u{f515}") +#let fa-scale-unbalanced = fa-icon.with("\u{f515}") +#let fa-balance-scale-right = fa-icon.with("\u{f516}") +#let fa-scale-unbalanced-flip = fa-icon.with("\u{f516}") +#let fa-blender = fa-icon.with("\u{f517}") +#let fa-book-open = fa-icon.with("\u{f518}") +#let fa-broadcast-tower = fa-icon.with("\u{f519}") +#let fa-tower-broadcast = fa-icon.with("\u{f519}") +#let fa-broom = fa-icon.with("\u{f51a}") +#let fa-blackboard = fa-icon.with("\u{f51b}") +#let fa-chalkboard = fa-icon.with("\u{f51b}") +#let fa-chalkboard-teacher = fa-icon.with("\u{f51c}") +#let fa-chalkboard-user = fa-icon.with("\u{f51c}") +#let fa-church = fa-icon.with("\u{f51d}") +#let fa-coins = fa-icon.with("\u{f51e}") +#let fa-compact-disc = fa-icon.with("\u{f51f}") +#let fa-crow = fa-icon.with("\u{f520}") +#let fa-crown = fa-icon.with("\u{f521}") +#let fa-dice = fa-icon.with("\u{f522}") +#let fa-dice-five = fa-icon.with("\u{f523}") +#let fa-dice-four = fa-icon.with("\u{f524}") +#let fa-dice-one = fa-icon.with("\u{f525}") +#let fa-dice-six = fa-icon.with("\u{f526}") +#let fa-dice-three = fa-icon.with("\u{f527}") +#let fa-dice-two = fa-icon.with("\u{f528}") +#let fa-divide = fa-icon.with("\u{f529}") +#let fa-door-closed = fa-icon.with("\u{f52a}") +#let fa-door-open = fa-icon.with("\u{f52b}") +#let fa-feather = fa-icon.with("\u{f52d}") +#let fa-frog = fa-icon.with("\u{f52e}") +#let fa-gas-pump = fa-icon.with("\u{f52f}") +#let fa-glasses = fa-icon.with("\u{f530}") +#let fa-greater-than-equal = fa-icon.with("\u{f532}") +#let fa-helicopter = fa-icon.with("\u{f533}") +#let fa-infinity = fa-icon.with("\u{f534}") +#let fa-kiwi-bird = fa-icon.with("\u{f535}") +#let fa-less-than-equal = fa-icon.with("\u{f537}") +#let fa-memory = fa-icon.with("\u{f538}") +#let fa-microphone-alt-slash = fa-icon.with("\u{f539}") +#let fa-microphone-lines-slash = fa-icon.with("\u{f539}") +#let fa-money-bill-wave = fa-icon.with("\u{f53a}") +#let fa-money-bill-1-wave = fa-icon.with("\u{f53b}") +#let fa-money-bill-wave-alt = fa-icon.with("\u{f53b}") +#let fa-money-check = fa-icon.with("\u{f53c}") +#let fa-money-check-alt = fa-icon.with("\u{f53d}") +#let fa-money-check-dollar = fa-icon.with("\u{f53d}") +#let fa-not-equal = fa-icon.with("\u{f53e}") +#let fa-palette = fa-icon.with("\u{f53f}") +#let fa-parking = fa-icon.with("\u{f540}") +#let fa-square-parking = fa-icon.with("\u{f540}") +#let fa-diagram-project = fa-icon.with("\u{f542}") +#let fa-project-diagram = fa-icon.with("\u{f542}") +#let fa-receipt = fa-icon.with("\u{f543}") +#let fa-robot = fa-icon.with("\u{f544}") +#let fa-ruler = fa-icon.with("\u{f545}") +#let fa-ruler-combined = fa-icon.with("\u{f546}") +#let fa-ruler-horizontal = fa-icon.with("\u{f547}") +#let fa-ruler-vertical = fa-icon.with("\u{f548}") +#let fa-school = fa-icon.with("\u{f549}") +#let fa-screwdriver = fa-icon.with("\u{f54a}") +#let fa-shoe-prints = fa-icon.with("\u{f54b}") +#let fa-skull = fa-icon.with("\u{f54c}") +#let fa-ban-smoking = fa-icon.with("\u{f54d}") +#let fa-smoking-ban = fa-icon.with("\u{f54d}") +#let fa-store = fa-icon.with("\u{f54e}") +#let fa-shop = fa-icon.with("\u{f54f}") +#let fa-store-alt = fa-icon.with("\u{f54f}") +#let fa-bars-staggered = fa-icon.with("\u{f550}") +#let fa-reorder = fa-icon.with("\u{f550}") +#let fa-stream = fa-icon.with("\u{f550}") +#let fa-stroopwafel = fa-icon.with("\u{f551}") +#let fa-toolbox = fa-icon.with("\u{f552}") +#let fa-shirt = fa-icon.with("\u{f553}") +#let fa-t-shirt = fa-icon.with("\u{f553}") +#let fa-tshirt = fa-icon.with("\u{f553}") +#let fa-person-walking = fa-icon.with("\u{f554}") +#let fa-walking = fa-icon.with("\u{f554}") +#let fa-wallet = fa-icon.with("\u{f555}") +#let fa-angry = fa-icon.with("\u{f556}") +#let fa-face-angry = fa-icon.with("\u{f556}") +#let fa-archway = fa-icon.with("\u{f557}") +#let fa-atlas = fa-icon.with("\u{f558}") +#let fa-book-atlas = fa-icon.with("\u{f558}") +#let fa-award = fa-icon.with("\u{f559}") +#let fa-backspace = fa-icon.with("\u{f55a}") +#let fa-delete-left = fa-icon.with("\u{f55a}") +#let fa-bezier-curve = fa-icon.with("\u{f55b}") +#let fa-bong = fa-icon.with("\u{f55c}") +#let fa-brush = fa-icon.with("\u{f55d}") +#let fa-bus-alt = fa-icon.with("\u{f55e}") +#let fa-bus-simple = fa-icon.with("\u{f55e}") +#let fa-cannabis = fa-icon.with("\u{f55f}") +#let fa-check-double = fa-icon.with("\u{f560}") +#let fa-cocktail = fa-icon.with("\u{f561}") +#let fa-martini-glass-citrus = fa-icon.with("\u{f561}") +#let fa-bell-concierge = fa-icon.with("\u{f562}") +#let fa-concierge-bell = fa-icon.with("\u{f562}") +#let fa-cookie = fa-icon.with("\u{f563}") +#let fa-cookie-bite = fa-icon.with("\u{f564}") +#let fa-crop-alt = fa-icon.with("\u{f565}") +#let fa-crop-simple = fa-icon.with("\u{f565}") +#let fa-digital-tachograph = fa-icon.with("\u{f566}") +#let fa-tachograph-digital = fa-icon.with("\u{f566}") +#let fa-dizzy = fa-icon.with("\u{f567}") +#let fa-face-dizzy = fa-icon.with("\u{f567}") +#let fa-compass-drafting = fa-icon.with("\u{f568}") +#let fa-drafting-compass = fa-icon.with("\u{f568}") +#let fa-drum = fa-icon.with("\u{f569}") +#let fa-drum-steelpan = fa-icon.with("\u{f56a}") +#let fa-feather-alt = fa-icon.with("\u{f56b}") +#let fa-feather-pointed = fa-icon.with("\u{f56b}") +#let fa-file-contract = fa-icon.with("\u{f56c}") +#let fa-file-arrow-down = fa-icon.with("\u{f56d}") +#let fa-file-download = fa-icon.with("\u{f56d}") +#let fa-arrow-right-from-file = fa-icon.with("\u{f56e}") +#let fa-file-export = fa-icon.with("\u{f56e}") +#let fa-arrow-right-to-file = fa-icon.with("\u{f56f}") +#let fa-file-import = fa-icon.with("\u{f56f}") +#let fa-file-invoice = fa-icon.with("\u{f570}") +#let fa-file-invoice-dollar = fa-icon.with("\u{f571}") +#let fa-file-prescription = fa-icon.with("\u{f572}") +#let fa-file-signature = fa-icon.with("\u{f573}") +#let fa-file-arrow-up = fa-icon.with("\u{f574}") +#let fa-file-upload = fa-icon.with("\u{f574}") +#let fa-fill = fa-icon.with("\u{f575}") +#let fa-fill-drip = fa-icon.with("\u{f576}") +#let fa-fingerprint = fa-icon.with("\u{f577}") +#let fa-fish = fa-icon.with("\u{f578}") +#let fa-face-flushed = fa-icon.with("\u{f579}") +#let fa-flushed = fa-icon.with("\u{f579}") +#let fa-face-frown-open = fa-icon.with("\u{f57a}") +#let fa-frown-open = fa-icon.with("\u{f57a}") +#let fa-glass-martini-alt = fa-icon.with("\u{f57b}") +#let fa-martini-glass = fa-icon.with("\u{f57b}") +#let fa-earth-africa = fa-icon.with("\u{f57c}") +#let fa-globe-africa = fa-icon.with("\u{f57c}") +#let fa-earth = fa-icon.with("\u{f57d}") +#let fa-earth-america = fa-icon.with("\u{f57d}") +#let fa-earth-americas = fa-icon.with("\u{f57d}") +#let fa-globe-americas = fa-icon.with("\u{f57d}") +#let fa-earth-asia = fa-icon.with("\u{f57e}") +#let fa-globe-asia = fa-icon.with("\u{f57e}") +#let fa-face-grimace = fa-icon.with("\u{f57f}") +#let fa-grimace = fa-icon.with("\u{f57f}") +#let fa-face-grin = fa-icon.with("\u{f580}") +#let fa-grin = fa-icon.with("\u{f580}") +#let fa-face-grin-wide = fa-icon.with("\u{f581}") +#let fa-grin-alt = fa-icon.with("\u{f581}") +#let fa-face-grin-beam = fa-icon.with("\u{f582}") +#let fa-grin-beam = fa-icon.with("\u{f582}") +#let fa-face-grin-beam-sweat = fa-icon.with("\u{f583}") +#let fa-grin-beam-sweat = fa-icon.with("\u{f583}") +#let fa-face-grin-hearts = fa-icon.with("\u{f584}") +#let fa-grin-hearts = fa-icon.with("\u{f584}") +#let fa-face-grin-squint = fa-icon.with("\u{f585}") +#let fa-grin-squint = fa-icon.with("\u{f585}") +#let fa-face-grin-squint-tears = fa-icon.with("\u{f586}") +#let fa-grin-squint-tears = fa-icon.with("\u{f586}") +#let fa-face-grin-stars = fa-icon.with("\u{f587}") +#let fa-grin-stars = fa-icon.with("\u{f587}") +#let fa-face-grin-tears = fa-icon.with("\u{f588}") +#let fa-grin-tears = fa-icon.with("\u{f588}") +#let fa-face-grin-tongue = fa-icon.with("\u{f589}") +#let fa-grin-tongue = fa-icon.with("\u{f589}") +#let fa-face-grin-tongue-squint = fa-icon.with("\u{f58a}") +#let fa-grin-tongue-squint = fa-icon.with("\u{f58a}") +#let fa-face-grin-tongue-wink = fa-icon.with("\u{f58b}") +#let fa-grin-tongue-wink = fa-icon.with("\u{f58b}") +#let fa-face-grin-wink = fa-icon.with("\u{f58c}") +#let fa-grin-wink = fa-icon.with("\u{f58c}") +#let fa-grip = fa-icon.with("\u{f58d}") +#let fa-grip-horizontal = fa-icon.with("\u{f58d}") +#let fa-grid-vertical = fa-icon.with("\u{f58e}") +#let fa-grip-vertical = fa-icon.with("\u{f58e}") +#let fa-headset = fa-icon.with("\u{f590}") +#let fa-highlighter = fa-icon.with("\u{f591}") +#let fa-hornbill = fa-icon.with("\u{f592}") +#let fa-hot-tub = fa-icon.with("\u{f593}") +#let fa-hot-tub-person = fa-icon.with("\u{f593}") +#let fa-hotel = fa-icon.with("\u{f594}") +#let fa-joint = fa-icon.with("\u{f595}") +#let fa-face-kiss = fa-icon.with("\u{f596}") +#let fa-kiss = fa-icon.with("\u{f596}") +#let fa-face-kiss-beam = fa-icon.with("\u{f597}") +#let fa-kiss-beam = fa-icon.with("\u{f597}") +#let fa-face-kiss-wink-heart = fa-icon.with("\u{f598}") +#let fa-kiss-wink-heart = fa-icon.with("\u{f598}") +#let fa-face-laugh = fa-icon.with("\u{f599}") +#let fa-laugh = fa-icon.with("\u{f599}") +#let fa-face-laugh-beam = fa-icon.with("\u{f59a}") +#let fa-laugh-beam = fa-icon.with("\u{f59a}") +#let fa-face-laugh-squint = fa-icon.with("\u{f59b}") +#let fa-laugh-squint = fa-icon.with("\u{f59b}") +#let fa-face-laugh-wink = fa-icon.with("\u{f59c}") +#let fa-laugh-wink = fa-icon.with("\u{f59c}") +#let fa-cart-flatbed-suitcase = fa-icon.with("\u{f59d}") +#let fa-luggage-cart = fa-icon.with("\u{f59d}") +#let fa-mailchimp = fa-icon.with("\u{f59e}") +#let fa-map-location = fa-icon.with("\u{f59f}") +#let fa-map-marked = fa-icon.with("\u{f59f}") +#let fa-map-location-dot = fa-icon.with("\u{f5a0}") +#let fa-map-marked-alt = fa-icon.with("\u{f5a0}") +#let fa-marker = fa-icon.with("\u{f5a1}") +#let fa-medal = fa-icon.with("\u{f5a2}") +#let fa-megaport = fa-icon.with("\u{f5a3}") +#let fa-face-meh-blank = fa-icon.with("\u{f5a4}") +#let fa-meh-blank = fa-icon.with("\u{f5a4}") +#let fa-face-rolling-eyes = fa-icon.with("\u{f5a5}") +#let fa-meh-rolling-eyes = fa-icon.with("\u{f5a5}") +#let fa-monument = fa-icon.with("\u{f5a6}") +#let fa-mortar-pestle = fa-icon.with("\u{f5a7}") +#let fa-nimblr = fa-icon.with("\u{f5a8}") +#let fa-paint-brush-alt = fa-icon.with("\u{f5a9}") +#let fa-paint-brush-fine = fa-icon.with("\u{f5a9}") +#let fa-paintbrush-alt = fa-icon.with("\u{f5a9}") +#let fa-paintbrush-fine = fa-icon.with("\u{f5a9}") +#let fa-paint-roller = fa-icon.with("\u{f5aa}") +#let fa-passport = fa-icon.with("\u{f5ab}") +#let fa-pen-fancy = fa-icon.with("\u{f5ac}") +#let fa-pen-nib = fa-icon.with("\u{f5ad}") +#let fa-pen-ruler = fa-icon.with("\u{f5ae}") +#let fa-pencil-ruler = fa-icon.with("\u{f5ae}") +#let fa-plane-arrival = fa-icon.with("\u{f5af}") +#let fa-plane-departure = fa-icon.with("\u{f5b0}") +#let fa-prescription = fa-icon.with("\u{f5b1}") +#let fa-rev = fa-icon.with("\u{f5b2}") +#let fa-face-sad-cry = fa-icon.with("\u{f5b3}") +#let fa-sad-cry = fa-icon.with("\u{f5b3}") +#let fa-face-sad-tear = fa-icon.with("\u{f5b4}") +#let fa-sad-tear = fa-icon.with("\u{f5b4}") +#let fa-shopware = fa-icon.with("\u{f5b5}") +#let fa-shuttle-van = fa-icon.with("\u{f5b6}") +#let fa-van-shuttle = fa-icon.with("\u{f5b6}") +#let fa-signature = fa-icon.with("\u{f5b7}") +#let fa-face-smile-beam = fa-icon.with("\u{f5b8}") +#let fa-smile-beam = fa-icon.with("\u{f5b8}") +#let fa-face-smile-plus = fa-icon.with("\u{f5b9}") +#let fa-smile-plus = fa-icon.with("\u{f5b9}") +#let fa-solar-panel = fa-icon.with("\u{f5ba}") +#let fa-lotus = fa-icon.with("\u{f5bb}") +#let fa-spa = fa-icon.with("\u{f5bb}") +#let fa-splotch = fa-icon.with("\u{f5bc}") +#let fa-spray-can = fa-icon.with("\u{f5bd}") +#let fa-squarespace = fa-icon.with("\u{f5be}") +#let fa-stamp = fa-icon.with("\u{f5bf}") +#let fa-star-half-alt = fa-icon.with("\u{f5c0}") +#let fa-star-half-stroke = fa-icon.with("\u{f5c0}") +#let fa-suitcase-rolling = fa-icon.with("\u{f5c1}") +#let fa-face-surprise = fa-icon.with("\u{f5c2}") +#let fa-surprise = fa-icon.with("\u{f5c2}") +#let fa-swatchbook = fa-icon.with("\u{f5c3}") +#let fa-person-swimming = fa-icon.with("\u{f5c4}") +#let fa-swimmer = fa-icon.with("\u{f5c4}") +#let fa-ladder-water = fa-icon.with("\u{f5c5}") +#let fa-swimming-pool = fa-icon.with("\u{f5c5}") +#let fa-water-ladder = fa-icon.with("\u{f5c5}") +#let fa-themeco = fa-icon.with("\u{f5c6}") +#let fa-droplet-slash = fa-icon.with("\u{f5c7}") +#let fa-tint-slash = fa-icon.with("\u{f5c7}") +#let fa-face-tired = fa-icon.with("\u{f5c8}") +#let fa-tired = fa-icon.with("\u{f5c8}") +#let fa-tooth = fa-icon.with("\u{f5c9}") +#let fa-umbrella-beach = fa-icon.with("\u{f5ca}") +#let fa-weebly = fa-icon.with("\u{f5cc}") +#let fa-weight-hanging = fa-icon.with("\u{f5cd}") +#let fa-wine-glass-alt = fa-icon.with("\u{f5ce}") +#let fa-wine-glass-empty = fa-icon.with("\u{f5ce}") +#let fa-wix = fa-icon.with("\u{f5cf}") +#let fa-air-freshener = fa-icon.with("\u{f5d0}") +#let fa-spray-can-sparkles = fa-icon.with("\u{f5d0}") +#let fa-apple-alt = fa-icon.with("\u{f5d1}") +#let fa-apple-whole = fa-icon.with("\u{f5d1}") +#let fa-atom = fa-icon.with("\u{f5d2}") +#let fa-atom-alt = fa-icon.with("\u{f5d3}") +#let fa-atom-simple = fa-icon.with("\u{f5d3}") +#let fa-backpack = fa-icon.with("\u{f5d4}") +#let fa-bell-school = fa-icon.with("\u{f5d5}") +#let fa-bell-school-slash = fa-icon.with("\u{f5d6}") +#let fa-bone = fa-icon.with("\u{f5d7}") +#let fa-bone-break = fa-icon.with("\u{f5d8}") +#let fa-book-alt = fa-icon.with("\u{f5d9}") +#let fa-book-blank = fa-icon.with("\u{f5d9}") +#let fa-book-open-reader = fa-icon.with("\u{f5da}") +#let fa-book-reader = fa-icon.with("\u{f5da}") +#let fa-books = fa-icon.with("\u{f5db}") +#let fa-brain = fa-icon.with("\u{f5dc}") +#let fa-bus-school = fa-icon.with("\u{f5dd}") +#let fa-car-alt = fa-icon.with("\u{f5de}") +#let fa-car-rear = fa-icon.with("\u{f5de}") +#let fa-battery-car = fa-icon.with("\u{f5df}") +#let fa-car-battery = fa-icon.with("\u{f5df}") +#let fa-car-bump = fa-icon.with("\u{f5e0}") +#let fa-car-burst = fa-icon.with("\u{f5e1}") +#let fa-car-crash = fa-icon.with("\u{f5e1}") +#let fa-car-garage = fa-icon.with("\u{f5e2}") +#let fa-car-mechanic = fa-icon.with("\u{f5e3}") +#let fa-car-wrench = fa-icon.with("\u{f5e3}") +#let fa-car-side = fa-icon.with("\u{f5e4}") +#let fa-car-tilt = fa-icon.with("\u{f5e5}") +#let fa-car-wash = fa-icon.with("\u{f5e6}") +#let fa-charging-station = fa-icon.with("\u{f5e7}") +#let fa-clipboard-prescription = fa-icon.with("\u{f5e8}") +#let fa-compass-slash = fa-icon.with("\u{f5e9}") +#let fa-diploma = fa-icon.with("\u{f5ea}") +#let fa-scroll-ribbon = fa-icon.with("\u{f5ea}") +#let fa-diamond-turn-right = fa-icon.with("\u{f5eb}") +#let fa-directions = fa-icon.with("\u{f5eb}") +#let fa-do-not-enter = fa-icon.with("\u{f5ec}") +#let fa-draw-circle = fa-icon.with("\u{f5ed}") +#let fa-draw-polygon = fa-icon.with("\u{f5ee}") +#let fa-draw-square = fa-icon.with("\u{f5ef}") +#let fa-ear = fa-icon.with("\u{f5f0}") +#let fa-ello = fa-icon.with("\u{f5f1}") +#let fa-engine-exclamation = fa-icon.with("\u{f5f2}") +#let fa-engine-warning = fa-icon.with("\u{f5f2}") +#let fa-file-award = fa-icon.with("\u{f5f3}") +#let fa-file-certificate = fa-icon.with("\u{f5f3}") +#let fa-gas-pump-slash = fa-icon.with("\u{f5f4}") +#let fa-glasses-alt = fa-icon.with("\u{f5f5}") +#let fa-glasses-round = fa-icon.with("\u{f5f5}") +#let fa-globe-stand = fa-icon.with("\u{f5f6}") +#let fa-hackerrank = fa-icon.with("\u{f5f7}") +#let fa-heart-rate = fa-icon.with("\u{f5f8}") +#let fa-wave-pulse = fa-icon.with("\u{f5f8}") +#let fa-inhaler = fa-icon.with("\u{f5f9}") +#let fa-kaggle = fa-icon.with("\u{f5fa}") +#let fa-kidneys = fa-icon.with("\u{f5fb}") +#let fa-laptop-code = fa-icon.with("\u{f5fc}") +#let fa-layer-group = fa-icon.with("\u{f5fd}") +#let fa-layer-group-minus = fa-icon.with("\u{f5fe}") +#let fa-layer-minus = fa-icon.with("\u{f5fe}") +#let fa-layer-group-plus = fa-icon.with("\u{f5ff}") +#let fa-layer-plus = fa-icon.with("\u{f5ff}") +#let fa-lips = fa-icon.with("\u{f600}") +#let fa-location = fa-icon.with("\u{f601}") +#let fa-location-crosshairs = fa-icon.with("\u{f601}") +#let fa-circle-location-arrow = fa-icon.with("\u{f602}") +#let fa-location-circle = fa-icon.with("\u{f602}") +#let fa-location-crosshairs-slash = fa-icon.with("\u{f603}") +#let fa-location-slash = fa-icon.with("\u{f603}") +#let fa-lungs = fa-icon.with("\u{f604}") +#let fa-location-dot-slash = fa-icon.with("\u{f605}") +#let fa-map-marker-alt-slash = fa-icon.with("\u{f605}") +#let fa-location-check = fa-icon.with("\u{f606}") +#let fa-map-marker-check = fa-icon.with("\u{f606}") +#let fa-location-pen = fa-icon.with("\u{f607}") +#let fa-map-marker-edit = fa-icon.with("\u{f607}") +#let fa-location-exclamation = fa-icon.with("\u{f608}") +#let fa-map-marker-exclamation = fa-icon.with("\u{f608}") +#let fa-location-minus = fa-icon.with("\u{f609}") +#let fa-map-marker-minus = fa-icon.with("\u{f609}") +#let fa-location-plus = fa-icon.with("\u{f60a}") +#let fa-map-marker-plus = fa-icon.with("\u{f60a}") +#let fa-location-question = fa-icon.with("\u{f60b}") +#let fa-map-marker-question = fa-icon.with("\u{f60b}") +#let fa-location-pin-slash = fa-icon.with("\u{f60c}") +#let fa-map-marker-slash = fa-icon.with("\u{f60c}") +#let fa-location-smile = fa-icon.with("\u{f60d}") +#let fa-map-marker-smile = fa-icon.with("\u{f60d}") +#let fa-location-xmark = fa-icon.with("\u{f60e}") +#let fa-map-marker-times = fa-icon.with("\u{f60e}") +#let fa-map-marker-xmark = fa-icon.with("\u{f60e}") +#let fa-markdown = fa-icon.with("\u{f60f}") +#let fa-microscope = fa-icon.with("\u{f610}") +#let fa-monitor-heart-rate = fa-icon.with("\u{f611}") +#let fa-monitor-waveform = fa-icon.with("\u{f611}") +#let fa-neos = fa-icon.with("\u{f612}") +#let fa-oil-can = fa-icon.with("\u{f613}") +#let fa-oil-temp = fa-icon.with("\u{f614}") +#let fa-oil-temperature = fa-icon.with("\u{f614}") +#let fa-circle-parking = fa-icon.with("\u{f615}") +#let fa-parking-circle = fa-icon.with("\u{f615}") +#let fa-ban-parking = fa-icon.with("\u{f616}") +#let fa-parking-circle-slash = fa-icon.with("\u{f616}") +#let fa-parking-slash = fa-icon.with("\u{f617}") +#let fa-square-parking-slash = fa-icon.with("\u{f617}") +#let fa-pen-paintbrush = fa-icon.with("\u{f618}") +#let fa-pencil-paintbrush = fa-icon.with("\u{f618}") +#let fa-poop = fa-icon.with("\u{f619}") +#let fa-route-highway = fa-icon.with("\u{f61a}") +#let fa-route-interstate = fa-icon.with("\u{f61b}") +#let fa-ruler-triangle = fa-icon.with("\u{f61c}") +#let fa-scalpel = fa-icon.with("\u{f61d}") +#let fa-scalpel-line-dashed = fa-icon.with("\u{f61e}") +#let fa-scalpel-path = fa-icon.with("\u{f61e}") +#let fa-shapes = fa-icon.with("\u{f61f}") +#let fa-triangle-circle-square = fa-icon.with("\u{f61f}") +#let fa-skeleton = fa-icon.with("\u{f620}") +#let fa-star-of-life = fa-icon.with("\u{f621}") +#let fa-steering-wheel = fa-icon.with("\u{f622}") +#let fa-stomach = fa-icon.with("\u{f623}") +#let fa-dashboard = fa-icon.with("\u{f624}") +#let fa-gauge = fa-icon.with("\u{f624}") +#let fa-gauge-med = fa-icon.with("\u{f624}") +#let fa-tachometer-alt-average = fa-icon.with("\u{f624}") +#let fa-gauge-high = fa-icon.with("\u{f625}") +#let fa-tachometer-alt = fa-icon.with("\u{f625}") +#let fa-tachometer-alt-fast = fa-icon.with("\u{f625}") +#let fa-gauge-max = fa-icon.with("\u{f626}") +#let fa-tachometer-alt-fastest = fa-icon.with("\u{f626}") +#let fa-gauge-low = fa-icon.with("\u{f627}") +#let fa-tachometer-alt-slow = fa-icon.with("\u{f627}") +#let fa-gauge-min = fa-icon.with("\u{f628}") +#let fa-tachometer-alt-slowest = fa-icon.with("\u{f628}") +#let fa-gauge-simple = fa-icon.with("\u{f629}") +#let fa-gauge-simple-med = fa-icon.with("\u{f629}") +#let fa-tachometer-average = fa-icon.with("\u{f629}") +#let fa-gauge-simple-high = fa-icon.with("\u{f62a}") +#let fa-tachometer = fa-icon.with("\u{f62a}") +#let fa-tachometer-fast = fa-icon.with("\u{f62a}") +#let fa-gauge-simple-max = fa-icon.with("\u{f62b}") +#let fa-tachometer-fastest = fa-icon.with("\u{f62b}") +#let fa-gauge-simple-low = fa-icon.with("\u{f62c}") +#let fa-tachometer-slow = fa-icon.with("\u{f62c}") +#let fa-gauge-simple-min = fa-icon.with("\u{f62d}") +#let fa-tachometer-slowest = fa-icon.with("\u{f62d}") +#let fa-teeth = fa-icon.with("\u{f62e}") +#let fa-teeth-open = fa-icon.with("\u{f62f}") +#let fa-masks-theater = fa-icon.with("\u{f630}") +#let fa-theater-masks = fa-icon.with("\u{f630}") +#let fa-tire = fa-icon.with("\u{f631}") +#let fa-tire-flat = fa-icon.with("\u{f632}") +#let fa-tire-pressure-warning = fa-icon.with("\u{f633}") +#let fa-tire-rugged = fa-icon.with("\u{f634}") +#let fa-toothbrush = fa-icon.with("\u{f635}") +#let fa-traffic-cone = fa-icon.with("\u{f636}") +#let fa-traffic-light = fa-icon.with("\u{f637}") +#let fa-traffic-light-go = fa-icon.with("\u{f638}") +#let fa-traffic-light-slow = fa-icon.with("\u{f639}") +#let fa-traffic-light-stop = fa-icon.with("\u{f63a}") +#let fa-truck-monster = fa-icon.with("\u{f63b}") +#let fa-truck-pickup = fa-icon.with("\u{f63c}") +#let fa-screen-users = fa-icon.with("\u{f63d}") +#let fa-users-class = fa-icon.with("\u{f63d}") +#let fa-watch-fitness = fa-icon.with("\u{f63e}") +#let fa-zhihu = fa-icon.with("\u{f63f}") +#let fa-abacus = fa-icon.with("\u{f640}") +#let fa-ad = fa-icon.with("\u{f641}") +#let fa-rectangle-ad = fa-icon.with("\u{f641}") +#let fa-alipay = fa-icon.with("\u{f642}") +#let fa-analytics = fa-icon.with("\u{f643}") +#let fa-chart-mixed = fa-icon.with("\u{f643}") +#let fa-ankh = fa-icon.with("\u{f644}") +#let fa-badge-dollar = fa-icon.with("\u{f645}") +#let fa-badge-percent = fa-icon.with("\u{f646}") +#let fa-bible = fa-icon.with("\u{f647}") +#let fa-book-bible = fa-icon.with("\u{f647}") +#let fa-bullseye-arrow = fa-icon.with("\u{f648}") +#let fa-bullseye-pointer = fa-icon.with("\u{f649}") +#let fa-briefcase-clock = fa-icon.with("\u{f64a}") +#let fa-business-time = fa-icon.with("\u{f64a}") +#let fa-cabinet-filing = fa-icon.with("\u{f64b}") +#let fa-calculator-alt = fa-icon.with("\u{f64c}") +#let fa-calculator-simple = fa-icon.with("\u{f64c}") +#let fa-chart-line-down = fa-icon.with("\u{f64d}") +#let fa-chart-pie-alt = fa-icon.with("\u{f64e}") +#let fa-chart-pie-simple = fa-icon.with("\u{f64e}") +#let fa-city = fa-icon.with("\u{f64f}") +#let fa-comment-alt-dollar = fa-icon.with("\u{f650}") +#let fa-message-dollar = fa-icon.with("\u{f650}") +#let fa-comment-dollar = fa-icon.with("\u{f651}") +#let fa-comments-alt-dollar = fa-icon.with("\u{f652}") +#let fa-messages-dollar = fa-icon.with("\u{f652}") +#let fa-comments-dollar = fa-icon.with("\u{f653}") +#let fa-cross = fa-icon.with("\u{f654}") +#let fa-dharmachakra = fa-icon.with("\u{f655}") +#let fa-empty-set = fa-icon.with("\u{f656}") +#let fa-envelope-open-dollar = fa-icon.with("\u{f657}") +#let fa-envelope-open-text = fa-icon.with("\u{f658}") +#let fa-file-chart-column = fa-icon.with("\u{f659}") +#let fa-file-chart-line = fa-icon.with("\u{f659}") +#let fa-file-chart-pie = fa-icon.with("\u{f65a}") +#let fa-file-spreadsheet = fa-icon.with("\u{f65b}") +#let fa-file-user = fa-icon.with("\u{f65c}") +#let fa-folder-minus = fa-icon.with("\u{f65d}") +#let fa-folder-plus = fa-icon.with("\u{f65e}") +#let fa-folder-times = fa-icon.with("\u{f65f}") +#let fa-folder-xmark = fa-icon.with("\u{f65f}") +#let fa-folders = fa-icon.with("\u{f660}") +#let fa-function = fa-icon.with("\u{f661}") +#let fa-filter-circle-dollar = fa-icon.with("\u{f662}") +#let fa-funnel-dollar = fa-icon.with("\u{f662}") +#let fa-gift-card = fa-icon.with("\u{f663}") +#let fa-gopuram = fa-icon.with("\u{f664}") +#let fa-hamsa = fa-icon.with("\u{f665}") +#let fa-bahai = fa-icon.with("\u{f666}") +#let fa-haykal = fa-icon.with("\u{f666}") +#let fa-integral = fa-icon.with("\u{f667}") +#let fa-intersection = fa-icon.with("\u{f668}") +#let fa-jedi = fa-icon.with("\u{f669}") +#let fa-book-journal-whills = fa-icon.with("\u{f66a}") +#let fa-journal-whills = fa-icon.with("\u{f66a}") +#let fa-kaaba = fa-icon.with("\u{f66b}") +#let fa-keynote = fa-icon.with("\u{f66c}") +#let fa-khanda = fa-icon.with("\u{f66d}") +#let fa-lambda = fa-icon.with("\u{f66e}") +#let fa-landmark = fa-icon.with("\u{f66f}") +#let fa-lightbulb-dollar = fa-icon.with("\u{f670}") +#let fa-lightbulb-exclamation = fa-icon.with("\u{f671}") +#let fa-lightbulb-on = fa-icon.with("\u{f672}") +#let fa-lightbulb-slash = fa-icon.with("\u{f673}") +#let fa-envelopes-bulk = fa-icon.with("\u{f674}") +#let fa-mail-bulk = fa-icon.with("\u{f674}") +#let fa-megaphone = fa-icon.with("\u{f675}") +#let fa-menorah = fa-icon.with("\u{f676}") +#let fa-brain-arrow-curved-right = fa-icon.with("\u{f677}") +#let fa-mind-share = fa-icon.with("\u{f677}") +#let fa-mosque = fa-icon.with("\u{f678}") +#let fa-om = fa-icon.with("\u{f679}") +#let fa-omega = fa-icon.with("\u{f67a}") +#let fa-pastafarianism = fa-icon.with("\u{f67b}") +#let fa-spaghetti-monster-flying = fa-icon.with("\u{f67b}") +#let fa-peace = fa-icon.with("\u{f67c}") +#let fa-phone-office = fa-icon.with("\u{f67d}") +#let fa-pi = fa-icon.with("\u{f67e}") +#let fa-place-of-worship = fa-icon.with("\u{f67f}") +#let fa-podium = fa-icon.with("\u{f680}") +#let fa-poll = fa-icon.with("\u{f681}") +#let fa-square-poll-vertical = fa-icon.with("\u{f681}") +#let fa-poll-h = fa-icon.with("\u{f682}") +#let fa-square-poll-horizontal = fa-icon.with("\u{f682}") +#let fa-person-praying = fa-icon.with("\u{f683}") +#let fa-pray = fa-icon.with("\u{f683}") +#let fa-hands-praying = fa-icon.with("\u{f684}") +#let fa-praying-hands = fa-icon.with("\u{f684}") +#let fa-presentation = fa-icon.with("\u{f685}") +#let fa-presentation-screen = fa-icon.with("\u{f685}") +#let fa-print-slash = fa-icon.with("\u{f686}") +#let fa-book-quran = fa-icon.with("\u{f687}") +#let fa-quran = fa-icon.with("\u{f687}") +#let fa-magnifying-glass-dollar = fa-icon.with("\u{f688}") +#let fa-search-dollar = fa-icon.with("\u{f688}") +#let fa-magnifying-glass-location = fa-icon.with("\u{f689}") +#let fa-search-location = fa-icon.with("\u{f689}") +#let fa-shredder = fa-icon.with("\u{f68a}") +#let fa-sigma = fa-icon.with("\u{f68b}") +#let fa-signal-1 = fa-icon.with("\u{f68c}") +#let fa-signal-weak = fa-icon.with("\u{f68c}") +#let fa-signal-2 = fa-icon.with("\u{f68d}") +#let fa-signal-fair = fa-icon.with("\u{f68d}") +#let fa-signal-3 = fa-icon.with("\u{f68e}") +#let fa-signal-good = fa-icon.with("\u{f68e}") +#let fa-signal-4 = fa-icon.with("\u{f68f}") +#let fa-signal-strong = fa-icon.with("\u{f68f}") +#let fa-signal-alt = fa-icon.with("\u{f690}") +#let fa-signal-alt-4 = fa-icon.with("\u{f690}") +#let fa-signal-bars = fa-icon.with("\u{f690}") +#let fa-signal-bars-strong = fa-icon.with("\u{f690}") +#let fa-signal-alt-1 = fa-icon.with("\u{f691}") +#let fa-signal-bars-weak = fa-icon.with("\u{f691}") +#let fa-signal-alt-2 = fa-icon.with("\u{f692}") +#let fa-signal-bars-fair = fa-icon.with("\u{f692}") +#let fa-signal-alt-3 = fa-icon.with("\u{f693}") +#let fa-signal-bars-good = fa-icon.with("\u{f693}") +#let fa-signal-alt-slash = fa-icon.with("\u{f694}") +#let fa-signal-bars-slash = fa-icon.with("\u{f694}") +#let fa-signal-slash = fa-icon.with("\u{f695}") +#let fa-socks = fa-icon.with("\u{f696}") +#let fa-square-root = fa-icon.with("\u{f697}") +#let fa-square-root-alt = fa-icon.with("\u{f698}") +#let fa-square-root-variable = fa-icon.with("\u{f698}") +#let fa-star-and-crescent = fa-icon.with("\u{f699}") +#let fa-star-of-david = fa-icon.with("\u{f69a}") +#let fa-synagogue = fa-icon.with("\u{f69b}") +#let fa-tally = fa-icon.with("\u{f69c}") +#let fa-tally-5 = fa-icon.with("\u{f69c}") +#let fa-the-red-yeti = fa-icon.with("\u{f69d}") +#let fa-theta = fa-icon.with("\u{f69e}") +#let fa-scroll-torah = fa-icon.with("\u{f6a0}") +#let fa-torah = fa-icon.with("\u{f6a0}") +#let fa-torii-gate = fa-icon.with("\u{f6a1}") +#let fa-union = fa-icon.with("\u{f6a2}") +#let fa-chart-user = fa-icon.with("\u{f6a3}") +#let fa-user-chart = fa-icon.with("\u{f6a3}") +#let fa-user-crown = fa-icon.with("\u{f6a4}") +#let fa-user-group-crown = fa-icon.with("\u{f6a5}") +#let fa-users-crown = fa-icon.with("\u{f6a5}") +#let fa-value-absolute = fa-icon.with("\u{f6a6}") +#let fa-vihara = fa-icon.with("\u{f6a7}") +#let fa-volume = fa-icon.with("\u{f6a8}") +#let fa-volume-medium = fa-icon.with("\u{f6a8}") +#let fa-volume-mute = fa-icon.with("\u{f6a9}") +#let fa-volume-times = fa-icon.with("\u{f6a9}") +#let fa-volume-xmark = fa-icon.with("\u{f6a9}") +#let fa-wifi-1 = fa-icon.with("\u{f6aa}") +#let fa-wifi-weak = fa-icon.with("\u{f6aa}") +#let fa-wifi-2 = fa-icon.with("\u{f6ab}") +#let fa-wifi-fair = fa-icon.with("\u{f6ab}") +#let fa-wifi-slash = fa-icon.with("\u{f6ac}") +#let fa-yin-yang = fa-icon.with("\u{f6ad}") +#let fa-acorn = fa-icon.with("\u{f6ae}") +#let fa-alicorn = fa-icon.with("\u{f6b0}") +#let fa-apple-crate = fa-icon.with("\u{f6b1}") +#let fa-crate-apple = fa-icon.with("\u{f6b1}") +#let fa-axe = fa-icon.with("\u{f6b2}") +#let fa-axe-battle = fa-icon.with("\u{f6b3}") +#let fa-badger-honey = fa-icon.with("\u{f6b4}") +#let fa-bat = fa-icon.with("\u{f6b5}") +#let fa-blender-phone = fa-icon.with("\u{f6b6}") +#let fa-book-dead = fa-icon.with("\u{f6b7}") +#let fa-book-skull = fa-icon.with("\u{f6b7}") +#let fa-book-sparkles = fa-icon.with("\u{f6b8}") +#let fa-book-spells = fa-icon.with("\u{f6b8}") +#let fa-bow-arrow = fa-icon.with("\u{f6b9}") +#let fa-campfire = fa-icon.with("\u{f6ba}") +#let fa-campground = fa-icon.with("\u{f6bb}") +#let fa-candle-holder = fa-icon.with("\u{f6bc}") +#let fa-candy-corn = fa-icon.with("\u{f6bd}") +#let fa-cat = fa-icon.with("\u{f6be}") +#let fa-cauldron = fa-icon.with("\u{f6bf}") +#let fa-chair = fa-icon.with("\u{f6c0}") +#let fa-chair-office = fa-icon.with("\u{f6c1}") +#let fa-claw-marks = fa-icon.with("\u{f6c2}") +#let fa-cloud-moon = fa-icon.with("\u{f6c3}") +#let fa-cloud-sun = fa-icon.with("\u{f6c4}") +#let fa-coffee-togo = fa-icon.with("\u{f6c5}") +#let fa-cup-togo = fa-icon.with("\u{f6c5}") +#let fa-coffin = fa-icon.with("\u{f6c6}") +#let fa-corn = fa-icon.with("\u{f6c7}") +#let fa-cow = fa-icon.with("\u{f6c8}") +#let fa-critical-role = fa-icon.with("\u{f6c9}") +#let fa-d-and-d-beyond = fa-icon.with("\u{f6ca}") +#let fa-dagger = fa-icon.with("\u{f6cb}") +#let fa-dev = fa-icon.with("\u{f6cc}") +#let fa-dice-d10 = fa-icon.with("\u{f6cd}") +#let fa-dice-d12 = fa-icon.with("\u{f6ce}") +#let fa-dice-d20 = fa-icon.with("\u{f6cf}") +#let fa-dice-d4 = fa-icon.with("\u{f6d0}") +#let fa-dice-d6 = fa-icon.with("\u{f6d1}") +#let fa-dice-d8 = fa-icon.with("\u{f6d2}") +#let fa-dog = fa-icon.with("\u{f6d3}") +#let fa-dog-leashed = fa-icon.with("\u{f6d4}") +#let fa-dragon = fa-icon.with("\u{f6d5}") +#let fa-drumstick = fa-icon.with("\u{f6d6}") +#let fa-drumstick-bite = fa-icon.with("\u{f6d7}") +#let fa-duck = fa-icon.with("\u{f6d8}") +#let fa-dungeon = fa-icon.with("\u{f6d9}") +#let fa-elephant = fa-icon.with("\u{f6da}") +#let fa-eye-evil = fa-icon.with("\u{f6db}") +#let fa-fantasy-flight-games = fa-icon.with("\u{f6dc}") +#let fa-file-csv = fa-icon.with("\u{f6dd}") +#let fa-fist-raised = fa-icon.with("\u{f6de}") +#let fa-hand-fist = fa-icon.with("\u{f6de}") +#let fa-fire-flame = fa-icon.with("\u{f6df}") +#let fa-flame = fa-icon.with("\u{f6df}") +#let fa-flask-poison = fa-icon.with("\u{f6e0}") +#let fa-flask-round-poison = fa-icon.with("\u{f6e0}") +#let fa-flask-potion = fa-icon.with("\u{f6e1}") +#let fa-flask-round-potion = fa-icon.with("\u{f6e1}") +#let fa-ghost = fa-icon.with("\u{f6e2}") +#let fa-hammer = fa-icon.with("\u{f6e3}") +#let fa-hammer-war = fa-icon.with("\u{f6e4}") +#let fa-hand-holding-magic = fa-icon.with("\u{f6e5}") +#let fa-hanukiah = fa-icon.with("\u{f6e6}") +#let fa-hat-witch = fa-icon.with("\u{f6e7}") +#let fa-hat-wizard = fa-icon.with("\u{f6e8}") +#let fa-head-side = fa-icon.with("\u{f6e9}") +#let fa-head-side-goggles = fa-icon.with("\u{f6ea}") +#let fa-head-vr = fa-icon.with("\u{f6ea}") +#let fa-helmet-battle = fa-icon.with("\u{f6eb}") +#let fa-hiking = fa-icon.with("\u{f6ec}") +#let fa-person-hiking = fa-icon.with("\u{f6ec}") +#let fa-hippo = fa-icon.with("\u{f6ed}") +#let fa-hockey-mask = fa-icon.with("\u{f6ee}") +#let fa-hood-cloak = fa-icon.with("\u{f6ef}") +#let fa-horse = fa-icon.with("\u{f6f0}") +#let fa-house-chimney-crack = fa-icon.with("\u{f6f1}") +#let fa-house-damage = fa-icon.with("\u{f6f1}") +#let fa-hryvnia = fa-icon.with("\u{f6f2}") +#let fa-hryvnia-sign = fa-icon.with("\u{f6f2}") +#let fa-key-skeleton = fa-icon.with("\u{f6f3}") +#let fa-kite = fa-icon.with("\u{f6f4}") +#let fa-knife-kitchen = fa-icon.with("\u{f6f5}") +#let fa-leaf-maple = fa-icon.with("\u{f6f6}") +#let fa-leaf-oak = fa-icon.with("\u{f6f7}") +#let fa-mace = fa-icon.with("\u{f6f8}") +#let fa-mandolin = fa-icon.with("\u{f6f9}") +#let fa-mask = fa-icon.with("\u{f6fa}") +#let fa-monkey = fa-icon.with("\u{f6fb}") +#let fa-mountain = fa-icon.with("\u{f6fc}") +#let fa-mountains = fa-icon.with("\u{f6fd}") +#let fa-narwhal = fa-icon.with("\u{f6fe}") +#let fa-network-wired = fa-icon.with("\u{f6ff}") +#let fa-otter = fa-icon.with("\u{f700}") +#let fa-paw-alt = fa-icon.with("\u{f701}") +#let fa-paw-simple = fa-icon.with("\u{f701}") +#let fa-paw-claws = fa-icon.with("\u{f702}") +#let fa-pegasus = fa-icon.with("\u{f703}") +#let fa-pie = fa-icon.with("\u{f705}") +#let fa-pig = fa-icon.with("\u{f706}") +#let fa-pumpkin = fa-icon.with("\u{f707}") +#let fa-rabbit = fa-icon.with("\u{f708}") +#let fa-rabbit-fast = fa-icon.with("\u{f709}") +#let fa-rabbit-running = fa-icon.with("\u{f709}") +#let fa-ram = fa-icon.with("\u{f70a}") +#let fa-ring = fa-icon.with("\u{f70b}") +#let fa-person-running = fa-icon.with("\u{f70c}") +#let fa-running = fa-icon.with("\u{f70c}") +#let fa-scarecrow = fa-icon.with("\u{f70d}") +#let fa-scroll = fa-icon.with("\u{f70e}") +#let fa-scroll-old = fa-icon.with("\u{f70f}") +#let fa-scythe = fa-icon.with("\u{f710}") +#let fa-sheep = fa-icon.with("\u{f711}") +#let fa-shield-cross = fa-icon.with("\u{f712}") +#let fa-shovel = fa-icon.with("\u{f713}") +#let fa-skull-crossbones = fa-icon.with("\u{f714}") +#let fa-slash = fa-icon.with("\u{f715}") +#let fa-snake = fa-icon.with("\u{f716}") +#let fa-spider = fa-icon.with("\u{f717}") +#let fa-spider-black-widow = fa-icon.with("\u{f718}") +#let fa-spider-web = fa-icon.with("\u{f719}") +#let fa-squirrel = fa-icon.with("\u{f71a}") +#let fa-staff = fa-icon.with("\u{f71b}") +#let fa-sword = fa-icon.with("\u{f71c}") +#let fa-swords = fa-icon.with("\u{f71d}") +#let fa-toilet-paper = fa-icon.with("\u{f71e}") +#let fa-tombstone = fa-icon.with("\u{f720}") +#let fa-tombstone-alt = fa-icon.with("\u{f721}") +#let fa-tombstone-blank = fa-icon.with("\u{f721}") +#let fa-tractor = fa-icon.with("\u{f722}") +#let fa-treasure-chest = fa-icon.with("\u{f723}") +#let fa-trees = fa-icon.with("\u{f724}") +#let fa-turkey = fa-icon.with("\u{f725}") +#let fa-turtle = fa-icon.with("\u{f726}") +#let fa-unicorn = fa-icon.with("\u{f727}") +#let fa-user-injured = fa-icon.with("\u{f728}") +#let fa-vr-cardboard = fa-icon.with("\u{f729}") +#let fa-wand = fa-icon.with("\u{f72a}") +#let fa-wand-sparkles = fa-icon.with("\u{f72b}") +#let fa-whale = fa-icon.with("\u{f72c}") +#let fa-wheat = fa-icon.with("\u{f72d}") +#let fa-wind = fa-icon.with("\u{f72e}") +#let fa-wine-bottle = fa-icon.with("\u{f72f}") +#let fa-wizards-of-the-coast = fa-icon.with("\u{f730}") +#let fa-think-peaks = fa-icon.with("\u{f731}") +#let fa-ballot = fa-icon.with("\u{f732}") +#let fa-ballot-check = fa-icon.with("\u{f733}") +#let fa-booth-curtain = fa-icon.with("\u{f734}") +#let fa-box-ballot = fa-icon.with("\u{f735}") +#let fa-calendar-star = fa-icon.with("\u{f736}") +#let fa-clipboard-list-check = fa-icon.with("\u{f737}") +#let fa-cloud-drizzle = fa-icon.with("\u{f738}") +#let fa-cloud-hail = fa-icon.with("\u{f739}") +#let fa-cloud-hail-mixed = fa-icon.with("\u{f73a}") +#let fa-cloud-meatball = fa-icon.with("\u{f73b}") +#let fa-cloud-moon-rain = fa-icon.with("\u{f73c}") +#let fa-cloud-rain = fa-icon.with("\u{f73d}") +#let fa-cloud-rainbow = fa-icon.with("\u{f73e}") +#let fa-cloud-showers = fa-icon.with("\u{f73f}") +#let fa-cloud-showers-heavy = fa-icon.with("\u{f740}") +#let fa-cloud-sleet = fa-icon.with("\u{f741}") +#let fa-cloud-snow = fa-icon.with("\u{f742}") +#let fa-cloud-sun-rain = fa-icon.with("\u{f743}") +#let fa-clouds = fa-icon.with("\u{f744}") +#let fa-clouds-moon = fa-icon.with("\u{f745}") +#let fa-clouds-sun = fa-icon.with("\u{f746}") +#let fa-democrat = fa-icon.with("\u{f747}") +#let fa-dewpoint = fa-icon.with("\u{f748}") +#let fa-droplet-degree = fa-icon.with("\u{f748}") +#let fa-eclipse = fa-icon.with("\u{f749}") +#let fa-eclipse-alt = fa-icon.with("\u{f74a}") +#let fa-moon-over-sun = fa-icon.with("\u{f74a}") +#let fa-fire-smoke = fa-icon.with("\u{f74b}") +#let fa-flag-alt = fa-icon.with("\u{f74c}") +#let fa-flag-swallowtail = fa-icon.with("\u{f74c}") +#let fa-flag-usa = fa-icon.with("\u{f74d}") +#let fa-cloud-fog = fa-icon.with("\u{f74e}") +#let fa-fog = fa-icon.with("\u{f74e}") +#let fa-house-flood = fa-icon.with("\u{f74f}") +#let fa-house-water = fa-icon.with("\u{f74f}") +#let fa-droplet-percent = fa-icon.with("\u{f750}") +#let fa-humidity = fa-icon.with("\u{f750}") +#let fa-hurricane = fa-icon.with("\u{f751}") +#let fa-landmark-alt = fa-icon.with("\u{f752}") +#let fa-landmark-dome = fa-icon.with("\u{f752}") +#let fa-meteor = fa-icon.with("\u{f753}") +#let fa-moon-cloud = fa-icon.with("\u{f754}") +#let fa-moon-stars = fa-icon.with("\u{f755}") +#let fa-person-booth = fa-icon.with("\u{f756}") +#let fa-person-sign = fa-icon.with("\u{f757}") +#let fa-podium-star = fa-icon.with("\u{f758}") +#let fa-poll-people = fa-icon.with("\u{f759}") +#let fa-poo-bolt = fa-icon.with("\u{f75a}") +#let fa-poo-storm = fa-icon.with("\u{f75a}") +#let fa-rainbow = fa-icon.with("\u{f75b}") +#let fa-raindrops = fa-icon.with("\u{f75c}") +#let fa-reacteurope = fa-icon.with("\u{f75d}") +#let fa-republican = fa-icon.with("\u{f75e}") +#let fa-smog = fa-icon.with("\u{f75f}") +#let fa-smoke = fa-icon.with("\u{f760}") +#let fa-snow-blowing = fa-icon.with("\u{f761}") +#let fa-stars = fa-icon.with("\u{f762}") +#let fa-sun-cloud = fa-icon.with("\u{f763}") +#let fa-sun-dust = fa-icon.with("\u{f764}") +#let fa-sun-haze = fa-icon.with("\u{f765}") +#let fa-sunrise = fa-icon.with("\u{f766}") +#let fa-sunset = fa-icon.with("\u{f767}") +#let fa-temperature-frigid = fa-icon.with("\u{f768}") +#let fa-temperature-snow = fa-icon.with("\u{f768}") +#let fa-temperature-high = fa-icon.with("\u{f769}") +#let fa-temperature-hot = fa-icon.with("\u{f76a}") +#let fa-temperature-sun = fa-icon.with("\u{f76a}") +#let fa-temperature-low = fa-icon.with("\u{f76b}") +#let fa-cloud-bolt = fa-icon.with("\u{f76c}") +#let fa-thunderstorm = fa-icon.with("\u{f76c}") +#let fa-cloud-bolt-moon = fa-icon.with("\u{f76d}") +#let fa-thunderstorm-moon = fa-icon.with("\u{f76d}") +#let fa-cloud-bolt-sun = fa-icon.with("\u{f76e}") +#let fa-thunderstorm-sun = fa-icon.with("\u{f76e}") +#let fa-tornado = fa-icon.with("\u{f76f}") +#let fa-volcano = fa-icon.with("\u{f770}") +#let fa-times-to-slot = fa-icon.with("\u{f771}") +#let fa-vote-nay = fa-icon.with("\u{f771}") +#let fa-xmark-to-slot = fa-icon.with("\u{f771}") +#let fa-check-to-slot = fa-icon.with("\u{f772}") +#let fa-vote-yea = fa-icon.with("\u{f772}") +#let fa-water = fa-icon.with("\u{f773}") +#let fa-water-arrow-down = fa-icon.with("\u{f774}") +#let fa-water-lower = fa-icon.with("\u{f774}") +#let fa-water-arrow-up = fa-icon.with("\u{f775}") +#let fa-water-rise = fa-icon.with("\u{f775}") +#let fa-wind-circle-exclamation = fa-icon.with("\u{f776}") +#let fa-wind-warning = fa-icon.with("\u{f776}") +#let fa-windsock = fa-icon.with("\u{f777}") +#let fa-angel = fa-icon.with("\u{f779}") +#let fa-artstation = fa-icon.with("\u{f77a}") +#let fa-atlassian = fa-icon.with("\u{f77b}") +#let fa-baby = fa-icon.with("\u{f77c}") +#let fa-baby-carriage = fa-icon.with("\u{f77d}") +#let fa-carriage-baby = fa-icon.with("\u{f77d}") +#let fa-ball-pile = fa-icon.with("\u{f77e}") +#let fa-bells = fa-icon.with("\u{f77f}") +#let fa-biohazard = fa-icon.with("\u{f780}") +#let fa-blog = fa-icon.with("\u{f781}") +#let fa-boot = fa-icon.with("\u{f782}") +#let fa-calendar-day = fa-icon.with("\u{f783}") +#let fa-calendar-week = fa-icon.with("\u{f784}") +#let fa-canadian-maple-leaf = fa-icon.with("\u{f785}") +#let fa-candy-cane = fa-icon.with("\u{f786}") +#let fa-carrot = fa-icon.with("\u{f787}") +#let fa-cash-register = fa-icon.with("\u{f788}") +#let fa-centos = fa-icon.with("\u{f789}") +#let fa-chart-network = fa-icon.with("\u{f78a}") +#let fa-chimney = fa-icon.with("\u{f78b}") +#let fa-compress-arrows-alt = fa-icon.with("\u{f78c}") +#let fa-minimize = fa-icon.with("\u{f78c}") +#let fa-confluence = fa-icon.with("\u{f78d}") +#let fa-deer = fa-icon.with("\u{f78e}") +#let fa-deer-rudolph = fa-icon.with("\u{f78f}") +#let fa-dhl = fa-icon.with("\u{f790}") +#let fa-diaspora = fa-icon.with("\u{f791}") +#let fa-dreidel = fa-icon.with("\u{f792}") +#let fa-dumpster = fa-icon.with("\u{f793}") +#let fa-dumpster-fire = fa-icon.with("\u{f794}") +#let fa-ear-muffs = fa-icon.with("\u{f795}") +#let fa-ethernet = fa-icon.with("\u{f796}") +#let fa-fedex = fa-icon.with("\u{f797}") +#let fa-fedora = fa-icon.with("\u{f798}") +#let fa-figma = fa-icon.with("\u{f799}") +#let fa-fireplace = fa-icon.with("\u{f79a}") +#let fa-frosty-head = fa-icon.with("\u{f79b}") +#let fa-snowman-head = fa-icon.with("\u{f79b}") +#let fa-gifts = fa-icon.with("\u{f79c}") +#let fa-gingerbread-man = fa-icon.with("\u{f79d}") +#let fa-champagne-glass = fa-icon.with("\u{f79e}") +#let fa-glass-champagne = fa-icon.with("\u{f79e}") +#let fa-champagne-glasses = fa-icon.with("\u{f79f}") +#let fa-glass-cheers = fa-icon.with("\u{f79f}") +#let fa-glass-whiskey = fa-icon.with("\u{f7a0}") +#let fa-whiskey-glass = fa-icon.with("\u{f7a0}") +#let fa-glass-whiskey-rocks = fa-icon.with("\u{f7a1}") +#let fa-whiskey-glass-ice = fa-icon.with("\u{f7a1}") +#let fa-earth-europe = fa-icon.with("\u{f7a2}") +#let fa-globe-europe = fa-icon.with("\u{f7a2}") +#let fa-globe-snow = fa-icon.with("\u{f7a3}") +#let fa-grip-lines = fa-icon.with("\u{f7a4}") +#let fa-grip-lines-vertical = fa-icon.with("\u{f7a5}") +#let fa-guitar = fa-icon.with("\u{f7a6}") +#let fa-hat-santa = fa-icon.with("\u{f7a7}") +#let fa-hat-winter = fa-icon.with("\u{f7a8}") +#let fa-heart-broken = fa-icon.with("\u{f7a9}") +#let fa-heart-crack = fa-icon.with("\u{f7a9}") +#let fa-holly-berry = fa-icon.with("\u{f7aa}") +#let fa-horse-head = fa-icon.with("\u{f7ab}") +#let fa-ice-skate = fa-icon.with("\u{f7ac}") +#let fa-icicles = fa-icon.with("\u{f7ad}") +#let fa-igloo = fa-icon.with("\u{f7ae}") +#let fa-intercom = fa-icon.with("\u{f7af}") +#let fa-invision = fa-icon.with("\u{f7b0}") +#let fa-jira = fa-icon.with("\u{f7b1}") +#let fa-lights-holiday = fa-icon.with("\u{f7b2}") +#let fa-mendeley = fa-icon.with("\u{f7b3}") +#let fa-mistletoe = fa-icon.with("\u{f7b4}") +#let fa-mitten = fa-icon.with("\u{f7b5}") +#let fa-mug-hot = fa-icon.with("\u{f7b6}") +#let fa-mug-marshmallows = fa-icon.with("\u{f7b7}") +#let fa-ornament = fa-icon.with("\u{f7b8}") +#let fa-radiation = fa-icon.with("\u{f7b9}") +#let fa-circle-radiation = fa-icon.with("\u{f7ba}") +#let fa-radiation-alt = fa-icon.with("\u{f7ba}") +#let fa-raspberry-pi = fa-icon.with("\u{f7bb}") +#let fa-redhat = fa-icon.with("\u{f7bc}") +#let fa-restroom = fa-icon.with("\u{f7bd}") +#let fa-rv = fa-icon.with("\u{f7be}") +#let fa-satellite = fa-icon.with("\u{f7bf}") +#let fa-satellite-dish = fa-icon.with("\u{f7c0}") +#let fa-scarf = fa-icon.with("\u{f7c1}") +#let fa-sd-card = fa-icon.with("\u{f7c2}") +#let fa-shovel-snow = fa-icon.with("\u{f7c3}") +#let fa-sim-card = fa-icon.with("\u{f7c4}") +#let fa-person-skating = fa-icon.with("\u{f7c5}") +#let fa-skating = fa-icon.with("\u{f7c5}") +#let fa-sketch = fa-icon.with("\u{f7c6}") +#let fa-person-ski-jumping = fa-icon.with("\u{f7c7}") +#let fa-ski-jump = fa-icon.with("\u{f7c7}") +#let fa-person-ski-lift = fa-icon.with("\u{f7c8}") +#let fa-ski-lift = fa-icon.with("\u{f7c8}") +#let fa-person-skiing = fa-icon.with("\u{f7c9}") +#let fa-skiing = fa-icon.with("\u{f7c9}") +#let fa-person-skiing-nordic = fa-icon.with("\u{f7ca}") +#let fa-skiing-nordic = fa-icon.with("\u{f7ca}") +#let fa-person-sledding = fa-icon.with("\u{f7cb}") +#let fa-sledding = fa-icon.with("\u{f7cb}") +#let fa-sleigh = fa-icon.with("\u{f7cc}") +#let fa-comment-sms = fa-icon.with("\u{f7cd}") +#let fa-sms = fa-icon.with("\u{f7cd}") +#let fa-person-snowboarding = fa-icon.with("\u{f7ce}") +#let fa-snowboarding = fa-icon.with("\u{f7ce}") +#let fa-snowflakes = fa-icon.with("\u{f7cf}") +#let fa-snowman = fa-icon.with("\u{f7d0}") +#let fa-person-snowmobiling = fa-icon.with("\u{f7d1}") +#let fa-snowmobile = fa-icon.with("\u{f7d1}") +#let fa-snowplow = fa-icon.with("\u{f7d2}") +#let fa-sourcetree = fa-icon.with("\u{f7d3}") +#let fa-star-christmas = fa-icon.with("\u{f7d4}") +#let fa-stocking = fa-icon.with("\u{f7d5}") +#let fa-suse = fa-icon.with("\u{f7d6}") +#let fa-tenge = fa-icon.with("\u{f7d7}") +#let fa-tenge-sign = fa-icon.with("\u{f7d7}") +#let fa-toilet = fa-icon.with("\u{f7d8}") +#let fa-screwdriver-wrench = fa-icon.with("\u{f7d9}") +#let fa-tools = fa-icon.with("\u{f7d9}") +#let fa-cable-car = fa-icon.with("\u{f7da}") +#let fa-tram = fa-icon.with("\u{f7da}") +#let fa-tree-christmas = fa-icon.with("\u{f7db}") +#let fa-tree-decorated = fa-icon.with("\u{f7dc}") +#let fa-tree-large = fa-icon.with("\u{f7dd}") +#let fa-truck-plow = fa-icon.with("\u{f7de}") +#let fa-ubuntu = fa-icon.with("\u{f7df}") +#let fa-ups = fa-icon.with("\u{f7e0}") +#let fa-usps = fa-icon.with("\u{f7e1}") +#let fa-wreath = fa-icon.with("\u{f7e2}") +#let fa-yarn = fa-icon.with("\u{f7e3}") +#let fa-fire-alt = fa-icon.with("\u{f7e4}") +#let fa-fire-flame-curved = fa-icon.with("\u{f7e4}") +#let fa-bacon = fa-icon.with("\u{f7e5}") +#let fa-book-medical = fa-icon.with("\u{f7e6}") +#let fa-book-user = fa-icon.with("\u{f7e7}") +#let fa-books-medical = fa-icon.with("\u{f7e8}") +#let fa-brackets = fa-icon.with("\u{f7e9}") +#let fa-brackets-square = fa-icon.with("\u{f7e9}") +#let fa-brackets-curly = fa-icon.with("\u{f7ea}") +#let fa-bread-loaf = fa-icon.with("\u{f7eb}") +#let fa-bread-slice = fa-icon.with("\u{f7ec}") +#let fa-burrito = fa-icon.with("\u{f7ed}") +#let fa-chart-scatter = fa-icon.with("\u{f7ee}") +#let fa-cheese = fa-icon.with("\u{f7ef}") +#let fa-cheese-swiss = fa-icon.with("\u{f7f0}") +#let fa-burger-cheese = fa-icon.with("\u{f7f1}") +#let fa-cheeseburger = fa-icon.with("\u{f7f1}") +#let fa-clinic-medical = fa-icon.with("\u{f7f2}") +#let fa-house-chimney-medical = fa-icon.with("\u{f7f2}") +#let fa-clipboard-user = fa-icon.with("\u{f7f3}") +#let fa-comment-alt-medical = fa-icon.with("\u{f7f4}") +#let fa-message-medical = fa-icon.with("\u{f7f4}") +#let fa-comment-medical = fa-icon.with("\u{f7f5}") +#let fa-croissant = fa-icon.with("\u{f7f6}") +#let fa-crutch = fa-icon.with("\u{f7f7}") +#let fa-crutches = fa-icon.with("\u{f7f8}") +#let fa-ban-bug = fa-icon.with("\u{f7f9}") +#let fa-debug = fa-icon.with("\u{f7f9}") +#let fa-disease = fa-icon.with("\u{f7fa}") +#let fa-egg = fa-icon.with("\u{f7fb}") +#let fa-egg-fried = fa-icon.with("\u{f7fc}") +#let fa-files-medical = fa-icon.with("\u{f7fd}") +#let fa-fish-cooked = fa-icon.with("\u{f7fe}") +#let fa-flower = fa-icon.with("\u{f7ff}") +#let fa-flower-daffodil = fa-icon.with("\u{f800}") +#let fa-flower-tulip = fa-icon.with("\u{f801}") +#let fa-folder-tree = fa-icon.with("\u{f802}") +#let fa-french-fries = fa-icon.with("\u{f803}") +#let fa-glass = fa-icon.with("\u{f804}") +#let fa-burger = fa-icon.with("\u{f805}") +#let fa-hamburger = fa-icon.with("\u{f805}") +#let fa-hand-middle-finger = fa-icon.with("\u{f806}") +#let fa-hard-hat = fa-icon.with("\u{f807}") +#let fa-hat-hard = fa-icon.with("\u{f807}") +#let fa-helmet-safety = fa-icon.with("\u{f807}") +#let fa-head-side-brain = fa-icon.with("\u{f808}") +#let fa-head-side-medical = fa-icon.with("\u{f809}") +#let fa-hospital-user = fa-icon.with("\u{f80d}") +#let fa-hospitals = fa-icon.with("\u{f80e}") +#let fa-hotdog = fa-icon.with("\u{f80f}") +#let fa-ice-cream = fa-icon.with("\u{f810}") +#let fa-island-tree-palm = fa-icon.with("\u{f811}") +#let fa-island-tropical = fa-icon.with("\u{f811}") +#let fa-laptop-medical = fa-icon.with("\u{f812}") +#let fa-mailbox = fa-icon.with("\u{f813}") +#let fa-meat = fa-icon.with("\u{f814}") +#let fa-pager = fa-icon.with("\u{f815}") +#let fa-pepper-hot = fa-icon.with("\u{f816}") +#let fa-pizza = fa-icon.with("\u{f817}") +#let fa-pizza-slice = fa-icon.with("\u{f818}") +#let fa-popcorn = fa-icon.with("\u{f819}") +#let fa-print-magnifying-glass = fa-icon.with("\u{f81a}") +#let fa-print-search = fa-icon.with("\u{f81a}") +#let fa-rings-wedding = fa-icon.with("\u{f81b}") +#let fa-sack = fa-icon.with("\u{f81c}") +#let fa-sack-dollar = fa-icon.with("\u{f81d}") +#let fa-bowl-salad = fa-icon.with("\u{f81e}") +#let fa-salad = fa-icon.with("\u{f81e}") +#let fa-sandwich = fa-icon.with("\u{f81f}") +#let fa-sausage = fa-icon.with("\u{f820}") +#let fa-shish-kebab = fa-icon.with("\u{f821}") +#let fa-sickle = fa-icon.with("\u{f822}") +#let fa-bowl-hot = fa-icon.with("\u{f823}") +#let fa-soup = fa-icon.with("\u{f823}") +#let fa-steak = fa-icon.with("\u{f824}") +#let fa-stretcher = fa-icon.with("\u{f825}") +#let fa-taco = fa-icon.with("\u{f826}") +#let fa-book-tanakh = fa-icon.with("\u{f827}") +#let fa-tanakh = fa-icon.with("\u{f827}") +#let fa-bars-progress = fa-icon.with("\u{f828}") +#let fa-tasks-alt = fa-icon.with("\u{f828}") +#let fa-trash-arrow-up = fa-icon.with("\u{f829}") +#let fa-trash-restore = fa-icon.with("\u{f829}") +#let fa-trash-can-arrow-up = fa-icon.with("\u{f82a}") +#let fa-trash-restore-alt = fa-icon.with("\u{f82a}") +#let fa-tree-palm = fa-icon.with("\u{f82b}") +#let fa-user-construction = fa-icon.with("\u{f82c}") +#let fa-user-hard-hat = fa-icon.with("\u{f82c}") +#let fa-user-helmet-safety = fa-icon.with("\u{f82c}") +#let fa-user-headset = fa-icon.with("\u{f82d}") +#let fa-user-doctor-message = fa-icon.with("\u{f82e}") +#let fa-user-md-chat = fa-icon.with("\u{f82e}") +#let fa-user-nurse = fa-icon.with("\u{f82f}") +#let fa-users-medical = fa-icon.with("\u{f830}") +#let fa-walker = fa-icon.with("\u{f831}") +#let fa-camera-web = fa-icon.with("\u{f832}") +#let fa-webcam = fa-icon.with("\u{f832}") +#let fa-camera-web-slash = fa-icon.with("\u{f833}") +#let fa-webcam-slash = fa-icon.with("\u{f833}") +#let fa-airbnb = fa-icon.with("\u{f834}") +#let fa-battle-net = fa-icon.with("\u{f835}") +#let fa-bootstrap = fa-icon.with("\u{f836}") +#let fa-buffer = fa-icon.with("\u{f837}") +#let fa-chromecast = fa-icon.with("\u{f838}") +#let fa-evernote = fa-icon.with("\u{f839}") +#let fa-itch-io = fa-icon.with("\u{f83a}") +#let fa-salesforce = fa-icon.with("\u{f83b}") +#let fa-speaker-deck = fa-icon.with("\u{f83c}") +#let fa-symfony = fa-icon.with("\u{f83d}") +#let fa-wave-square = fa-icon.with("\u{f83e}") +#let fa-waze = fa-icon.with("\u{f83f}") +#let fa-yammer = fa-icon.with("\u{f840}") +#let fa-git-alt = fa-icon.with("\u{f841}") +#let fa-stackpath = fa-icon.with("\u{f842}") +#let fa-alarm-exclamation = fa-icon.with("\u{f843}") +#let fa-alarm-plus = fa-icon.with("\u{f844}") +#let fa-alarm-snooze = fa-icon.with("\u{f845}") +#let fa-align-slash = fa-icon.with("\u{f846}") +#let fa-bags-shopping = fa-icon.with("\u{f847}") +#let fa-bell-exclamation = fa-icon.with("\u{f848}") +#let fa-bell-plus = fa-icon.with("\u{f849}") +#let fa-biking = fa-icon.with("\u{f84a}") +#let fa-person-biking = fa-icon.with("\u{f84a}") +#let fa-biking-mountain = fa-icon.with("\u{f84b}") +#let fa-person-biking-mountain = fa-icon.with("\u{f84b}") +#let fa-border-all = fa-icon.with("\u{f84c}") +#let fa-border-bottom = fa-icon.with("\u{f84d}") +#let fa-border-inner = fa-icon.with("\u{f84e}") +#let fa-border-left = fa-icon.with("\u{f84f}") +#let fa-border-none = fa-icon.with("\u{f850}") +#let fa-border-outer = fa-icon.with("\u{f851}") +#let fa-border-right = fa-icon.with("\u{f852}") +#let fa-border-style = fa-icon.with("\u{f853}") +#let fa-border-top-left = fa-icon.with("\u{f853}") +#let fa-border-bottom-right = fa-icon.with("\u{f854}") +#let fa-border-style-alt = fa-icon.with("\u{f854}") +#let fa-border-top = fa-icon.with("\u{f855}") +#let fa-bring-forward = fa-icon.with("\u{f856}") +#let fa-bring-front = fa-icon.with("\u{f857}") +#let fa-burger-soda = fa-icon.with("\u{f858}") +#let fa-car-building = fa-icon.with("\u{f859}") +#let fa-car-bus = fa-icon.with("\u{f85a}") +#let fa-cars = fa-icon.with("\u{f85b}") +#let fa-coin = fa-icon.with("\u{f85c}") +#let fa-construction = fa-icon.with("\u{f85d}") +#let fa-triangle-person-digging = fa-icon.with("\u{f85d}") +#let fa-digging = fa-icon.with("\u{f85e}") +#let fa-person-digging = fa-icon.with("\u{f85e}") +#let fa-drone = fa-icon.with("\u{f85f}") +#let fa-drone-alt = fa-icon.with("\u{f860}") +#let fa-drone-front = fa-icon.with("\u{f860}") +#let fa-dryer = fa-icon.with("\u{f861}") +#let fa-dryer-alt = fa-icon.with("\u{f862}") +#let fa-dryer-heat = fa-icon.with("\u{f862}") +#let fa-fan = fa-icon.with("\u{f863}") +#let fa-barn-silo = fa-icon.with("\u{f864}") +#let fa-farm = fa-icon.with("\u{f864}") +#let fa-file-magnifying-glass = fa-icon.with("\u{f865}") +#let fa-file-search = fa-icon.with("\u{f865}") +#let fa-font-case = fa-icon.with("\u{f866}") +#let fa-game-board = fa-icon.with("\u{f867}") +#let fa-game-board-alt = fa-icon.with("\u{f868}") +#let fa-game-board-simple = fa-icon.with("\u{f868}") +#let fa-glass-citrus = fa-icon.with("\u{f869}") +#let fa-h4 = fa-icon.with("\u{f86a}") +#let fa-hat-chef = fa-icon.with("\u{f86b}") +#let fa-horizontal-rule = fa-icon.with("\u{f86c}") +#let fa-heart-music-camera-bolt = fa-icon.with("\u{f86d}") +#let fa-icons = fa-icon.with("\u{f86d}") +#let fa-icons-alt = fa-icon.with("\u{f86e}") +#let fa-symbols = fa-icon.with("\u{f86e}") +#let fa-kerning = fa-icon.with("\u{f86f}") +#let fa-line-columns = fa-icon.with("\u{f870}") +#let fa-line-height = fa-icon.with("\u{f871}") +#let fa-money-check-edit = fa-icon.with("\u{f872}") +#let fa-money-check-pen = fa-icon.with("\u{f872}") +#let fa-money-check-dollar-pen = fa-icon.with("\u{f873}") +#let fa-money-check-edit-alt = fa-icon.with("\u{f873}") +#let fa-mug = fa-icon.with("\u{f874}") +#let fa-mug-tea = fa-icon.with("\u{f875}") +#let fa-overline = fa-icon.with("\u{f876}") +#let fa-file-dashed-line = fa-icon.with("\u{f877}") +#let fa-page-break = fa-icon.with("\u{f877}") +#let fa-paragraph-left = fa-icon.with("\u{f878}") +#let fa-paragraph-rtl = fa-icon.with("\u{f878}") +#let fa-phone-alt = fa-icon.with("\u{f879}") +#let fa-phone-flip = fa-icon.with("\u{f879}") +#let fa-laptop-mobile = fa-icon.with("\u{f87a}") +#let fa-phone-laptop = fa-icon.with("\u{f87a}") +#let fa-phone-square-alt = fa-icon.with("\u{f87b}") +#let fa-square-phone-flip = fa-icon.with("\u{f87b}") +#let fa-photo-film = fa-icon.with("\u{f87c}") +#let fa-photo-video = fa-icon.with("\u{f87c}") +#let fa-remove-format = fa-icon.with("\u{f87d}") +#let fa-text-slash = fa-icon.with("\u{f87d}") +#let fa-send-back = fa-icon.with("\u{f87e}") +#let fa-send-backward = fa-icon.with("\u{f87f}") +#let fa-snooze = fa-icon.with("\u{f880}") +#let fa-zzz = fa-icon.with("\u{f880}") +#let fa-arrow-down-z-a = fa-icon.with("\u{f881}") +#let fa-sort-alpha-desc = fa-icon.with("\u{f881}") +#let fa-sort-alpha-down-alt = fa-icon.with("\u{f881}") +#let fa-arrow-up-z-a = fa-icon.with("\u{f882}") +#let fa-sort-alpha-up-alt = fa-icon.with("\u{f882}") +#let fa-arrow-down-arrow-up = fa-icon.with("\u{f883}") +#let fa-sort-alt = fa-icon.with("\u{f883}") +#let fa-arrow-down-short-wide = fa-icon.with("\u{f884}") +#let fa-sort-amount-desc = fa-icon.with("\u{f884}") +#let fa-sort-amount-down-alt = fa-icon.with("\u{f884}") +#let fa-arrow-up-short-wide = fa-icon.with("\u{f885}") +#let fa-sort-amount-up-alt = fa-icon.with("\u{f885}") +#let fa-arrow-down-9-1 = fa-icon.with("\u{f886}") +#let fa-sort-numeric-desc = fa-icon.with("\u{f886}") +#let fa-sort-numeric-down-alt = fa-icon.with("\u{f886}") +#let fa-arrow-up-9-1 = fa-icon.with("\u{f887}") +#let fa-sort-numeric-up-alt = fa-icon.with("\u{f887}") +#let fa-arrow-down-triangle-square = fa-icon.with("\u{f888}") +#let fa-sort-shapes-down = fa-icon.with("\u{f888}") +#let fa-arrow-down-square-triangle = fa-icon.with("\u{f889}") +#let fa-sort-shapes-down-alt = fa-icon.with("\u{f889}") +#let fa-arrow-up-triangle-square = fa-icon.with("\u{f88a}") +#let fa-sort-shapes-up = fa-icon.with("\u{f88a}") +#let fa-arrow-up-square-triangle = fa-icon.with("\u{f88b}") +#let fa-sort-shapes-up-alt = fa-icon.with("\u{f88b}") +#let fa-arrow-down-big-small = fa-icon.with("\u{f88c}") +#let fa-sort-size-down = fa-icon.with("\u{f88c}") +#let fa-arrow-down-small-big = fa-icon.with("\u{f88d}") +#let fa-sort-size-down-alt = fa-icon.with("\u{f88d}") +#let fa-arrow-up-big-small = fa-icon.with("\u{f88e}") +#let fa-sort-size-up = fa-icon.with("\u{f88e}") +#let fa-arrow-up-small-big = fa-icon.with("\u{f88f}") +#let fa-sort-size-up-alt = fa-icon.with("\u{f88f}") +#let fa-sparkles = fa-icon.with("\u{f890}") +#let fa-spell-check = fa-icon.with("\u{f891}") +#let fa-sunglasses = fa-icon.with("\u{f892}") +#let fa-text = fa-icon.with("\u{f893}") +#let fa-text-size = fa-icon.with("\u{f894}") +#let fa-trash-arrow-turn-left = fa-icon.with("\u{f895}") +#let fa-trash-undo = fa-icon.with("\u{f895}") +#let fa-trash-can-arrow-turn-left = fa-icon.with("\u{f896}") +#let fa-trash-can-undo = fa-icon.with("\u{f896}") +#let fa-trash-undo-alt = fa-icon.with("\u{f896}") +#let fa-voicemail = fa-icon.with("\u{f897}") +#let fa-washer = fa-icon.with("\u{f898}") +#let fa-washing-machine = fa-icon.with("\u{f898}") +#let fa-wave-sine = fa-icon.with("\u{f899}") +#let fa-wave-triangle = fa-icon.with("\u{f89a}") +#let fa-wind-turbine = fa-icon.with("\u{f89b}") +#let fa-border-center-h = fa-icon.with("\u{f89c}") +#let fa-border-center-v = fa-icon.with("\u{f89d}") +#let fa-cotton-bureau = fa-icon.with("\u{f89e}") +#let fa-album = fa-icon.with("\u{f89f}") +#let fa-album-collection = fa-icon.with("\u{f8a0}") +#let fa-amp-guitar = fa-icon.with("\u{f8a1}") +#let fa-badge-sheriff = fa-icon.with("\u{f8a2}") +#let fa-banjo = fa-icon.with("\u{f8a3}") +#let fa-betamax = fa-icon.with("\u{f8a4}") +#let fa-cassette-betamax = fa-icon.with("\u{f8a4}") +#let fa-boombox = fa-icon.with("\u{f8a5}") +#let fa-buy-n-large = fa-icon.with("\u{f8a6}") +#let fa-cactus = fa-icon.with("\u{f8a7}") +#let fa-camcorder = fa-icon.with("\u{f8a8}") +#let fa-video-handheld = fa-icon.with("\u{f8a8}") +#let fa-camera-movie = fa-icon.with("\u{f8a9}") +#let fa-camera-polaroid = fa-icon.with("\u{f8aa}") +#let fa-cassette-tape = fa-icon.with("\u{f8ab}") +#let fa-camera-cctv = fa-icon.with("\u{f8ac}") +#let fa-cctv = fa-icon.with("\u{f8ac}") +#let fa-clarinet = fa-icon.with("\u{f8ad}") +#let fa-cloud-music = fa-icon.with("\u{f8ae}") +#let fa-comment-alt-music = fa-icon.with("\u{f8af}") +#let fa-message-music = fa-icon.with("\u{f8af}") +#let fa-comment-music = fa-icon.with("\u{f8b0}") +#let fa-computer-classic = fa-icon.with("\u{f8b1}") +#let fa-computer-speaker = fa-icon.with("\u{f8b2}") +#let fa-cowbell = fa-icon.with("\u{f8b3}") +#let fa-cowbell-circle-plus = fa-icon.with("\u{f8b4}") +#let fa-cowbell-more = fa-icon.with("\u{f8b4}") +#let fa-disc-drive = fa-icon.with("\u{f8b5}") +#let fa-file-music = fa-icon.with("\u{f8b6}") +#let fa-film-canister = fa-icon.with("\u{f8b7}") +#let fa-film-cannister = fa-icon.with("\u{f8b7}") +#let fa-flashlight = fa-icon.with("\u{f8b8}") +#let fa-flute = fa-icon.with("\u{f8b9}") +#let fa-flux-capacitor = fa-icon.with("\u{f8ba}") +#let fa-game-console-handheld = fa-icon.with("\u{f8bb}") +#let fa-gramophone = fa-icon.with("\u{f8bd}") +#let fa-guitar-electric = fa-icon.with("\u{f8be}") +#let fa-guitars = fa-icon.with("\u{f8bf}") +#let fa-hat-cowboy = fa-icon.with("\u{f8c0}") +#let fa-hat-cowboy-side = fa-icon.with("\u{f8c1}") +#let fa-head-side-headphones = fa-icon.with("\u{f8c2}") +#let fa-horse-saddle = fa-icon.with("\u{f8c3}") +#let fa-image-polaroid = fa-icon.with("\u{f8c4}") +#let fa-joystick = fa-icon.with("\u{f8c5}") +#let fa-jug = fa-icon.with("\u{f8c6}") +#let fa-kazoo = fa-icon.with("\u{f8c7}") +#let fa-lasso = fa-icon.with("\u{f8c8}") +#let fa-list-music = fa-icon.with("\u{f8c9}") +#let fa-mdb = fa-icon.with("\u{f8ca}") +#let fa-microphone-stand = fa-icon.with("\u{f8cb}") +#let fa-computer-mouse = fa-icon.with("\u{f8cc}") +#let fa-mouse = fa-icon.with("\u{f8cc}") +#let fa-computer-mouse-scrollwheel = fa-icon.with("\u{f8cd}") +#let fa-mouse-alt = fa-icon.with("\u{f8cd}") +#let fa-mp3-player = fa-icon.with("\u{f8ce}") +#let fa-music-alt = fa-icon.with("\u{f8cf}") +#let fa-music-note = fa-icon.with("\u{f8cf}") +#let fa-music-alt-slash = fa-icon.with("\u{f8d0}") +#let fa-music-note-slash = fa-icon.with("\u{f8d0}") +#let fa-music-slash = fa-icon.with("\u{f8d1}") +#let fa-orcid = fa-icon.with("\u{f8d2}") +#let fa-phone-rotary = fa-icon.with("\u{f8d3}") +#let fa-piano = fa-icon.with("\u{f8d4}") +#let fa-piano-keyboard = fa-icon.with("\u{f8d5}") +#let fa-projector = fa-icon.with("\u{f8d6}") +#let fa-radio = fa-icon.with("\u{f8d7}") +#let fa-radio-alt = fa-icon.with("\u{f8d8}") +#let fa-radio-tuner = fa-icon.with("\u{f8d8}") +#let fa-record-vinyl = fa-icon.with("\u{f8d9}") +#let fa-router = fa-icon.with("\u{f8da}") +#let fa-sax-hot = fa-icon.with("\u{f8db}") +#let fa-saxophone-fire = fa-icon.with("\u{f8db}") +#let fa-saxophone = fa-icon.with("\u{f8dc}") +#let fa-signal-stream = fa-icon.with("\u{f8dd}") +#let fa-skull-cow = fa-icon.with("\u{f8de}") +#let fa-speaker = fa-icon.with("\u{f8df}") +#let fa-speakers = fa-icon.with("\u{f8e0}") +#let fa-swift = fa-icon.with("\u{f8e1}") +#let fa-triangle-instrument = fa-icon.with("\u{f8e2}") +#let fa-triangle-music = fa-icon.with("\u{f8e2}") +#let fa-trumpet = fa-icon.with("\u{f8e3}") +#let fa-turntable = fa-icon.with("\u{f8e4}") +#let fa-tv-music = fa-icon.with("\u{f8e6}") +#let fa-typewriter = fa-icon.with("\u{f8e7}") +#let fa-umbraco = fa-icon.with("\u{f8e8}") +#let fa-usb-drive = fa-icon.with("\u{f8e9}") +#let fa-user-cowboy = fa-icon.with("\u{f8ea}") +#let fa-user-music = fa-icon.with("\u{f8eb}") +#let fa-cassette-vhs = fa-icon.with("\u{f8ec}") +#let fa-vhs = fa-icon.with("\u{f8ec}") +#let fa-violin = fa-icon.with("\u{f8ed}") +#let fa-wagon-covered = fa-icon.with("\u{f8ee}") +#let fa-walkie-talkie = fa-icon.with("\u{f8ef}") +#let fa-watch-calculator = fa-icon.with("\u{f8f0}") +#let fa-waveform = fa-icon.with("\u{f8f1}") +#let fa-waveform-lines = fa-icon.with("\u{f8f2}") +#let fa-waveform-path = fa-icon.with("\u{f8f2}") +#let fa-scanner-image = fa-icon.with("\u{f8f3}") +#let fa-air-conditioner = fa-icon.with("\u{f8f4}") +#let fa-alien = fa-icon.with("\u{f8f5}") +#let fa-alien-8bit = fa-icon.with("\u{f8f6}") +#let fa-alien-monster = fa-icon.with("\u{f8f6}") +#let fa-bed-alt = fa-icon.with("\u{f8f7}") +#let fa-bed-front = fa-icon.with("\u{f8f7}") +#let fa-bed-bunk = fa-icon.with("\u{f8f8}") +#let fa-bed-empty = fa-icon.with("\u{f8f9}") +#let fa-bell-on = fa-icon.with("\u{f8fa}") +#let fa-blinds = fa-icon.with("\u{f8fb}") +#let fa-blinds-open = fa-icon.with("\u{f8fc}") +#let fa-blinds-raised = fa-icon.with("\u{f8fd}") +#let fa-camera-home = fa-icon.with("\u{f8fe}") +#let fa-camera-security = fa-icon.with("\u{f8fe}") +#let fa-caravan = fa-icon.with("\u{f8ff}") +#let fa-handshake-alt-slash-6 = fa-icon.with("\u{e05f}") +#let fa-handshake-simple-slash-6 = fa-icon.with("\u{e05f}") +#let fa-toilet-paper-blank-under-6 = fa-icon.with("\u{e29f}") +#let fa-toilet-paper-reverse-alt-6 = fa-icon.with("\u{e29f}") +#let fa-vector-circle-6 = fa-icon.with("\u{e2c6}") +#let fa-vector-polygon-6 = fa-icon.with("\u{e2c7}") +#let fa-grid-horizontal-6 = fa-icon.with("\u{e307}") +#let fa-hexagon-vertical-nft-slanted-6 = fa-icon.with("\u{e506}") +#let fa-film-alt-6 = fa-icon.with("\u{f3a0}") +#let fa-film-simple-6 = fa-icon.with("\u{f3a0}") +#let fa-user-alt-6 = fa-icon.with("\u{f406}") +#let fa-user-large-6 = fa-icon.with("\u{f406}") +#let fa-handshake-alt-6 = fa-icon.with("\u{f4c6}") +#let fa-handshake-simple-6 = fa-icon.with("\u{f4c6}") +#let fa-user-alt-slash-6 = fa-icon.with("\u{f4fa}") +#let fa-user-large-slash-6 = fa-icon.with("\u{f4fa}") +#let fa-headphones-alt-6 = fa-icon.with("\u{f58f}") +#let fa-headphones-simple-6 = fa-icon.with("\u{f58f}") +#let fa-vector-square-6 = fa-icon.with("\u{f5cb}") +#let fa-toilet-paper-alt-6 = fa-icon.with("\u{f71f}") +#let fa-toilet-paper-blank-6 = fa-icon.with("\u{f71f}") +#let fa-handshake-alt-slash-7 = fa-icon.with("\u{e060}") +#let fa-handshake-alt-slash = fa-icon.with("\u{e060}") +#let fa-handshake-simple-slash-7 = fa-icon.with("\u{e060}") +#let fa-handshake-simple-slash = fa-icon.with("\u{e060}") +#let fa-toilet-paper-blank-under-7 = fa-icon.with("\u{e2a0}") +#let fa-toilet-paper-blank-under = fa-icon.with("\u{e2a0}") +#let fa-toilet-paper-reverse-alt-7 = fa-icon.with("\u{e2a0}") +#let fa-toilet-paper-reverse-alt = fa-icon.with("\u{e2a0}") +#let fa-hexagon-vertical-nft-slanted-7 = fa-icon.with("\u{e505}") +#let fa-hexagon-vertical-nft-slanted = fa-icon.with("\u{e505}") +#let fa-user-alt-7 = fa-icon.with("\u{f007}") +#let fa-user-alt = fa-icon.with("\u{f007}") +#let fa-user-large-7 = fa-icon.with("\u{f007}") +#let fa-user-large = fa-icon.with("\u{f007}") +#let fa-film-alt-7 = fa-icon.with("\u{f008}") +#let fa-film-alt = fa-icon.with("\u{f008}") +#let fa-film-simple-7 = fa-icon.with("\u{f008}") +#let fa-film-simple = fa-icon.with("\u{f008}") +#let fa-headphones-alt-7 = fa-icon.with("\u{f025}") +#let fa-headphones-alt = fa-icon.with("\u{f025}") +#let fa-headphones-simple-7 = fa-icon.with("\u{f025}") +#let fa-headphones-simple = fa-icon.with("\u{f025}") +#let fa-handshake-alt-7 = fa-icon.with("\u{f2b5}") +#let fa-handshake-alt = fa-icon.with("\u{f2b5}") +#let fa-handshake-simple-7 = fa-icon.with("\u{f2b5}") +#let fa-handshake-simple = fa-icon.with("\u{f2b5}") +#let fa-user-alt-slash-7 = fa-icon.with("\u{f506}") +#let fa-user-alt-slash = fa-icon.with("\u{f506}") +#let fa-user-large-slash-7 = fa-icon.with("\u{f506}") +#let fa-user-large-slash = fa-icon.with("\u{f506}") +#let fa-grid-horizontal-7 = fa-icon.with("\u{f58d}") +#let fa-grid-horizontal = fa-icon.with("\u{f58d}") +#let fa-vector-circle-7 = fa-icon.with("\u{f5ed}") +#let fa-vector-circle = fa-icon.with("\u{f5ed}") +#let fa-vector-polygon-7 = fa-icon.with("\u{f5ee}") +#let fa-vector-polygon = fa-icon.with("\u{f5ee}") +#let fa-vector-square-7 = fa-icon.with("\u{f5ef}") +#let fa-vector-square = fa-icon.with("\u{f5ef}") +#let fa-toilet-paper-alt-7 = fa-icon.with("\u{f71e}") +#let fa-toilet-paper-alt = fa-icon.with("\u{f71e}") +#let fa-toilet-paper-blank-7 = fa-icon.with("\u{f71e}") +#let fa-toilet-paper-blank = fa-icon.with("\u{f71e}") diff --git a/packages/preview/fontawesome/0.6.2/lib-gen-map.typ b/packages/preview/fontawesome/0.6.2/lib-gen-map.typ new file mode 100644 index 0000000000..45a813b25c --- /dev/null +++ b/packages/preview/fontawesome/0.6.2/lib-gen-map.typ @@ -0,0 +1,5441 @@ +// Generated icon maps of Font Awesome + +// Common icons +#let fa-icon-map-common = ( + "exclamation": "\u{21}", + "ditto": "\u{22}", + "hashtag": "\u{23}", + "dollar": "\u{24}", + "dollar-sign": "\u{24}", + "usd": "\u{24}", + "percent": "\u{25}", + "percentage": "\u{25}", + "ampersand": "\u{26}", + "apostrophe": "\u{27}", + "bracket-round": "\u{28}", + "parenthesis": "\u{28}", + "bracket-round-right": "\u{29}", + "asterisk": "\u{2a}", + "add": "\u{2b}", + "plus": "\u{2b}", + "comma": "\u{2c}", + "hyphen": "\u{2d}", + "period": "\u{2e}", + "slash-forward": "\u{2f}", + "0": "\u{30}", + "1": "\u{31}", + "2": "\u{32}", + "3": "\u{33}", + "4": "\u{34}", + "5": "\u{35}", + "6": "\u{36}", + "7": "\u{37}", + "8": "\u{38}", + "9": "\u{39}", + "colon": "\u{3a}", + "semicolon": "\u{3b}", + "less-than": "\u{3c}", + "equals": "\u{3d}", + "greater-than": "\u{3e}", + "question": "\u{3f}", + "at": "\u{40}", + "a": "\u{41}", + "b": "\u{42}", + "c": "\u{43}", + "d": "\u{44}", + "e": "\u{45}", + "f": "\u{46}", + "g": "\u{47}", + "h": "\u{48}", + "i": "\u{49}", + "j": "\u{4a}", + "k": "\u{4b}", + "l": "\u{4c}", + "m": "\u{4d}", + "n": "\u{4e}", + "o": "\u{4f}", + "p": "\u{50}", + "q": "\u{51}", + "r": "\u{52}", + "s": "\u{53}", + "t": "\u{54}", + "u": "\u{55}", + "v": "\u{56}", + "w": "\u{57}", + "x": "\u{58}", + "y": "\u{59}", + "z": "\u{5a}", + "bracket": "\u{5b}", + "bracket-left": "\u{5b}", + "bracket-square": "\u{5b}", + "slash-back": "\u{5c}", + "bracket-square-right": "\u{5d}", + "accent-grave": "\u{60}", + "bracket-curly": "\u{7b}", + "bracket-curly-left": "\u{7b}", + "pipe": "\u{7c}", + "bracket-curly-right": "\u{7d}", + "tilde": "\u{7e}", + "caravan-alt": "\u{e000}", + "caravan-simple": "\u{e000}", + "cat-space": "\u{e001}", + "coffee-pot": "\u{e002}", + "comet": "\u{e003}", + "fan-table": "\u{e004}", + "faucet": "\u{e005}", + "faucet-drip": "\u{e006}", + "firefox-browser": "\u{e007}", + "galaxy": "\u{e008}", + "garage": "\u{e009}", + "garage-car": "\u{e00a}", + "garage-open": "\u{e00b}", + "heat": "\u{e00c}", + "house-chimney-window": "\u{e00d}", + "house-day": "\u{e00e}", + "house-leave": "\u{e00f}", + "house-person-depart": "\u{e00f}", + "house-person-leave": "\u{e00f}", + "house-night": "\u{e010}", + "house-person-arrive": "\u{e011}", + "house-person-return": "\u{e011}", + "house-return": "\u{e011}", + "house-signal": "\u{e012}", + "ideal": "\u{e013}", + "lamp-desk": "\u{e014}", + "lamp-floor": "\u{e015}", + "light-ceiling": "\u{e016}", + "light-switch": "\u{e017}", + "light-switch-off": "\u{e018}", + "light-switch-on": "\u{e019}", + "microblog": "\u{e01a}", + "microwave": "\u{e01b}", + "outlet": "\u{e01c}", + "oven": "\u{e01d}", + "pied-piper-square": "\u{e01e}", + "square-pied-piper": "\u{e01e}", + "planet-moon": "\u{e01f}", + "planet-ringed": "\u{e020}", + "police-box": "\u{e021}", + "person-to-portal": "\u{e022}", + "portal-enter": "\u{e022}", + "person-from-portal": "\u{e023}", + "portal-exit": "\u{e023}", + "radar": "\u{e024}", + "raygun": "\u{e025}", + "refrigerator": "\u{e026}", + "rocket-launch": "\u{e027}", + "sensor": "\u{e028}", + "sensor-alert": "\u{e029}", + "sensor-triangle-exclamation": "\u{e029}", + "sensor-fire": "\u{e02a}", + "sensor-on": "\u{e02b}", + "sensor-cloud": "\u{e02c}", + "sensor-smoke": "\u{e02c}", + "siren": "\u{e02d}", + "siren-on": "\u{e02e}", + "solar-system": "\u{e02f}", + "circle-sort": "\u{e030}", + "sort-circle": "\u{e030}", + "circle-sort-down": "\u{e031}", + "sort-circle-down": "\u{e031}", + "circle-sort-up": "\u{e032}", + "sort-circle-up": "\u{e032}", + "space-station-moon": "\u{e033}", + "space-station-moon-alt": "\u{e034}", + "space-station-moon-construction": "\u{e034}", + "sprinkler": "\u{e035}", + "star-shooting": "\u{e036}", + "starfighter": "\u{e037}", + "starfighter-alt": "\u{e038}", + "starfighter-twin-ion-engine": "\u{e038}", + "starship": "\u{e039}", + "starship-freighter": "\u{e03a}", + "sword-laser": "\u{e03b}", + "sword-laser-alt": "\u{e03c}", + "swords-laser": "\u{e03d}", + "telescope": "\u{e03e}", + "temperature-arrow-down": "\u{e03f}", + "temperature-down": "\u{e03f}", + "temperature-arrow-up": "\u{e040}", + "temperature-up": "\u{e040}", + "trailer": "\u{e041}", + "transporter": "\u{e042}", + "transporter-1": "\u{e043}", + "transporter-2": "\u{e044}", + "transporter-3": "\u{e045}", + "transporter-empty": "\u{e046}", + "ufo": "\u{e047}", + "ufo-beam": "\u{e048}", + "unity": "\u{e049}", + "user-alien": "\u{e04a}", + "user-robot": "\u{e04b}", + "user-visor": "\u{e04c}", + "vacuum": "\u{e04d}", + "vacuum-robot": "\u{e04e}", + "window-frame": "\u{e04f}", + "window-frame-open": "\u{e050}", + "coffin-cross": "\u{e051}", + "dailymotion": "\u{e052}", + "folder-arrow-down": "\u{e053}", + "folder-download": "\u{e053}", + "folder-arrow-up": "\u{e054}", + "folder-upload": "\u{e054}", + "instagram-square": "\u{e055}", + "square-instagram": "\u{e055}", + "mixer": "\u{e056}", + "shopify": "\u{e057}", + "user-unlock": "\u{e058}", + "bacteria": "\u{e059}", + "bacterium": "\u{e05a}", + "box-tissue": "\u{e05b}", + "hand-holding-medical": "\u{e05c}", + "hand-sparkles": "\u{e05d}", + "hands-bubbles": "\u{e05e}", + "hands-wash": "\u{e05e}", + "handshake-slash": "\u{e060}", + "head-side-cough": "\u{e061}", + "head-side-cough-slash": "\u{e062}", + "head-side-mask": "\u{e063}", + "head-side-virus": "\u{e064}", + "house-chimney-user": "\u{e065}", + "house-laptop": "\u{e066}", + "laptop-house": "\u{e066}", + "lungs-virus": "\u{e067}", + "people-arrows": "\u{e068}", + "people-arrows-left-right": "\u{e068}", + "plane-slash": "\u{e069}", + "pump-medical": "\u{e06a}", + "pump-soap": "\u{e06b}", + "shield-virus": "\u{e06c}", + "sink": "\u{e06d}", + "soap": "\u{e06e}", + "stopwatch-20": "\u{e06f}", + "shop-slash": "\u{e070}", + "store-alt-slash": "\u{e070}", + "store-slash": "\u{e071}", + "toilet-paper-slash": "\u{e072}", + "users-slash": "\u{e073}", + "virus": "\u{e074}", + "virus-slash": "\u{e075}", + "viruses": "\u{e076}", + "deezer": "\u{e077}", + "edge-legacy": "\u{e078}", + "google-pay": "\u{e079}", + "rust": "\u{e07a}", + "tiktok": "\u{e07b}", + "unsplash": "\u{e07c}", + "cloudflare": "\u{e07d}", + "guilded": "\u{e07e}", + "hive": "\u{e07f}", + "42-group": "\u{e080}", + "innosoft": "\u{e080}", + "instalod": "\u{e081}", + "octopus-deploy": "\u{e082}", + "perbyte": "\u{e083}", + "uncharted": "\u{e084}", + "vest": "\u{e085}", + "vest-patches": "\u{e086}", + "watchman-monitoring": "\u{e087}", + "wodu": "\u{e088}", + "airplay": "\u{e089}", + "alt": "\u{e08a}", + "angle": "\u{e08c}", + "angle-90": "\u{e08d}", + "apple-core": "\u{e08f}", + "arrow-down-from-dotted-line": "\u{e090}", + "arrow-down-left": "\u{e091}", + "arrow-down-left-and-arrow-up-right-to-center": "\u{e092}", + "arrow-down-right": "\u{e093}", + "arrow-down-to-bracket": "\u{e094}", + "arrow-down-to-dotted-line": "\u{e095}", + "arrow-down-to-square": "\u{e096}", + "arrow-trend-down": "\u{e097}", + "arrow-trend-up": "\u{e098}", + "arrow-up-arrow-down": "\u{e099}", + "sort-up-down": "\u{e099}", + "arrow-up-from-bracket": "\u{e09a}", + "arrow-up-from-dotted-line": "\u{e09b}", + "arrow-up-from-square": "\u{e09c}", + "arrow-up-left": "\u{e09d}", + "arrow-up-left-from-circle": "\u{e09e}", + "arrow-up-right": "\u{e09f}", + "arrow-up-right-and-arrow-down-left-from-center": "\u{e0a0}", + "arrow-up-to-dotted-line": "\u{e0a1}", + "arrows-cross": "\u{e0a2}", + "arrows-from-dotted-line": "\u{e0a3}", + "arrows-from-line": "\u{e0a4}", + "arrows-minimize": "\u{e0a5}", + "compress-arrows": "\u{e0a5}", + "arrows-to-dotted-line": "\u{e0a6}", + "arrows-to-line": "\u{e0a7}", + "audio-description-slash": "\u{e0a8}", + "austral-sign": "\u{e0a9}", + "avocado": "\u{e0aa}", + "award-simple": "\u{e0ab}", + "baht-sign": "\u{e0ac}", + "bars-filter": "\u{e0ad}", + "bars-sort": "\u{e0ae}", + "basket-shopping-simple": "\u{e0af}", + "shopping-basket-alt": "\u{e0af}", + "battery-exclamation": "\u{e0b0}", + "battery-1": "\u{e0b1}", + "battery-low": "\u{e0b1}", + "bee": "\u{e0b2}", + "beer-foam": "\u{e0b3}", + "beer-mug": "\u{e0b3}", + "bitcoin-sign": "\u{e0b4}", + "block-quote": "\u{e0b5}", + "bolt-auto": "\u{e0b6}", + "bolt-lightning": "\u{e0b7}", + "bolt-slash": "\u{e0b8}", + "book-arrow-right": "\u{e0b9}", + "book-arrow-up": "\u{e0ba}", + "book-bookmark": "\u{e0bb}", + "book-circle-arrow-right": "\u{e0bc}", + "book-circle-arrow-up": "\u{e0bd}", + "book-copy": "\u{e0be}", + "book-font": "\u{e0bf}", + "book-open-alt": "\u{e0c0}", + "book-open-cover": "\u{e0c0}", + "book-law": "\u{e0c1}", + "book-section": "\u{e0c1}", + "bookmark-slash": "\u{e0c2}", + "bowling-ball-pin": "\u{e0c3}", + "box-circle-check": "\u{e0c4}", + "brackets-round": "\u{e0c5}", + "parentheses": "\u{e0c5}", + "brain-circuit": "\u{e0c6}", + "brake-warning": "\u{e0c7}", + "briefcase-blank": "\u{e0c8}", + "brightness": "\u{e0c9}", + "brightness-low": "\u{e0ca}", + "browsers": "\u{e0cb}", + "buildings": "\u{e0cc}", + "burger-fries": "\u{e0cd}", + "burger-glass": "\u{e0ce}", + "calendar-arrow-down": "\u{e0d0}", + "calendar-download": "\u{e0d0}", + "calendar-arrow-up": "\u{e0d1}", + "calendar-upload": "\u{e0d1}", + "calendar-clock": "\u{e0d2}", + "calendar-time": "\u{e0d2}", + "calendar-heart": "\u{e0d3}", + "calendar-image": "\u{e0d4}", + "calendar-lines": "\u{e0d5}", + "calendar-note": "\u{e0d5}", + "calendar-range": "\u{e0d6}", + "calendars": "\u{e0d7}", + "camera-rotate": "\u{e0d8}", + "camera-slash": "\u{e0d9}", + "camera-viewfinder": "\u{e0da}", + "screenshot": "\u{e0da}", + "cart-minus": "\u{e0db}", + "cart-shopping-fast": "\u{e0dc}", + "cart-xmark": "\u{e0dd}", + "castle": "\u{e0de}", + "cedi-sign": "\u{e0df}", + "chart-bullet": "\u{e0e1}", + "chart-candlestick": "\u{e0e2}", + "chart-column": "\u{e0e3}", + "chart-gantt": "\u{e0e4}", + "chart-line-up": "\u{e0e5}", + "chart-pyramid": "\u{e0e6}", + "chart-radar": "\u{e0e7}", + "chart-scatter-3d": "\u{e0e8}", + "chart-scatter-bubble": "\u{e0e9}", + "chart-tree-map": "\u{e0ea}", + "chart-waterfall": "\u{e0eb}", + "cherries": "\u{e0ec}", + "circle-0": "\u{e0ed}", + "circle-1": "\u{e0ee}", + "circle-2": "\u{e0ef}", + "circle-3": "\u{e0f0}", + "circle-4": "\u{e0f1}", + "circle-5": "\u{e0f2}", + "circle-6": "\u{e0f3}", + "circle-7": "\u{e0f4}", + "circle-8": "\u{e0f5}", + "circle-9": "\u{e0f6}", + "circle-a": "\u{e0f7}", + "circle-ampersand": "\u{e0f8}", + "circle-arrow-down-left": "\u{e0f9}", + "circle-arrow-down-right": "\u{e0fa}", + "circle-arrow-up-left": "\u{e0fb}", + "circle-arrow-up-right": "\u{e0fc}", + "circle-b": "\u{e0fd}", + "circle-bolt": "\u{e0fe}", + "book-circle": "\u{e0ff}", + "circle-book-open": "\u{e0ff}", + "bookmark-circle": "\u{e100}", + "circle-bookmark": "\u{e100}", + "circle-c": "\u{e101}", + "calendar-circle": "\u{e102}", + "circle-calendar": "\u{e102}", + "camera-circle": "\u{e103}", + "circle-camera": "\u{e103}", + "circle-d": "\u{e104}", + "circle-dashed": "\u{e105}", + "circle-divide": "\u{e106}", + "circle-down-left": "\u{e107}", + "circle-down-right": "\u{e108}", + "circle-e": "\u{e109}", + "circle-ellipsis": "\u{e10a}", + "circle-ellipsis-vertical": "\u{e10b}", + "circle-envelope": "\u{e10c}", + "envelope-circle": "\u{e10c}", + "circle-exclamation-check": "\u{e10d}", + "circle-f": "\u{e10e}", + "circle-g": "\u{e10f}", + "circle-half": "\u{e110}", + "circle-i": "\u{e111}", + "circle-j": "\u{e112}", + "circle-k": "\u{e113}", + "circle-l": "\u{e114}", + "circle-m": "\u{e115}", + "circle-microphone": "\u{e116}", + "microphone-circle": "\u{e116}", + "circle-microphone-lines": "\u{e117}", + "microphone-circle-alt": "\u{e117}", + "circle-n": "\u{e118}", + "circle-o": "\u{e119}", + "circle-p": "\u{e11a}", + "circle-phone": "\u{e11b}", + "phone-circle": "\u{e11b}", + "circle-phone-flip": "\u{e11c}", + "phone-circle-alt": "\u{e11c}", + "circle-phone-hangup": "\u{e11d}", + "phone-circle-down": "\u{e11d}", + "circle-q": "\u{e11e}", + "circle-quarter": "\u{e11f}", + "circle-r": "\u{e120}", + "circle-s": "\u{e121}", + "circle-small": "\u{e122}", + "circle-star": "\u{e123}", + "star-circle": "\u{e123}", + "circle-t": "\u{e124}", + "circle-three-quarters": "\u{e125}", + "circle-trash": "\u{e126}", + "trash-circle": "\u{e126}", + "circle-u": "\u{e127}", + "circle-up-left": "\u{e128}", + "circle-up-right": "\u{e129}", + "circle-v": "\u{e12a}", + "circle-video": "\u{e12b}", + "video-circle": "\u{e12b}", + "circle-w": "\u{e12c}", + "circle-waveform-lines": "\u{e12d}", + "waveform-circle": "\u{e12d}", + "circle-x": "\u{e12e}", + "circle-y": "\u{e12f}", + "circle-z": "\u{e130}", + "clapperboard": "\u{e131}", + "clapperboard-play": "\u{e132}", + "clipboard-medical": "\u{e133}", + "clock-desk": "\u{e134}", + "closed-captioning-slash": "\u{e135}", + "clothes-hanger": "\u{e136}", + "cloud-slash": "\u{e137}", + "cloud-word": "\u{e138}", + "clover": "\u{e139}", + "code-compare": "\u{e13a}", + "code-fork": "\u{e13b}", + "code-pull-request": "\u{e13c}", + "code-simple": "\u{e13d}", + "coffee-bean": "\u{e13e}", + "coffee-beans": "\u{e13f}", + "colon-sign": "\u{e140}", + "command": "\u{e142}", + "comment-arrow-down": "\u{e143}", + "comment-arrow-up": "\u{e144}", + "comment-arrow-up-right": "\u{e145}", + "comment-captions": "\u{e146}", + "comment-code": "\u{e147}", + "comment-image": "\u{e148}", + "comment-middle": "\u{e149}", + "comment-middle-top": "\u{e14a}", + "comment-question": "\u{e14b}", + "comment-quote": "\u{e14c}", + "comment-text": "\u{e14d}", + "comments-question": "\u{e14e}", + "comments-question-check": "\u{e14f}", + "conveyor-belt-empty": "\u{e150}", + "crate-empty": "\u{e151}", + "cruzeiro-sign": "\u{e152}", + "delete-right": "\u{e154}", + "desktop-arrow-down": "\u{e155}", + "diagram-lean-canvas": "\u{e156}", + "diagram-nested": "\u{e157}", + "diagram-sankey": "\u{e158}", + "diagram-venn": "\u{e15a}", + "dial": "\u{e15b}", + "dial-med-high": "\u{e15b}", + "dial-high": "\u{e15c}", + "dial-low": "\u{e15d}", + "dial-max": "\u{e15e}", + "dial-med": "\u{e15f}", + "dial-med-low": "\u{e160}", + "dial-min": "\u{e161}", + "dial-off": "\u{e162}", + "display": "\u{e163}", + "display-arrow-down": "\u{e164}", + "desktop-code": "\u{e165}", + "display-code": "\u{e165}", + "desktop-medical": "\u{e166}", + "display-medical": "\u{e166}", + "dolphin": "\u{e168}", + "dong-sign": "\u{e169}", + "down-left": "\u{e16a}", + "down-right": "\u{e16b}", + "eggplant": "\u{e16c}", + "elevator": "\u{e16d}", + "engine": "\u{e16e}", + "envelope-badge": "\u{e16f}", + "envelope-dot": "\u{e16f}", + "envelopes": "\u{e170}", + "escalator": "\u{e171}", + "eye-dropper-full": "\u{e172}", + "eye-dropper-half": "\u{e173}", + "ferris-wheel": "\u{e174}", + "file-binary": "\u{e175}", + "file-heart": "\u{e176}", + "file-plus-minus": "\u{e177}", + "files": "\u{e178}", + "film-slash": "\u{e179}", + "films": "\u{e17a}", + "filter-circle-xmark": "\u{e17b}", + "filter-list": "\u{e17c}", + "filter-slash": "\u{e17d}", + "filters": "\u{e17e}", + "fire-hydrant": "\u{e17f}", + "floppy-disk-circle-arrow-right": "\u{e180}", + "save-circle-arrow-right": "\u{e180}", + "floppy-disk-circle-xmark": "\u{e181}", + "floppy-disk-times": "\u{e181}", + "save-circle-xmark": "\u{e181}", + "save-times": "\u{e181}", + "floppy-disk-pen": "\u{e182}", + "floppy-disks": "\u{e183}", + "florin-sign": "\u{e184}", + "folder-closed": "\u{e185}", + "folder-bookmark": "\u{e186}", + "folder-cog": "\u{e187}", + "folder-gear": "\u{e187}", + "folder-grid": "\u{e188}", + "folder-heart": "\u{e189}", + "folder-image": "\u{e18a}", + "folder-magnifying-glass": "\u{e18b}", + "folder-search": "\u{e18b}", + "folder-medical": "\u{e18c}", + "folder-music": "\u{e18d}", + "folder-user": "\u{e18e}", + "franc-sign": "\u{e18f}", + "gif": "\u{e190}", + "glass-empty": "\u{e191}", + "glass-half": "\u{e192}", + "glass-half-empty": "\u{e192}", + "glass-half-full": "\u{e192}", + "grate": "\u{e193}", + "grate-droplet": "\u{e194}", + "grid": "\u{e195}", + "grid-3": "\u{e195}", + "grid-2": "\u{e196}", + "grid-2-plus": "\u{e197}", + "grid-4": "\u{e198}", + "grid-5": "\u{e199}", + "guarani-sign": "\u{e19a}", + "gun": "\u{e19b}", + "gun-slash": "\u{e19c}", + "gun-squirt": "\u{e19d}", + "hand-back-point-down": "\u{e19e}", + "hand-back-point-left": "\u{e19f}", + "hand-back-point-ribbon": "\u{e1a0}", + "hand-back-point-right": "\u{e1a1}", + "hand-back-point-up": "\u{e1a2}", + "hand-fingers-crossed": "\u{e1a3}", + "hand-holding-skull": "\u{e1a4}", + "hand-love": "\u{e1a5}", + "hand-point-ribbon": "\u{e1a6}", + "hand-wave": "\u{e1a7}", + "hands-clapping": "\u{e1a8}", + "hand-horns": "\u{e1a9}", + "head-side-heart": "\u{e1aa}", + "heart-half": "\u{e1ab}", + "heart-half-alt": "\u{e1ac}", + "heart-half-stroke": "\u{e1ac}", + "hexagon-divide": "\u{e1ad}", + "high-definition": "\u{e1ae}", + "rectangle-hd": "\u{e1ae}", + "highlighter-line": "\u{e1af}", + "home-user": "\u{e1b0}", + "house-user": "\u{e1b0}", + "house-building": "\u{e1b1}", + "house-chimney-heart": "\u{e1b2}", + "house-tree": "\u{e1b3}", + "house-turret": "\u{e1b4}", + "image-landscape": "\u{e1b5}", + "landscape": "\u{e1b5}", + "image-polaroid-user": "\u{e1b6}", + "image-slash": "\u{e1b7}", + "image-user": "\u{e1b8}", + "images-user": "\u{e1b9}", + "inbox-full": "\u{e1ba}", + "inboxes": "\u{e1bb}", + "indian-rupee": "\u{e1bc}", + "indian-rupee-sign": "\u{e1bc}", + "inr": "\u{e1bc}", + "input-numeric": "\u{e1bd}", + "input-pipe": "\u{e1be}", + "input-text": "\u{e1bf}", + "keyboard-brightness": "\u{e1c0}", + "keyboard-brightness-low": "\u{e1c1}", + "keyboard-down": "\u{e1c2}", + "keyboard-left": "\u{e1c3}", + "kip-sign": "\u{e1c4}", + "lamp-street": "\u{e1c5}", + "laptop-arrow-down": "\u{e1c6}", + "laptop-slash": "\u{e1c7}", + "lari-sign": "\u{e1c8}", + "lasso-sparkles": "\u{e1c9}", + "lightbulb-exclamation-on": "\u{e1ca}", + "chain-horizontal": "\u{e1cb}", + "link-horizontal": "\u{e1cb}", + "chain-horizontal-slash": "\u{e1cc}", + "link-horizontal-slash": "\u{e1cc}", + "link-simple": "\u{e1cd}", + "link-simple-slash": "\u{e1ce}", + "list-dropdown": "\u{e1cf}", + "list-radio": "\u{e1d0}", + "list-timeline": "\u{e1d1}", + "list-tree": "\u{e1d2}", + "litecoin-sign": "\u{e1d3}", + "loader": "\u{e1d4}", + "manat-sign": "\u{e1d5}", + "manhole": "\u{e1d6}", + "mask-face": "\u{e1d7}", + "memo": "\u{e1d8}", + "memo-circle-check": "\u{e1d9}", + "memo-pad": "\u{e1da}", + "comment-alt-arrow-down": "\u{e1db}", + "message-arrow-down": "\u{e1db}", + "comment-alt-arrow-up": "\u{e1dc}", + "message-arrow-up": "\u{e1dc}", + "message-arrow-up-right": "\u{e1dd}", + "comment-alt-captions": "\u{e1de}", + "message-captions": "\u{e1de}", + "message-code": "\u{e1df}", + "comment-alt-image": "\u{e1e0}", + "message-image": "\u{e1e0}", + "comment-middle-alt": "\u{e1e1}", + "message-middle": "\u{e1e1}", + "comment-middle-top-alt": "\u{e1e2}", + "message-middle-top": "\u{e1e2}", + "message-question": "\u{e1e3}", + "comment-alt-quote": "\u{e1e4}", + "message-quote": "\u{e1e4}", + "message-sms": "\u{e1e5}", + "comment-alt-text": "\u{e1e6}", + "message-text": "\u{e1e6}", + "messages-question": "\u{e1e7}", + "meter": "\u{e1e8}", + "meter-bolt": "\u{e1e9}", + "meter-droplet": "\u{e1ea}", + "meter-fire": "\u{e1eb}", + "microchip-ai": "\u{e1ec}", + "mill-sign": "\u{e1ed}", + "mobile-iphone": "\u{e1ee}", + "mobile-notch": "\u{e1ee}", + "mobile-signal": "\u{e1ef}", + "mobile-signal-out": "\u{e1f0}", + "money-bill-simple": "\u{e1f1}", + "money-bill-simple-wave": "\u{e1f2}", + "money-bills": "\u{e1f3}", + "money-bills-alt": "\u{e1f4}", + "money-bills-simple": "\u{e1f4}", + "mug-tea-saucer": "\u{e1f5}", + "naira-sign": "\u{e1f6}", + "nfc": "\u{e1f7}", + "nfc-lock": "\u{e1f8}", + "nfc-magnifying-glass": "\u{e1f9}", + "nfc-pen": "\u{e1fa}", + "nfc-signal": "\u{e1fb}", + "nfc-slash": "\u{e1fc}", + "nfc-trash": "\u{e1fd}", + "notdef": "\u{e1fe}", + "note": "\u{e1ff}", + "note-medical": "\u{e200}", + "notebook": "\u{e201}", + "notes": "\u{e202}", + "octagon-divide": "\u{e203}", + "octagon-exclamation": "\u{e204}", + "oil-can-drip": "\u{e205}", + "paintbrush-pencil": "\u{e206}", + "pallet-box": "\u{e208}", + "panorama": "\u{e209}", + "paper-plane-alt": "\u{e20a}", + "paper-plane-top": "\u{e20a}", + "send": "\u{e20a}", + "peach": "\u{e20b}", + "pear": "\u{e20c}", + "pedestal": "\u{e20d}", + "pen-circle": "\u{e20e}", + "pen-alt-slash": "\u{e20f}", + "pen-clip-slash": "\u{e20f}", + "pen-fancy-slash": "\u{e210}", + "pen-field": "\u{e211}", + "pen-line": "\u{e212}", + "pen-slash": "\u{e213}", + "pen-swirl": "\u{e214}", + "pencil-slash": "\u{e215}", + "people": "\u{e216}", + "people-dress": "\u{e217}", + "people-dress-simple": "\u{e218}", + "people-pants": "\u{e219}", + "people-pants-simple": "\u{e21a}", + "people-simple": "\u{e21b}", + "person-dress-simple": "\u{e21c}", + "person-pinball": "\u{e21d}", + "person-seat": "\u{e21e}", + "person-seat-reclined": "\u{e21f}", + "person-simple": "\u{e220}", + "peseta-sign": "\u{e221}", + "peso-sign": "\u{e222}", + "phone-arrow-down": "\u{e223}", + "phone-arrow-down-left": "\u{e223}", + "phone-incoming": "\u{e223}", + "phone-arrow-up": "\u{e224}", + "phone-arrow-up-right": "\u{e224}", + "phone-outgoing": "\u{e224}", + "phone-hangup": "\u{e225}", + "phone-missed": "\u{e226}", + "phone-xmark": "\u{e227}", + "photo-film-music": "\u{e228}", + "pinball": "\u{e229}", + "plane-prop": "\u{e22b}", + "plane-tail": "\u{e22c}", + "plane-up": "\u{e22d}", + "plane-up-slash": "\u{e22e}", + "play-pause": "\u{e22f}", + "puzzle-piece-alt": "\u{e231}", + "puzzle-piece-simple": "\u{e231}", + "quotes": "\u{e234}", + "pro": "\u{e235}", + "rectangle-pro": "\u{e235}", + "rectangle-terminal": "\u{e236}", + "rectangle-vertical-history": "\u{e237}", + "reel": "\u{e238}", + "reply-clock": "\u{e239}", + "reply-time": "\u{e239}", + "restroom-simple": "\u{e23a}", + "rhombus": "\u{e23b}", + "rotate-exclamation": "\u{e23c}", + "rupiah-sign": "\u{e23d}", + "screencast": "\u{e23e}", + "scribble": "\u{e23f}", + "sd-cards": "\u{e240}", + "seal": "\u{e241}", + "seal-exclamation": "\u{e242}", + "seal-question": "\u{e243}", + "seat-airline": "\u{e244}", + "shelves-empty": "\u{e246}", + "shield-exclamation": "\u{e247}", + "shield-keyhole": "\u{e248}", + "shield-minus": "\u{e249}", + "shield-plus": "\u{e24a}", + "shield-slash": "\u{e24b}", + "shield-times": "\u{e24c}", + "shield-xmark": "\u{e24c}", + "shower-alt": "\u{e24d}", + "shower-down": "\u{e24d}", + "sidebar": "\u{e24e}", + "sidebar-flip": "\u{e24f}", + "signal-stream-slash": "\u{e250}", + "sim-cards": "\u{e251}", + "slider": "\u{e252}", + "sliders-simple": "\u{e253}", + "split": "\u{e254}", + "square-0": "\u{e255}", + "square-1": "\u{e256}", + "square-2": "\u{e257}", + "square-3": "\u{e258}", + "square-4": "\u{e259}", + "square-5": "\u{e25a}", + "square-6": "\u{e25b}", + "square-7": "\u{e25c}", + "square-8": "\u{e25d}", + "square-9": "\u{e25e}", + "square-a": "\u{e25f}", + "square-ampersand": "\u{e260}", + "square-arrow-down-left": "\u{e261}", + "square-arrow-down-right": "\u{e262}", + "square-arrow-up-left": "\u{e263}", + "square-b": "\u{e264}", + "square-bolt": "\u{e265}", + "square-c": "\u{e266}", + "square-code": "\u{e267}", + "square-d": "\u{e268}", + "square-dashed": "\u{e269}", + "square-divide": "\u{e26a}", + "square-down-left": "\u{e26b}", + "square-down-right": "\u{e26c}", + "square-e": "\u{e26d}", + "square-ellipsis": "\u{e26e}", + "square-ellipsis-vertical": "\u{e26f}", + "square-f": "\u{e270}", + "square-g": "\u{e271}", + "square-i": "\u{e272}", + "square-j": "\u{e273}", + "square-k": "\u{e274}", + "square-l": "\u{e275}", + "square-m": "\u{e276}", + "square-n": "\u{e277}", + "square-o": "\u{e278}", + "square-p": "\u{e279}", + "phone-square-down": "\u{e27a}", + "square-phone-hangup": "\u{e27a}", + "square-q": "\u{e27b}", + "square-r": "\u{e27c}", + "square-s": "\u{e27d}", + "square-small": "\u{e27e}", + "square-star": "\u{e27f}", + "square-t": "\u{e280}", + "square-u": "\u{e281}", + "square-up-left": "\u{e282}", + "square-user": "\u{e283}", + "square-v": "\u{e284}", + "square-w": "\u{e285}", + "square-x": "\u{e286}", + "square-y": "\u{e287}", + "square-z": "\u{e288}", + "stairs": "\u{e289}", + "rectangle-sd": "\u{e28a}", + "standard-definition": "\u{e28a}", + "star-sharp": "\u{e28b}", + "star-sharp-half": "\u{e28c}", + "star-sharp-half-alt": "\u{e28d}", + "star-sharp-half-stroke": "\u{e28d}", + "starfighter-alt-advanced": "\u{e28e}", + "starfighter-twin-ion-engine-advanced": "\u{e28e}", + "sun-alt": "\u{e28f}", + "sun-bright": "\u{e28f}", + "table-layout": "\u{e290}", + "table-pivot": "\u{e291}", + "rows": "\u{e292}", + "table-rows": "\u{e292}", + "table-tree": "\u{e293}", + "tally-1": "\u{e294}", + "tally-2": "\u{e295}", + "tally-3": "\u{e296}", + "tally-4": "\u{e297}", + "taxi-bus": "\u{e298}", + "temperature-list": "\u{e299}", + "ticket-airline": "\u{e29a}", + "ticket-perforated-plane": "\u{e29a}", + "ticket-plane": "\u{e29a}", + "tickets-airline": "\u{e29b}", + "tickets-perforated-plane": "\u{e29b}", + "tickets-plane": "\u{e29b}", + "timeline": "\u{e29c}", + "timeline-arrow": "\u{e29d}", + "timer": "\u{e29e}", + "toilet-paper-reverse": "\u{e2a0}", + "toilet-paper-under": "\u{e2a0}", + "toilet-paper-reverse-slash": "\u{e2a1}", + "toilet-paper-under-slash": "\u{e2a1}", + "tower-control": "\u{e2a2}", + "subway-tunnel": "\u{e2a3}", + "train-subway-tunnel": "\u{e2a3}", + "transformer-bolt": "\u{e2a4}", + "transporter-4": "\u{e2a5}", + "transporter-5": "\u{e2a6}", + "transporter-6": "\u{e2a7}", + "transporter-7": "\u{e2a8}", + "trash-can-check": "\u{e2a9}", + "trash-can-clock": "\u{e2aa}", + "trash-can-list": "\u{e2ab}", + "trash-can-plus": "\u{e2ac}", + "trash-alt-slash": "\u{e2ad}", + "trash-can-slash": "\u{e2ad}", + "trash-can-xmark": "\u{e2ae}", + "trash-check": "\u{e2af}", + "trash-clock": "\u{e2b0}", + "trash-list": "\u{e2b1}", + "trash-plus": "\u{e2b2}", + "trash-slash": "\u{e2b3}", + "trash-xmark": "\u{e2b4}", + "truck-container-empty": "\u{e2b5}", + "truck-flatbed": "\u{e2b6}", + "truck-front": "\u{e2b7}", + "truck-tow": "\u{e2b8}", + "teletype-answer": "\u{e2b9}", + "tty-answer": "\u{e2b9}", + "tugrik-sign": "\u{e2ba}", + "try": "\u{e2bb}", + "turkish-lira": "\u{e2bb}", + "turkish-lira-sign": "\u{e2bb}", + "umbrella-alt": "\u{e2bc}", + "umbrella-simple": "\u{e2bc}", + "up-left": "\u{e2bd}", + "up-right": "\u{e2be}", + "user-bounty-hunter": "\u{e2bf}", + "user-pilot": "\u{e2c0}", + "user-pilot-tie": "\u{e2c1}", + "user-shakespeare": "\u{e2c2}", + "utility-pole": "\u{e2c3}", + "utility-pole-double": "\u{e2c4}", + "vault": "\u{e2c5}", + "video-arrow-down-left": "\u{e2c8}", + "video-arrow-up-right": "\u{e2c9}", + "magic-wand-sparkles": "\u{e2ca}", + "wand-magic-sparkles": "\u{e2ca}", + "watch-apple": "\u{e2cb}", + "watch-smart": "\u{e2cc}", + "wheat-alt": "\u{e2cd}", + "wheat-awn": "\u{e2cd}", + "wheelchair-alt": "\u{e2ce}", + "wheelchair-move": "\u{e2ce}", + "wifi-exclamation": "\u{e2cf}", + "wirsindhandwerk": "\u{e2d0}", + "wsh": "\u{e2d0}", + "wrench-simple": "\u{e2d1}", + "robot-astromech": "\u{e2d2}", + "360-degrees": "\u{e2dc}", + "aperture": "\u{e2df}", + "arrow-turn-down-left": "\u{e2e1}", + "balloon": "\u{e2e3}", + "balloons": "\u{e2e4}", + "banana": "\u{e2e5}", + "bangladeshi-taka-sign": "\u{e2e6}", + "bench-tree": "\u{e2e7}", + "blueberries": "\u{e2e8}", + "bowl-chopsticks": "\u{e2e9}", + "bowl-chopsticks-noodles": "\u{e2ea}", + "bowl-rice": "\u{e2eb}", + "briefcase-arrow-right": "\u{e2f2}", + "citrus": "\u{e2f4}", + "citrus-slice": "\u{e2f5}", + "coconut": "\u{e2f6}", + "desktop-slash": "\u{e2fa}", + "display-slash": "\u{e2fa}", + "exploding-head": "\u{e2fe}", + "face-explode": "\u{e2fe}", + "face-viewfinder": "\u{e2ff}", + "family": "\u{e300}", + "family-dress": "\u{e301}", + "family-pants": "\u{e302}", + "fence": "\u{e303}", + "fish-bones": "\u{e304}", + "grapes": "\u{e306}", + "kiwi-fruit": "\u{e30c}", + "mango": "\u{e30f}", + "melon": "\u{e310}", + "melon-slice": "\u{e311}", + "money-from-bracket": "\u{e312}", + "money-simple-from-bracket": "\u{e313}", + "olive": "\u{e316}", + "olive-branch": "\u{e317}", + "option": "\u{e318}", + "party-bell": "\u{e31a}", + "party-horn": "\u{e31b}", + "peapod": "\u{e31c}", + "person-pregnant": "\u{e31e}", + "pineapple": "\u{e31f}", + "rectangle-code": "\u{e322}", + "rectangles-mixed": "\u{e323}", + "roller-coaster": "\u{e324}", + "square-quote": "\u{e329}", + "square-terminal": "\u{e32a}", + "strawberry": "\u{e32b}", + "table-picnic": "\u{e32d}", + "thought-bubble": "\u{e32e}", + "tick": "\u{e32f}", + "tomato": "\u{e330}", + "turn-down-left": "\u{e331}", + "user-police": "\u{e333}", + "user-police-tie": "\u{e334}", + "watermelon-slice": "\u{e337}", + "wheat-awn-slash": "\u{e338}", + "wheat-slash": "\u{e339}", + "badminton": "\u{e33a}", + "binary": "\u{e33b}", + "binary-circle-check": "\u{e33c}", + "binary-lock": "\u{e33d}", + "binary-slash": "\u{e33e}", + "boot-heeled": "\u{e33f}", + "bots": "\u{e340}", + "car-bolt": "\u{e341}", + "car-circle-bolt": "\u{e342}", + "car-mirrors": "\u{e343}", + "car-side-bolt": "\u{e344}", + "clock-eight": "\u{e345}", + "clock-eight-thirty": "\u{e346}", + "clock-eleven": "\u{e347}", + "clock-eleven-thirty": "\u{e348}", + "clock-five": "\u{e349}", + "clock-five-thirty": "\u{e34a}", + "clock-four-thirty": "\u{e34b}", + "clock-nine": "\u{e34c}", + "clock-nine-thirty": "\u{e34d}", + "clock-one": "\u{e34e}", + "clock-one-thirty": "\u{e34f}", + "clock-seven": "\u{e350}", + "clock-seven-thirty": "\u{e351}", + "clock-six": "\u{e352}", + "clock-six-thirty": "\u{e353}", + "clock-ten": "\u{e354}", + "clock-ten-thirty": "\u{e355}", + "clock-three": "\u{e356}", + "clock-three-thirty": "\u{e357}", + "clock-twelve": "\u{e358}", + "clock-twelve-thirty": "\u{e359}", + "clock-two": "\u{e35a}", + "clock-two-thirty": "\u{e35b}", + "cloud-check": "\u{e35c}", + "cloud-minus": "\u{e35d}", + "cloud-plus": "\u{e35e}", + "cloud-xmark": "\u{e35f}", + "cmplid": "\u{e360}", + "columns-3": "\u{e361}", + "crystal-ball": "\u{e362}", + "cup-straw": "\u{e363}", + "cup-straw-swoosh": "\u{e364}", + "distribute-spacing-horizontal": "\u{e365}", + "distribute-spacing-vertical": "\u{e366}", + "eyes": "\u{e367}", + "face-angry-horns": "\u{e368}", + "face-anguished": "\u{e369}", + "face-anxious-sweat": "\u{e36a}", + "face-astonished": "\u{e36b}", + "face-confounded": "\u{e36c}", + "face-confused": "\u{e36d}", + "face-cowboy-hat": "\u{e36e}", + "face-disappointed": "\u{e36f}", + "face-disguise": "\u{e370}", + "face-downcast-sweat": "\u{e371}", + "face-drooling": "\u{e372}", + "face-expressionless": "\u{e373}", + "face-eyes-xmarks": "\u{e374}", + "face-fearful": "\u{e375}", + "face-frown-slight": "\u{e376}", + "face-glasses": "\u{e377}", + "face-hand-over-mouth": "\u{e378}", + "face-hand-yawn": "\u{e379}", + "face-head-bandage": "\u{e37a}", + "face-hushed": "\u{e37b}", + "face-icicles": "\u{e37c}", + "face-kiss-closed-eyes": "\u{e37d}", + "face-lying": "\u{e37e}", + "face-mask": "\u{e37f}", + "face-monocle": "\u{e380}", + "face-nauseated": "\u{e381}", + "face-nose-steam": "\u{e382}", + "face-party": "\u{e383}", + "face-pensive": "\u{e384}", + "face-persevering": "\u{e385}", + "face-pleading": "\u{e386}", + "face-pouting": "\u{e387}", + "face-raised-eyebrow": "\u{e388}", + "face-relieved": "\u{e389}", + "face-sad-sweat": "\u{e38a}", + "face-scream": "\u{e38b}", + "face-shush": "\u{e38c}", + "face-sleeping": "\u{e38d}", + "face-sleepy": "\u{e38e}", + "face-smile-halo": "\u{e38f}", + "face-smile-hearts": "\u{e390}", + "face-smile-horns": "\u{e391}", + "face-smile-relaxed": "\u{e392}", + "face-smile-tear": "\u{e393}", + "face-smile-tongue": "\u{e394}", + "face-smile-upside-down": "\u{e395}", + "face-smiling-hands": "\u{e396}", + "face-smirking": "\u{e397}", + "face-sunglasses": "\u{e398}", + "face-swear": "\u{e399}", + "face-thermometer": "\u{e39a}", + "face-thinking": "\u{e39b}", + "face-tissue": "\u{e39c}", + "face-tongue-money": "\u{e39d}", + "face-tongue-sweat": "\u{e39e}", + "face-unamused": "\u{e39f}", + "face-vomit": "\u{e3a0}", + "face-weary": "\u{e3a1}", + "face-woozy": "\u{e3a2}", + "face-worried": "\u{e3a3}", + "face-zany": "\u{e3a4}", + "face-zipper": "\u{e3a5}", + "file-lock": "\u{e3a6}", + "file-slash": "\u{e3a7}", + "fishing-rod": "\u{e3a8}", + "flying-disc": "\u{e3a9}", + "gallery-thumbnails": "\u{e3aa}", + "goal-net": "\u{e3ab}", + "golf-flag-hole": "\u{e3ac}", + "grid-dividers": "\u{e3ad}", + "hockey-stick-puck": "\u{e3ae}", + "home-lg": "\u{e3af}", + "house-chimney": "\u{e3af}", + "house-chimney-blank": "\u{e3b0}", + "house-crack": "\u{e3b1}", + "house-medical": "\u{e3b2}", + "house-window": "\u{e3b3}", + "key-skeleton-left-right": "\u{e3b4}", + "lacrosse-stick": "\u{e3b5}", + "lacrosse-stick-ball": "\u{e3b6}", + "mask-snorkel": "\u{e3b7}", + "message-bot": "\u{e3b8}", + "moped": "\u{e3b9}", + "nesting-dolls": "\u{e3ba}", + "objects-align-bottom": "\u{e3bb}", + "objects-align-center-horizontal": "\u{e3bc}", + "objects-align-center-vertical": "\u{e3bd}", + "objects-align-left": "\u{e3be}", + "objects-align-right": "\u{e3bf}", + "objects-align-top": "\u{e3c0}", + "objects-column": "\u{e3c1}", + "paperclip-vertical": "\u{e3c2}", + "pinata": "\u{e3c3}", + "pipe-smoking": "\u{e3c4}", + "pool-8-ball": "\u{e3c5}", + "rugby-ball": "\u{e3c6}", + "shirt-long-sleeve": "\u{e3c7}", + "shirt-running": "\u{e3c8}", + "shirt-tank-top": "\u{e3c9}", + "signature-lock": "\u{e3ca}", + "signature-slash": "\u{e3cb}", + "ski-boot": "\u{e3cc}", + "ski-boot-ski": "\u{e3cd}", + "slot-machine": "\u{e3ce}", + "teddy-bear": "\u{e3cf}", + "truck-bolt": "\u{e3d0}", + "uniform-martial-arts": "\u{e3d1}", + "user-chef": "\u{e3d2}", + "user-hair-buns": "\u{e3d3}", + "arrow-left-long-to-line": "\u{e3d4}", + "arrow-right-long-to-line": "\u{e3d5}", + "arrow-turn-down-right": "\u{e3d6}", + "bagel": "\u{e3d7}", + "baguette": "\u{e3d8}", + "bilibili": "\u{e3d9}", + "blanket-fire": "\u{e3da}", + "block-brick": "\u{e3db}", + "wall-brick": "\u{e3db}", + "block-brick-fire": "\u{e3dc}", + "firewall": "\u{e3dc}", + "block-question": "\u{e3dd}", + "bowl-scoop": "\u{e3de}", + "bowl-shaved-ice": "\u{e3de}", + "bowl-scoops": "\u{e3df}", + "bowl-spoon": "\u{e3e0}", + "bread-slice-butter": "\u{e3e1}", + "broccoli": "\u{e3e2}", + "burger-lettuce": "\u{e3e3}", + "butter": "\u{e3e4}", + "cake-slice": "\u{e3e5}", + "shortcake": "\u{e3e5}", + "can-food": "\u{e3e6}", + "candy": "\u{e3e7}", + "candy-bar": "\u{e3e8}", + "chocolate-bar": "\u{e3e8}", + "card-club": "\u{e3e9}", + "card-diamond": "\u{e3ea}", + "card-heart": "\u{e3eb}", + "card-spade": "\u{e3ec}", + "cards": "\u{e3ed}", + "cart-arrow-up": "\u{e3ee}", + "cart-circle-arrow-down": "\u{e3ef}", + "cart-circle-arrow-up": "\u{e3f0}", + "cart-circle-check": "\u{e3f1}", + "cart-circle-exclamation": "\u{e3f2}", + "cart-circle-plus": "\u{e3f3}", + "cart-circle-xmark": "\u{e3f4}", + "cent-sign": "\u{e3f5}", + "chestnut": "\u{e3f6}", + "chopsticks": "\u{e3f7}", + "circle-quarters": "\u{e3f8}", + "code-pull-request-closed": "\u{e3f9}", + "code-pull-request-draft": "\u{e3fa}", + "coin-blank": "\u{e3fb}", + "coin-front": "\u{e3fc}", + "coin-vertical": "\u{e3fd}", + "corner": "\u{e3fe}", + "crab": "\u{e3ff}", + "creemee": "\u{e400}", + "soft-serve": "\u{e400}", + "cucumber": "\u{e401}", + "cupcake": "\u{e402}", + "custard": "\u{e403}", + "dash": "\u{e404}", + "minus-large": "\u{e404}", + "diamond-exclamation": "\u{e405}", + "donut": "\u{e406}", + "doughnut": "\u{e406}", + "down-from-dotted-line": "\u{e407}", + "down-to-dotted-line": "\u{e408}", + "face-awesome": "\u{e409}", + "gave-dandy": "\u{e409}", + "falafel": "\u{e40a}", + "flatbread": "\u{e40b}", + "flatbread-stuffed": "\u{e40c}", + "fondue-pot": "\u{e40d}", + "garlic": "\u{e40e}", + "golang": "\u{e40f}", + "grip-dots": "\u{e410}", + "grip-dots-vertical": "\u{e411}", + "h5": "\u{e412}", + "h6": "\u{e413}", + "hammer-crash": "\u{e414}", + "hashtag-lock": "\u{e415}", + "hexagon-check": "\u{e416}", + "hexagon-exclamation": "\u{e417}", + "honey-pot": "\u{e418}", + "hose": "\u{e419}", + "hose-reel": "\u{e41a}", + "hourglass-clock": "\u{e41b}", + "100": "\u{e41c}", + "hundred-points": "\u{e41c}", + "leafy-green": "\u{e41d}", + "left-long-to-line": "\u{e41e}", + "light-emergency": "\u{e41f}", + "light-emergency-on": "\u{e420}", + "lobster": "\u{e421}", + "lock-a": "\u{e422}", + "lock-hashtag": "\u{e423}", + "lollipop": "\u{e424}", + "lollypop": "\u{e424}", + "mushroom": "\u{e425}", + "octagon-check": "\u{e426}", + "onion": "\u{e427}", + "page": "\u{e428}", + "file-caret-down": "\u{e429}", + "page-caret-down": "\u{e429}", + "file-caret-up": "\u{e42a}", + "page-caret-up": "\u{e42a}", + "pan-food": "\u{e42b}", + "pan-frying": "\u{e42c}", + "pancakes": "\u{e42d}", + "panel-ews": "\u{e42e}", + "panel-fire": "\u{e42f}", + "peanut": "\u{e430}", + "peanuts": "\u{e431}", + "pepper": "\u{e432}", + "person-to-door": "\u{e433}", + "phone-intercom": "\u{e434}", + "pickleball": "\u{e435}", + "pipe-circle-check": "\u{e436}", + "pipe-collar": "\u{e437}", + "pipe-section": "\u{e438}", + "pipe-valve": "\u{e439}", + "pix": "\u{e43a}", + "plate-utensils": "\u{e43b}", + "plus-minus": "\u{e43c}", + "pompebled": "\u{e43d}", + "popsicle": "\u{e43e}", + "pot-food": "\u{e43f}", + "potato": "\u{e440}", + "pretzel": "\u{e441}", + "pump": "\u{e442}", + "puzzle": "\u{e443}", + "right-long-to-line": "\u{e444}", + "sailboat": "\u{e445}", + "salt-shaker": "\u{e446}", + "section": "\u{e447}", + "shrimp": "\u{e448}", + "shutters": "\u{e449}", + "sitrox": "\u{e44a}", + "sportsball": "\u{e44b}", + "sprinkler-ceiling": "\u{e44c}", + "square-a-lock": "\u{e44d}", + "square-quarters": "\u{e44e}", + "square-ring": "\u{e44f}", + "squid": "\u{e450}", + "tamale": "\u{e451}", + "tank-water": "\u{e452}", + "train-track": "\u{e453}", + "train-tunnel": "\u{e454}", + "turn-down-right": "\u{e455}", + "up-from-dotted-line": "\u{e456}", + "up-to-dotted-line": "\u{e457}", + "user-doctor-hair": "\u{e458}", + "user-doctor-hair-long": "\u{e459}", + "user-hair": "\u{e45a}", + "user-hair-long": "\u{e45b}", + "business-front": "\u{e45c}", + "party-back": "\u{e45c}", + "trian-balbot": "\u{e45c}", + "user-hair-mullet": "\u{e45c}", + "user-nurse-hair": "\u{e45d}", + "user-nurse-hair-long": "\u{e45e}", + "user-tie-hair": "\u{e45f}", + "user-tie-hair-long": "\u{e460}", + "user-vneck": "\u{e461}", + "user-vneck-hair": "\u{e462}", + "user-vneck-hair-long": "\u{e463}", + "utensils-slash": "\u{e464}", + "vent-damper": "\u{e465}", + "waffle": "\u{e466}", + "00": "\u{e467}", + "apartment": "\u{e468}", + "bird": "\u{e469}", + "block": "\u{e46a}", + "bowl-soft-serve": "\u{e46b}", + "brazilian-real-sign": "\u{e46c}", + "cabin": "\u{e46d}", + "calendar-circle-exclamation": "\u{e46e}", + "calendar-circle-minus": "\u{e46f}", + "calendar-circle-plus": "\u{e470}", + "calendar-circle-user": "\u{e471}", + "calendar-lines-pen": "\u{e472}", + "chart-simple": "\u{e473}", + "chart-simple-horizontal": "\u{e474}", + "diagram-cells": "\u{e475}", + "diagram-next": "\u{e476}", + "diagram-predecessor": "\u{e477}", + "diagram-previous": "\u{e478}", + "diagram-subtask": "\u{e479}", + "diagram-successor": "\u{e47a}", + "earth-oceania": "\u{e47b}", + "globe-oceania": "\u{e47b}", + "face-beam-hand-over-mouth": "\u{e47c}", + "face-clouds": "\u{e47d}", + "face-diagonal-mouth": "\u{e47e}", + "face-dotted": "\u{e47f}", + "face-exhaling": "\u{e480}", + "face-hand-peeking": "\u{e481}", + "face-holding-back-tears": "\u{e482}", + "face-melting": "\u{e483}", + "face-saluting": "\u{e484}", + "face-spiral-eyes": "\u{e485}", + "fort": "\u{e486}", + "home-blank": "\u{e487}", + "house-blank": "\u{e487}", + "square-kanban": "\u{e488}", + "square-list": "\u{e489}", + "nigiri": "\u{e48a}", + "sushi": "\u{e48a}", + "maki-roll": "\u{e48b}", + "makizushi": "\u{e48b}", + "sushi-roll": "\u{e48b}", + "album-circle-plus": "\u{e48c}", + "album-circle-user": "\u{e48d}", + "album-collection-circle-plus": "\u{e48e}", + "album-collection-circle-user": "\u{e48f}", + "bug-slash": "\u{e490}", + "cloud-exclamation": "\u{e491}", + "cloud-question": "\u{e492}", + "file-circle-info": "\u{e493}", + "file-circle-plus": "\u{e494}", + "frame": "\u{e495}", + "gauge-circle-bolt": "\u{e496}", + "gauge-circle-minus": "\u{e497}", + "gauge-circle-plus": "\u{e498}", + "hashnode": "\u{e499}", + "memo-circle-info": "\u{e49a}", + "meta": "\u{e49b}", + "object-exclude": "\u{e49c}", + "object-intersect": "\u{e49d}", + "object-subtract": "\u{e49e}", + "object-union": "\u{e49f}", + "padlet": "\u{e4a0}", + "pen-nib-slash": "\u{e4a1}", + "rectangle-history": "\u{e4a2}", + "rectangle-history-circle-plus": "\u{e4a3}", + "rectangle-history-circle-user": "\u{e4a4}", + "shop-lock": "\u{e4a5}", + "store-lock": "\u{e4a6}", + "user-robot-xmarks": "\u{e4a7}", + "virus-covid": "\u{e4a8}", + "virus-covid-slash": "\u{e4a9}", + "anchor-circle-check": "\u{e4aa}", + "anchor-circle-exclamation": "\u{e4ab}", + "anchor-circle-xmark": "\u{e4ac}", + "anchor-lock": "\u{e4ad}", + "arrow-down-to-arc": "\u{e4ae}", + "arrow-down-up-across-line": "\u{e4af}", + "arrow-down-up-lock": "\u{e4b0}", + "arrow-right-from-arc": "\u{e4b1}", + "arrow-right-to-arc": "\u{e4b2}", + "arrow-right-to-city": "\u{e4b3}", + "arrow-up-from-arc": "\u{e4b4}", + "arrow-up-from-ground-water": "\u{e4b5}", + "arrow-up-from-water-pump": "\u{e4b6}", + "arrow-up-right-dots": "\u{e4b7}", + "arrows-down-to-line": "\u{e4b8}", + "arrows-down-to-people": "\u{e4b9}", + "arrows-left-right-to-line": "\u{e4ba}", + "arrows-spin": "\u{e4bb}", + "arrows-split-up-and-left": "\u{e4bc}", + "arrows-to-circle": "\u{e4bd}", + "arrows-to-dot": "\u{e4be}", + "arrows-to-eye": "\u{e4bf}", + "arrows-turn-right": "\u{e4c0}", + "arrows-turn-to-dots": "\u{e4c1}", + "arrows-up-to-line": "\u{e4c2}", + "bore-hole": "\u{e4c3}", + "bottle-droplet": "\u{e4c4}", + "bottle-water": "\u{e4c5}", + "bowl-food": "\u{e4c6}", + "boxes-packing": "\u{e4c7}", + "bridge": "\u{e4c8}", + "bridge-circle-check": "\u{e4c9}", + "bridge-circle-exclamation": "\u{e4ca}", + "bridge-circle-xmark": "\u{e4cb}", + "bridge-lock": "\u{e4cc}", + "bridge-suspension": "\u{e4cd}", + "bridge-water": "\u{e4ce}", + "bucket": "\u{e4cf}", + "bugs": "\u{e4d0}", + "building-circle-arrow-right": "\u{e4d1}", + "building-circle-check": "\u{e4d2}", + "building-circle-exclamation": "\u{e4d3}", + "building-circle-xmark": "\u{e4d4}", + "building-flag": "\u{e4d5}", + "building-lock": "\u{e4d6}", + "building-ngo": "\u{e4d7}", + "building-shield": "\u{e4d8}", + "building-un": "\u{e4d9}", + "building-user": "\u{e4da}", + "building-wheat": "\u{e4db}", + "burst": "\u{e4dc}", + "car-on": "\u{e4dd}", + "car-tunnel": "\u{e4de}", + "cards-blank": "\u{e4df}", + "child-combatant": "\u{e4e0}", + "child-rifle": "\u{e4e0}", + "children": "\u{e4e1}", + "circle-nodes": "\u{e4e2}", + "clipboard-question": "\u{e4e3}", + "cloud-showers-water": "\u{e4e4}", + "computer": "\u{e4e5}", + "cubes-stacked": "\u{e4e6}", + "down-to-bracket": "\u{e4e7}", + "envelope-circle-check": "\u{e4e8}", + "explosion": "\u{e4e9}", + "ferry": "\u{e4ea}", + "file-circle-exclamation": "\u{e4eb}", + "file-circle-minus": "\u{e4ed}", + "file-circle-question": "\u{e4ef}", + "file-shield": "\u{e4f0}", + "fire-burner": "\u{e4f1}", + "fish-fins": "\u{e4f2}", + "flask-vial": "\u{e4f3}", + "glass-water": "\u{e4f4}", + "glass-water-droplet": "\u{e4f5}", + "group-arrows-rotate": "\u{e4f6}", + "hand-holding-hand": "\u{e4f7}", + "handcuffs": "\u{e4f8}", + "hands-bound": "\u{e4f9}", + "hands-holding-child": "\u{e4fa}", + "hands-holding-circle": "\u{e4fb}", + "heart-circle-bolt": "\u{e4fc}", + "heart-circle-check": "\u{e4fd}", + "heart-circle-exclamation": "\u{e4fe}", + "heart-circle-minus": "\u{e4ff}", + "heart-circle-plus": "\u{e500}", + "heart-circle-xmark": "\u{e501}", + "helicopter-symbol": "\u{e502}", + "helmet-un": "\u{e503}", + "hexagon-image": "\u{e504}", + "hexagon-vertical-nft": "\u{e505}", + "hill-avalanche": "\u{e507}", + "hill-rockslide": "\u{e508}", + "house-circle-check": "\u{e509}", + "house-circle-exclamation": "\u{e50a}", + "house-circle-xmark": "\u{e50b}", + "house-fire": "\u{e50c}", + "house-flag": "\u{e50d}", + "house-flood-water": "\u{e50e}", + "house-flood-water-circle-arrow-right": "\u{e50f}", + "house-lock": "\u{e510}", + "house-medical-circle-check": "\u{e511}", + "house-medical-circle-exclamation": "\u{e512}", + "house-medical-circle-xmark": "\u{e513}", + "house-medical-flag": "\u{e514}", + "house-tsunami": "\u{e515}", + "jar": "\u{e516}", + "jar-wheat": "\u{e517}", + "jet-fighter-up": "\u{e518}", + "jug-detergent": "\u{e519}", + "kitchen-set": "\u{e51a}", + "land-mine-on": "\u{e51b}", + "landmark-flag": "\u{e51c}", + "laptop-file": "\u{e51d}", + "lines-leaning": "\u{e51e}", + "location-pin-lock": "\u{e51f}", + "locust": "\u{e520}", + "magnifying-glass-arrow-right": "\u{e521}", + "magnifying-glass-chart": "\u{e522}", + "mars-and-venus-burst": "\u{e523}", + "mask-ventilator": "\u{e524}", + "mattress-pillow": "\u{e525}", + "merge": "\u{e526}", + "mobile-retro": "\u{e527}", + "money-bill-transfer": "\u{e528}", + "money-bill-trend-up": "\u{e529}", + "money-bill-wheat": "\u{e52a}", + "mosquito": "\u{e52b}", + "mosquito-net": "\u{e52c}", + "mound": "\u{e52d}", + "mountain-city": "\u{e52e}", + "mountain-sun": "\u{e52f}", + "nfc-directional": "\u{e530}", + "nfc-symbol": "\u{e531}", + "oil-well": "\u{e532}", + "people-group": "\u{e533}", + "people-line": "\u{e534}", + "people-pulling": "\u{e535}", + "people-robbery": "\u{e536}", + "people-roof": "\u{e537}", + "person-arrow-down-to-line": "\u{e538}", + "person-arrow-up-from-line": "\u{e539}", + "person-breastfeeding": "\u{e53a}", + "person-burst": "\u{e53b}", + "person-cane": "\u{e53c}", + "person-chalkboard": "\u{e53d}", + "person-circle-check": "\u{e53e}", + "person-circle-exclamation": "\u{e53f}", + "person-circle-minus": "\u{e540}", + "person-circle-plus": "\u{e541}", + "person-circle-question": "\u{e542}", + "person-circle-xmark": "\u{e543}", + "person-dress-burst": "\u{e544}", + "person-drowning": "\u{e545}", + "person-falling": "\u{e546}", + "person-falling-burst": "\u{e547}", + "person-half-dress": "\u{e548}", + "person-harassing": "\u{e549}", + "person-military-pointing": "\u{e54a}", + "person-military-rifle": "\u{e54b}", + "person-military-to-person": "\u{e54c}", + "person-rays": "\u{e54d}", + "person-rifle": "\u{e54e}", + "person-shelter": "\u{e54f}", + "person-walking-arrow-loop-left": "\u{e551}", + "person-walking-arrow-right": "\u{e552}", + "person-walking-dashed-line-arrow-right": "\u{e553}", + "person-walking-luggage": "\u{e554}", + "plane-circle-check": "\u{e555}", + "plane-circle-exclamation": "\u{e556}", + "plane-circle-xmark": "\u{e557}", + "plane-lock": "\u{e558}", + "plate-wheat": "\u{e55a}", + "plug-circle-bolt": "\u{e55b}", + "plug-circle-check": "\u{e55c}", + "plug-circle-exclamation": "\u{e55d}", + "plug-circle-minus": "\u{e55e}", + "plug-circle-plus": "\u{e55f}", + "plug-circle-xmark": "\u{e560}", + "ranking-star": "\u{e561}", + "road-barrier": "\u{e562}", + "road-bridge": "\u{e563}", + "road-circle-check": "\u{e564}", + "road-circle-exclamation": "\u{e565}", + "road-circle-xmark": "\u{e566}", + "road-lock": "\u{e567}", + "road-spikes": "\u{e568}", + "rug": "\u{e569}", + "sack-xmark": "\u{e56a}", + "school-circle-check": "\u{e56b}", + "school-circle-exclamation": "\u{e56c}", + "school-circle-xmark": "\u{e56d}", + "school-flag": "\u{e56e}", + "school-lock": "\u{e56f}", + "screenpal": "\u{e570}", + "sheet-plastic": "\u{e571}", + "shield-cat": "\u{e572}", + "shield-dog": "\u{e573}", + "shield-heart": "\u{e574}", + "shield-quartered": "\u{e575}", + "square-nfi": "\u{e576}", + "square-person-confined": "\u{e577}", + "square-virus": "\u{e578}", + "rod-asclepius": "\u{e579}", + "rod-snake": "\u{e579}", + "staff-aesculapius": "\u{e579}", + "staff-snake": "\u{e579}", + "sun-plant-wilt": "\u{e57a}", + "tarp": "\u{e57b}", + "tarp-droplet": "\u{e57c}", + "tent": "\u{e57d}", + "tent-arrow-down-to-line": "\u{e57e}", + "tent-arrow-left-right": "\u{e57f}", + "tent-arrow-turn-left": "\u{e580}", + "tent-arrows-down": "\u{e581}", + "tents": "\u{e582}", + "toilet-portable": "\u{e583}", + "toilets-portable": "\u{e584}", + "tower-cell": "\u{e585}", + "tower-observation": "\u{e586}", + "tree-city": "\u{e587}", + "trillium": "\u{e588}", + "trowel": "\u{e589}", + "trowel-bricks": "\u{e58a}", + "truck-arrow-right": "\u{e58b}", + "truck-droplet": "\u{e58c}", + "truck-field": "\u{e58d}", + "truck-field-un": "\u{e58e}", + "truck-plane": "\u{e58f}", + "up-from-bracket": "\u{e590}", + "users-between-lines": "\u{e591}", + "users-line": "\u{e592}", + "users-rays": "\u{e593}", + "users-rectangle": "\u{e594}", + "users-viewfinder": "\u{e595}", + "vial-circle-check": "\u{e596}", + "vial-virus": "\u{e597}", + "wheat-awn-circle-exclamation": "\u{e598}", + "worm": "\u{e599}", + "xmarks-lines": "\u{e59a}", + "xmark-large": "\u{e59b}", + "child-dress": "\u{e59c}", + "child-reaching": "\u{e59d}", + "plus-large": "\u{e59e}", + "crosshairs-simple": "\u{e59f}", + "file-circle-check": "\u{e5a0}", + "file-circle-xmark": "\u{e5a1}", + "gamepad-alt": "\u{e5a2}", + "gamepad-modern": "\u{e5a2}", + "grill": "\u{e5a3}", + "grill-fire": "\u{e5a4}", + "grill-hot": "\u{e5a5}", + "lightbulb-cfl": "\u{e5a6}", + "lightbulb-cfl-on": "\u{e5a7}", + "mouse-field": "\u{e5a8}", + "person-through-window": "\u{e5a9}", + "plant-wilt": "\u{e5aa}", + "ring-diamond": "\u{e5ab}", + "space-awesome": "\u{e5ac}", + "square-font-awesome": "\u{e5ad}", + "gitlab-square": "\u{e5ae}", + "square-gitlab": "\u{e5ae}", + "stapler": "\u{e5af}", + "toggle-large-off": "\u{e5b0}", + "toggle-large-on": "\u{e5b1}", + "toilet-paper-check": "\u{e5b2}", + "toilet-paper-xmark": "\u{e5b3}", + "train-tram": "\u{e5b4}", + "buoy": "\u{e5b5}", + "buoy-mooring": "\u{e5b6}", + "diamond-half": "\u{e5b7}", + "diamond-half-stroke": "\u{e5b8}", + "game-console-handheld-crank": "\u{e5b9}", + "interrobang": "\u{e5ba}", + "mailbox-flag-up": "\u{e5bb}", + "mustache": "\u{e5bc}", + "nose": "\u{e5bd}", + "phone-arrow-right": "\u{e5be}", + "pickaxe": "\u{e5bf}", + "prescription-bottle-pill": "\u{e5c0}", + "snowflake-droplets": "\u{e5c1}", + "square-dashed-circle-plus": "\u{e5c2}", + "tricycle": "\u{e5c3}", + "tricycle-adult": "\u{e5c4}", + "user-magnifying-glass": "\u{e5c5}", + "odysee": "\u{e5c6}", + "stubber": "\u{e5c7}", + "comment-heart": "\u{e5c8}", + "message-heart": "\u{e5c9}", + "pencil-mechanical": "\u{e5ca}", + "skeleton-ribs": "\u{e5cb}", + "billboard": "\u{e5cd}", + "circle-euro": "\u{e5ce}", + "circle-sterling": "\u{e5cf}", + "circle-yen": "\u{e5d0}", + "broom-wide": "\u{e5d1}", + "wreath-laurel": "\u{e5d2}", + "circle-quarter-stroke": "\u{e5d3}", + "circle-three-quarters-stroke": "\u{e5d4}", + "webhook": "\u{e5d5}", + "sparkle": "\u{e5d6}", + "chart-line-up-down": "\u{e5d7}", + "chart-mixed-up-circle-currency": "\u{e5d8}", + "chart-mixed-up-circle-dollar": "\u{e5d9}", + "grid-round": "\u{e5da}", + "grid-round-2": "\u{e5db}", + "grid-round-2-plus": "\u{e5dc}", + "grid-round-4": "\u{e5dd}", + "grid-round-5": "\u{e5de}", + "arrow-progress": "\u{e5df}", + "right-left-large": "\u{e5e1}", + "calendar-users": "\u{e5e2}", + "display-chart-up": "\u{e5e3}", + "display-chart-up-circle-currency": "\u{e5e5}", + "display-chart-up-circle-dollar": "\u{e5e6}", + "laptop-binary": "\u{e5e7}", + "gear-code": "\u{e5e8}", + "gear-complex": "\u{e5e9}", + "gear-complex-code": "\u{e5eb}", + "file-doc": "\u{e5ed}", + "file-zip": "\u{e5ee}", + "flask-gear": "\u{e5f1}", + "bag-seedling": "\u{e5f2}", + "bin-bottles": "\u{e5f5}", + "bin-bottles-recycle": "\u{e5f6}", + "bin-recycle": "\u{e5f7}", + "conveyor-belt-arm": "\u{e5f8}", + "jug-bottle": "\u{e5fb}", + "lightbulb-gear": "\u{e5fd}", + "dinosaur": "\u{e5fe}", + "person-running-fast": "\u{e5ff}", + "circles-overlap": "\u{e600}", + "cloud-binary": "\u{e601}", + "chf-sign": "\u{e602}", + "user-group-simple": "\u{e603}", + "chart-pie-simple-circle-currency": "\u{e604}", + "chart-pie-simple-circle-dollar": "\u{e605}", + "hat-beach": "\u{e606}", + "person-dress-fairy": "\u{e607}", + "person-fairy": "\u{e608}", + "swap": "\u{e609}", + "swap-arrows": "\u{e60a}", + "debian": "\u{e60b}", + "shoelace": "\u{e60c}", + "angles-up-down": "\u{e60d}", + "globe-pointer": "\u{e60e}", + "subtitles": "\u{e60f}", + "subtitles-slash": "\u{e610}", + "head-side-gear": "\u{e611}", + "lighthouse": "\u{e612}", + "raccoon": "\u{e613}", + "arrow-down-from-arc": "\u{e614}", + "arrow-left-from-arc": "\u{e615}", + "arrow-left-to-arc": "\u{e616}", + "arrow-up-to-arc": "\u{e617}", + "threads": "\u{e618}", + "square-threads": "\u{e619}", + "square-x-twitter": "\u{e61a}", + "x-twitter": "\u{e61b}", + "building-magnifying-glass": "\u{e61c}", + "building-memo": "\u{e61e}", + "hammer-brush": "\u{e620}", + "hand-holding-circle-dollar": "\u{e621}", + "landmark-magnifying-glass": "\u{e622}", + "sign-post": "\u{e624}", + "sign-posts": "\u{e625}", + "sign-posts-wrench": "\u{e626}", + "tent-double-peak": "\u{e627}", + "truck-utensils": "\u{e628}", + "t-rex": "\u{e629}", + "spinner-scale": "\u{e62a}", + "opensuse": "\u{e62b}", + "bell-ring": "\u{e62c}", + "letterboxd": "\u{e62d}", + "square-letterboxd": "\u{e62e}", + "mintbit": "\u{e62f}", + "arrows-rotate-reverse": "\u{e630}", + "rotate-reverse": "\u{e631}", + "arrow-turn-left": "\u{e632}", + "arrow-turn-left-down": "\u{e633}", + "arrow-turn-left-up": "\u{e634}", + "arrow-turn-right": "\u{e635}", + "turn-left": "\u{e636}", + "turn-left-down": "\u{e637}", + "turn-left-up": "\u{e638}", + "turn-right": "\u{e639}", + "location-arrow-up": "\u{e63a}", + "google-scholar": "\u{e63b}", + "brave": "\u{e63c}", + "brave-reverse": "\u{e63d}", + "ticket-perforated": "\u{e63e}", + "tickets-perforated": "\u{e63f}", + "pixiv": "\u{e640}", + "upwork": "\u{e641}", + "cannon": "\u{e642}", + "court-sport": "\u{e643}", + "file-eps": "\u{e644}", + "file-gif": "\u{e645}", + "file-jpg": "\u{e646}", + "file-mov": "\u{e647}", + "file-mp3": "\u{e648}", + "file-mp4": "\u{e649}", + "file-ppt": "\u{e64a}", + "file-svg": "\u{e64b}", + "file-vector": "\u{e64c}", + "file-xls": "\u{e64d}", + "folder-check": "\u{e64e}", + "chart-kanban": "\u{e64f}", + "bag-shopping-minus": "\u{e650}", + "bag-shopping-plus": "\u{e651}", + "basket-shopping-minus": "\u{e652}", + "basket-shopping-plus": "\u{e653}", + "file-xml": "\u{e654}", + "bulldozer": "\u{e655}", + "excavator": "\u{e656}", + "truck-ladder": "\u{e657}", + "tickets": "\u{e658}", + "tickets-simple": "\u{e659}", + "truck-fire": "\u{e65a}", + "wave": "\u{e65b}", + "webflow": "\u{e65c}", + "waves-sine": "\u{e65d}", + "magnifying-glass-arrows-rotate": "\u{e65e}", + "magnifying-glass-music": "\u{e65f}", + "magnifying-glass-play": "\u{e660}", + "magnifying-glass-waveform": "\u{e661}", + "music-magnifying-glass": "\u{e662}", + "signal-messenger": "\u{e663}", + "reflect-horizontal": "\u{e664}", + "reflect-vertical": "\u{e665}", + "file-png": "\u{e666}", + "arrow-down-from-bracket": "\u{e667}", + "arrow-left-from-bracket": "\u{e668}", + "arrow-left-to-bracket": "\u{e669}", + "arrow-up-to-bracket": "\u{e66a}", + "down-from-bracket": "\u{e66b}", + "left-from-bracket": "\u{e66c}", + "left-to-bracket": "\u{e66d}", + "up-to-bracket": "\u{e66e}", + "reflect-both": "\u{e66f}", + "bluesky": "\u{e671}", + "file-cad": "\u{e672}", + "bottle-baby": "\u{e673}", + "table-cells-column-lock": "\u{e678}", + "table-cells-lock": "\u{e679}", + "table-cells-row-lock": "\u{e67a}", + "jxl": "\u{e67b}", + "square-upwork": "\u{e67c}", + "circle-wifi": "\u{e67d}", + "circle-wifi-circle-wifi": "\u{e67e}", + "circle-wifi-group": "\u{e67e}", + "circle-gf": "\u{e67f}", + "ant": "\u{e680}", + "caduceus": "\u{e681}", + "web-awesome": "\u{e682}", + "square-web-awesome": "\u{e683}", + "square-web-awesome-stroke": "\u{e684}", + "globe-wifi": "\u{e685}", + "hydra": "\u{e686}", + "lightbulb-message": "\u{e687}", + "octopus": "\u{e688}", + "user-beard-bolt": "\u{e689}", + "user-hoodie": "\u{e68a}", + "diamonds-4": "\u{e68b}", + "thumb-tack-slash": "\u{e68f}", + "thumbtack-slash": "\u{e68f}", + "table-cells-column-unlock": "\u{e690}", + "table-cells-row-unlock": "\u{e691}", + "table-cells-unlock": "\u{e692}", + "dart-lang": "\u{e693}", + "flutter": "\u{e694}", + "chart-diagram": "\u{e695}", + "comment-nodes": "\u{e696}", + "file-fragment": "\u{e697}", + "file-half-dashed": "\u{e698}", + "hexagon-nodes": "\u{e699}", + "hexagon-nodes-bolt": "\u{e69a}", + "square-binary": "\u{e69b}", + "car-people": "\u{e69c}", + "carpool": "\u{e69c}", + "chart-sine": "\u{e69d}", + "chart-fft": "\u{e69e}", + "files-pinwheel": "\u{e69f}", + "circles-overlap-3": "\u{e6a1}", + "pronoun": "\u{e6a1}", + "css": "\u{e6a2}", + "square-bluesky": "\u{e6a3}", + "bar-progress": "\u{e6a4}", + "bar-progress-empty": "\u{e6a5}", + "bar-progress-full": "\u{e6a6}", + "bar-progress-half": "\u{e6a7}", + "bar-progress-quarter": "\u{e6a8}", + "bar-progress-three-quarters": "\u{e6a9}", + "grid-2-minus": "\u{e6aa}", + "grid-round-2-minus": "\u{e6ab}", + "table-cells-columns": "\u{e6ac}", + "table-cells-header": "\u{e6ad}", + "table-cells-header-lock": "\u{e6ae}", + "table-cells-header-unlock": "\u{e6af}", + "table-cells-rows": "\u{e6b0}", + "circle-equals": "\u{e6b1}", + "hexagon-equals": "\u{e6b2}", + "octagon-equals": "\u{e6b3}", + "rectangle-minus": "\u{e6b4}", + "rectangle-plus": "\u{e6b5}", + "square-equals": "\u{e6b6}", + "arrow-down-long-to-line": "\u{e6b7}", + "arrow-left-arrow-right": "\u{e6b8}", + "arrow-left-from-dotted-line": "\u{e6b9}", + "arrow-left-to-dotted-line": "\u{e6ba}", + "arrow-right-from-dotted-line": "\u{e6bb}", + "arrow-right-to-dotted-line": "\u{e6bc}", + "arrow-up-long-to-line": "\u{e6bd}", + "direction-left-right": "\u{e6be}", + "direction-up-down": "\u{e6bf}", + "down-long-to-line": "\u{e6c0}", + "down-up": "\u{e6c1}", + "left-from-dotted-line": "\u{e6c2}", + "left-to-dotted-line": "\u{e6c3}", + "right-from-dotted-line": "\u{e6c4}", + "right-to-dotted-line": "\u{e6c5}", + "up-long-to-line": "\u{e6c6}", + "barn": "\u{e6c7}", + "circle-house": "\u{e6c8}", + "garage-empty": "\u{e6c9}", + "house-unlock": "\u{e6ca}", + "school-unlock": "\u{e6cb}", + "stadium": "\u{e6cc}", + "tent-circus": "\u{e6cd}", + "ball-yarn": "\u{e6ce}", + "bra": "\u{e6cf}", + "briefs": "\u{e6d0}", + "dress": "\u{e6d1}", + "jeans": "\u{e6d2}", + "jeans-straight": "\u{e6d3}", + "panties": "\u{e6d4}", + "pants": "\u{e6d5}", + "pants-straight": "\u{e6d6}", + "shirt-jersey": "\u{e6d7}", + "shoe": "\u{e6d8}", + "shorts": "\u{e6d9}", + "sneaker": "\u{e6da}", + "circle-share-nodes": "\u{e6db}", + "comment-dot": "\u{e6dc}", + "comment-waveform": "\u{e6dd}", + "envelope-circle-user": "\u{e6de}", + "message-dot": "\u{e6df}", + "message-waveform": "\u{e6e0}", + "phone-connection": "\u{e6e1}", + "phone-waveform": "\u{e6e2}", + "postage-stamp": "\u{e6e3}", + "circle-florin": "\u{e6e4}", + "circle-ruble": "\u{e6e5}", + "square-chf": "\u{e6e6}", + "square-lira": "\u{e6e7}", + "norwegian-krone-sign": "\u{e6e8}", + "circle-renminbi": "\u{e6e9}", + "square-peseta": "\u{e6ea}", + "circle-brazilian-real": "\u{e6eb}", + "circle-won": "\u{e6ec}", + "square-cruzeiro": "\u{e6ed}", + "circle-currency": "\u{e6ee}", + "circle-hryvnia": "\u{e6ef}", + "square-cent": "\u{e6f0}", + "square-brazilian-real": "\u{e6f1}", + "square-bitcoin": "\u{e6f2}", + "circle-peruvian-soles": "\u{e6f3}", + "circle-litecoin": "\u{e6f4}", + "square-indian-rupee": "\u{e6f5}", + "circle-lira": "\u{e6f6}", + "square-litecoin": "\u{e6f7}", + "square-ruble": "\u{e6f8}", + "circle-malaysian-ringgit": "\u{e6f9}", + "malaysian-ringgit-sign": "\u{e6fa}", + "circle-manat": "\u{e6fb}", + "circle-colon": "\u{e6fc}", + "circle-kip": "\u{e6fd}", + "australian-dollar-sign": "\u{e6fe}", + "circle-peso": "\u{e6ff}", + "circle-polish-zloty": "\u{e700}", + "circle-bangladeshi-taka": "\u{e701}", + "circle-mill": "\u{e702}", + "circle-shekel": "\u{e703}", + "square-manat": "\u{e704}", + "peruvian-soles-sign": "\u{e705}", + "circle-rupiah": "\u{e706}", + "square-norwegian-krone": "\u{e707}", + "square-naira": "\u{e708}", + "square-won": "\u{e709}", + "square-mill": "\u{e70a}", + "polish-zloty-sign": "\u{e70b}", + "square-currency": "\u{e70c}", + "square-kip": "\u{e70d}", + "square-guarani": "\u{e70e}", + "square-dong": "\u{e70f}", + "square-hryvnia": "\u{e710}", + "circle-tugrik": "\u{e711}", + "square-rupiah": "\u{e712}", + "square-sterling": "\u{e713}", + "circle-rupee": "\u{e714}", + "square-rupee": "\u{e715}", + "square-peruvian-soles": "\u{e716}", + "square-florin": "\u{e717}", + "square-australian-dollar": "\u{e718}", + "square-baht": "\u{e719}", + "square-peso": "\u{e71a}", + "circle-austral": "\u{e71b}", + "square-swedish-krona": "\u{e71c}", + "circle-lari": "\u{e71d}", + "circleapore-dollar": "\u{e71e}", + "square-turkish-lira": "\u{e71f}", + "danish-krone-sign": "\u{e720}", + "circle-franc": "\u{e721}", + "circle-cruzeiro": "\u{e722}", + "circle-dong": "\u{e723}", + "square-yen": "\u{e724}", + "circle-tenge": "\u{e725}", + "square-austral": "\u{e726}", + "square-eurozone": "\u{e727}", + "square-tugrik": "\u{e728}", + "square-cedi": "\u{e729}", + "circle-cent": "\u{e72a}", + "currency-sign": "\u{e72b}", + "circle-chf": "\u{e72c}", + "circle-baht": "\u{e72d}", + "signapore-dollar-sign": "\u{e72e}", + "square-franc": "\u{e72f}", + "circle-australian-dollar": "\u{e730}", + "square-tenge": "\u{e731}", + "square-euro": "\u{e732}", + "squareapore-dollar": "\u{e733}", + "circle-indian-rupee": "\u{e734}", + "square-shekel": "\u{e735}", + "square-polish-zloty": "\u{e736}", + "circle-bitcoin": "\u{e737}", + "circle-norwegian-krone": "\u{e738}", + "circle-turkish-lira": "\u{e739}", + "square-colon": "\u{e73a}", + "circle-guarani": "\u{e73b}", + "renminbi-sign": "\u{e73c}", + "square-renminbi": "\u{e73d}", + "swedish-krona-sign": "\u{e73e}", + "square-lari": "\u{e73f}", + "eurozone-sign": "\u{e740}", + "circle-peseta": "\u{e741}", + "circle-cedi": "\u{e742}", + "circle-swedish-krona": "\u{e743}", + "square-bangladeshi-taka": "\u{e744}", + "circle-eurozone": "\u{e745}", + "circle-danish-krone": "\u{e746}", + "square-danish-krone": "\u{e747}", + "square-malaysian-ringgit": "\u{e748}", + "circle-naira": "\u{e749}", + "mobile-arrow-down": "\u{e74b}", + "clone-plus": "\u{e74c}", + "paintbrush-fine-slash": "\u{e74d}", + "paintbrush-slash": "\u{e74e}", + "pencil-line": "\u{e74f}", + "slider-circle": "\u{e750}", + "thumbtack-angle": "\u{e751}", + "thumbtack-angle-slash": "\u{e752}", + "book-open-lines": "\u{e753}", + "book-spine": "\u{e754}", + "bookmark-plus": "\u{e755}", + "clipboard-clock": "\u{e756}", + "clipboard-exclamation": "\u{e757}", + "file-ban": "\u{e758}", + "notes-sticky": "\u{e759}", + "capsule": "\u{e75a}", + "ear-circle-checkmark": "\u{e75b}", + "ear-triangle-exclamation": "\u{e75c}", + "ear-waveform": "\u{e75d}", + "head-side-circuit": "\u{e75e}", + "head-side-speak": "\u{e75f}", + "microphone-signal-meter": "\u{e760}", + "spine": "\u{e761}", + "vial-vertical": "\u{e762}", + "bin": "\u{e763}", + "seat": "\u{e764}", + "seats": "\u{e765}", + "camera-circle-ellipsis": "\u{e766}", + "camera-clock": "\u{e767}", + "camera-shutter": "\u{e768}", + "film-music": "\u{e769}", + "film-stack": "\u{e76b}", + "image-circle-arrow-down": "\u{e76c}", + "image-circle-check": "\u{e76d}", + "image-circle-plus": "\u{e76e}", + "image-circle-xmark": "\u{e76f}", + "image-music": "\u{e770}", + "image-stack": "\u{e771}", + "rectangle-4k": "\u{e772}", + "rectangle-hdr": "\u{e773}", + "rectangle-high-dynamic-range": "\u{e773}", + "rectangle-video-on-demand": "\u{e774}", + "user-viewfinder": "\u{e775}", + "video-down-to-line": "\u{e776}", + "video-question": "\u{e777}", + "gas-pump-left": "\u{e778}", + "gas-pump-right": "\u{e779}", + "location-arrow-slash": "\u{e77a}", + "airplay-audio": "\u{e77b}", + "headphones-slash": "\u{e77c}", + "microphone-circle-plus": "\u{e77d}", + "microphone-circle-xmark": "\u{e77e}", + "open-captioning": "\u{e77f}", + "play-flip": "\u{e780}", + "square-microphone": "\u{e781}", + "trombone": "\u{e782}", + "person-arms-raised": "\u{e783}", + "person-basketball": "\u{e784}", + "person-carry-empty": "\u{e785}", + "person-golfing": "\u{e786}", + "person-limbs-wide": "\u{e787}", + "person-seat-window": "\u{e788}", + "person-soccer": "\u{e789}", + "person-swimming-pool": "\u{e78a}", + "person-swimming-water": "\u{e78b}", + "person-water-arms-raised": "\u{e78c}", + "person-waving": "\u{e78d}", + "heart-slash": "\u{e78e}", + "hearts": "\u{e78f}", + "pentagon": "\u{e790}", + "rectangle-tall": "\u{e791}", + "square-half": "\u{e792}", + "square-half-stroke": "\u{e793}", + "box-arrow-down": "\u{e794}", + "box-arrow-down-arrow-up": "\u{e795}", + "box-arrow-down-magnifying-glass": "\u{e796}", + "box-isometric": "\u{e797}", + "box-isometric-tape": "\u{e798}", + "qrcode-read": "\u{e799}", + "shop-24": "\u{e79a}", + "store-24": "\u{e79b}", + "face-shaking": "\u{e79c}", + "face-shaking-horizontal": "\u{e79d}", + "face-shaking-vertical": "\u{e79e}", + "circle-user-circle-check": "\u{e79f}", + "circle-user-circle-exclamation": "\u{e7a0}", + "circle-user-circle-minus": "\u{e7a1}", + "circle-user-circle-moon": "\u{e7a2}", + "circle-user-circle-plus": "\u{e7a3}", + "circle-user-circle-question": "\u{e7a4}", + "circle-user-circle-user": "\u{e7a5}", + "circle-user-circle-xmark": "\u{e7a6}", + "circle-user-clock": "\u{e7a7}", + "user-beard": "\u{e7a8}", + "user-chef-hair-long": "\u{e7a9}", + "user-circle-minus": "\u{e7aa}", + "user-circle-plus": "\u{e7ab}", + "user-dashed": "\u{e7ac}", + "user-doctor-hair-mullet": "\u{e7ad}", + "user-hat-tie": "\u{e7ae}", + "user-hat-tie-magnifying-glass": "\u{e7af}", + "user-key": "\u{e7b0}", + "user-message": "\u{e7b1}", + "user-microphone": "\u{e7b2}", + "user-pilot-hair-long": "\u{e7b3}", + "user-pilot-tie-hair-long": "\u{e7b4}", + "user-police-hair-long": "\u{e7b5}", + "user-police-tie-hair-long": "\u{e7b6}", + "user-question": "\u{e7b7}", + "user-sith": "\u{e7b8}", + "user-tie-hair-mullet": "\u{e7b9}", + "user-vneck-hair-mullet": "\u{e7ba}", + "plane-flying": "\u{e7bb}", + "plane-landing-gear": "\u{e7bc}", + "rocket-vertical": "\u{e7bd}", + "seat-airline-window": "\u{e7be}", + "shuttle-space-vertical": "\u{e7bf}", + "car-key": "\u{e7c0}", + "car-siren": "\u{e7c1}", + "car-siren-on": "\u{e7c2}", + "scooter": "\u{e7c3}", + "snowmobile-blank": "\u{e7c4}", + "stair-car": "\u{e7c5}", + "truck-suv": "\u{e7c6}", + "unicycle": "\u{e7c7}", + "van": "\u{e7c8}", + "moon-star": "\u{e7c9}", + "rainbow-half": "\u{e7ca}", + "temperature-slash": "\u{e7cb}", + "dialpad": "\u{e7cc}", + "numpad": "\u{e7cc}", + "computer-mouse-button-left": "\u{e7cd}", + "computer-mouse-button-right": "\u{e7ce}", + "openai": "\u{e7cf}", + "square-linkedin": "\u{e7d0}", + "dot": "\u{e7d1}", + "folder-arrow-left": "\u{e7d2}", + "folder-arrow-right": "\u{e7d3}", + "cash-app": "\u{e7d4}", + "disqus": "\u{e7d5}", + "11ty": "\u{e7d6}", + "eleventy": "\u{e7d6}", + "kakao-talk": "\u{e7d7}", + "linktree": "\u{e7d8}", + "notion": "\u{e7d9}", + "pandora": "\u{e7da}", + "pixelfed": "\u{e7db}", + "tidal": "\u{e7dc}", + "vsco": "\u{e7dd}", + "w3c": "\u{e7de}", + "wireless": "\u{e7df}", + "circle-moon": "\u{e7e0}", + "person-meditating": "\u{e7e1}", + "lumon": "\u{e7e2}", + "lumon-drop": "\u{e7e3}", + "square-figma": "\u{e7e4}", + "baseball-bat": "\u{e7e5}", + "hockey-stick": "\u{e7e6}", + "arrow-u-turn-down-left": "\u{e7e7}", + "arrow-u-turn-down-right": "\u{e7e8}", + "arrow-u-turn-left-down": "\u{e7e9}", + "arrow-u-turn-left-up": "\u{e7ea}", + "arrow-u-turn-right-down": "\u{e7eb}", + "arrow-u-turn-right-up": "\u{e7ec}", + "arrow-u-turn-up-left": "\u{e7ed}", + "arrow-u-turn-up-right": "\u{e7ee}", + "u-turn-down-left": "\u{e7ef}", + "u-turn-down-right": "\u{e7f0}", + "u-turn": "\u{e7f1}", + "u-turn-left-down": "\u{e7f1}", + "u-turn-left-up": "\u{e7f2}", + "u-turn-right-down": "\u{e7f3}", + "u-turn-right-up": "\u{e7f4}", + "u-turn-up-left": "\u{e7f5}", + "u-turn-up-right": "\u{e7f6}", + "triple-chevrons-down": "\u{e7f7}", + "triple-chevrons-left": "\u{e7f8}", + "triple-chevrons-right": "\u{e7f9}", + "triple-chevrons-up": "\u{e7fa}", + "file-aiff": "\u{e7fb}", + "file-odf": "\u{e7fc}", + "file-tex": "\u{e7fd}", + "file-wav": "\u{e7fe}", + "tex": "\u{e7ff}", + "droplet-plus": "\u{e800}", + "hand-holding-star": "\u{e801}", + "transmission": "\u{e802}", + "alarm-minus": "\u{e803}", + "file-brackets-curly": "\u{e804}", + "file-midi": "\u{e805}", + "midi": "\u{e806}", + "non-binary": "\u{e807}", + "rectangle-beta": "\u{e808}", + "shield-user": "\u{e809}", + "spiral": "\u{e80a}", + "picture-in-picture": "\u{e80b}", + "circle-half-horizontal": "\u{e80c}", + "circle-half-stroke-horizontal": "\u{e80d}", + "square-half-horizontal": "\u{e80e}", + "square-half-stroke-horizontal": "\u{e80f}", + "ship-large": "\u{e810}", + "butterfly": "\u{e811}", + "duolingo": "\u{e812}", + "mobile-rotate": "\u{e813}", + "mobile-rotate-reverse": "\u{e814}", + "mobile-slash": "\u{e815}", + "mobile-vibrate": "\u{e816}", + "mobile-vibrate-slash": "\u{e817}", + "almost-equal-to": "\u{e818}", + "sneaker-running": "\u{e819}", + "horseshoe": "\u{e81a}", + "single-quote-left": "\u{e81b}", + "single-quote-right": "\u{e81c}", + "bus-side": "\u{e81d}", + "bus-stop": "\u{e81e}", + "train-stop": "\u{e81f}", + "heptagon": "\u{e820}", + "septagon": "\u{e820}", + "mailbox-open-empty": "\u{e821}", + "mailbox-open-letter": "\u{e823}", + "lychee": "\u{e824}", + "tank-recovery": "\u{e825}", + "transducer": "\u{e826}", + "box-arrow-up": "\u{e827}", + "box-magnifying-glass": "\u{e828}", + "envelope-certificate": "\u{e829}", + "envelope-ribbon": "\u{e829}", + "water-temp": "\u{e82a}", + "water-temperature": "\u{e82a}", + "aeropress": "\u{e82b}", + "caret-large-down": "\u{e82c}", + "caret-large-left": "\u{e82d}", + "caret-large-right": "\u{e82e}", + "caret-large-up": "\u{e82f}", + "chemex": "\u{e830}", + "hand-shaka": "\u{e831}", + "kettlebell": "\u{e832}", + "supportnow": "\u{e833}", + "foot-wing": "\u{e834}", + "pump-impeller": "\u{e835}", + "arrow-rotate-left-10": "\u{e836}", + "arrow-rotate-right-10": "\u{e837}", + "tor-browser": "\u{e838}", + "arrow-archery": "\u{e839}", + "bow-archery": "\u{e83a}", + "eye-closed": "\u{e83b}", + "file-css": "\u{e83c}", + "file-html": "\u{e83d}", + "file-js": "\u{e83e}", + "layer": "\u{e83f}", + "typescript": "\u{e840}", + "file-icns": "\u{e841}", + "link-broken": "\u{e842}", + "gpu": "\u{e843}", + "square-deskpro": "\u{e844}", + "aquarius": "\u{e845}", + "aries": "\u{e846}", + "cancer": "\u{e847}", + "capricorn": "\u{e848}", + "gemini": "\u{e849}", + "leo": "\u{e84a}", + "libra": "\u{e84b}", + "pisces": "\u{e84c}", + "sagittarius": "\u{e84d}", + "scorpio": "\u{e84e}", + "taurus": "\u{e84f}", + "virgo": "\u{e850}", + "circle-zulip": "\u{e851}", + "julia": "\u{e852}", + "zulip": "\u{e853}", + "unison": "\u{e854}", + "bgg": "\u{e855}", + "board-game-geek": "\u{e855}", + "ko-fi": "\u{e856}", + "kubernetes": "\u{e857}", + "postgresql": "\u{e858}", + "scaleway": "\u{e859}", + "venmo": "\u{e85a}", + "venmo-v": "\u{e85b}", + "unreal-engine": "\u{e85c}", + "globaleaks": "\u{e85d}", + "solana": "\u{e85e}", + "threema": "\u{e85f}", + "forgejo": "\u{e860}", + "claude": "\u{e861}", + "bicep": "\u{e862}", + "gitee": "\u{e863}", + "xmpp": "\u{e864}", + "fediverse": "\u{e865}", + "tailwind-css": "\u{e866}", + "arch-linux": "\u{e867}", + "svelte": "\u{e868}", + "hugging-face": "\u{e869}", + "leetcode": "\u{e86a}", + "openstreetmap": "\u{e86b}", + "rectangle-irc": "\u{e86c}", + "ultralytics": "\u{e86d}", + "ultralytics-hub": "\u{e86e}", + "ultralytics-yolo": "\u{e86f}", + "moon-first-quarter": "\u{e870}", + "moon-last-quarter-inverse": "\u{e870}", + "moon-full": "\u{e871}", + "moon-new-inverse": "\u{e871}", + "moon-first-quarter-inverse": "\u{e872}", + "moon-last-quarter": "\u{e872}", + "moon-full-inverse": "\u{e873}", + "moon-new": "\u{e873}", + "moon-waning-crescent": "\u{e874}", + "moon-waxing-gibbous-inverse": "\u{e874}", + "moon-waning-gibbous": "\u{e875}", + "moon-waxing-crescent-inverse": "\u{e875}", + "moon-waning-gibbous-inverse": "\u{e876}", + "moon-waxing-crescent": "\u{e876}", + "moon-waning-crescent-inverse": "\u{e877}", + "moon-waxing-gibbous": "\u{e877}", + "burst-new": "\u{e878}", + "obsidian": "\u{e879}", + "rectangle-new": "\u{e87a}", + "zoom": "\u{e87b}", + "opossum": "\u{e87c}", + "possum": "\u{e87c}", + "input-password": "\u{e87d}", + "desk": "\u{e87e}", + "dresser": "\u{e87f}", + "stool": "\u{e880}", + "wardrobe": "\u{e881}", + "table-dining": "\u{e882}", + "chest-drawers": "\u{e883}", + "oar": "\u{e884}", + "oars": "\u{e885}", + "arrow-rotate-left-15": "\u{e886}", + "arrow-rotate-left-30": "\u{e887}", + "arrow-rotate-right-15": "\u{e888}", + "arrow-rotate-right-30": "\u{e889}", + "vim": "\u{e88a}", + "rows-3": "\u{e88b}", + "table-cells-merge": "\u{e88c}", + "table-cells-split": "\u{e88d}", + "table-columns-add-after": "\u{e88e}", + "table-columns-add-before": "\u{e88f}", + "table-columns-merge-next": "\u{e890}", + "table-columns-merge-previous": "\u{e891}", + "table-columns-remove-after": "\u{e892}", + "table-columns-remove-before": "\u{e893}", + "table-rows-add-above": "\u{e894}", + "table-rows-add-below": "\u{e895}", + "table-rows-merge-next": "\u{e896}", + "table-rows-merge-previous": "\u{e897}", + "table-rows-remove-above": "\u{e898}", + "table-rows-remove-below": "\u{e899}", + "table-slash": "\u{e89a}", + "kayak": "\u{e89b}", + "canoe-person": "\u{e89c}", + "utility-can": "\u{e89d}", + "table-bar": "\u{e89e}", + "owl": "\u{e89f}", + "rectangle-api": "\u{e8a0}", + "nas": "\u{e8a1}", + "poker-chip": "\u{e8a2}", + "tower-receive": "\u{e8a3}", + "gear-api": "\u{e8a4}", + "gear-complex-api": "\u{e8a5}", + "globe-www": "\u{e8a6}", + "label": "\u{e8a7}", + "rectangle-n-a": "\u{e8a8}", + "remote": "\u{e8a9}", + "image-broken": "\u{e8aa}", + "symfonycasts": "\u{e8ab}", + "build-awesome": "\u{e8ac}", + "codeberg": "\u{e8ad}", + "devpost": "\u{e8ae}", + "envelope-heart": "\u{e8af}", + "internet-archive": "\u{e8b1}", + "lets-encrypt": "\u{e8b2}", + "matrix": "\u{e8b3}", + "mattermost": "\u{e8b4}", + "nextcloud": "\u{e8b5}", + "roblox-creator-studio": "\u{e8b6}", + "square-build-awesome-stroke": "\u{e8b7}", + "substack": "\u{e8b8}", + "tesla": "\u{e8b9}", + "xrp": "\u{e8ba}", + "xrpl": "\u{e8bb}", + "youtube-shorts": "\u{e8bc}", + "ror": "\u{e8bd}", + "visual-studio": "\u{e8be}", + "dolibarr": "\u{e8bf}", + "obs-studio": "\u{e8c0}", + "storybook": "\u{e8c1}", + "a11y-project": "\u{e8c2}", + "Suricata": "\u{e8c4}", + "meerkat": "\u{e8c4}", + "suricate": "\u{e8c4}", + "suricatta": "\u{e8c4}", + "file-md": "\u{e8c5}", + "file-txt": "\u{e8c6}", + "copilot": "\u{e8c7}", + "glass-martini": "\u{f000}", + "martini-glass-empty": "\u{f000}", + "music": "\u{f001}", + "magnifying-glass": "\u{f002}", + "search": "\u{f002}", + "heart": "\u{f004}", + "star": "\u{f005}", + "user": "\u{f007}", + "film": "\u{f008}", + "table-cells-large": "\u{f009}", + "th-large": "\u{f009}", + "table-cells": "\u{f00a}", + "th": "\u{f00a}", + "table-list": "\u{f00b}", + "th-list": "\u{f00b}", + "check": "\u{f00c}", + "close": "\u{f00d}", + "multiply": "\u{f00d}", + "remove": "\u{f00d}", + "times": "\u{f00d}", + "xmark": "\u{f00d}", + "magnifying-glass-plus": "\u{f00e}", + "search-plus": "\u{f00e}", + "magnifying-glass-minus": "\u{f010}", + "search-minus": "\u{f010}", + "power-off": "\u{f011}", + "signal": "\u{f012}", + "signal-5": "\u{f012}", + "signal-perfect": "\u{f012}", + "cog": "\u{f013}", + "gear": "\u{f013}", + "home": "\u{f015}", + "home-alt": "\u{f015}", + "home-lg-alt": "\u{f015}", + "house": "\u{f015}", + "clock": "\u{f017}", + "clock-four": "\u{f017}", + "road": "\u{f018}", + "download": "\u{f019}", + "inbox": "\u{f01c}", + "arrow-right-rotate": "\u{f01e}", + "arrow-rotate-forward": "\u{f01e}", + "arrow-rotate-right": "\u{f01e}", + "redo": "\u{f01e}", + "arrows-rotate": "\u{f021}", + "refresh": "\u{f021}", + "sync": "\u{f021}", + "list-alt": "\u{f022}", + "rectangle-list": "\u{f022}", + "lock": "\u{f023}", + "flag": "\u{f024}", + "headphones": "\u{f025}", + "volume-off": "\u{f026}", + "volume-down": "\u{f027}", + "volume-low": "\u{f027}", + "volume-high": "\u{f028}", + "volume-up": "\u{f028}", + "qrcode": "\u{f029}", + "barcode": "\u{f02a}", + "tag": "\u{f02b}", + "tags": "\u{f02c}", + "book": "\u{f02d}", + "bookmark": "\u{f02e}", + "print": "\u{f02f}", + "camera": "\u{f030}", + "camera-alt": "\u{f030}", + "font": "\u{f031}", + "bold": "\u{f032}", + "italic": "\u{f033}", + "text-height": "\u{f034}", + "text-width": "\u{f035}", + "align-left": "\u{f036}", + "align-center": "\u{f037}", + "align-right": "\u{f038}", + "align-justify": "\u{f039}", + "list": "\u{f03a}", + "list-squares": "\u{f03a}", + "dedent": "\u{f03b}", + "outdent": "\u{f03b}", + "indent": "\u{f03c}", + "video": "\u{f03d}", + "video-camera": "\u{f03d}", + "image": "\u{f03e}", + "location-pin": "\u{f041}", + "map-marker": "\u{f041}", + "adjust": "\u{f042}", + "circle-half-stroke": "\u{f042}", + "droplet": "\u{f043}", + "tint": "\u{f043}", + "edit": "\u{f044}", + "pen-to-square": "\u{f044}", + "arrows": "\u{f047}", + "arrows-up-down-left-right": "\u{f047}", + "backward-step": "\u{f048}", + "step-backward": "\u{f048}", + "backward-fast": "\u{f049}", + "fast-backward": "\u{f049}", + "backward": "\u{f04a}", + "play": "\u{f04b}", + "pause": "\u{f04c}", + "stop": "\u{f04d}", + "forward": "\u{f04e}", + "fast-forward": "\u{f050}", + "forward-fast": "\u{f050}", + "forward-step": "\u{f051}", + "step-forward": "\u{f051}", + "eject": "\u{f052}", + "chevron-left": "\u{f053}", + "chevron-right": "\u{f054}", + "circle-plus": "\u{f055}", + "plus-circle": "\u{f055}", + "circle-minus": "\u{f056}", + "minus-circle": "\u{f056}", + "circle-xmark": "\u{f057}", + "times-circle": "\u{f057}", + "xmark-circle": "\u{f057}", + "check-circle": "\u{f058}", + "circle-check": "\u{f058}", + "circle-question": "\u{f059}", + "question-circle": "\u{f059}", + "circle-info": "\u{f05a}", + "info-circle": "\u{f05a}", + "crosshairs": "\u{f05b}", + "ban": "\u{f05e}", + "cancel": "\u{f05e}", + "arrow-left": "\u{f060}", + "arrow-right": "\u{f061}", + "arrow-up": "\u{f062}", + "arrow-down": "\u{f063}", + "mail-forward": "\u{f064}", + "share": "\u{f064}", + "expand": "\u{f065}", + "compress": "\u{f066}", + "minus": "\u{f068}", + "subtract": "\u{f068}", + "circle-exclamation": "\u{f06a}", + "exclamation-circle": "\u{f06a}", + "gift": "\u{f06b}", + "leaf": "\u{f06c}", + "fire": "\u{f06d}", + "eye": "\u{f06e}", + "eye-slash": "\u{f070}", + "exclamation-triangle": "\u{f071}", + "triangle-exclamation": "\u{f071}", + "warning": "\u{f071}", + "plane": "\u{f072}", + "calendar-alt": "\u{f073}", + "calendar-days": "\u{f073}", + "random": "\u{f074}", + "shuffle": "\u{f074}", + "comment": "\u{f075}", + "magnet": "\u{f076}", + "chevron-up": "\u{f077}", + "chevron-down": "\u{f078}", + "retweet": "\u{f079}", + "cart-shopping": "\u{f07a}", + "shopping-cart": "\u{f07a}", + "folder": "\u{f07b}", + "folder-blank": "\u{f07b}", + "folder-open": "\u{f07c}", + "arrows-up-down": "\u{f07d}", + "arrows-v": "\u{f07d}", + "arrows-h": "\u{f07e}", + "arrows-left-right": "\u{f07e}", + "bar-chart": "\u{f080}", + "chart-bar": "\u{f080}", + "square-twitter": "\u{f081}", + "twitter-square": "\u{f081}", + "facebook-square": "\u{f082}", + "square-facebook": "\u{f082}", + "camera-retro": "\u{f083}", + "key": "\u{f084}", + "cogs": "\u{f085}", + "gears": "\u{f085}", + "comments": "\u{f086}", + "star-half": "\u{f089}", + "arrow-right-from-bracket": "\u{f08b}", + "sign-out": "\u{f08b}", + "linkedin": "\u{f08c}", + "thumb-tack": "\u{f08d}", + "thumbtack": "\u{f08d}", + "arrow-up-right-from-square": "\u{f08e}", + "external-link": "\u{f08e}", + "arrow-right-to-bracket": "\u{f090}", + "sign-in": "\u{f090}", + "trophy": "\u{f091}", + "github-square": "\u{f092}", + "square-github": "\u{f092}", + "upload": "\u{f093}", + "lemon": "\u{f094}", + "phone": "\u{f095}", + "phone-square": "\u{f098}", + "square-phone": "\u{f098}", + "twitter": "\u{f099}", + "facebook": "\u{f09a}", + "github": "\u{f09b}", + "unlock": "\u{f09c}", + "credit-card": "\u{f09d}", + "credit-card-alt": "\u{f09d}", + "feed": "\u{f09e}", + "rss": "\u{f09e}", + "hard-drive": "\u{f0a0}", + "hdd": "\u{f0a0}", + "bullhorn": "\u{f0a1}", + "certificate": "\u{f0a3}", + "hand-point-right": "\u{f0a4}", + "hand-point-left": "\u{f0a5}", + "hand-point-up": "\u{f0a6}", + "hand-point-down": "\u{f0a7}", + "arrow-circle-left": "\u{f0a8}", + "circle-arrow-left": "\u{f0a8}", + "arrow-circle-right": "\u{f0a9}", + "circle-arrow-right": "\u{f0a9}", + "arrow-circle-up": "\u{f0aa}", + "circle-arrow-up": "\u{f0aa}", + "arrow-circle-down": "\u{f0ab}", + "circle-arrow-down": "\u{f0ab}", + "globe": "\u{f0ac}", + "wrench": "\u{f0ad}", + "list-check": "\u{f0ae}", + "tasks": "\u{f0ae}", + "filter": "\u{f0b0}", + "briefcase": "\u{f0b1}", + "arrows-alt": "\u{f0b2}", + "up-down-left-right": "\u{f0b2}", + "users": "\u{f0c0}", + "chain": "\u{f0c1}", + "link": "\u{f0c1}", + "cloud": "\u{f0c2}", + "flask": "\u{f0c3}", + "cut": "\u{f0c4}", + "scissors": "\u{f0c4}", + "copy": "\u{f0c5}", + "paperclip": "\u{f0c6}", + "floppy-disk": "\u{f0c7}", + "save": "\u{f0c7}", + "square": "\u{f0c8}", + "bars": "\u{f0c9}", + "navicon": "\u{f0c9}", + "list-dots": "\u{f0ca}", + "list-ul": "\u{f0ca}", + "list-1-2": "\u{f0cb}", + "list-numeric": "\u{f0cb}", + "list-ol": "\u{f0cb}", + "strikethrough": "\u{f0cc}", + "underline": "\u{f0cd}", + "table": "\u{f0ce}", + "magic": "\u{f0d0}", + "wand-magic": "\u{f0d0}", + "truck": "\u{f0d1}", + "pinterest": "\u{f0d2}", + "pinterest-square": "\u{f0d3}", + "square-pinterest": "\u{f0d3}", + "google-plus-square": "\u{f0d4}", + "square-google-plus": "\u{f0d4}", + "google-plus-g": "\u{f0d5}", + "money-bill": "\u{f0d6}", + "caret-down": "\u{f0d7}", + "caret-up": "\u{f0d8}", + "caret-left": "\u{f0d9}", + "caret-right": "\u{f0da}", + "columns": "\u{f0db}", + "table-columns": "\u{f0db}", + "sort": "\u{f0dc}", + "unsorted": "\u{f0dc}", + "sort-desc": "\u{f0dd}", + "sort-down": "\u{f0dd}", + "sort-asc": "\u{f0de}", + "sort-up": "\u{f0de}", + "envelope": "\u{f0e0}", + "linkedin-in": "\u{f0e1}", + "arrow-left-rotate": "\u{f0e2}", + "arrow-rotate-back": "\u{f0e2}", + "arrow-rotate-backward": "\u{f0e2}", + "arrow-rotate-left": "\u{f0e2}", + "undo": "\u{f0e2}", + "gavel": "\u{f0e3}", + "legal": "\u{f0e3}", + "bolt": "\u{f0e7}", + "zap": "\u{f0e7}", + "sitemap": "\u{f0e8}", + "umbrella": "\u{f0e9}", + "file-clipboard": "\u{f0ea}", + "paste": "\u{f0ea}", + "lightbulb": "\u{f0eb}", + "arrow-right-arrow-left": "\u{f0ec}", + "exchange": "\u{f0ec}", + "cloud-arrow-down": "\u{f0ed}", + "cloud-download": "\u{f0ed}", + "cloud-download-alt": "\u{f0ed}", + "cloud-arrow-up": "\u{f0ee}", + "cloud-upload": "\u{f0ee}", + "cloud-upload-alt": "\u{f0ee}", + "user-doctor": "\u{f0f0}", + "user-md": "\u{f0f0}", + "stethoscope": "\u{f0f1}", + "suitcase": "\u{f0f2}", + "bell": "\u{f0f3}", + "coffee": "\u{f0f4}", + "mug-saucer": "\u{f0f4}", + "hospital": "\u{f0f8}", + "hospital-alt": "\u{f0f8}", + "hospital-wide": "\u{f0f8}", + "ambulance": "\u{f0f9}", + "truck-medical": "\u{f0f9}", + "medkit": "\u{f0fa}", + "suitcase-medical": "\u{f0fa}", + "fighter-jet": "\u{f0fb}", + "jet-fighter": "\u{f0fb}", + "beer": "\u{f0fc}", + "beer-mug-empty": "\u{f0fc}", + "h-square": "\u{f0fd}", + "square-h": "\u{f0fd}", + "plus-square": "\u{f0fe}", + "square-plus": "\u{f0fe}", + "angle-double-left": "\u{f100}", + "angles-left": "\u{f100}", + "angle-double-right": "\u{f101}", + "angles-right": "\u{f101}", + "angle-double-up": "\u{f102}", + "angles-up": "\u{f102}", + "angle-double-down": "\u{f103}", + "angles-down": "\u{f103}", + "angle-left": "\u{f104}", + "angle-right": "\u{f105}", + "angle-up": "\u{f106}", + "angle-down": "\u{f107}", + "laptop": "\u{f109}", + "tablet-button": "\u{f10a}", + "mobile-button": "\u{f10b}", + "quote-left": "\u{f10d}", + "quote-left-alt": "\u{f10d}", + "quote-right": "\u{f10e}", + "quote-right-alt": "\u{f10e}", + "spinner": "\u{f110}", + "circle": "\u{f111}", + "github-alt": "\u{f113}", + "face-smile": "\u{f118}", + "smile": "\u{f118}", + "face-frown": "\u{f119}", + "frown": "\u{f119}", + "face-meh": "\u{f11a}", + "meh": "\u{f11a}", + "gamepad": "\u{f11b}", + "keyboard": "\u{f11c}", + "flag-checkered": "\u{f11e}", + "terminal": "\u{f120}", + "code": "\u{f121}", + "mail-reply-all": "\u{f122}", + "reply-all": "\u{f122}", + "location-arrow": "\u{f124}", + "crop": "\u{f125}", + "code-branch": "\u{f126}", + "chain-broken": "\u{f127}", + "chain-slash": "\u{f127}", + "link-slash": "\u{f127}", + "unlink": "\u{f127}", + "info": "\u{f129}", + "superscript": "\u{f12b}", + "subscript": "\u{f12c}", + "eraser": "\u{f12d}", + "puzzle-piece": "\u{f12e}", + "microphone": "\u{f130}", + "microphone-slash": "\u{f131}", + "shield": "\u{f132}", + "shield-blank": "\u{f132}", + "calendar": "\u{f133}", + "fire-extinguisher": "\u{f134}", + "rocket": "\u{f135}", + "maxcdn": "\u{f136}", + "chevron-circle-left": "\u{f137}", + "circle-chevron-left": "\u{f137}", + "chevron-circle-right": "\u{f138}", + "circle-chevron-right": "\u{f138}", + "chevron-circle-up": "\u{f139}", + "circle-chevron-up": "\u{f139}", + "chevron-circle-down": "\u{f13a}", + "circle-chevron-down": "\u{f13a}", + "html5": "\u{f13b}", + "css3": "\u{f13c}", + "anchor": "\u{f13d}", + "unlock-alt": "\u{f13e}", + "unlock-keyhole": "\u{f13e}", + "bullseye": "\u{f140}", + "ellipsis": "\u{f141}", + "ellipsis-h": "\u{f141}", + "ellipsis-v": "\u{f142}", + "ellipsis-vertical": "\u{f142}", + "rss-square": "\u{f143}", + "square-rss": "\u{f143}", + "circle-play": "\u{f144}", + "play-circle": "\u{f144}", + "ticket": "\u{f145}", + "minus-square": "\u{f146}", + "square-minus": "\u{f146}", + "arrow-turn-up": "\u{f148}", + "level-up": "\u{f148}", + "arrow-turn-down": "\u{f149}", + "level-down": "\u{f149}", + "check-square": "\u{f14a}", + "square-check": "\u{f14a}", + "pen-square": "\u{f14b}", + "pencil-square": "\u{f14b}", + "square-pen": "\u{f14b}", + "external-link-square": "\u{f14c}", + "square-arrow-up-right": "\u{f14c}", + "share-from-square": "\u{f14d}", + "share-square": "\u{f14d}", + "compass": "\u{f14e}", + "caret-square-down": "\u{f150}", + "square-caret-down": "\u{f150}", + "caret-square-up": "\u{f151}", + "square-caret-up": "\u{f151}", + "caret-square-right": "\u{f152}", + "square-caret-right": "\u{f152}", + "eur": "\u{f153}", + "euro": "\u{f153}", + "euro-sign": "\u{f153}", + "gbp": "\u{f154}", + "pound-sign": "\u{f154}", + "sterling-sign": "\u{f154}", + "rupee": "\u{f156}", + "rupee-sign": "\u{f156}", + "cny": "\u{f157}", + "jpy": "\u{f157}", + "rmb": "\u{f157}", + "yen": "\u{f157}", + "yen-sign": "\u{f157}", + "rouble": "\u{f158}", + "rub": "\u{f158}", + "ruble": "\u{f158}", + "ruble-sign": "\u{f158}", + "krw": "\u{f159}", + "won": "\u{f159}", + "won-sign": "\u{f159}", + "btc": "\u{f15a}", + "file": "\u{f15b}", + "file-alt": "\u{f15c}", + "file-lines": "\u{f15c}", + "file-text": "\u{f15c}", + "arrow-down-a-z": "\u{f15d}", + "sort-alpha-asc": "\u{f15d}", + "sort-alpha-down": "\u{f15d}", + "arrow-up-a-z": "\u{f15e}", + "sort-alpha-up": "\u{f15e}", + "arrow-down-wide-short": "\u{f160}", + "sort-amount-asc": "\u{f160}", + "sort-amount-down": "\u{f160}", + "arrow-up-wide-short": "\u{f161}", + "sort-amount-up": "\u{f161}", + "arrow-down-1-9": "\u{f162}", + "sort-numeric-asc": "\u{f162}", + "sort-numeric-down": "\u{f162}", + "arrow-up-1-9": "\u{f163}", + "sort-numeric-up": "\u{f163}", + "thumbs-up": "\u{f164}", + "thumbs-down": "\u{f165}", + "youtube": "\u{f167}", + "xing": "\u{f168}", + "square-xing": "\u{f169}", + "xing-square": "\u{f169}", + "dropbox": "\u{f16b}", + "stack-overflow": "\u{f16c}", + "instagram": "\u{f16d}", + "flickr": "\u{f16e}", + "adn": "\u{f170}", + "bitbucket": "\u{f171}", + "tumblr": "\u{f173}", + "square-tumblr": "\u{f174}", + "tumblr-square": "\u{f174}", + "arrow-down-long": "\u{f175}", + "long-arrow-down": "\u{f175}", + "arrow-up-long": "\u{f176}", + "long-arrow-up": "\u{f176}", + "arrow-left-long": "\u{f177}", + "long-arrow-left": "\u{f177}", + "arrow-right-long": "\u{f178}", + "long-arrow-right": "\u{f178}", + "apple": "\u{f179}", + "windows": "\u{f17a}", + "android": "\u{f17b}", + "linux": "\u{f17c}", + "dribbble": "\u{f17d}", + "skype": "\u{f17e}", + "foursquare": "\u{f180}", + "trello": "\u{f181}", + "female": "\u{f182}", + "person-dress": "\u{f182}", + "male": "\u{f183}", + "person": "\u{f183}", + "gratipay": "\u{f184}", + "sun": "\u{f185}", + "moon": "\u{f186}", + "archive": "\u{f187}", + "box-archive": "\u{f187}", + "bug": "\u{f188}", + "vk": "\u{f189}", + "weibo": "\u{f18a}", + "renren": "\u{f18b}", + "pagelines": "\u{f18c}", + "stack-exchange": "\u{f18d}", + "caret-square-left": "\u{f191}", + "square-caret-left": "\u{f191}", + "circle-dot": "\u{f192}", + "dot-circle": "\u{f192}", + "wheelchair": "\u{f193}", + "square-vimeo": "\u{f194}", + "vimeo-square": "\u{f194}", + "lira-sign": "\u{f195}", + "shuttle-space": "\u{f197}", + "space-shuttle": "\u{f197}", + "slack": "\u{f198}", + "slack-hash": "\u{f198}", + "envelope-square": "\u{f199}", + "square-envelope": "\u{f199}", + "wordpress": "\u{f19a}", + "openid": "\u{f19b}", + "bank": "\u{f19c}", + "building-columns": "\u{f19c}", + "institution": "\u{f19c}", + "museum": "\u{f19c}", + "university": "\u{f19c}", + "graduation-cap": "\u{f19d}", + "mortar-board": "\u{f19d}", + "yahoo": "\u{f19e}", + "google": "\u{f1a0}", + "reddit": "\u{f1a1}", + "reddit-square": "\u{f1a2}", + "square-reddit": "\u{f1a2}", + "stumbleupon-circle": "\u{f1a3}", + "stumbleupon": "\u{f1a4}", + "delicious": "\u{f1a5}", + "digg": "\u{f1a6}", + "pied-piper-pp": "\u{f1a7}", + "pied-piper-alt": "\u{f1a8}", + "drupal": "\u{f1a9}", + "joomla": "\u{f1aa}", + "language": "\u{f1ab}", + "fax": "\u{f1ac}", + "building": "\u{f1ad}", + "child": "\u{f1ae}", + "paw": "\u{f1b0}", + "cube": "\u{f1b2}", + "cubes": "\u{f1b3}", + "behance": "\u{f1b4}", + "behance-square": "\u{f1b5}", + "square-behance": "\u{f1b5}", + "steam": "\u{f1b6}", + "square-steam": "\u{f1b7}", + "steam-square": "\u{f1b7}", + "recycle": "\u{f1b8}", + "automobile": "\u{f1b9}", + "car": "\u{f1b9}", + "cab": "\u{f1ba}", + "taxi": "\u{f1ba}", + "tree": "\u{f1bb}", + "spotify": "\u{f1bc}", + "deviantart": "\u{f1bd}", + "soundcloud": "\u{f1be}", + "database": "\u{f1c0}", + "file-pdf": "\u{f1c1}", + "file-word": "\u{f1c2}", + "file-excel": "\u{f1c3}", + "file-powerpoint": "\u{f1c4}", + "file-image": "\u{f1c5}", + "file-archive": "\u{f1c6}", + "file-zipper": "\u{f1c6}", + "file-audio": "\u{f1c7}", + "file-video": "\u{f1c8}", + "file-code": "\u{f1c9}", + "vine": "\u{f1ca}", + "codepen": "\u{f1cb}", + "jsfiddle": "\u{f1cc}", + "life-ring": "\u{f1cd}", + "circle-notch": "\u{f1ce}", + "rebel": "\u{f1d0}", + "empire": "\u{f1d1}", + "git-square": "\u{f1d2}", + "square-git": "\u{f1d2}", + "git": "\u{f1d3}", + "hacker-news": "\u{f1d4}", + "tencent-weibo": "\u{f1d5}", + "qq": "\u{f1d6}", + "weixin": "\u{f1d7}", + "paper-plane": "\u{f1d8}", + "clock-rotate-left": "\u{f1da}", + "history": "\u{f1da}", + "header": "\u{f1dc}", + "heading": "\u{f1dc}", + "paragraph": "\u{f1dd}", + "sliders": "\u{f1de}", + "sliders-h": "\u{f1de}", + "share-alt": "\u{f1e0}", + "share-nodes": "\u{f1e0}", + "share-alt-square": "\u{f1e1}", + "square-share-nodes": "\u{f1e1}", + "bomb": "\u{f1e2}", + "futbol": "\u{f1e3}", + "futbol-ball": "\u{f1e3}", + "soccer-ball": "\u{f1e3}", + "teletype": "\u{f1e4}", + "tty": "\u{f1e4}", + "binoculars": "\u{f1e5}", + "plug": "\u{f1e6}", + "slideshare": "\u{f1e7}", + "twitch": "\u{f1e8}", + "yelp": "\u{f1e9}", + "newspaper": "\u{f1ea}", + "wifi": "\u{f1eb}", + "wifi-3": "\u{f1eb}", + "wifi-strong": "\u{f1eb}", + "calculator": "\u{f1ec}", + "paypal": "\u{f1ed}", + "google-wallet": "\u{f1ee}", + "cc-visa": "\u{f1f0}", + "cc-mastercard": "\u{f1f1}", + "cc-discover": "\u{f1f2}", + "cc-amex": "\u{f1f3}", + "cc-paypal": "\u{f1f4}", + "cc-stripe": "\u{f1f5}", + "bell-slash": "\u{f1f6}", + "trash": "\u{f1f8}", + "copyright": "\u{f1f9}", + "eye-dropper": "\u{f1fb}", + "eye-dropper-empty": "\u{f1fb}", + "eyedropper": "\u{f1fb}", + "paint-brush": "\u{f1fc}", + "paintbrush": "\u{f1fc}", + "birthday-cake": "\u{f1fd}", + "cake": "\u{f1fd}", + "cake-candles": "\u{f1fd}", + "area-chart": "\u{f1fe}", + "chart-area": "\u{f1fe}", + "chart-pie": "\u{f200}", + "pie-chart": "\u{f200}", + "chart-line": "\u{f201}", + "line-chart": "\u{f201}", + "lastfm": "\u{f202}", + "lastfm-square": "\u{f203}", + "square-lastfm": "\u{f203}", + "toggle-off": "\u{f204}", + "toggle-on": "\u{f205}", + "bicycle": "\u{f206}", + "bus": "\u{f207}", + "ioxhost": "\u{f208}", + "angellist": "\u{f209}", + "closed-captioning": "\u{f20a}", + "ils": "\u{f20b}", + "shekel": "\u{f20b}", + "shekel-sign": "\u{f20b}", + "sheqel": "\u{f20b}", + "sheqel-sign": "\u{f20b}", + "buysellads": "\u{f20d}", + "connectdevelop": "\u{f20e}", + "dashcube": "\u{f210}", + "forumbee": "\u{f211}", + "leanpub": "\u{f212}", + "sellsy": "\u{f213}", + "shirtsinbulk": "\u{f214}", + "simplybuilt": "\u{f215}", + "skyatlas": "\u{f216}", + "cart-plus": "\u{f217}", + "cart-arrow-down": "\u{f218}", + "diamond": "\u{f219}", + "ship": "\u{f21a}", + "user-secret": "\u{f21b}", + "motorcycle": "\u{f21c}", + "street-view": "\u{f21d}", + "heart-pulse": "\u{f21e}", + "heartbeat": "\u{f21e}", + "venus": "\u{f221}", + "mars": "\u{f222}", + "mercury": "\u{f223}", + "mars-and-venus": "\u{f224}", + "transgender": "\u{f225}", + "transgender-alt": "\u{f225}", + "venus-double": "\u{f226}", + "mars-double": "\u{f227}", + "venus-mars": "\u{f228}", + "mars-stroke": "\u{f229}", + "mars-stroke-up": "\u{f22a}", + "mars-stroke-v": "\u{f22a}", + "mars-stroke-h": "\u{f22b}", + "mars-stroke-right": "\u{f22b}", + "neuter": "\u{f22c}", + "genderless": "\u{f22d}", + "pinterest-p": "\u{f231}", + "whatsapp": "\u{f232}", + "server": "\u{f233}", + "user-plus": "\u{f234}", + "user-times": "\u{f235}", + "user-xmark": "\u{f235}", + "bed": "\u{f236}", + "viacoin": "\u{f237}", + "train": "\u{f238}", + "subway": "\u{f239}", + "train-subway": "\u{f239}", + "medium": "\u{f23a}", + "medium-m": "\u{f23a}", + "y-combinator": "\u{f23b}", + "optin-monster": "\u{f23c}", + "opencart": "\u{f23d}", + "expeditedssl": "\u{f23e}", + "battery": "\u{f240}", + "battery-5": "\u{f240}", + "battery-full": "\u{f240}", + "battery-4": "\u{f241}", + "battery-three-quarters": "\u{f241}", + "battery-3": "\u{f242}", + "battery-half": "\u{f242}", + "battery-2": "\u{f243}", + "battery-quarter": "\u{f243}", + "battery-0": "\u{f244}", + "battery-empty": "\u{f244}", + "arrow-pointer": "\u{f245}", + "mouse-pointer": "\u{f245}", + "i-cursor": "\u{f246}", + "object-group": "\u{f247}", + "object-ungroup": "\u{f248}", + "note-sticky": "\u{f249}", + "sticky-note": "\u{f249}", + "cc-jcb": "\u{f24b}", + "cc-diners-club": "\u{f24c}", + "clone": "\u{f24d}", + "balance-scale": "\u{f24e}", + "scale-balanced": "\u{f24e}", + "hourglass-1": "\u{f251}", + "hourglass-start": "\u{f251}", + "hourglass-2": "\u{f252}", + "hourglass-half": "\u{f252}", + "hourglass-3": "\u{f253}", + "hourglass-end": "\u{f253}", + "hourglass": "\u{f254}", + "hourglass-empty": "\u{f254}", + "hand-back-fist": "\u{f255}", + "hand-rock": "\u{f255}", + "hand": "\u{f256}", + "hand-paper": "\u{f256}", + "hand-scissors": "\u{f257}", + "hand-lizard": "\u{f258}", + "hand-spock": "\u{f259}", + "hand-pointer": "\u{f25a}", + "hand-peace": "\u{f25b}", + "trademark": "\u{f25c}", + "registered": "\u{f25d}", + "creative-commons": "\u{f25e}", + "gg": "\u{f260}", + "gg-circle": "\u{f261}", + "odnoklassniki": "\u{f263}", + "odnoklassniki-square": "\u{f264}", + "square-odnoklassniki": "\u{f264}", + "get-pocket": "\u{f265}", + "wikipedia-w": "\u{f266}", + "safari": "\u{f267}", + "chrome": "\u{f268}", + "firefox": "\u{f269}", + "opera": "\u{f26a}", + "internet-explorer": "\u{f26b}", + "television": "\u{f26c}", + "tv": "\u{f26c}", + "tv-alt": "\u{f26c}", + "contao": "\u{f26d}", + "500px": "\u{f26e}", + "amazon": "\u{f270}", + "calendar-plus": "\u{f271}", + "calendar-minus": "\u{f272}", + "calendar-times": "\u{f273}", + "calendar-xmark": "\u{f273}", + "calendar-check": "\u{f274}", + "industry": "\u{f275}", + "map-pin": "\u{f276}", + "map-signs": "\u{f277}", + "signs-post": "\u{f277}", + "map": "\u{f279}", + "comment-alt": "\u{f27a}", + "message": "\u{f27a}", + "houzz": "\u{f27c}", + "vimeo-v": "\u{f27d}", + "black-tie": "\u{f27e}", + "fonticons": "\u{f280}", + "reddit-alien": "\u{f281}", + "edge": "\u{f282}", + "codiepie": "\u{f284}", + "modx": "\u{f285}", + "fort-awesome": "\u{f286}", + "usb": "\u{f287}", + "product-hunt": "\u{f288}", + "mixcloud": "\u{f289}", + "scribd": "\u{f28a}", + "circle-pause": "\u{f28b}", + "pause-circle": "\u{f28b}", + "circle-stop": "\u{f28d}", + "stop-circle": "\u{f28d}", + "bag-shopping": "\u{f290}", + "shopping-bag": "\u{f290}", + "basket-shopping": "\u{f291}", + "shopping-basket": "\u{f291}", + "bluetooth": "\u{f293}", + "bluetooth-b": "\u{f294}", + "gitlab": "\u{f296}", + "wpbeginner": "\u{f297}", + "wpforms": "\u{f298}", + "envira": "\u{f299}", + "universal-access": "\u{f29a}", + "blind": "\u{f29d}", + "person-walking-with-cane": "\u{f29d}", + "audio-description": "\u{f29e}", + "phone-volume": "\u{f2a0}", + "volume-control-phone": "\u{f2a0}", + "braille": "\u{f2a1}", + "assistive-listening-systems": "\u{f2a2}", + "ear-listen": "\u{f2a2}", + "american-sign-language-interpreting": "\u{f2a3}", + "asl-interpreting": "\u{f2a3}", + "hands-american-sign-language-interpreting": "\u{f2a3}", + "hands-asl-interpreting": "\u{f2a3}", + "deaf": "\u{f2a4}", + "deafness": "\u{f2a4}", + "ear-deaf": "\u{f2a4}", + "hard-of-hearing": "\u{f2a4}", + "glide": "\u{f2a5}", + "glide-g": "\u{f2a6}", + "hands": "\u{f2a7}", + "sign-language": "\u{f2a7}", + "signing": "\u{f2a7}", + "eye-low-vision": "\u{f2a8}", + "low-vision": "\u{f2a8}", + "viadeo": "\u{f2a9}", + "square-viadeo": "\u{f2aa}", + "viadeo-square": "\u{f2aa}", + "snapchat": "\u{f2ab}", + "snapchat-ghost": "\u{f2ab}", + "snapchat-square": "\u{f2ad}", + "square-snapchat": "\u{f2ad}", + "pied-piper": "\u{f2ae}", + "first-order": "\u{f2b0}", + "yoast": "\u{f2b1}", + "themeisle": "\u{f2b2}", + "google-plus": "\u{f2b3}", + "font-awesome": "\u{f2b4}", + "font-awesome-flag": "\u{f2b4}", + "font-awesome-logo-full": "\u{f2b4}", + "handshake": "\u{f2b5}", + "envelope-open": "\u{f2b6}", + "linode": "\u{f2b8}", + "address-book": "\u{f2b9}", + "contact-book": "\u{f2b9}", + "address-card": "\u{f2bb}", + "contact-card": "\u{f2bb}", + "vcard": "\u{f2bb}", + "circle-user": "\u{f2bd}", + "user-circle": "\u{f2bd}", + "id-badge": "\u{f2c1}", + "drivers-license": "\u{f2c2}", + "id-card": "\u{f2c2}", + "quora": "\u{f2c4}", + "free-code-camp": "\u{f2c5}", + "telegram": "\u{f2c6}", + "telegram-plane": "\u{f2c6}", + "temperature-4": "\u{f2c7}", + "temperature-full": "\u{f2c7}", + "thermometer-4": "\u{f2c7}", + "thermometer-full": "\u{f2c7}", + "temperature-3": "\u{f2c8}", + "temperature-three-quarters": "\u{f2c8}", + "thermometer-3": "\u{f2c8}", + "thermometer-three-quarters": "\u{f2c8}", + "temperature-2": "\u{f2c9}", + "temperature-half": "\u{f2c9}", + "thermometer-2": "\u{f2c9}", + "thermometer-half": "\u{f2c9}", + "temperature-1": "\u{f2ca}", + "temperature-quarter": "\u{f2ca}", + "thermometer-1": "\u{f2ca}", + "thermometer-quarter": "\u{f2ca}", + "temperature-0": "\u{f2cb}", + "temperature-empty": "\u{f2cb}", + "thermometer-0": "\u{f2cb}", + "thermometer-empty": "\u{f2cb}", + "shower": "\u{f2cc}", + "bath": "\u{f2cd}", + "bathtub": "\u{f2cd}", + "podcast": "\u{f2ce}", + "window-maximize": "\u{f2d0}", + "window-minimize": "\u{f2d1}", + "window-restore": "\u{f2d2}", + "square-xmark": "\u{f2d3}", + "times-square": "\u{f2d3}", + "xmark-square": "\u{f2d3}", + "bandcamp": "\u{f2d5}", + "grav": "\u{f2d6}", + "etsy": "\u{f2d7}", + "imdb": "\u{f2d8}", + "ravelry": "\u{f2d9}", + "sellcast": "\u{f2da}", + "microchip": "\u{f2db}", + "snowflake": "\u{f2dc}", + "superpowers": "\u{f2dd}", + "wpexplorer": "\u{f2de}", + "meetup": "\u{f2e0}", + "watch": "\u{f2e1}", + "volume-slash": "\u{f2e2}", + "fork": "\u{f2e3}", + "utensil-fork": "\u{f2e3}", + "knife": "\u{f2e4}", + "utensil-knife": "\u{f2e4}", + "spoon": "\u{f2e5}", + "utensil-spoon": "\u{f2e5}", + "fork-knife": "\u{f2e6}", + "utensils-alt": "\u{f2e6}", + "cutlery": "\u{f2e7}", + "utensils": "\u{f2e7}", + "circle-dollar": "\u{f2e8}", + "dollar-circle": "\u{f2e8}", + "usd-circle": "\u{f2e8}", + "dollar-square": "\u{f2e9}", + "square-dollar": "\u{f2e9}", + "usd-square": "\u{f2e9}", + "rotate-back": "\u{f2ea}", + "rotate-backward": "\u{f2ea}", + "rotate-left": "\u{f2ea}", + "undo-alt": "\u{f2ea}", + "trophy-alt": "\u{f2eb}", + "trophy-star": "\u{f2eb}", + "triangle": "\u{f2ec}", + "trash-alt": "\u{f2ed}", + "trash-can": "\u{f2ed}", + "hexagon-xmark": "\u{f2ee}", + "times-hexagon": "\u{f2ee}", + "xmark-hexagon": "\u{f2ee}", + "octagon-xmark": "\u{f2f0}", + "times-octagon": "\u{f2f0}", + "xmark-octagon": "\u{f2f0}", + "rotate": "\u{f2f1}", + "sync-alt": "\u{f2f1}", + "stopwatch": "\u{f2f2}", + "star-exclamation": "\u{f2f3}", + "spade": "\u{f2f4}", + "right-from-bracket": "\u{f2f5}", + "sign-out-alt": "\u{f2f5}", + "right-to-bracket": "\u{f2f6}", + "sign-in-alt": "\u{f2f6}", + "shield-check": "\u{f2f7}", + "scrubber": "\u{f2f8}", + "redo-alt": "\u{f2f9}", + "rotate-forward": "\u{f2f9}", + "rotate-right": "\u{f2f9}", + "rectangle": "\u{f2fa}", + "rectangle-landscape": "\u{f2fa}", + "rectangle-portrait": "\u{f2fb}", + "rectangle-vertical": "\u{f2fb}", + "rectangle-wide": "\u{f2fc}", + "question-square": "\u{f2fd}", + "square-question": "\u{f2fd}", + "poo": "\u{f2fe}", + "hexagon-plus": "\u{f300}", + "plus-hexagon": "\u{f300}", + "octagon-plus": "\u{f301}", + "plus-octagon": "\u{f301}", + "images": "\u{f302}", + "pencil": "\u{f303}", + "pencil-alt": "\u{f303}", + "pen": "\u{f304}", + "pen-alt": "\u{f305}", + "pen-clip": "\u{f305}", + "octagon": "\u{f306}", + "hexagon-minus": "\u{f307}", + "minus-hexagon": "\u{f307}", + "minus-octagon": "\u{f308}", + "octagon-minus": "\u{f308}", + "down-long": "\u{f309}", + "long-arrow-alt-down": "\u{f309}", + "left-long": "\u{f30a}", + "long-arrow-alt-left": "\u{f30a}", + "long-arrow-alt-right": "\u{f30b}", + "right-long": "\u{f30b}", + "long-arrow-alt-up": "\u{f30c}", + "up-long": "\u{f30c}", + "lock-alt": "\u{f30d}", + "lock-keyhole": "\u{f30d}", + "jack-o-lantern": "\u{f30e}", + "info-square": "\u{f30f}", + "square-info": "\u{f30f}", + "inbox-arrow-down": "\u{f310}", + "inbox-in": "\u{f310}", + "inbox-arrow-up": "\u{f311}", + "inbox-out": "\u{f311}", + "hexagon": "\u{f312}", + "h1": "\u{f313}", + "h2": "\u{f314}", + "h3": "\u{f315}", + "file-check": "\u{f316}", + "file-times": "\u{f317}", + "file-xmark": "\u{f317}", + "file-minus": "\u{f318}", + "file-plus": "\u{f319}", + "file-exclamation": "\u{f31a}", + "file-edit": "\u{f31c}", + "file-pen": "\u{f31c}", + "arrows-maximize": "\u{f31d}", + "expand-arrows": "\u{f31d}", + "expand-arrows-alt": "\u{f31e}", + "maximize": "\u{f31e}", + "expand-wide": "\u{f320}", + "exclamation-square": "\u{f321}", + "square-exclamation": "\u{f321}", + "chevron-double-down": "\u{f322}", + "chevrons-down": "\u{f322}", + "chevron-double-left": "\u{f323}", + "chevrons-left": "\u{f323}", + "chevron-double-right": "\u{f324}", + "chevrons-right": "\u{f324}", + "chevron-double-up": "\u{f325}", + "chevrons-up": "\u{f325}", + "compress-wide": "\u{f326}", + "club": "\u{f327}", + "clipboard": "\u{f328}", + "chevron-square-down": "\u{f329}", + "square-chevron-down": "\u{f329}", + "chevron-square-left": "\u{f32a}", + "square-chevron-left": "\u{f32a}", + "chevron-square-right": "\u{f32b}", + "square-chevron-right": "\u{f32b}", + "chevron-square-up": "\u{f32c}", + "square-chevron-up": "\u{f32c}", + "caret-circle-down": "\u{f32d}", + "circle-caret-down": "\u{f32d}", + "caret-circle-left": "\u{f32e}", + "circle-caret-left": "\u{f32e}", + "caret-circle-right": "\u{f330}", + "circle-caret-right": "\u{f330}", + "caret-circle-up": "\u{f331}", + "circle-caret-up": "\u{f331}", + "calendar-edit": "\u{f333}", + "calendar-pen": "\u{f333}", + "calendar-exclamation": "\u{f334}", + "badge": "\u{f335}", + "badge-check": "\u{f336}", + "arrows-alt-h": "\u{f337}", + "left-right": "\u{f337}", + "arrows-alt-v": "\u{f338}", + "up-down": "\u{f338}", + "arrow-square-down": "\u{f339}", + "square-arrow-down": "\u{f339}", + "arrow-square-left": "\u{f33a}", + "square-arrow-left": "\u{f33a}", + "arrow-square-right": "\u{f33b}", + "square-arrow-right": "\u{f33b}", + "arrow-square-up": "\u{f33c}", + "square-arrow-up": "\u{f33c}", + "arrow-down-to-line": "\u{f33d}", + "arrow-to-bottom": "\u{f33d}", + "arrow-left-to-line": "\u{f33e}", + "arrow-to-left": "\u{f33e}", + "arrow-right-to-line": "\u{f340}", + "arrow-to-right": "\u{f340}", + "arrow-to-top": "\u{f341}", + "arrow-up-to-line": "\u{f341}", + "arrow-from-bottom": "\u{f342}", + "arrow-up-from-line": "\u{f342}", + "arrow-from-left": "\u{f343}", + "arrow-right-from-line": "\u{f343}", + "arrow-from-right": "\u{f344}", + "arrow-left-from-line": "\u{f344}", + "arrow-down-from-line": "\u{f345}", + "arrow-from-top": "\u{f345}", + "arrow-alt-from-bottom": "\u{f346}", + "up-from-line": "\u{f346}", + "arrow-alt-from-left": "\u{f347}", + "right-from-line": "\u{f347}", + "arrow-alt-from-right": "\u{f348}", + "left-from-line": "\u{f348}", + "arrow-alt-from-top": "\u{f349}", + "down-from-line": "\u{f349}", + "arrow-alt-to-bottom": "\u{f34a}", + "down-to-line": "\u{f34a}", + "arrow-alt-to-left": "\u{f34b}", + "left-to-line": "\u{f34b}", + "arrow-alt-to-right": "\u{f34c}", + "right-to-line": "\u{f34c}", + "arrow-alt-to-top": "\u{f34d}", + "up-to-line": "\u{f34d}", + "alarm-clock": "\u{f34e}", + "arrow-alt-square-down": "\u{f350}", + "square-down": "\u{f350}", + "arrow-alt-square-left": "\u{f351}", + "square-left": "\u{f351}", + "arrow-alt-square-right": "\u{f352}", + "square-right": "\u{f352}", + "arrow-alt-square-up": "\u{f353}", + "square-up": "\u{f353}", + "arrow-alt-down": "\u{f354}", + "down": "\u{f354}", + "arrow-alt-left": "\u{f355}", + "left": "\u{f355}", + "arrow-alt-right": "\u{f356}", + "right": "\u{f356}", + "arrow-alt-up": "\u{f357}", + "up": "\u{f357}", + "arrow-alt-circle-down": "\u{f358}", + "circle-down": "\u{f358}", + "arrow-alt-circle-left": "\u{f359}", + "circle-left": "\u{f359}", + "arrow-alt-circle-right": "\u{f35a}", + "circle-right": "\u{f35a}", + "arrow-alt-circle-up": "\u{f35b}", + "circle-up": "\u{f35b}", + "font-awesome-alt": "\u{f35c}", + "square-font-awesome-stroke": "\u{f35c}", + "external-link-alt": "\u{f35d}", + "up-right-from-square": "\u{f35d}", + "external-link-square-alt": "\u{f360}", + "square-up-right": "\u{f360}", + "arrows-retweet": "\u{f361}", + "retweet-alt": "\u{f361}", + "exchange-alt": "\u{f362}", + "right-left": "\u{f362}", + "repeat": "\u{f363}", + "arrows-repeat": "\u{f364}", + "repeat-alt": "\u{f364}", + "repeat-1": "\u{f365}", + "arrows-repeat-1": "\u{f366}", + "repeat-1-alt": "\u{f366}", + "share-all": "\u{f367}", + "accessible-icon": "\u{f368}", + "accusoft": "\u{f369}", + "adversal": "\u{f36a}", + "affiliatetheme": "\u{f36b}", + "algolia": "\u{f36c}", + "amilia": "\u{f36d}", + "angrycreative": "\u{f36e}", + "app-store": "\u{f36f}", + "app-store-ios": "\u{f370}", + "apper": "\u{f371}", + "asymmetrik": "\u{f372}", + "audible": "\u{f373}", + "avianex": "\u{f374}", + "aws": "\u{f375}", + "battery-bolt": "\u{f376}", + "battery-slash": "\u{f377}", + "bimobject": "\u{f378}", + "bitcoin": "\u{f379}", + "bity": "\u{f37a}", + "blackberry": "\u{f37b}", + "blogger": "\u{f37c}", + "blogger-b": "\u{f37d}", + "browser": "\u{f37e}", + "buromobelexperte": "\u{f37f}", + "centercode": "\u{f380}", + "cloudscale": "\u{f383}", + "cloudsmith": "\u{f384}", + "cloudversify": "\u{f385}", + "code-commit": "\u{f386}", + "code-merge": "\u{f387}", + "cpanel": "\u{f388}", + "credit-card-blank": "\u{f389}", + "credit-card-front": "\u{f38a}", + "css3-alt": "\u{f38b}", + "cuttlefish": "\u{f38c}", + "d-and-d": "\u{f38d}", + "deploydog": "\u{f38e}", + "deskpro": "\u{f38f}", + "desktop": "\u{f390}", + "desktop-alt": "\u{f390}", + "digital-ocean": "\u{f391}", + "discord": "\u{f392}", + "discourse": "\u{f393}", + "dochub": "\u{f394}", + "docker": "\u{f395}", + "draft2digital": "\u{f396}", + "dribbble-square": "\u{f397}", + "square-dribbble": "\u{f397}", + "dyalog": "\u{f399}", + "earlybirds": "\u{f39a}", + "ellipsis-h-alt": "\u{f39b}", + "ellipsis-stroke": "\u{f39b}", + "ellipsis-stroke-vertical": "\u{f39c}", + "ellipsis-v-alt": "\u{f39c}", + "erlang": "\u{f39d}", + "facebook-f": "\u{f39e}", + "facebook-messenger": "\u{f39f}", + "firstdraft": "\u{f3a1}", + "fonticons-fi": "\u{f3a2}", + "fort-awesome-alt": "\u{f3a3}", + "freebsd": "\u{f3a4}", + "gem": "\u{f3a5}", + "gitkraken": "\u{f3a6}", + "gofore": "\u{f3a7}", + "goodreads": "\u{f3a8}", + "goodreads-g": "\u{f3a9}", + "google-drive": "\u{f3aa}", + "google-play": "\u{f3ab}", + "gripfire": "\u{f3ac}", + "grunt": "\u{f3ad}", + "gulp": "\u{f3ae}", + "hacker-news-square": "\u{f3af}", + "square-hacker-news": "\u{f3af}", + "hire-a-helper": "\u{f3b0}", + "hotjar": "\u{f3b1}", + "hubspot": "\u{f3b2}", + "industry-alt": "\u{f3b3}", + "industry-windows": "\u{f3b3}", + "itunes": "\u{f3b4}", + "itunes-note": "\u{f3b5}", + "jenkins": "\u{f3b6}", + "joget": "\u{f3b7}", + "js": "\u{f3b8}", + "js-square": "\u{f3b9}", + "square-js": "\u{f3b9}", + "keycdn": "\u{f3ba}", + "kickstarter": "\u{f3bb}", + "square-kickstarter": "\u{f3bb}", + "kickstarter-k": "\u{f3bc}", + "laravel": "\u{f3bd}", + "level-down-alt": "\u{f3be}", + "turn-down": "\u{f3be}", + "level-up-alt": "\u{f3bf}", + "turn-up": "\u{f3bf}", + "line": "\u{f3c0}", + "lock-open": "\u{f3c1}", + "lock-keyhole-open": "\u{f3c2}", + "lock-open-alt": "\u{f3c2}", + "lyft": "\u{f3c3}", + "magento": "\u{f3c4}", + "location-dot": "\u{f3c5}", + "map-marker-alt": "\u{f3c5}", + "medapps": "\u{f3c6}", + "medrt": "\u{f3c8}", + "microphone-alt": "\u{f3c9}", + "microphone-lines": "\u{f3c9}", + "microsoft": "\u{f3ca}", + "mix": "\u{f3cb}", + "mizuni": "\u{f3cc}", + "mobile-alt": "\u{f3cd}", + "mobile-screen-button": "\u{f3cd}", + "mobile": "\u{f3ce}", + "mobile-android": "\u{f3ce}", + "mobile-phone": "\u{f3ce}", + "mobile-android-alt": "\u{f3cf}", + "mobile-screen": "\u{f3cf}", + "monero": "\u{f3d0}", + "money-bill-1": "\u{f3d1}", + "money-bill-alt": "\u{f3d1}", + "napster": "\u{f3d2}", + "node-js": "\u{f3d3}", + "npm": "\u{f3d4}", + "ns8": "\u{f3d5}", + "nutritionix": "\u{f3d6}", + "page4": "\u{f3d7}", + "palfed": "\u{f3d8}", + "patreon": "\u{f3d9}", + "periscope": "\u{f3da}", + "phabricator": "\u{f3db}", + "phoenix-framework": "\u{f3dc}", + "phone-slash": "\u{f3dd}", + "plane-alt": "\u{f3de}", + "plane-engines": "\u{f3de}", + "playstation": "\u{f3df}", + "image-portrait": "\u{f3e0}", + "portrait": "\u{f3e0}", + "pushed": "\u{f3e1}", + "python": "\u{f3e2}", + "red-river": "\u{f3e3}", + "rendact": "\u{f3e4}", + "wpressr": "\u{f3e4}", + "mail-reply": "\u{f3e5}", + "reply": "\u{f3e5}", + "replyd": "\u{f3e6}", + "resolving": "\u{f3e7}", + "rocketchat": "\u{f3e8}", + "rockrms": "\u{f3e9}", + "schlix": "\u{f3ea}", + "searchengin": "\u{f3eb}", + "servicestack": "\u{f3ec}", + "shield-alt": "\u{f3ed}", + "shield-halved": "\u{f3ed}", + "sistrix": "\u{f3ee}", + "sliders-h-square": "\u{f3f0}", + "square-sliders": "\u{f3f0}", + "sliders-up": "\u{f3f1}", + "sliders-v": "\u{f3f1}", + "sliders-v-square": "\u{f3f2}", + "square-sliders-vertical": "\u{f3f2}", + "speakap": "\u{f3f3}", + "spinner-third": "\u{f3f4}", + "staylinked": "\u{f3f5}", + "steam-symbol": "\u{f3f6}", + "sticker-mule": "\u{f3f7}", + "studiovinari": "\u{f3f8}", + "supple": "\u{f3f9}", + "tablet-alt": "\u{f3fa}", + "tablet-screen-button": "\u{f3fa}", + "tablet": "\u{f3fb}", + "tablet-android": "\u{f3fb}", + "tablet-android-alt": "\u{f3fc}", + "tablet-screen": "\u{f3fc}", + "ticket-alt": "\u{f3ff}", + "ticket-simple": "\u{f3ff}", + "tree-alt": "\u{f400}", + "tree-deciduous": "\u{f400}", + "tv-retro": "\u{f401}", + "uber": "\u{f402}", + "uikit": "\u{f403}", + "uniregistry": "\u{f404}", + "untappd": "\u{f405}", + "ussunnah": "\u{f407}", + "vaadin": "\u{f408}", + "viber": "\u{f409}", + "vimeo": "\u{f40a}", + "vnv": "\u{f40b}", + "square-whatsapp": "\u{f40c}", + "whatsapp-square": "\u{f40c}", + "whmcs": "\u{f40d}", + "window": "\u{f40e}", + "window-alt": "\u{f40f}", + "window-flip": "\u{f40f}", + "rectangle-times": "\u{f410}", + "rectangle-xmark": "\u{f410}", + "times-rectangle": "\u{f410}", + "window-close": "\u{f410}", + "wordpress-simple": "\u{f411}", + "xbox": "\u{f412}", + "yandex": "\u{f413}", + "yandex-international": "\u{f414}", + "apple-pay": "\u{f415}", + "cc-apple-pay": "\u{f416}", + "fly": "\u{f417}", + "node": "\u{f419}", + "osi": "\u{f41a}", + "react": "\u{f41b}", + "autoprefixer": "\u{f41c}", + "less": "\u{f41d}", + "sass": "\u{f41e}", + "vuejs": "\u{f41f}", + "angular": "\u{f420}", + "aviato": "\u{f421}", + "compress-alt": "\u{f422}", + "down-left-and-up-right-to-center": "\u{f422}", + "ember": "\u{f423}", + "expand-alt": "\u{f424}", + "up-right-and-down-left-from-center": "\u{f424}", + "gitter": "\u{f426}", + "hooli": "\u{f427}", + "strava": "\u{f428}", + "stripe": "\u{f429}", + "stripe-s": "\u{f42a}", + "typo3": "\u{f42b}", + "amazon-pay": "\u{f42c}", + "cc-amazon-pay": "\u{f42d}", + "ethereum": "\u{f42e}", + "korvue": "\u{f42f}", + "elementor": "\u{f430}", + "square-youtube": "\u{f431}", + "youtube-square": "\u{f431}", + "baseball-bat-ball": "\u{f432}", + "baseball": "\u{f433}", + "baseball-ball": "\u{f433}", + "basketball": "\u{f434}", + "basketball-ball": "\u{f434}", + "basketball-hoop": "\u{f435}", + "bowling-ball": "\u{f436}", + "bowling-pins": "\u{f437}", + "boxing-glove": "\u{f438}", + "glove-boxing": "\u{f438}", + "chess": "\u{f439}", + "chess-bishop": "\u{f43a}", + "chess-bishop-alt": "\u{f43b}", + "chess-bishop-piece": "\u{f43b}", + "chess-board": "\u{f43c}", + "chess-clock": "\u{f43d}", + "chess-clock-alt": "\u{f43e}", + "chess-clock-flip": "\u{f43e}", + "chess-king": "\u{f43f}", + "chess-king-alt": "\u{f440}", + "chess-king-piece": "\u{f440}", + "chess-knight": "\u{f441}", + "chess-knight-alt": "\u{f442}", + "chess-knight-piece": "\u{f442}", + "chess-pawn": "\u{f443}", + "chess-pawn-alt": "\u{f444}", + "chess-pawn-piece": "\u{f444}", + "chess-queen": "\u{f445}", + "chess-queen-alt": "\u{f446}", + "chess-queen-piece": "\u{f446}", + "chess-rook": "\u{f447}", + "chess-rook-alt": "\u{f448}", + "chess-rook-piece": "\u{f448}", + "cricket": "\u{f449}", + "cricket-bat-ball": "\u{f449}", + "curling": "\u{f44a}", + "curling-stone": "\u{f44a}", + "dumbbell": "\u{f44b}", + "field-hockey": "\u{f44c}", + "field-hockey-stick-ball": "\u{f44c}", + "flipboard": "\u{f44d}", + "football": "\u{f44e}", + "football-ball": "\u{f44e}", + "football-helmet": "\u{f44f}", + "golf-ball": "\u{f450}", + "golf-ball-tee": "\u{f450}", + "golf-club": "\u{f451}", + "hips": "\u{f452}", + "hockey-puck": "\u{f453}", + "hockey-sticks": "\u{f454}", + "luchador": "\u{f455}", + "luchador-mask": "\u{f455}", + "mask-luchador": "\u{f455}", + "flag-pennant": "\u{f456}", + "pennant": "\u{f456}", + "php": "\u{f457}", + "broom-ball": "\u{f458}", + "quidditch": "\u{f458}", + "quidditch-broom-ball": "\u{f458}", + "quinscape": "\u{f459}", + "racquet": "\u{f45a}", + "shuttlecock": "\u{f45b}", + "square-full": "\u{f45c}", + "ping-pong-paddle-ball": "\u{f45d}", + "table-tennis": "\u{f45d}", + "table-tennis-paddle-ball": "\u{f45d}", + "tennis-ball": "\u{f45e}", + "volleyball": "\u{f45f}", + "volleyball-ball": "\u{f45f}", + "whistle": "\u{f460}", + "allergies": "\u{f461}", + "hand-dots": "\u{f461}", + "band-aid": "\u{f462}", + "bandage": "\u{f462}", + "barcode-alt": "\u{f463}", + "rectangle-barcode": "\u{f463}", + "barcode-read": "\u{f464}", + "barcode-scan": "\u{f465}", + "box": "\u{f466}", + "box-check": "\u{f467}", + "boxes": "\u{f468}", + "boxes-alt": "\u{f468}", + "boxes-stacked": "\u{f468}", + "briefcase-medical": "\u{f469}", + "burn": "\u{f46a}", + "fire-flame-simple": "\u{f46a}", + "capsules": "\u{f46b}", + "clipboard-check": "\u{f46c}", + "clipboard-list": "\u{f46d}", + "conveyor-belt": "\u{f46e}", + "conveyor-belt-alt": "\u{f46f}", + "conveyor-belt-boxes": "\u{f46f}", + "diagnoses": "\u{f470}", + "person-dots-from-line": "\u{f470}", + "dna": "\u{f471}", + "dolly": "\u{f472}", + "dolly-box": "\u{f472}", + "dolly-empty": "\u{f473}", + "cart-flatbed": "\u{f474}", + "dolly-flatbed": "\u{f474}", + "cart-flatbed-boxes": "\u{f475}", + "dolly-flatbed-alt": "\u{f475}", + "cart-flatbed-empty": "\u{f476}", + "dolly-flatbed-empty": "\u{f476}", + "file-medical": "\u{f477}", + "file-medical-alt": "\u{f478}", + "file-waveform": "\u{f478}", + "first-aid": "\u{f479}", + "kit-medical": "\u{f479}", + "forklift": "\u{f47a}", + "hand-holding-box": "\u{f47b}", + "hand-receiving": "\u{f47c}", + "hands-holding-diamond": "\u{f47c}", + "circle-h": "\u{f47e}", + "hospital-symbol": "\u{f47e}", + "id-card-alt": "\u{f47f}", + "id-card-clip": "\u{f47f}", + "inventory": "\u{f480}", + "shelves": "\u{f480}", + "notes-medical": "\u{f481}", + "pallet": "\u{f482}", + "palette-boxes": "\u{f483}", + "pallet-alt": "\u{f483}", + "pallet-boxes": "\u{f483}", + "pills": "\u{f484}", + "prescription-bottle": "\u{f485}", + "prescription-bottle-alt": "\u{f486}", + "prescription-bottle-medical": "\u{f486}", + "bed-pulse": "\u{f487}", + "procedures": "\u{f487}", + "scanner": "\u{f488}", + "scanner-gun": "\u{f488}", + "scanner-keyboard": "\u{f489}", + "scanner-touchscreen": "\u{f48a}", + "shipping-fast": "\u{f48b}", + "truck-fast": "\u{f48b}", + "shipping-timed": "\u{f48c}", + "truck-clock": "\u{f48c}", + "smoking": "\u{f48d}", + "syringe": "\u{f48e}", + "tablet-rugged": "\u{f48f}", + "tablets": "\u{f490}", + "thermometer": "\u{f491}", + "vial": "\u{f492}", + "vials": "\u{f493}", + "warehouse": "\u{f494}", + "warehouse-alt": "\u{f495}", + "warehouse-full": "\u{f495}", + "weight": "\u{f496}", + "weight-scale": "\u{f496}", + "x-ray": "\u{f497}", + "blanket": "\u{f498}", + "book-heart": "\u{f499}", + "box-alt": "\u{f49a}", + "box-taped": "\u{f49a}", + "box-fragile": "\u{f49b}", + "square-fragile": "\u{f49b}", + "square-wine-glass-crack": "\u{f49b}", + "box-full": "\u{f49c}", + "box-open-full": "\u{f49c}", + "box-heart": "\u{f49d}", + "box-open": "\u{f49e}", + "box-up": "\u{f49f}", + "square-this-way-up": "\u{f49f}", + "box-dollar": "\u{f4a0}", + "box-usd": "\u{f4a0}", + "comment-alt-check": "\u{f4a2}", + "message-check": "\u{f4a2}", + "comment-alt-dots": "\u{f4a3}", + "message-dots": "\u{f4a3}", + "messaging": "\u{f4a3}", + "comment-alt-edit": "\u{f4a4}", + "message-edit": "\u{f4a4}", + "message-pen": "\u{f4a4}", + "comment-alt-exclamation": "\u{f4a5}", + "message-exclamation": "\u{f4a5}", + "comment-alt-lines": "\u{f4a6}", + "message-lines": "\u{f4a6}", + "comment-alt-minus": "\u{f4a7}", + "message-minus": "\u{f4a7}", + "comment-alt-plus": "\u{f4a8}", + "message-plus": "\u{f4a8}", + "comment-alt-slash": "\u{f4a9}", + "message-slash": "\u{f4a9}", + "comment-alt-smile": "\u{f4aa}", + "message-smile": "\u{f4aa}", + "comment-alt-times": "\u{f4ab}", + "message-times": "\u{f4ab}", + "message-xmark": "\u{f4ab}", + "comment-check": "\u{f4ac}", + "comment-dots": "\u{f4ad}", + "commenting": "\u{f4ad}", + "comment-edit": "\u{f4ae}", + "comment-pen": "\u{f4ae}", + "comment-exclamation": "\u{f4af}", + "comment-lines": "\u{f4b0}", + "comment-minus": "\u{f4b1}", + "comment-plus": "\u{f4b2}", + "comment-slash": "\u{f4b3}", + "comment-smile": "\u{f4b4}", + "comment-times": "\u{f4b5}", + "comment-xmark": "\u{f4b5}", + "comments-alt": "\u{f4b6}", + "messages": "\u{f4b6}", + "container-storage": "\u{f4b7}", + "couch": "\u{f4b8}", + "circle-dollar-to-slot": "\u{f4b9}", + "donate": "\u{f4b9}", + "dove": "\u{f4ba}", + "fragile": "\u{f4bb}", + "wine-glass-crack": "\u{f4bb}", + "hand-heart": "\u{f4bc}", + "hand-holding": "\u{f4bd}", + "hand-holding-heart": "\u{f4be}", + "hand-holding-seedling": "\u{f4bf}", + "hand-holding-dollar": "\u{f4c0}", + "hand-holding-usd": "\u{f4c0}", + "hand-holding-droplet": "\u{f4c1}", + "hand-holding-water": "\u{f4c1}", + "hands-holding": "\u{f4c2}", + "hands-heart": "\u{f4c3}", + "hands-holding-heart": "\u{f4c3}", + "hands-helping": "\u{f4c4}", + "handshake-angle": "\u{f4c4}", + "hands-holding-dollar": "\u{f4c5}", + "hands-usd": "\u{f4c5}", + "circle-heart": "\u{f4c7}", + "heart-circle": "\u{f4c7}", + "heart-square": "\u{f4c8}", + "square-heart": "\u{f4c8}", + "home-heart": "\u{f4c9}", + "house-heart": "\u{f4c9}", + "lamp": "\u{f4ca}", + "leaf-heart": "\u{f4cb}", + "couch-small": "\u{f4cc}", + "loveseat": "\u{f4cc}", + "parachute-box": "\u{f4cd}", + "people-carry": "\u{f4ce}", + "people-carry-box": "\u{f4ce}", + "person-carry": "\u{f4cf}", + "person-carry-box": "\u{f4cf}", + "person-dolly": "\u{f4d0}", + "person-dolly-empty": "\u{f4d1}", + "phone-plus": "\u{f4d2}", + "piggy-bank": "\u{f4d3}", + "ramp-loading": "\u{f4d4}", + "readme": "\u{f4d5}", + "ribbon": "\u{f4d6}", + "route": "\u{f4d7}", + "seedling": "\u{f4d8}", + "sprout": "\u{f4d8}", + "sign": "\u{f4d9}", + "sign-hanging": "\u{f4d9}", + "face-smile-wink": "\u{f4da}", + "smile-wink": "\u{f4da}", + "tape": "\u{f4db}", + "truck-container": "\u{f4dc}", + "truck-couch": "\u{f4dd}", + "truck-ramp-couch": "\u{f4dd}", + "truck-loading": "\u{f4de}", + "truck-ramp-box": "\u{f4de}", + "truck-moving": "\u{f4df}", + "truck-ramp": "\u{f4e0}", + "video-plus": "\u{f4e1}", + "video-slash": "\u{f4e2}", + "wine-glass": "\u{f4e3}", + "java": "\u{f4e4}", + "pied-piper-hat": "\u{f4e5}", + "creative-commons-by": "\u{f4e7}", + "creative-commons-nc": "\u{f4e8}", + "creative-commons-nc-eu": "\u{f4e9}", + "creative-commons-nc-jp": "\u{f4ea}", + "creative-commons-nd": "\u{f4eb}", + "creative-commons-pd": "\u{f4ec}", + "creative-commons-pd-alt": "\u{f4ed}", + "creative-commons-remix": "\u{f4ee}", + "creative-commons-sa": "\u{f4ef}", + "creative-commons-sampling": "\u{f4f0}", + "creative-commons-sampling-plus": "\u{f4f1}", + "creative-commons-share": "\u{f4f2}", + "creative-commons-zero": "\u{f4f3}", + "ebay": "\u{f4f4}", + "keybase": "\u{f4f5}", + "mastodon": "\u{f4f6}", + "r-project": "\u{f4f7}", + "researchgate": "\u{f4f8}", + "teamspeak": "\u{f4f9}", + "user-astronaut": "\u{f4fb}", + "user-check": "\u{f4fc}", + "user-clock": "\u{f4fd}", + "user-cog": "\u{f4fe}", + "user-gear": "\u{f4fe}", + "user-edit": "\u{f4ff}", + "user-pen": "\u{f4ff}", + "user-friends": "\u{f500}", + "user-group": "\u{f500}", + "user-graduate": "\u{f501}", + "user-lock": "\u{f502}", + "user-minus": "\u{f503}", + "user-ninja": "\u{f504}", + "user-shield": "\u{f505}", + "user-slash": "\u{f506}", + "user-tag": "\u{f507}", + "user-tie": "\u{f508}", + "users-cog": "\u{f509}", + "users-gear": "\u{f509}", + "first-order-alt": "\u{f50a}", + "fulcrum": "\u{f50b}", + "galactic-republic": "\u{f50c}", + "galactic-senate": "\u{f50d}", + "jedi-order": "\u{f50e}", + "mandalorian": "\u{f50f}", + "old-republic": "\u{f510}", + "phoenix-squadron": "\u{f511}", + "sith": "\u{f512}", + "trade-federation": "\u{f513}", + "wolf-pack-battalion": "\u{f514}", + "balance-scale-left": "\u{f515}", + "scale-unbalanced": "\u{f515}", + "balance-scale-right": "\u{f516}", + "scale-unbalanced-flip": "\u{f516}", + "blender": "\u{f517}", + "book-open": "\u{f518}", + "broadcast-tower": "\u{f519}", + "tower-broadcast": "\u{f519}", + "broom": "\u{f51a}", + "blackboard": "\u{f51b}", + "chalkboard": "\u{f51b}", + "chalkboard-teacher": "\u{f51c}", + "chalkboard-user": "\u{f51c}", + "church": "\u{f51d}", + "coins": "\u{f51e}", + "compact-disc": "\u{f51f}", + "crow": "\u{f520}", + "crown": "\u{f521}", + "dice": "\u{f522}", + "dice-five": "\u{f523}", + "dice-four": "\u{f524}", + "dice-one": "\u{f525}", + "dice-six": "\u{f526}", + "dice-three": "\u{f527}", + "dice-two": "\u{f528}", + "divide": "\u{f529}", + "door-closed": "\u{f52a}", + "door-open": "\u{f52b}", + "feather": "\u{f52d}", + "frog": "\u{f52e}", + "gas-pump": "\u{f52f}", + "glasses": "\u{f530}", + "greater-than-equal": "\u{f532}", + "helicopter": "\u{f533}", + "infinity": "\u{f534}", + "kiwi-bird": "\u{f535}", + "less-than-equal": "\u{f537}", + "memory": "\u{f538}", + "microphone-alt-slash": "\u{f539}", + "microphone-lines-slash": "\u{f539}", + "money-bill-wave": "\u{f53a}", + "money-bill-1-wave": "\u{f53b}", + "money-bill-wave-alt": "\u{f53b}", + "money-check": "\u{f53c}", + "money-check-alt": "\u{f53d}", + "money-check-dollar": "\u{f53d}", + "not-equal": "\u{f53e}", + "palette": "\u{f53f}", + "parking": "\u{f540}", + "square-parking": "\u{f540}", + "diagram-project": "\u{f542}", + "project-diagram": "\u{f542}", + "receipt": "\u{f543}", + "robot": "\u{f544}", + "ruler": "\u{f545}", + "ruler-combined": "\u{f546}", + "ruler-horizontal": "\u{f547}", + "ruler-vertical": "\u{f548}", + "school": "\u{f549}", + "screwdriver": "\u{f54a}", + "shoe-prints": "\u{f54b}", + "skull": "\u{f54c}", + "ban-smoking": "\u{f54d}", + "smoking-ban": "\u{f54d}", + "store": "\u{f54e}", + "shop": "\u{f54f}", + "store-alt": "\u{f54f}", + "bars-staggered": "\u{f550}", + "reorder": "\u{f550}", + "stream": "\u{f550}", + "stroopwafel": "\u{f551}", + "toolbox": "\u{f552}", + "shirt": "\u{f553}", + "t-shirt": "\u{f553}", + "tshirt": "\u{f553}", + "person-walking": "\u{f554}", + "walking": "\u{f554}", + "wallet": "\u{f555}", + "angry": "\u{f556}", + "face-angry": "\u{f556}", + "archway": "\u{f557}", + "atlas": "\u{f558}", + "book-atlas": "\u{f558}", + "award": "\u{f559}", + "backspace": "\u{f55a}", + "delete-left": "\u{f55a}", + "bezier-curve": "\u{f55b}", + "bong": "\u{f55c}", + "brush": "\u{f55d}", + "bus-alt": "\u{f55e}", + "bus-simple": "\u{f55e}", + "cannabis": "\u{f55f}", + "check-double": "\u{f560}", + "cocktail": "\u{f561}", + "martini-glass-citrus": "\u{f561}", + "bell-concierge": "\u{f562}", + "concierge-bell": "\u{f562}", + "cookie": "\u{f563}", + "cookie-bite": "\u{f564}", + "crop-alt": "\u{f565}", + "crop-simple": "\u{f565}", + "digital-tachograph": "\u{f566}", + "tachograph-digital": "\u{f566}", + "dizzy": "\u{f567}", + "face-dizzy": "\u{f567}", + "compass-drafting": "\u{f568}", + "drafting-compass": "\u{f568}", + "drum": "\u{f569}", + "drum-steelpan": "\u{f56a}", + "feather-alt": "\u{f56b}", + "feather-pointed": "\u{f56b}", + "file-contract": "\u{f56c}", + "file-arrow-down": "\u{f56d}", + "file-download": "\u{f56d}", + "arrow-right-from-file": "\u{f56e}", + "file-export": "\u{f56e}", + "arrow-right-to-file": "\u{f56f}", + "file-import": "\u{f56f}", + "file-invoice": "\u{f570}", + "file-invoice-dollar": "\u{f571}", + "file-prescription": "\u{f572}", + "file-signature": "\u{f573}", + "file-arrow-up": "\u{f574}", + "file-upload": "\u{f574}", + "fill": "\u{f575}", + "fill-drip": "\u{f576}", + "fingerprint": "\u{f577}", + "fish": "\u{f578}", + "face-flushed": "\u{f579}", + "flushed": "\u{f579}", + "face-frown-open": "\u{f57a}", + "frown-open": "\u{f57a}", + "glass-martini-alt": "\u{f57b}", + "martini-glass": "\u{f57b}", + "earth-africa": "\u{f57c}", + "globe-africa": "\u{f57c}", + "earth": "\u{f57d}", + "earth-america": "\u{f57d}", + "earth-americas": "\u{f57d}", + "globe-americas": "\u{f57d}", + "earth-asia": "\u{f57e}", + "globe-asia": "\u{f57e}", + "face-grimace": "\u{f57f}", + "grimace": "\u{f57f}", + "face-grin": "\u{f580}", + "grin": "\u{f580}", + "face-grin-wide": "\u{f581}", + "grin-alt": "\u{f581}", + "face-grin-beam": "\u{f582}", + "grin-beam": "\u{f582}", + "face-grin-beam-sweat": "\u{f583}", + "grin-beam-sweat": "\u{f583}", + "face-grin-hearts": "\u{f584}", + "grin-hearts": "\u{f584}", + "face-grin-squint": "\u{f585}", + "grin-squint": "\u{f585}", + "face-grin-squint-tears": "\u{f586}", + "grin-squint-tears": "\u{f586}", + "face-grin-stars": "\u{f587}", + "grin-stars": "\u{f587}", + "face-grin-tears": "\u{f588}", + "grin-tears": "\u{f588}", + "face-grin-tongue": "\u{f589}", + "grin-tongue": "\u{f589}", + "face-grin-tongue-squint": "\u{f58a}", + "grin-tongue-squint": "\u{f58a}", + "face-grin-tongue-wink": "\u{f58b}", + "grin-tongue-wink": "\u{f58b}", + "face-grin-wink": "\u{f58c}", + "grin-wink": "\u{f58c}", + "grip": "\u{f58d}", + "grip-horizontal": "\u{f58d}", + "grid-vertical": "\u{f58e}", + "grip-vertical": "\u{f58e}", + "headset": "\u{f590}", + "highlighter": "\u{f591}", + "hornbill": "\u{f592}", + "hot-tub": "\u{f593}", + "hot-tub-person": "\u{f593}", + "hotel": "\u{f594}", + "joint": "\u{f595}", + "face-kiss": "\u{f596}", + "kiss": "\u{f596}", + "face-kiss-beam": "\u{f597}", + "kiss-beam": "\u{f597}", + "face-kiss-wink-heart": "\u{f598}", + "kiss-wink-heart": "\u{f598}", + "face-laugh": "\u{f599}", + "laugh": "\u{f599}", + "face-laugh-beam": "\u{f59a}", + "laugh-beam": "\u{f59a}", + "face-laugh-squint": "\u{f59b}", + "laugh-squint": "\u{f59b}", + "face-laugh-wink": "\u{f59c}", + "laugh-wink": "\u{f59c}", + "cart-flatbed-suitcase": "\u{f59d}", + "luggage-cart": "\u{f59d}", + "mailchimp": "\u{f59e}", + "map-location": "\u{f59f}", + "map-marked": "\u{f59f}", + "map-location-dot": "\u{f5a0}", + "map-marked-alt": "\u{f5a0}", + "marker": "\u{f5a1}", + "medal": "\u{f5a2}", + "megaport": "\u{f5a3}", + "face-meh-blank": "\u{f5a4}", + "meh-blank": "\u{f5a4}", + "face-rolling-eyes": "\u{f5a5}", + "meh-rolling-eyes": "\u{f5a5}", + "monument": "\u{f5a6}", + "mortar-pestle": "\u{f5a7}", + "nimblr": "\u{f5a8}", + "paint-brush-alt": "\u{f5a9}", + "paint-brush-fine": "\u{f5a9}", + "paintbrush-alt": "\u{f5a9}", + "paintbrush-fine": "\u{f5a9}", + "paint-roller": "\u{f5aa}", + "passport": "\u{f5ab}", + "pen-fancy": "\u{f5ac}", + "pen-nib": "\u{f5ad}", + "pen-ruler": "\u{f5ae}", + "pencil-ruler": "\u{f5ae}", + "plane-arrival": "\u{f5af}", + "plane-departure": "\u{f5b0}", + "prescription": "\u{f5b1}", + "rev": "\u{f5b2}", + "face-sad-cry": "\u{f5b3}", + "sad-cry": "\u{f5b3}", + "face-sad-tear": "\u{f5b4}", + "sad-tear": "\u{f5b4}", + "shopware": "\u{f5b5}", + "shuttle-van": "\u{f5b6}", + "van-shuttle": "\u{f5b6}", + "signature": "\u{f5b7}", + "face-smile-beam": "\u{f5b8}", + "smile-beam": "\u{f5b8}", + "face-smile-plus": "\u{f5b9}", + "smile-plus": "\u{f5b9}", + "solar-panel": "\u{f5ba}", + "lotus": "\u{f5bb}", + "spa": "\u{f5bb}", + "splotch": "\u{f5bc}", + "spray-can": "\u{f5bd}", + "squarespace": "\u{f5be}", + "stamp": "\u{f5bf}", + "star-half-alt": "\u{f5c0}", + "star-half-stroke": "\u{f5c0}", + "suitcase-rolling": "\u{f5c1}", + "face-surprise": "\u{f5c2}", + "surprise": "\u{f5c2}", + "swatchbook": "\u{f5c3}", + "person-swimming": "\u{f5c4}", + "swimmer": "\u{f5c4}", + "ladder-water": "\u{f5c5}", + "swimming-pool": "\u{f5c5}", + "water-ladder": "\u{f5c5}", + "themeco": "\u{f5c6}", + "droplet-slash": "\u{f5c7}", + "tint-slash": "\u{f5c7}", + "face-tired": "\u{f5c8}", + "tired": "\u{f5c8}", + "tooth": "\u{f5c9}", + "umbrella-beach": "\u{f5ca}", + "weebly": "\u{f5cc}", + "weight-hanging": "\u{f5cd}", + "wine-glass-alt": "\u{f5ce}", + "wine-glass-empty": "\u{f5ce}", + "wix": "\u{f5cf}", + "air-freshener": "\u{f5d0}", + "spray-can-sparkles": "\u{f5d0}", + "apple-alt": "\u{f5d1}", + "apple-whole": "\u{f5d1}", + "atom": "\u{f5d2}", + "atom-alt": "\u{f5d3}", + "atom-simple": "\u{f5d3}", + "backpack": "\u{f5d4}", + "bell-school": "\u{f5d5}", + "bell-school-slash": "\u{f5d6}", + "bone": "\u{f5d7}", + "bone-break": "\u{f5d8}", + "book-alt": "\u{f5d9}", + "book-blank": "\u{f5d9}", + "book-open-reader": "\u{f5da}", + "book-reader": "\u{f5da}", + "books": "\u{f5db}", + "brain": "\u{f5dc}", + "bus-school": "\u{f5dd}", + "car-alt": "\u{f5de}", + "car-rear": "\u{f5de}", + "battery-car": "\u{f5df}", + "car-battery": "\u{f5df}", + "car-bump": "\u{f5e0}", + "car-burst": "\u{f5e1}", + "car-crash": "\u{f5e1}", + "car-garage": "\u{f5e2}", + "car-mechanic": "\u{f5e3}", + "car-wrench": "\u{f5e3}", + "car-side": "\u{f5e4}", + "car-tilt": "\u{f5e5}", + "car-wash": "\u{f5e6}", + "charging-station": "\u{f5e7}", + "clipboard-prescription": "\u{f5e8}", + "compass-slash": "\u{f5e9}", + "diploma": "\u{f5ea}", + "scroll-ribbon": "\u{f5ea}", + "diamond-turn-right": "\u{f5eb}", + "directions": "\u{f5eb}", + "do-not-enter": "\u{f5ec}", + "draw-circle": "\u{f5ed}", + "draw-polygon": "\u{f5ee}", + "draw-square": "\u{f5ef}", + "ear": "\u{f5f0}", + "ello": "\u{f5f1}", + "engine-exclamation": "\u{f5f2}", + "engine-warning": "\u{f5f2}", + "file-award": "\u{f5f3}", + "file-certificate": "\u{f5f3}", + "gas-pump-slash": "\u{f5f4}", + "glasses-alt": "\u{f5f5}", + "glasses-round": "\u{f5f5}", + "globe-stand": "\u{f5f6}", + "hackerrank": "\u{f5f7}", + "heart-rate": "\u{f5f8}", + "wave-pulse": "\u{f5f8}", + "inhaler": "\u{f5f9}", + "kaggle": "\u{f5fa}", + "kidneys": "\u{f5fb}", + "laptop-code": "\u{f5fc}", + "layer-group": "\u{f5fd}", + "layer-group-minus": "\u{f5fe}", + "layer-minus": "\u{f5fe}", + "layer-group-plus": "\u{f5ff}", + "layer-plus": "\u{f5ff}", + "lips": "\u{f600}", + "location": "\u{f601}", + "location-crosshairs": "\u{f601}", + "circle-location-arrow": "\u{f602}", + "location-circle": "\u{f602}", + "location-crosshairs-slash": "\u{f603}", + "location-slash": "\u{f603}", + "lungs": "\u{f604}", + "location-dot-slash": "\u{f605}", + "map-marker-alt-slash": "\u{f605}", + "location-check": "\u{f606}", + "map-marker-check": "\u{f606}", + "location-pen": "\u{f607}", + "map-marker-edit": "\u{f607}", + "location-exclamation": "\u{f608}", + "map-marker-exclamation": "\u{f608}", + "location-minus": "\u{f609}", + "map-marker-minus": "\u{f609}", + "location-plus": "\u{f60a}", + "map-marker-plus": "\u{f60a}", + "location-question": "\u{f60b}", + "map-marker-question": "\u{f60b}", + "location-pin-slash": "\u{f60c}", + "map-marker-slash": "\u{f60c}", + "location-smile": "\u{f60d}", + "map-marker-smile": "\u{f60d}", + "location-xmark": "\u{f60e}", + "map-marker-times": "\u{f60e}", + "map-marker-xmark": "\u{f60e}", + "markdown": "\u{f60f}", + "microscope": "\u{f610}", + "monitor-heart-rate": "\u{f611}", + "monitor-waveform": "\u{f611}", + "neos": "\u{f612}", + "oil-can": "\u{f613}", + "oil-temp": "\u{f614}", + "oil-temperature": "\u{f614}", + "circle-parking": "\u{f615}", + "parking-circle": "\u{f615}", + "ban-parking": "\u{f616}", + "parking-circle-slash": "\u{f616}", + "parking-slash": "\u{f617}", + "square-parking-slash": "\u{f617}", + "pen-paintbrush": "\u{f618}", + "pencil-paintbrush": "\u{f618}", + "poop": "\u{f619}", + "route-highway": "\u{f61a}", + "route-interstate": "\u{f61b}", + "ruler-triangle": "\u{f61c}", + "scalpel": "\u{f61d}", + "scalpel-line-dashed": "\u{f61e}", + "scalpel-path": "\u{f61e}", + "shapes": "\u{f61f}", + "triangle-circle-square": "\u{f61f}", + "skeleton": "\u{f620}", + "star-of-life": "\u{f621}", + "steering-wheel": "\u{f622}", + "stomach": "\u{f623}", + "dashboard": "\u{f624}", + "gauge": "\u{f624}", + "gauge-med": "\u{f624}", + "tachometer-alt-average": "\u{f624}", + "gauge-high": "\u{f625}", + "tachometer-alt": "\u{f625}", + "tachometer-alt-fast": "\u{f625}", + "gauge-max": "\u{f626}", + "tachometer-alt-fastest": "\u{f626}", + "gauge-low": "\u{f627}", + "tachometer-alt-slow": "\u{f627}", + "gauge-min": "\u{f628}", + "tachometer-alt-slowest": "\u{f628}", + "gauge-simple": "\u{f629}", + "gauge-simple-med": "\u{f629}", + "tachometer-average": "\u{f629}", + "gauge-simple-high": "\u{f62a}", + "tachometer": "\u{f62a}", + "tachometer-fast": "\u{f62a}", + "gauge-simple-max": "\u{f62b}", + "tachometer-fastest": "\u{f62b}", + "gauge-simple-low": "\u{f62c}", + "tachometer-slow": "\u{f62c}", + "gauge-simple-min": "\u{f62d}", + "tachometer-slowest": "\u{f62d}", + "teeth": "\u{f62e}", + "teeth-open": "\u{f62f}", + "masks-theater": "\u{f630}", + "theater-masks": "\u{f630}", + "tire": "\u{f631}", + "tire-flat": "\u{f632}", + "tire-pressure-warning": "\u{f633}", + "tire-rugged": "\u{f634}", + "toothbrush": "\u{f635}", + "traffic-cone": "\u{f636}", + "traffic-light": "\u{f637}", + "traffic-light-go": "\u{f638}", + "traffic-light-slow": "\u{f639}", + "traffic-light-stop": "\u{f63a}", + "truck-monster": "\u{f63b}", + "truck-pickup": "\u{f63c}", + "screen-users": "\u{f63d}", + "users-class": "\u{f63d}", + "watch-fitness": "\u{f63e}", + "zhihu": "\u{f63f}", + "abacus": "\u{f640}", + "ad": "\u{f641}", + "rectangle-ad": "\u{f641}", + "alipay": "\u{f642}", + "analytics": "\u{f643}", + "chart-mixed": "\u{f643}", + "ankh": "\u{f644}", + "badge-dollar": "\u{f645}", + "badge-percent": "\u{f646}", + "bible": "\u{f647}", + "book-bible": "\u{f647}", + "bullseye-arrow": "\u{f648}", + "bullseye-pointer": "\u{f649}", + "briefcase-clock": "\u{f64a}", + "business-time": "\u{f64a}", + "cabinet-filing": "\u{f64b}", + "calculator-alt": "\u{f64c}", + "calculator-simple": "\u{f64c}", + "chart-line-down": "\u{f64d}", + "chart-pie-alt": "\u{f64e}", + "chart-pie-simple": "\u{f64e}", + "city": "\u{f64f}", + "comment-alt-dollar": "\u{f650}", + "message-dollar": "\u{f650}", + "comment-dollar": "\u{f651}", + "comments-alt-dollar": "\u{f652}", + "messages-dollar": "\u{f652}", + "comments-dollar": "\u{f653}", + "cross": "\u{f654}", + "dharmachakra": "\u{f655}", + "empty-set": "\u{f656}", + "envelope-open-dollar": "\u{f657}", + "envelope-open-text": "\u{f658}", + "file-chart-column": "\u{f659}", + "file-chart-line": "\u{f659}", + "file-chart-pie": "\u{f65a}", + "file-spreadsheet": "\u{f65b}", + "file-user": "\u{f65c}", + "folder-minus": "\u{f65d}", + "folder-plus": "\u{f65e}", + "folder-times": "\u{f65f}", + "folder-xmark": "\u{f65f}", + "folders": "\u{f660}", + "function": "\u{f661}", + "filter-circle-dollar": "\u{f662}", + "funnel-dollar": "\u{f662}", + "gift-card": "\u{f663}", + "gopuram": "\u{f664}", + "hamsa": "\u{f665}", + "bahai": "\u{f666}", + "haykal": "\u{f666}", + "integral": "\u{f667}", + "intersection": "\u{f668}", + "jedi": "\u{f669}", + "book-journal-whills": "\u{f66a}", + "journal-whills": "\u{f66a}", + "kaaba": "\u{f66b}", + "keynote": "\u{f66c}", + "khanda": "\u{f66d}", + "lambda": "\u{f66e}", + "landmark": "\u{f66f}", + "lightbulb-dollar": "\u{f670}", + "lightbulb-exclamation": "\u{f671}", + "lightbulb-on": "\u{f672}", + "lightbulb-slash": "\u{f673}", + "envelopes-bulk": "\u{f674}", + "mail-bulk": "\u{f674}", + "megaphone": "\u{f675}", + "menorah": "\u{f676}", + "brain-arrow-curved-right": "\u{f677}", + "mind-share": "\u{f677}", + "mosque": "\u{f678}", + "om": "\u{f679}", + "omega": "\u{f67a}", + "pastafarianism": "\u{f67b}", + "spaghetti-monster-flying": "\u{f67b}", + "peace": "\u{f67c}", + "phone-office": "\u{f67d}", + "pi": "\u{f67e}", + "place-of-worship": "\u{f67f}", + "podium": "\u{f680}", + "poll": "\u{f681}", + "square-poll-vertical": "\u{f681}", + "poll-h": "\u{f682}", + "square-poll-horizontal": "\u{f682}", + "person-praying": "\u{f683}", + "pray": "\u{f683}", + "hands-praying": "\u{f684}", + "praying-hands": "\u{f684}", + "presentation": "\u{f685}", + "presentation-screen": "\u{f685}", + "print-slash": "\u{f686}", + "book-quran": "\u{f687}", + "quran": "\u{f687}", + "magnifying-glass-dollar": "\u{f688}", + "search-dollar": "\u{f688}", + "magnifying-glass-location": "\u{f689}", + "search-location": "\u{f689}", + "shredder": "\u{f68a}", + "sigma": "\u{f68b}", + "signal-1": "\u{f68c}", + "signal-weak": "\u{f68c}", + "signal-2": "\u{f68d}", + "signal-fair": "\u{f68d}", + "signal-3": "\u{f68e}", + "signal-good": "\u{f68e}", + "signal-4": "\u{f68f}", + "signal-strong": "\u{f68f}", + "signal-alt": "\u{f690}", + "signal-alt-4": "\u{f690}", + "signal-bars": "\u{f690}", + "signal-bars-strong": "\u{f690}", + "signal-alt-1": "\u{f691}", + "signal-bars-weak": "\u{f691}", + "signal-alt-2": "\u{f692}", + "signal-bars-fair": "\u{f692}", + "signal-alt-3": "\u{f693}", + "signal-bars-good": "\u{f693}", + "signal-alt-slash": "\u{f694}", + "signal-bars-slash": "\u{f694}", + "signal-slash": "\u{f695}", + "socks": "\u{f696}", + "square-root": "\u{f697}", + "square-root-alt": "\u{f698}", + "square-root-variable": "\u{f698}", + "star-and-crescent": "\u{f699}", + "star-of-david": "\u{f69a}", + "synagogue": "\u{f69b}", + "tally": "\u{f69c}", + "tally-5": "\u{f69c}", + "the-red-yeti": "\u{f69d}", + "theta": "\u{f69e}", + "scroll-torah": "\u{f6a0}", + "torah": "\u{f6a0}", + "torii-gate": "\u{f6a1}", + "union": "\u{f6a2}", + "chart-user": "\u{f6a3}", + "user-chart": "\u{f6a3}", + "user-crown": "\u{f6a4}", + "user-group-crown": "\u{f6a5}", + "users-crown": "\u{f6a5}", + "value-absolute": "\u{f6a6}", + "vihara": "\u{f6a7}", + "volume": "\u{f6a8}", + "volume-medium": "\u{f6a8}", + "volume-mute": "\u{f6a9}", + "volume-times": "\u{f6a9}", + "volume-xmark": "\u{f6a9}", + "wifi-1": "\u{f6aa}", + "wifi-weak": "\u{f6aa}", + "wifi-2": "\u{f6ab}", + "wifi-fair": "\u{f6ab}", + "wifi-slash": "\u{f6ac}", + "yin-yang": "\u{f6ad}", + "acorn": "\u{f6ae}", + "alicorn": "\u{f6b0}", + "apple-crate": "\u{f6b1}", + "crate-apple": "\u{f6b1}", + "axe": "\u{f6b2}", + "axe-battle": "\u{f6b3}", + "badger-honey": "\u{f6b4}", + "bat": "\u{f6b5}", + "blender-phone": "\u{f6b6}", + "book-dead": "\u{f6b7}", + "book-skull": "\u{f6b7}", + "book-sparkles": "\u{f6b8}", + "book-spells": "\u{f6b8}", + "bow-arrow": "\u{f6b9}", + "campfire": "\u{f6ba}", + "campground": "\u{f6bb}", + "candle-holder": "\u{f6bc}", + "candy-corn": "\u{f6bd}", + "cat": "\u{f6be}", + "cauldron": "\u{f6bf}", + "chair": "\u{f6c0}", + "chair-office": "\u{f6c1}", + "claw-marks": "\u{f6c2}", + "cloud-moon": "\u{f6c3}", + "cloud-sun": "\u{f6c4}", + "coffee-togo": "\u{f6c5}", + "cup-togo": "\u{f6c5}", + "coffin": "\u{f6c6}", + "corn": "\u{f6c7}", + "cow": "\u{f6c8}", + "critical-role": "\u{f6c9}", + "d-and-d-beyond": "\u{f6ca}", + "dagger": "\u{f6cb}", + "dev": "\u{f6cc}", + "dice-d10": "\u{f6cd}", + "dice-d12": "\u{f6ce}", + "dice-d20": "\u{f6cf}", + "dice-d4": "\u{f6d0}", + "dice-d6": "\u{f6d1}", + "dice-d8": "\u{f6d2}", + "dog": "\u{f6d3}", + "dog-leashed": "\u{f6d4}", + "dragon": "\u{f6d5}", + "drumstick": "\u{f6d6}", + "drumstick-bite": "\u{f6d7}", + "duck": "\u{f6d8}", + "dungeon": "\u{f6d9}", + "elephant": "\u{f6da}", + "eye-evil": "\u{f6db}", + "fantasy-flight-games": "\u{f6dc}", + "file-csv": "\u{f6dd}", + "fist-raised": "\u{f6de}", + "hand-fist": "\u{f6de}", + "fire-flame": "\u{f6df}", + "flame": "\u{f6df}", + "flask-poison": "\u{f6e0}", + "flask-round-poison": "\u{f6e0}", + "flask-potion": "\u{f6e1}", + "flask-round-potion": "\u{f6e1}", + "ghost": "\u{f6e2}", + "hammer": "\u{f6e3}", + "hammer-war": "\u{f6e4}", + "hand-holding-magic": "\u{f6e5}", + "hanukiah": "\u{f6e6}", + "hat-witch": "\u{f6e7}", + "hat-wizard": "\u{f6e8}", + "head-side": "\u{f6e9}", + "head-side-goggles": "\u{f6ea}", + "head-vr": "\u{f6ea}", + "helmet-battle": "\u{f6eb}", + "hiking": "\u{f6ec}", + "person-hiking": "\u{f6ec}", + "hippo": "\u{f6ed}", + "hockey-mask": "\u{f6ee}", + "hood-cloak": "\u{f6ef}", + "horse": "\u{f6f0}", + "house-chimney-crack": "\u{f6f1}", + "house-damage": "\u{f6f1}", + "hryvnia": "\u{f6f2}", + "hryvnia-sign": "\u{f6f2}", + "key-skeleton": "\u{f6f3}", + "kite": "\u{f6f4}", + "knife-kitchen": "\u{f6f5}", + "leaf-maple": "\u{f6f6}", + "leaf-oak": "\u{f6f7}", + "mace": "\u{f6f8}", + "mandolin": "\u{f6f9}", + "mask": "\u{f6fa}", + "monkey": "\u{f6fb}", + "mountain": "\u{f6fc}", + "mountains": "\u{f6fd}", + "narwhal": "\u{f6fe}", + "network-wired": "\u{f6ff}", + "otter": "\u{f700}", + "paw-alt": "\u{f701}", + "paw-simple": "\u{f701}", + "paw-claws": "\u{f702}", + "pegasus": "\u{f703}", + "pie": "\u{f705}", + "pig": "\u{f706}", + "pumpkin": "\u{f707}", + "rabbit": "\u{f708}", + "rabbit-fast": "\u{f709}", + "rabbit-running": "\u{f709}", + "ram": "\u{f70a}", + "ring": "\u{f70b}", + "person-running": "\u{f70c}", + "running": "\u{f70c}", + "scarecrow": "\u{f70d}", + "scroll": "\u{f70e}", + "scroll-old": "\u{f70f}", + "scythe": "\u{f710}", + "sheep": "\u{f711}", + "shield-cross": "\u{f712}", + "shovel": "\u{f713}", + "skull-crossbones": "\u{f714}", + "slash": "\u{f715}", + "snake": "\u{f716}", + "spider": "\u{f717}", + "spider-black-widow": "\u{f718}", + "spider-web": "\u{f719}", + "squirrel": "\u{f71a}", + "staff": "\u{f71b}", + "sword": "\u{f71c}", + "swords": "\u{f71d}", + "toilet-paper": "\u{f71e}", + "tombstone": "\u{f720}", + "tombstone-alt": "\u{f721}", + "tombstone-blank": "\u{f721}", + "tractor": "\u{f722}", + "treasure-chest": "\u{f723}", + "trees": "\u{f724}", + "turkey": "\u{f725}", + "turtle": "\u{f726}", + "unicorn": "\u{f727}", + "user-injured": "\u{f728}", + "vr-cardboard": "\u{f729}", + "wand": "\u{f72a}", + "wand-sparkles": "\u{f72b}", + "whale": "\u{f72c}", + "wheat": "\u{f72d}", + "wind": "\u{f72e}", + "wine-bottle": "\u{f72f}", + "wizards-of-the-coast": "\u{f730}", + "think-peaks": "\u{f731}", + "ballot": "\u{f732}", + "ballot-check": "\u{f733}", + "booth-curtain": "\u{f734}", + "box-ballot": "\u{f735}", + "calendar-star": "\u{f736}", + "clipboard-list-check": "\u{f737}", + "cloud-drizzle": "\u{f738}", + "cloud-hail": "\u{f739}", + "cloud-hail-mixed": "\u{f73a}", + "cloud-meatball": "\u{f73b}", + "cloud-moon-rain": "\u{f73c}", + "cloud-rain": "\u{f73d}", + "cloud-rainbow": "\u{f73e}", + "cloud-showers": "\u{f73f}", + "cloud-showers-heavy": "\u{f740}", + "cloud-sleet": "\u{f741}", + "cloud-snow": "\u{f742}", + "cloud-sun-rain": "\u{f743}", + "clouds": "\u{f744}", + "clouds-moon": "\u{f745}", + "clouds-sun": "\u{f746}", + "democrat": "\u{f747}", + "dewpoint": "\u{f748}", + "droplet-degree": "\u{f748}", + "eclipse": "\u{f749}", + "eclipse-alt": "\u{f74a}", + "moon-over-sun": "\u{f74a}", + "fire-smoke": "\u{f74b}", + "flag-alt": "\u{f74c}", + "flag-swallowtail": "\u{f74c}", + "flag-usa": "\u{f74d}", + "cloud-fog": "\u{f74e}", + "fog": "\u{f74e}", + "house-flood": "\u{f74f}", + "house-water": "\u{f74f}", + "droplet-percent": "\u{f750}", + "humidity": "\u{f750}", + "hurricane": "\u{f751}", + "landmark-alt": "\u{f752}", + "landmark-dome": "\u{f752}", + "meteor": "\u{f753}", + "moon-cloud": "\u{f754}", + "moon-stars": "\u{f755}", + "person-booth": "\u{f756}", + "person-sign": "\u{f757}", + "podium-star": "\u{f758}", + "poll-people": "\u{f759}", + "poo-bolt": "\u{f75a}", + "poo-storm": "\u{f75a}", + "rainbow": "\u{f75b}", + "raindrops": "\u{f75c}", + "reacteurope": "\u{f75d}", + "republican": "\u{f75e}", + "smog": "\u{f75f}", + "smoke": "\u{f760}", + "snow-blowing": "\u{f761}", + "stars": "\u{f762}", + "sun-cloud": "\u{f763}", + "sun-dust": "\u{f764}", + "sun-haze": "\u{f765}", + "sunrise": "\u{f766}", + "sunset": "\u{f767}", + "temperature-frigid": "\u{f768}", + "temperature-snow": "\u{f768}", + "temperature-high": "\u{f769}", + "temperature-hot": "\u{f76a}", + "temperature-sun": "\u{f76a}", + "temperature-low": "\u{f76b}", + "cloud-bolt": "\u{f76c}", + "thunderstorm": "\u{f76c}", + "cloud-bolt-moon": "\u{f76d}", + "thunderstorm-moon": "\u{f76d}", + "cloud-bolt-sun": "\u{f76e}", + "thunderstorm-sun": "\u{f76e}", + "tornado": "\u{f76f}", + "volcano": "\u{f770}", + "times-to-slot": "\u{f771}", + "vote-nay": "\u{f771}", + "xmark-to-slot": "\u{f771}", + "check-to-slot": "\u{f772}", + "vote-yea": "\u{f772}", + "water": "\u{f773}", + "water-arrow-down": "\u{f774}", + "water-lower": "\u{f774}", + "water-arrow-up": "\u{f775}", + "water-rise": "\u{f775}", + "wind-circle-exclamation": "\u{f776}", + "wind-warning": "\u{f776}", + "windsock": "\u{f777}", + "angel": "\u{f779}", + "artstation": "\u{f77a}", + "atlassian": "\u{f77b}", + "baby": "\u{f77c}", + "baby-carriage": "\u{f77d}", + "carriage-baby": "\u{f77d}", + "ball-pile": "\u{f77e}", + "bells": "\u{f77f}", + "biohazard": "\u{f780}", + "blog": "\u{f781}", + "boot": "\u{f782}", + "calendar-day": "\u{f783}", + "calendar-week": "\u{f784}", + "canadian-maple-leaf": "\u{f785}", + "candy-cane": "\u{f786}", + "carrot": "\u{f787}", + "cash-register": "\u{f788}", + "centos": "\u{f789}", + "chart-network": "\u{f78a}", + "chimney": "\u{f78b}", + "compress-arrows-alt": "\u{f78c}", + "minimize": "\u{f78c}", + "confluence": "\u{f78d}", + "deer": "\u{f78e}", + "deer-rudolph": "\u{f78f}", + "dhl": "\u{f790}", + "diaspora": "\u{f791}", + "dreidel": "\u{f792}", + "dumpster": "\u{f793}", + "dumpster-fire": "\u{f794}", + "ear-muffs": "\u{f795}", + "ethernet": "\u{f796}", + "fedex": "\u{f797}", + "fedora": "\u{f798}", + "figma": "\u{f799}", + "fireplace": "\u{f79a}", + "frosty-head": "\u{f79b}", + "snowman-head": "\u{f79b}", + "gifts": "\u{f79c}", + "gingerbread-man": "\u{f79d}", + "champagne-glass": "\u{f79e}", + "glass-champagne": "\u{f79e}", + "champagne-glasses": "\u{f79f}", + "glass-cheers": "\u{f79f}", + "glass-whiskey": "\u{f7a0}", + "whiskey-glass": "\u{f7a0}", + "glass-whiskey-rocks": "\u{f7a1}", + "whiskey-glass-ice": "\u{f7a1}", + "earth-europe": "\u{f7a2}", + "globe-europe": "\u{f7a2}", + "globe-snow": "\u{f7a3}", + "grip-lines": "\u{f7a4}", + "grip-lines-vertical": "\u{f7a5}", + "guitar": "\u{f7a6}", + "hat-santa": "\u{f7a7}", + "hat-winter": "\u{f7a8}", + "heart-broken": "\u{f7a9}", + "heart-crack": "\u{f7a9}", + "holly-berry": "\u{f7aa}", + "horse-head": "\u{f7ab}", + "ice-skate": "\u{f7ac}", + "icicles": "\u{f7ad}", + "igloo": "\u{f7ae}", + "intercom": "\u{f7af}", + "invision": "\u{f7b0}", + "jira": "\u{f7b1}", + "lights-holiday": "\u{f7b2}", + "mendeley": "\u{f7b3}", + "mistletoe": "\u{f7b4}", + "mitten": "\u{f7b5}", + "mug-hot": "\u{f7b6}", + "mug-marshmallows": "\u{f7b7}", + "ornament": "\u{f7b8}", + "radiation": "\u{f7b9}", + "circle-radiation": "\u{f7ba}", + "radiation-alt": "\u{f7ba}", + "raspberry-pi": "\u{f7bb}", + "redhat": "\u{f7bc}", + "restroom": "\u{f7bd}", + "rv": "\u{f7be}", + "satellite": "\u{f7bf}", + "satellite-dish": "\u{f7c0}", + "scarf": "\u{f7c1}", + "sd-card": "\u{f7c2}", + "shovel-snow": "\u{f7c3}", + "sim-card": "\u{f7c4}", + "person-skating": "\u{f7c5}", + "skating": "\u{f7c5}", + "sketch": "\u{f7c6}", + "person-ski-jumping": "\u{f7c7}", + "ski-jump": "\u{f7c7}", + "person-ski-lift": "\u{f7c8}", + "ski-lift": "\u{f7c8}", + "person-skiing": "\u{f7c9}", + "skiing": "\u{f7c9}", + "person-skiing-nordic": "\u{f7ca}", + "skiing-nordic": "\u{f7ca}", + "person-sledding": "\u{f7cb}", + "sledding": "\u{f7cb}", + "sleigh": "\u{f7cc}", + "comment-sms": "\u{f7cd}", + "sms": "\u{f7cd}", + "person-snowboarding": "\u{f7ce}", + "snowboarding": "\u{f7ce}", + "snowflakes": "\u{f7cf}", + "snowman": "\u{f7d0}", + "person-snowmobiling": "\u{f7d1}", + "snowmobile": "\u{f7d1}", + "snowplow": "\u{f7d2}", + "sourcetree": "\u{f7d3}", + "star-christmas": "\u{f7d4}", + "stocking": "\u{f7d5}", + "suse": "\u{f7d6}", + "tenge": "\u{f7d7}", + "tenge-sign": "\u{f7d7}", + "toilet": "\u{f7d8}", + "screwdriver-wrench": "\u{f7d9}", + "tools": "\u{f7d9}", + "cable-car": "\u{f7da}", + "tram": "\u{f7da}", + "tree-christmas": "\u{f7db}", + "tree-decorated": "\u{f7dc}", + "tree-large": "\u{f7dd}", + "truck-plow": "\u{f7de}", + "ubuntu": "\u{f7df}", + "ups": "\u{f7e0}", + "usps": "\u{f7e1}", + "wreath": "\u{f7e2}", + "yarn": "\u{f7e3}", + "fire-alt": "\u{f7e4}", + "fire-flame-curved": "\u{f7e4}", + "bacon": "\u{f7e5}", + "book-medical": "\u{f7e6}", + "book-user": "\u{f7e7}", + "books-medical": "\u{f7e8}", + "brackets": "\u{f7e9}", + "brackets-square": "\u{f7e9}", + "brackets-curly": "\u{f7ea}", + "bread-loaf": "\u{f7eb}", + "bread-slice": "\u{f7ec}", + "burrito": "\u{f7ed}", + "chart-scatter": "\u{f7ee}", + "cheese": "\u{f7ef}", + "cheese-swiss": "\u{f7f0}", + "burger-cheese": "\u{f7f1}", + "cheeseburger": "\u{f7f1}", + "clinic-medical": "\u{f7f2}", + "house-chimney-medical": "\u{f7f2}", + "clipboard-user": "\u{f7f3}", + "comment-alt-medical": "\u{f7f4}", + "message-medical": "\u{f7f4}", + "comment-medical": "\u{f7f5}", + "croissant": "\u{f7f6}", + "crutch": "\u{f7f7}", + "crutches": "\u{f7f8}", + "ban-bug": "\u{f7f9}", + "debug": "\u{f7f9}", + "disease": "\u{f7fa}", + "egg": "\u{f7fb}", + "egg-fried": "\u{f7fc}", + "files-medical": "\u{f7fd}", + "fish-cooked": "\u{f7fe}", + "flower": "\u{f7ff}", + "flower-daffodil": "\u{f800}", + "flower-tulip": "\u{f801}", + "folder-tree": "\u{f802}", + "french-fries": "\u{f803}", + "glass": "\u{f804}", + "burger": "\u{f805}", + "hamburger": "\u{f805}", + "hand-middle-finger": "\u{f806}", + "hard-hat": "\u{f807}", + "hat-hard": "\u{f807}", + "helmet-safety": "\u{f807}", + "head-side-brain": "\u{f808}", + "head-side-medical": "\u{f809}", + "hospital-user": "\u{f80d}", + "hospitals": "\u{f80e}", + "hotdog": "\u{f80f}", + "ice-cream": "\u{f810}", + "island-tree-palm": "\u{f811}", + "island-tropical": "\u{f811}", + "laptop-medical": "\u{f812}", + "mailbox": "\u{f813}", + "meat": "\u{f814}", + "pager": "\u{f815}", + "pepper-hot": "\u{f816}", + "pizza": "\u{f817}", + "pizza-slice": "\u{f818}", + "popcorn": "\u{f819}", + "print-magnifying-glass": "\u{f81a}", + "print-search": "\u{f81a}", + "rings-wedding": "\u{f81b}", + "sack": "\u{f81c}", + "sack-dollar": "\u{f81d}", + "bowl-salad": "\u{f81e}", + "salad": "\u{f81e}", + "sandwich": "\u{f81f}", + "sausage": "\u{f820}", + "shish-kebab": "\u{f821}", + "sickle": "\u{f822}", + "bowl-hot": "\u{f823}", + "soup": "\u{f823}", + "steak": "\u{f824}", + "stretcher": "\u{f825}", + "taco": "\u{f826}", + "book-tanakh": "\u{f827}", + "tanakh": "\u{f827}", + "bars-progress": "\u{f828}", + "tasks-alt": "\u{f828}", + "trash-arrow-up": "\u{f829}", + "trash-restore": "\u{f829}", + "trash-can-arrow-up": "\u{f82a}", + "trash-restore-alt": "\u{f82a}", + "tree-palm": "\u{f82b}", + "user-construction": "\u{f82c}", + "user-hard-hat": "\u{f82c}", + "user-helmet-safety": "\u{f82c}", + "user-headset": "\u{f82d}", + "user-doctor-message": "\u{f82e}", + "user-md-chat": "\u{f82e}", + "user-nurse": "\u{f82f}", + "users-medical": "\u{f830}", + "walker": "\u{f831}", + "camera-web": "\u{f832}", + "webcam": "\u{f832}", + "camera-web-slash": "\u{f833}", + "webcam-slash": "\u{f833}", + "airbnb": "\u{f834}", + "battle-net": "\u{f835}", + "bootstrap": "\u{f836}", + "buffer": "\u{f837}", + "chromecast": "\u{f838}", + "evernote": "\u{f839}", + "itch-io": "\u{f83a}", + "salesforce": "\u{f83b}", + "speaker-deck": "\u{f83c}", + "symfony": "\u{f83d}", + "wave-square": "\u{f83e}", + "waze": "\u{f83f}", + "yammer": "\u{f840}", + "git-alt": "\u{f841}", + "stackpath": "\u{f842}", + "alarm-exclamation": "\u{f843}", + "alarm-plus": "\u{f844}", + "alarm-snooze": "\u{f845}", + "align-slash": "\u{f846}", + "bags-shopping": "\u{f847}", + "bell-exclamation": "\u{f848}", + "bell-plus": "\u{f849}", + "biking": "\u{f84a}", + "person-biking": "\u{f84a}", + "biking-mountain": "\u{f84b}", + "person-biking-mountain": "\u{f84b}", + "border-all": "\u{f84c}", + "border-bottom": "\u{f84d}", + "border-inner": "\u{f84e}", + "border-left": "\u{f84f}", + "border-none": "\u{f850}", + "border-outer": "\u{f851}", + "border-right": "\u{f852}", + "border-style": "\u{f853}", + "border-top-left": "\u{f853}", + "border-bottom-right": "\u{f854}", + "border-style-alt": "\u{f854}", + "border-top": "\u{f855}", + "bring-forward": "\u{f856}", + "bring-front": "\u{f857}", + "burger-soda": "\u{f858}", + "car-building": "\u{f859}", + "car-bus": "\u{f85a}", + "cars": "\u{f85b}", + "coin": "\u{f85c}", + "construction": "\u{f85d}", + "triangle-person-digging": "\u{f85d}", + "digging": "\u{f85e}", + "person-digging": "\u{f85e}", + "drone": "\u{f85f}", + "drone-alt": "\u{f860}", + "drone-front": "\u{f860}", + "dryer": "\u{f861}", + "dryer-alt": "\u{f862}", + "dryer-heat": "\u{f862}", + "fan": "\u{f863}", + "barn-silo": "\u{f864}", + "farm": "\u{f864}", + "file-magnifying-glass": "\u{f865}", + "file-search": "\u{f865}", + "font-case": "\u{f866}", + "game-board": "\u{f867}", + "game-board-alt": "\u{f868}", + "game-board-simple": "\u{f868}", + "glass-citrus": "\u{f869}", + "h4": "\u{f86a}", + "hat-chef": "\u{f86b}", + "horizontal-rule": "\u{f86c}", + "heart-music-camera-bolt": "\u{f86d}", + "icons": "\u{f86d}", + "icons-alt": "\u{f86e}", + "symbols": "\u{f86e}", + "kerning": "\u{f86f}", + "line-columns": "\u{f870}", + "line-height": "\u{f871}", + "money-check-edit": "\u{f872}", + "money-check-pen": "\u{f872}", + "money-check-dollar-pen": "\u{f873}", + "money-check-edit-alt": "\u{f873}", + "mug": "\u{f874}", + "mug-tea": "\u{f875}", + "overline": "\u{f876}", + "file-dashed-line": "\u{f877}", + "page-break": "\u{f877}", + "paragraph-left": "\u{f878}", + "paragraph-rtl": "\u{f878}", + "phone-alt": "\u{f879}", + "phone-flip": "\u{f879}", + "laptop-mobile": "\u{f87a}", + "phone-laptop": "\u{f87a}", + "phone-square-alt": "\u{f87b}", + "square-phone-flip": "\u{f87b}", + "photo-film": "\u{f87c}", + "photo-video": "\u{f87c}", + "remove-format": "\u{f87d}", + "text-slash": "\u{f87d}", + "send-back": "\u{f87e}", + "send-backward": "\u{f87f}", + "snooze": "\u{f880}", + "zzz": "\u{f880}", + "arrow-down-z-a": "\u{f881}", + "sort-alpha-desc": "\u{f881}", + "sort-alpha-down-alt": "\u{f881}", + "arrow-up-z-a": "\u{f882}", + "sort-alpha-up-alt": "\u{f882}", + "arrow-down-arrow-up": "\u{f883}", + "sort-alt": "\u{f883}", + "arrow-down-short-wide": "\u{f884}", + "sort-amount-desc": "\u{f884}", + "sort-amount-down-alt": "\u{f884}", + "arrow-up-short-wide": "\u{f885}", + "sort-amount-up-alt": "\u{f885}", + "arrow-down-9-1": "\u{f886}", + "sort-numeric-desc": "\u{f886}", + "sort-numeric-down-alt": "\u{f886}", + "arrow-up-9-1": "\u{f887}", + "sort-numeric-up-alt": "\u{f887}", + "arrow-down-triangle-square": "\u{f888}", + "sort-shapes-down": "\u{f888}", + "arrow-down-square-triangle": "\u{f889}", + "sort-shapes-down-alt": "\u{f889}", + "arrow-up-triangle-square": "\u{f88a}", + "sort-shapes-up": "\u{f88a}", + "arrow-up-square-triangle": "\u{f88b}", + "sort-shapes-up-alt": "\u{f88b}", + "arrow-down-big-small": "\u{f88c}", + "sort-size-down": "\u{f88c}", + "arrow-down-small-big": "\u{f88d}", + "sort-size-down-alt": "\u{f88d}", + "arrow-up-big-small": "\u{f88e}", + "sort-size-up": "\u{f88e}", + "arrow-up-small-big": "\u{f88f}", + "sort-size-up-alt": "\u{f88f}", + "sparkles": "\u{f890}", + "spell-check": "\u{f891}", + "sunglasses": "\u{f892}", + "text": "\u{f893}", + "text-size": "\u{f894}", + "trash-arrow-turn-left": "\u{f895}", + "trash-undo": "\u{f895}", + "trash-can-arrow-turn-left": "\u{f896}", + "trash-can-undo": "\u{f896}", + "trash-undo-alt": "\u{f896}", + "voicemail": "\u{f897}", + "washer": "\u{f898}", + "washing-machine": "\u{f898}", + "wave-sine": "\u{f899}", + "wave-triangle": "\u{f89a}", + "wind-turbine": "\u{f89b}", + "border-center-h": "\u{f89c}", + "border-center-v": "\u{f89d}", + "cotton-bureau": "\u{f89e}", + "album": "\u{f89f}", + "album-collection": "\u{f8a0}", + "amp-guitar": "\u{f8a1}", + "badge-sheriff": "\u{f8a2}", + "banjo": "\u{f8a3}", + "betamax": "\u{f8a4}", + "cassette-betamax": "\u{f8a4}", + "boombox": "\u{f8a5}", + "buy-n-large": "\u{f8a6}", + "cactus": "\u{f8a7}", + "camcorder": "\u{f8a8}", + "video-handheld": "\u{f8a8}", + "camera-movie": "\u{f8a9}", + "camera-polaroid": "\u{f8aa}", + "cassette-tape": "\u{f8ab}", + "camera-cctv": "\u{f8ac}", + "cctv": "\u{f8ac}", + "clarinet": "\u{f8ad}", + "cloud-music": "\u{f8ae}", + "comment-alt-music": "\u{f8af}", + "message-music": "\u{f8af}", + "comment-music": "\u{f8b0}", + "computer-classic": "\u{f8b1}", + "computer-speaker": "\u{f8b2}", + "cowbell": "\u{f8b3}", + "cowbell-circle-plus": "\u{f8b4}", + "cowbell-more": "\u{f8b4}", + "disc-drive": "\u{f8b5}", + "file-music": "\u{f8b6}", + "film-canister": "\u{f8b7}", + "film-cannister": "\u{f8b7}", + "flashlight": "\u{f8b8}", + "flute": "\u{f8b9}", + "flux-capacitor": "\u{f8ba}", + "game-console-handheld": "\u{f8bb}", + "gramophone": "\u{f8bd}", + "guitar-electric": "\u{f8be}", + "guitars": "\u{f8bf}", + "hat-cowboy": "\u{f8c0}", + "hat-cowboy-side": "\u{f8c1}", + "head-side-headphones": "\u{f8c2}", + "horse-saddle": "\u{f8c3}", + "image-polaroid": "\u{f8c4}", + "joystick": "\u{f8c5}", + "jug": "\u{f8c6}", + "kazoo": "\u{f8c7}", + "lasso": "\u{f8c8}", + "list-music": "\u{f8c9}", + "mdb": "\u{f8ca}", + "microphone-stand": "\u{f8cb}", + "computer-mouse": "\u{f8cc}", + "mouse": "\u{f8cc}", + "computer-mouse-scrollwheel": "\u{f8cd}", + "mouse-alt": "\u{f8cd}", + "mp3-player": "\u{f8ce}", + "music-alt": "\u{f8cf}", + "music-note": "\u{f8cf}", + "music-alt-slash": "\u{f8d0}", + "music-note-slash": "\u{f8d0}", + "music-slash": "\u{f8d1}", + "orcid": "\u{f8d2}", + "phone-rotary": "\u{f8d3}", + "piano": "\u{f8d4}", + "piano-keyboard": "\u{f8d5}", + "projector": "\u{f8d6}", + "radio": "\u{f8d7}", + "radio-alt": "\u{f8d8}", + "radio-tuner": "\u{f8d8}", + "record-vinyl": "\u{f8d9}", + "router": "\u{f8da}", + "sax-hot": "\u{f8db}", + "saxophone-fire": "\u{f8db}", + "saxophone": "\u{f8dc}", + "signal-stream": "\u{f8dd}", + "skull-cow": "\u{f8de}", + "speaker": "\u{f8df}", + "speakers": "\u{f8e0}", + "swift": "\u{f8e1}", + "triangle-instrument": "\u{f8e2}", + "triangle-music": "\u{f8e2}", + "trumpet": "\u{f8e3}", + "turntable": "\u{f8e4}", + "tv-music": "\u{f8e6}", + "typewriter": "\u{f8e7}", + "umbraco": "\u{f8e8}", + "usb-drive": "\u{f8e9}", + "user-cowboy": "\u{f8ea}", + "user-music": "\u{f8eb}", + "cassette-vhs": "\u{f8ec}", + "vhs": "\u{f8ec}", + "violin": "\u{f8ed}", + "wagon-covered": "\u{f8ee}", + "walkie-talkie": "\u{f8ef}", + "watch-calculator": "\u{f8f0}", + "waveform": "\u{f8f1}", + "waveform-lines": "\u{f8f2}", + "waveform-path": "\u{f8f2}", + "scanner-image": "\u{f8f3}", + "air-conditioner": "\u{f8f4}", + "alien": "\u{f8f5}", + "alien-8bit": "\u{f8f6}", + "alien-monster": "\u{f8f6}", + "bed-alt": "\u{f8f7}", + "bed-front": "\u{f8f7}", + "bed-bunk": "\u{f8f8}", + "bed-empty": "\u{f8f9}", + "bell-on": "\u{f8fa}", + "blinds": "\u{f8fb}", + "blinds-open": "\u{f8fc}", + "blinds-raised": "\u{f8fd}", + "camera-home": "\u{f8fe}", + "camera-security": "\u{f8fe}", + "caravan": "\u{f8ff}", +) + +// Version: 6 +#let fa-icon-map-6 = ( + "handshake-alt-slash": "\u{e05f}", + "handshake-simple-slash": "\u{e05f}", + "toilet-paper-blank-under": "\u{e29f}", + "toilet-paper-reverse-alt": "\u{e29f}", + "vector-circle": "\u{e2c6}", + "vector-polygon": "\u{e2c7}", + "grid-horizontal": "\u{e307}", + "hexagon-vertical-nft-slanted": "\u{e506}", + "film-alt": "\u{f3a0}", + "film-simple": "\u{f3a0}", + "user-alt": "\u{f406}", + "user-large": "\u{f406}", + "handshake-alt": "\u{f4c6}", + "handshake-simple": "\u{f4c6}", + "user-alt-slash": "\u{f4fa}", + "user-large-slash": "\u{f4fa}", + "headphones-alt": "\u{f58f}", + "headphones-simple": "\u{f58f}", + "vector-square": "\u{f5cb}", + "toilet-paper-alt": "\u{f71f}", + "toilet-paper-blank": "\u{f71f}", +) + +// Version: 7 +#let fa-icon-map-7 = ( + "handshake-alt-slash": "\u{e060}", + "handshake-simple-slash": "\u{e060}", + "toilet-paper-blank-under": "\u{e2a0}", + "toilet-paper-reverse-alt": "\u{e2a0}", + "hexagon-vertical-nft-slanted": "\u{e505}", + "user-alt": "\u{f007}", + "user-large": "\u{f007}", + "film-alt": "\u{f008}", + "film-simple": "\u{f008}", + "headphones-alt": "\u{f025}", + "headphones-simple": "\u{f025}", + "handshake-alt": "\u{f2b5}", + "handshake-simple": "\u{f2b5}", + "user-alt-slash": "\u{f506}", + "user-large-slash": "\u{f506}", + "grid-horizontal": "\u{f58d}", + "vector-circle": "\u{f5ed}", + "vector-polygon": "\u{f5ee}", + "vector-square": "\u{f5ef}", + "toilet-paper-alt": "\u{f71e}", + "toilet-paper-blank": "\u{f71e}", +) + +#let fa-icon-map-version = ( + "6": fa-icon-map-6, + "7": fa-icon-map-7, +) diff --git a/packages/preview/fontawesome/0.6.2/lib-impl.typ b/packages/preview/fontawesome/0.6.2/lib-impl.typ new file mode 100644 index 0000000000..f87d1d5a61 --- /dev/null +++ b/packages/preview/fontawesome/0.6.2/lib-impl.typ @@ -0,0 +1,90 @@ +#import "lib-gen-map.typ": * + +// Currently, we assume there is no need to enable Pro sets for only a part of the document, +// so no method is provided to disable Pro sets +#let _fa_use_pro = state("_fa_use_pro", false) +#let fa-use-pro() = { + _fa_use_pro.update(true) +} + +#let _fa_version = state("_fa_version", "7") +#let fa-version(version) = { + _fa_version.update(version) +} + +/// Render a Font Awesome icon by its name or unicode +/// +/// Parameters: +/// - `name`: The name of the icon +/// - This can be name in string or unicode of the icon +/// - `solid`: Whether to use the solid version of the icon +/// - `fa-icon-map`: The map of icon names to unicode +/// - Default is a map generated from FontAwesome metadata +/// - *Not recommended* You can provide your own map to override it +/// - `..args`: Additional arguments to pass to the `text` function +/// +/// Returns: The rendered icon as a `text` element +#let fa-icon( + name, + solid: false, + fa-icon-map: (:), + ..args, +) = ( + context { + let font_base = "Font Awesome " + _fa_version.get() + + let default_fonts = ( + font_base + + " Free" + + if solid { + " Solid" + }, + font_base + " Brands", + ) + + if _fa_use_pro.get() { + // TODO: Help needed to test following fonts + // TODO: FA 7 adds more style for Pro sets + default_fonts += ( + font_base + + " Pro" + + if solid { + " Solid" + }, + font_base + + " Duotone" + + if solid { + " Solid" + }, + font_base + + " Sharp" + + if solid { + " Solid" + }, + font_base + + " Sharp Duotone" + + if solid { + " Solid" + }, + ) + } + + let fa-icon-map-final = if fa-icon-map.len() > 0 { + fa-icon-map + } else { + let version = _fa_version.get() + fa-icon-map-common + fa-icon-map-version.at(version, default: (:)) + } + + text( + font: default_fonts, // If you see warning here, please check whether the FA font is installed + + // TODO: We might need to check whether this is needed + weight: if solid { 900 } else { 400 }, + // If the name is in the map, use the unicode from the map + // If not, pass the name and let the ligature feature handle it + fa-icon-map-final.at(name, default: name), + ..args, + ) + } +) diff --git a/packages/preview/fontawesome/0.6.2/lib.typ b/packages/preview/fontawesome/0.6.2/lib.typ new file mode 100644 index 0000000000..2b330a7cf3 --- /dev/null +++ b/packages/preview/fontawesome/0.6.2/lib.typ @@ -0,0 +1,79 @@ +//! typst-fontawesome +//! +//! https://github.com/duskmoon314/typst-fontawesome + +// Implementation of `fa-icon` +#import "lib-impl.typ": fa-icon, fa-use-pro, fa-version + +// Generated icons +#import "lib-gen-map.typ": * +#import "lib-gen-func.typ": * + +// Re-export the `fa-icon` function +// The following doc comment is needed for lsp to show the documentation + +/// Render a Font Awesome icon by its name or unicode +/// +/// Parameters: +/// - `name`: The name of the icon +/// - This can be name in string or unicode of the icon +/// - `solid`: Whether to use the solid version of the icon +/// - `fa-icon-map`: The map of icon names to unicode +/// - Default is a map generated from FontAwesome metadata +/// - *Not recommended* You can provide your own map to override it +/// - `..args`: Additional arguments to pass to the `text` function +/// +/// Returns: The rendered icon as a `text` element +#let fa-icon = fa-icon + +/// Render multiple Font Awesome icons together +/// +/// Parameters: +/// - `icons`: The list of icons to render +/// - Multiple types are supported: +/// - `str`: The name of the icon, e.g. `"square"` +/// - `array`: A tuple of the name and additional arguments, e.g. `("chess-queen", (solid: true, fill: white))` +/// - `arguments`: Arguments to pass to the `fa-icon` function, e.g. `arguments("chess-queen", solid: true, fill: white)` +/// - `content`: Any other content you want to render, e.g. `fa-chess-queen(solid: true, fill: white)` +/// - `box-args`: Additional arguments to pass to the `box` function +/// - `grid-args`: Additional arguments to pass to the `grid` function +/// - `fa-icon-args`: Additional arguments to pass to all `fa-icon` function +#let fa-stack( + box-args: (:), + grid-args: (:), + fa-icon-args: (:), + ..icons, +) = ( + context { + let icons = icons + .pos() + .map(icon => { + if type(icon) == str { + fa-icon(icon, ..fa-icon-args) + } else if type(icon) == array { + let (name, args) = icon + fa-icon(name, ..fa-icon-args, ..args) + } else if type(icon) == arguments { + fa-icon(..icon.pos(), ..fa-icon-args, ..icon.named()) + } else if type(icon) == content { + icon + } else { + panic("Unsupported content. Please submit an issue for your use case.") + } + }) + + // Get the maximum width of the icons + let max-width = calc.max(..icons.map(icon => { + measure(icon).width + })) + + box(..box-args, grid( + align: center + horizon, + columns: icons.len() * (max-width,), + column-gutter: -max-width, + rows: 1, + ..grid-args, + ..icons + )) + } +) diff --git a/packages/preview/fontawesome/0.6.2/typst.toml b/packages/preview/fontawesome/0.6.2/typst.toml new file mode 100644 index 0000000000..641176690b --- /dev/null +++ b/packages/preview/fontawesome/0.6.2/typst.toml @@ -0,0 +1,8 @@ +[package] +name = "fontawesome" +version = "0.6.2" +entrypoint = "lib.typ" +authors = ["duskmoon (Campbell He) "] +license = "MIT" +description = "A package for Font Awesome icons through the desktop fonts." +repository = "https://github.com/duskmoon314/typst-fontawesome"