purgetss 3.0.4 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +1 -1
- package/README.md +3 -3
- package/assets/fonts/bootstrap-icons.ttf +0 -0
- package/assets/fonts/tabler-icons.ttf +0 -0
- package/assets/images/blend-modes.png +0 -0
- package/assets/images/shadow.png +0 -0
- package/bin/purgetss +6 -5
- package/dist/bootstrapicons.js +1714 -0
- package/dist/bootstrapicons.tss +1692 -0
- package/dist/tablericons.js +95 -1
- package/dist/tablericons.tss +94 -0
- package/dist/tailwind.tss +3242 -411
- package/docs/configuring-guide.md +18 -5
- package/docs/glossary.md +3 -4
- package/docs/new-glossary.md +8313 -0
- package/docs/whats-new/v2.5.0.md +6 -6
- package/docs/whats-new/v3.0.4.md +7 -6
- package/docs/whats-new/v3.0.5.md +136 -0
- package/docs/whats-new/v3.1.0.md +614 -0
- package/docs/whats-new/v3.1.1.md +262 -0
- package/index.js +397 -246
- package/lib/build-bootstrap-icons-js.js +64 -0
- package/lib/build-bootstrap-icons-tss.js +50 -0
- package/lib/build-fonts-folder.js +7 -0
- package/lib/build-tailwind.js +78 -16
- package/lib/helpers.js +2027 -764
- package/lib/templates/bootstrap-icons/bootstrap-icons.css +1705 -0
- package/lib/templates/bootstrap-icons/bootstrap-icons.ttf +0 -0
- package/lib/templates/bootstrap-icons/reset.tss +6 -0
- package/lib/templates/bootstrap-icons/template.js +4 -0
- package/lib/templates/bootstrap-icons/template.tss +2 -0
- package/lib/templates/custom-template.tss +1 -1
- package/lib/templates/tablericons/template.js +1 -1
- package/lib/templates/tailwind/custom-template.tss +1 -1
- package/lib/templates/tailwind/template.tss +1 -1
- package/lib/test-function.js +9 -0
- package/package.json +8 -5
- package/purgetss.config.js +950 -0
|
@@ -0,0 +1,1714 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Bootstrap Icons v1.8.0 - https://icons.getbootstrap.com
|
|
3
|
+
* License - https://github.com/twbs/icons/blob/main/LICENSE.md
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
exports.getIcon = function getIcon(selector) {
|
|
7
|
+
if (selector === undefined) throw new Error('Selector missing!');
|
|
8
|
+
return (icons[selector] !== undefined) ? icons[selector] : fontawesome[selector];
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
exports.setTitle = function setTitle(selector, object) {
|
|
12
|
+
if (selector === undefined || object === undefined) throw new Error('Selector or target Object missing!');
|
|
13
|
+
object.title = (icons[selector] !== undefined) ? icons[selector] : fontawesome[selector];
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
exports.setText = function setText(selector, object) {
|
|
17
|
+
if (selector === undefined || object === undefined) throw new Error('Selector or target Object missing!');
|
|
18
|
+
object.text = (icons[selector] !== undefined) ? icons[selector] : fontawesome[selector];
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
exports.getRandomKey = function getRandomKey() {
|
|
22
|
+
return Object.keys(icons)[Math.floor(Math.random() * Object.keys(icons).length)];
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
exports.getRandomValue = function getRandomValue() {
|
|
26
|
+
return icons[Object.keys(icons)[Math.floor(Math.random() * Object.keys(icons).length)]];
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const icons = {
|
|
30
|
+
'123': '\uf67f',
|
|
31
|
+
'alarmFill': '\uf101',
|
|
32
|
+
'alarm': '\uf102',
|
|
33
|
+
'alignBottom': '\uf103',
|
|
34
|
+
'alignCenter': '\uf104',
|
|
35
|
+
'alignEnd': '\uf105',
|
|
36
|
+
'alignMiddle': '\uf106',
|
|
37
|
+
'alignStart': '\uf107',
|
|
38
|
+
'alignTop': '\uf108',
|
|
39
|
+
'alt': '\uf109',
|
|
40
|
+
'appIndicator': '\uf10a',
|
|
41
|
+
'app': '\uf10b',
|
|
42
|
+
'archiveFill': '\uf10c',
|
|
43
|
+
'archive': '\uf10d',
|
|
44
|
+
'arrow90degDown': '\uf10e',
|
|
45
|
+
'arrow90degLeft': '\uf10f',
|
|
46
|
+
'arrow90degRight': '\uf110',
|
|
47
|
+
'arrow90degUp': '\uf111',
|
|
48
|
+
'arrowBarDown': '\uf112',
|
|
49
|
+
'arrowBarLeft': '\uf113',
|
|
50
|
+
'arrowBarRight': '\uf114',
|
|
51
|
+
'arrowBarUp': '\uf115',
|
|
52
|
+
'arrowClockwise': '\uf116',
|
|
53
|
+
'arrowCounterclockwise': '\uf117',
|
|
54
|
+
'arrowDownCircleFill': '\uf118',
|
|
55
|
+
'arrowDownCircle': '\uf119',
|
|
56
|
+
'arrowDownLeftCircleFill': '\uf11a',
|
|
57
|
+
'arrowDownLeftCircle': '\uf11b',
|
|
58
|
+
'arrowDownLeftSquareFill': '\uf11c',
|
|
59
|
+
'arrowDownLeftSquare': '\uf11d',
|
|
60
|
+
'arrowDownLeft': '\uf11e',
|
|
61
|
+
'arrowDownRightCircleFill': '\uf11f',
|
|
62
|
+
'arrowDownRightCircle': '\uf120',
|
|
63
|
+
'arrowDownRightSquareFill': '\uf121',
|
|
64
|
+
'arrowDownRightSquare': '\uf122',
|
|
65
|
+
'arrowDownRight': '\uf123',
|
|
66
|
+
'arrowDownShort': '\uf124',
|
|
67
|
+
'arrowDownSquareFill': '\uf125',
|
|
68
|
+
'arrowDownSquare': '\uf126',
|
|
69
|
+
'arrowDownUp': '\uf127',
|
|
70
|
+
'arrowDown': '\uf128',
|
|
71
|
+
'arrowLeftCircleFill': '\uf129',
|
|
72
|
+
'arrowLeftCircle': '\uf12a',
|
|
73
|
+
'arrowLeftRight': '\uf12b',
|
|
74
|
+
'arrowLeftShort': '\uf12c',
|
|
75
|
+
'arrowLeftSquareFill': '\uf12d',
|
|
76
|
+
'arrowLeftSquare': '\uf12e',
|
|
77
|
+
'arrowLeft': '\uf12f',
|
|
78
|
+
'arrowRepeat': '\uf130',
|
|
79
|
+
'arrowReturnLeft': '\uf131',
|
|
80
|
+
'arrowReturnRight': '\uf132',
|
|
81
|
+
'arrowRightCircleFill': '\uf133',
|
|
82
|
+
'arrowRightCircle': '\uf134',
|
|
83
|
+
'arrowRightShort': '\uf135',
|
|
84
|
+
'arrowRightSquareFill': '\uf136',
|
|
85
|
+
'arrowRightSquare': '\uf137',
|
|
86
|
+
'arrowRight': '\uf138',
|
|
87
|
+
'arrowUpCircleFill': '\uf139',
|
|
88
|
+
'arrowUpCircle': '\uf13a',
|
|
89
|
+
'arrowUpLeftCircleFill': '\uf13b',
|
|
90
|
+
'arrowUpLeftCircle': '\uf13c',
|
|
91
|
+
'arrowUpLeftSquareFill': '\uf13d',
|
|
92
|
+
'arrowUpLeftSquare': '\uf13e',
|
|
93
|
+
'arrowUpLeft': '\uf13f',
|
|
94
|
+
'arrowUpRightCircleFill': '\uf140',
|
|
95
|
+
'arrowUpRightCircle': '\uf141',
|
|
96
|
+
'arrowUpRightSquareFill': '\uf142',
|
|
97
|
+
'arrowUpRightSquare': '\uf143',
|
|
98
|
+
'arrowUpRight': '\uf144',
|
|
99
|
+
'arrowUpShort': '\uf145',
|
|
100
|
+
'arrowUpSquareFill': '\uf146',
|
|
101
|
+
'arrowUpSquare': '\uf147',
|
|
102
|
+
'arrowUp': '\uf148',
|
|
103
|
+
'arrowsAngleContract': '\uf149',
|
|
104
|
+
'arrowsAngleExpand': '\uf14a',
|
|
105
|
+
'arrowsCollapse': '\uf14b',
|
|
106
|
+
'arrowsExpand': '\uf14c',
|
|
107
|
+
'arrowsFullscreen': '\uf14d',
|
|
108
|
+
'arrowsMove': '\uf14e',
|
|
109
|
+
'aspectRatioFill': '\uf14f',
|
|
110
|
+
'aspectRatio': '\uf150',
|
|
111
|
+
'asterisk': '\uf151',
|
|
112
|
+
'at': '\uf152',
|
|
113
|
+
'awardFill': '\uf153',
|
|
114
|
+
'award': '\uf154',
|
|
115
|
+
'back': '\uf155',
|
|
116
|
+
'backspaceFill': '\uf156',
|
|
117
|
+
'backspaceReverseFill': '\uf157',
|
|
118
|
+
'backspaceReverse': '\uf158',
|
|
119
|
+
'backspace': '\uf159',
|
|
120
|
+
'badge3dFill': '\uf15a',
|
|
121
|
+
'badge3d': '\uf15b',
|
|
122
|
+
'badge4kFill': '\uf15c',
|
|
123
|
+
'badge4k': '\uf15d',
|
|
124
|
+
'badge8kFill': '\uf15e',
|
|
125
|
+
'badge8k': '\uf15f',
|
|
126
|
+
'badgeAdFill': '\uf160',
|
|
127
|
+
'badgeAd': '\uf161',
|
|
128
|
+
'badgeArFill': '\uf162',
|
|
129
|
+
'badgeAr': '\uf163',
|
|
130
|
+
'badgeCcFill': '\uf164',
|
|
131
|
+
'badgeCc': '\uf165',
|
|
132
|
+
'badgeHdFill': '\uf166',
|
|
133
|
+
'badgeHd': '\uf167',
|
|
134
|
+
'badgeTmFill': '\uf168',
|
|
135
|
+
'badgeTm': '\uf169',
|
|
136
|
+
'badgeVoFill': '\uf16a',
|
|
137
|
+
'badgeVo': '\uf16b',
|
|
138
|
+
'badgeVrFill': '\uf16c',
|
|
139
|
+
'badgeVr': '\uf16d',
|
|
140
|
+
'badgeWcFill': '\uf16e',
|
|
141
|
+
'badgeWc': '\uf16f',
|
|
142
|
+
'bagCheckFill': '\uf170',
|
|
143
|
+
'bagCheck': '\uf171',
|
|
144
|
+
'bagDashFill': '\uf172',
|
|
145
|
+
'bagDash': '\uf173',
|
|
146
|
+
'bagFill': '\uf174',
|
|
147
|
+
'bagPlusFill': '\uf175',
|
|
148
|
+
'bagPlus': '\uf176',
|
|
149
|
+
'bagXFill': '\uf177',
|
|
150
|
+
'bagX': '\uf178',
|
|
151
|
+
'bag': '\uf179',
|
|
152
|
+
'barChartFill': '\uf17a',
|
|
153
|
+
'barChartLineFill': '\uf17b',
|
|
154
|
+
'barChartLine': '\uf17c',
|
|
155
|
+
'barChartSteps': '\uf17d',
|
|
156
|
+
'barChart': '\uf17e',
|
|
157
|
+
'basketFill': '\uf17f',
|
|
158
|
+
'basket': '\uf180',
|
|
159
|
+
'basket2Fill': '\uf181',
|
|
160
|
+
'basket2': '\uf182',
|
|
161
|
+
'basket3Fill': '\uf183',
|
|
162
|
+
'basket3': '\uf184',
|
|
163
|
+
'batteryCharging': '\uf185',
|
|
164
|
+
'batteryFull': '\uf186',
|
|
165
|
+
'batteryHalf': '\uf187',
|
|
166
|
+
'battery': '\uf188',
|
|
167
|
+
'bellFill': '\uf189',
|
|
168
|
+
'bell': '\uf18a',
|
|
169
|
+
'bezier': '\uf18b',
|
|
170
|
+
'bezier2': '\uf18c',
|
|
171
|
+
'bicycle': '\uf18d',
|
|
172
|
+
'binocularsFill': '\uf18e',
|
|
173
|
+
'binoculars': '\uf18f',
|
|
174
|
+
'blockquoteLeft': '\uf190',
|
|
175
|
+
'blockquoteRight': '\uf191',
|
|
176
|
+
'bookFill': '\uf192',
|
|
177
|
+
'bookHalf': '\uf193',
|
|
178
|
+
'book': '\uf194',
|
|
179
|
+
'bookmarkCheckFill': '\uf195',
|
|
180
|
+
'bookmarkCheck': '\uf196',
|
|
181
|
+
'bookmarkDashFill': '\uf197',
|
|
182
|
+
'bookmarkDash': '\uf198',
|
|
183
|
+
'bookmarkFill': '\uf199',
|
|
184
|
+
'bookmarkHeartFill': '\uf19a',
|
|
185
|
+
'bookmarkHeart': '\uf19b',
|
|
186
|
+
'bookmarkPlusFill': '\uf19c',
|
|
187
|
+
'bookmarkPlus': '\uf19d',
|
|
188
|
+
'bookmarkStarFill': '\uf19e',
|
|
189
|
+
'bookmarkStar': '\uf19f',
|
|
190
|
+
'bookmarkXFill': '\uf1a0',
|
|
191
|
+
'bookmarkX': '\uf1a1',
|
|
192
|
+
'bookmark': '\uf1a2',
|
|
193
|
+
'bookmarksFill': '\uf1a3',
|
|
194
|
+
'bookmarks': '\uf1a4',
|
|
195
|
+
'bookshelf': '\uf1a5',
|
|
196
|
+
'bootstrapFill': '\uf1a6',
|
|
197
|
+
'bootstrapReboot': '\uf1a7',
|
|
198
|
+
'bootstrap': '\uf1a8',
|
|
199
|
+
'borderAll': '\uf1a9',
|
|
200
|
+
'borderBottom': '\uf1aa',
|
|
201
|
+
'borderCenter': '\uf1ab',
|
|
202
|
+
'borderInner': '\uf1ac',
|
|
203
|
+
'borderLeft': '\uf1ad',
|
|
204
|
+
'borderMiddle': '\uf1ae',
|
|
205
|
+
'borderOuter': '\uf1af',
|
|
206
|
+
'borderRight': '\uf1b0',
|
|
207
|
+
'borderStyle': '\uf1b1',
|
|
208
|
+
'borderTop': '\uf1b2',
|
|
209
|
+
'borderWidth': '\uf1b3',
|
|
210
|
+
'border': '\uf1b4',
|
|
211
|
+
'boundingBoxCircles': '\uf1b5',
|
|
212
|
+
'boundingBox': '\uf1b6',
|
|
213
|
+
'boxArrowDownLeft': '\uf1b7',
|
|
214
|
+
'boxArrowDownRight': '\uf1b8',
|
|
215
|
+
'boxArrowDown': '\uf1b9',
|
|
216
|
+
'boxArrowInDownLeft': '\uf1ba',
|
|
217
|
+
'boxArrowInDownRight': '\uf1bb',
|
|
218
|
+
'boxArrowInDown': '\uf1bc',
|
|
219
|
+
'boxArrowInLeft': '\uf1bd',
|
|
220
|
+
'boxArrowInRight': '\uf1be',
|
|
221
|
+
'boxArrowInUpLeft': '\uf1bf',
|
|
222
|
+
'boxArrowInUpRight': '\uf1c0',
|
|
223
|
+
'boxArrowInUp': '\uf1c1',
|
|
224
|
+
'boxArrowLeft': '\uf1c2',
|
|
225
|
+
'boxArrowRight': '\uf1c3',
|
|
226
|
+
'boxArrowUpLeft': '\uf1c4',
|
|
227
|
+
'boxArrowUpRight': '\uf1c5',
|
|
228
|
+
'boxArrowUp': '\uf1c6',
|
|
229
|
+
'boxSeam': '\uf1c7',
|
|
230
|
+
'box': '\uf1c8',
|
|
231
|
+
'braces': '\uf1c9',
|
|
232
|
+
'bricks': '\uf1ca',
|
|
233
|
+
'briefcaseFill': '\uf1cb',
|
|
234
|
+
'briefcase': '\uf1cc',
|
|
235
|
+
'brightnessAltHighFill': '\uf1cd',
|
|
236
|
+
'brightnessAltHigh': '\uf1ce',
|
|
237
|
+
'brightnessAltLowFill': '\uf1cf',
|
|
238
|
+
'brightnessAltLow': '\uf1d0',
|
|
239
|
+
'brightnessHighFill': '\uf1d1',
|
|
240
|
+
'brightnessHigh': '\uf1d2',
|
|
241
|
+
'brightnessLowFill': '\uf1d3',
|
|
242
|
+
'brightnessLow': '\uf1d4',
|
|
243
|
+
'broadcastPin': '\uf1d5',
|
|
244
|
+
'broadcast': '\uf1d6',
|
|
245
|
+
'brushFill': '\uf1d7',
|
|
246
|
+
'brush': '\uf1d8',
|
|
247
|
+
'bucketFill': '\uf1d9',
|
|
248
|
+
'bucket': '\uf1da',
|
|
249
|
+
'bugFill': '\uf1db',
|
|
250
|
+
'bug': '\uf1dc',
|
|
251
|
+
'building': '\uf1dd',
|
|
252
|
+
'bullseye': '\uf1de',
|
|
253
|
+
'calculatorFill': '\uf1df',
|
|
254
|
+
'calculator': '\uf1e0',
|
|
255
|
+
'calendarCheckFill': '\uf1e1',
|
|
256
|
+
'calendarCheck': '\uf1e2',
|
|
257
|
+
'calendarDateFill': '\uf1e3',
|
|
258
|
+
'calendarDate': '\uf1e4',
|
|
259
|
+
'calendarDayFill': '\uf1e5',
|
|
260
|
+
'calendarDay': '\uf1e6',
|
|
261
|
+
'calendarEventFill': '\uf1e7',
|
|
262
|
+
'calendarEvent': '\uf1e8',
|
|
263
|
+
'calendarFill': '\uf1e9',
|
|
264
|
+
'calendarMinusFill': '\uf1ea',
|
|
265
|
+
'calendarMinus': '\uf1eb',
|
|
266
|
+
'calendarMonthFill': '\uf1ec',
|
|
267
|
+
'calendarMonth': '\uf1ed',
|
|
268
|
+
'calendarPlusFill': '\uf1ee',
|
|
269
|
+
'calendarPlus': '\uf1ef',
|
|
270
|
+
'calendarRangeFill': '\uf1f0',
|
|
271
|
+
'calendarRange': '\uf1f1',
|
|
272
|
+
'calendarWeekFill': '\uf1f2',
|
|
273
|
+
'calendarWeek': '\uf1f3',
|
|
274
|
+
'calendarXFill': '\uf1f4',
|
|
275
|
+
'calendarX': '\uf1f5',
|
|
276
|
+
'calendar': '\uf1f6',
|
|
277
|
+
'calendar2CheckFill': '\uf1f7',
|
|
278
|
+
'calendar2Check': '\uf1f8',
|
|
279
|
+
'calendar2DateFill': '\uf1f9',
|
|
280
|
+
'calendar2Date': '\uf1fa',
|
|
281
|
+
'calendar2DayFill': '\uf1fb',
|
|
282
|
+
'calendar2Day': '\uf1fc',
|
|
283
|
+
'calendar2EventFill': '\uf1fd',
|
|
284
|
+
'calendar2Event': '\uf1fe',
|
|
285
|
+
'calendar2Fill': '\uf1ff',
|
|
286
|
+
'calendar2MinusFill': '\uf200',
|
|
287
|
+
'calendar2Minus': '\uf201',
|
|
288
|
+
'calendar2MonthFill': '\uf202',
|
|
289
|
+
'calendar2Month': '\uf203',
|
|
290
|
+
'calendar2PlusFill': '\uf204',
|
|
291
|
+
'calendar2Plus': '\uf205',
|
|
292
|
+
'calendar2RangeFill': '\uf206',
|
|
293
|
+
'calendar2Range': '\uf207',
|
|
294
|
+
'calendar2WeekFill': '\uf208',
|
|
295
|
+
'calendar2Week': '\uf209',
|
|
296
|
+
'calendar2XFill': '\uf20a',
|
|
297
|
+
'calendar2X': '\uf20b',
|
|
298
|
+
'calendar2': '\uf20c',
|
|
299
|
+
'calendar3EventFill': '\uf20d',
|
|
300
|
+
'calendar3Event': '\uf20e',
|
|
301
|
+
'calendar3Fill': '\uf20f',
|
|
302
|
+
'calendar3RangeFill': '\uf210',
|
|
303
|
+
'calendar3Range': '\uf211',
|
|
304
|
+
'calendar3WeekFill': '\uf212',
|
|
305
|
+
'calendar3Week': '\uf213',
|
|
306
|
+
'calendar3': '\uf214',
|
|
307
|
+
'calendar4Event': '\uf215',
|
|
308
|
+
'calendar4Range': '\uf216',
|
|
309
|
+
'calendar4Week': '\uf217',
|
|
310
|
+
'calendar4': '\uf218',
|
|
311
|
+
'cameraFill': '\uf219',
|
|
312
|
+
'cameraReelsFill': '\uf21a',
|
|
313
|
+
'cameraReels': '\uf21b',
|
|
314
|
+
'cameraVideoFill': '\uf21c',
|
|
315
|
+
'cameraVideoOffFill': '\uf21d',
|
|
316
|
+
'cameraVideoOff': '\uf21e',
|
|
317
|
+
'cameraVideo': '\uf21f',
|
|
318
|
+
'camera': '\uf220',
|
|
319
|
+
'camera2': '\uf221',
|
|
320
|
+
'capslockFill': '\uf222',
|
|
321
|
+
'capslock': '\uf223',
|
|
322
|
+
'cardChecklist': '\uf224',
|
|
323
|
+
'cardHeading': '\uf225',
|
|
324
|
+
'cardImage': '\uf226',
|
|
325
|
+
'cardList': '\uf227',
|
|
326
|
+
'cardText': '\uf228',
|
|
327
|
+
'caretDownFill': '\uf229',
|
|
328
|
+
'caretDownSquareFill': '\uf22a',
|
|
329
|
+
'caretDownSquare': '\uf22b',
|
|
330
|
+
'caretDown': '\uf22c',
|
|
331
|
+
'caretLeftFill': '\uf22d',
|
|
332
|
+
'caretLeftSquareFill': '\uf22e',
|
|
333
|
+
'caretLeftSquare': '\uf22f',
|
|
334
|
+
'caretLeft': '\uf230',
|
|
335
|
+
'caretRightFill': '\uf231',
|
|
336
|
+
'caretRightSquareFill': '\uf232',
|
|
337
|
+
'caretRightSquare': '\uf233',
|
|
338
|
+
'caretRight': '\uf234',
|
|
339
|
+
'caretUpFill': '\uf235',
|
|
340
|
+
'caretUpSquareFill': '\uf236',
|
|
341
|
+
'caretUpSquare': '\uf237',
|
|
342
|
+
'caretUp': '\uf238',
|
|
343
|
+
'cartCheckFill': '\uf239',
|
|
344
|
+
'cartCheck': '\uf23a',
|
|
345
|
+
'cartDashFill': '\uf23b',
|
|
346
|
+
'cartDash': '\uf23c',
|
|
347
|
+
'cartFill': '\uf23d',
|
|
348
|
+
'cartPlusFill': '\uf23e',
|
|
349
|
+
'cartPlus': '\uf23f',
|
|
350
|
+
'cartXFill': '\uf240',
|
|
351
|
+
'cartX': '\uf241',
|
|
352
|
+
'cart': '\uf242',
|
|
353
|
+
'cart2': '\uf243',
|
|
354
|
+
'cart3': '\uf244',
|
|
355
|
+
'cart4': '\uf245',
|
|
356
|
+
'cashStack': '\uf246',
|
|
357
|
+
'cash': '\uf247',
|
|
358
|
+
'cast': '\uf248',
|
|
359
|
+
'chatDotsFill': '\uf249',
|
|
360
|
+
'chatDots': '\uf24a',
|
|
361
|
+
'chatFill': '\uf24b',
|
|
362
|
+
'chatLeftDotsFill': '\uf24c',
|
|
363
|
+
'chatLeftDots': '\uf24d',
|
|
364
|
+
'chatLeftFill': '\uf24e',
|
|
365
|
+
'chatLeftQuoteFill': '\uf24f',
|
|
366
|
+
'chatLeftQuote': '\uf250',
|
|
367
|
+
'chatLeftTextFill': '\uf251',
|
|
368
|
+
'chatLeftText': '\uf252',
|
|
369
|
+
'chatLeft': '\uf253',
|
|
370
|
+
'chatQuoteFill': '\uf254',
|
|
371
|
+
'chatQuote': '\uf255',
|
|
372
|
+
'chatRightDotsFill': '\uf256',
|
|
373
|
+
'chatRightDots': '\uf257',
|
|
374
|
+
'chatRightFill': '\uf258',
|
|
375
|
+
'chatRightQuoteFill': '\uf259',
|
|
376
|
+
'chatRightQuote': '\uf25a',
|
|
377
|
+
'chatRightTextFill': '\uf25b',
|
|
378
|
+
'chatRightText': '\uf25c',
|
|
379
|
+
'chatRight': '\uf25d',
|
|
380
|
+
'chatSquareDotsFill': '\uf25e',
|
|
381
|
+
'chatSquareDots': '\uf25f',
|
|
382
|
+
'chatSquareFill': '\uf260',
|
|
383
|
+
'chatSquareQuoteFill': '\uf261',
|
|
384
|
+
'chatSquareQuote': '\uf262',
|
|
385
|
+
'chatSquareTextFill': '\uf263',
|
|
386
|
+
'chatSquareText': '\uf264',
|
|
387
|
+
'chatSquare': '\uf265',
|
|
388
|
+
'chatTextFill': '\uf266',
|
|
389
|
+
'chatText': '\uf267',
|
|
390
|
+
'chat': '\uf268',
|
|
391
|
+
'checkAll': '\uf269',
|
|
392
|
+
'checkCircleFill': '\uf26a',
|
|
393
|
+
'checkCircle': '\uf26b',
|
|
394
|
+
'checkSquareFill': '\uf26c',
|
|
395
|
+
'checkSquare': '\uf26d',
|
|
396
|
+
'check': '\uf26e',
|
|
397
|
+
'check2All': '\uf26f',
|
|
398
|
+
'check2Circle': '\uf270',
|
|
399
|
+
'check2Square': '\uf271',
|
|
400
|
+
'check2': '\uf272',
|
|
401
|
+
'chevronBarContract': '\uf273',
|
|
402
|
+
'chevronBarDown': '\uf274',
|
|
403
|
+
'chevronBarExpand': '\uf275',
|
|
404
|
+
'chevronBarLeft': '\uf276',
|
|
405
|
+
'chevronBarRight': '\uf277',
|
|
406
|
+
'chevronBarUp': '\uf278',
|
|
407
|
+
'chevronCompactDown': '\uf279',
|
|
408
|
+
'chevronCompactLeft': '\uf27a',
|
|
409
|
+
'chevronCompactRight': '\uf27b',
|
|
410
|
+
'chevronCompactUp': '\uf27c',
|
|
411
|
+
'chevronContract': '\uf27d',
|
|
412
|
+
'chevronDoubleDown': '\uf27e',
|
|
413
|
+
'chevronDoubleLeft': '\uf27f',
|
|
414
|
+
'chevronDoubleRight': '\uf280',
|
|
415
|
+
'chevronDoubleUp': '\uf281',
|
|
416
|
+
'chevronDown': '\uf282',
|
|
417
|
+
'chevronExpand': '\uf283',
|
|
418
|
+
'chevronLeft': '\uf284',
|
|
419
|
+
'chevronRight': '\uf285',
|
|
420
|
+
'chevronUp': '\uf286',
|
|
421
|
+
'circleFill': '\uf287',
|
|
422
|
+
'circleHalf': '\uf288',
|
|
423
|
+
'circleSquare': '\uf289',
|
|
424
|
+
'circle': '\uf28a',
|
|
425
|
+
'clipboardCheck': '\uf28b',
|
|
426
|
+
'clipboardData': '\uf28c',
|
|
427
|
+
'clipboardMinus': '\uf28d',
|
|
428
|
+
'clipboardPlus': '\uf28e',
|
|
429
|
+
'clipboardX': '\uf28f',
|
|
430
|
+
'clipboard': '\uf290',
|
|
431
|
+
'clockFill': '\uf291',
|
|
432
|
+
'clockHistory': '\uf292',
|
|
433
|
+
'clock': '\uf293',
|
|
434
|
+
'cloudArrowDownFill': '\uf294',
|
|
435
|
+
'cloudArrowDown': '\uf295',
|
|
436
|
+
'cloudArrowUpFill': '\uf296',
|
|
437
|
+
'cloudArrowUp': '\uf297',
|
|
438
|
+
'cloudCheckFill': '\uf298',
|
|
439
|
+
'cloudCheck': '\uf299',
|
|
440
|
+
'cloudDownloadFill': '\uf29a',
|
|
441
|
+
'cloudDownload': '\uf29b',
|
|
442
|
+
'cloudDrizzleFill': '\uf29c',
|
|
443
|
+
'cloudDrizzle': '\uf29d',
|
|
444
|
+
'cloudFill': '\uf29e',
|
|
445
|
+
'cloudFogFill': '\uf29f',
|
|
446
|
+
'cloudFog': '\uf2a0',
|
|
447
|
+
'cloudFog2Fill': '\uf2a1',
|
|
448
|
+
'cloudFog2': '\uf2a2',
|
|
449
|
+
'cloudHailFill': '\uf2a3',
|
|
450
|
+
'cloudHail': '\uf2a4',
|
|
451
|
+
'cloudHaze1': '\uf2a5',
|
|
452
|
+
'cloudHazeFill': '\uf2a6',
|
|
453
|
+
'cloudHaze': '\uf2a7',
|
|
454
|
+
'cloudHaze2Fill': '\uf2a8',
|
|
455
|
+
'cloudLightningFill': '\uf2a9',
|
|
456
|
+
'cloudLightningRainFill': '\uf2aa',
|
|
457
|
+
'cloudLightningRain': '\uf2ab',
|
|
458
|
+
'cloudLightning': '\uf2ac',
|
|
459
|
+
'cloudMinusFill': '\uf2ad',
|
|
460
|
+
'cloudMinus': '\uf2ae',
|
|
461
|
+
'cloudMoonFill': '\uf2af',
|
|
462
|
+
'cloudMoon': '\uf2b0',
|
|
463
|
+
'cloudPlusFill': '\uf2b1',
|
|
464
|
+
'cloudPlus': '\uf2b2',
|
|
465
|
+
'cloudRainFill': '\uf2b3',
|
|
466
|
+
'cloudRainHeavyFill': '\uf2b4',
|
|
467
|
+
'cloudRainHeavy': '\uf2b5',
|
|
468
|
+
'cloudRain': '\uf2b6',
|
|
469
|
+
'cloudSlashFill': '\uf2b7',
|
|
470
|
+
'cloudSlash': '\uf2b8',
|
|
471
|
+
'cloudSleetFill': '\uf2b9',
|
|
472
|
+
'cloudSleet': '\uf2ba',
|
|
473
|
+
'cloudSnowFill': '\uf2bb',
|
|
474
|
+
'cloudSnow': '\uf2bc',
|
|
475
|
+
'cloudSunFill': '\uf2bd',
|
|
476
|
+
'cloudSun': '\uf2be',
|
|
477
|
+
'cloudUploadFill': '\uf2bf',
|
|
478
|
+
'cloudUpload': '\uf2c0',
|
|
479
|
+
'cloud': '\uf2c1',
|
|
480
|
+
'cloudsFill': '\uf2c2',
|
|
481
|
+
'clouds': '\uf2c3',
|
|
482
|
+
'cloudyFill': '\uf2c4',
|
|
483
|
+
'cloudy': '\uf2c5',
|
|
484
|
+
'codeSlash': '\uf2c6',
|
|
485
|
+
'codeSquare': '\uf2c7',
|
|
486
|
+
'code': '\uf2c8',
|
|
487
|
+
'collectionFill': '\uf2c9',
|
|
488
|
+
'collectionPlayFill': '\uf2ca',
|
|
489
|
+
'collectionPlay': '\uf2cb',
|
|
490
|
+
'collection': '\uf2cc',
|
|
491
|
+
'columnsGap': '\uf2cd',
|
|
492
|
+
'columns': '\uf2ce',
|
|
493
|
+
'command': '\uf2cf',
|
|
494
|
+
'compassFill': '\uf2d0',
|
|
495
|
+
'compass': '\uf2d1',
|
|
496
|
+
'coneStriped': '\uf2d2',
|
|
497
|
+
'cone': '\uf2d3',
|
|
498
|
+
'controller': '\uf2d4',
|
|
499
|
+
'cpuFill': '\uf2d5',
|
|
500
|
+
'cpu': '\uf2d6',
|
|
501
|
+
'creditCard2BackFill': '\uf2d7',
|
|
502
|
+
'creditCard2Back': '\uf2d8',
|
|
503
|
+
'creditCard2FrontFill': '\uf2d9',
|
|
504
|
+
'creditCard2Front': '\uf2da',
|
|
505
|
+
'creditCardFill': '\uf2db',
|
|
506
|
+
'creditCard': '\uf2dc',
|
|
507
|
+
'crop': '\uf2dd',
|
|
508
|
+
'cupFill': '\uf2de',
|
|
509
|
+
'cupStraw': '\uf2df',
|
|
510
|
+
'cup': '\uf2e0',
|
|
511
|
+
'cursorFill': '\uf2e1',
|
|
512
|
+
'cursorText': '\uf2e2',
|
|
513
|
+
'cursor': '\uf2e3',
|
|
514
|
+
'dashCircleDotted': '\uf2e4',
|
|
515
|
+
'dashCircleFill': '\uf2e5',
|
|
516
|
+
'dashCircle': '\uf2e6',
|
|
517
|
+
'dashSquareDotted': '\uf2e7',
|
|
518
|
+
'dashSquareFill': '\uf2e8',
|
|
519
|
+
'dashSquare': '\uf2e9',
|
|
520
|
+
'dash': '\uf2ea',
|
|
521
|
+
'diagram2Fill': '\uf2eb',
|
|
522
|
+
'diagram2': '\uf2ec',
|
|
523
|
+
'diagram3Fill': '\uf2ed',
|
|
524
|
+
'diagram3': '\uf2ee',
|
|
525
|
+
'diamondFill': '\uf2ef',
|
|
526
|
+
'diamondHalf': '\uf2f0',
|
|
527
|
+
'diamond': '\uf2f1',
|
|
528
|
+
'dice1Fill': '\uf2f2',
|
|
529
|
+
'dice1': '\uf2f3',
|
|
530
|
+
'dice2Fill': '\uf2f4',
|
|
531
|
+
'dice2': '\uf2f5',
|
|
532
|
+
'dice3Fill': '\uf2f6',
|
|
533
|
+
'dice3': '\uf2f7',
|
|
534
|
+
'dice4Fill': '\uf2f8',
|
|
535
|
+
'dice4': '\uf2f9',
|
|
536
|
+
'dice5Fill': '\uf2fa',
|
|
537
|
+
'dice5': '\uf2fb',
|
|
538
|
+
'dice6Fill': '\uf2fc',
|
|
539
|
+
'dice6': '\uf2fd',
|
|
540
|
+
'discFill': '\uf2fe',
|
|
541
|
+
'disc': '\uf2ff',
|
|
542
|
+
'discord': '\uf300',
|
|
543
|
+
'displayFill': '\uf301',
|
|
544
|
+
'display': '\uf302',
|
|
545
|
+
'distributeHorizontal': '\uf303',
|
|
546
|
+
'distributeVertical': '\uf304',
|
|
547
|
+
'doorClosedFill': '\uf305',
|
|
548
|
+
'doorClosed': '\uf306',
|
|
549
|
+
'doorOpenFill': '\uf307',
|
|
550
|
+
'doorOpen': '\uf308',
|
|
551
|
+
'dot': '\uf309',
|
|
552
|
+
'download': '\uf30a',
|
|
553
|
+
'dropletFill': '\uf30b',
|
|
554
|
+
'dropletHalf': '\uf30c',
|
|
555
|
+
'droplet': '\uf30d',
|
|
556
|
+
'earbuds': '\uf30e',
|
|
557
|
+
'easelFill': '\uf30f',
|
|
558
|
+
'easel': '\uf310',
|
|
559
|
+
'eggFill': '\uf311',
|
|
560
|
+
'eggFried': '\uf312',
|
|
561
|
+
'egg': '\uf313',
|
|
562
|
+
'ejectFill': '\uf314',
|
|
563
|
+
'eject': '\uf315',
|
|
564
|
+
'emojiAngryFill': '\uf316',
|
|
565
|
+
'emojiAngry': '\uf317',
|
|
566
|
+
'emojiDizzyFill': '\uf318',
|
|
567
|
+
'emojiDizzy': '\uf319',
|
|
568
|
+
'emojiExpressionlessFill': '\uf31a',
|
|
569
|
+
'emojiExpressionless': '\uf31b',
|
|
570
|
+
'emojiFrownFill': '\uf31c',
|
|
571
|
+
'emojiFrown': '\uf31d',
|
|
572
|
+
'emojiHeartEyesFill': '\uf31e',
|
|
573
|
+
'emojiHeartEyes': '\uf31f',
|
|
574
|
+
'emojiLaughingFill': '\uf320',
|
|
575
|
+
'emojiLaughing': '\uf321',
|
|
576
|
+
'emojiNeutralFill': '\uf322',
|
|
577
|
+
'emojiNeutral': '\uf323',
|
|
578
|
+
'emojiSmileFill': '\uf324',
|
|
579
|
+
'emojiSmileUpsideDownFill': '\uf325',
|
|
580
|
+
'emojiSmileUpsideDown': '\uf326',
|
|
581
|
+
'emojiSmile': '\uf327',
|
|
582
|
+
'emojiSunglassesFill': '\uf328',
|
|
583
|
+
'emojiSunglasses': '\uf329',
|
|
584
|
+
'emojiWinkFill': '\uf32a',
|
|
585
|
+
'emojiWink': '\uf32b',
|
|
586
|
+
'envelopeFill': '\uf32c',
|
|
587
|
+
'envelopeOpenFill': '\uf32d',
|
|
588
|
+
'envelopeOpen': '\uf32e',
|
|
589
|
+
'envelope': '\uf32f',
|
|
590
|
+
'eraserFill': '\uf330',
|
|
591
|
+
'eraser': '\uf331',
|
|
592
|
+
'exclamationCircleFill': '\uf332',
|
|
593
|
+
'exclamationCircle': '\uf333',
|
|
594
|
+
'exclamationDiamondFill': '\uf334',
|
|
595
|
+
'exclamationDiamond': '\uf335',
|
|
596
|
+
'exclamationOctagonFill': '\uf336',
|
|
597
|
+
'exclamationOctagon': '\uf337',
|
|
598
|
+
'exclamationSquareFill': '\uf338',
|
|
599
|
+
'exclamationSquare': '\uf339',
|
|
600
|
+
'exclamationTriangleFill': '\uf33a',
|
|
601
|
+
'exclamationTriangle': '\uf33b',
|
|
602
|
+
'exclamation': '\uf33c',
|
|
603
|
+
'exclude': '\uf33d',
|
|
604
|
+
'eyeFill': '\uf33e',
|
|
605
|
+
'eyeSlashFill': '\uf33f',
|
|
606
|
+
'eyeSlash': '\uf340',
|
|
607
|
+
'eye': '\uf341',
|
|
608
|
+
'eyedropper': '\uf342',
|
|
609
|
+
'eyeglasses': '\uf343',
|
|
610
|
+
'facebook': '\uf344',
|
|
611
|
+
'fileArrowDownFill': '\uf345',
|
|
612
|
+
'fileArrowDown': '\uf346',
|
|
613
|
+
'fileArrowUpFill': '\uf347',
|
|
614
|
+
'fileArrowUp': '\uf348',
|
|
615
|
+
'fileBarGraphFill': '\uf349',
|
|
616
|
+
'fileBarGraph': '\uf34a',
|
|
617
|
+
'fileBinaryFill': '\uf34b',
|
|
618
|
+
'fileBinary': '\uf34c',
|
|
619
|
+
'fileBreakFill': '\uf34d',
|
|
620
|
+
'fileBreak': '\uf34e',
|
|
621
|
+
'fileCheckFill': '\uf34f',
|
|
622
|
+
'fileCheck': '\uf350',
|
|
623
|
+
'fileCodeFill': '\uf351',
|
|
624
|
+
'fileCode': '\uf352',
|
|
625
|
+
'fileDiffFill': '\uf353',
|
|
626
|
+
'fileDiff': '\uf354',
|
|
627
|
+
'fileEarmarkArrowDownFill': '\uf355',
|
|
628
|
+
'fileEarmarkArrowDown': '\uf356',
|
|
629
|
+
'fileEarmarkArrowUpFill': '\uf357',
|
|
630
|
+
'fileEarmarkArrowUp': '\uf358',
|
|
631
|
+
'fileEarmarkBarGraphFill': '\uf359',
|
|
632
|
+
'fileEarmarkBarGraph': '\uf35a',
|
|
633
|
+
'fileEarmarkBinaryFill': '\uf35b',
|
|
634
|
+
'fileEarmarkBinary': '\uf35c',
|
|
635
|
+
'fileEarmarkBreakFill': '\uf35d',
|
|
636
|
+
'fileEarmarkBreak': '\uf35e',
|
|
637
|
+
'fileEarmarkCheckFill': '\uf35f',
|
|
638
|
+
'fileEarmarkCheck': '\uf360',
|
|
639
|
+
'fileEarmarkCodeFill': '\uf361',
|
|
640
|
+
'fileEarmarkCode': '\uf362',
|
|
641
|
+
'fileEarmarkDiffFill': '\uf363',
|
|
642
|
+
'fileEarmarkDiff': '\uf364',
|
|
643
|
+
'fileEarmarkEaselFill': '\uf365',
|
|
644
|
+
'fileEarmarkEasel': '\uf366',
|
|
645
|
+
'fileEarmarkExcelFill': '\uf367',
|
|
646
|
+
'fileEarmarkExcel': '\uf368',
|
|
647
|
+
'fileEarmarkFill': '\uf369',
|
|
648
|
+
'fileEarmarkFontFill': '\uf36a',
|
|
649
|
+
'fileEarmarkFont': '\uf36b',
|
|
650
|
+
'fileEarmarkImageFill': '\uf36c',
|
|
651
|
+
'fileEarmarkImage': '\uf36d',
|
|
652
|
+
'fileEarmarkLockFill': '\uf36e',
|
|
653
|
+
'fileEarmarkLock': '\uf36f',
|
|
654
|
+
'fileEarmarkLock2Fill': '\uf370',
|
|
655
|
+
'fileEarmarkLock2': '\uf371',
|
|
656
|
+
'fileEarmarkMedicalFill': '\uf372',
|
|
657
|
+
'fileEarmarkMedical': '\uf373',
|
|
658
|
+
'fileEarmarkMinusFill': '\uf374',
|
|
659
|
+
'fileEarmarkMinus': '\uf375',
|
|
660
|
+
'fileEarmarkMusicFill': '\uf376',
|
|
661
|
+
'fileEarmarkMusic': '\uf377',
|
|
662
|
+
'fileEarmarkPersonFill': '\uf378',
|
|
663
|
+
'fileEarmarkPerson': '\uf379',
|
|
664
|
+
'fileEarmarkPlayFill': '\uf37a',
|
|
665
|
+
'fileEarmarkPlay': '\uf37b',
|
|
666
|
+
'fileEarmarkPlusFill': '\uf37c',
|
|
667
|
+
'fileEarmarkPlus': '\uf37d',
|
|
668
|
+
'fileEarmarkPostFill': '\uf37e',
|
|
669
|
+
'fileEarmarkPost': '\uf37f',
|
|
670
|
+
'fileEarmarkPptFill': '\uf380',
|
|
671
|
+
'fileEarmarkPpt': '\uf381',
|
|
672
|
+
'fileEarmarkRichtextFill': '\uf382',
|
|
673
|
+
'fileEarmarkRichtext': '\uf383',
|
|
674
|
+
'fileEarmarkRuledFill': '\uf384',
|
|
675
|
+
'fileEarmarkRuled': '\uf385',
|
|
676
|
+
'fileEarmarkSlidesFill': '\uf386',
|
|
677
|
+
'fileEarmarkSlides': '\uf387',
|
|
678
|
+
'fileEarmarkSpreadsheetFill': '\uf388',
|
|
679
|
+
'fileEarmarkSpreadsheet': '\uf389',
|
|
680
|
+
'fileEarmarkTextFill': '\uf38a',
|
|
681
|
+
'fileEarmarkText': '\uf38b',
|
|
682
|
+
'fileEarmarkWordFill': '\uf38c',
|
|
683
|
+
'fileEarmarkWord': '\uf38d',
|
|
684
|
+
'fileEarmarkXFill': '\uf38e',
|
|
685
|
+
'fileEarmarkX': '\uf38f',
|
|
686
|
+
'fileEarmarkZipFill': '\uf390',
|
|
687
|
+
'fileEarmarkZip': '\uf391',
|
|
688
|
+
'fileEarmark': '\uf392',
|
|
689
|
+
'fileEaselFill': '\uf393',
|
|
690
|
+
'fileEasel': '\uf394',
|
|
691
|
+
'fileExcelFill': '\uf395',
|
|
692
|
+
'fileExcel': '\uf396',
|
|
693
|
+
'fileFill': '\uf397',
|
|
694
|
+
'fileFontFill': '\uf398',
|
|
695
|
+
'fileFont': '\uf399',
|
|
696
|
+
'fileImageFill': '\uf39a',
|
|
697
|
+
'fileImage': '\uf39b',
|
|
698
|
+
'fileLockFill': '\uf39c',
|
|
699
|
+
'fileLock': '\uf39d',
|
|
700
|
+
'fileLock2Fill': '\uf39e',
|
|
701
|
+
'fileLock2': '\uf39f',
|
|
702
|
+
'fileMedicalFill': '\uf3a0',
|
|
703
|
+
'fileMedical': '\uf3a1',
|
|
704
|
+
'fileMinusFill': '\uf3a2',
|
|
705
|
+
'fileMinus': '\uf3a3',
|
|
706
|
+
'fileMusicFill': '\uf3a4',
|
|
707
|
+
'fileMusic': '\uf3a5',
|
|
708
|
+
'filePersonFill': '\uf3a6',
|
|
709
|
+
'filePerson': '\uf3a7',
|
|
710
|
+
'filePlayFill': '\uf3a8',
|
|
711
|
+
'filePlay': '\uf3a9',
|
|
712
|
+
'filePlusFill': '\uf3aa',
|
|
713
|
+
'filePlus': '\uf3ab',
|
|
714
|
+
'filePostFill': '\uf3ac',
|
|
715
|
+
'filePost': '\uf3ad',
|
|
716
|
+
'filePptFill': '\uf3ae',
|
|
717
|
+
'filePpt': '\uf3af',
|
|
718
|
+
'fileRichtextFill': '\uf3b0',
|
|
719
|
+
'fileRichtext': '\uf3b1',
|
|
720
|
+
'fileRuledFill': '\uf3b2',
|
|
721
|
+
'fileRuled': '\uf3b3',
|
|
722
|
+
'fileSlidesFill': '\uf3b4',
|
|
723
|
+
'fileSlides': '\uf3b5',
|
|
724
|
+
'fileSpreadsheetFill': '\uf3b6',
|
|
725
|
+
'fileSpreadsheet': '\uf3b7',
|
|
726
|
+
'fileTextFill': '\uf3b8',
|
|
727
|
+
'fileText': '\uf3b9',
|
|
728
|
+
'fileWordFill': '\uf3ba',
|
|
729
|
+
'fileWord': '\uf3bb',
|
|
730
|
+
'fileXFill': '\uf3bc',
|
|
731
|
+
'fileX': '\uf3bd',
|
|
732
|
+
'fileZipFill': '\uf3be',
|
|
733
|
+
'fileZip': '\uf3bf',
|
|
734
|
+
'file': '\uf3c0',
|
|
735
|
+
'filesAlt': '\uf3c1',
|
|
736
|
+
'files': '\uf3c2',
|
|
737
|
+
'film': '\uf3c3',
|
|
738
|
+
'filterCircleFill': '\uf3c4',
|
|
739
|
+
'filterCircle': '\uf3c5',
|
|
740
|
+
'filterLeft': '\uf3c6',
|
|
741
|
+
'filterRight': '\uf3c7',
|
|
742
|
+
'filterSquareFill': '\uf3c8',
|
|
743
|
+
'filterSquare': '\uf3c9',
|
|
744
|
+
'filter': '\uf3ca',
|
|
745
|
+
'flagFill': '\uf3cb',
|
|
746
|
+
'flag': '\uf3cc',
|
|
747
|
+
'flower1': '\uf3cd',
|
|
748
|
+
'flower2': '\uf3ce',
|
|
749
|
+
'flower3': '\uf3cf',
|
|
750
|
+
'folderCheck': '\uf3d0',
|
|
751
|
+
'folderFill': '\uf3d1',
|
|
752
|
+
'folderMinus': '\uf3d2',
|
|
753
|
+
'folderPlus': '\uf3d3',
|
|
754
|
+
'folderSymlinkFill': '\uf3d4',
|
|
755
|
+
'folderSymlink': '\uf3d5',
|
|
756
|
+
'folderX': '\uf3d6',
|
|
757
|
+
'folder': '\uf3d7',
|
|
758
|
+
'folder2Open': '\uf3d8',
|
|
759
|
+
'folder2': '\uf3d9',
|
|
760
|
+
'fonts': '\uf3da',
|
|
761
|
+
'forwardFill': '\uf3db',
|
|
762
|
+
'forward': '\uf3dc',
|
|
763
|
+
'front': '\uf3dd',
|
|
764
|
+
'fullscreenExit': '\uf3de',
|
|
765
|
+
'fullscreen': '\uf3df',
|
|
766
|
+
'funnelFill': '\uf3e0',
|
|
767
|
+
'funnel': '\uf3e1',
|
|
768
|
+
'gearFill': '\uf3e2',
|
|
769
|
+
'gearWideConnected': '\uf3e3',
|
|
770
|
+
'gearWide': '\uf3e4',
|
|
771
|
+
'gear': '\uf3e5',
|
|
772
|
+
'gem': '\uf3e6',
|
|
773
|
+
'geoAltFill': '\uf3e7',
|
|
774
|
+
'geoAlt': '\uf3e8',
|
|
775
|
+
'geoFill': '\uf3e9',
|
|
776
|
+
'geo': '\uf3ea',
|
|
777
|
+
'giftFill': '\uf3eb',
|
|
778
|
+
'gift': '\uf3ec',
|
|
779
|
+
'github': '\uf3ed',
|
|
780
|
+
'globe': '\uf3ee',
|
|
781
|
+
'globe2': '\uf3ef',
|
|
782
|
+
'google': '\uf3f0',
|
|
783
|
+
'graphDown': '\uf3f1',
|
|
784
|
+
'graphUp': '\uf3f2',
|
|
785
|
+
'grid1x2Fill': '\uf3f3',
|
|
786
|
+
'grid1x2': '\uf3f4',
|
|
787
|
+
'grid3x2GapFill': '\uf3f5',
|
|
788
|
+
'grid3x2Gap': '\uf3f6',
|
|
789
|
+
'grid3x2': '\uf3f7',
|
|
790
|
+
'grid3x3GapFill': '\uf3f8',
|
|
791
|
+
'grid3x3Gap': '\uf3f9',
|
|
792
|
+
'grid3x3': '\uf3fa',
|
|
793
|
+
'gridFill': '\uf3fb',
|
|
794
|
+
'grid': '\uf3fc',
|
|
795
|
+
'gripHorizontal': '\uf3fd',
|
|
796
|
+
'gripVertical': '\uf3fe',
|
|
797
|
+
'hammer': '\uf3ff',
|
|
798
|
+
'handIndexFill': '\uf400',
|
|
799
|
+
'handIndexThumbFill': '\uf401',
|
|
800
|
+
'handIndexThumb': '\uf402',
|
|
801
|
+
'handIndex': '\uf403',
|
|
802
|
+
'handThumbsDownFill': '\uf404',
|
|
803
|
+
'handThumbsDown': '\uf405',
|
|
804
|
+
'handThumbsUpFill': '\uf406',
|
|
805
|
+
'handThumbsUp': '\uf407',
|
|
806
|
+
'handbagFill': '\uf408',
|
|
807
|
+
'handbag': '\uf409',
|
|
808
|
+
'hash': '\uf40a',
|
|
809
|
+
'hddFill': '\uf40b',
|
|
810
|
+
'hddNetworkFill': '\uf40c',
|
|
811
|
+
'hddNetwork': '\uf40d',
|
|
812
|
+
'hddRackFill': '\uf40e',
|
|
813
|
+
'hddRack': '\uf40f',
|
|
814
|
+
'hddStackFill': '\uf410',
|
|
815
|
+
'hddStack': '\uf411',
|
|
816
|
+
'hdd': '\uf412',
|
|
817
|
+
'headphones': '\uf413',
|
|
818
|
+
'headset': '\uf414',
|
|
819
|
+
'heartFill': '\uf415',
|
|
820
|
+
'heartHalf': '\uf416',
|
|
821
|
+
'heart': '\uf417',
|
|
822
|
+
'heptagonFill': '\uf418',
|
|
823
|
+
'heptagonHalf': '\uf419',
|
|
824
|
+
'heptagon': '\uf41a',
|
|
825
|
+
'hexagonFill': '\uf41b',
|
|
826
|
+
'hexagonHalf': '\uf41c',
|
|
827
|
+
'hexagon': '\uf41d',
|
|
828
|
+
'hourglassBottom': '\uf41e',
|
|
829
|
+
'hourglassSplit': '\uf41f',
|
|
830
|
+
'hourglassTop': '\uf420',
|
|
831
|
+
'hourglass': '\uf421',
|
|
832
|
+
'houseDoorFill': '\uf422',
|
|
833
|
+
'houseDoor': '\uf423',
|
|
834
|
+
'houseFill': '\uf424',
|
|
835
|
+
'house': '\uf425',
|
|
836
|
+
'hr': '\uf426',
|
|
837
|
+
'hurricane': '\uf427',
|
|
838
|
+
'imageAlt': '\uf428',
|
|
839
|
+
'imageFill': '\uf429',
|
|
840
|
+
'image': '\uf42a',
|
|
841
|
+
'images': '\uf42b',
|
|
842
|
+
'inboxFill': '\uf42c',
|
|
843
|
+
'inbox': '\uf42d',
|
|
844
|
+
'inboxesFill': '\uf42e',
|
|
845
|
+
'inboxes': '\uf42f',
|
|
846
|
+
'infoCircleFill': '\uf430',
|
|
847
|
+
'infoCircle': '\uf431',
|
|
848
|
+
'infoSquareFill': '\uf432',
|
|
849
|
+
'infoSquare': '\uf433',
|
|
850
|
+
'info': '\uf434',
|
|
851
|
+
'inputCursorText': '\uf435',
|
|
852
|
+
'inputCursor': '\uf436',
|
|
853
|
+
'instagram': '\uf437',
|
|
854
|
+
'intersect': '\uf438',
|
|
855
|
+
'journalAlbum': '\uf439',
|
|
856
|
+
'journalArrowDown': '\uf43a',
|
|
857
|
+
'journalArrowUp': '\uf43b',
|
|
858
|
+
'journalBookmarkFill': '\uf43c',
|
|
859
|
+
'journalBookmark': '\uf43d',
|
|
860
|
+
'journalCheck': '\uf43e',
|
|
861
|
+
'journalCode': '\uf43f',
|
|
862
|
+
'journalMedical': '\uf440',
|
|
863
|
+
'journalMinus': '\uf441',
|
|
864
|
+
'journalPlus': '\uf442',
|
|
865
|
+
'journalRichtext': '\uf443',
|
|
866
|
+
'journalText': '\uf444',
|
|
867
|
+
'journalX': '\uf445',
|
|
868
|
+
'journal': '\uf446',
|
|
869
|
+
'journals': '\uf447',
|
|
870
|
+
'joystick': '\uf448',
|
|
871
|
+
'justifyLeft': '\uf449',
|
|
872
|
+
'justifyRight': '\uf44a',
|
|
873
|
+
'justify': '\uf44b',
|
|
874
|
+
'kanbanFill': '\uf44c',
|
|
875
|
+
'kanban': '\uf44d',
|
|
876
|
+
'keyFill': '\uf44e',
|
|
877
|
+
'key': '\uf44f',
|
|
878
|
+
'keyboardFill': '\uf450',
|
|
879
|
+
'keyboard': '\uf451',
|
|
880
|
+
'ladder': '\uf452',
|
|
881
|
+
'lampFill': '\uf453',
|
|
882
|
+
'lamp': '\uf454',
|
|
883
|
+
'laptopFill': '\uf455',
|
|
884
|
+
'laptop': '\uf456',
|
|
885
|
+
'layerBackward': '\uf457',
|
|
886
|
+
'layerForward': '\uf458',
|
|
887
|
+
'layersFill': '\uf459',
|
|
888
|
+
'layersHalf': '\uf45a',
|
|
889
|
+
'layers': '\uf45b',
|
|
890
|
+
'layoutSidebarInsetReverse': '\uf45c',
|
|
891
|
+
'layoutSidebarInset': '\uf45d',
|
|
892
|
+
'layoutSidebarReverse': '\uf45e',
|
|
893
|
+
'layoutSidebar': '\uf45f',
|
|
894
|
+
'layoutSplit': '\uf460',
|
|
895
|
+
'layoutTextSidebarReverse': '\uf461',
|
|
896
|
+
'layoutTextSidebar': '\uf462',
|
|
897
|
+
'layoutTextWindowReverse': '\uf463',
|
|
898
|
+
'layoutTextWindow': '\uf464',
|
|
899
|
+
'layoutThreeColumns': '\uf465',
|
|
900
|
+
'layoutWtf': '\uf466',
|
|
901
|
+
'lifePreserver': '\uf467',
|
|
902
|
+
'lightbulbFill': '\uf468',
|
|
903
|
+
'lightbulbOffFill': '\uf469',
|
|
904
|
+
'lightbulbOff': '\uf46a',
|
|
905
|
+
'lightbulb': '\uf46b',
|
|
906
|
+
'lightningChargeFill': '\uf46c',
|
|
907
|
+
'lightningCharge': '\uf46d',
|
|
908
|
+
'lightningFill': '\uf46e',
|
|
909
|
+
'lightning': '\uf46f',
|
|
910
|
+
'link45deg': '\uf470',
|
|
911
|
+
'link': '\uf471',
|
|
912
|
+
'linkedin': '\uf472',
|
|
913
|
+
'listCheck': '\uf473',
|
|
914
|
+
'listNested': '\uf474',
|
|
915
|
+
'listOl': '\uf475',
|
|
916
|
+
'listStars': '\uf476',
|
|
917
|
+
'listTask': '\uf477',
|
|
918
|
+
'listUl': '\uf478',
|
|
919
|
+
'list': '\uf479',
|
|
920
|
+
'lockFill': '\uf47a',
|
|
921
|
+
'lock': '\uf47b',
|
|
922
|
+
'mailbox': '\uf47c',
|
|
923
|
+
'mailbox2': '\uf47d',
|
|
924
|
+
'mapFill': '\uf47e',
|
|
925
|
+
'map': '\uf47f',
|
|
926
|
+
'markdownFill': '\uf480',
|
|
927
|
+
'markdown': '\uf481',
|
|
928
|
+
'mask': '\uf482',
|
|
929
|
+
'megaphoneFill': '\uf483',
|
|
930
|
+
'megaphone': '\uf484',
|
|
931
|
+
'menuAppFill': '\uf485',
|
|
932
|
+
'menuApp': '\uf486',
|
|
933
|
+
'menuButtonFill': '\uf487',
|
|
934
|
+
'menuButtonWideFill': '\uf488',
|
|
935
|
+
'menuButtonWide': '\uf489',
|
|
936
|
+
'menuButton': '\uf48a',
|
|
937
|
+
'menuDown': '\uf48b',
|
|
938
|
+
'menuUp': '\uf48c',
|
|
939
|
+
'micFill': '\uf48d',
|
|
940
|
+
'micMuteFill': '\uf48e',
|
|
941
|
+
'micMute': '\uf48f',
|
|
942
|
+
'mic': '\uf490',
|
|
943
|
+
'minecartLoaded': '\uf491',
|
|
944
|
+
'minecart': '\uf492',
|
|
945
|
+
'moisture': '\uf493',
|
|
946
|
+
'moonFill': '\uf494',
|
|
947
|
+
'moonStarsFill': '\uf495',
|
|
948
|
+
'moonStars': '\uf496',
|
|
949
|
+
'moon': '\uf497',
|
|
950
|
+
'mouseFill': '\uf498',
|
|
951
|
+
'mouse': '\uf499',
|
|
952
|
+
'mouse2Fill': '\uf49a',
|
|
953
|
+
'mouse2': '\uf49b',
|
|
954
|
+
'mouse3Fill': '\uf49c',
|
|
955
|
+
'mouse3': '\uf49d',
|
|
956
|
+
'musicNoteBeamed': '\uf49e',
|
|
957
|
+
'musicNoteList': '\uf49f',
|
|
958
|
+
'musicNote': '\uf4a0',
|
|
959
|
+
'musicPlayerFill': '\uf4a1',
|
|
960
|
+
'musicPlayer': '\uf4a2',
|
|
961
|
+
'newspaper': '\uf4a3',
|
|
962
|
+
'nodeMinusFill': '\uf4a4',
|
|
963
|
+
'nodeMinus': '\uf4a5',
|
|
964
|
+
'nodePlusFill': '\uf4a6',
|
|
965
|
+
'nodePlus': '\uf4a7',
|
|
966
|
+
'nutFill': '\uf4a8',
|
|
967
|
+
'nut': '\uf4a9',
|
|
968
|
+
'octagonFill': '\uf4aa',
|
|
969
|
+
'octagonHalf': '\uf4ab',
|
|
970
|
+
'octagon': '\uf4ac',
|
|
971
|
+
'option': '\uf4ad',
|
|
972
|
+
'outlet': '\uf4ae',
|
|
973
|
+
'paintBucket': '\uf4af',
|
|
974
|
+
'paletteFill': '\uf4b0',
|
|
975
|
+
'palette': '\uf4b1',
|
|
976
|
+
'palette2': '\uf4b2',
|
|
977
|
+
'paperclip': '\uf4b3',
|
|
978
|
+
'paragraph': '\uf4b4',
|
|
979
|
+
'patchCheckFill': '\uf4b5',
|
|
980
|
+
'patchCheck': '\uf4b6',
|
|
981
|
+
'patchExclamationFill': '\uf4b7',
|
|
982
|
+
'patchExclamation': '\uf4b8',
|
|
983
|
+
'patchMinusFill': '\uf4b9',
|
|
984
|
+
'patchMinus': '\uf4ba',
|
|
985
|
+
'patchPlusFill': '\uf4bb',
|
|
986
|
+
'patchPlus': '\uf4bc',
|
|
987
|
+
'patchQuestionFill': '\uf4bd',
|
|
988
|
+
'patchQuestion': '\uf4be',
|
|
989
|
+
'pauseBtnFill': '\uf4bf',
|
|
990
|
+
'pauseBtn': '\uf4c0',
|
|
991
|
+
'pauseCircleFill': '\uf4c1',
|
|
992
|
+
'pauseCircle': '\uf4c2',
|
|
993
|
+
'pauseFill': '\uf4c3',
|
|
994
|
+
'pause': '\uf4c4',
|
|
995
|
+
'peaceFill': '\uf4c5',
|
|
996
|
+
'peace': '\uf4c6',
|
|
997
|
+
'penFill': '\uf4c7',
|
|
998
|
+
'pen': '\uf4c8',
|
|
999
|
+
'pencilFill': '\uf4c9',
|
|
1000
|
+
'pencilSquare': '\uf4ca',
|
|
1001
|
+
'pencil': '\uf4cb',
|
|
1002
|
+
'pentagonFill': '\uf4cc',
|
|
1003
|
+
'pentagonHalf': '\uf4cd',
|
|
1004
|
+
'pentagon': '\uf4ce',
|
|
1005
|
+
'peopleFill': '\uf4cf',
|
|
1006
|
+
'people': '\uf4d0',
|
|
1007
|
+
'percent': '\uf4d1',
|
|
1008
|
+
'personBadgeFill': '\uf4d2',
|
|
1009
|
+
'personBadge': '\uf4d3',
|
|
1010
|
+
'personBoundingBox': '\uf4d4',
|
|
1011
|
+
'personCheckFill': '\uf4d5',
|
|
1012
|
+
'personCheck': '\uf4d6',
|
|
1013
|
+
'personCircle': '\uf4d7',
|
|
1014
|
+
'personDashFill': '\uf4d8',
|
|
1015
|
+
'personDash': '\uf4d9',
|
|
1016
|
+
'personFill': '\uf4da',
|
|
1017
|
+
'personLinesFill': '\uf4db',
|
|
1018
|
+
'personPlusFill': '\uf4dc',
|
|
1019
|
+
'personPlus': '\uf4dd',
|
|
1020
|
+
'personSquare': '\uf4de',
|
|
1021
|
+
'personXFill': '\uf4df',
|
|
1022
|
+
'personX': '\uf4e0',
|
|
1023
|
+
'person': '\uf4e1',
|
|
1024
|
+
'phoneFill': '\uf4e2',
|
|
1025
|
+
'phoneLandscapeFill': '\uf4e3',
|
|
1026
|
+
'phoneLandscape': '\uf4e4',
|
|
1027
|
+
'phoneVibrateFill': '\uf4e5',
|
|
1028
|
+
'phoneVibrate': '\uf4e6',
|
|
1029
|
+
'phone': '\uf4e7',
|
|
1030
|
+
'pieChartFill': '\uf4e8',
|
|
1031
|
+
'pieChart': '\uf4e9',
|
|
1032
|
+
'pinAngleFill': '\uf4ea',
|
|
1033
|
+
'pinAngle': '\uf4eb',
|
|
1034
|
+
'pinFill': '\uf4ec',
|
|
1035
|
+
'pin': '\uf4ed',
|
|
1036
|
+
'pipFill': '\uf4ee',
|
|
1037
|
+
'pip': '\uf4ef',
|
|
1038
|
+
'playBtnFill': '\uf4f0',
|
|
1039
|
+
'playBtn': '\uf4f1',
|
|
1040
|
+
'playCircleFill': '\uf4f2',
|
|
1041
|
+
'playCircle': '\uf4f3',
|
|
1042
|
+
'playFill': '\uf4f4',
|
|
1043
|
+
'play': '\uf4f5',
|
|
1044
|
+
'plugFill': '\uf4f6',
|
|
1045
|
+
'plug': '\uf4f7',
|
|
1046
|
+
'plusCircleDotted': '\uf4f8',
|
|
1047
|
+
'plusCircleFill': '\uf4f9',
|
|
1048
|
+
'plusCircle': '\uf4fa',
|
|
1049
|
+
'plusSquareDotted': '\uf4fb',
|
|
1050
|
+
'plusSquareFill': '\uf4fc',
|
|
1051
|
+
'plusSquare': '\uf4fd',
|
|
1052
|
+
'plus': '\uf4fe',
|
|
1053
|
+
'power': '\uf4ff',
|
|
1054
|
+
'printerFill': '\uf500',
|
|
1055
|
+
'printer': '\uf501',
|
|
1056
|
+
'puzzleFill': '\uf502',
|
|
1057
|
+
'puzzle': '\uf503',
|
|
1058
|
+
'questionCircleFill': '\uf504',
|
|
1059
|
+
'questionCircle': '\uf505',
|
|
1060
|
+
'questionDiamondFill': '\uf506',
|
|
1061
|
+
'questionDiamond': '\uf507',
|
|
1062
|
+
'questionOctagonFill': '\uf508',
|
|
1063
|
+
'questionOctagon': '\uf509',
|
|
1064
|
+
'questionSquareFill': '\uf50a',
|
|
1065
|
+
'questionSquare': '\uf50b',
|
|
1066
|
+
'question': '\uf50c',
|
|
1067
|
+
'rainbow': '\uf50d',
|
|
1068
|
+
'receiptCutoff': '\uf50e',
|
|
1069
|
+
'receipt': '\uf50f',
|
|
1070
|
+
'reception0': '\uf510',
|
|
1071
|
+
'reception1': '\uf511',
|
|
1072
|
+
'reception2': '\uf512',
|
|
1073
|
+
'reception3': '\uf513',
|
|
1074
|
+
'reception4': '\uf514',
|
|
1075
|
+
'recordBtnFill': '\uf515',
|
|
1076
|
+
'recordBtn': '\uf516',
|
|
1077
|
+
'recordCircleFill': '\uf517',
|
|
1078
|
+
'recordCircle': '\uf518',
|
|
1079
|
+
'recordFill': '\uf519',
|
|
1080
|
+
'record': '\uf51a',
|
|
1081
|
+
'record2Fill': '\uf51b',
|
|
1082
|
+
'record2': '\uf51c',
|
|
1083
|
+
'replyAllFill': '\uf51d',
|
|
1084
|
+
'replyAll': '\uf51e',
|
|
1085
|
+
'replyFill': '\uf51f',
|
|
1086
|
+
'reply': '\uf520',
|
|
1087
|
+
'rssFill': '\uf521',
|
|
1088
|
+
'rss': '\uf522',
|
|
1089
|
+
'rulers': '\uf523',
|
|
1090
|
+
'saveFill': '\uf524',
|
|
1091
|
+
'save': '\uf525',
|
|
1092
|
+
'save2Fill': '\uf526',
|
|
1093
|
+
'save2': '\uf527',
|
|
1094
|
+
'scissors': '\uf528',
|
|
1095
|
+
'screwdriver': '\uf529',
|
|
1096
|
+
'search': '\uf52a',
|
|
1097
|
+
'segmentedNav': '\uf52b',
|
|
1098
|
+
'server': '\uf52c',
|
|
1099
|
+
'shareFill': '\uf52d',
|
|
1100
|
+
'share': '\uf52e',
|
|
1101
|
+
'shieldCheck': '\uf52f',
|
|
1102
|
+
'shieldExclamation': '\uf530',
|
|
1103
|
+
'shieldFillCheck': '\uf531',
|
|
1104
|
+
'shieldFillExclamation': '\uf532',
|
|
1105
|
+
'shieldFillMinus': '\uf533',
|
|
1106
|
+
'shieldFillPlus': '\uf534',
|
|
1107
|
+
'shieldFillX': '\uf535',
|
|
1108
|
+
'shieldFill': '\uf536',
|
|
1109
|
+
'shieldLockFill': '\uf537',
|
|
1110
|
+
'shieldLock': '\uf538',
|
|
1111
|
+
'shieldMinus': '\uf539',
|
|
1112
|
+
'shieldPlus': '\uf53a',
|
|
1113
|
+
'shieldShaded': '\uf53b',
|
|
1114
|
+
'shieldSlashFill': '\uf53c',
|
|
1115
|
+
'shieldSlash': '\uf53d',
|
|
1116
|
+
'shieldX': '\uf53e',
|
|
1117
|
+
'shield': '\uf53f',
|
|
1118
|
+
'shiftFill': '\uf540',
|
|
1119
|
+
'shift': '\uf541',
|
|
1120
|
+
'shopWindow': '\uf542',
|
|
1121
|
+
'shop': '\uf543',
|
|
1122
|
+
'shuffle': '\uf544',
|
|
1123
|
+
'signpost2Fill': '\uf545',
|
|
1124
|
+
'signpost2': '\uf546',
|
|
1125
|
+
'signpostFill': '\uf547',
|
|
1126
|
+
'signpostSplitFill': '\uf548',
|
|
1127
|
+
'signpostSplit': '\uf549',
|
|
1128
|
+
'signpost': '\uf54a',
|
|
1129
|
+
'simFill': '\uf54b',
|
|
1130
|
+
'sim': '\uf54c',
|
|
1131
|
+
'skipBackwardBtnFill': '\uf54d',
|
|
1132
|
+
'skipBackwardBtn': '\uf54e',
|
|
1133
|
+
'skipBackwardCircleFill': '\uf54f',
|
|
1134
|
+
'skipBackwardCircle': '\uf550',
|
|
1135
|
+
'skipBackwardFill': '\uf551',
|
|
1136
|
+
'skipBackward': '\uf552',
|
|
1137
|
+
'skipEndBtnFill': '\uf553',
|
|
1138
|
+
'skipEndBtn': '\uf554',
|
|
1139
|
+
'skipEndCircleFill': '\uf555',
|
|
1140
|
+
'skipEndCircle': '\uf556',
|
|
1141
|
+
'skipEndFill': '\uf557',
|
|
1142
|
+
'skipEnd': '\uf558',
|
|
1143
|
+
'skipForwardBtnFill': '\uf559',
|
|
1144
|
+
'skipForwardBtn': '\uf55a',
|
|
1145
|
+
'skipForwardCircleFill': '\uf55b',
|
|
1146
|
+
'skipForwardCircle': '\uf55c',
|
|
1147
|
+
'skipForwardFill': '\uf55d',
|
|
1148
|
+
'skipForward': '\uf55e',
|
|
1149
|
+
'skipStartBtnFill': '\uf55f',
|
|
1150
|
+
'skipStartBtn': '\uf560',
|
|
1151
|
+
'skipStartCircleFill': '\uf561',
|
|
1152
|
+
'skipStartCircle': '\uf562',
|
|
1153
|
+
'skipStartFill': '\uf563',
|
|
1154
|
+
'skipStart': '\uf564',
|
|
1155
|
+
'slack': '\uf565',
|
|
1156
|
+
'slashCircleFill': '\uf566',
|
|
1157
|
+
'slashCircle': '\uf567',
|
|
1158
|
+
'slashSquareFill': '\uf568',
|
|
1159
|
+
'slashSquare': '\uf569',
|
|
1160
|
+
'slash': '\uf56a',
|
|
1161
|
+
'sliders': '\uf56b',
|
|
1162
|
+
'smartwatch': '\uf56c',
|
|
1163
|
+
'snow': '\uf56d',
|
|
1164
|
+
'snow2': '\uf56e',
|
|
1165
|
+
'snow3': '\uf56f',
|
|
1166
|
+
'sortAlphaDownAlt': '\uf570',
|
|
1167
|
+
'sortAlphaDown': '\uf571',
|
|
1168
|
+
'sortAlphaUpAlt': '\uf572',
|
|
1169
|
+
'sortAlphaUp': '\uf573',
|
|
1170
|
+
'sortDownAlt': '\uf574',
|
|
1171
|
+
'sortDown': '\uf575',
|
|
1172
|
+
'sortNumericDownAlt': '\uf576',
|
|
1173
|
+
'sortNumericDown': '\uf577',
|
|
1174
|
+
'sortNumericUpAlt': '\uf578',
|
|
1175
|
+
'sortNumericUp': '\uf579',
|
|
1176
|
+
'sortUpAlt': '\uf57a',
|
|
1177
|
+
'sortUp': '\uf57b',
|
|
1178
|
+
'soundwave': '\uf57c',
|
|
1179
|
+
'speakerFill': '\uf57d',
|
|
1180
|
+
'speaker': '\uf57e',
|
|
1181
|
+
'speedometer': '\uf57f',
|
|
1182
|
+
'speedometer2': '\uf580',
|
|
1183
|
+
'spellcheck': '\uf581',
|
|
1184
|
+
'squareFill': '\uf582',
|
|
1185
|
+
'squareHalf': '\uf583',
|
|
1186
|
+
'square': '\uf584',
|
|
1187
|
+
'stack': '\uf585',
|
|
1188
|
+
'starFill': '\uf586',
|
|
1189
|
+
'starHalf': '\uf587',
|
|
1190
|
+
'star': '\uf588',
|
|
1191
|
+
'stars': '\uf589',
|
|
1192
|
+
'stickiesFill': '\uf58a',
|
|
1193
|
+
'stickies': '\uf58b',
|
|
1194
|
+
'stickyFill': '\uf58c',
|
|
1195
|
+
'sticky': '\uf58d',
|
|
1196
|
+
'stopBtnFill': '\uf58e',
|
|
1197
|
+
'stopBtn': '\uf58f',
|
|
1198
|
+
'stopCircleFill': '\uf590',
|
|
1199
|
+
'stopCircle': '\uf591',
|
|
1200
|
+
'stopFill': '\uf592',
|
|
1201
|
+
'stop': '\uf593',
|
|
1202
|
+
'stoplightsFill': '\uf594',
|
|
1203
|
+
'stoplights': '\uf595',
|
|
1204
|
+
'stopwatchFill': '\uf596',
|
|
1205
|
+
'stopwatch': '\uf597',
|
|
1206
|
+
'subtract': '\uf598',
|
|
1207
|
+
'suitClubFill': '\uf599',
|
|
1208
|
+
'suitClub': '\uf59a',
|
|
1209
|
+
'suitDiamondFill': '\uf59b',
|
|
1210
|
+
'suitDiamond': '\uf59c',
|
|
1211
|
+
'suitHeartFill': '\uf59d',
|
|
1212
|
+
'suitHeart': '\uf59e',
|
|
1213
|
+
'suitSpadeFill': '\uf59f',
|
|
1214
|
+
'suitSpade': '\uf5a0',
|
|
1215
|
+
'sunFill': '\uf5a1',
|
|
1216
|
+
'sun': '\uf5a2',
|
|
1217
|
+
'sunglasses': '\uf5a3',
|
|
1218
|
+
'sunriseFill': '\uf5a4',
|
|
1219
|
+
'sunrise': '\uf5a5',
|
|
1220
|
+
'sunsetFill': '\uf5a6',
|
|
1221
|
+
'sunset': '\uf5a7',
|
|
1222
|
+
'symmetryHorizontal': '\uf5a8',
|
|
1223
|
+
'symmetryVertical': '\uf5a9',
|
|
1224
|
+
'table': '\uf5aa',
|
|
1225
|
+
'tabletFill': '\uf5ab',
|
|
1226
|
+
'tabletLandscapeFill': '\uf5ac',
|
|
1227
|
+
'tabletLandscape': '\uf5ad',
|
|
1228
|
+
'tablet': '\uf5ae',
|
|
1229
|
+
'tagFill': '\uf5af',
|
|
1230
|
+
'tag': '\uf5b0',
|
|
1231
|
+
'tagsFill': '\uf5b1',
|
|
1232
|
+
'tags': '\uf5b2',
|
|
1233
|
+
'telegram': '\uf5b3',
|
|
1234
|
+
'telephoneFill': '\uf5b4',
|
|
1235
|
+
'telephoneForwardFill': '\uf5b5',
|
|
1236
|
+
'telephoneForward': '\uf5b6',
|
|
1237
|
+
'telephoneInboundFill': '\uf5b7',
|
|
1238
|
+
'telephoneInbound': '\uf5b8',
|
|
1239
|
+
'telephoneMinusFill': '\uf5b9',
|
|
1240
|
+
'telephoneMinus': '\uf5ba',
|
|
1241
|
+
'telephoneOutboundFill': '\uf5bb',
|
|
1242
|
+
'telephoneOutbound': '\uf5bc',
|
|
1243
|
+
'telephonePlusFill': '\uf5bd',
|
|
1244
|
+
'telephonePlus': '\uf5be',
|
|
1245
|
+
'telephoneXFill': '\uf5bf',
|
|
1246
|
+
'telephoneX': '\uf5c0',
|
|
1247
|
+
'telephone': '\uf5c1',
|
|
1248
|
+
'terminalFill': '\uf5c2',
|
|
1249
|
+
'terminal': '\uf5c3',
|
|
1250
|
+
'textCenter': '\uf5c4',
|
|
1251
|
+
'textIndentLeft': '\uf5c5',
|
|
1252
|
+
'textIndentRight': '\uf5c6',
|
|
1253
|
+
'textLeft': '\uf5c7',
|
|
1254
|
+
'textParagraph': '\uf5c8',
|
|
1255
|
+
'textRight': '\uf5c9',
|
|
1256
|
+
'textareaResize': '\uf5ca',
|
|
1257
|
+
'textareaT': '\uf5cb',
|
|
1258
|
+
'textarea': '\uf5cc',
|
|
1259
|
+
'thermometerHalf': '\uf5cd',
|
|
1260
|
+
'thermometerHigh': '\uf5ce',
|
|
1261
|
+
'thermometerLow': '\uf5cf',
|
|
1262
|
+
'thermometerSnow': '\uf5d0',
|
|
1263
|
+
'thermometerSun': '\uf5d1',
|
|
1264
|
+
'thermometer': '\uf5d2',
|
|
1265
|
+
'threeDotsVertical': '\uf5d3',
|
|
1266
|
+
'threeDots': '\uf5d4',
|
|
1267
|
+
'toggleOff': '\uf5d5',
|
|
1268
|
+
'toggleOn': '\uf5d6',
|
|
1269
|
+
'toggle2Off': '\uf5d7',
|
|
1270
|
+
'toggle2On': '\uf5d8',
|
|
1271
|
+
'toggles': '\uf5d9',
|
|
1272
|
+
'toggles2': '\uf5da',
|
|
1273
|
+
'tools': '\uf5db',
|
|
1274
|
+
'tornado': '\uf5dc',
|
|
1275
|
+
'trashFill': '\uf5dd',
|
|
1276
|
+
'trash': '\uf5de',
|
|
1277
|
+
'trash2Fill': '\uf5df',
|
|
1278
|
+
'trash2': '\uf5e0',
|
|
1279
|
+
'treeFill': '\uf5e1',
|
|
1280
|
+
'tree': '\uf5e2',
|
|
1281
|
+
'triangleFill': '\uf5e3',
|
|
1282
|
+
'triangleHalf': '\uf5e4',
|
|
1283
|
+
'triangle': '\uf5e5',
|
|
1284
|
+
'trophyFill': '\uf5e6',
|
|
1285
|
+
'trophy': '\uf5e7',
|
|
1286
|
+
'tropicalStorm': '\uf5e8',
|
|
1287
|
+
'truckFlatbed': '\uf5e9',
|
|
1288
|
+
'truck': '\uf5ea',
|
|
1289
|
+
'tsunami': '\uf5eb',
|
|
1290
|
+
'tvFill': '\uf5ec',
|
|
1291
|
+
'tv': '\uf5ed',
|
|
1292
|
+
'twitch': '\uf5ee',
|
|
1293
|
+
'twitter': '\uf5ef',
|
|
1294
|
+
'typeBold': '\uf5f0',
|
|
1295
|
+
'typeH1': '\uf5f1',
|
|
1296
|
+
'typeH2': '\uf5f2',
|
|
1297
|
+
'typeH3': '\uf5f3',
|
|
1298
|
+
'typeItalic': '\uf5f4',
|
|
1299
|
+
'typeStrikethrough': '\uf5f5',
|
|
1300
|
+
'typeUnderline': '\uf5f6',
|
|
1301
|
+
'type': '\uf5f7',
|
|
1302
|
+
'uiChecksGrid': '\uf5f8',
|
|
1303
|
+
'uiChecks': '\uf5f9',
|
|
1304
|
+
'uiRadiosGrid': '\uf5fa',
|
|
1305
|
+
'uiRadios': '\uf5fb',
|
|
1306
|
+
'umbrellaFill': '\uf5fc',
|
|
1307
|
+
'umbrella': '\uf5fd',
|
|
1308
|
+
'union': '\uf5fe',
|
|
1309
|
+
'unlockFill': '\uf5ff',
|
|
1310
|
+
'unlock': '\uf600',
|
|
1311
|
+
'upcScan': '\uf601',
|
|
1312
|
+
'upc': '\uf602',
|
|
1313
|
+
'upload': '\uf603',
|
|
1314
|
+
'vectorPen': '\uf604',
|
|
1315
|
+
'viewList': '\uf605',
|
|
1316
|
+
'viewStacked': '\uf606',
|
|
1317
|
+
'vinylFill': '\uf607',
|
|
1318
|
+
'vinyl': '\uf608',
|
|
1319
|
+
'voicemail': '\uf609',
|
|
1320
|
+
'volumeDownFill': '\uf60a',
|
|
1321
|
+
'volumeDown': '\uf60b',
|
|
1322
|
+
'volumeMuteFill': '\uf60c',
|
|
1323
|
+
'volumeMute': '\uf60d',
|
|
1324
|
+
'volumeOffFill': '\uf60e',
|
|
1325
|
+
'volumeOff': '\uf60f',
|
|
1326
|
+
'volumeUpFill': '\uf610',
|
|
1327
|
+
'volumeUp': '\uf611',
|
|
1328
|
+
'vr': '\uf612',
|
|
1329
|
+
'walletFill': '\uf613',
|
|
1330
|
+
'wallet': '\uf614',
|
|
1331
|
+
'wallet2': '\uf615',
|
|
1332
|
+
'watch': '\uf616',
|
|
1333
|
+
'water': '\uf617',
|
|
1334
|
+
'whatsapp': '\uf618',
|
|
1335
|
+
'wifi1': '\uf619',
|
|
1336
|
+
'wifi2': '\uf61a',
|
|
1337
|
+
'wifiOff': '\uf61b',
|
|
1338
|
+
'wifi': '\uf61c',
|
|
1339
|
+
'wind': '\uf61d',
|
|
1340
|
+
'windowDock': '\uf61e',
|
|
1341
|
+
'windowSidebar': '\uf61f',
|
|
1342
|
+
'window': '\uf620',
|
|
1343
|
+
'wrench': '\uf621',
|
|
1344
|
+
'xCircleFill': '\uf622',
|
|
1345
|
+
'xCircle': '\uf623',
|
|
1346
|
+
'xDiamondFill': '\uf624',
|
|
1347
|
+
'xDiamond': '\uf625',
|
|
1348
|
+
'xOctagonFill': '\uf626',
|
|
1349
|
+
'xOctagon': '\uf627',
|
|
1350
|
+
'xSquareFill': '\uf628',
|
|
1351
|
+
'xSquare': '\uf629',
|
|
1352
|
+
'x': '\uf62a',
|
|
1353
|
+
'youtube': '\uf62b',
|
|
1354
|
+
'zoomIn': '\uf62c',
|
|
1355
|
+
'zoomOut': '\uf62d',
|
|
1356
|
+
'bank': '\uf62e',
|
|
1357
|
+
'bank2': '\uf62f',
|
|
1358
|
+
'bellSlashFill': '\uf630',
|
|
1359
|
+
'bellSlash': '\uf631',
|
|
1360
|
+
'cashCoin': '\uf632',
|
|
1361
|
+
'checkLg': '\uf633',
|
|
1362
|
+
'coin': '\uf634',
|
|
1363
|
+
'currencyBitcoin': '\uf635',
|
|
1364
|
+
'currencyDollar': '\uf636',
|
|
1365
|
+
'currencyEuro': '\uf637',
|
|
1366
|
+
'currencyExchange': '\uf638',
|
|
1367
|
+
'currencyPound': '\uf639',
|
|
1368
|
+
'currencyYen': '\uf63a',
|
|
1369
|
+
'dashLg': '\uf63b',
|
|
1370
|
+
'exclamationLg': '\uf63c',
|
|
1371
|
+
'fileEarmarkPdfFill': '\uf63d',
|
|
1372
|
+
'fileEarmarkPdf': '\uf63e',
|
|
1373
|
+
'filePdfFill': '\uf63f',
|
|
1374
|
+
'filePdf': '\uf640',
|
|
1375
|
+
'genderAmbiguous': '\uf641',
|
|
1376
|
+
'genderFemale': '\uf642',
|
|
1377
|
+
'genderMale': '\uf643',
|
|
1378
|
+
'genderTrans': '\uf644',
|
|
1379
|
+
'headsetVr': '\uf645',
|
|
1380
|
+
'infoLg': '\uf646',
|
|
1381
|
+
'mastodon': '\uf647',
|
|
1382
|
+
'messenger': '\uf648',
|
|
1383
|
+
'piggyBankFill': '\uf649',
|
|
1384
|
+
'piggyBank': '\uf64a',
|
|
1385
|
+
'pinMapFill': '\uf64b',
|
|
1386
|
+
'pinMap': '\uf64c',
|
|
1387
|
+
'plusLg': '\uf64d',
|
|
1388
|
+
'questionLg': '\uf64e',
|
|
1389
|
+
'recycle': '\uf64f',
|
|
1390
|
+
'reddit': '\uf650',
|
|
1391
|
+
'safeFill': '\uf651',
|
|
1392
|
+
'safe2Fill': '\uf652',
|
|
1393
|
+
'safe2': '\uf653',
|
|
1394
|
+
'sdCardFill': '\uf654',
|
|
1395
|
+
'sdCard': '\uf655',
|
|
1396
|
+
'skype': '\uf656',
|
|
1397
|
+
'slashLg': '\uf657',
|
|
1398
|
+
'translate': '\uf658',
|
|
1399
|
+
'xLg': '\uf659',
|
|
1400
|
+
'safe': '\uf65a',
|
|
1401
|
+
'apple': '\uf65b',
|
|
1402
|
+
'microsoft': '\uf65d',
|
|
1403
|
+
'windows': '\uf65e',
|
|
1404
|
+
'behance': '\uf65c',
|
|
1405
|
+
'dribbble': '\uf65f',
|
|
1406
|
+
'line': '\uf660',
|
|
1407
|
+
'medium': '\uf661',
|
|
1408
|
+
'paypal': '\uf662',
|
|
1409
|
+
'pinterest': '\uf663',
|
|
1410
|
+
'signal': '\uf664',
|
|
1411
|
+
'snapchat': '\uf665',
|
|
1412
|
+
'spotify': '\uf666',
|
|
1413
|
+
'stackOverflow': '\uf667',
|
|
1414
|
+
'strava': '\uf668',
|
|
1415
|
+
'wordpress': '\uf669',
|
|
1416
|
+
'vimeo': '\uf66a',
|
|
1417
|
+
'activity': '\uf66b',
|
|
1418
|
+
'easel2Fill': '\uf66c',
|
|
1419
|
+
'easel2': '\uf66d',
|
|
1420
|
+
'easel3Fill': '\uf66e',
|
|
1421
|
+
'easel3': '\uf66f',
|
|
1422
|
+
'fan': '\uf670',
|
|
1423
|
+
'fingerprint': '\uf671',
|
|
1424
|
+
'graphDownArrow': '\uf672',
|
|
1425
|
+
'graphUpArrow': '\uf673',
|
|
1426
|
+
'hypnotize': '\uf674',
|
|
1427
|
+
'magic': '\uf675',
|
|
1428
|
+
'personRolodex': '\uf676',
|
|
1429
|
+
'personVideo': '\uf677',
|
|
1430
|
+
'personVideo2': '\uf678',
|
|
1431
|
+
'personVideo3': '\uf679',
|
|
1432
|
+
'personWorkspace': '\uf67a',
|
|
1433
|
+
'radioactive': '\uf67b',
|
|
1434
|
+
'webcamFill': '\uf67c',
|
|
1435
|
+
'webcam': '\uf67d',
|
|
1436
|
+
'yinYang': '\uf67e',
|
|
1437
|
+
'bandaidFill': '\uf680',
|
|
1438
|
+
'bandaid': '\uf681',
|
|
1439
|
+
'bluetooth': '\uf682',
|
|
1440
|
+
'bodyText': '\uf683',
|
|
1441
|
+
'boombox': '\uf684',
|
|
1442
|
+
'boxes': '\uf685',
|
|
1443
|
+
'dpadFill': '\uf686',
|
|
1444
|
+
'dpad': '\uf687',
|
|
1445
|
+
'earFill': '\uf688',
|
|
1446
|
+
'ear': '\uf689',
|
|
1447
|
+
'envelopeCheck1': '\uf68a',
|
|
1448
|
+
'envelopeCheckFill': '\uf68b',
|
|
1449
|
+
'envelopeCheck': '\uf68c',
|
|
1450
|
+
'envelopeDash1': '\uf68d',
|
|
1451
|
+
'envelopeDashFill': '\uf68e',
|
|
1452
|
+
'envelopeDash': '\uf68f',
|
|
1453
|
+
'envelopeExclamation1': '\uf690',
|
|
1454
|
+
'envelopeExclamationFill': '\uf691',
|
|
1455
|
+
'envelopeExclamation': '\uf692',
|
|
1456
|
+
'envelopePlusFill': '\uf693',
|
|
1457
|
+
'envelopePlus': '\uf694',
|
|
1458
|
+
'envelopeSlash1': '\uf695',
|
|
1459
|
+
'envelopeSlashFill': '\uf696',
|
|
1460
|
+
'envelopeSlash': '\uf697',
|
|
1461
|
+
'envelopeX1': '\uf698',
|
|
1462
|
+
'envelopeXFill': '\uf699',
|
|
1463
|
+
'envelopeX': '\uf69a',
|
|
1464
|
+
'explicitFill': '\uf69b',
|
|
1465
|
+
'explicit': '\uf69c',
|
|
1466
|
+
'git': '\uf69d',
|
|
1467
|
+
'infinity': '\uf69e',
|
|
1468
|
+
'listColumnsReverse': '\uf69f',
|
|
1469
|
+
'listColumns': '\uf6a0',
|
|
1470
|
+
'meta': '\uf6a1',
|
|
1471
|
+
'mortorboardFill': '\uf6a2',
|
|
1472
|
+
'mortorboard': '\uf6a3',
|
|
1473
|
+
'nintendoSwitch': '\uf6a4',
|
|
1474
|
+
'pcDisplayHorizontal': '\uf6a5',
|
|
1475
|
+
'pcDisplay': '\uf6a6',
|
|
1476
|
+
'pcHorizontal': '\uf6a7',
|
|
1477
|
+
'pc': '\uf6a8',
|
|
1478
|
+
'playstation': '\uf6a9',
|
|
1479
|
+
'plusSlashMinus': '\uf6aa',
|
|
1480
|
+
'projectorFill': '\uf6ab',
|
|
1481
|
+
'projector': '\uf6ac',
|
|
1482
|
+
'qrCodeScan': '\uf6ad',
|
|
1483
|
+
'qrCode': '\uf6ae',
|
|
1484
|
+
'quora': '\uf6af',
|
|
1485
|
+
'quote': '\uf6b0',
|
|
1486
|
+
'robot': '\uf6b1',
|
|
1487
|
+
'sendCheckFill': '\uf6b2',
|
|
1488
|
+
'sendCheck': '\uf6b3',
|
|
1489
|
+
'sendDashFill': '\uf6b4',
|
|
1490
|
+
'sendDash': '\uf6b5',
|
|
1491
|
+
'sendExclamation1': '\uf6b6',
|
|
1492
|
+
'sendExclamationFill': '\uf6b7',
|
|
1493
|
+
'sendExclamation': '\uf6b8',
|
|
1494
|
+
'sendFill': '\uf6b9',
|
|
1495
|
+
'sendPlusFill': '\uf6ba',
|
|
1496
|
+
'sendPlus': '\uf6bb',
|
|
1497
|
+
'sendSlashFill': '\uf6bc',
|
|
1498
|
+
'sendSlash': '\uf6bd',
|
|
1499
|
+
'sendXFill': '\uf6be',
|
|
1500
|
+
'sendX': '\uf6bf',
|
|
1501
|
+
'send': '\uf6c0',
|
|
1502
|
+
'steam': '\uf6c1',
|
|
1503
|
+
'terminalDash1': '\uf6c2',
|
|
1504
|
+
'terminalDash': '\uf6c3',
|
|
1505
|
+
'terminalPlus': '\uf6c4',
|
|
1506
|
+
'terminalSplit': '\uf6c5',
|
|
1507
|
+
'ticketDetailedFill': '\uf6c6',
|
|
1508
|
+
'ticketDetailed': '\uf6c7',
|
|
1509
|
+
'ticketFill': '\uf6c8',
|
|
1510
|
+
'ticketPerforatedFill': '\uf6c9',
|
|
1511
|
+
'ticketPerforated': '\uf6ca',
|
|
1512
|
+
'ticket': '\uf6cb',
|
|
1513
|
+
'tiktok': '\uf6cc',
|
|
1514
|
+
'windowDash': '\uf6cd',
|
|
1515
|
+
'windowDesktop': '\uf6ce',
|
|
1516
|
+
'windowFullscreen': '\uf6cf',
|
|
1517
|
+
'windowPlus': '\uf6d0',
|
|
1518
|
+
'windowSplit': '\uf6d1',
|
|
1519
|
+
'windowStack': '\uf6d2',
|
|
1520
|
+
'windowX': '\uf6d3',
|
|
1521
|
+
'xbox': '\uf6d4',
|
|
1522
|
+
'ethernet': '\uf6d5',
|
|
1523
|
+
'hdmiFill': '\uf6d6',
|
|
1524
|
+
'hdmi': '\uf6d7',
|
|
1525
|
+
'usbCFill': '\uf6d8',
|
|
1526
|
+
'usbC': '\uf6d9',
|
|
1527
|
+
'usbFill': '\uf6da',
|
|
1528
|
+
'usbPlugFill': '\uf6db',
|
|
1529
|
+
'usbPlug': '\uf6dc',
|
|
1530
|
+
'usbSymbol': '\uf6dd',
|
|
1531
|
+
'usb': '\uf6de',
|
|
1532
|
+
'boomboxFill': '\uf6df',
|
|
1533
|
+
'displayport1': '\uf6e0',
|
|
1534
|
+
'displayport': '\uf6e1',
|
|
1535
|
+
'gpuCard': '\uf6e2',
|
|
1536
|
+
'memory': '\uf6e3',
|
|
1537
|
+
'modemFill': '\uf6e4',
|
|
1538
|
+
'modem': '\uf6e5',
|
|
1539
|
+
'motherboardFill': '\uf6e6',
|
|
1540
|
+
'motherboard': '\uf6e7',
|
|
1541
|
+
'opticalAudioFill': '\uf6e8',
|
|
1542
|
+
'opticalAudio': '\uf6e9',
|
|
1543
|
+
'pciCard': '\uf6ea',
|
|
1544
|
+
'routerFill': '\uf6eb',
|
|
1545
|
+
'router': '\uf6ec',
|
|
1546
|
+
'ssdFill': '\uf6ed',
|
|
1547
|
+
'ssd': '\uf6ee',
|
|
1548
|
+
'thunderboltFill': '\uf6ef',
|
|
1549
|
+
'thunderbolt': '\uf6f0',
|
|
1550
|
+
'usbDriveFill': '\uf6f1',
|
|
1551
|
+
'usbDrive': '\uf6f2',
|
|
1552
|
+
'usbMicroFill': '\uf6f3',
|
|
1553
|
+
'usbMicro': '\uf6f4',
|
|
1554
|
+
'usbMiniFill': '\uf6f5',
|
|
1555
|
+
'usbMini': '\uf6f6',
|
|
1556
|
+
'cloudHaze2': '\uf6f7',
|
|
1557
|
+
'deviceHddFill': '\uf6f8',
|
|
1558
|
+
'deviceHdd': '\uf6f9',
|
|
1559
|
+
'deviceSsdFill': '\uf6fa',
|
|
1560
|
+
'deviceSsd': '\uf6fb',
|
|
1561
|
+
'displayportFill': '\uf6fc',
|
|
1562
|
+
'mortarboardFill': '\uf6fd',
|
|
1563
|
+
'mortarboard': '\uf6fe',
|
|
1564
|
+
'terminalX': '\uf6ff',
|
|
1565
|
+
'arrowThroughHeartFill': '\uf700',
|
|
1566
|
+
'arrowThroughHeart': '\uf701',
|
|
1567
|
+
'badgeSdFill': '\uf702',
|
|
1568
|
+
'badgeSd': '\uf703',
|
|
1569
|
+
'bagHeartFill': '\uf704',
|
|
1570
|
+
'bagHeart': '\uf705',
|
|
1571
|
+
'balloonFill': '\uf706',
|
|
1572
|
+
'balloonHeartFill': '\uf707',
|
|
1573
|
+
'balloonHeart': '\uf708',
|
|
1574
|
+
'balloon': '\uf709',
|
|
1575
|
+
'box2Fill': '\uf70a',
|
|
1576
|
+
'box2HeartFill': '\uf70b',
|
|
1577
|
+
'box2Heart': '\uf70c',
|
|
1578
|
+
'box2': '\uf70d',
|
|
1579
|
+
'bracesAsterisk': '\uf70e',
|
|
1580
|
+
'calendarHeartFill': '\uf70f',
|
|
1581
|
+
'calendarHeart': '\uf710',
|
|
1582
|
+
'calendar2HeartFill': '\uf711',
|
|
1583
|
+
'calendar2Heart': '\uf712',
|
|
1584
|
+
'chatHeartFill': '\uf713',
|
|
1585
|
+
'chatHeart': '\uf714',
|
|
1586
|
+
'chatLeftHeartFill': '\uf715',
|
|
1587
|
+
'chatLeftHeart': '\uf716',
|
|
1588
|
+
'chatRightHeartFill': '\uf717',
|
|
1589
|
+
'chatRightHeart': '\uf718',
|
|
1590
|
+
'chatSquareHeartFill': '\uf719',
|
|
1591
|
+
'chatSquareHeart': '\uf71a',
|
|
1592
|
+
'clipboardCheckFill': '\uf71b',
|
|
1593
|
+
'clipboardDataFill': '\uf71c',
|
|
1594
|
+
'clipboardFill': '\uf71d',
|
|
1595
|
+
'clipboardHeartFill': '\uf71e',
|
|
1596
|
+
'clipboardHeart': '\uf71f',
|
|
1597
|
+
'clipboardMinusFill': '\uf720',
|
|
1598
|
+
'clipboardPlusFill': '\uf721',
|
|
1599
|
+
'clipboardPulse': '\uf722',
|
|
1600
|
+
'clipboardXFill': '\uf723',
|
|
1601
|
+
'clipboard2CheckFill': '\uf724',
|
|
1602
|
+
'clipboard2Check': '\uf725',
|
|
1603
|
+
'clipboard2DataFill': '\uf726',
|
|
1604
|
+
'clipboard2Data': '\uf727',
|
|
1605
|
+
'clipboard2Fill': '\uf728',
|
|
1606
|
+
'clipboard2HeartFill': '\uf729',
|
|
1607
|
+
'clipboard2Heart': '\uf72a',
|
|
1608
|
+
'clipboard2MinusFill': '\uf72b',
|
|
1609
|
+
'clipboard2Minus': '\uf72c',
|
|
1610
|
+
'clipboard2PlusFill': '\uf72d',
|
|
1611
|
+
'clipboard2Plus': '\uf72e',
|
|
1612
|
+
'clipboard2PulseFill': '\uf72f',
|
|
1613
|
+
'clipboard2Pulse': '\uf730',
|
|
1614
|
+
'clipboard2XFill': '\uf731',
|
|
1615
|
+
'clipboard2X': '\uf732',
|
|
1616
|
+
'clipboard2': '\uf733',
|
|
1617
|
+
'emojiKissFill': '\uf734',
|
|
1618
|
+
'emojiKiss': '\uf735',
|
|
1619
|
+
'envelopeHeartFill': '\uf736',
|
|
1620
|
+
'envelopeHeart': '\uf737',
|
|
1621
|
+
'envelopeOpenHeartFill': '\uf738',
|
|
1622
|
+
'envelopeOpenHeart': '\uf739',
|
|
1623
|
+
'envelopePaperFill': '\uf73a',
|
|
1624
|
+
'envelopePaperHeartFill': '\uf73b',
|
|
1625
|
+
'envelopePaperHeart': '\uf73c',
|
|
1626
|
+
'envelopePaper': '\uf73d',
|
|
1627
|
+
'filetypeAac': '\uf73e',
|
|
1628
|
+
'filetypeAi': '\uf73f',
|
|
1629
|
+
'filetypeBmp': '\uf740',
|
|
1630
|
+
'filetypeCs': '\uf741',
|
|
1631
|
+
'filetypeCss': '\uf742',
|
|
1632
|
+
'filetypeCsv': '\uf743',
|
|
1633
|
+
'filetypeDoc': '\uf744',
|
|
1634
|
+
'filetypeDocx': '\uf745',
|
|
1635
|
+
'filetypeExe': '\uf746',
|
|
1636
|
+
'filetypeGif': '\uf747',
|
|
1637
|
+
'filetypeHeic': '\uf748',
|
|
1638
|
+
'filetypeHtml': '\uf749',
|
|
1639
|
+
'filetypeJava': '\uf74a',
|
|
1640
|
+
'filetypeJpg': '\uf74b',
|
|
1641
|
+
'filetypeJs': '\uf74c',
|
|
1642
|
+
'filetypeJsx': '\uf74d',
|
|
1643
|
+
'filetypeKey': '\uf74e',
|
|
1644
|
+
'filetypeM4p': '\uf74f',
|
|
1645
|
+
'filetypeMd': '\uf750',
|
|
1646
|
+
'filetypeMdx': '\uf751',
|
|
1647
|
+
'filetypeMov': '\uf752',
|
|
1648
|
+
'filetypeMp3': '\uf753',
|
|
1649
|
+
'filetypeMp4': '\uf754',
|
|
1650
|
+
'filetypeOtf': '\uf755',
|
|
1651
|
+
'filetypePdf': '\uf756',
|
|
1652
|
+
'filetypePhp': '\uf757',
|
|
1653
|
+
'filetypePng': '\uf758',
|
|
1654
|
+
'filetypePpt1': '\uf759',
|
|
1655
|
+
'filetypePpt': '\uf75a',
|
|
1656
|
+
'filetypePsd': '\uf75b',
|
|
1657
|
+
'filetypePy': '\uf75c',
|
|
1658
|
+
'filetypeRaw': '\uf75d',
|
|
1659
|
+
'filetypeRb': '\uf75e',
|
|
1660
|
+
'filetypeSass': '\uf75f',
|
|
1661
|
+
'filetypeScss': '\uf760',
|
|
1662
|
+
'filetypeSh': '\uf761',
|
|
1663
|
+
'filetypeSvg': '\uf762',
|
|
1664
|
+
'filetypeTiff': '\uf763',
|
|
1665
|
+
'filetypeTsx': '\uf764',
|
|
1666
|
+
'filetypeTtf': '\uf765',
|
|
1667
|
+
'filetypeTxt': '\uf766',
|
|
1668
|
+
'filetypeWav': '\uf767',
|
|
1669
|
+
'filetypeWoff': '\uf768',
|
|
1670
|
+
'filetypeXls1': '\uf769',
|
|
1671
|
+
'filetypeXls': '\uf76a',
|
|
1672
|
+
'filetypeXml': '\uf76b',
|
|
1673
|
+
'filetypeYml': '\uf76c',
|
|
1674
|
+
'heartArrow': '\uf76d',
|
|
1675
|
+
'heartPulseFill': '\uf76e',
|
|
1676
|
+
'heartPulse': '\uf76f',
|
|
1677
|
+
'heartbreakFill': '\uf770',
|
|
1678
|
+
'heartbreak': '\uf771',
|
|
1679
|
+
'hearts': '\uf772',
|
|
1680
|
+
'hospitalFill': '\uf773',
|
|
1681
|
+
'hospital': '\uf774',
|
|
1682
|
+
'houseHeartFill': '\uf775',
|
|
1683
|
+
'houseHeart': '\uf776',
|
|
1684
|
+
'incognito': '\uf777',
|
|
1685
|
+
'magnetFill': '\uf778',
|
|
1686
|
+
'magnet': '\uf779',
|
|
1687
|
+
'personHeart': '\uf77a',
|
|
1688
|
+
'personHearts': '\uf77b',
|
|
1689
|
+
'phoneFlip': '\uf77c',
|
|
1690
|
+
'plugin': '\uf77d',
|
|
1691
|
+
'postageFill': '\uf77e',
|
|
1692
|
+
'postageHeartFill': '\uf77f',
|
|
1693
|
+
'postageHeart': '\uf780',
|
|
1694
|
+
'postage': '\uf781',
|
|
1695
|
+
'postcardFill': '\uf782',
|
|
1696
|
+
'postcardHeartFill': '\uf783',
|
|
1697
|
+
'postcardHeart': '\uf784',
|
|
1698
|
+
'postcard': '\uf785',
|
|
1699
|
+
'searchHeartFill': '\uf786',
|
|
1700
|
+
'searchHeart': '\uf787',
|
|
1701
|
+
'sliders2Vertical': '\uf788',
|
|
1702
|
+
'sliders2': '\uf789',
|
|
1703
|
+
'trash3Fill': '\uf78a',
|
|
1704
|
+
'trash3': '\uf78b',
|
|
1705
|
+
'valentine': '\uf78c',
|
|
1706
|
+
'valentine2': '\uf78d',
|
|
1707
|
+
'wrenchAdjustableCircleFill': '\uf78e',
|
|
1708
|
+
'wrenchAdjustableCricle': '\uf78f',
|
|
1709
|
+
'wrenchAdjustable': '\uf790',
|
|
1710
|
+
'filetypeJson': '\uf791',
|
|
1711
|
+
'filetypePptx': '\uf792',
|
|
1712
|
+
'filetypeXlsx': '\uf793',
|
|
1713
|
+
};
|
|
1714
|
+
exports.icons = icons;
|