├── .gitignore
├── .prettierrc
├── LICENSE
├── README.md
├── components
├── Footer.jsx
├── Icon.jsx
├── Icons.jsx
├── Layout.jsx
├── Loading.jsx
├── Navbar.jsx
└── Search.jsx
├── getIcons.js
├── package-lock.json
├── package.json
├── pages
├── _app.js
└── index.jsx
├── public
├── brand_icons.json
├── card.jpg
├── favicon.ico
├── generic_icons.json
└── supacon.svg
├── styles
├── Footer.module.css
├── Icon.module.css
├── Loading.module.css
├── Navbar.module.css
├── Search.module.css
├── globals.css
└── index.module.css
└── supacons.jpg
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 |
27 | # local env files
28 | .env.local
29 | .env.development.local
30 | .env.test.local
31 | .env.production.local
32 |
33 | # vercel
34 | .vercel
35 |
36 |
37 |
38 | # ignore files from core branch
39 | css/
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "jsxBracketSameLine": true,
3 | "jsxSingleQuote": true,
4 | "printWidth": 120,
5 | "singleQuote": true,
6 | "tabWidth": 4,
7 | "arrowParens": "avoid"
8 | }
9 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 poseidon-code
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | 
4 |
5 | [`https://supacons.netlify.app`](https://supacons.netlify.app)
6 |
7 | Font Icons ripped from popular Font Awesome 6 icon pack including all Pro icons !
8 |
9 | ### •
10 |
11 |
12 |
13 | The icons were switched from a SVG based icons to a font based icons system _([Why font based icon?](https://github.com/poseidon-code/supacons/tree/core))_. These icons can be included in your projects just by using the following HTML ` ` tag :
14 |
15 | ```html
16 |
17 | ```
18 |
19 | Check [`core`](https://github.com/poseidon-code/supacons/tree/core) branch for more usage guidelines and info about customizing icons.
20 |
21 | ---
22 |
23 | ## [MIT License](./LICENSE)
24 |
--------------------------------------------------------------------------------
/components/Footer.jsx:
--------------------------------------------------------------------------------
1 | import Link from 'next/link';
2 | import styles from '../styles/Footer.module.css';
3 | import { Brand, Github, Facebook, Linkedin } from './Icons';
4 |
5 | const Footer = () => {
6 | return (
7 |
57 | );
58 | };
59 |
60 | export default Footer;
61 |
--------------------------------------------------------------------------------
/components/Icon.jsx:
--------------------------------------------------------------------------------
1 | import styles from '../styles/Icon.module.css';
2 |
3 | const Icon = ({ name, type, subtypes, clipboard: { copier } }) => {
4 | const copyIconTag = (type, subtype, name) => {
5 | copier(` `);
6 | };
7 |
8 | return subtypes.map((subtype, i) => {
9 | return (
10 | copyIconTag(type, subtype, name)}
15 | title={`
`}>
16 |
17 | {type === 'brands' ? 'B' : type === 'classic' ? 'C' : type === 'sharp' ? 'S' : null}
18 | {subtype === 'brands'
19 | ? 'B'
20 | : subtype === 'duotone'
21 | ? 'D'
22 | : subtype === 'solid'
23 | ? 'S'
24 | : subtype === 'regular'
25 | ? 'R'
26 | : subtype === 'light'
27 | ? 'L'
28 | : subtype === 'thin'
29 | ? 'T'
30 | : null}
31 |
32 |
33 |
34 |
35 |
{name}
36 |
37 | );
38 | });
39 | };
40 |
41 | export default Icon;
42 |
--------------------------------------------------------------------------------
/components/Icons.jsx:
--------------------------------------------------------------------------------
1 | export const Brand = () => (
2 |
13 |
14 |
19 |
24 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | );
53 |
54 | export const Code = () => (
55 |
56 |
57 |
58 | );
59 |
60 | export const Github = () => (
61 |
67 |
68 |
69 | );
70 |
71 | export const License = () => (
72 |
73 |
79 |
80 | );
81 |
82 | export const Count = () => (
83 |
84 |
85 |
86 | );
87 |
88 | export const Facebook = () => (
89 |
96 |
97 |
98 | );
99 |
100 | export const Linkedin = () => (
101 |
108 |
109 |
110 |
111 |
112 | );
113 |
114 | export const MagnifyingGlass = () => (
115 |
116 |
122 |
123 | );
124 |
125 | export const NotFound = () => (
126 |
127 |
133 |
134 | );
135 |
136 | export const Info = () => (
137 |
138 |
141 |
142 | );
143 |
--------------------------------------------------------------------------------
/components/Layout.jsx:
--------------------------------------------------------------------------------
1 | import Head from 'next/head';
2 |
3 | import Navbar from './Navbar';
4 | import Footer from './Footer';
5 | import Search from './Search';
6 |
7 | const Layout = props => {
8 | return (
9 | <>
10 |
11 | Supacons 6 | Font Icons
12 |
13 |
14 |
18 |
19 |
23 |
24 |
25 |
26 |
27 |
31 |
32 |
33 |
34 |
35 |
36 |
40 |
41 |
42 |
43 |
44 |
45 | {props.children}
46 |
47 | >
48 | );
49 | };
50 |
51 | export default Layout;
52 |
--------------------------------------------------------------------------------
/components/Loading.jsx:
--------------------------------------------------------------------------------
1 | import styles from '../styles/Loading.module.css';
2 |
3 | const Loading = () => (
4 |
7 | );
8 |
9 | export default Loading;
10 |
11 | export const Spinner = () => (
12 |
18 | );
19 |
--------------------------------------------------------------------------------
/components/Navbar.jsx:
--------------------------------------------------------------------------------
1 | import Link from 'next/link';
2 | import styles from '../styles/Navbar.module.css';
3 | import { Brand, Code, Count, Github, License, Info } from './Icons';
4 |
5 | const Navbar = () => {
6 | return (
7 |
8 |
9 |
10 |
11 | Supacons 6
12 |
13 |
37 |
38 |
39 |
40 |
63 |
64 | );
65 | };
66 |
67 | export default Navbar;
68 |
--------------------------------------------------------------------------------
/components/Search.jsx:
--------------------------------------------------------------------------------
1 | import { useRef } from 'react';
2 | import styles from '../styles/Search.module.css';
3 |
4 | import { MagnifyingGlass } from './Icons';
5 |
6 | const Search = ({ setSearch }) => {
7 | const searchRef = useRef();
8 |
9 | return (
10 |
19 |
20 |
21 |
22 | {
27 | if (e.key === 'Enter') {
28 | setSearch(searchRef.current.value);
29 | }
30 | }}
31 | />
32 |
33 |
34 |
35 | );
36 | };
37 |
38 | export default Search;
39 |
--------------------------------------------------------------------------------
/getIcons.js:
--------------------------------------------------------------------------------
1 | export default async () => {
2 | const generic_icons = (await import('./public/generic_icons.json')).default;
3 | const genericIcons = JSON.parse(JSON.stringify(generic_icons));
4 |
5 | const brand_icons = (await import('./public/brand_icons.json')).default;
6 | const brandIcons = JSON.parse(JSON.stringify(brand_icons));
7 |
8 | let icons = {
9 | generic: genericIcons,
10 | brands: brandIcons,
11 | };
12 |
13 | return icons;
14 | };
15 |
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "supacons",
3 | "version": "6.5.1",
4 | "lockfileVersion": 2,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "supacons",
9 | "version": "6.5.1",
10 | "license": "MIT",
11 | "dependencies": {
12 | "clipboard": "^2.0.8",
13 | "next": "^14.2.5",
14 | "react": "^18.2.0",
15 | "react-dom": "^18.2.0"
16 | }
17 | },
18 | "node_modules/@next/env": {
19 | "version": "14.2.5",
20 | "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.5.tgz",
21 | "integrity": "sha512-/zZGkrTOsraVfYjGP8uM0p6r0BDT6xWpkjdVbcz66PJVSpwXX3yNiRycxAuDfBKGWBrZBXRuK/YVlkNgxHGwmA=="
22 | },
23 | "node_modules/@next/swc-darwin-arm64": {
24 | "version": "14.2.5",
25 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.5.tgz",
26 | "integrity": "sha512-/9zVxJ+K9lrzSGli1///ujyRfon/ZneeZ+v4ptpiPoOU+GKZnm8Wj8ELWU1Pm7GHltYRBklmXMTUqM/DqQ99FQ==",
27 | "cpu": [
28 | "arm64"
29 | ],
30 | "optional": true,
31 | "os": [
32 | "darwin"
33 | ],
34 | "engines": {
35 | "node": ">= 10"
36 | }
37 | },
38 | "node_modules/@next/swc-darwin-x64": {
39 | "version": "14.2.5",
40 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.5.tgz",
41 | "integrity": "sha512-vXHOPCwfDe9qLDuq7U1OYM2wUY+KQ4Ex6ozwsKxp26BlJ6XXbHleOUldenM67JRyBfVjv371oneEvYd3H2gNSA==",
42 | "cpu": [
43 | "x64"
44 | ],
45 | "optional": true,
46 | "os": [
47 | "darwin"
48 | ],
49 | "engines": {
50 | "node": ">= 10"
51 | }
52 | },
53 | "node_modules/@next/swc-linux-arm64-gnu": {
54 | "version": "14.2.5",
55 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.5.tgz",
56 | "integrity": "sha512-vlhB8wI+lj8q1ExFW8lbWutA4M2ZazQNvMWuEDqZcuJJc78iUnLdPPunBPX8rC4IgT6lIx/adB+Cwrl99MzNaA==",
57 | "cpu": [
58 | "arm64"
59 | ],
60 | "optional": true,
61 | "os": [
62 | "linux"
63 | ],
64 | "engines": {
65 | "node": ">= 10"
66 | }
67 | },
68 | "node_modules/@next/swc-linux-arm64-musl": {
69 | "version": "14.2.5",
70 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.5.tgz",
71 | "integrity": "sha512-NpDB9NUR2t0hXzJJwQSGu1IAOYybsfeB+LxpGsXrRIb7QOrYmidJz3shzY8cM6+rO4Aojuef0N/PEaX18pi9OA==",
72 | "cpu": [
73 | "arm64"
74 | ],
75 | "optional": true,
76 | "os": [
77 | "linux"
78 | ],
79 | "engines": {
80 | "node": ">= 10"
81 | }
82 | },
83 | "node_modules/@next/swc-linux-x64-gnu": {
84 | "version": "14.2.5",
85 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.5.tgz",
86 | "integrity": "sha512-8XFikMSxWleYNryWIjiCX+gU201YS+erTUidKdyOVYi5qUQo/gRxv/3N1oZFCgqpesN6FPeqGM72Zve+nReVXQ==",
87 | "cpu": [
88 | "x64"
89 | ],
90 | "optional": true,
91 | "os": [
92 | "linux"
93 | ],
94 | "engines": {
95 | "node": ">= 10"
96 | }
97 | },
98 | "node_modules/@next/swc-linux-x64-musl": {
99 | "version": "14.2.5",
100 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.5.tgz",
101 | "integrity": "sha512-6QLwi7RaYiQDcRDSU/os40r5o06b5ue7Jsk5JgdRBGGp8l37RZEh9JsLSM8QF0YDsgcosSeHjglgqi25+m04IQ==",
102 | "cpu": [
103 | "x64"
104 | ],
105 | "optional": true,
106 | "os": [
107 | "linux"
108 | ],
109 | "engines": {
110 | "node": ">= 10"
111 | }
112 | },
113 | "node_modules/@next/swc-win32-arm64-msvc": {
114 | "version": "14.2.5",
115 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.5.tgz",
116 | "integrity": "sha512-1GpG2VhbspO+aYoMOQPQiqc/tG3LzmsdBH0LhnDS3JrtDx2QmzXe0B6mSZZiN3Bq7IOMXxv1nlsjzoS1+9mzZw==",
117 | "cpu": [
118 | "arm64"
119 | ],
120 | "optional": true,
121 | "os": [
122 | "win32"
123 | ],
124 | "engines": {
125 | "node": ">= 10"
126 | }
127 | },
128 | "node_modules/@next/swc-win32-ia32-msvc": {
129 | "version": "14.2.5",
130 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.5.tgz",
131 | "integrity": "sha512-Igh9ZlxwvCDsu6438FXlQTHlRno4gFpJzqPjSIBZooD22tKeI4fE/YMRoHVJHmrQ2P5YL1DoZ0qaOKkbeFWeMg==",
132 | "cpu": [
133 | "ia32"
134 | ],
135 | "optional": true,
136 | "os": [
137 | "win32"
138 | ],
139 | "engines": {
140 | "node": ">= 10"
141 | }
142 | },
143 | "node_modules/@next/swc-win32-x64-msvc": {
144 | "version": "14.2.5",
145 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.5.tgz",
146 | "integrity": "sha512-tEQ7oinq1/CjSG9uSTerca3v4AZ+dFa+4Yu6ihaG8Ud8ddqLQgFGcnwYls13H5X5CPDPZJdYxyeMui6muOLd4g==",
147 | "cpu": [
148 | "x64"
149 | ],
150 | "optional": true,
151 | "os": [
152 | "win32"
153 | ],
154 | "engines": {
155 | "node": ">= 10"
156 | }
157 | },
158 | "node_modules/@swc/counter": {
159 | "version": "0.1.3",
160 | "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
161 | "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="
162 | },
163 | "node_modules/@swc/helpers": {
164 | "version": "0.5.5",
165 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz",
166 | "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==",
167 | "dependencies": {
168 | "@swc/counter": "^0.1.3",
169 | "tslib": "^2.4.0"
170 | }
171 | },
172 | "node_modules/busboy": {
173 | "version": "1.6.0",
174 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
175 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
176 | "dependencies": {
177 | "streamsearch": "^1.1.0"
178 | },
179 | "engines": {
180 | "node": ">=10.16.0"
181 | }
182 | },
183 | "node_modules/caniuse-lite": {
184 | "version": "1.0.30001642",
185 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001642.tgz",
186 | "integrity": "sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==",
187 | "funding": [
188 | {
189 | "type": "opencollective",
190 | "url": "https://opencollective.com/browserslist"
191 | },
192 | {
193 | "type": "tidelift",
194 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
195 | },
196 | {
197 | "type": "github",
198 | "url": "https://github.com/sponsors/ai"
199 | }
200 | ]
201 | },
202 | "node_modules/client-only": {
203 | "version": "0.0.1",
204 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
205 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
206 | },
207 | "node_modules/clipboard": {
208 | "version": "2.0.11",
209 | "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz",
210 | "integrity": "sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==",
211 | "dependencies": {
212 | "good-listener": "^1.2.2",
213 | "select": "^1.1.2",
214 | "tiny-emitter": "^2.0.0"
215 | }
216 | },
217 | "node_modules/delegate": {
218 | "version": "3.2.0",
219 | "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
220 | "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="
221 | },
222 | "node_modules/good-listener": {
223 | "version": "1.2.2",
224 | "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
225 | "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=",
226 | "dependencies": {
227 | "delegate": "^3.1.2"
228 | }
229 | },
230 | "node_modules/graceful-fs": {
231 | "version": "4.2.11",
232 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
233 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
234 | },
235 | "node_modules/js-tokens": {
236 | "version": "4.0.0",
237 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
238 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
239 | },
240 | "node_modules/loose-envify": {
241 | "version": "1.4.0",
242 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
243 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
244 | "dependencies": {
245 | "js-tokens": "^3.0.0 || ^4.0.0"
246 | },
247 | "bin": {
248 | "loose-envify": "cli.js"
249 | }
250 | },
251 | "node_modules/nanoid": {
252 | "version": "3.3.6",
253 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
254 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
255 | "funding": [
256 | {
257 | "type": "github",
258 | "url": "https://github.com/sponsors/ai"
259 | }
260 | ],
261 | "bin": {
262 | "nanoid": "bin/nanoid.cjs"
263 | },
264 | "engines": {
265 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
266 | }
267 | },
268 | "node_modules/next": {
269 | "version": "14.2.5",
270 | "resolved": "https://registry.npmjs.org/next/-/next-14.2.5.tgz",
271 | "integrity": "sha512-0f8aRfBVL+mpzfBjYfQuLWh2WyAwtJXCRfkPF4UJ5qd2YwrHczsrSzXU4tRMV0OAxR8ZJZWPFn6uhSC56UTsLA==",
272 | "dependencies": {
273 | "@next/env": "14.2.5",
274 | "@swc/helpers": "0.5.5",
275 | "busboy": "1.6.0",
276 | "caniuse-lite": "^1.0.30001579",
277 | "graceful-fs": "^4.2.11",
278 | "postcss": "8.4.31",
279 | "styled-jsx": "5.1.1"
280 | },
281 | "bin": {
282 | "next": "dist/bin/next"
283 | },
284 | "engines": {
285 | "node": ">=18.17.0"
286 | },
287 | "optionalDependencies": {
288 | "@next/swc-darwin-arm64": "14.2.5",
289 | "@next/swc-darwin-x64": "14.2.5",
290 | "@next/swc-linux-arm64-gnu": "14.2.5",
291 | "@next/swc-linux-arm64-musl": "14.2.5",
292 | "@next/swc-linux-x64-gnu": "14.2.5",
293 | "@next/swc-linux-x64-musl": "14.2.5",
294 | "@next/swc-win32-arm64-msvc": "14.2.5",
295 | "@next/swc-win32-ia32-msvc": "14.2.5",
296 | "@next/swc-win32-x64-msvc": "14.2.5"
297 | },
298 | "peerDependencies": {
299 | "@opentelemetry/api": "^1.1.0",
300 | "@playwright/test": "^1.41.2",
301 | "react": "^18.2.0",
302 | "react-dom": "^18.2.0",
303 | "sass": "^1.3.0"
304 | },
305 | "peerDependenciesMeta": {
306 | "@opentelemetry/api": {
307 | "optional": true
308 | },
309 | "@playwright/test": {
310 | "optional": true
311 | },
312 | "sass": {
313 | "optional": true
314 | }
315 | }
316 | },
317 | "node_modules/picocolors": {
318 | "version": "1.0.0",
319 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
320 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
321 | },
322 | "node_modules/postcss": {
323 | "version": "8.4.31",
324 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
325 | "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
326 | "funding": [
327 | {
328 | "type": "opencollective",
329 | "url": "https://opencollective.com/postcss/"
330 | },
331 | {
332 | "type": "tidelift",
333 | "url": "https://tidelift.com/funding/github/npm/postcss"
334 | },
335 | {
336 | "type": "github",
337 | "url": "https://github.com/sponsors/ai"
338 | }
339 | ],
340 | "dependencies": {
341 | "nanoid": "^3.3.6",
342 | "picocolors": "^1.0.0",
343 | "source-map-js": "^1.0.2"
344 | },
345 | "engines": {
346 | "node": "^10 || ^12 || >=14"
347 | }
348 | },
349 | "node_modules/react": {
350 | "version": "18.2.0",
351 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
352 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
353 | "dependencies": {
354 | "loose-envify": "^1.1.0"
355 | },
356 | "engines": {
357 | "node": ">=0.10.0"
358 | }
359 | },
360 | "node_modules/react-dom": {
361 | "version": "18.2.0",
362 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
363 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
364 | "dependencies": {
365 | "loose-envify": "^1.1.0",
366 | "scheduler": "^0.23.0"
367 | },
368 | "peerDependencies": {
369 | "react": "^18.2.0"
370 | }
371 | },
372 | "node_modules/scheduler": {
373 | "version": "0.23.0",
374 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
375 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
376 | "dependencies": {
377 | "loose-envify": "^1.1.0"
378 | }
379 | },
380 | "node_modules/select": {
381 | "version": "1.1.2",
382 | "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
383 | "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0="
384 | },
385 | "node_modules/source-map-js": {
386 | "version": "1.0.2",
387 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
388 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
389 | "engines": {
390 | "node": ">=0.10.0"
391 | }
392 | },
393 | "node_modules/streamsearch": {
394 | "version": "1.1.0",
395 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
396 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
397 | "engines": {
398 | "node": ">=10.0.0"
399 | }
400 | },
401 | "node_modules/styled-jsx": {
402 | "version": "5.1.1",
403 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
404 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
405 | "dependencies": {
406 | "client-only": "0.0.1"
407 | },
408 | "engines": {
409 | "node": ">= 12.0.0"
410 | },
411 | "peerDependencies": {
412 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
413 | },
414 | "peerDependenciesMeta": {
415 | "@babel/core": {
416 | "optional": true
417 | },
418 | "babel-plugin-macros": {
419 | "optional": true
420 | }
421 | }
422 | },
423 | "node_modules/tiny-emitter": {
424 | "version": "2.1.0",
425 | "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
426 | "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="
427 | },
428 | "node_modules/tslib": {
429 | "version": "2.6.3",
430 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
431 | "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
432 | }
433 | },
434 | "dependencies": {
435 | "@next/env": {
436 | "version": "14.2.5",
437 | "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.5.tgz",
438 | "integrity": "sha512-/zZGkrTOsraVfYjGP8uM0p6r0BDT6xWpkjdVbcz66PJVSpwXX3yNiRycxAuDfBKGWBrZBXRuK/YVlkNgxHGwmA=="
439 | },
440 | "@next/swc-darwin-arm64": {
441 | "version": "14.2.5",
442 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.5.tgz",
443 | "integrity": "sha512-/9zVxJ+K9lrzSGli1///ujyRfon/ZneeZ+v4ptpiPoOU+GKZnm8Wj8ELWU1Pm7GHltYRBklmXMTUqM/DqQ99FQ==",
444 | "optional": true
445 | },
446 | "@next/swc-darwin-x64": {
447 | "version": "14.2.5",
448 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.5.tgz",
449 | "integrity": "sha512-vXHOPCwfDe9qLDuq7U1OYM2wUY+KQ4Ex6ozwsKxp26BlJ6XXbHleOUldenM67JRyBfVjv371oneEvYd3H2gNSA==",
450 | "optional": true
451 | },
452 | "@next/swc-linux-arm64-gnu": {
453 | "version": "14.2.5",
454 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.5.tgz",
455 | "integrity": "sha512-vlhB8wI+lj8q1ExFW8lbWutA4M2ZazQNvMWuEDqZcuJJc78iUnLdPPunBPX8rC4IgT6lIx/adB+Cwrl99MzNaA==",
456 | "optional": true
457 | },
458 | "@next/swc-linux-arm64-musl": {
459 | "version": "14.2.5",
460 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.5.tgz",
461 | "integrity": "sha512-NpDB9NUR2t0hXzJJwQSGu1IAOYybsfeB+LxpGsXrRIb7QOrYmidJz3shzY8cM6+rO4Aojuef0N/PEaX18pi9OA==",
462 | "optional": true
463 | },
464 | "@next/swc-linux-x64-gnu": {
465 | "version": "14.2.5",
466 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.5.tgz",
467 | "integrity": "sha512-8XFikMSxWleYNryWIjiCX+gU201YS+erTUidKdyOVYi5qUQo/gRxv/3N1oZFCgqpesN6FPeqGM72Zve+nReVXQ==",
468 | "optional": true
469 | },
470 | "@next/swc-linux-x64-musl": {
471 | "version": "14.2.5",
472 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.5.tgz",
473 | "integrity": "sha512-6QLwi7RaYiQDcRDSU/os40r5o06b5ue7Jsk5JgdRBGGp8l37RZEh9JsLSM8QF0YDsgcosSeHjglgqi25+m04IQ==",
474 | "optional": true
475 | },
476 | "@next/swc-win32-arm64-msvc": {
477 | "version": "14.2.5",
478 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.5.tgz",
479 | "integrity": "sha512-1GpG2VhbspO+aYoMOQPQiqc/tG3LzmsdBH0LhnDS3JrtDx2QmzXe0B6mSZZiN3Bq7IOMXxv1nlsjzoS1+9mzZw==",
480 | "optional": true
481 | },
482 | "@next/swc-win32-ia32-msvc": {
483 | "version": "14.2.5",
484 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.5.tgz",
485 | "integrity": "sha512-Igh9ZlxwvCDsu6438FXlQTHlRno4gFpJzqPjSIBZooD22tKeI4fE/YMRoHVJHmrQ2P5YL1DoZ0qaOKkbeFWeMg==",
486 | "optional": true
487 | },
488 | "@next/swc-win32-x64-msvc": {
489 | "version": "14.2.5",
490 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.5.tgz",
491 | "integrity": "sha512-tEQ7oinq1/CjSG9uSTerca3v4AZ+dFa+4Yu6ihaG8Ud8ddqLQgFGcnwYls13H5X5CPDPZJdYxyeMui6muOLd4g==",
492 | "optional": true
493 | },
494 | "@swc/counter": {
495 | "version": "0.1.3",
496 | "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
497 | "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="
498 | },
499 | "@swc/helpers": {
500 | "version": "0.5.5",
501 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz",
502 | "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==",
503 | "requires": {
504 | "@swc/counter": "^0.1.3",
505 | "tslib": "^2.4.0"
506 | }
507 | },
508 | "busboy": {
509 | "version": "1.6.0",
510 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
511 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
512 | "requires": {
513 | "streamsearch": "^1.1.0"
514 | }
515 | },
516 | "caniuse-lite": {
517 | "version": "1.0.30001642",
518 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001642.tgz",
519 | "integrity": "sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA=="
520 | },
521 | "client-only": {
522 | "version": "0.0.1",
523 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
524 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
525 | },
526 | "clipboard": {
527 | "version": "2.0.11",
528 | "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz",
529 | "integrity": "sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==",
530 | "requires": {
531 | "good-listener": "^1.2.2",
532 | "select": "^1.1.2",
533 | "tiny-emitter": "^2.0.0"
534 | }
535 | },
536 | "delegate": {
537 | "version": "3.2.0",
538 | "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
539 | "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="
540 | },
541 | "good-listener": {
542 | "version": "1.2.2",
543 | "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
544 | "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=",
545 | "requires": {
546 | "delegate": "^3.1.2"
547 | }
548 | },
549 | "graceful-fs": {
550 | "version": "4.2.11",
551 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
552 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
553 | },
554 | "js-tokens": {
555 | "version": "4.0.0",
556 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
557 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
558 | },
559 | "loose-envify": {
560 | "version": "1.4.0",
561 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
562 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
563 | "requires": {
564 | "js-tokens": "^3.0.0 || ^4.0.0"
565 | }
566 | },
567 | "nanoid": {
568 | "version": "3.3.6",
569 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
570 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="
571 | },
572 | "next": {
573 | "version": "14.2.5",
574 | "resolved": "https://registry.npmjs.org/next/-/next-14.2.5.tgz",
575 | "integrity": "sha512-0f8aRfBVL+mpzfBjYfQuLWh2WyAwtJXCRfkPF4UJ5qd2YwrHczsrSzXU4tRMV0OAxR8ZJZWPFn6uhSC56UTsLA==",
576 | "requires": {
577 | "@next/env": "14.2.5",
578 | "@next/swc-darwin-arm64": "14.2.5",
579 | "@next/swc-darwin-x64": "14.2.5",
580 | "@next/swc-linux-arm64-gnu": "14.2.5",
581 | "@next/swc-linux-arm64-musl": "14.2.5",
582 | "@next/swc-linux-x64-gnu": "14.2.5",
583 | "@next/swc-linux-x64-musl": "14.2.5",
584 | "@next/swc-win32-arm64-msvc": "14.2.5",
585 | "@next/swc-win32-ia32-msvc": "14.2.5",
586 | "@next/swc-win32-x64-msvc": "14.2.5",
587 | "@swc/helpers": "0.5.5",
588 | "busboy": "1.6.0",
589 | "caniuse-lite": "^1.0.30001579",
590 | "graceful-fs": "^4.2.11",
591 | "postcss": "8.4.31",
592 | "styled-jsx": "5.1.1"
593 | }
594 | },
595 | "picocolors": {
596 | "version": "1.0.0",
597 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
598 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
599 | },
600 | "postcss": {
601 | "version": "8.4.31",
602 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
603 | "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
604 | "requires": {
605 | "nanoid": "^3.3.6",
606 | "picocolors": "^1.0.0",
607 | "source-map-js": "^1.0.2"
608 | }
609 | },
610 | "react": {
611 | "version": "18.2.0",
612 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
613 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
614 | "requires": {
615 | "loose-envify": "^1.1.0"
616 | }
617 | },
618 | "react-dom": {
619 | "version": "18.2.0",
620 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
621 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
622 | "requires": {
623 | "loose-envify": "^1.1.0",
624 | "scheduler": "^0.23.0"
625 | }
626 | },
627 | "scheduler": {
628 | "version": "0.23.0",
629 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
630 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
631 | "requires": {
632 | "loose-envify": "^1.1.0"
633 | }
634 | },
635 | "select": {
636 | "version": "1.1.2",
637 | "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
638 | "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0="
639 | },
640 | "source-map-js": {
641 | "version": "1.0.2",
642 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
643 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
644 | },
645 | "streamsearch": {
646 | "version": "1.1.0",
647 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
648 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="
649 | },
650 | "styled-jsx": {
651 | "version": "5.1.1",
652 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
653 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
654 | "requires": {
655 | "client-only": "0.0.1"
656 | }
657 | },
658 | "tiny-emitter": {
659 | "version": "2.1.0",
660 | "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
661 | "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="
662 | },
663 | "tslib": {
664 | "version": "2.6.3",
665 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
666 | "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
667 | }
668 | }
669 | }
670 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "supacons",
3 | "version": "6.6.0",
4 | "description": "Font icons ripped from popular Font Awesome 6 icon pack including all Pro icons !",
5 | "repository": {
6 | "type": "git",
7 | "url": "https://github.com/poseidon-code/supacons/tree/6.x"
8 | },
9 | "homepage": "https://supacons.netlify.app",
10 | "author": "poseidon-code",
11 | "license": "MIT",
12 | "scripts": {
13 | "dev": "next dev",
14 | "build": "next build",
15 | "start": "next start"
16 | },
17 | "dependencies": {
18 | "clipboard": "^2.0.8",
19 | "next": "^14.2.5",
20 | "react": "^18.2.0",
21 | "react-dom": "^18.2.0"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/pages/_app.js:
--------------------------------------------------------------------------------
1 | import '../styles/globals.css';
2 | import { useState, useRef } from 'react';
3 | import Clipboard from 'clipboard';
4 |
5 | import Layout from '../components/Layout';
6 |
7 | const App = ({ Component, pageProps }) => {
8 | const [isCopied, setIsCopied] = useState(false);
9 | const [search, setSearch] = useState('');
10 | const toast = useRef();
11 |
12 | const copier = icon => {
13 | new Clipboard('#copy', {
14 | text: () => icon,
15 | });
16 | copied();
17 | };
18 |
19 | const copied = () => {
20 | clearTimeout(toast.current);
21 | setIsCopied(true);
22 | toast.current = setTimeout(() => {
23 | setIsCopied(false);
24 | }, 3000);
25 | };
26 |
27 | const clipboard = {
28 | copier,
29 | isCopied,
30 | };
31 |
32 | return (
33 | <>
34 |
35 |
36 |
37 | >
38 | );
39 | };
40 |
41 | export default App;
42 |
--------------------------------------------------------------------------------
/pages/index.jsx:
--------------------------------------------------------------------------------
1 | import { useEffect, useState } from 'react';
2 | import styles from '../styles/index.module.css';
3 |
4 | import Icon from '../components/Icon';
5 | import { Spinner } from '../components/Loading';
6 | import { NotFound } from '../components/Icons';
7 |
8 | export const getStaticProps = async () => {
9 | const getIcons = (await import('../getIcons')).default;
10 | let icons = await getIcons();
11 |
12 | return {
13 | props: {
14 | icons,
15 | },
16 | };
17 | };
18 |
19 | const Home = ({ icons, clipboard, search }) => {
20 | const [allIcons, setAllIcons] = useState([]);
21 | const [loading, setLoading] = useState(true);
22 |
23 | const iconTypes = {
24 | classic: ['solid', 'regular', 'light', 'thin', 'duotone'],
25 | sharp: ['solid', 'regular', 'light', 'thin', 'duotone'],
26 | brands: ['brands'],
27 | };
28 |
29 | useEffect(() => {
30 | let flattenIcons = [];
31 |
32 | for (let type in iconTypes) {
33 | if (type === 'brands') {
34 | for (let name in icons[type]) {
35 | const icon = {
36 | name: name,
37 | type: type,
38 | subtypes: iconTypes[type],
39 | };
40 | flattenIcons.push(icon);
41 | }
42 | } else {
43 | for (let name in icons['generic']) {
44 | const icon = {
45 | name: name,
46 | type: type,
47 | subtypes: iconTypes[type],
48 | };
49 | flattenIcons.push(icon);
50 | }
51 | }
52 | }
53 |
54 | flattenIcons = flattenIcons.filter(
55 | ({ name }) => name.toLowerCase().replace('-', '').indexOf(search.toLowerCase().replace('-', '')) !== -1
56 | );
57 |
58 | flattenIcons.sort((a, b) => {
59 | if (a.name < b.name) return -1;
60 | if (a.name > b.name) return 1;
61 | return 0;
62 | });
63 |
64 | setAllIcons(flattenIcons);
65 | setLoading(false);
66 | }, [search]);
67 |
68 | return (
69 |
70 |
71 | {loading ? (
72 |
73 |
74 |
75 | ) : allIcons.length == 0 ? (
76 |
77 |
78 |
No Icon Found !
79 |
Try searching again with new query.
80 |
81 |
82 | Try searching on
83 |
84 | Font Awesome
85 |
86 | & copy the icon tag, as it is 100% compatible with Supacons.
87 |
88 |
89 | ) : (
90 |
91 | {allIcons.map((icon, i) => (
92 |
99 | ))}
100 |
101 | )}
102 |
103 | {clipboard.isCopied && Icon Tag Copied ! }
104 |
105 | );
106 | };
107 |
108 | export default Home;
109 |
--------------------------------------------------------------------------------
/public/brand_icons.json:
--------------------------------------------------------------------------------
1 | {
2 | "42-group": "e080",
3 | "500px": "f26e",
4 | "accessible-icon": "f368",
5 | "accusoft": "f369",
6 | "adn": "f170",
7 | "adversal": "f36a",
8 | "affiliatetheme": "f36b",
9 | "airbnb": "f834",
10 | "algolia": "f36c",
11 | "alipay": "f642",
12 | "amazon": "f270",
13 | "amazon-pay": "f42c",
14 | "amilia": "f36d",
15 | "android": "f17b",
16 | "angellist": "f209",
17 | "angrycreative": "f36e",
18 | "angular": "f420",
19 | "app-store": "f36f",
20 | "app-store-ios": "f370",
21 | "apper": "f371",
22 | "apple": "f179",
23 | "apple-pay": "f415",
24 | "artstation": "f77a",
25 | "asymmetrik": "f372",
26 | "atlassian": "f77b",
27 | "audible": "f373",
28 | "autoprefixer": "f41c",
29 | "avianex": "f374",
30 | "aviato": "f421",
31 | "aws": "f375",
32 | "bandcamp": "f2d5",
33 | "battle-net": "f835",
34 | "behance": "f1b4",
35 | "bilibili": "e3d9",
36 | "bimobject": "f378",
37 | "bitbucket": "f171",
38 | "bitcoin": "f379",
39 | "bity": "f37a",
40 | "black-tie": "f27e",
41 | "blackberry": "f37b",
42 | "blogger": "f37c",
43 | "blogger-b": "f37d",
44 | "bluesky": "e671",
45 | "bluetooth": "f293",
46 | "bluetooth-b": "f294",
47 | "bootstrap": "f836",
48 | "bots": "e340",
49 | "brave": "e63c",
50 | "brave-reverse": "e63d",
51 | "btc": "f15a",
52 | "buffer": "f837",
53 | "buromobelexperte": "f37f",
54 | "buy-n-large": "f8a6",
55 | "buysellads": "f20d",
56 | "canadian-maple-leaf": "f785",
57 | "cc-amazon-pay": "f42d",
58 | "cc-amex": "f1f3",
59 | "cc-apple-pay": "f416",
60 | "cc-diners-club": "f24c",
61 | "cc-discover": "f1f2",
62 | "cc-jcb": "f24b",
63 | "cc-mastercard": "f1f1",
64 | "cc-paypal": "f1f4",
65 | "cc-stripe": "f1f5",
66 | "cc-visa": "f1f0",
67 | "centercode": "f380",
68 | "centos": "f789",
69 | "chrome": "f268",
70 | "chromecast": "f838",
71 | "cloudflare": "e07d",
72 | "cloudscale": "f383",
73 | "cloudsmith": "f384",
74 | "cloudversify": "f385",
75 | "cmplid": "e360",
76 | "codepen": "f1cb",
77 | "codiepie": "f284",
78 | "confluence": "f78d",
79 | "connectdevelop": "f20e",
80 | "contao": "f26d",
81 | "cotton-bureau": "f89e",
82 | "cpanel": "f388",
83 | "creative-commons": "f25e",
84 | "creative-commons-by": "f4e7",
85 | "creative-commons-nc": "f4e8",
86 | "creative-commons-nc-eu": "f4e9",
87 | "creative-commons-nc-jp": "f4ea",
88 | "creative-commons-nd": "f4eb",
89 | "creative-commons-pd": "f4ec",
90 | "creative-commons-pd-alt": "f4ed",
91 | "creative-commons-remix": "f4ee",
92 | "creative-commons-sa": "f4ef",
93 | "creative-commons-sampling": "f4f0",
94 | "creative-commons-sampling-plus": "f4f1",
95 | "creative-commons-share": "f4f2",
96 | "creative-commons-zero": "f4f3",
97 | "critical-role": "f6c9",
98 | "css3": "f13c",
99 | "css3-alt": "f38b",
100 | "cuttlefish": "f38c",
101 | "d-and-d": "f38d",
102 | "d-and-d-beyond": "f6ca",
103 | "dailymotion": "e052",
104 | "dart-lang": "e693",
105 | "dashcube": "f210",
106 | "debian": "e60b",
107 | "deezer": "e077",
108 | "delicious": "f1a5",
109 | "deploydog": "f38e",
110 | "deskpro": "f38f",
111 | "dev": "f6cc",
112 | "deviantart": "f1bd",
113 | "dhl": "f790",
114 | "diaspora": "f791",
115 | "digg": "f1a6",
116 | "digital-ocean": "f391",
117 | "discord": "f392",
118 | "discourse": "f393",
119 | "dochub": "f394",
120 | "docker": "f395",
121 | "draft2digital": "f396",
122 | "dribbble": "f17d",
123 | "dropbox": "f16b",
124 | "drupal": "f1a9",
125 | "dyalog": "f399",
126 | "earlybirds": "f39a",
127 | "ebay": "f4f4",
128 | "edge": "f282",
129 | "edge-legacy": "e078",
130 | "elementor": "f430",
131 | "ello": "f5f1",
132 | "ember": "f423",
133 | "empire": "f1d1",
134 | "envira": "f299",
135 | "erlang": "f39d",
136 | "ethereum": "f42e",
137 | "etsy": "f2d7",
138 | "evernote": "f839",
139 | "expeditedssl": "f23e",
140 | "facebook": "f09a",
141 | "facebook-f": "f39e",
142 | "facebook-messenger": "f39f",
143 | "fantasy-flight-games": "f6dc",
144 | "fedex": "f797",
145 | "fedora": "f798",
146 | "figma": "f799",
147 | "firefox": "f269",
148 | "firefox-browser": "e007",
149 | "first-order": "f2b0",
150 | "first-order-alt": "f50a",
151 | "firstdraft": "f3a1",
152 | "flickr": "f16e",
153 | "flipboard": "f44d",
154 | "flutter": "e694",
155 | "fly": "f417",
156 | "font-awesome": "f2b4",
157 | "fonticons": "f280",
158 | "fonticons-fi": "f3a2",
159 | "fort-awesome": "f286",
160 | "fort-awesome-alt": "f3a3",
161 | "forumbee": "f211",
162 | "foursquare": "f180",
163 | "free-code-camp": "f2c5",
164 | "freebsd": "f3a4",
165 | "fulcrum": "f50b",
166 | "galactic-republic": "f50c",
167 | "galactic-senate": "f50d",
168 | "get-pocket": "f265",
169 | "gg": "f260",
170 | "gg-circle": "f261",
171 | "git": "f1d3",
172 | "git-alt": "f841",
173 | "github": "f09b",
174 | "github-alt": "f113",
175 | "gitkraken": "f3a6",
176 | "gitlab": "f296",
177 | "gitter": "f426",
178 | "glide": "f2a5",
179 | "glide-g": "f2a6",
180 | "gofore": "f3a7",
181 | "golang": "e40f",
182 | "goodreads": "f3a8",
183 | "goodreads-g": "f3a9",
184 | "google": "f1a0",
185 | "google-drive": "f3aa",
186 | "google-pay": "e079",
187 | "google-play": "f3ab",
188 | "google-plus": "f2b3",
189 | "google-plus-g": "f0d5",
190 | "google-scholar": "e63b",
191 | "google-wallet": "f1ee",
192 | "gratipay": "f184",
193 | "grav": "f2d6",
194 | "gripfire": "f3ac",
195 | "grunt": "f3ad",
196 | "guilded": "e07e",
197 | "gulp": "f3ae",
198 | "hacker-news": "f1d4",
199 | "hackerrank": "f5f7",
200 | "hashnode": "e499",
201 | "hips": "f452",
202 | "hire-a-helper": "f3b0",
203 | "hive": "e07f",
204 | "hooli": "f427",
205 | "hornbill": "f592",
206 | "hotjar": "f3b1",
207 | "houzz": "f27c",
208 | "html5": "f13b",
209 | "hubspot": "f3b2",
210 | "ideal": "e013",
211 | "imdb": "f2d8",
212 | "instagram": "f16d",
213 | "instalod": "e081",
214 | "intercom": "f7af",
215 | "internet-explorer": "f26b",
216 | "invision": "f7b0",
217 | "ioxhost": "f208",
218 | "itch-io": "f83a",
219 | "itunes": "f3b4",
220 | "itunes-note": "f3b5",
221 | "java": "f4e4",
222 | "jedi-order": "f50e",
223 | "jenkins": "f3b6",
224 | "jira": "f7b1",
225 | "joget": "f3b7",
226 | "joomla": "f1aa",
227 | "js": "f3b8",
228 | "jsfiddle": "f1cc",
229 | "jxl": "e67b",
230 | "kaggle": "f5fa",
231 | "keybase": "f4f5",
232 | "keycdn": "f3ba",
233 | "kickstarter": "f3bb",
234 | "kickstarter-k": "f3bc",
235 | "korvue": "f42f",
236 | "laravel": "f3bd",
237 | "lastfm": "f202",
238 | "leanpub": "f212",
239 | "less": "f41d",
240 | "letterboxd": "e62d",
241 | "line": "f3c0",
242 | "linkedin": "f08c",
243 | "linkedin-in": "f0e1",
244 | "linode": "f2b8",
245 | "linux": "f17c",
246 | "lyft": "f3c3",
247 | "magento": "f3c4",
248 | "mailchimp": "f59e",
249 | "mandalorian": "f50f",
250 | "markdown": "f60f",
251 | "mastodon": "f4f6",
252 | "maxcdn": "f136",
253 | "mdb": "f8ca",
254 | "medapps": "f3c6",
255 | "medium": "f23a",
256 | "medrt": "f3c8",
257 | "meetup": "f2e0",
258 | "megaport": "f5a3",
259 | "mendeley": "f7b3",
260 | "meta": "e49b",
261 | "microblog": "e01a",
262 | "microsoft": "f3ca",
263 | "mintbit": "e62f",
264 | "mix": "f3cb",
265 | "mixcloud": "f289",
266 | "mixer": "e056",
267 | "mizuni": "f3cc",
268 | "modx": "f285",
269 | "monero": "f3d0",
270 | "napster": "f3d2",
271 | "neos": "f612",
272 | "nfc-directional": "e530",
273 | "nfc-symbol": "e531",
274 | "nimblr": "f5a8",
275 | "node": "f419",
276 | "node-js": "f3d3",
277 | "npm": "f3d4",
278 | "ns8": "f3d5",
279 | "nutritionix": "f3d6",
280 | "octopus-deploy": "e082",
281 | "odnoklassniki": "f263",
282 | "odysee": "e5c6",
283 | "old-republic": "f510",
284 | "opencart": "f23d",
285 | "openid": "f19b",
286 | "opensuse": "e62b",
287 | "opera": "f26a",
288 | "optin-monster": "f23c",
289 | "orcid": "f8d2",
290 | "osi": "f41a",
291 | "padlet": "e4a0",
292 | "page4": "f3d7",
293 | "pagelines": "f18c",
294 | "palfed": "f3d8",
295 | "patreon": "f3d9",
296 | "paypal": "f1ed",
297 | "perbyte": "e083",
298 | "periscope": "f3da",
299 | "phabricator": "f3db",
300 | "phoenix-framework": "f3dc",
301 | "phoenix-squadron": "f511",
302 | "php": "f457",
303 | "pied-piper": "f2ae",
304 | "pied-piper-alt": "f1a8",
305 | "pied-piper-hat": "f4e5",
306 | "pied-piper-pp": "f1a7",
307 | "pinterest": "f0d2",
308 | "pinterest-p": "f231",
309 | "pix": "e43a",
310 | "pixiv": "e640",
311 | "playstation": "f3df",
312 | "product-hunt": "f288",
313 | "pushed": "f3e1",
314 | "python": "f3e2",
315 | "qq": "f1d6",
316 | "quinscape": "f459",
317 | "quora": "f2c4",
318 | "r-project": "f4f7",
319 | "raspberry-pi": "f7bb",
320 | "ravelry": "f2d9",
321 | "react": "f41b",
322 | "reacteurope": "f75d",
323 | "readme": "f4d5",
324 | "rebel": "f1d0",
325 | "red-river": "f3e3",
326 | "reddit": "f1a1",
327 | "reddit-alien": "f281",
328 | "redhat": "f7bc",
329 | "renren": "f18b",
330 | "replyd": "f3e6",
331 | "researchgate": "f4f8",
332 | "resolving": "f3e7",
333 | "rev": "f5b2",
334 | "rocketchat": "f3e8",
335 | "rockrms": "f3e9",
336 | "rust": "e07a",
337 | "safari": "f267",
338 | "salesforce": "f83b",
339 | "sass": "f41e",
340 | "schlix": "f3ea",
341 | "screenpal": "e570",
342 | "scribd": "f28a",
343 | "searchengin": "f3eb",
344 | "sellcast": "f2da",
345 | "sellsy": "f213",
346 | "servicestack": "f3ec",
347 | "shirtsinbulk": "f214",
348 | "shoelace": "e60c",
349 | "shopify": "e057",
350 | "shopware": "f5b5",
351 | "signal-messenger": "e663",
352 | "simplybuilt": "f215",
353 | "sistrix": "f3ee",
354 | "sith": "f512",
355 | "sitrox": "e44a",
356 | "sketch": "f7c6",
357 | "skyatlas": "f216",
358 | "skype": "f17e",
359 | "slack": "f198",
360 | "slideshare": "f1e7",
361 | "snapchat": "f2ab",
362 | "soundcloud": "f1be",
363 | "sourcetree": "f7d3",
364 | "space-awesome": "e5ac",
365 | "speakap": "f3f3",
366 | "speaker-deck": "f83c",
367 | "spotify": "f1bc",
368 | "square-behance": "f1b5",
369 | "square-dribbble": "f397",
370 | "square-facebook": "f082",
371 | "square-font-awesome": "e5ad",
372 | "square-font-awesome-stroke": "f35c",
373 | "square-git": "f1d2",
374 | "square-github": "f092",
375 | "square-gitlab": "e5ae",
376 | "square-google-plus": "f0d4",
377 | "square-hacker-news": "f3af",
378 | "square-instagram": "e055",
379 | "square-js": "f3b9",
380 | "square-lastfm": "f203",
381 | "square-letterboxd": "e62e",
382 | "square-odnoklassniki": "f264",
383 | "square-pied-piper": "e01e",
384 | "square-pinterest": "f0d3",
385 | "square-reddit": "f1a2",
386 | "square-snapchat": "f2ad",
387 | "square-steam": "f1b7",
388 | "square-threads": "e619",
389 | "square-tumblr": "f174",
390 | "square-twitter": "f081",
391 | "square-upwork": "e67c",
392 | "square-viadeo": "f2aa",
393 | "square-vimeo": "f194",
394 | "square-web-awesome": "e683",
395 | "square-web-awesome-stroke": "e684",
396 | "square-whatsapp": "f40c",
397 | "square-x-twitter": "e61a",
398 | "square-xing": "f169",
399 | "square-youtube": "f431",
400 | "squarespace": "f5be",
401 | "stack-exchange": "f18d",
402 | "stack-overflow": "f16c",
403 | "stackpath": "f842",
404 | "staylinked": "f3f5",
405 | "steam": "f1b6",
406 | "steam-symbol": "f3f6",
407 | "sticker-mule": "f3f7",
408 | "strava": "f428",
409 | "stripe": "f429",
410 | "stripe-s": "f42a",
411 | "stubber": "e5c7",
412 | "studiovinari": "f3f8",
413 | "stumbleupon": "f1a4",
414 | "stumbleupon-circle": "f1a3",
415 | "superpowers": "f2dd",
416 | "supple": "f3f9",
417 | "suse": "f7d6",
418 | "swift": "f8e1",
419 | "symfony": "f83d",
420 | "teamspeak": "f4f9",
421 | "telegram": "f2c6",
422 | "tencent-weibo": "f1d5",
423 | "the-red-yeti": "f69d",
424 | "themeco": "f5c6",
425 | "themeisle": "f2b2",
426 | "think-peaks": "f731",
427 | "threads": "e618",
428 | "tiktok": "e07b",
429 | "trade-federation": "f513",
430 | "trello": "f181",
431 | "tumblr": "f173",
432 | "twitch": "f1e8",
433 | "twitter": "f099",
434 | "typo3": "f42b",
435 | "uber": "f402",
436 | "ubuntu": "f7df",
437 | "uikit": "f403",
438 | "umbraco": "f8e8",
439 | "uncharted": "e084",
440 | "uniregistry": "f404",
441 | "unity": "e049",
442 | "unsplash": "e07c",
443 | "untappd": "f405",
444 | "ups": "f7e0",
445 | "upwork": "e641",
446 | "usb": "f287",
447 | "usps": "f7e1",
448 | "ussunnah": "f407",
449 | "vaadin": "f408",
450 | "viacoin": "f237",
451 | "viadeo": "f2a9",
452 | "viber": "f409",
453 | "vimeo": "f40a",
454 | "vimeo-v": "f27d",
455 | "vine": "f1ca",
456 | "vk": "f189",
457 | "vnv": "f40b",
458 | "vuejs": "f41f",
459 | "watchman-monitoring": "e087",
460 | "waze": "f83f",
461 | "web-awesome": "e682",
462 | "webflow": "e65c",
463 | "weebly": "f5cc",
464 | "weibo": "f18a",
465 | "weixin": "f1d7",
466 | "whatsapp": "f232",
467 | "whmcs": "f40d",
468 | "wikipedia-w": "f266",
469 | "windows": "f17a",
470 | "wirsindhandwerk": "e2d0",
471 | "wix": "f5cf",
472 | "wizards-of-the-coast": "f730",
473 | "wodu": "e088",
474 | "wolf-pack-battalion": "f514",
475 | "wordpress": "f19a",
476 | "wordpress-simple": "f411",
477 | "wpbeginner": "f297",
478 | "wpexplorer": "f2de",
479 | "wpforms": "f298",
480 | "wpressr": "f3e4",
481 | "x-twitter": "e61b",
482 | "xbox": "f412",
483 | "xing": "f168",
484 | "y-combinator": "f23b",
485 | "yahoo": "f19e",
486 | "yammer": "f840",
487 | "yandex": "f413",
488 | "yandex-international": "f414",
489 | "yarn": "f7e3",
490 | "yelp": "f1e9",
491 | "yoast": "f2b1",
492 | "youtube": "f167",
493 | "zhihu": "f63f"
494 | }
495 |
--------------------------------------------------------------------------------
/public/card.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/poseidon-code/supacons/f3b8ed2819fd7586ac10d48ea19c1775b240524f/public/card.jpg
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/poseidon-code/supacons/f3b8ed2819fd7586ac10d48ea19c1775b240524f/public/favicon.ico
--------------------------------------------------------------------------------
/public/generic_icons.json:
--------------------------------------------------------------------------------
1 | {
2 | "0": "30",
3 | "00": "e467",
4 | "1": "31",
5 | "2": "32",
6 | "3": "33",
7 | "360-degrees": "e2dc",
8 | "4": "34",
9 | "5": "35",
10 | "6": "36",
11 | "7": "37",
12 | "8": "38",
13 | "9": "39",
14 | "a": "41",
15 | "abacus": "f640",
16 | "accent-grave": "60",
17 | "acorn": "f6ae",
18 | "address-book": "f2b9",
19 | "address-card": "f2bb",
20 | "air-conditioner": "f8f4",
21 | "airplay": "e089",
22 | "alarm-clock": "f34e",
23 | "alarm-exclamation": "f843",
24 | "alarm-plus": "f844",
25 | "alarm-snooze": "f845",
26 | "album": "f89f",
27 | "album-circle-plus": "e48c",
28 | "album-circle-user": "e48d",
29 | "album-collection": "f8a0",
30 | "album-collection-circle-plus": "e48e",
31 | "album-collection-circle-user": "e48f",
32 | "alicorn": "f6b0",
33 | "alien": "f8f5",
34 | "alien-8bit": "f8f6",
35 | "align-center": "f037",
36 | "align-justify": "f039",
37 | "align-left": "f036",
38 | "align-right": "f038",
39 | "align-slash": "f846",
40 | "alt": "e08a",
41 | "amp-guitar": "f8a1",
42 | "ampersand": "26",
43 | "anchor": "f13d",
44 | "anchor-circle-check": "e4aa",
45 | "anchor-circle-exclamation": "e4ab",
46 | "anchor-circle-xmark": "e4ac",
47 | "anchor-lock": "e4ad",
48 | "angel": "f779",
49 | "angle": "e08c",
50 | "angle-90": "e08d",
51 | "angle-down": "f107",
52 | "angle-left": "f104",
53 | "angle-right": "f105",
54 | "angle-up": "f106",
55 | "angles-down": "f103",
56 | "angles-left": "f100",
57 | "angles-right": "f101",
58 | "angles-up": "f102",
59 | "angles-up-down": "e60d",
60 | "ankh": "f644",
61 | "ant": "e680",
62 | "apartment": "e468",
63 | "aperture": "e2df",
64 | "apostrophe": "27",
65 | "apple-core": "e08f",
66 | "apple-whole": "f5d1",
67 | "archway": "f557",
68 | "arrow-down": "f063",
69 | "arrow-down-1-9": "f162",
70 | "arrow-down-9-1": "f886",
71 | "arrow-down-a-z": "f15d",
72 | "arrow-down-arrow-up": "f883",
73 | "arrow-down-big-small": "f88c",
74 | "arrow-down-from-arc": "e614",
75 | "arrow-down-from-bracket": "e667",
76 | "arrow-down-from-dotted-line": "e090",
77 | "arrow-down-from-line": "f345",
78 | "arrow-down-left": "e091",
79 | "arrow-down-left-and-arrow-up-right-to-center": "e092",
80 | "arrow-down-long": "f175",
81 | "arrow-down-right": "e093",
82 | "arrow-down-short-wide": "f884",
83 | "arrow-down-small-big": "f88d",
84 | "arrow-down-square-triangle": "f889",
85 | "arrow-down-to-arc": "e4ae",
86 | "arrow-down-to-bracket": "e094",
87 | "arrow-down-to-dotted-line": "e095",
88 | "arrow-down-to-line": "f33d",
89 | "arrow-down-to-square": "e096",
90 | "arrow-down-triangle-square": "f888",
91 | "arrow-down-up-across-line": "e4af",
92 | "arrow-down-up-lock": "e4b0",
93 | "arrow-down-wide-short": "f160",
94 | "arrow-down-z-a": "f881",
95 | "arrow-left": "f060",
96 | "arrow-left-from-arc": "e615",
97 | "arrow-left-from-bracket": "e668",
98 | "arrow-left-from-line": "f344",
99 | "arrow-left-long": "f177",
100 | "arrow-left-long-to-line": "e3d4",
101 | "arrow-left-to-arc": "e616",
102 | "arrow-left-to-bracket": "e669",
103 | "arrow-left-to-line": "f33e",
104 | "arrow-pointer": "f245",
105 | "arrow-progress": "e5df",
106 | "arrow-right": "f061",
107 | "arrow-right-arrow-left": "f0ec",
108 | "arrow-right-from-arc": "e4b1",
109 | "arrow-right-from-bracket": "f08b",
110 | "arrow-right-from-line": "f343",
111 | "arrow-right-long": "f178",
112 | "arrow-right-long-to-line": "e3d5",
113 | "arrow-right-to-arc": "e4b2",
114 | "arrow-right-to-bracket": "f090",
115 | "arrow-right-to-city": "e4b3",
116 | "arrow-right-to-line": "f340",
117 | "arrow-rotate-left": "f0e2",
118 | "arrow-rotate-right": "f01e",
119 | "arrow-trend-down": "e097",
120 | "arrow-trend-up": "e098",
121 | "arrow-turn-down": "f149",
122 | "arrow-turn-down-left": "e2e1",
123 | "arrow-turn-down-right": "e3d6",
124 | "arrow-turn-left": "e632",
125 | "arrow-turn-left-down": "e633",
126 | "arrow-turn-left-up": "e634",
127 | "arrow-turn-right": "e635",
128 | "arrow-turn-up": "f148",
129 | "arrow-up": "f062",
130 | "arrow-up-1-9": "f163",
131 | "arrow-up-9-1": "f887",
132 | "arrow-up-a-z": "f15e",
133 | "arrow-up-arrow-down": "e099",
134 | "arrow-up-big-small": "f88e",
135 | "arrow-up-from-arc": "e4b4",
136 | "arrow-up-from-bracket": "e09a",
137 | "arrow-up-from-dotted-line": "e09b",
138 | "arrow-up-from-ground-water": "e4b5",
139 | "arrow-up-from-line": "f342",
140 | "arrow-up-from-square": "e09c",
141 | "arrow-up-from-water-pump": "e4b6",
142 | "arrow-up-left": "e09d",
143 | "arrow-up-left-from-circle": "e09e",
144 | "arrow-up-long": "f176",
145 | "arrow-up-right": "e09f",
146 | "arrow-up-right-and-arrow-down-left-from-center": "e0a0",
147 | "arrow-up-right-dots": "e4b7",
148 | "arrow-up-right-from-square": "f08e",
149 | "arrow-up-short-wide": "f885",
150 | "arrow-up-small-big": "f88f",
151 | "arrow-up-square-triangle": "f88b",
152 | "arrow-up-to-arc": "e617",
153 | "arrow-up-to-bracket": "e66a",
154 | "arrow-up-to-dotted-line": "e0a1",
155 | "arrow-up-to-line": "f341",
156 | "arrow-up-triangle-square": "f88a",
157 | "arrow-up-wide-short": "f161",
158 | "arrow-up-z-a": "f882",
159 | "arrows-cross": "e0a2",
160 | "arrows-down-to-line": "e4b8",
161 | "arrows-down-to-people": "e4b9",
162 | "arrows-from-dotted-line": "e0a3",
163 | "arrows-from-line": "e0a4",
164 | "arrows-left-right": "f07e",
165 | "arrows-left-right-to-line": "e4ba",
166 | "arrows-maximize": "f31d",
167 | "arrows-minimize": "e0a5",
168 | "arrows-repeat": "f364",
169 | "arrows-repeat-1": "f366",
170 | "arrows-retweet": "f361",
171 | "arrows-rotate": "f021",
172 | "arrows-rotate-reverse": "e630",
173 | "arrows-spin": "e4bb",
174 | "arrows-split-up-and-left": "e4bc",
175 | "arrows-to-circle": "e4bd",
176 | "arrows-to-dot": "e4be",
177 | "arrows-to-dotted-line": "e0a6",
178 | "arrows-to-eye": "e4bf",
179 | "arrows-to-line": "e0a7",
180 | "arrows-turn-right": "e4c0",
181 | "arrows-turn-to-dots": "e4c1",
182 | "arrows-up-down": "f07d",
183 | "arrows-up-down-left-right": "f047",
184 | "arrows-up-to-line": "e4c2",
185 | "asterisk": "2a",
186 | "at": "40",
187 | "atom": "f5d2",
188 | "atom-simple": "f5d3",
189 | "audio-description": "f29e",
190 | "audio-description-slash": "e0a8",
191 | "austral-sign": "e0a9",
192 | "avocado": "e0aa",
193 | "award": "f559",
194 | "award-simple": "e0ab",
195 | "axe": "f6b2",
196 | "axe-battle": "f6b3",
197 | "b": "42",
198 | "baby": "f77c",
199 | "baby-carriage": "f77d",
200 | "backpack": "f5d4",
201 | "backward": "f04a",
202 | "backward-fast": "f049",
203 | "backward-step": "f048",
204 | "bacon": "f7e5",
205 | "bacteria": "e059",
206 | "bacterium": "e05a",
207 | "badge": "f335",
208 | "badge-check": "f336",
209 | "badge-dollar": "f645",
210 | "badge-percent": "f646",
211 | "badge-sheriff": "f8a2",
212 | "badger-honey": "f6b4",
213 | "badminton": "e33a",
214 | "bag-seedling": "e5f2",
215 | "bag-shopping": "f290",
216 | "bag-shopping-minus": "e650",
217 | "bag-shopping-plus": "e651",
218 | "bagel": "e3d7",
219 | "bags-shopping": "f847",
220 | "baguette": "e3d8",
221 | "bahai": "f666",
222 | "baht-sign": "e0ac",
223 | "ball-pile": "f77e",
224 | "balloon": "e2e3",
225 | "balloons": "e2e4",
226 | "ballot": "f732",
227 | "ballot-check": "f733",
228 | "ban": "f05e",
229 | "ban-bug": "f7f9",
230 | "ban-parking": "f616",
231 | "ban-smoking": "f54d",
232 | "banana": "e2e5",
233 | "bandage": "f462",
234 | "bangladeshi-taka-sign": "e2e6",
235 | "banjo": "f8a3",
236 | "barcode": "f02a",
237 | "barcode-read": "f464",
238 | "barcode-scan": "f465",
239 | "bars": "f0c9",
240 | "bars-filter": "e0ad",
241 | "bars-progress": "f828",
242 | "bars-sort": "e0ae",
243 | "bars-staggered": "f550",
244 | "baseball": "f433",
245 | "baseball-bat-ball": "f432",
246 | "basket-shopping": "f291",
247 | "basket-shopping-minus": "e652",
248 | "basket-shopping-plus": "e653",
249 | "basket-shopping-simple": "e0af",
250 | "basketball": "f434",
251 | "basketball-hoop": "f435",
252 | "bat": "f6b5",
253 | "bath": "f2cd",
254 | "battery-bolt": "f376",
255 | "battery-empty": "f244",
256 | "battery-exclamation": "e0b0",
257 | "battery-full": "f240",
258 | "battery-half": "f242",
259 | "battery-low": "e0b1",
260 | "battery-quarter": "f243",
261 | "battery-slash": "f377",
262 | "battery-three-quarters": "f241",
263 | "bed": "f236",
264 | "bed-bunk": "f8f8",
265 | "bed-empty": "f8f9",
266 | "bed-front": "f8f7",
267 | "bed-pulse": "f487",
268 | "bee": "e0b2",
269 | "beer-mug": "e0b3",
270 | "beer-mug-empty": "f0fc",
271 | "bell": "f0f3",
272 | "bell-concierge": "f562",
273 | "bell-exclamation": "f848",
274 | "bell-on": "f8fa",
275 | "bell-plus": "f849",
276 | "bell-ring": "e62c",
277 | "bell-school": "f5d5",
278 | "bell-school-slash": "f5d6",
279 | "bell-slash": "f1f6",
280 | "bells": "f77f",
281 | "bench-tree": "e2e7",
282 | "bezier-curve": "f55b",
283 | "bicycle": "f206",
284 | "billboard": "e5cd",
285 | "bin-bottles": "e5f5",
286 | "bin-bottles-recycle": "e5f6",
287 | "bin-recycle": "e5f7",
288 | "binary": "e33b",
289 | "binary-circle-check": "e33c",
290 | "binary-lock": "e33d",
291 | "binary-slash": "e33e",
292 | "binoculars": "f1e5",
293 | "biohazard": "f780",
294 | "bird": "e469",
295 | "bitcoin-sign": "e0b4",
296 | "blanket": "f498",
297 | "blanket-fire": "e3da",
298 | "blender": "f517",
299 | "blender-phone": "f6b6",
300 | "blinds": "f8fb",
301 | "blinds-open": "f8fc",
302 | "blinds-raised": "f8fd",
303 | "block": "e46a",
304 | "block-brick": "e3db",
305 | "block-brick-fire": "e3dc",
306 | "block-question": "e3dd",
307 | "block-quote": "e0b5",
308 | "blog": "f781",
309 | "blueberries": "e2e8",
310 | "bluetooth": "f293",
311 | "bold": "f032",
312 | "bolt": "f0e7",
313 | "bolt-auto": "e0b6",
314 | "bolt-lightning": "e0b7",
315 | "bolt-slash": "e0b8",
316 | "bomb": "f1e2",
317 | "bone": "f5d7",
318 | "bone-break": "f5d8",
319 | "bong": "f55c",
320 | "book": "f02d",
321 | "book-arrow-right": "e0b9",
322 | "book-arrow-up": "e0ba",
323 | "book-atlas": "f558",
324 | "book-bible": "f647",
325 | "book-blank": "f5d9",
326 | "book-bookmark": "e0bb",
327 | "book-circle-arrow-right": "e0bc",
328 | "book-circle-arrow-up": "e0bd",
329 | "book-copy": "e0be",
330 | "book-font": "e0bf",
331 | "book-heart": "f499",
332 | "book-journal-whills": "f66a",
333 | "book-medical": "f7e6",
334 | "book-open": "f518",
335 | "book-open-cover": "e0c0",
336 | "book-open-reader": "f5da",
337 | "book-quran": "f687",
338 | "book-section": "e0c1",
339 | "book-skull": "f6b7",
340 | "book-sparkles": "f6b8",
341 | "book-tanakh": "f827",
342 | "book-user": "f7e7",
343 | "bookmark": "f02e",
344 | "bookmark-slash": "e0c2",
345 | "books": "f5db",
346 | "books-medical": "f7e8",
347 | "boombox": "f8a5",
348 | "boot": "f782",
349 | "boot-heeled": "e33f",
350 | "booth-curtain": "f734",
351 | "border-all": "f84c",
352 | "border-bottom": "f84d",
353 | "border-bottom-right": "f854",
354 | "border-center-h": "f89c",
355 | "border-center-v": "f89d",
356 | "border-inner": "f84e",
357 | "border-left": "f84f",
358 | "border-none": "f850",
359 | "border-outer": "f851",
360 | "border-right": "f852",
361 | "border-top": "f855",
362 | "border-top-left": "f853",
363 | "bore-hole": "e4c3",
364 | "bottle-baby": "e673",
365 | "bottle-droplet": "e4c4",
366 | "bottle-water": "e4c5",
367 | "bow-arrow": "f6b9",
368 | "bowl-chopsticks": "e2e9",
369 | "bowl-chopsticks-noodles": "e2ea",
370 | "bowl-food": "e4c6",
371 | "bowl-hot": "f823",
372 | "bowl-rice": "e2eb",
373 | "bowl-scoop": "e3de",
374 | "bowl-scoops": "e3df",
375 | "bowl-soft-serve": "e46b",
376 | "bowl-spoon": "e3e0",
377 | "bowling-ball": "f436",
378 | "bowling-ball-pin": "e0c3",
379 | "bowling-pins": "f437",
380 | "box": "f466",
381 | "box-archive": "f187",
382 | "box-ballot": "f735",
383 | "box-check": "f467",
384 | "box-circle-check": "e0c4",
385 | "box-dollar": "f4a0",
386 | "box-heart": "f49d",
387 | "box-open": "f49e",
388 | "box-open-full": "f49c",
389 | "box-taped": "f49a",
390 | "box-tissue": "e05b",
391 | "boxes-packing": "e4c7",
392 | "boxes-stacked": "f468",
393 | "boxing-glove": "f438",
394 | "bracket-curly": "7b",
395 | "bracket-curly-right": "7d",
396 | "bracket-round": "28",
397 | "bracket-round-right": "29",
398 | "bracket-square": "5b",
399 | "bracket-square-right": "5d",
400 | "brackets-curly": "f7ea",
401 | "brackets-round": "e0c5",
402 | "brackets-square": "f7e9",
403 | "braille": "f2a1",
404 | "brain": "f5dc",
405 | "brain-arrow-curved-right": "f677",
406 | "brain-circuit": "e0c6",
407 | "brake-warning": "e0c7",
408 | "brazilian-real-sign": "e46c",
409 | "bread-loaf": "f7eb",
410 | "bread-slice": "f7ec",
411 | "bread-slice-butter": "e3e1",
412 | "bridge": "e4c8",
413 | "bridge-circle-check": "e4c9",
414 | "bridge-circle-exclamation": "e4ca",
415 | "bridge-circle-xmark": "e4cb",
416 | "bridge-lock": "e4cc",
417 | "bridge-suspension": "e4cd",
418 | "bridge-water": "e4ce",
419 | "briefcase": "f0b1",
420 | "briefcase-arrow-right": "e2f2",
421 | "briefcase-blank": "e0c8",
422 | "briefcase-medical": "f469",
423 | "brightness": "e0c9",
424 | "brightness-low": "e0ca",
425 | "bring-forward": "f856",
426 | "bring-front": "f857",
427 | "broccoli": "e3e2",
428 | "broom": "f51a",
429 | "broom-ball": "f458",
430 | "broom-wide": "e5d1",
431 | "browser": "f37e",
432 | "browsers": "e0cb",
433 | "brush": "f55d",
434 | "bucket": "e4cf",
435 | "bug": "f188",
436 | "bug-slash": "e490",
437 | "bugs": "e4d0",
438 | "building": "f1ad",
439 | "building-circle-arrow-right": "e4d1",
440 | "building-circle-check": "e4d2",
441 | "building-circle-exclamation": "e4d3",
442 | "building-circle-xmark": "e4d4",
443 | "building-columns": "f19c",
444 | "building-flag": "e4d5",
445 | "building-lock": "e4d6",
446 | "building-magnifying-glass": "e61c",
447 | "building-memo": "e61e",
448 | "building-ngo": "e4d7",
449 | "building-shield": "e4d8",
450 | "building-un": "e4d9",
451 | "building-user": "e4da",
452 | "building-wheat": "e4db",
453 | "buildings": "e0cc",
454 | "bulldozer": "e655",
455 | "bullhorn": "f0a1",
456 | "bullseye": "f140",
457 | "bullseye-arrow": "f648",
458 | "bullseye-pointer": "f649",
459 | "buoy": "e5b5",
460 | "buoy-mooring": "e5b6",
461 | "burger": "f805",
462 | "burger-cheese": "f7f1",
463 | "burger-fries": "e0cd",
464 | "burger-glass": "e0ce",
465 | "burger-lettuce": "e3e3",
466 | "burger-soda": "f858",
467 | "burrito": "f7ed",
468 | "burst": "e4dc",
469 | "bus": "f207",
470 | "bus-school": "f5dd",
471 | "bus-simple": "f55e",
472 | "business-time": "f64a",
473 | "butter": "e3e4",
474 | "c": "43",
475 | "cabin": "e46d",
476 | "cabinet-filing": "f64b",
477 | "cable-car": "f7da",
478 | "cactus": "f8a7",
479 | "caduceus": "e681",
480 | "cake-candles": "f1fd",
481 | "cake-slice": "e3e5",
482 | "calculator": "f1ec",
483 | "calculator-simple": "f64c",
484 | "calendar": "f133",
485 | "calendar-arrow-down": "e0d0",
486 | "calendar-arrow-up": "e0d1",
487 | "calendar-check": "f274",
488 | "calendar-circle-exclamation": "e46e",
489 | "calendar-circle-minus": "e46f",
490 | "calendar-circle-plus": "e470",
491 | "calendar-circle-user": "e471",
492 | "calendar-clock": "e0d2",
493 | "calendar-day": "f783",
494 | "calendar-days": "f073",
495 | "calendar-exclamation": "f334",
496 | "calendar-heart": "e0d3",
497 | "calendar-image": "e0d4",
498 | "calendar-lines": "e0d5",
499 | "calendar-lines-pen": "e472",
500 | "calendar-minus": "f272",
501 | "calendar-pen": "f333",
502 | "calendar-plus": "f271",
503 | "calendar-range": "e0d6",
504 | "calendar-star": "f736",
505 | "calendar-users": "e5e2",
506 | "calendar-week": "f784",
507 | "calendar-xmark": "f273",
508 | "calendars": "e0d7",
509 | "camcorder": "f8a8",
510 | "camera": "f030",
511 | "camera-cctv": "f8ac",
512 | "camera-movie": "f8a9",
513 | "camera-polaroid": "f8aa",
514 | "camera-retro": "f083",
515 | "camera-rotate": "e0d8",
516 | "camera-security": "f8fe",
517 | "camera-slash": "e0d9",
518 | "camera-viewfinder": "e0da",
519 | "camera-web": "f832",
520 | "camera-web-slash": "f833",
521 | "campfire": "f6ba",
522 | "campground": "f6bb",
523 | "can-food": "e3e6",
524 | "candle-holder": "f6bc",
525 | "candy": "e3e7",
526 | "candy-bar": "e3e8",
527 | "candy-cane": "f786",
528 | "candy-corn": "f6bd",
529 | "cannabis": "f55f",
530 | "cannon": "e642",
531 | "capsules": "f46b",
532 | "car": "f1b9",
533 | "car-battery": "f5df",
534 | "car-bolt": "e341",
535 | "car-building": "f859",
536 | "car-bump": "f5e0",
537 | "car-burst": "f5e1",
538 | "car-bus": "f85a",
539 | "car-circle-bolt": "e342",
540 | "car-garage": "f5e2",
541 | "car-mirrors": "e343",
542 | "car-on": "e4dd",
543 | "car-rear": "f5de",
544 | "car-side": "f5e4",
545 | "car-side-bolt": "e344",
546 | "car-tilt": "f5e5",
547 | "car-tunnel": "e4de",
548 | "car-wash": "f5e6",
549 | "car-wrench": "f5e3",
550 | "caravan": "f8ff",
551 | "caravan-simple": "e000",
552 | "card-club": "e3e9",
553 | "card-diamond": "e3ea",
554 | "card-heart": "e3eb",
555 | "card-spade": "e3ec",
556 | "cards": "e3ed",
557 | "cards-blank": "e4df",
558 | "caret-down": "f0d7",
559 | "caret-left": "f0d9",
560 | "caret-right": "f0da",
561 | "caret-up": "f0d8",
562 | "carrot": "f787",
563 | "cars": "f85b",
564 | "cart-arrow-down": "f218",
565 | "cart-arrow-up": "e3ee",
566 | "cart-circle-arrow-down": "e3ef",
567 | "cart-circle-arrow-up": "e3f0",
568 | "cart-circle-check": "e3f1",
569 | "cart-circle-exclamation": "e3f2",
570 | "cart-circle-plus": "e3f3",
571 | "cart-circle-xmark": "e3f4",
572 | "cart-flatbed": "f474",
573 | "cart-flatbed-boxes": "f475",
574 | "cart-flatbed-empty": "f476",
575 | "cart-flatbed-suitcase": "f59d",
576 | "cart-minus": "e0db",
577 | "cart-plus": "f217",
578 | "cart-shopping": "f07a",
579 | "cart-shopping-fast": "e0dc",
580 | "cart-xmark": "e0dd",
581 | "cash-register": "f788",
582 | "cassette-betamax": "f8a4",
583 | "cassette-tape": "f8ab",
584 | "cassette-vhs": "f8ec",
585 | "castle": "e0de",
586 | "cat": "f6be",
587 | "cat-space": "e001",
588 | "cauldron": "f6bf",
589 | "cedi-sign": "e0df",
590 | "cent-sign": "e3f5",
591 | "certificate": "f0a3",
592 | "chair": "f6c0",
593 | "chair-office": "f6c1",
594 | "chalkboard": "f51b",
595 | "chalkboard-user": "f51c",
596 | "champagne-glass": "f79e",
597 | "champagne-glasses": "f79f",
598 | "charging-station": "f5e7",
599 | "chart-area": "f1fe",
600 | "chart-bar": "f080",
601 | "chart-bullet": "e0e1",
602 | "chart-candlestick": "e0e2",
603 | "chart-column": "e0e3",
604 | "chart-gantt": "e0e4",
605 | "chart-kanban": "e64f",
606 | "chart-line": "f201",
607 | "chart-line-down": "f64d",
608 | "chart-line-up": "e0e5",
609 | "chart-line-up-down": "e5d7",
610 | "chart-mixed": "f643",
611 | "chart-mixed-up-circle-currency": "e5d8",
612 | "chart-mixed-up-circle-dollar": "e5d9",
613 | "chart-network": "f78a",
614 | "chart-pie": "f200",
615 | "chart-pie-simple": "f64e",
616 | "chart-pie-simple-circle-currency": "e604",
617 | "chart-pie-simple-circle-dollar": "e605",
618 | "chart-pyramid": "e0e6",
619 | "chart-radar": "e0e7",
620 | "chart-scatter": "f7ee",
621 | "chart-scatter-3d": "e0e8",
622 | "chart-scatter-bubble": "e0e9",
623 | "chart-simple": "e473",
624 | "chart-simple-horizontal": "e474",
625 | "chart-tree-map": "e0ea",
626 | "chart-user": "f6a3",
627 | "chart-waterfall": "e0eb",
628 | "check": "f00c",
629 | "check-double": "f560",
630 | "check-to-slot": "f772",
631 | "cheese": "f7ef",
632 | "cheese-swiss": "f7f0",
633 | "cherries": "e0ec",
634 | "chess": "f439",
635 | "chess-bishop": "f43a",
636 | "chess-bishop-piece": "f43b",
637 | "chess-board": "f43c",
638 | "chess-clock": "f43d",
639 | "chess-clock-flip": "f43e",
640 | "chess-king": "f43f",
641 | "chess-king-piece": "f440",
642 | "chess-knight": "f441",
643 | "chess-knight-piece": "f442",
644 | "chess-pawn": "f443",
645 | "chess-pawn-piece": "f444",
646 | "chess-queen": "f445",
647 | "chess-queen-piece": "f446",
648 | "chess-rook": "f447",
649 | "chess-rook-piece": "f448",
650 | "chestnut": "e3f6",
651 | "chevron-down": "f078",
652 | "chevron-left": "f053",
653 | "chevron-right": "f054",
654 | "chevron-up": "f077",
655 | "chevrons-down": "f322",
656 | "chevrons-left": "f323",
657 | "chevrons-right": "f324",
658 | "chevrons-up": "f325",
659 | "chf-sign": "e602",
660 | "child": "f1ae",
661 | "child-combatant": "e4e0",
662 | "child-dress": "e59c",
663 | "child-reaching": "e59d",
664 | "children": "e4e1",
665 | "chimney": "f78b",
666 | "chopsticks": "e3f7",
667 | "church": "f51d",
668 | "circle": "f111",
669 | "circle-0": "e0ed",
670 | "circle-1": "e0ee",
671 | "circle-2": "e0ef",
672 | "circle-3": "e0f0",
673 | "circle-4": "e0f1",
674 | "circle-5": "e0f2",
675 | "circle-6": "e0f3",
676 | "circle-7": "e0f4",
677 | "circle-8": "e0f5",
678 | "circle-9": "e0f6",
679 | "circle-a": "e0f7",
680 | "circle-ampersand": "e0f8",
681 | "circle-arrow-down": "f0ab",
682 | "circle-arrow-down-left": "e0f9",
683 | "circle-arrow-down-right": "e0fa",
684 | "circle-arrow-left": "f0a8",
685 | "circle-arrow-right": "f0a9",
686 | "circle-arrow-up": "f0aa",
687 | "circle-arrow-up-left": "e0fb",
688 | "circle-arrow-up-right": "e0fc",
689 | "circle-b": "e0fd",
690 | "circle-bolt": "e0fe",
691 | "circle-book-open": "e0ff",
692 | "circle-bookmark": "e100",
693 | "circle-c": "e101",
694 | "circle-calendar": "e102",
695 | "circle-camera": "e103",
696 | "circle-caret-down": "f32d",
697 | "circle-caret-left": "f32e",
698 | "circle-caret-right": "f330",
699 | "circle-caret-up": "f331",
700 | "circle-check": "f058",
701 | "circle-chevron-down": "f13a",
702 | "circle-chevron-left": "f137",
703 | "circle-chevron-right": "f138",
704 | "circle-chevron-up": "f139",
705 | "circle-d": "e104",
706 | "circle-dashed": "e105",
707 | "circle-divide": "e106",
708 | "circle-dollar": "f2e8",
709 | "circle-dollar-to-slot": "f4b9",
710 | "circle-dot": "f192",
711 | "circle-down": "f358",
712 | "circle-down-left": "e107",
713 | "circle-down-right": "e108",
714 | "circle-e": "e109",
715 | "circle-ellipsis": "e10a",
716 | "circle-ellipsis-vertical": "e10b",
717 | "circle-envelope": "e10c",
718 | "circle-euro": "e5ce",
719 | "circle-exclamation": "f06a",
720 | "circle-exclamation-check": "e10d",
721 | "circle-f": "e10e",
722 | "circle-g": "e10f",
723 | "circle-gf": "e67f",
724 | "circle-h": "f47e",
725 | "circle-half": "e110",
726 | "circle-half-stroke": "f042",
727 | "circle-heart": "f4c7",
728 | "circle-i": "e111",
729 | "circle-info": "f05a",
730 | "circle-j": "e112",
731 | "circle-k": "e113",
732 | "circle-l": "e114",
733 | "circle-left": "f359",
734 | "circle-location-arrow": "f602",
735 | "circle-m": "e115",
736 | "circle-microphone": "e116",
737 | "circle-microphone-lines": "e117",
738 | "circle-minus": "f056",
739 | "circle-n": "e118",
740 | "circle-nodes": "e4e2",
741 | "circle-notch": "f1ce",
742 | "circle-o": "e119",
743 | "circle-p": "e11a",
744 | "circle-parking": "f615",
745 | "circle-pause": "f28b",
746 | "circle-phone": "e11b",
747 | "circle-phone-flip": "e11c",
748 | "circle-phone-hangup": "e11d",
749 | "circle-play": "f144",
750 | "circle-plus": "f055",
751 | "circle-q": "e11e",
752 | "circle-quarter": "e11f",
753 | "circle-quarter-stroke": "e5d3",
754 | "circle-quarters": "e3f8",
755 | "circle-question": "f059",
756 | "circle-r": "e120",
757 | "circle-radiation": "f7ba",
758 | "circle-right": "f35a",
759 | "circle-s": "e121",
760 | "circle-small": "e122",
761 | "circle-sort": "e030",
762 | "circle-sort-down": "e031",
763 | "circle-sort-up": "e032",
764 | "circle-star": "e123",
765 | "circle-sterling": "e5cf",
766 | "circle-stop": "f28d",
767 | "circle-t": "e124",
768 | "circle-three-quarters": "e125",
769 | "circle-three-quarters-stroke": "e5d4",
770 | "circle-trash": "e126",
771 | "circle-u": "e127",
772 | "circle-up": "f35b",
773 | "circle-up-left": "e128",
774 | "circle-up-right": "e129",
775 | "circle-user": "f2bd",
776 | "circle-v": "e12a",
777 | "circle-video": "e12b",
778 | "circle-w": "e12c",
779 | "circle-waveform-lines": "e12d",
780 | "circle-wifi": "e67d",
781 | "circle-wifi-circle-wifi": "e67e",
782 | "circle-x": "e12e",
783 | "circle-xmark": "f057",
784 | "circle-y": "e12f",
785 | "circle-yen": "e5d0",
786 | "circle-z": "e130",
787 | "circles-overlap": "e600",
788 | "citrus": "e2f4",
789 | "citrus-slice": "e2f5",
790 | "city": "f64f",
791 | "clapperboard": "e131",
792 | "clapperboard-play": "e132",
793 | "clarinet": "f8ad",
794 | "claw-marks": "f6c2",
795 | "clipboard": "f328",
796 | "clipboard-check": "f46c",
797 | "clipboard-list": "f46d",
798 | "clipboard-list-check": "f737",
799 | "clipboard-medical": "e133",
800 | "clipboard-prescription": "f5e8",
801 | "clipboard-question": "e4e3",
802 | "clipboard-user": "f7f3",
803 | "clock": "f017",
804 | "clock-desk": "e134",
805 | "clock-eight": "e345",
806 | "clock-eight-thirty": "e346",
807 | "clock-eleven": "e347",
808 | "clock-eleven-thirty": "e348",
809 | "clock-five": "e349",
810 | "clock-five-thirty": "e34a",
811 | "clock-four-thirty": "e34b",
812 | "clock-nine": "e34c",
813 | "clock-nine-thirty": "e34d",
814 | "clock-one": "e34e",
815 | "clock-one-thirty": "e34f",
816 | "clock-rotate-left": "f1da",
817 | "clock-seven": "e350",
818 | "clock-seven-thirty": "e351",
819 | "clock-six": "e352",
820 | "clock-six-thirty": "e353",
821 | "clock-ten": "e354",
822 | "clock-ten-thirty": "e355",
823 | "clock-three": "e356",
824 | "clock-three-thirty": "e357",
825 | "clock-twelve": "e358",
826 | "clock-twelve-thirty": "e359",
827 | "clock-two": "e35a",
828 | "clock-two-thirty": "e35b",
829 | "clone": "f24d",
830 | "closed-captioning": "f20a",
831 | "closed-captioning-slash": "e135",
832 | "clothes-hanger": "e136",
833 | "cloud": "f0c2",
834 | "cloud-arrow-down": "f0ed",
835 | "cloud-arrow-up": "f0ee",
836 | "cloud-binary": "e601",
837 | "cloud-bolt": "f76c",
838 | "cloud-bolt-moon": "f76d",
839 | "cloud-bolt-sun": "f76e",
840 | "cloud-check": "e35c",
841 | "cloud-drizzle": "f738",
842 | "cloud-exclamation": "e491",
843 | "cloud-fog": "f74e",
844 | "cloud-hail": "f739",
845 | "cloud-hail-mixed": "f73a",
846 | "cloud-meatball": "f73b",
847 | "cloud-minus": "e35d",
848 | "cloud-moon": "f6c3",
849 | "cloud-moon-rain": "f73c",
850 | "cloud-music": "f8ae",
851 | "cloud-plus": "e35e",
852 | "cloud-question": "e492",
853 | "cloud-rain": "f73d",
854 | "cloud-rainbow": "f73e",
855 | "cloud-showers": "f73f",
856 | "cloud-showers-heavy": "f740",
857 | "cloud-showers-water": "e4e4",
858 | "cloud-slash": "e137",
859 | "cloud-sleet": "f741",
860 | "cloud-snow": "f742",
861 | "cloud-sun": "f6c4",
862 | "cloud-sun-rain": "f743",
863 | "cloud-word": "e138",
864 | "cloud-xmark": "e35f",
865 | "clouds": "f744",
866 | "clouds-moon": "f745",
867 | "clouds-sun": "f746",
868 | "clover": "e139",
869 | "club": "f327",
870 | "coconut": "e2f6",
871 | "code": "f121",
872 | "code-branch": "f126",
873 | "code-commit": "f386",
874 | "code-compare": "e13a",
875 | "code-fork": "e13b",
876 | "code-merge": "f387",
877 | "code-pull-request": "e13c",
878 | "code-pull-request-closed": "e3f9",
879 | "code-pull-request-draft": "e3fa",
880 | "code-simple": "e13d",
881 | "coffee-bean": "e13e",
882 | "coffee-beans": "e13f",
883 | "coffee-pot": "e002",
884 | "coffin": "f6c6",
885 | "coffin-cross": "e051",
886 | "coin": "f85c",
887 | "coin-blank": "e3fb",
888 | "coin-front": "e3fc",
889 | "coin-vertical": "e3fd",
890 | "coins": "f51e",
891 | "colon": "3a",
892 | "colon-sign": "e140",
893 | "columns-3": "e361",
894 | "comet": "e003",
895 | "comma": "2c",
896 | "command": "e142",
897 | "comment": "f075",
898 | "comment-arrow-down": "e143",
899 | "comment-arrow-up": "e144",
900 | "comment-arrow-up-right": "e145",
901 | "comment-captions": "e146",
902 | "comment-check": "f4ac",
903 | "comment-code": "e147",
904 | "comment-dollar": "f651",
905 | "comment-dots": "f4ad",
906 | "comment-exclamation": "f4af",
907 | "comment-heart": "e5c8",
908 | "comment-image": "e148",
909 | "comment-lines": "f4b0",
910 | "comment-medical": "f7f5",
911 | "comment-middle": "e149",
912 | "comment-middle-top": "e14a",
913 | "comment-minus": "f4b1",
914 | "comment-music": "f8b0",
915 | "comment-pen": "f4ae",
916 | "comment-plus": "f4b2",
917 | "comment-question": "e14b",
918 | "comment-quote": "e14c",
919 | "comment-slash": "f4b3",
920 | "comment-smile": "f4b4",
921 | "comment-sms": "f7cd",
922 | "comment-text": "e14d",
923 | "comment-xmark": "f4b5",
924 | "comments": "f086",
925 | "comments-dollar": "f653",
926 | "comments-question": "e14e",
927 | "comments-question-check": "e14f",
928 | "compact-disc": "f51f",
929 | "compass": "f14e",
930 | "compass-drafting": "f568",
931 | "compass-slash": "f5e9",
932 | "compress": "f066",
933 | "compress-wide": "f326",
934 | "computer": "e4e5",
935 | "computer-classic": "f8b1",
936 | "computer-mouse": "f8cc",
937 | "computer-mouse-scrollwheel": "f8cd",
938 | "computer-speaker": "f8b2",
939 | "container-storage": "f4b7",
940 | "conveyor-belt": "f46e",
941 | "conveyor-belt-arm": "e5f8",
942 | "conveyor-belt-boxes": "f46f",
943 | "conveyor-belt-empty": "e150",
944 | "cookie": "f563",
945 | "cookie-bite": "f564",
946 | "copy": "f0c5",
947 | "copyright": "f1f9",
948 | "corn": "f6c7",
949 | "corner": "e3fe",
950 | "couch": "f4b8",
951 | "court-sport": "e643",
952 | "cow": "f6c8",
953 | "cowbell": "f8b3",
954 | "cowbell-circle-plus": "f8b4",
955 | "crab": "e3ff",
956 | "crate-apple": "f6b1",
957 | "crate-empty": "e151",
958 | "credit-card": "f09d",
959 | "credit-card-blank": "f389",
960 | "credit-card-front": "f38a",
961 | "cricket-bat-ball": "f449",
962 | "croissant": "f7f6",
963 | "crop": "f125",
964 | "crop-simple": "f565",
965 | "cross": "f654",
966 | "crosshairs": "f05b",
967 | "crosshairs-simple": "e59f",
968 | "crow": "f520",
969 | "crown": "f521",
970 | "crutch": "f7f7",
971 | "crutches": "f7f8",
972 | "cruzeiro-sign": "e152",
973 | "crystal-ball": "e362",
974 | "cube": "f1b2",
975 | "cubes": "f1b3",
976 | "cubes-stacked": "e4e6",
977 | "cucumber": "e401",
978 | "cup-straw": "e363",
979 | "cup-straw-swoosh": "e364",
980 | "cup-togo": "f6c5",
981 | "cupcake": "e402",
982 | "curling-stone": "f44a",
983 | "custard": "e403",
984 | "d": "44",
985 | "dagger": "f6cb",
986 | "dash": "e404",
987 | "database": "f1c0",
988 | "deer": "f78e",
989 | "deer-rudolph": "f78f",
990 | "delete-left": "f55a",
991 | "delete-right": "e154",
992 | "democrat": "f747",
993 | "desktop": "f390",
994 | "desktop-arrow-down": "e155",
995 | "dharmachakra": "f655",
996 | "diagram-cells": "e475",
997 | "diagram-lean-canvas": "e156",
998 | "diagram-nested": "e157",
999 | "diagram-next": "e476",
1000 | "diagram-predecessor": "e477",
1001 | "diagram-previous": "e478",
1002 | "diagram-project": "f542",
1003 | "diagram-sankey": "e158",
1004 | "diagram-subtask": "e479",
1005 | "diagram-successor": "e47a",
1006 | "diagram-venn": "e15a",
1007 | "dial": "e15b",
1008 | "dial-high": "e15c",
1009 | "dial-low": "e15d",
1010 | "dial-max": "e15e",
1011 | "dial-med": "e15f",
1012 | "dial-med-low": "e160",
1013 | "dial-min": "e161",
1014 | "dial-off": "e162",
1015 | "diamond": "f219",
1016 | "diamond-exclamation": "e405",
1017 | "diamond-half": "e5b7",
1018 | "diamond-half-stroke": "e5b8",
1019 | "diamond-turn-right": "f5eb",
1020 | "diamonds-4": "e68b",
1021 | "dice": "f522",
1022 | "dice-d10": "f6cd",
1023 | "dice-d12": "f6ce",
1024 | "dice-d20": "f6cf",
1025 | "dice-d4": "f6d0",
1026 | "dice-d6": "f6d1",
1027 | "dice-d8": "f6d2",
1028 | "dice-five": "f523",
1029 | "dice-four": "f524",
1030 | "dice-one": "f525",
1031 | "dice-six": "f526",
1032 | "dice-three": "f527",
1033 | "dice-two": "f528",
1034 | "dinosaur": "e5fe",
1035 | "diploma": "f5ea",
1036 | "disc-drive": "f8b5",
1037 | "disease": "f7fa",
1038 | "display": "e163",
1039 | "display-arrow-down": "e164",
1040 | "display-chart-up": "e5e3",
1041 | "display-chart-up-circle-currency": "e5e5",
1042 | "display-chart-up-circle-dollar": "e5e6",
1043 | "display-code": "e165",
1044 | "display-medical": "e166",
1045 | "display-slash": "e2fa",
1046 | "distribute-spacing-horizontal": "e365",
1047 | "distribute-spacing-vertical": "e366",
1048 | "ditto": "22",
1049 | "divide": "f529",
1050 | "dna": "f471",
1051 | "do-not-enter": "f5ec",
1052 | "dog": "f6d3",
1053 | "dog-leashed": "f6d4",
1054 | "dollar-sign": "24",
1055 | "dolly": "f472",
1056 | "dolly-empty": "f473",
1057 | "dolphin": "e168",
1058 | "dong-sign": "e169",
1059 | "donut": "e406",
1060 | "door-closed": "f52a",
1061 | "door-open": "f52b",
1062 | "dove": "f4ba",
1063 | "down": "f354",
1064 | "down-from-bracket": "e66b",
1065 | "down-from-dotted-line": "e407",
1066 | "down-from-line": "f349",
1067 | "down-left": "e16a",
1068 | "down-left-and-up-right-to-center": "f422",
1069 | "down-long": "f309",
1070 | "down-right": "e16b",
1071 | "down-to-bracket": "e4e7",
1072 | "down-to-dotted-line": "e408",
1073 | "down-to-line": "f34a",
1074 | "download": "f019",
1075 | "dragon": "f6d5",
1076 | "draw-circle": "f5ed",
1077 | "draw-polygon": "f5ee",
1078 | "draw-square": "f5ef",
1079 | "dreidel": "f792",
1080 | "drone": "f85f",
1081 | "drone-front": "f860",
1082 | "droplet": "f043",
1083 | "droplet-degree": "f748",
1084 | "droplet-percent": "f750",
1085 | "droplet-slash": "f5c7",
1086 | "drum": "f569",
1087 | "drum-steelpan": "f56a",
1088 | "drumstick": "f6d6",
1089 | "drumstick-bite": "f6d7",
1090 | "dryer": "f861",
1091 | "dryer-heat": "f862",
1092 | "duck": "f6d8",
1093 | "dumbbell": "f44b",
1094 | "dumpster": "f793",
1095 | "dumpster-fire": "f794",
1096 | "dungeon": "f6d9",
1097 | "e": "45",
1098 | "ear": "f5f0",
1099 | "ear-deaf": "f2a4",
1100 | "ear-listen": "f2a2",
1101 | "ear-muffs": "f795",
1102 | "earth-africa": "f57c",
1103 | "earth-americas": "f57d",
1104 | "earth-asia": "f57e",
1105 | "earth-europe": "f7a2",
1106 | "earth-oceania": "e47b",
1107 | "eclipse": "f749",
1108 | "egg": "f7fb",
1109 | "egg-fried": "f7fc",
1110 | "eggplant": "e16c",
1111 | "eject": "f052",
1112 | "elephant": "f6da",
1113 | "elevator": "e16d",
1114 | "ellipsis": "f141",
1115 | "ellipsis-stroke": "f39b",
1116 | "ellipsis-stroke-vertical": "f39c",
1117 | "ellipsis-vertical": "f142",
1118 | "empty-set": "f656",
1119 | "engine": "e16e",
1120 | "engine-warning": "f5f2",
1121 | "envelope": "f0e0",
1122 | "envelope-circle-check": "e4e8",
1123 | "envelope-dot": "e16f",
1124 | "envelope-open": "f2b6",
1125 | "envelope-open-dollar": "f657",
1126 | "envelope-open-text": "f658",
1127 | "envelopes": "e170",
1128 | "envelopes-bulk": "f674",
1129 | "equals": "3d",
1130 | "eraser": "f12d",
1131 | "escalator": "e171",
1132 | "ethernet": "f796",
1133 | "euro-sign": "f153",
1134 | "excavator": "e656",
1135 | "exclamation": "21",
1136 | "expand": "f065",
1137 | "expand-wide": "f320",
1138 | "explosion": "e4e9",
1139 | "eye": "f06e",
1140 | "eye-dropper": "f1fb",
1141 | "eye-dropper-full": "e172",
1142 | "eye-dropper-half": "e173",
1143 | "eye-evil": "f6db",
1144 | "eye-low-vision": "f2a8",
1145 | "eye-slash": "f070",
1146 | "eyes": "e367",
1147 | "f": "46",
1148 | "face-angry": "f556",
1149 | "face-angry-horns": "e368",
1150 | "face-anguished": "e369",
1151 | "face-anxious-sweat": "e36a",
1152 | "face-astonished": "e36b",
1153 | "face-awesome": "e409",
1154 | "face-beam-hand-over-mouth": "e47c",
1155 | "face-clouds": "e47d",
1156 | "face-confounded": "e36c",
1157 | "face-confused": "e36d",
1158 | "face-cowboy-hat": "e36e",
1159 | "face-diagonal-mouth": "e47e",
1160 | "face-disappointed": "e36f",
1161 | "face-disguise": "e370",
1162 | "face-dizzy": "f567",
1163 | "face-dotted": "e47f",
1164 | "face-downcast-sweat": "e371",
1165 | "face-drooling": "e372",
1166 | "face-exhaling": "e480",
1167 | "face-explode": "e2fe",
1168 | "face-expressionless": "e373",
1169 | "face-eyes-xmarks": "e374",
1170 | "face-fearful": "e375",
1171 | "face-flushed": "f579",
1172 | "face-frown": "f119",
1173 | "face-frown-open": "f57a",
1174 | "face-frown-slight": "e376",
1175 | "face-glasses": "e377",
1176 | "face-grimace": "f57f",
1177 | "face-grin": "f580",
1178 | "face-grin-beam": "f582",
1179 | "face-grin-beam-sweat": "f583",
1180 | "face-grin-hearts": "f584",
1181 | "face-grin-squint": "f585",
1182 | "face-grin-squint-tears": "f586",
1183 | "face-grin-stars": "f587",
1184 | "face-grin-tears": "f588",
1185 | "face-grin-tongue": "f589",
1186 | "face-grin-tongue-squint": "f58a",
1187 | "face-grin-tongue-wink": "f58b",
1188 | "face-grin-wide": "f581",
1189 | "face-grin-wink": "f58c",
1190 | "face-hand-over-mouth": "e378",
1191 | "face-hand-peeking": "e481",
1192 | "face-hand-yawn": "e379",
1193 | "face-head-bandage": "e37a",
1194 | "face-holding-back-tears": "e482",
1195 | "face-hushed": "e37b",
1196 | "face-icicles": "e37c",
1197 | "face-kiss": "f596",
1198 | "face-kiss-beam": "f597",
1199 | "face-kiss-closed-eyes": "e37d",
1200 | "face-kiss-wink-heart": "f598",
1201 | "face-laugh": "f599",
1202 | "face-laugh-beam": "f59a",
1203 | "face-laugh-squint": "f59b",
1204 | "face-laugh-wink": "f59c",
1205 | "face-lying": "e37e",
1206 | "face-mask": "e37f",
1207 | "face-meh": "f11a",
1208 | "face-meh-blank": "f5a4",
1209 | "face-melting": "e483",
1210 | "face-monocle": "e380",
1211 | "face-nauseated": "e381",
1212 | "face-nose-steam": "e382",
1213 | "face-party": "e383",
1214 | "face-pensive": "e384",
1215 | "face-persevering": "e385",
1216 | "face-pleading": "e386",
1217 | "face-pouting": "e387",
1218 | "face-raised-eyebrow": "e388",
1219 | "face-relieved": "e389",
1220 | "face-rolling-eyes": "f5a5",
1221 | "face-sad-cry": "f5b3",
1222 | "face-sad-sweat": "e38a",
1223 | "face-sad-tear": "f5b4",
1224 | "face-saluting": "e484",
1225 | "face-scream": "e38b",
1226 | "face-shush": "e38c",
1227 | "face-sleeping": "e38d",
1228 | "face-sleepy": "e38e",
1229 | "face-smile": "f118",
1230 | "face-smile-beam": "f5b8",
1231 | "face-smile-halo": "e38f",
1232 | "face-smile-hearts": "e390",
1233 | "face-smile-horns": "e391",
1234 | "face-smile-plus": "f5b9",
1235 | "face-smile-relaxed": "e392",
1236 | "face-smile-tear": "e393",
1237 | "face-smile-tongue": "e394",
1238 | "face-smile-upside-down": "e395",
1239 | "face-smile-wink": "f4da",
1240 | "face-smiling-hands": "e396",
1241 | "face-smirking": "e397",
1242 | "face-spiral-eyes": "e485",
1243 | "face-sunglasses": "e398",
1244 | "face-surprise": "f5c2",
1245 | "face-swear": "e399",
1246 | "face-thermometer": "e39a",
1247 | "face-thinking": "e39b",
1248 | "face-tired": "f5c8",
1249 | "face-tissue": "e39c",
1250 | "face-tongue-money": "e39d",
1251 | "face-tongue-sweat": "e39e",
1252 | "face-unamused": "e39f",
1253 | "face-viewfinder": "e2ff",
1254 | "face-vomit": "e3a0",
1255 | "face-weary": "e3a1",
1256 | "face-woozy": "e3a2",
1257 | "face-worried": "e3a3",
1258 | "face-zany": "e3a4",
1259 | "face-zipper": "e3a5",
1260 | "falafel": "e40a",
1261 | "family": "e300",
1262 | "family-dress": "e301",
1263 | "family-pants": "e302",
1264 | "fan": "f863",
1265 | "fan-table": "e004",
1266 | "farm": "f864",
1267 | "faucet": "e005",
1268 | "faucet-drip": "e006",
1269 | "fax": "f1ac",
1270 | "feather": "f52d",
1271 | "feather-pointed": "f56b",
1272 | "fence": "e303",
1273 | "ferris-wheel": "e174",
1274 | "ferry": "e4ea",
1275 | "field-hockey-stick-ball": "f44c",
1276 | "file": "f15b",
1277 | "file-arrow-down": "f56d",
1278 | "file-arrow-up": "f574",
1279 | "file-audio": "f1c7",
1280 | "file-binary": "e175",
1281 | "file-cad": "e672",
1282 | "file-certificate": "f5f3",
1283 | "file-chart-column": "f659",
1284 | "file-chart-pie": "f65a",
1285 | "file-check": "f316",
1286 | "file-circle-check": "e5a0",
1287 | "file-circle-exclamation": "e4eb",
1288 | "file-circle-info": "e493",
1289 | "file-circle-minus": "e4ed",
1290 | "file-circle-plus": "e494",
1291 | "file-circle-question": "e4ef",
1292 | "file-circle-xmark": "e5a1",
1293 | "file-code": "f1c9",
1294 | "file-contract": "f56c",
1295 | "file-csv": "f6dd",
1296 | "file-dashed-line": "f877",
1297 | "file-doc": "e5ed",
1298 | "file-eps": "e644",
1299 | "file-excel": "f1c3",
1300 | "file-exclamation": "f31a",
1301 | "file-export": "f56e",
1302 | "file-gif": "e645",
1303 | "file-heart": "e176",
1304 | "file-image": "f1c5",
1305 | "file-import": "f56f",
1306 | "file-invoice": "f570",
1307 | "file-invoice-dollar": "f571",
1308 | "file-jpg": "e646",
1309 | "file-lines": "f15c",
1310 | "file-lock": "e3a6",
1311 | "file-magnifying-glass": "f865",
1312 | "file-medical": "f477",
1313 | "file-minus": "f318",
1314 | "file-mov": "e647",
1315 | "file-mp3": "e648",
1316 | "file-mp4": "e649",
1317 | "file-music": "f8b6",
1318 | "file-pdf": "f1c1",
1319 | "file-pen": "f31c",
1320 | "file-plus": "f319",
1321 | "file-plus-minus": "e177",
1322 | "file-png": "e666",
1323 | "file-powerpoint": "f1c4",
1324 | "file-ppt": "e64a",
1325 | "file-prescription": "f572",
1326 | "file-shield": "e4f0",
1327 | "file-signature": "f573",
1328 | "file-slash": "e3a7",
1329 | "file-spreadsheet": "f65b",
1330 | "file-svg": "e64b",
1331 | "file-user": "f65c",
1332 | "file-vector": "e64c",
1333 | "file-video": "f1c8",
1334 | "file-waveform": "f478",
1335 | "file-word": "f1c2",
1336 | "file-xls": "e64d",
1337 | "file-xmark": "f317",
1338 | "file-xml": "e654",
1339 | "file-zip": "e5ee",
1340 | "file-zipper": "f1c6",
1341 | "files": "e178",
1342 | "files-medical": "f7fd",
1343 | "fill": "f575",
1344 | "fill-drip": "f576",
1345 | "film": "f008",
1346 | "film-canister": "f8b7",
1347 | "film-simple": "f3a0",
1348 | "film-slash": "e179",
1349 | "films": "e17a",
1350 | "filter": "f0b0",
1351 | "filter-circle-dollar": "f662",
1352 | "filter-circle-xmark": "e17b",
1353 | "filter-list": "e17c",
1354 | "filter-slash": "e17d",
1355 | "filters": "e17e",
1356 | "fingerprint": "f577",
1357 | "fire": "f06d",
1358 | "fire-burner": "e4f1",
1359 | "fire-extinguisher": "f134",
1360 | "fire-flame": "f6df",
1361 | "fire-flame-curved": "f7e4",
1362 | "fire-flame-simple": "f46a",
1363 | "fire-hydrant": "e17f",
1364 | "fire-smoke": "f74b",
1365 | "fireplace": "f79a",
1366 | "fish": "f578",
1367 | "fish-bones": "e304",
1368 | "fish-cooked": "f7fe",
1369 | "fish-fins": "e4f2",
1370 | "fishing-rod": "e3a8",
1371 | "flag": "f024",
1372 | "flag-checkered": "f11e",
1373 | "flag-pennant": "f456",
1374 | "flag-swallowtail": "f74c",
1375 | "flag-usa": "f74d",
1376 | "flashlight": "f8b8",
1377 | "flask": "f0c3",
1378 | "flask-gear": "e5f1",
1379 | "flask-round-poison": "f6e0",
1380 | "flask-round-potion": "f6e1",
1381 | "flask-vial": "e4f3",
1382 | "flatbread": "e40b",
1383 | "flatbread-stuffed": "e40c",
1384 | "floppy-disk": "f0c7",
1385 | "floppy-disk-circle-arrow-right": "e180",
1386 | "floppy-disk-circle-xmark": "e181",
1387 | "floppy-disk-pen": "e182",
1388 | "floppy-disks": "e183",
1389 | "florin-sign": "e184",
1390 | "flower": "f7ff",
1391 | "flower-daffodil": "f800",
1392 | "flower-tulip": "f801",
1393 | "flute": "f8b9",
1394 | "flux-capacitor": "f8ba",
1395 | "flying-disc": "e3a9",
1396 | "folder": "f07b",
1397 | "folder-arrow-down": "e053",
1398 | "folder-arrow-up": "e054",
1399 | "folder-bookmark": "e186",
1400 | "folder-check": "e64e",
1401 | "folder-closed": "e185",
1402 | "folder-gear": "e187",
1403 | "folder-grid": "e188",
1404 | "folder-heart": "e189",
1405 | "folder-image": "e18a",
1406 | "folder-magnifying-glass": "e18b",
1407 | "folder-medical": "e18c",
1408 | "folder-minus": "f65d",
1409 | "folder-music": "e18d",
1410 | "folder-open": "f07c",
1411 | "folder-plus": "f65e",
1412 | "folder-tree": "f802",
1413 | "folder-user": "e18e",
1414 | "folder-xmark": "f65f",
1415 | "folders": "f660",
1416 | "fondue-pot": "e40d",
1417 | "font": "f031",
1418 | "font-awesome": "f2b4",
1419 | "font-case": "f866",
1420 | "football": "f44e",
1421 | "football-helmet": "f44f",
1422 | "fork": "f2e3",
1423 | "fork-knife": "f2e6",
1424 | "forklift": "f47a",
1425 | "fort": "e486",
1426 | "forward": "f04e",
1427 | "forward-fast": "f050",
1428 | "forward-step": "f051",
1429 | "frame": "e495",
1430 | "franc-sign": "e18f",
1431 | "french-fries": "f803",
1432 | "frog": "f52e",
1433 | "function": "f661",
1434 | "futbol": "f1e3",
1435 | "g": "47",
1436 | "galaxy": "e008",
1437 | "gallery-thumbnails": "e3aa",
1438 | "game-board": "f867",
1439 | "game-board-simple": "f868",
1440 | "game-console-handheld": "f8bb",
1441 | "game-console-handheld-crank": "e5b9",
1442 | "gamepad": "f11b",
1443 | "gamepad-modern": "e5a2",
1444 | "garage": "e009",
1445 | "garage-car": "e00a",
1446 | "garage-open": "e00b",
1447 | "garlic": "e40e",
1448 | "gas-pump": "f52f",
1449 | "gas-pump-slash": "f5f4",
1450 | "gauge": "f624",
1451 | "gauge-circle-bolt": "e496",
1452 | "gauge-circle-minus": "e497",
1453 | "gauge-circle-plus": "e498",
1454 | "gauge-high": "f625",
1455 | "gauge-low": "f627",
1456 | "gauge-max": "f626",
1457 | "gauge-min": "f628",
1458 | "gauge-simple": "f629",
1459 | "gauge-simple-high": "f62a",
1460 | "gauge-simple-low": "f62c",
1461 | "gauge-simple-max": "f62b",
1462 | "gauge-simple-min": "f62d",
1463 | "gavel": "f0e3",
1464 | "gear": "f013",
1465 | "gear-code": "e5e8",
1466 | "gear-complex": "e5e9",
1467 | "gear-complex-code": "e5eb",
1468 | "gears": "f085",
1469 | "gem": "f3a5",
1470 | "genderless": "f22d",
1471 | "ghost": "f6e2",
1472 | "gif": "e190",
1473 | "gift": "f06b",
1474 | "gift-card": "f663",
1475 | "gifts": "f79c",
1476 | "gingerbread-man": "f79d",
1477 | "glass": "f804",
1478 | "glass-citrus": "f869",
1479 | "glass-empty": "e191",
1480 | "glass-half": "e192",
1481 | "glass-water": "e4f4",
1482 | "glass-water-droplet": "e4f5",
1483 | "glasses": "f530",
1484 | "glasses-round": "f5f5",
1485 | "globe": "f0ac",
1486 | "globe-pointer": "e60e",
1487 | "globe-snow": "f7a3",
1488 | "globe-stand": "f5f6",
1489 | "globe-wifi": "e685",
1490 | "goal-net": "e3ab",
1491 | "golf-ball-tee": "f450",
1492 | "golf-club": "f451",
1493 | "golf-flag-hole": "e3ac",
1494 | "gopuram": "f664",
1495 | "graduation-cap": "f19d",
1496 | "gramophone": "f8bd",
1497 | "grapes": "e306",
1498 | "grate": "e193",
1499 | "grate-droplet": "e194",
1500 | "greater-than": "3e",
1501 | "greater-than-equal": "f532",
1502 | "grid": "e195",
1503 | "grid-2": "e196",
1504 | "grid-2-plus": "e197",
1505 | "grid-4": "e198",
1506 | "grid-5": "e199",
1507 | "grid-dividers": "e3ad",
1508 | "grid-horizontal": "e307",
1509 | "grid-round": "e5da",
1510 | "grid-round-2": "e5db",
1511 | "grid-round-2-plus": "e5dc",
1512 | "grid-round-4": "e5dd",
1513 | "grid-round-5": "e5de",
1514 | "grill": "e5a3",
1515 | "grill-fire": "e5a4",
1516 | "grill-hot": "e5a5",
1517 | "grip": "f58d",
1518 | "grip-dots": "e410",
1519 | "grip-dots-vertical": "e411",
1520 | "grip-lines": "f7a4",
1521 | "grip-lines-vertical": "f7a5",
1522 | "grip-vertical": "f58e",
1523 | "group-arrows-rotate": "e4f6",
1524 | "guarani-sign": "e19a",
1525 | "guitar": "f7a6",
1526 | "guitar-electric": "f8be",
1527 | "guitars": "f8bf",
1528 | "gun": "e19b",
1529 | "gun-slash": "e19c",
1530 | "gun-squirt": "e19d",
1531 | "h": "48",
1532 | "h1": "f313",
1533 | "h2": "f314",
1534 | "h3": "f315",
1535 | "h4": "f86a",
1536 | "h5": "e412",
1537 | "h6": "e413",
1538 | "hammer": "f6e3",
1539 | "hammer-brush": "e620",
1540 | "hammer-crash": "e414",
1541 | "hammer-war": "f6e4",
1542 | "hamsa": "f665",
1543 | "hand": "f256",
1544 | "hand-back-fist": "f255",
1545 | "hand-back-point-down": "e19e",
1546 | "hand-back-point-left": "e19f",
1547 | "hand-back-point-ribbon": "e1a0",
1548 | "hand-back-point-right": "e1a1",
1549 | "hand-back-point-up": "e1a2",
1550 | "hand-dots": "f461",
1551 | "hand-fingers-crossed": "e1a3",
1552 | "hand-fist": "f6de",
1553 | "hand-heart": "f4bc",
1554 | "hand-holding": "f4bd",
1555 | "hand-holding-box": "f47b",
1556 | "hand-holding-circle-dollar": "e621",
1557 | "hand-holding-dollar": "f4c0",
1558 | "hand-holding-droplet": "f4c1",
1559 | "hand-holding-hand": "e4f7",
1560 | "hand-holding-heart": "f4be",
1561 | "hand-holding-magic": "f6e5",
1562 | "hand-holding-medical": "e05c",
1563 | "hand-holding-seedling": "f4bf",
1564 | "hand-holding-skull": "e1a4",
1565 | "hand-horns": "e1a9",
1566 | "hand-lizard": "f258",
1567 | "hand-love": "e1a5",
1568 | "hand-middle-finger": "f806",
1569 | "hand-peace": "f25b",
1570 | "hand-point-down": "f0a7",
1571 | "hand-point-left": "f0a5",
1572 | "hand-point-ribbon": "e1a6",
1573 | "hand-point-right": "f0a4",
1574 | "hand-point-up": "f0a6",
1575 | "hand-pointer": "f25a",
1576 | "hand-scissors": "f257",
1577 | "hand-sparkles": "e05d",
1578 | "hand-spock": "f259",
1579 | "hand-wave": "e1a7",
1580 | "handcuffs": "e4f8",
1581 | "hands": "f2a7",
1582 | "hands-asl-interpreting": "f2a3",
1583 | "hands-bound": "e4f9",
1584 | "hands-bubbles": "e05e",
1585 | "hands-clapping": "e1a8",
1586 | "hands-holding": "f4c2",
1587 | "hands-holding-child": "e4fa",
1588 | "hands-holding-circle": "e4fb",
1589 | "hands-holding-diamond": "f47c",
1590 | "hands-holding-dollar": "f4c5",
1591 | "hands-holding-heart": "f4c3",
1592 | "hands-praying": "f684",
1593 | "handshake": "f2b5",
1594 | "handshake-angle": "f4c4",
1595 | "handshake-simple": "f4c6",
1596 | "handshake-simple-slash": "e05f",
1597 | "handshake-slash": "e060",
1598 | "hanukiah": "f6e6",
1599 | "hard-drive": "f0a0",
1600 | "hashtag": "23",
1601 | "hashtag-lock": "e415",
1602 | "hat-beach": "e606",
1603 | "hat-chef": "f86b",
1604 | "hat-cowboy": "f8c0",
1605 | "hat-cowboy-side": "f8c1",
1606 | "hat-santa": "f7a7",
1607 | "hat-winter": "f7a8",
1608 | "hat-witch": "f6e7",
1609 | "hat-wizard": "f6e8",
1610 | "head-side": "f6e9",
1611 | "head-side-brain": "f808",
1612 | "head-side-cough": "e061",
1613 | "head-side-cough-slash": "e062",
1614 | "head-side-gear": "e611",
1615 | "head-side-goggles": "f6ea",
1616 | "head-side-headphones": "f8c2",
1617 | "head-side-heart": "e1aa",
1618 | "head-side-mask": "e063",
1619 | "head-side-medical": "f809",
1620 | "head-side-virus": "e064",
1621 | "heading": "f1dc",
1622 | "headphones": "f025",
1623 | "headphones-simple": "f58f",
1624 | "headset": "f590",
1625 | "heart": "f004",
1626 | "heart-circle-bolt": "e4fc",
1627 | "heart-circle-check": "e4fd",
1628 | "heart-circle-exclamation": "e4fe",
1629 | "heart-circle-minus": "e4ff",
1630 | "heart-circle-plus": "e500",
1631 | "heart-circle-xmark": "e501",
1632 | "heart-crack": "f7a9",
1633 | "heart-half": "e1ab",
1634 | "heart-half-stroke": "e1ac",
1635 | "heart-pulse": "f21e",
1636 | "heat": "e00c",
1637 | "helicopter": "f533",
1638 | "helicopter-symbol": "e502",
1639 | "helmet-battle": "f6eb",
1640 | "helmet-safety": "f807",
1641 | "helmet-un": "e503",
1642 | "hexagon": "f312",
1643 | "hexagon-check": "e416",
1644 | "hexagon-divide": "e1ad",
1645 | "hexagon-exclamation": "e417",
1646 | "hexagon-image": "e504",
1647 | "hexagon-minus": "f307",
1648 | "hexagon-plus": "f300",
1649 | "hexagon-vertical-nft": "e505",
1650 | "hexagon-vertical-nft-slanted": "e506",
1651 | "hexagon-xmark": "f2ee",
1652 | "high-definition": "e1ae",
1653 | "highlighter": "f591",
1654 | "highlighter-line": "e1af",
1655 | "hill-avalanche": "e507",
1656 | "hill-rockslide": "e508",
1657 | "hippo": "f6ed",
1658 | "hockey-mask": "f6ee",
1659 | "hockey-puck": "f453",
1660 | "hockey-stick-puck": "e3ae",
1661 | "hockey-sticks": "f454",
1662 | "holly-berry": "f7aa",
1663 | "honey-pot": "e418",
1664 | "hood-cloak": "f6ef",
1665 | "horizontal-rule": "f86c",
1666 | "horse": "f6f0",
1667 | "horse-head": "f7ab",
1668 | "horse-saddle": "f8c3",
1669 | "hose": "e419",
1670 | "hose-reel": "e41a",
1671 | "hospital": "f0f8",
1672 | "hospital-user": "f80d",
1673 | "hospitals": "f80e",
1674 | "hot-tub-person": "f593",
1675 | "hotdog": "f80f",
1676 | "hotel": "f594",
1677 | "hourglass": "f254",
1678 | "hourglass-clock": "e41b",
1679 | "hourglass-end": "f253",
1680 | "hourglass-half": "f252",
1681 | "hourglass-start": "f251",
1682 | "house": "f015",
1683 | "house-blank": "e487",
1684 | "house-building": "e1b1",
1685 | "house-chimney": "e3af",
1686 | "house-chimney-blank": "e3b0",
1687 | "house-chimney-crack": "f6f1",
1688 | "house-chimney-heart": "e1b2",
1689 | "house-chimney-medical": "f7f2",
1690 | "house-chimney-user": "e065",
1691 | "house-chimney-window": "e00d",
1692 | "house-circle-check": "e509",
1693 | "house-circle-exclamation": "e50a",
1694 | "house-circle-xmark": "e50b",
1695 | "house-crack": "e3b1",
1696 | "house-day": "e00e",
1697 | "house-fire": "e50c",
1698 | "house-flag": "e50d",
1699 | "house-flood-water": "e50e",
1700 | "house-flood-water-circle-arrow-right": "e50f",
1701 | "house-heart": "f4c9",
1702 | "house-laptop": "e066",
1703 | "house-lock": "e510",
1704 | "house-medical": "e3b2",
1705 | "house-medical-circle-check": "e511",
1706 | "house-medical-circle-exclamation": "e512",
1707 | "house-medical-circle-xmark": "e513",
1708 | "house-medical-flag": "e514",
1709 | "house-night": "e010",
1710 | "house-person-leave": "e00f",
1711 | "house-person-return": "e011",
1712 | "house-signal": "e012",
1713 | "house-tree": "e1b3",
1714 | "house-tsunami": "e515",
1715 | "house-turret": "e1b4",
1716 | "house-user": "e1b0",
1717 | "house-water": "f74f",
1718 | "house-window": "e3b3",
1719 | "hryvnia-sign": "f6f2",
1720 | "hundred-points": "e41c",
1721 | "hurricane": "f751",
1722 | "hydra": "e686",
1723 | "hyphen": "2d",
1724 | "i": "49",
1725 | "i-cursor": "f246",
1726 | "ice-cream": "f810",
1727 | "ice-skate": "f7ac",
1728 | "icicles": "f7ad",
1729 | "icons": "f86d",
1730 | "id-badge": "f2c1",
1731 | "id-card": "f2c2",
1732 | "id-card-clip": "f47f",
1733 | "igloo": "f7ae",
1734 | "image": "f03e",
1735 | "image-landscape": "e1b5",
1736 | "image-polaroid": "f8c4",
1737 | "image-polaroid-user": "e1b6",
1738 | "image-portrait": "f3e0",
1739 | "image-slash": "e1b7",
1740 | "image-user": "e1b8",
1741 | "images": "f302",
1742 | "images-user": "e1b9",
1743 | "inbox": "f01c",
1744 | "inbox-full": "e1ba",
1745 | "inbox-in": "f310",
1746 | "inbox-out": "f311",
1747 | "inboxes": "e1bb",
1748 | "indent": "f03c",
1749 | "indian-rupee-sign": "e1bc",
1750 | "industry": "f275",
1751 | "industry-windows": "f3b3",
1752 | "infinity": "f534",
1753 | "info": "f129",
1754 | "inhaler": "f5f9",
1755 | "input-numeric": "e1bd",
1756 | "input-pipe": "e1be",
1757 | "input-text": "e1bf",
1758 | "integral": "f667",
1759 | "interrobang": "e5ba",
1760 | "intersection": "f668",
1761 | "island-tropical": "f811",
1762 | "italic": "f033",
1763 | "j": "4a",
1764 | "jack-o-lantern": "f30e",
1765 | "jar": "e516",
1766 | "jar-wheat": "e517",
1767 | "jedi": "f669",
1768 | "jet-fighter": "f0fb",
1769 | "jet-fighter-up": "e518",
1770 | "joint": "f595",
1771 | "joystick": "f8c5",
1772 | "jug": "f8c6",
1773 | "jug-bottle": "e5fb",
1774 | "jug-detergent": "e519",
1775 | "k": "4b",
1776 | "kaaba": "f66b",
1777 | "kazoo": "f8c7",
1778 | "kerning": "f86f",
1779 | "key": "f084",
1780 | "key-skeleton": "f6f3",
1781 | "key-skeleton-left-right": "e3b4",
1782 | "keyboard": "f11c",
1783 | "keyboard-brightness": "e1c0",
1784 | "keyboard-brightness-low": "e1c1",
1785 | "keyboard-down": "e1c2",
1786 | "keyboard-left": "e1c3",
1787 | "keynote": "f66c",
1788 | "khanda": "f66d",
1789 | "kidneys": "f5fb",
1790 | "kip-sign": "e1c4",
1791 | "kit-medical": "f479",
1792 | "kitchen-set": "e51a",
1793 | "kite": "f6f4",
1794 | "kiwi-bird": "f535",
1795 | "kiwi-fruit": "e30c",
1796 | "knife": "f2e4",
1797 | "knife-kitchen": "f6f5",
1798 | "l": "4c",
1799 | "lacrosse-stick": "e3b5",
1800 | "lacrosse-stick-ball": "e3b6",
1801 | "lambda": "f66e",
1802 | "lamp": "f4ca",
1803 | "lamp-desk": "e014",
1804 | "lamp-floor": "e015",
1805 | "lamp-street": "e1c5",
1806 | "land-mine-on": "e51b",
1807 | "landmark": "f66f",
1808 | "landmark-dome": "f752",
1809 | "landmark-flag": "e51c",
1810 | "landmark-magnifying-glass": "e622",
1811 | "language": "f1ab",
1812 | "laptop": "f109",
1813 | "laptop-arrow-down": "e1c6",
1814 | "laptop-binary": "e5e7",
1815 | "laptop-code": "f5fc",
1816 | "laptop-file": "e51d",
1817 | "laptop-medical": "f812",
1818 | "laptop-mobile": "f87a",
1819 | "laptop-slash": "e1c7",
1820 | "lari-sign": "e1c8",
1821 | "lasso": "f8c8",
1822 | "lasso-sparkles": "e1c9",
1823 | "layer-group": "f5fd",
1824 | "layer-minus": "f5fe",
1825 | "layer-plus": "f5ff",
1826 | "leaf": "f06c",
1827 | "leaf-heart": "f4cb",
1828 | "leaf-maple": "f6f6",
1829 | "leaf-oak": "f6f7",
1830 | "leafy-green": "e41d",
1831 | "left": "f355",
1832 | "left-from-bracket": "e66c",
1833 | "left-from-line": "f348",
1834 | "left-long": "f30a",
1835 | "left-long-to-line": "e41e",
1836 | "left-right": "f337",
1837 | "left-to-bracket": "e66d",
1838 | "left-to-line": "f34b",
1839 | "lemon": "f094",
1840 | "less-than": "3c",
1841 | "less-than-equal": "f537",
1842 | "life-ring": "f1cd",
1843 | "light-ceiling": "e016",
1844 | "light-emergency": "e41f",
1845 | "light-emergency-on": "e420",
1846 | "light-switch": "e017",
1847 | "light-switch-off": "e018",
1848 | "light-switch-on": "e019",
1849 | "lightbulb": "f0eb",
1850 | "lightbulb-cfl": "e5a6",
1851 | "lightbulb-cfl-on": "e5a7",
1852 | "lightbulb-dollar": "f670",
1853 | "lightbulb-exclamation": "f671",
1854 | "lightbulb-exclamation-on": "e1ca",
1855 | "lightbulb-gear": "e5fd",
1856 | "lightbulb-message": "e687",
1857 | "lightbulb-on": "f672",
1858 | "lightbulb-slash": "f673",
1859 | "lighthouse": "e612",
1860 | "lights-holiday": "f7b2",
1861 | "line-columns": "f870",
1862 | "line-height": "f871",
1863 | "lines-leaning": "e51e",
1864 | "link": "f0c1",
1865 | "link-horizontal": "e1cb",
1866 | "link-horizontal-slash": "e1cc",
1867 | "link-simple": "e1cd",
1868 | "link-simple-slash": "e1ce",
1869 | "link-slash": "f127",
1870 | "lips": "f600",
1871 | "lira-sign": "f195",
1872 | "list": "f03a",
1873 | "list-check": "f0ae",
1874 | "list-dropdown": "e1cf",
1875 | "list-music": "f8c9",
1876 | "list-ol": "f0cb",
1877 | "list-radio": "e1d0",
1878 | "list-timeline": "e1d1",
1879 | "list-tree": "e1d2",
1880 | "list-ul": "f0ca",
1881 | "litecoin-sign": "e1d3",
1882 | "loader": "e1d4",
1883 | "lobster": "e421",
1884 | "location-arrow": "f124",
1885 | "location-arrow-up": "e63a",
1886 | "location-check": "f606",
1887 | "location-crosshairs": "f601",
1888 | "location-crosshairs-slash": "f603",
1889 | "location-dot": "f3c5",
1890 | "location-dot-slash": "f605",
1891 | "location-exclamation": "f608",
1892 | "location-minus": "f609",
1893 | "location-pen": "f607",
1894 | "location-pin": "f041",
1895 | "location-pin-lock": "e51f",
1896 | "location-pin-slash": "f60c",
1897 | "location-plus": "f60a",
1898 | "location-question": "f60b",
1899 | "location-smile": "f60d",
1900 | "location-xmark": "f60e",
1901 | "lock": "f023",
1902 | "lock-a": "e422",
1903 | "lock-hashtag": "e423",
1904 | "lock-keyhole": "f30d",
1905 | "lock-keyhole-open": "f3c2",
1906 | "lock-open": "f3c1",
1907 | "locust": "e520",
1908 | "lollipop": "e424",
1909 | "loveseat": "f4cc",
1910 | "luchador-mask": "f455",
1911 | "lungs": "f604",
1912 | "lungs-virus": "e067",
1913 | "m": "4d",
1914 | "mace": "f6f8",
1915 | "magnet": "f076",
1916 | "magnifying-glass": "f002",
1917 | "magnifying-glass-arrow-right": "e521",
1918 | "magnifying-glass-arrows-rotate": "e65e",
1919 | "magnifying-glass-chart": "e522",
1920 | "magnifying-glass-dollar": "f688",
1921 | "magnifying-glass-location": "f689",
1922 | "magnifying-glass-minus": "f010",
1923 | "magnifying-glass-music": "e65f",
1924 | "magnifying-glass-play": "e660",
1925 | "magnifying-glass-plus": "f00e",
1926 | "magnifying-glass-waveform": "e661",
1927 | "mailbox": "f813",
1928 | "mailbox-flag-up": "e5bb",
1929 | "manat-sign": "e1d5",
1930 | "mandolin": "f6f9",
1931 | "mango": "e30f",
1932 | "manhole": "e1d6",
1933 | "map": "f279",
1934 | "map-location": "f59f",
1935 | "map-location-dot": "f5a0",
1936 | "map-pin": "f276",
1937 | "marker": "f5a1",
1938 | "mars": "f222",
1939 | "mars-and-venus": "f224",
1940 | "mars-and-venus-burst": "e523",
1941 | "mars-double": "f227",
1942 | "mars-stroke": "f229",
1943 | "mars-stroke-right": "f22b",
1944 | "mars-stroke-up": "f22a",
1945 | "martini-glass": "f57b",
1946 | "martini-glass-citrus": "f561",
1947 | "martini-glass-empty": "f000",
1948 | "mask": "f6fa",
1949 | "mask-face": "e1d7",
1950 | "mask-snorkel": "e3b7",
1951 | "mask-ventilator": "e524",
1952 | "masks-theater": "f630",
1953 | "mattress-pillow": "e525",
1954 | "maximize": "f31e",
1955 | "meat": "f814",
1956 | "medal": "f5a2",
1957 | "megaphone": "f675",
1958 | "melon": "e310",
1959 | "melon-slice": "e311",
1960 | "memo": "e1d8",
1961 | "memo-circle-check": "e1d9",
1962 | "memo-circle-info": "e49a",
1963 | "memo-pad": "e1da",
1964 | "memory": "f538",
1965 | "menorah": "f676",
1966 | "mercury": "f223",
1967 | "merge": "e526",
1968 | "message": "f27a",
1969 | "message-arrow-down": "e1db",
1970 | "message-arrow-up": "e1dc",
1971 | "message-arrow-up-right": "e1dd",
1972 | "message-bot": "e3b8",
1973 | "message-captions": "e1de",
1974 | "message-check": "f4a2",
1975 | "message-code": "e1df",
1976 | "message-dollar": "f650",
1977 | "message-dots": "f4a3",
1978 | "message-exclamation": "f4a5",
1979 | "message-heart": "e5c9",
1980 | "message-image": "e1e0",
1981 | "message-lines": "f4a6",
1982 | "message-medical": "f7f4",
1983 | "message-middle": "e1e1",
1984 | "message-middle-top": "e1e2",
1985 | "message-minus": "f4a7",
1986 | "message-music": "f8af",
1987 | "message-pen": "f4a4",
1988 | "message-plus": "f4a8",
1989 | "message-question": "e1e3",
1990 | "message-quote": "e1e4",
1991 | "message-slash": "f4a9",
1992 | "message-smile": "f4aa",
1993 | "message-sms": "e1e5",
1994 | "message-text": "e1e6",
1995 | "message-xmark": "f4ab",
1996 | "messages": "f4b6",
1997 | "messages-dollar": "f652",
1998 | "messages-question": "e1e7",
1999 | "meteor": "f753",
2000 | "meter": "e1e8",
2001 | "meter-bolt": "e1e9",
2002 | "meter-droplet": "e1ea",
2003 | "meter-fire": "e1eb",
2004 | "microchip": "f2db",
2005 | "microchip-ai": "e1ec",
2006 | "microphone": "f130",
2007 | "microphone-lines": "f3c9",
2008 | "microphone-lines-slash": "f539",
2009 | "microphone-slash": "f131",
2010 | "microphone-stand": "f8cb",
2011 | "microscope": "f610",
2012 | "microwave": "e01b",
2013 | "mill-sign": "e1ed",
2014 | "minimize": "f78c",
2015 | "minus": "f068",
2016 | "mistletoe": "f7b4",
2017 | "mitten": "f7b5",
2018 | "mobile": "f3ce",
2019 | "mobile-button": "f10b",
2020 | "mobile-notch": "e1ee",
2021 | "mobile-retro": "e527",
2022 | "mobile-screen": "f3cf",
2023 | "mobile-screen-button": "f3cd",
2024 | "mobile-signal": "e1ef",
2025 | "mobile-signal-out": "e1f0",
2026 | "money-bill": "f0d6",
2027 | "money-bill-1": "f3d1",
2028 | "money-bill-1-wave": "f53b",
2029 | "money-bill-simple": "e1f1",
2030 | "money-bill-simple-wave": "e1f2",
2031 | "money-bill-transfer": "e528",
2032 | "money-bill-trend-up": "e529",
2033 | "money-bill-wave": "f53a",
2034 | "money-bill-wheat": "e52a",
2035 | "money-bills": "e1f3",
2036 | "money-bills-simple": "e1f4",
2037 | "money-check": "f53c",
2038 | "money-check-dollar": "f53d",
2039 | "money-check-dollar-pen": "f873",
2040 | "money-check-pen": "f872",
2041 | "money-from-bracket": "e312",
2042 | "money-simple-from-bracket": "e313",
2043 | "monitor-waveform": "f611",
2044 | "monkey": "f6fb",
2045 | "monument": "f5a6",
2046 | "moon": "f186",
2047 | "moon-cloud": "f754",
2048 | "moon-over-sun": "f74a",
2049 | "moon-stars": "f755",
2050 | "moped": "e3b9",
2051 | "mortar-pestle": "f5a7",
2052 | "mosque": "f678",
2053 | "mosquito": "e52b",
2054 | "mosquito-net": "e52c",
2055 | "motorcycle": "f21c",
2056 | "mound": "e52d",
2057 | "mountain": "f6fc",
2058 | "mountain-city": "e52e",
2059 | "mountain-sun": "e52f",
2060 | "mountains": "f6fd",
2061 | "mouse-field": "e5a8",
2062 | "mp3-player": "f8ce",
2063 | "mug": "f874",
2064 | "mug-hot": "f7b6",
2065 | "mug-marshmallows": "f7b7",
2066 | "mug-saucer": "f0f4",
2067 | "mug-tea": "f875",
2068 | "mug-tea-saucer": "e1f5",
2069 | "mushroom": "e425",
2070 | "music": "f001",
2071 | "music-magnifying-glass": "e662",
2072 | "music-note": "f8cf",
2073 | "music-note-slash": "f8d0",
2074 | "music-slash": "f8d1",
2075 | "mustache": "e5bc",
2076 | "n": "4e",
2077 | "naira-sign": "e1f6",
2078 | "narwhal": "f6fe",
2079 | "nesting-dolls": "e3ba",
2080 | "network-wired": "f6ff",
2081 | "neuter": "f22c",
2082 | "newspaper": "f1ea",
2083 | "nfc": "e1f7",
2084 | "nfc-lock": "e1f8",
2085 | "nfc-magnifying-glass": "e1f9",
2086 | "nfc-pen": "e1fa",
2087 | "nfc-signal": "e1fb",
2088 | "nfc-slash": "e1fc",
2089 | "nfc-symbol": "e531",
2090 | "nfc-trash": "e1fd",
2091 | "nose": "e5bd",
2092 | "not-equal": "f53e",
2093 | "notdef": "e1fe",
2094 | "note": "e1ff",
2095 | "note-medical": "e200",
2096 | "note-sticky": "f249",
2097 | "notebook": "e201",
2098 | "notes": "e202",
2099 | "notes-medical": "f481",
2100 | "o": "4f",
2101 | "object-exclude": "e49c",
2102 | "object-group": "f247",
2103 | "object-intersect": "e49d",
2104 | "object-subtract": "e49e",
2105 | "object-ungroup": "f248",
2106 | "object-union": "e49f",
2107 | "objects-align-bottom": "e3bb",
2108 | "objects-align-center-horizontal": "e3bc",
2109 | "objects-align-center-vertical": "e3bd",
2110 | "objects-align-left": "e3be",
2111 | "objects-align-right": "e3bf",
2112 | "objects-align-top": "e3c0",
2113 | "objects-column": "e3c1",
2114 | "octagon": "f306",
2115 | "octagon-check": "e426",
2116 | "octagon-divide": "e203",
2117 | "octagon-exclamation": "e204",
2118 | "octagon-minus": "f308",
2119 | "octagon-plus": "f301",
2120 | "octagon-xmark": "f2f0",
2121 | "octopus": "e688",
2122 | "oil-can": "f613",
2123 | "oil-can-drip": "e205",
2124 | "oil-temperature": "f614",
2125 | "oil-well": "e532",
2126 | "olive": "e316",
2127 | "olive-branch": "e317",
2128 | "om": "f679",
2129 | "omega": "f67a",
2130 | "onion": "e427",
2131 | "option": "e318",
2132 | "ornament": "f7b8",
2133 | "otter": "f700",
2134 | "outdent": "f03b",
2135 | "outlet": "e01c",
2136 | "oven": "e01d",
2137 | "overline": "f876",
2138 | "p": "50",
2139 | "page": "e428",
2140 | "page-caret-down": "e429",
2141 | "page-caret-up": "e42a",
2142 | "pager": "f815",
2143 | "paint-roller": "f5aa",
2144 | "paintbrush": "f1fc",
2145 | "paintbrush-fine": "f5a9",
2146 | "paintbrush-pencil": "e206",
2147 | "palette": "f53f",
2148 | "pallet": "f482",
2149 | "pallet-box": "e208",
2150 | "pallet-boxes": "f483",
2151 | "pan-food": "e42b",
2152 | "pan-frying": "e42c",
2153 | "pancakes": "e42d",
2154 | "panel-ews": "e42e",
2155 | "panel-fire": "e42f",
2156 | "panorama": "e209",
2157 | "paper-plane": "f1d8",
2158 | "paper-plane-top": "e20a",
2159 | "paperclip": "f0c6",
2160 | "paperclip-vertical": "e3c2",
2161 | "parachute-box": "f4cd",
2162 | "paragraph": "f1dd",
2163 | "paragraph-left": "f878",
2164 | "party-bell": "e31a",
2165 | "party-horn": "e31b",
2166 | "passport": "f5ab",
2167 | "paste": "f0ea",
2168 | "pause": "f04c",
2169 | "paw": "f1b0",
2170 | "paw-claws": "f702",
2171 | "paw-simple": "f701",
2172 | "peace": "f67c",
2173 | "peach": "e20b",
2174 | "peanut": "e430",
2175 | "peanuts": "e431",
2176 | "peapod": "e31c",
2177 | "pear": "e20c",
2178 | "pedestal": "e20d",
2179 | "pegasus": "f703",
2180 | "pen": "f304",
2181 | "pen-circle": "e20e",
2182 | "pen-clip": "f305",
2183 | "pen-clip-slash": "e20f",
2184 | "pen-fancy": "f5ac",
2185 | "pen-fancy-slash": "e210",
2186 | "pen-field": "e211",
2187 | "pen-line": "e212",
2188 | "pen-nib": "f5ad",
2189 | "pen-nib-slash": "e4a1",
2190 | "pen-paintbrush": "f618",
2191 | "pen-ruler": "f5ae",
2192 | "pen-slash": "e213",
2193 | "pen-swirl": "e214",
2194 | "pen-to-square": "f044",
2195 | "pencil": "f303",
2196 | "pencil-mechanical": "e5ca",
2197 | "pencil-slash": "e215",
2198 | "people": "e216",
2199 | "people-arrows": "e068",
2200 | "people-carry-box": "f4ce",
2201 | "people-dress": "e217",
2202 | "people-dress-simple": "e218",
2203 | "people-group": "e533",
2204 | "people-line": "e534",
2205 | "people-pants": "e219",
2206 | "people-pants-simple": "e21a",
2207 | "people-pulling": "e535",
2208 | "people-robbery": "e536",
2209 | "people-roof": "e537",
2210 | "people-simple": "e21b",
2211 | "pepper": "e432",
2212 | "pepper-hot": "f816",
2213 | "percent": "25",
2214 | "period": "2e",
2215 | "person": "f183",
2216 | "person-arrow-down-to-line": "e538",
2217 | "person-arrow-up-from-line": "e539",
2218 | "person-biking": "f84a",
2219 | "person-biking-mountain": "f84b",
2220 | "person-booth": "f756",
2221 | "person-breastfeeding": "e53a",
2222 | "person-burst": "e53b",
2223 | "person-cane": "e53c",
2224 | "person-carry-box": "f4cf",
2225 | "person-chalkboard": "e53d",
2226 | "person-circle-check": "e53e",
2227 | "person-circle-exclamation": "e53f",
2228 | "person-circle-minus": "e540",
2229 | "person-circle-plus": "e541",
2230 | "person-circle-question": "e542",
2231 | "person-circle-xmark": "e543",
2232 | "person-digging": "f85e",
2233 | "person-dolly": "f4d0",
2234 | "person-dolly-empty": "f4d1",
2235 | "person-dots-from-line": "f470",
2236 | "person-dress": "f182",
2237 | "person-dress-burst": "e544",
2238 | "person-dress-fairy": "e607",
2239 | "person-dress-simple": "e21c",
2240 | "person-drowning": "e545",
2241 | "person-fairy": "e608",
2242 | "person-falling": "e546",
2243 | "person-falling-burst": "e547",
2244 | "person-from-portal": "e023",
2245 | "person-half-dress": "e548",
2246 | "person-harassing": "e549",
2247 | "person-hiking": "f6ec",
2248 | "person-military-pointing": "e54a",
2249 | "person-military-rifle": "e54b",
2250 | "person-military-to-person": "e54c",
2251 | "person-pinball": "e21d",
2252 | "person-praying": "f683",
2253 | "person-pregnant": "e31e",
2254 | "person-rays": "e54d",
2255 | "person-rifle": "e54e",
2256 | "person-running": "f70c",
2257 | "person-running-fast": "e5ff",
2258 | "person-seat": "e21e",
2259 | "person-seat-reclined": "e21f",
2260 | "person-shelter": "e54f",
2261 | "person-sign": "f757",
2262 | "person-simple": "e220",
2263 | "person-skating": "f7c5",
2264 | "person-ski-jumping": "f7c7",
2265 | "person-ski-lift": "f7c8",
2266 | "person-skiing": "f7c9",
2267 | "person-skiing-nordic": "f7ca",
2268 | "person-sledding": "f7cb",
2269 | "person-snowboarding": "f7ce",
2270 | "person-snowmobiling": "f7d1",
2271 | "person-swimming": "f5c4",
2272 | "person-through-window": "e5a9",
2273 | "person-to-door": "e433",
2274 | "person-to-portal": "e022",
2275 | "person-walking": "f554",
2276 | "person-walking-arrow-loop-left": "e551",
2277 | "person-walking-arrow-right": "e552",
2278 | "person-walking-dashed-line-arrow-right": "e553",
2279 | "person-walking-luggage": "e554",
2280 | "person-walking-with-cane": "f29d",
2281 | "peseta-sign": "e221",
2282 | "peso-sign": "e222",
2283 | "phone": "f095",
2284 | "phone-arrow-down-left": "e223",
2285 | "phone-arrow-right": "e5be",
2286 | "phone-arrow-up-right": "e224",
2287 | "phone-flip": "f879",
2288 | "phone-hangup": "e225",
2289 | "phone-intercom": "e434",
2290 | "phone-missed": "e226",
2291 | "phone-office": "f67d",
2292 | "phone-plus": "f4d2",
2293 | "phone-rotary": "f8d3",
2294 | "phone-slash": "f3dd",
2295 | "phone-volume": "f2a0",
2296 | "phone-xmark": "e227",
2297 | "photo-film": "f87c",
2298 | "photo-film-music": "e228",
2299 | "pi": "f67e",
2300 | "piano": "f8d4",
2301 | "piano-keyboard": "f8d5",
2302 | "pickaxe": "e5bf",
2303 | "pickleball": "e435",
2304 | "pie": "f705",
2305 | "pig": "f706",
2306 | "piggy-bank": "f4d3",
2307 | "pills": "f484",
2308 | "pinata": "e3c3",
2309 | "pinball": "e229",
2310 | "pineapple": "e31f",
2311 | "pipe": "7c",
2312 | "pipe-circle-check": "e436",
2313 | "pipe-collar": "e437",
2314 | "pipe-section": "e438",
2315 | "pipe-smoking": "e3c4",
2316 | "pipe-valve": "e439",
2317 | "pizza": "f817",
2318 | "pizza-slice": "f818",
2319 | "place-of-worship": "f67f",
2320 | "plane": "f072",
2321 | "plane-arrival": "f5af",
2322 | "plane-circle-check": "e555",
2323 | "plane-circle-exclamation": "e556",
2324 | "plane-circle-xmark": "e557",
2325 | "plane-departure": "f5b0",
2326 | "plane-engines": "f3de",
2327 | "plane-lock": "e558",
2328 | "plane-prop": "e22b",
2329 | "plane-slash": "e069",
2330 | "plane-tail": "e22c",
2331 | "plane-up": "e22d",
2332 | "plane-up-slash": "e22e",
2333 | "planet-moon": "e01f",
2334 | "planet-ringed": "e020",
2335 | "plant-wilt": "e5aa",
2336 | "plate-utensils": "e43b",
2337 | "plate-wheat": "e55a",
2338 | "play": "f04b",
2339 | "play-pause": "e22f",
2340 | "plug": "f1e6",
2341 | "plug-circle-bolt": "e55b",
2342 | "plug-circle-check": "e55c",
2343 | "plug-circle-exclamation": "e55d",
2344 | "plug-circle-minus": "e55e",
2345 | "plug-circle-plus": "e55f",
2346 | "plug-circle-xmark": "e560",
2347 | "plus": "2b",
2348 | "plus-large": "e59e",
2349 | "plus-minus": "e43c",
2350 | "podcast": "f2ce",
2351 | "podium": "f680",
2352 | "podium-star": "f758",
2353 | "police-box": "e021",
2354 | "poll-people": "f759",
2355 | "pompebled": "e43d",
2356 | "poo": "f2fe",
2357 | "poo-storm": "f75a",
2358 | "pool-8-ball": "e3c5",
2359 | "poop": "f619",
2360 | "popcorn": "f819",
2361 | "popsicle": "e43e",
2362 | "pot-food": "e43f",
2363 | "potato": "e440",
2364 | "power-off": "f011",
2365 | "prescription": "f5b1",
2366 | "prescription-bottle": "f485",
2367 | "prescription-bottle-medical": "f486",
2368 | "prescription-bottle-pill": "e5c0",
2369 | "presentation-screen": "f685",
2370 | "pretzel": "e441",
2371 | "print": "f02f",
2372 | "print-magnifying-glass": "f81a",
2373 | "print-slash": "f686",
2374 | "projector": "f8d6",
2375 | "pump": "e442",
2376 | "pump-medical": "e06a",
2377 | "pump-soap": "e06b",
2378 | "pumpkin": "f707",
2379 | "puzzle": "e443",
2380 | "puzzle-piece": "f12e",
2381 | "puzzle-piece-simple": "e231",
2382 | "q": "51",
2383 | "qrcode": "f029",
2384 | "question": "3f",
2385 | "quote-left": "f10d",
2386 | "quote-right": "f10e",
2387 | "quotes": "e234",
2388 | "r": "52",
2389 | "rabbit": "f708",
2390 | "rabbit-running": "f709",
2391 | "raccoon": "e613",
2392 | "racquet": "f45a",
2393 | "radar": "e024",
2394 | "radiation": "f7b9",
2395 | "radio": "f8d7",
2396 | "radio-tuner": "f8d8",
2397 | "rainbow": "f75b",
2398 | "raindrops": "f75c",
2399 | "ram": "f70a",
2400 | "ramp-loading": "f4d4",
2401 | "ranking-star": "e561",
2402 | "raygun": "e025",
2403 | "receipt": "f543",
2404 | "record-vinyl": "f8d9",
2405 | "rectangle": "f2fa",
2406 | "rectangle-ad": "f641",
2407 | "rectangle-barcode": "f463",
2408 | "rectangle-code": "e322",
2409 | "rectangle-history": "e4a2",
2410 | "rectangle-history-circle-plus": "e4a3",
2411 | "rectangle-history-circle-user": "e4a4",
2412 | "rectangle-list": "f022",
2413 | "rectangle-pro": "e235",
2414 | "rectangle-terminal": "e236",
2415 | "rectangle-vertical": "f2fb",
2416 | "rectangle-vertical-history": "e237",
2417 | "rectangle-wide": "f2fc",
2418 | "rectangle-xmark": "f410",
2419 | "rectangles-mixed": "e323",
2420 | "recycle": "f1b8",
2421 | "reel": "e238",
2422 | "reflect-both": "e66f",
2423 | "reflect-horizontal": "e664",
2424 | "reflect-vertical": "e665",
2425 | "refrigerator": "e026",
2426 | "registered": "f25d",
2427 | "repeat": "f363",
2428 | "repeat-1": "f365",
2429 | "reply": "f3e5",
2430 | "reply-all": "f122",
2431 | "reply-clock": "e239",
2432 | "republican": "f75e",
2433 | "restroom": "f7bd",
2434 | "restroom-simple": "e23a",
2435 | "retweet": "f079",
2436 | "rhombus": "e23b",
2437 | "ribbon": "f4d6",
2438 | "right": "f356",
2439 | "right-from-bracket": "f2f5",
2440 | "right-from-line": "f347",
2441 | "right-left": "f362",
2442 | "right-left-large": "e5e1",
2443 | "right-long": "f30b",
2444 | "right-long-to-line": "e444",
2445 | "right-to-bracket": "f2f6",
2446 | "right-to-line": "f34c",
2447 | "ring": "f70b",
2448 | "ring-diamond": "e5ab",
2449 | "rings-wedding": "f81b",
2450 | "road": "f018",
2451 | "road-barrier": "e562",
2452 | "road-bridge": "e563",
2453 | "road-circle-check": "e564",
2454 | "road-circle-exclamation": "e565",
2455 | "road-circle-xmark": "e566",
2456 | "road-lock": "e567",
2457 | "road-spikes": "e568",
2458 | "robot": "f544",
2459 | "robot-astromech": "e2d2",
2460 | "rocket": "f135",
2461 | "rocket-launch": "e027",
2462 | "roller-coaster": "e324",
2463 | "rotate": "f2f1",
2464 | "rotate-exclamation": "e23c",
2465 | "rotate-left": "f2ea",
2466 | "rotate-reverse": "e631",
2467 | "rotate-right": "f2f9",
2468 | "route": "f4d7",
2469 | "route-highway": "f61a",
2470 | "route-interstate": "f61b",
2471 | "router": "f8da",
2472 | "rss": "f09e",
2473 | "ruble-sign": "f158",
2474 | "rug": "e569",
2475 | "rugby-ball": "e3c6",
2476 | "ruler": "f545",
2477 | "ruler-combined": "f546",
2478 | "ruler-horizontal": "f547",
2479 | "ruler-triangle": "f61c",
2480 | "ruler-vertical": "f548",
2481 | "rupee-sign": "f156",
2482 | "rupiah-sign": "e23d",
2483 | "rv": "f7be",
2484 | "s": "53",
2485 | "sack": "f81c",
2486 | "sack-dollar": "f81d",
2487 | "sack-xmark": "e56a",
2488 | "sailboat": "e445",
2489 | "salad": "f81e",
2490 | "salt-shaker": "e446",
2491 | "sandwich": "f81f",
2492 | "satellite": "f7bf",
2493 | "satellite-dish": "f7c0",
2494 | "sausage": "f820",
2495 | "saxophone": "f8dc",
2496 | "saxophone-fire": "f8db",
2497 | "scale-balanced": "f24e",
2498 | "scale-unbalanced": "f515",
2499 | "scale-unbalanced-flip": "f516",
2500 | "scalpel": "f61d",
2501 | "scalpel-line-dashed": "f61e",
2502 | "scanner-gun": "f488",
2503 | "scanner-image": "f8f3",
2504 | "scanner-keyboard": "f489",
2505 | "scanner-touchscreen": "f48a",
2506 | "scarecrow": "f70d",
2507 | "scarf": "f7c1",
2508 | "school": "f549",
2509 | "school-circle-check": "e56b",
2510 | "school-circle-exclamation": "e56c",
2511 | "school-circle-xmark": "e56d",
2512 | "school-flag": "e56e",
2513 | "school-lock": "e56f",
2514 | "scissors": "f0c4",
2515 | "screen-users": "f63d",
2516 | "screencast": "e23e",
2517 | "screwdriver": "f54a",
2518 | "screwdriver-wrench": "f7d9",
2519 | "scribble": "e23f",
2520 | "scroll": "f70e",
2521 | "scroll-old": "f70f",
2522 | "scroll-torah": "f6a0",
2523 | "scrubber": "f2f8",
2524 | "scythe": "f710",
2525 | "sd-card": "f7c2",
2526 | "sd-cards": "e240",
2527 | "seal": "e241",
2528 | "seal-exclamation": "e242",
2529 | "seal-question": "e243",
2530 | "seat-airline": "e244",
2531 | "section": "e447",
2532 | "seedling": "f4d8",
2533 | "semicolon": "3b",
2534 | "send-back": "f87e",
2535 | "send-backward": "f87f",
2536 | "sensor": "e028",
2537 | "sensor-cloud": "e02c",
2538 | "sensor-fire": "e02a",
2539 | "sensor-on": "e02b",
2540 | "sensor-triangle-exclamation": "e029",
2541 | "server": "f233",
2542 | "shapes": "f61f",
2543 | "share": "f064",
2544 | "share-all": "f367",
2545 | "share-from-square": "f14d",
2546 | "share-nodes": "f1e0",
2547 | "sheep": "f711",
2548 | "sheet-plastic": "e571",
2549 | "shekel-sign": "f20b",
2550 | "shelves": "f480",
2551 | "shelves-empty": "e246",
2552 | "shield": "f132",
2553 | "shield-cat": "e572",
2554 | "shield-check": "f2f7",
2555 | "shield-cross": "f712",
2556 | "shield-dog": "e573",
2557 | "shield-exclamation": "e247",
2558 | "shield-halved": "f3ed",
2559 | "shield-heart": "e574",
2560 | "shield-keyhole": "e248",
2561 | "shield-minus": "e249",
2562 | "shield-plus": "e24a",
2563 | "shield-quartered": "e575",
2564 | "shield-slash": "e24b",
2565 | "shield-virus": "e06c",
2566 | "shield-xmark": "e24c",
2567 | "ship": "f21a",
2568 | "shirt": "f553",
2569 | "shirt-long-sleeve": "e3c7",
2570 | "shirt-running": "e3c8",
2571 | "shirt-tank-top": "e3c9",
2572 | "shish-kebab": "f821",
2573 | "shoe-prints": "f54b",
2574 | "shop": "f54f",
2575 | "shop-lock": "e4a5",
2576 | "shop-slash": "e070",
2577 | "shovel": "f713",
2578 | "shovel-snow": "f7c3",
2579 | "shower": "f2cc",
2580 | "shower-down": "e24d",
2581 | "shredder": "f68a",
2582 | "shrimp": "e448",
2583 | "shuffle": "f074",
2584 | "shutters": "e449",
2585 | "shuttle-space": "f197",
2586 | "shuttlecock": "f45b",
2587 | "sickle": "f822",
2588 | "sidebar": "e24e",
2589 | "sidebar-flip": "e24f",
2590 | "sigma": "f68b",
2591 | "sign-hanging": "f4d9",
2592 | "sign-post": "e624",
2593 | "sign-posts": "e625",
2594 | "sign-posts-wrench": "e626",
2595 | "signal": "f012",
2596 | "signal-bars": "f690",
2597 | "signal-bars-fair": "f692",
2598 | "signal-bars-good": "f693",
2599 | "signal-bars-slash": "f694",
2600 | "signal-bars-weak": "f691",
2601 | "signal-fair": "f68d",
2602 | "signal-good": "f68e",
2603 | "signal-slash": "f695",
2604 | "signal-stream": "f8dd",
2605 | "signal-stream-slash": "e250",
2606 | "signal-strong": "f68f",
2607 | "signal-weak": "f68c",
2608 | "signature": "f5b7",
2609 | "signature-lock": "e3ca",
2610 | "signature-slash": "e3cb",
2611 | "signs-post": "f277",
2612 | "sim-card": "f7c4",
2613 | "sim-cards": "e251",
2614 | "sink": "e06d",
2615 | "siren": "e02d",
2616 | "siren-on": "e02e",
2617 | "sitemap": "f0e8",
2618 | "skeleton": "f620",
2619 | "skeleton-ribs": "e5cb",
2620 | "ski-boot": "e3cc",
2621 | "ski-boot-ski": "e3cd",
2622 | "skull": "f54c",
2623 | "skull-cow": "f8de",
2624 | "skull-crossbones": "f714",
2625 | "slash": "f715",
2626 | "slash-back": "5c",
2627 | "slash-forward": "2f",
2628 | "sleigh": "f7cc",
2629 | "slider": "e252",
2630 | "sliders": "f1de",
2631 | "sliders-simple": "e253",
2632 | "sliders-up": "f3f1",
2633 | "slot-machine": "e3ce",
2634 | "smog": "f75f",
2635 | "smoke": "f760",
2636 | "smoking": "f48d",
2637 | "snake": "f716",
2638 | "snooze": "f880",
2639 | "snow-blowing": "f761",
2640 | "snowflake": "f2dc",
2641 | "snowflake-droplets": "e5c1",
2642 | "snowflakes": "f7cf",
2643 | "snowman": "f7d0",
2644 | "snowman-head": "f79b",
2645 | "snowplow": "f7d2",
2646 | "soap": "e06e",
2647 | "socks": "f696",
2648 | "soft-serve": "e400",
2649 | "solar-panel": "f5ba",
2650 | "solar-system": "e02f",
2651 | "sort": "f0dc",
2652 | "sort-down": "f0dd",
2653 | "sort-up": "f0de",
2654 | "spa": "f5bb",
2655 | "space-station-moon": "e033",
2656 | "space-station-moon-construction": "e034",
2657 | "spade": "f2f4",
2658 | "spaghetti-monster-flying": "f67b",
2659 | "sparkle": "e5d6",
2660 | "sparkles": "f890",
2661 | "speaker": "f8df",
2662 | "speakers": "f8e0",
2663 | "spell-check": "f891",
2664 | "spider": "f717",
2665 | "spider-black-widow": "f718",
2666 | "spider-web": "f719",
2667 | "spinner": "f110",
2668 | "spinner-scale": "e62a",
2669 | "spinner-third": "f3f4",
2670 | "split": "e254",
2671 | "splotch": "f5bc",
2672 | "spoon": "f2e5",
2673 | "sportsball": "e44b",
2674 | "spray-can": "f5bd",
2675 | "spray-can-sparkles": "f5d0",
2676 | "sprinkler": "e035",
2677 | "sprinkler-ceiling": "e44c",
2678 | "square": "f0c8",
2679 | "square-0": "e255",
2680 | "square-1": "e256",
2681 | "square-2": "e257",
2682 | "square-3": "e258",
2683 | "square-4": "e259",
2684 | "square-5": "e25a",
2685 | "square-6": "e25b",
2686 | "square-7": "e25c",
2687 | "square-8": "e25d",
2688 | "square-9": "e25e",
2689 | "square-a": "e25f",
2690 | "square-a-lock": "e44d",
2691 | "square-ampersand": "e260",
2692 | "square-arrow-down": "f339",
2693 | "square-arrow-down-left": "e261",
2694 | "square-arrow-down-right": "e262",
2695 | "square-arrow-left": "f33a",
2696 | "square-arrow-right": "f33b",
2697 | "square-arrow-up": "f33c",
2698 | "square-arrow-up-left": "e263",
2699 | "square-arrow-up-right": "f14c",
2700 | "square-b": "e264",
2701 | "square-bolt": "e265",
2702 | "square-c": "e266",
2703 | "square-caret-down": "f150",
2704 | "square-caret-left": "f191",
2705 | "square-caret-right": "f152",
2706 | "square-caret-up": "f151",
2707 | "square-check": "f14a",
2708 | "square-chevron-down": "f329",
2709 | "square-chevron-left": "f32a",
2710 | "square-chevron-right": "f32b",
2711 | "square-chevron-up": "f32c",
2712 | "square-code": "e267",
2713 | "square-d": "e268",
2714 | "square-dashed": "e269",
2715 | "square-dashed-circle-plus": "e5c2",
2716 | "square-divide": "e26a",
2717 | "square-dollar": "f2e9",
2718 | "square-down": "f350",
2719 | "square-down-left": "e26b",
2720 | "square-down-right": "e26c",
2721 | "square-e": "e26d",
2722 | "square-ellipsis": "e26e",
2723 | "square-ellipsis-vertical": "e26f",
2724 | "square-envelope": "f199",
2725 | "square-exclamation": "f321",
2726 | "square-f": "e270",
2727 | "square-fragile": "f49b",
2728 | "square-full": "f45c",
2729 | "square-g": "e271",
2730 | "square-h": "f0fd",
2731 | "square-heart": "f4c8",
2732 | "square-i": "e272",
2733 | "square-info": "f30f",
2734 | "square-j": "e273",
2735 | "square-k": "e274",
2736 | "square-kanban": "e488",
2737 | "square-l": "e275",
2738 | "square-left": "f351",
2739 | "square-list": "e489",
2740 | "square-m": "e276",
2741 | "square-minus": "f146",
2742 | "square-n": "e277",
2743 | "square-nfi": "e576",
2744 | "square-o": "e278",
2745 | "square-p": "e279",
2746 | "square-parking": "f540",
2747 | "square-parking-slash": "f617",
2748 | "square-pen": "f14b",
2749 | "square-person-confined": "e577",
2750 | "square-phone": "f098",
2751 | "square-phone-flip": "f87b",
2752 | "square-phone-hangup": "e27a",
2753 | "square-plus": "f0fe",
2754 | "square-poll-horizontal": "f682",
2755 | "square-poll-vertical": "f681",
2756 | "square-q": "e27b",
2757 | "square-quarters": "e44e",
2758 | "square-question": "f2fd",
2759 | "square-quote": "e329",
2760 | "square-r": "e27c",
2761 | "square-right": "f352",
2762 | "square-ring": "e44f",
2763 | "square-root": "f697",
2764 | "square-root-variable": "f698",
2765 | "square-rss": "f143",
2766 | "square-s": "e27d",
2767 | "square-share-nodes": "f1e1",
2768 | "square-sliders": "f3f0",
2769 | "square-sliders-vertical": "f3f2",
2770 | "square-small": "e27e",
2771 | "square-star": "e27f",
2772 | "square-t": "e280",
2773 | "square-terminal": "e32a",
2774 | "square-this-way-up": "f49f",
2775 | "square-u": "e281",
2776 | "square-up": "f353",
2777 | "square-up-left": "e282",
2778 | "square-up-right": "f360",
2779 | "square-user": "e283",
2780 | "square-v": "e284",
2781 | "square-virus": "e578",
2782 | "square-w": "e285",
2783 | "square-x": "e286",
2784 | "square-xmark": "f2d3",
2785 | "square-y": "e287",
2786 | "square-z": "e288",
2787 | "squid": "e450",
2788 | "squirrel": "f71a",
2789 | "staff": "f71b",
2790 | "staff-snake": "e579",
2791 | "stairs": "e289",
2792 | "stamp": "f5bf",
2793 | "standard-definition": "e28a",
2794 | "stapler": "e5af",
2795 | "star": "f005",
2796 | "star-and-crescent": "f699",
2797 | "star-christmas": "f7d4",
2798 | "star-exclamation": "f2f3",
2799 | "star-half": "f089",
2800 | "star-half-stroke": "f5c0",
2801 | "star-of-david": "f69a",
2802 | "star-of-life": "f621",
2803 | "star-sharp": "e28b",
2804 | "star-sharp-half": "e28c",
2805 | "star-sharp-half-stroke": "e28d",
2806 | "star-shooting": "e036",
2807 | "starfighter": "e037",
2808 | "starfighter-twin-ion-engine": "e038",
2809 | "starfighter-twin-ion-engine-advanced": "e28e",
2810 | "stars": "f762",
2811 | "starship": "e039",
2812 | "starship-freighter": "e03a",
2813 | "steak": "f824",
2814 | "steering-wheel": "f622",
2815 | "sterling-sign": "f154",
2816 | "stethoscope": "f0f1",
2817 | "stocking": "f7d5",
2818 | "stomach": "f623",
2819 | "stop": "f04d",
2820 | "stopwatch": "f2f2",
2821 | "stopwatch-20": "e06f",
2822 | "store": "f54e",
2823 | "store-lock": "e4a6",
2824 | "store-slash": "e071",
2825 | "strawberry": "e32b",
2826 | "street-view": "f21d",
2827 | "stretcher": "f825",
2828 | "strikethrough": "f0cc",
2829 | "stroopwafel": "f551",
2830 | "subscript": "f12c",
2831 | "subtitles": "e60f",
2832 | "subtitles-slash": "e610",
2833 | "suitcase": "f0f2",
2834 | "suitcase-medical": "f0fa",
2835 | "suitcase-rolling": "f5c1",
2836 | "sun": "f185",
2837 | "sun-bright": "e28f",
2838 | "sun-cloud": "f763",
2839 | "sun-dust": "f764",
2840 | "sun-haze": "f765",
2841 | "sun-plant-wilt": "e57a",
2842 | "sunglasses": "f892",
2843 | "sunrise": "f766",
2844 | "sunset": "f767",
2845 | "superscript": "f12b",
2846 | "sushi": "e48a",
2847 | "sushi-roll": "e48b",
2848 | "swap": "e609",
2849 | "swap-arrows": "e60a",
2850 | "swatchbook": "f5c3",
2851 | "sword": "f71c",
2852 | "sword-laser": "e03b",
2853 | "sword-laser-alt": "e03c",
2854 | "swords": "f71d",
2855 | "swords-laser": "e03d",
2856 | "symbols": "f86e",
2857 | "synagogue": "f69b",
2858 | "syringe": "f48e",
2859 | "t": "54",
2860 | "t-rex": "e629",
2861 | "table": "f0ce",
2862 | "table-cells": "f00a",
2863 | "table-cells-column-lock": "e678",
2864 | "table-cells-column-unlock": "e690",
2865 | "table-cells-large": "f009",
2866 | "table-cells-lock": "e679",
2867 | "table-cells-row-lock": "e67a",
2868 | "table-cells-row-unlock": "e691",
2869 | "table-cells-unlock": "e692",
2870 | "table-columns": "f0db",
2871 | "table-layout": "e290",
2872 | "table-list": "f00b",
2873 | "table-picnic": "e32d",
2874 | "table-pivot": "e291",
2875 | "table-rows": "e292",
2876 | "table-tennis-paddle-ball": "f45d",
2877 | "table-tree": "e293",
2878 | "tablet": "f3fb",
2879 | "tablet-button": "f10a",
2880 | "tablet-rugged": "f48f",
2881 | "tablet-screen": "f3fc",
2882 | "tablet-screen-button": "f3fa",
2883 | "tablets": "f490",
2884 | "tachograph-digital": "f566",
2885 | "taco": "f826",
2886 | "tag": "f02b",
2887 | "tags": "f02c",
2888 | "tally": "f69c",
2889 | "tally-1": "e294",
2890 | "tally-2": "e295",
2891 | "tally-3": "e296",
2892 | "tally-4": "e297",
2893 | "tamale": "e451",
2894 | "tank-water": "e452",
2895 | "tape": "f4db",
2896 | "tarp": "e57b",
2897 | "tarp-droplet": "e57c",
2898 | "taxi": "f1ba",
2899 | "taxi-bus": "e298",
2900 | "teddy-bear": "e3cf",
2901 | "teeth": "f62e",
2902 | "teeth-open": "f62f",
2903 | "telescope": "e03e",
2904 | "temperature-arrow-down": "e03f",
2905 | "temperature-arrow-up": "e040",
2906 | "temperature-empty": "f2cb",
2907 | "temperature-full": "f2c7",
2908 | "temperature-half": "f2c9",
2909 | "temperature-high": "f769",
2910 | "temperature-list": "e299",
2911 | "temperature-low": "f76b",
2912 | "temperature-quarter": "f2ca",
2913 | "temperature-snow": "f768",
2914 | "temperature-sun": "f76a",
2915 | "temperature-three-quarters": "f2c8",
2916 | "tenge-sign": "f7d7",
2917 | "tennis-ball": "f45e",
2918 | "tent": "e57d",
2919 | "tent-arrow-down-to-line": "e57e",
2920 | "tent-arrow-left-right": "e57f",
2921 | "tent-arrow-turn-left": "e580",
2922 | "tent-arrows-down": "e581",
2923 | "tent-double-peak": "e627",
2924 | "tents": "e582",
2925 | "terminal": "f120",
2926 | "text": "f893",
2927 | "text-height": "f034",
2928 | "text-size": "f894",
2929 | "text-slash": "f87d",
2930 | "text-width": "f035",
2931 | "thermometer": "f491",
2932 | "theta": "f69e",
2933 | "thought-bubble": "e32e",
2934 | "thumbs-down": "f165",
2935 | "thumbs-up": "f164",
2936 | "thumbtack": "f08d",
2937 | "thumbtack-slash": "e68f",
2938 | "tick": "e32f",
2939 | "ticket": "f145",
2940 | "ticket-airline": "e29a",
2941 | "ticket-perforated": "e63e",
2942 | "ticket-simple": "f3ff",
2943 | "tickets": "e658",
2944 | "tickets-airline": "e29b",
2945 | "tickets-perforated": "e63f",
2946 | "tickets-simple": "e659",
2947 | "tilde": "7e",
2948 | "timeline": "e29c",
2949 | "timeline-arrow": "e29d",
2950 | "timer": "e29e",
2951 | "tire": "f631",
2952 | "tire-flat": "f632",
2953 | "tire-pressure-warning": "f633",
2954 | "tire-rugged": "f634",
2955 | "toggle-large-off": "e5b0",
2956 | "toggle-large-on": "e5b1",
2957 | "toggle-off": "f204",
2958 | "toggle-on": "f205",
2959 | "toilet": "f7d8",
2960 | "toilet-paper": "f71e",
2961 | "toilet-paper-blank": "f71f",
2962 | "toilet-paper-blank-under": "e29f",
2963 | "toilet-paper-check": "e5b2",
2964 | "toilet-paper-slash": "e072",
2965 | "toilet-paper-under": "e2a0",
2966 | "toilet-paper-under-slash": "e2a1",
2967 | "toilet-paper-xmark": "e5b3",
2968 | "toilet-portable": "e583",
2969 | "toilets-portable": "e584",
2970 | "tomato": "e330",
2971 | "tombstone": "f720",
2972 | "tombstone-blank": "f721",
2973 | "toolbox": "f552",
2974 | "tooth": "f5c9",
2975 | "toothbrush": "f635",
2976 | "torii-gate": "f6a1",
2977 | "tornado": "f76f",
2978 | "tower-broadcast": "f519",
2979 | "tower-cell": "e585",
2980 | "tower-control": "e2a2",
2981 | "tower-observation": "e586",
2982 | "tractor": "f722",
2983 | "trademark": "f25c",
2984 | "traffic-cone": "f636",
2985 | "traffic-light": "f637",
2986 | "traffic-light-go": "f638",
2987 | "traffic-light-slow": "f639",
2988 | "traffic-light-stop": "f63a",
2989 | "trailer": "e041",
2990 | "train": "f238",
2991 | "train-subway": "f239",
2992 | "train-subway-tunnel": "e2a3",
2993 | "train-track": "e453",
2994 | "train-tram": "e5b4",
2995 | "train-tunnel": "e454",
2996 | "transformer-bolt": "e2a4",
2997 | "transgender": "f225",
2998 | "transporter": "e042",
2999 | "transporter-1": "e043",
3000 | "transporter-2": "e044",
3001 | "transporter-3": "e045",
3002 | "transporter-4": "e2a5",
3003 | "transporter-5": "e2a6",
3004 | "transporter-6": "e2a7",
3005 | "transporter-7": "e2a8",
3006 | "transporter-empty": "e046",
3007 | "trash": "f1f8",
3008 | "trash-arrow-up": "f829",
3009 | "trash-can": "f2ed",
3010 | "trash-can-arrow-up": "f82a",
3011 | "trash-can-check": "e2a9",
3012 | "trash-can-clock": "e2aa",
3013 | "trash-can-list": "e2ab",
3014 | "trash-can-plus": "e2ac",
3015 | "trash-can-slash": "e2ad",
3016 | "trash-can-undo": "f896",
3017 | "trash-can-xmark": "e2ae",
3018 | "trash-check": "e2af",
3019 | "trash-clock": "e2b0",
3020 | "trash-list": "e2b1",
3021 | "trash-plus": "e2b2",
3022 | "trash-slash": "e2b3",
3023 | "trash-undo": "f895",
3024 | "trash-xmark": "e2b4",
3025 | "treasure-chest": "f723",
3026 | "tree": "f1bb",
3027 | "tree-christmas": "f7db",
3028 | "tree-city": "e587",
3029 | "tree-deciduous": "f400",
3030 | "tree-decorated": "f7dc",
3031 | "tree-large": "f7dd",
3032 | "tree-palm": "f82b",
3033 | "trees": "f724",
3034 | "triangle": "f2ec",
3035 | "triangle-exclamation": "f071",
3036 | "triangle-instrument": "f8e2",
3037 | "triangle-person-digging": "f85d",
3038 | "tricycle": "e5c3",
3039 | "tricycle-adult": "e5c4",
3040 | "trillium": "e588",
3041 | "trophy": "f091",
3042 | "trophy-star": "f2eb",
3043 | "trowel": "e589",
3044 | "trowel-bricks": "e58a",
3045 | "truck": "f0d1",
3046 | "truck-arrow-right": "e58b",
3047 | "truck-bolt": "e3d0",
3048 | "truck-clock": "f48c",
3049 | "truck-container": "f4dc",
3050 | "truck-container-empty": "e2b5",
3051 | "truck-droplet": "e58c",
3052 | "truck-fast": "f48b",
3053 | "truck-field": "e58d",
3054 | "truck-field-un": "e58e",
3055 | "truck-fire": "e65a",
3056 | "truck-flatbed": "e2b6",
3057 | "truck-front": "e2b7",
3058 | "truck-ladder": "e657",
3059 | "truck-medical": "f0f9",
3060 | "truck-monster": "f63b",
3061 | "truck-moving": "f4df",
3062 | "truck-pickup": "f63c",
3063 | "truck-plane": "e58f",
3064 | "truck-plow": "f7de",
3065 | "truck-ramp": "f4e0",
3066 | "truck-ramp-box": "f4de",
3067 | "truck-ramp-couch": "f4dd",
3068 | "truck-tow": "e2b8",
3069 | "truck-utensils": "e628",
3070 | "trumpet": "f8e3",
3071 | "tty": "f1e4",
3072 | "tty-answer": "e2b9",
3073 | "tugrik-sign": "e2ba",
3074 | "turkey": "f725",
3075 | "turkish-lira-sign": "e2bb",
3076 | "turn-down": "f3be",
3077 | "turn-down-left": "e331",
3078 | "turn-down-right": "e455",
3079 | "turn-left": "e636",
3080 | "turn-left-down": "e637",
3081 | "turn-left-up": "e638",
3082 | "turn-right": "e639",
3083 | "turn-up": "f3bf",
3084 | "turntable": "f8e4",
3085 | "turtle": "f726",
3086 | "tv": "f26c",
3087 | "tv-music": "f8e6",
3088 | "tv-retro": "f401",
3089 | "typewriter": "f8e7",
3090 | "u": "55",
3091 | "ufo": "e047",
3092 | "ufo-beam": "e048",
3093 | "umbrella": "f0e9",
3094 | "umbrella-beach": "f5ca",
3095 | "umbrella-simple": "e2bc",
3096 | "underline": "f0cd",
3097 | "unicorn": "f727",
3098 | "uniform-martial-arts": "e3d1",
3099 | "union": "f6a2",
3100 | "universal-access": "f29a",
3101 | "unlock": "f09c",
3102 | "unlock-keyhole": "f13e",
3103 | "up": "f357",
3104 | "up-down": "f338",
3105 | "up-down-left-right": "f0b2",
3106 | "up-from-bracket": "e590",
3107 | "up-from-dotted-line": "e456",
3108 | "up-from-line": "f346",
3109 | "up-left": "e2bd",
3110 | "up-long": "f30c",
3111 | "up-right": "e2be",
3112 | "up-right-and-down-left-from-center": "f424",
3113 | "up-right-from-square": "f35d",
3114 | "up-to-bracket": "e66e",
3115 | "up-to-dotted-line": "e457",
3116 | "up-to-line": "f34d",
3117 | "upload": "f093",
3118 | "usb-drive": "f8e9",
3119 | "user": "f007",
3120 | "user-alien": "e04a",
3121 | "user-astronaut": "f4fb",
3122 | "user-beard-bolt": "e689",
3123 | "user-bounty-hunter": "e2bf",
3124 | "user-check": "f4fc",
3125 | "user-chef": "e3d2",
3126 | "user-clock": "f4fd",
3127 | "user-cowboy": "f8ea",
3128 | "user-crown": "f6a4",
3129 | "user-doctor": "f0f0",
3130 | "user-doctor-hair": "e458",
3131 | "user-doctor-hair-long": "e459",
3132 | "user-doctor-message": "f82e",
3133 | "user-gear": "f4fe",
3134 | "user-graduate": "f501",
3135 | "user-group": "f500",
3136 | "user-group-crown": "f6a5",
3137 | "user-group-simple": "e603",
3138 | "user-hair": "e45a",
3139 | "user-hair-buns": "e3d3",
3140 | "user-hair-long": "e45b",
3141 | "user-hair-mullet": "e45c",
3142 | "user-headset": "f82d",
3143 | "user-helmet-safety": "f82c",
3144 | "user-hoodie": "e68a",
3145 | "user-injured": "f728",
3146 | "user-large": "f406",
3147 | "user-large-slash": "f4fa",
3148 | "user-lock": "f502",
3149 | "user-magnifying-glass": "e5c5",
3150 | "user-minus": "f503",
3151 | "user-music": "f8eb",
3152 | "user-ninja": "f504",
3153 | "user-nurse": "f82f",
3154 | "user-nurse-hair": "e45d",
3155 | "user-nurse-hair-long": "e45e",
3156 | "user-pen": "f4ff",
3157 | "user-pilot": "e2c0",
3158 | "user-pilot-tie": "e2c1",
3159 | "user-plus": "f234",
3160 | "user-police": "e333",
3161 | "user-police-tie": "e334",
3162 | "user-robot": "e04b",
3163 | "user-robot-xmarks": "e4a7",
3164 | "user-secret": "f21b",
3165 | "user-shakespeare": "e2c2",
3166 | "user-shield": "f505",
3167 | "user-slash": "f506",
3168 | "user-tag": "f507",
3169 | "user-tie": "f508",
3170 | "user-tie-hair": "e45f",
3171 | "user-tie-hair-long": "e460",
3172 | "user-unlock": "e058",
3173 | "user-visor": "e04c",
3174 | "user-vneck": "e461",
3175 | "user-vneck-hair": "e462",
3176 | "user-vneck-hair-long": "e463",
3177 | "user-xmark": "f235",
3178 | "users": "f0c0",
3179 | "users-between-lines": "e591",
3180 | "users-gear": "f509",
3181 | "users-line": "e592",
3182 | "users-medical": "f830",
3183 | "users-rays": "e593",
3184 | "users-rectangle": "e594",
3185 | "users-slash": "e073",
3186 | "users-viewfinder": "e595",
3187 | "utensils": "f2e7",
3188 | "utensils-slash": "e464",
3189 | "utility-pole": "e2c3",
3190 | "utility-pole-double": "e2c4",
3191 | "v": "56",
3192 | "vacuum": "e04d",
3193 | "vacuum-robot": "e04e",
3194 | "value-absolute": "f6a6",
3195 | "van-shuttle": "f5b6",
3196 | "vault": "e2c5",
3197 | "vector-circle": "e2c6",
3198 | "vector-polygon": "e2c7",
3199 | "vector-square": "f5cb",
3200 | "vent-damper": "e465",
3201 | "venus": "f221",
3202 | "venus-double": "f226",
3203 | "venus-mars": "f228",
3204 | "vest": "e085",
3205 | "vest-patches": "e086",
3206 | "vial": "f492",
3207 | "vial-circle-check": "e596",
3208 | "vial-virus": "e597",
3209 | "vials": "f493",
3210 | "video": "f03d",
3211 | "video-arrow-down-left": "e2c8",
3212 | "video-arrow-up-right": "e2c9",
3213 | "video-plus": "f4e1",
3214 | "video-slash": "f4e2",
3215 | "vihara": "f6a7",
3216 | "violin": "f8ed",
3217 | "virus": "e074",
3218 | "virus-covid": "e4a8",
3219 | "virus-covid-slash": "e4a9",
3220 | "virus-slash": "e075",
3221 | "viruses": "e076",
3222 | "voicemail": "f897",
3223 | "volcano": "f770",
3224 | "volleyball": "f45f",
3225 | "volume": "f6a8",
3226 | "volume-high": "f028",
3227 | "volume-low": "f027",
3228 | "volume-off": "f026",
3229 | "volume-slash": "f2e2",
3230 | "volume-xmark": "f6a9",
3231 | "vr-cardboard": "f729",
3232 | "w": "57",
3233 | "waffle": "e466",
3234 | "wagon-covered": "f8ee",
3235 | "walker": "f831",
3236 | "walkie-talkie": "f8ef",
3237 | "wallet": "f555",
3238 | "wand": "f72a",
3239 | "wand-magic": "f0d0",
3240 | "wand-magic-sparkles": "e2ca",
3241 | "wand-sparkles": "f72b",
3242 | "warehouse": "f494",
3243 | "warehouse-full": "f495",
3244 | "washing-machine": "f898",
3245 | "watch": "f2e1",
3246 | "watch-apple": "e2cb",
3247 | "watch-calculator": "f8f0",
3248 | "watch-fitness": "f63e",
3249 | "watch-smart": "e2cc",
3250 | "water": "f773",
3251 | "water-arrow-down": "f774",
3252 | "water-arrow-up": "f775",
3253 | "water-ladder": "f5c5",
3254 | "watermelon-slice": "e337",
3255 | "wave": "e65b",
3256 | "wave-pulse": "f5f8",
3257 | "wave-sine": "f899",
3258 | "wave-square": "f83e",
3259 | "wave-triangle": "f89a",
3260 | "waveform": "f8f1",
3261 | "waveform-lines": "f8f2",
3262 | "waves-sine": "e65d",
3263 | "web-awesome": "e682",
3264 | "webhook": "e5d5",
3265 | "weight-hanging": "f5cd",
3266 | "weight-scale": "f496",
3267 | "whale": "f72c",
3268 | "wheat": "f72d",
3269 | "wheat-awn": "e2cd",
3270 | "wheat-awn-circle-exclamation": "e598",
3271 | "wheat-awn-slash": "e338",
3272 | "wheat-slash": "e339",
3273 | "wheelchair": "f193",
3274 | "wheelchair-move": "e2ce",
3275 | "whiskey-glass": "f7a0",
3276 | "whiskey-glass-ice": "f7a1",
3277 | "whistle": "f460",
3278 | "wifi": "f1eb",
3279 | "wifi-exclamation": "e2cf",
3280 | "wifi-fair": "f6ab",
3281 | "wifi-slash": "f6ac",
3282 | "wifi-weak": "f6aa",
3283 | "wind": "f72e",
3284 | "wind-turbine": "f89b",
3285 | "wind-warning": "f776",
3286 | "window": "f40e",
3287 | "window-flip": "f40f",
3288 | "window-frame": "e04f",
3289 | "window-frame-open": "e050",
3290 | "window-maximize": "f2d0",
3291 | "window-minimize": "f2d1",
3292 | "window-restore": "f2d2",
3293 | "windsock": "f777",
3294 | "wine-bottle": "f72f",
3295 | "wine-glass": "f4e3",
3296 | "wine-glass-crack": "f4bb",
3297 | "wine-glass-empty": "f5ce",
3298 | "won-sign": "f159",
3299 | "worm": "e599",
3300 | "wreath": "f7e2",
3301 | "wreath-laurel": "e5d2",
3302 | "wrench": "f0ad",
3303 | "wrench-simple": "e2d1",
3304 | "x": "58",
3305 | "x-ray": "f497",
3306 | "xmark": "f00d",
3307 | "xmark-large": "e59b",
3308 | "xmark-to-slot": "f771",
3309 | "xmarks-lines": "e59a",
3310 | "y": "59",
3311 | "yen-sign": "f157",
3312 | "yin-yang": "f6ad",
3313 | "z": "5a"
3314 | }
3315 |
--------------------------------------------------------------------------------
/public/supacon.svg:
--------------------------------------------------------------------------------
1 |
7 |
8 |
13 |
18 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/styles/Footer.module.css:
--------------------------------------------------------------------------------
1 | .footer {
2 | width: 100%;
3 | padding: 3rem 0;
4 | margin-top: 1rem;
5 | display: flex;
6 | align-items: center;
7 | justify-content: space-between;
8 | }
9 |
10 | .footer svg {
11 | --size: 1.6rem;
12 | width: var(--size);
13 | height: var(--size);
14 | fill: var(--text);
15 | }
16 | .footer span {
17 | font-size: 1.2rem;
18 | display: flex;
19 | align-items: center;
20 | gap: 1rem;
21 | opacity: 0.94;
22 | text-shadow: 0 0 2px #1e3b8a42;
23 | }
24 | .footer span .brand {
25 | display: flex;
26 | align-items: center;
27 | gap: 1rem;
28 | }
29 | .footer span a:nth-of-type(2) {
30 | text-shadow: none;
31 | font-size: 0.8rem;
32 | font-weight: 500;
33 | }
34 |
35 | .social {
36 | display: flex;
37 | gap: 1rem;
38 | }
39 | .social a svg {
40 | --size: 1rem;
41 | width: var(--size);
42 | height: var(--size);
43 | }
44 |
45 | .credits {
46 | display: flex;
47 | font-size: 0.7rem;
48 | font-weight: 500;
49 | justify-content: center;
50 | padding: 0.6rem 0;
51 | }
52 | .credits a {
53 | font-weight: 600;
54 | }
55 |
56 | @media only screen and (max-width: 800px) {
57 | .footer span .brand p {
58 | display: none;
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/styles/Icon.module.css:
--------------------------------------------------------------------------------
1 | .icon {
2 | padding: 0.5rem;
3 | border-radius: 0.5rem;
4 | border: 0.12rem solid #1e3b8a3b;
5 | flex-grow: 1;
6 | width: clamp(150px, 10vw, 200px);
7 | cursor: pointer;
8 | background-position: center;
9 | transition: background 0.5s;
10 | }
11 | .icon:hover {
12 | background: #eef2fc radial-gradient(circle, transparent 1%, #eef2fc 1%) center/15000%;
13 | }
14 | .icon:active {
15 | background-color: #ccdaff;
16 | background-size: 100%;
17 | transition: background 0s;
18 | }
19 |
20 | .font_icon {
21 | padding: 1rem;
22 | display: flow-root;
23 | text-align: center;
24 | opacity: 0.85;
25 | }
26 | .font_icon i {
27 | font-size: 2rem;
28 | color: #162961;
29 | }
30 |
31 | .name {
32 | display: flex;
33 | justify-content: center;
34 | text-align: center;
35 | margin-top: 1rem;
36 | font-weight: 500;
37 | }
38 |
--------------------------------------------------------------------------------
/styles/Loading.module.css:
--------------------------------------------------------------------------------
1 | .loader {
2 | --size: 10rem;
3 | display: inline-block;
4 | position: relative;
5 | width: var(--size);
6 | height: var(--size);
7 | }
8 | .loader div {
9 | box-sizing: border-box;
10 | display: block;
11 | position: absolute;
12 | width: var(--size);
13 | height: var(--size);
14 | margin: 8px;
15 | border: 1rem solid var(--text);
16 | border-radius: 50%;
17 | animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
18 | border-color: var(--text) transparent transparent transparent;
19 | }
20 | .loader div:nth-child(1) {
21 | animation-delay: -0.45s;
22 | }
23 | .loader div:nth-child(2) {
24 | animation-delay: -0.3s;
25 | }
26 | .loader div:nth-child(3) {
27 | animation-delay: -0.15s;
28 | }
29 | @keyframes loader {
30 | 0% {
31 | transform: rotate(0deg);
32 | }
33 | 100% {
34 | transform: rotate(360deg);
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/styles/Navbar.module.css:
--------------------------------------------------------------------------------
1 | .navbar {
2 | width: 100%;
3 | padding: 1.4rem 0;
4 | display: flex;
5 | align-items: center;
6 | justify-content: space-between;
7 | }
8 | .navbar svg {
9 | --size: 3rem;
10 | width: var(--size);
11 | height: var(--size);
12 | fill: var(--text);
13 | }
14 | .navbar a {
15 | font-size: 2rem;
16 | display: flex;
17 | align-items: center;
18 | gap: 1rem;
19 | opacity: 0.94;
20 | text-shadow: 0 0 2px #1e3b8a42;
21 | user-select: none;
22 | }
23 |
24 | .links {
25 | display: flex;
26 | align-items: center;
27 | gap: 2rem;
28 | }
29 | .links a {
30 | display: flex;
31 | align-items: center;
32 | transition: opacity var(--time);
33 | }
34 | .links a:hover {
35 | opacity: 0.7;
36 | }
37 | .links a span {
38 | font-size: 1rem;
39 | margin-left: -0.5rem;
40 | }
41 | .links a svg {
42 | --size: 1.6rem;
43 | width: var(--size);
44 | height: var(--size);
45 | color: var(--text);
46 | }
47 | .links a:nth-of-type(2) svg {
48 | fill: none;
49 | }
50 | .links a:last-of-type svg {
51 | --size: 1.3rem;
52 | }
53 |
54 | .header {
55 | width: 100%;
56 | padding: 4rem 0;
57 | height: 40vh;
58 | display: flex;
59 | flex-direction: column;
60 | justify-content: center;
61 | position: relative;
62 | overflow: hidden;
63 | z-index: 1;
64 | user-select: none;
65 | }
66 |
67 | .header h1 {
68 | font-size: 2.8rem;
69 | display: flex;
70 | flex-direction: column;
71 | font-weight: 700;
72 | }
73 | .header h1 span:nth-of-type(2) {
74 | font-size: 3rem;
75 | opacity: 0.7;
76 | }
77 | .header h1 span:nth-of-type(3) {
78 | font-size: 1.6rem;
79 | margin-top: 0.5rem;
80 | font-weight: 500;
81 | }
82 | .header::before {
83 | content: '';
84 | width: 400px;
85 | height: 400px;
86 | position: absolute;
87 | display: block;
88 | bottom: 0;
89 | right: 10%;
90 | background-color: rgba(255, 255, 255, 0.377);
91 | mask-image: url('/supacon.svg');
92 | background-size: 100%;
93 | background-repeat: no-repeat;
94 | transform: rotateZ(30deg);
95 | z-index: -1;
96 | }
97 |
98 | .stats {
99 | margin-top: 2rem;
100 | display: flex;
101 | align-items: center;
102 | gap: 3rem;
103 | }
104 | .stats span {
105 | display: flex;
106 | gap: 0.5rem;
107 | align-items: center;
108 | }
109 | .stats span svg {
110 | --size: 1.6rem;
111 | min-width: var(--size);
112 | height: var(--size);
113 | max-width: var(--size);
114 | color: var(--text);
115 | opacity: 0.6;
116 | }
117 |
118 | @media only screen and (max-width: 400px) {
119 | .navbar a span {
120 | display: none;
121 | }
122 | }
123 |
124 | @media only screen and (max-width: 800px) {
125 | .navbar {
126 | padding: 0.6rem 0;
127 | }
128 | .navbar a {
129 | font-size: 1.6rem;
130 | }
131 | .navbar svg {
132 | --size: 2.2rem;
133 | }
134 |
135 | .links {
136 | gap: 1rem;
137 | }
138 | .links a:hover {
139 | opacity: initial;
140 | }
141 | .links a:active {
142 | opacity: 0.7;
143 | }
144 | .links a span {
145 | display: none;
146 | }
147 |
148 | .stats {
149 | flex-direction: column;
150 | gap: 0.5rem;
151 | }
152 | .stats span {
153 | font-size: 0.8rem;
154 | }
155 | .stats span svg {
156 | --size: 1.2rem;
157 | }
158 | }
159 |
160 | @media only screen and (max-width: 1100px) {
161 | .header {
162 | padding: 2rem;
163 | align-items: center;
164 | text-align: center;
165 | }
166 | .header h1 {
167 | font-size: 1.6rem;
168 | }
169 | .header h1 span:nth-of-type(2) {
170 | font-size: 2rem;
171 | }
172 | .header h1 span:last-of-type {
173 | font-size: 1rem;
174 | }
175 | .header::before {
176 | left: 10%;
177 | width: 200px;
178 | height: 200px;
179 | }
180 | }
181 |
--------------------------------------------------------------------------------
/styles/Search.module.css:
--------------------------------------------------------------------------------
1 | .search {
2 | width: 100%;
3 | padding: 1.5rem 0;
4 | font-weight: 500;
5 | display: flex;
6 | align-items: center;
7 | }
8 |
9 | .search svg {
10 | --size: 2rem;
11 | width: var(--size);
12 | height: var(--size);
13 | }
14 |
15 | .search input {
16 | margin-left: 1.4rem;
17 | color: var(--text);
18 | height: 100%;
19 | font-size: 1.2rem;
20 | width: 100%;
21 | outline: none;
22 | border: none;
23 | font-weight: 500;
24 | }
25 | .search ::placeholder {
26 | color: var(--text);
27 | opacity: 0.5;
28 | }
29 |
30 | @media only screen and (max-width: 800px) {
31 | .search {
32 | padding: 1rem 0;
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/styles/globals.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=Lexend:wght@500;600;700&display=swap');
2 |
3 | :root {
4 | font-size: 16px;
5 | --text: #1e3a8a;
6 | --bg: linear-gradient(60deg, #ffde00 20%, #ffe200 100%);
7 | --bg-alt: #ffd700;
8 | --time: 200ms;
9 | }
10 |
11 | * {
12 | margin: 0;
13 | padding: 0;
14 | box-sizing: border-box;
15 | font-family: 'Lexend', sans-serif;
16 | -webkit-tap-highlight-color: transparent;
17 | }
18 |
19 | body {
20 | width: 100%;
21 | position: relative;
22 | font-weight: 600;
23 | }
24 |
25 | a {
26 | all: unset;
27 | display: block;
28 | cursor: pointer;
29 | color: inherit;
30 | }
31 |
32 | .container {
33 | width: 100%;
34 | color: var(--text);
35 | }
36 |
37 | .wrapper {
38 | width: 92%;
39 | margin: 0 auto;
40 | }
41 |
42 | .break {
43 | width: 100%;
44 | height: 2px;
45 | background-color: var(--bg-alt);
46 | }
47 |
48 | .rule {
49 | width: 2px;
50 | height: 2rem;
51 | background-color: var(--bg-alt);
52 | }
53 |
54 | .badge {
55 | padding: 1px 6px;
56 | pointer-events: none;
57 | border-radius: 3px;
58 | background-color: #1e3b8a63;
59 | font-weight: 700;
60 | }
61 | .badge sup {
62 | font-weight: 100;
63 | font-size: 10px;
64 | }
65 |
66 | .copy-toaster {
67 | position: fixed;
68 | bottom: 2rem;
69 | left: 50%;
70 | font-size: 1.2rem;
71 | font-weight: 700;
72 | transform: translateX(-50%);
73 | background: var(--bg);
74 | border-radius: 0.4rem;
75 | border: 0.2rem solid var(--bg-alt);
76 | padding: 0.4rem 1rem;
77 | }
78 |
79 | @media only screen and (max-width: 800px) {
80 | .copy-toaster {
81 | font-size: 0.9rem;
82 | }
83 | }
84 |
--------------------------------------------------------------------------------
/styles/index.module.css:
--------------------------------------------------------------------------------
1 | .icons {
2 | width: 100%;
3 | margin-top: 2rem;
4 | display: flex;
5 | justify-content: space-between;
6 | flex-wrap: wrap;
7 | gap: 1rem;
8 | }
9 |
10 | .notfound {
11 | width: 100%;
12 | place-items: center;
13 | text-align: center;
14 | }
15 | .notfound svg {
16 | --size: 14rem;
17 | width: var(--size);
18 | height: var(--size);
19 | }
20 | .notfound h1 {
21 | font-size: 5rem;
22 | opacity: 0.4;
23 | font-weight: 700;
24 | }
25 | .notfound h3 {
26 | font-size: 3rem;
27 | }
28 | .notfound span {
29 | display: inline;
30 | margin-top: 1rem;
31 | font-weight: 500;
32 | font-size: 1.2rem;
33 | }
34 | .notfound span a {
35 | display: inline;
36 | font-weight: 600;
37 | }
38 |
39 | @media only screen and (max-width: 800px) {
40 | .icons {
41 | grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/supacons.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/poseidon-code/supacons/f3b8ed2819fd7586ac10d48ea19c1775b240524f/supacons.jpg
--------------------------------------------------------------------------------