syncsign 0.2.0 → 0.4.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.
- checksums.yaml +4 -4
- data/README.md +18 -2
- data/lib/syncsign/hub.rb +39 -2
- data/lib/syncsign/node-display.rb +4 -2
- data/lib/syncsign/node.rb +10 -2
- data/lib/syncsign/service.rb +19 -4
- data/lib/syncsign/template.rb +15 -5
- data/lib/syncsign/version.rb +1 -1
- data/lib/syncsign/widget-core.rb +76 -0
- data/lib/syncsign/widgets/buttonlabels.rb +46 -0
- data/lib/syncsign/widgets/circle.rb +63 -0
- data/lib/syncsign/widgets/line.rb +56 -0
- data/lib/syncsign/widgets/qrcode.rb +62 -0
- data/lib/syncsign/widgets/rectangle.rb +57 -0
- data/lib/syncsign/widgets/symbolbox-symbols.rb +1630 -0
- data/lib/syncsign/widgets/symbolbox.rb +79 -0
- data/lib/syncsign/widgets/textbox.rb +100 -0
- data/lib/syncsign.rb +9 -1
- metadata +11 -3
- data/lib/syncsign/widgets.rb +0 -323
@@ -0,0 +1,1630 @@
|
|
1
|
+
module SyncSign
|
2
|
+
class Widget
|
3
|
+
class Symbols
|
4
|
+
##
|
5
|
+
# Library of symbols and their associated codes.
|
6
|
+
SYMBOL_LIBRARY = {
|
7
|
+
##
|
8
|
+
# Weather Symbols
|
9
|
+
weather: {
|
10
|
+
:day_sunny => 0xf00d,
|
11
|
+
:day_cloudy => 0xf002,
|
12
|
+
:day_cloudy_gusts => 0xf000,
|
13
|
+
:day_cloudy_windy => 0xf001,
|
14
|
+
:day_fog => 0xf003,
|
15
|
+
:day_hail => 0xf004,
|
16
|
+
:day_haze => 0xf0b6,
|
17
|
+
:day_lightning => 0xf005,
|
18
|
+
:day_rain => 0xf008,
|
19
|
+
:day_rain_mix => 0xf006,
|
20
|
+
:day_rain_wind => 0xf007,
|
21
|
+
:day_showers => 0xf009,
|
22
|
+
:day_sleet => 0xf0b2,
|
23
|
+
:day_sleet_storm => 0xf068,
|
24
|
+
:day_snow => 0xf00a,
|
25
|
+
:day_snow_thunderstorm => 0xf06b,
|
26
|
+
:day_snow_wind => 0xf065,
|
27
|
+
:day_sprinkle => 0xf00b,
|
28
|
+
:day_storm_showers => 0xf00e,
|
29
|
+
:day_sunny_overcast => 0xf00c,
|
30
|
+
:day_thunderstorm => 0xf010,
|
31
|
+
:day_windy => 0xf085,
|
32
|
+
:solar_eclipse => 0xf06e,
|
33
|
+
:hot => 0xf072,
|
34
|
+
:day_cloudy_high => 0xf07d,
|
35
|
+
:day_light_wind => 0xf0c4,
|
36
|
+
:night_clear => 0xf02e,
|
37
|
+
:night_alt_cloudy => 0xf086,
|
38
|
+
:night_alt_cloudy_gusts => 0xf022,
|
39
|
+
:night_alt_cloudy_windy => 0xf023,
|
40
|
+
:night_alt_hail => 0xf024,
|
41
|
+
:night_alt_lightning => 0xf025,
|
42
|
+
:night_alt_rain => 0xf028,
|
43
|
+
:night_alt_rain_mix => 0xf026,
|
44
|
+
:night_alt_rain_wind => 0xf027,
|
45
|
+
:night_alt_showers => 0xf029,
|
46
|
+
:night_alt_sleet => 0xf0b4,
|
47
|
+
:night_alt_sleet_storm => 0xf06a,
|
48
|
+
:night_alt_snow => 0xf02a,
|
49
|
+
:night_alt_snow_thunderstorm => 0xf06d,
|
50
|
+
:night_alt_snow_wind => 0xf067,
|
51
|
+
:night_alt_sprinkle => 0xf02b,
|
52
|
+
:night_alt_storm_showers => 0xf02c,
|
53
|
+
:night_alt_thunderstorm => 0xf02d,
|
54
|
+
:night_cloudy => 0xf031,
|
55
|
+
:night_cloudy_gusts => 0xf02f,
|
56
|
+
:night_cloudy_windy => 0xf030,
|
57
|
+
:night_fog => 0xf04a,
|
58
|
+
:night_hail => 0xf032,
|
59
|
+
:night_lightning => 0xf033,
|
60
|
+
:night_partly_cloudy => 0xf083,
|
61
|
+
:night_rain => 0xf036,
|
62
|
+
:night_rain_mix => 0xf034,
|
63
|
+
:night_rain_wind => 0xf035,
|
64
|
+
:night_showers => 0xf037,
|
65
|
+
:night_sleet => 0xf0b3,
|
66
|
+
:night_sleet_storm => 0xf069,
|
67
|
+
:night_snow => 0xf038,
|
68
|
+
:night_snow_thunderstorm => 0xf06c,
|
69
|
+
:night_snow_wind => 0xf066,
|
70
|
+
:night_sprinkle => 0xf039,
|
71
|
+
:night_storm_showers => 0xf03a,
|
72
|
+
:night_thunderstorm => 0xf03b,
|
73
|
+
:lunar_eclipse => 0xf070,
|
74
|
+
:stars => 0xf077,
|
75
|
+
:night_alt_cloudy_high => 0xf07e,
|
76
|
+
:night_cloudy_high => 0xf080,
|
77
|
+
:night_alt_partly_cloudy => 0xf081,
|
78
|
+
:cloud => 0xf041,
|
79
|
+
:cloudy => 0xf013,
|
80
|
+
:cloudy_gusts => 0xf011,
|
81
|
+
:cloudy_windy => 0xf012,
|
82
|
+
:fog => 0xf014,
|
83
|
+
:hail => 0xf015,
|
84
|
+
:rain => 0xf019,
|
85
|
+
:rain_mix => 0xf017,
|
86
|
+
:rain_wind => 0xf018,
|
87
|
+
:showers => 0xf01a,
|
88
|
+
:sleet => 0xf0b5,
|
89
|
+
:sprinkle => 0xf01c,
|
90
|
+
:storm_showers => 0xf01d,
|
91
|
+
:thunderstorm => 0xf01e,
|
92
|
+
:snow_wind => 0xf064,
|
93
|
+
:snow => 0xf01b,
|
94
|
+
:smog => 0xf074,
|
95
|
+
:smoke => 0xf062,
|
96
|
+
:lightning => 0xf016,
|
97
|
+
:raindrops => 0xf04e,
|
98
|
+
:raindrop => 0xf078,
|
99
|
+
:dust => 0xf063,
|
100
|
+
:snowflake_cold => 0xf076,
|
101
|
+
:windy => 0xf021,
|
102
|
+
:strong_wind => 0xf050,
|
103
|
+
:sandstorm => 0xf082,
|
104
|
+
:earthquake => 0xf0c6,
|
105
|
+
:fire => 0xf0c7,
|
106
|
+
:flood => 0xf07c,
|
107
|
+
:meteor => 0xf071,
|
108
|
+
:tsunami => 0xf0c5,
|
109
|
+
:volcano => 0xf0c8,
|
110
|
+
:hurricane => 0xf073,
|
111
|
+
:tornado => 0xf056,
|
112
|
+
:small_craft_advisory => 0xf0cc,
|
113
|
+
:gale_warning => 0xf0cd,
|
114
|
+
:storm_warning => 0xf0ce,
|
115
|
+
:hurricane_warning => 0xf0cf,
|
116
|
+
:wind_direction => 0xf0b1,
|
117
|
+
:alien => 0xf075,
|
118
|
+
:celsius => 0xf03c,
|
119
|
+
:fahrenheit => 0xf045,
|
120
|
+
:degrees => 0xf042,
|
121
|
+
:thermometer => 0xf055,
|
122
|
+
:thermometer_exterior => 0xf053,
|
123
|
+
:thermometer_internal => 0xf054,
|
124
|
+
:cloud_down => 0xf03d,
|
125
|
+
:cloud_up => 0xf040,
|
126
|
+
:cloud_refresh => 0xf03e,
|
127
|
+
:horizon => 0xf047,
|
128
|
+
:horizon_alt => 0xf046,
|
129
|
+
:sunrise => 0xf051,
|
130
|
+
:sunset => 0xf052,
|
131
|
+
:moonrise => 0xf0c9,
|
132
|
+
:moonset => 0xf0ca,
|
133
|
+
:refresh => 0xf04c,
|
134
|
+
:refresh_alt => 0xf04b,
|
135
|
+
:umbrella => 0xf084,
|
136
|
+
:barometer => 0xf079,
|
137
|
+
:humidity => 0xf07a,
|
138
|
+
:na => 0xf07b,
|
139
|
+
:train => 0xf0cb,
|
140
|
+
:moon_new => 0xf095,
|
141
|
+
:moon_waxing_crescent_1 => 0xf096,
|
142
|
+
:moon_waxing_crescent_2 => 0xf097,
|
143
|
+
:moon_waxing_crescent_3 => 0xf098,
|
144
|
+
:moon_waxing_crescent_4 => 0xf099,
|
145
|
+
:moon_waxing_crescent_5 => 0xf09a,
|
146
|
+
:moon_waxing_crescent_6 => 0xf09b,
|
147
|
+
:moon_first_quarter => 0xf09c,
|
148
|
+
:moon_waxing_gibbous_1 => 0xf09d,
|
149
|
+
:moon_waxing_gibbous_2 => 0xf09e,
|
150
|
+
:moon_waxing_gibbous_3 => 0xf09f,
|
151
|
+
:moon_waxing_gibbous_4 => 0xf0a0,
|
152
|
+
:moon_waxing_gibbous_5 => 0xf0a1,
|
153
|
+
:moon_waxing_gibbous_6 => 0xf0a2,
|
154
|
+
:moon_full => 0xf0a3,
|
155
|
+
:moon_waning_gibbous_1 => 0xf0a4,
|
156
|
+
:moon_waning_gibbous_2 => 0xf0a5,
|
157
|
+
:moon_waning_gibbous_3 => 0xf0a6,
|
158
|
+
:moon_waning_gibbous_4 => 0xf0a7,
|
159
|
+
:moon_waning_gibbous_5 => 0xf0a8,
|
160
|
+
:moon_waning_gibbous_6 => 0xf0a9,
|
161
|
+
:moon_third_quarter => 0xf0aa,
|
162
|
+
:moon_waning_crescent_1 => 0xf0ab,
|
163
|
+
:moon_waning_crescent_2 => 0xf0ac,
|
164
|
+
:moon_waning_crescent_3 => 0xf0ad,
|
165
|
+
:moon_waning_crescent_4 => 0xf0ae,
|
166
|
+
:moon_waning_crescent_5 => 0xf0af,
|
167
|
+
:moon_waning_crescent_6 => 0xf0b0,
|
168
|
+
:moon_alt_new => 0xf0eb,
|
169
|
+
:moon_alt_waxing_crescent_1 => 0xf0d0,
|
170
|
+
:moon_alt_waxing_crescent_2 => 0xf0d1,
|
171
|
+
:moon_alt_waxing_crescent_3 => 0xf0d2,
|
172
|
+
:moon_alt_waxing_crescent_4 => 0xf0d3,
|
173
|
+
:moon_alt_waxing_crescent_5 => 0xf0d4,
|
174
|
+
:moon_alt_waxing_crescent_6 => 0xf0d5,
|
175
|
+
:moon_alt_first_quarter => 0xf0d6,
|
176
|
+
:moon_alt_waxing_gibbous_1 => 0xf0d7,
|
177
|
+
:moon_alt_waxing_gibbous_2 => 0xf0d8,
|
178
|
+
:moon_alt_waxing_gibbous_3 => 0xf0d9,
|
179
|
+
:moon_alt_waxing_gibbous_4 => 0xf0da,
|
180
|
+
:moon_alt_waxing_gibbous_5 => 0xf0db,
|
181
|
+
:moon_alt_waxing_gibbous_6 => 0xf0dc,
|
182
|
+
:moon_alt_full => 0xf0dd,
|
183
|
+
:moon_alt_waning_gibbous_1 => 0xf0de,
|
184
|
+
:moon_alt_waning_gibbous_2 => 0xf0df,
|
185
|
+
:moon_alt_waning_gibbous_3 => 0xf0e0,
|
186
|
+
:moon_alt_waning_gibbous_4 => 0xf0e1,
|
187
|
+
:moon_alt_waning_gibbous_5 => 0xf0e2,
|
188
|
+
:moon_alt_waning_gibbous_6 => 0xf0e3,
|
189
|
+
:moon_alt_third_quarter => 0xf0e4,
|
190
|
+
:moon_alt_waning_crescent_1 => 0xf0e5,
|
191
|
+
:moon_alt_waning_crescent_2 => 0xf0e6,
|
192
|
+
:moon_alt_waning_crescent_3 => 0xf0e7,
|
193
|
+
:moon_alt_waning_crescent_4 => 0xf0e8,
|
194
|
+
:moon_alt_waning_crescent_5 => 0xf0e9,
|
195
|
+
:moon_alt_waning_crescent_6 => 0xf0ea,
|
196
|
+
:time_1 => 0xf08a,
|
197
|
+
:time_2 => 0xf08b,
|
198
|
+
:time_3 => 0xf08c,
|
199
|
+
:time_4 => 0xf08d,
|
200
|
+
:time_5 => 0xf08e,
|
201
|
+
:time_6 => 0xf08f,
|
202
|
+
:time_7 => 0xf090,
|
203
|
+
:time_8 => 0xf091,
|
204
|
+
:time_9 => 0xf092,
|
205
|
+
:time_10 => 0xf093,
|
206
|
+
:time_11 => 0xf094,
|
207
|
+
:time_12 => 0xf089,
|
208
|
+
:direction_up => 0xf058,
|
209
|
+
:direction_up_right => 0xf057,
|
210
|
+
:direction_right => 0xf04d,
|
211
|
+
:direction_down_right => 0xf088,
|
212
|
+
:direction_down => 0xf044,
|
213
|
+
:direction_down_left => 0xf043,
|
214
|
+
:direction_left => 0xf048,
|
215
|
+
:direction_up_left => 0xf087,
|
216
|
+
},
|
217
|
+
|
218
|
+
##
|
219
|
+
# Solid symbols
|
220
|
+
solid: {
|
221
|
+
:ad => 0xf641,
|
222
|
+
:address_book => 0xf2b9,
|
223
|
+
:address_card => 0xf2bb,
|
224
|
+
:adjust => 0xf042,
|
225
|
+
:air_freshener => 0xf5d0,
|
226
|
+
:align_center => 0xf037,
|
227
|
+
:align_justify => 0xf039,
|
228
|
+
:align_left => 0xf036,
|
229
|
+
:align_right => 0xf038,
|
230
|
+
:allergies => 0xf461,
|
231
|
+
:ambulance => 0xf0f9,
|
232
|
+
:american_sign_language_interpreting => 0xf2a3,
|
233
|
+
:anchor => 0xf13d,
|
234
|
+
:angle_double_down => 0xf103,
|
235
|
+
:angle_double_left => 0xf100,
|
236
|
+
:angle_double_right => 0xf101,
|
237
|
+
:angle_double_up => 0xf102,
|
238
|
+
:angle_down => 0xf107,
|
239
|
+
:angle_left => 0xf104,
|
240
|
+
:angle_right => 0xf105,
|
241
|
+
:angle_up => 0xf106,
|
242
|
+
:angry => 0xf556,
|
243
|
+
:ankh => 0xf644,
|
244
|
+
:apple_alt => 0xf5d1,
|
245
|
+
:archive => 0xf187,
|
246
|
+
:archway => 0xf557,
|
247
|
+
:arrow_alt_circle_down => 0xf358,
|
248
|
+
:arrow_alt_circle_left => 0xf359,
|
249
|
+
:arrow_alt_circle_right => 0xf35a,
|
250
|
+
:arrow_alt_circle_up => 0xf35b,
|
251
|
+
:arrow_circle_down => 0xf0ab,
|
252
|
+
:arrow_circle_left => 0xf0a8,
|
253
|
+
:arrow_circle_right => 0xf0a9,
|
254
|
+
:arrow_circle_up => 0xf0aa,
|
255
|
+
:arrow_down => 0xf063,
|
256
|
+
:arrow_left => 0xf060,
|
257
|
+
:arrow_right => 0xf061,
|
258
|
+
:arrow_up => 0xf062,
|
259
|
+
:arrows_alt => 0xf0b2,
|
260
|
+
:arrows_alt_h => 0xf337,
|
261
|
+
:arrows_alt_v => 0xf338,
|
262
|
+
:assistive_listening_systems => 0xf2a2,
|
263
|
+
:asterisk => 0xf069,
|
264
|
+
:at => 0xf1fa,
|
265
|
+
:atlas => 0xf558,
|
266
|
+
:atom => 0xf5d2,
|
267
|
+
:audio_description => 0xf29e,
|
268
|
+
:award => 0xf559,
|
269
|
+
:baby => 0xf77c,
|
270
|
+
:baby_carriage => 0xf77d,
|
271
|
+
:backspace => 0xf55a,
|
272
|
+
:backward => 0xf04a,
|
273
|
+
:bacon => 0xf7e5,
|
274
|
+
:bahai => 0xf666,
|
275
|
+
:balance_scale => 0xf24e,
|
276
|
+
:balance_scale_left => 0xf515,
|
277
|
+
:balance_scale_right => 0xf516,
|
278
|
+
:ban => 0xf05e,
|
279
|
+
:band_aid => 0xf462,
|
280
|
+
:barcode => 0xf02a,
|
281
|
+
:bars => 0xf0c9,
|
282
|
+
:baseball_ball => 0xf433,
|
283
|
+
:basketball_ball => 0xf434,
|
284
|
+
:bath => 0xf2cd,
|
285
|
+
:battery_empty => 0xf244,
|
286
|
+
:battery_full => 0xf240,
|
287
|
+
:battery_half => 0xf242,
|
288
|
+
:battery_quarter => 0xf243,
|
289
|
+
:battery_three_quarters => 0xf241,
|
290
|
+
:bed => 0xf236,
|
291
|
+
:beer => 0xf0fc,
|
292
|
+
:bell => 0xf0f3,
|
293
|
+
:bell_slash => 0xf1f6,
|
294
|
+
:bezier_curve => 0xf55b,
|
295
|
+
:bible => 0xf647,
|
296
|
+
:bicycle => 0xf206,
|
297
|
+
:biking => 0xf84a,
|
298
|
+
:binoculars => 0xf1e5,
|
299
|
+
:biohazard => 0xf780,
|
300
|
+
:birthday_cake => 0xf1fd,
|
301
|
+
:blender => 0xf517,
|
302
|
+
:blender_phone => 0xf6b6,
|
303
|
+
:blind => 0xf29d,
|
304
|
+
:blog => 0xf781,
|
305
|
+
:bold => 0xf032,
|
306
|
+
:bolt => 0xf0e7,
|
307
|
+
:bomb => 0xf1e2,
|
308
|
+
:bone => 0xf5d7,
|
309
|
+
:bong => 0xf55c,
|
310
|
+
:book => 0xf02d,
|
311
|
+
:book_dead => 0xf6b7,
|
312
|
+
:book_medical => 0xf7e6,
|
313
|
+
:book_open => 0xf518,
|
314
|
+
:book_reader => 0xf5da,
|
315
|
+
:bookmark => 0xf02e,
|
316
|
+
:border_all => 0xf84c,
|
317
|
+
:border_none => 0xf850,
|
318
|
+
:border_style => 0xf853,
|
319
|
+
:bowling_ball => 0xf436,
|
320
|
+
:box => 0xf466,
|
321
|
+
:box_open => 0xf49e,
|
322
|
+
:boxes => 0xf468,
|
323
|
+
:braille => 0xf2a1,
|
324
|
+
:brain => 0xf5dc,
|
325
|
+
:bread_slice => 0xf7ec,
|
326
|
+
:briefcase => 0xf0b1,
|
327
|
+
:briefcase_medical => 0xf469,
|
328
|
+
:broadcast_tower => 0xf519,
|
329
|
+
:broom => 0xf51a,
|
330
|
+
:brush => 0xf55d,
|
331
|
+
:bug => 0xf188,
|
332
|
+
:building => 0xf1ad,
|
333
|
+
:bullhorn => 0xf0a1,
|
334
|
+
:bullseye => 0xf140,
|
335
|
+
:burn => 0xf46a,
|
336
|
+
:bus => 0xf207,
|
337
|
+
:bus_alt => 0xf55e,
|
338
|
+
:business_time => 0xf64a,
|
339
|
+
:calculator => 0xf1ec,
|
340
|
+
:calendar => 0xf133,
|
341
|
+
:calendar_alt => 0xf073,
|
342
|
+
:calendar_check => 0xf274,
|
343
|
+
:calendar_day => 0xf783,
|
344
|
+
:calendar_minus => 0xf272,
|
345
|
+
:calendar_plus => 0xf271,
|
346
|
+
:calendar_times => 0xf273,
|
347
|
+
:calendar_week => 0xf784,
|
348
|
+
:camera => 0xf030,
|
349
|
+
:camera_retro => 0xf083,
|
350
|
+
:campground => 0xf6bb,
|
351
|
+
:candy_cane => 0xf786,
|
352
|
+
:cannabis => 0xf55f,
|
353
|
+
:capsules => 0xf46b,
|
354
|
+
:car => 0xf1b9,
|
355
|
+
:car_alt => 0xf5de,
|
356
|
+
:car_battery => 0xf5df,
|
357
|
+
:car_crash => 0xf5e1,
|
358
|
+
:car_side => 0xf5e4,
|
359
|
+
:caravan => 0xf8ff,
|
360
|
+
:caret_down => 0xf0d7,
|
361
|
+
:caret_left => 0xf0d9,
|
362
|
+
:caret_right => 0xf0da,
|
363
|
+
:caret_square_down => 0xf150,
|
364
|
+
:caret_square_left => 0xf191,
|
365
|
+
:caret_square_right => 0xf152,
|
366
|
+
:caret_square_up => 0xf151,
|
367
|
+
:caret_up => 0xf0d8,
|
368
|
+
:carrot => 0xf787,
|
369
|
+
:cart_arrow_down => 0xf218,
|
370
|
+
:cart_plus => 0xf217,
|
371
|
+
:cash_register => 0xf788,
|
372
|
+
:cat => 0xf6be,
|
373
|
+
:certificate => 0xf0a3,
|
374
|
+
:chair => 0xf6c0,
|
375
|
+
:chalkboard => 0xf51b,
|
376
|
+
:chalkboard_teacher => 0xf51c,
|
377
|
+
:charging_station => 0xf5e7,
|
378
|
+
:chart_area => 0xf1fe,
|
379
|
+
:chart_bar => 0xf080,
|
380
|
+
:chart_line => 0xf201,
|
381
|
+
:chart_pie => 0xf200,
|
382
|
+
:check => 0xf00c,
|
383
|
+
:check_circle => 0xf058,
|
384
|
+
:check_double => 0xf560,
|
385
|
+
:check_square => 0xf14a,
|
386
|
+
:cheese => 0xf7ef,
|
387
|
+
:chess => 0xf439,
|
388
|
+
:chess_bishop => 0xf43a,
|
389
|
+
:chess_board => 0xf43c,
|
390
|
+
:chess_king => 0xf43f,
|
391
|
+
:chess_knight => 0xf441,
|
392
|
+
:chess_pawn => 0xf443,
|
393
|
+
:chess_queen => 0xf445,
|
394
|
+
:chess_rook => 0xf447,
|
395
|
+
:chevron_circle_down => 0xf13a,
|
396
|
+
:chevron_circle_left => 0xf137,
|
397
|
+
:chevron_circle_right => 0xf138,
|
398
|
+
:chevron_circle_up => 0xf139,
|
399
|
+
:chevron_down => 0xf078,
|
400
|
+
:chevron_left => 0xf053,
|
401
|
+
:chevron_right => 0xf054,
|
402
|
+
:chevron_up => 0xf077,
|
403
|
+
:child => 0xf1ae,
|
404
|
+
:church => 0xf51d,
|
405
|
+
:circle => 0xf111,
|
406
|
+
:circle_notch => 0xf1ce,
|
407
|
+
:city => 0xf64f,
|
408
|
+
:clinic_medical => 0xf7f2,
|
409
|
+
:clipboard => 0xf328,
|
410
|
+
:clipboard_check => 0xf46c,
|
411
|
+
:clipboard_list => 0xf46d,
|
412
|
+
:clock => 0xf017,
|
413
|
+
:clone => 0xf24d,
|
414
|
+
:closed_captioning => 0xf20a,
|
415
|
+
:cloud => 0xf0c2,
|
416
|
+
:cloud_download_alt => 0xf381,
|
417
|
+
:cloud_meatball => 0xf73b,
|
418
|
+
:cloud_moon => 0xf6c3,
|
419
|
+
:cloud_moon_rain => 0xf73c,
|
420
|
+
:cloud_rain => 0xf73d,
|
421
|
+
:cloud_showers_heavy => 0xf740,
|
422
|
+
:cloud_sun => 0xf6c4,
|
423
|
+
:cloud_sun_rain => 0xf743,
|
424
|
+
:cloud_upload_alt => 0xf382,
|
425
|
+
:cocktail => 0xf561,
|
426
|
+
:code => 0xf121,
|
427
|
+
:code_branch => 0xf126,
|
428
|
+
:coffee => 0xf0f4,
|
429
|
+
:cog => 0xf013,
|
430
|
+
:cogs => 0xf085,
|
431
|
+
:coins => 0xf51e,
|
432
|
+
:columns => 0xf0db,
|
433
|
+
:comment => 0xf075,
|
434
|
+
:comment_alt => 0xf27a,
|
435
|
+
:comment_dollar => 0xf651,
|
436
|
+
:comment_dots => 0xf4ad,
|
437
|
+
:comment_medical => 0xf7f5,
|
438
|
+
:comment_slash => 0xf4b3,
|
439
|
+
:comments => 0xf086,
|
440
|
+
:comments_dollar => 0xf653,
|
441
|
+
:compact_disc => 0xf51f,
|
442
|
+
:compass => 0xf14e,
|
443
|
+
:compress => 0xf066,
|
444
|
+
:compress_alt => 0xf422,
|
445
|
+
:compress_arrows_alt => 0xf78c,
|
446
|
+
:concierge_bell => 0xf562,
|
447
|
+
:cookie => 0xf563,
|
448
|
+
:cookie_bite => 0xf564,
|
449
|
+
:copy => 0xf0c5,
|
450
|
+
:copyright => 0xf1f9,
|
451
|
+
:couch => 0xf4b8,
|
452
|
+
:credit_card => 0xf09d,
|
453
|
+
:crop => 0xf125,
|
454
|
+
:crop_alt => 0xf565,
|
455
|
+
:cross => 0xf654,
|
456
|
+
:crosshairs => 0xf05b,
|
457
|
+
:crow => 0xf520,
|
458
|
+
:crown => 0xf521,
|
459
|
+
:crutch => 0xf7f7,
|
460
|
+
:cube => 0xf1b2,
|
461
|
+
:cubes => 0xf1b3,
|
462
|
+
:cut => 0xf0c4,
|
463
|
+
:database => 0xf1c0,
|
464
|
+
:deaf => 0xf2a4,
|
465
|
+
:democrat => 0xf747,
|
466
|
+
:desktop => 0xf108,
|
467
|
+
:dharmachakra => 0xf655,
|
468
|
+
:diagnoses => 0xf470,
|
469
|
+
:dice => 0xf522,
|
470
|
+
:dice_d20 => 0xf6cf,
|
471
|
+
:dice_d6 => 0xf6d1,
|
472
|
+
:dice_five => 0xf523,
|
473
|
+
:dice_four => 0xf524,
|
474
|
+
:dice_one => 0xf525,
|
475
|
+
:dice_six => 0xf526,
|
476
|
+
:dice_three => 0xf527,
|
477
|
+
:dice_two => 0xf528,
|
478
|
+
:digital_tachograph => 0xf566,
|
479
|
+
:directions => 0xf5eb,
|
480
|
+
:disease => 0xf7fa,
|
481
|
+
:divide => 0xf529,
|
482
|
+
:dizzy => 0xf567,
|
483
|
+
:dna => 0xf471,
|
484
|
+
:dog => 0xf6d3,
|
485
|
+
:dollar_sign => 0xf155,
|
486
|
+
:dolly => 0xf472,
|
487
|
+
:dolly_flatbed => 0xf474,
|
488
|
+
:donate => 0xf4b9,
|
489
|
+
:door_closed => 0xf52a,
|
490
|
+
:door_open => 0xf52b,
|
491
|
+
:dot_circle => 0xf192,
|
492
|
+
:dove => 0xf4ba,
|
493
|
+
:download => 0xf019,
|
494
|
+
:drafting_compass => 0xf568,
|
495
|
+
:dragon => 0xf6d5,
|
496
|
+
:draw_polygon => 0xf5ee,
|
497
|
+
:drum => 0xf569,
|
498
|
+
:drum_steelpan => 0xf56a,
|
499
|
+
:drumstick_bite => 0xf6d7,
|
500
|
+
:dumbbell => 0xf44b,
|
501
|
+
:dumpster => 0xf793,
|
502
|
+
:dumpster_fire => 0xf794,
|
503
|
+
:dungeon => 0xf6d9,
|
504
|
+
:edit => 0xf044,
|
505
|
+
:egg => 0xf7fb,
|
506
|
+
:eject => 0xf052,
|
507
|
+
:ellipsis_h => 0xf141,
|
508
|
+
:ellipsis_v => 0xf142,
|
509
|
+
:envelope => 0xf0e0,
|
510
|
+
:envelope_open => 0xf2b6,
|
511
|
+
:envelope_open_text => 0xf658,
|
512
|
+
:envelope_square => 0xf199,
|
513
|
+
:equals => 0xf52c,
|
514
|
+
:eraser => 0xf12d,
|
515
|
+
:ethernet => 0xf796,
|
516
|
+
:euro_sign => 0xf153,
|
517
|
+
:exchange_alt => 0xf362,
|
518
|
+
:exclamation => 0xf12a,
|
519
|
+
:exclamation_circle => 0xf06a,
|
520
|
+
:exclamation_triangle => 0xf071,
|
521
|
+
:expand => 0xf065,
|
522
|
+
:expand_alt => 0xf424,
|
523
|
+
:expand_arrows_alt => 0xf31e,
|
524
|
+
:external_link_alt => 0xf35d,
|
525
|
+
:external_link_square_alt => 0xf360,
|
526
|
+
:eye => 0xf06e,
|
527
|
+
:eye_dropper => 0xf1fb,
|
528
|
+
:eye_slash => 0xf070,
|
529
|
+
:fan => 0xf863,
|
530
|
+
:fast_backward => 0xf049,
|
531
|
+
:fast_forward => 0xf050,
|
532
|
+
:fax => 0xf1ac,
|
533
|
+
:feather => 0xf52d,
|
534
|
+
:feather_alt => 0xf56b,
|
535
|
+
:female => 0xf182,
|
536
|
+
:fighter_jet => 0xf0fb,
|
537
|
+
:file => 0xf15b,
|
538
|
+
:file_alt => 0xf15c,
|
539
|
+
:file_archive => 0xf1c6,
|
540
|
+
:file_audio => 0xf1c7,
|
541
|
+
:file_code => 0xf1c9,
|
542
|
+
:file_contract => 0xf56c,
|
543
|
+
:file_csv => 0xf6dd,
|
544
|
+
:file_download => 0xf56d,
|
545
|
+
:file_excel => 0xf1c3,
|
546
|
+
:file_export => 0xf56e,
|
547
|
+
:file_image => 0xf1c5,
|
548
|
+
:file_import => 0xf56f,
|
549
|
+
:file_invoice => 0xf570,
|
550
|
+
:file_invoice_dollar => 0xf571,
|
551
|
+
:file_medical => 0xf477,
|
552
|
+
:file_medical_alt => 0xf478,
|
553
|
+
:file_pdf => 0xf1c1,
|
554
|
+
:file_powerpoint => 0xf1c4,
|
555
|
+
:file_prescription => 0xf572,
|
556
|
+
:file_signature => 0xf573,
|
557
|
+
:file_upload => 0xf574,
|
558
|
+
:file_video => 0xf1c8,
|
559
|
+
:file_word => 0xf1c2,
|
560
|
+
:fill => 0xf575,
|
561
|
+
:fill_drip => 0xf576,
|
562
|
+
:film => 0xf008,
|
563
|
+
:filter => 0xf0b0,
|
564
|
+
:fingerprint => 0xf577,
|
565
|
+
:fire => 0xf06d,
|
566
|
+
:fire_alt => 0xf7e4,
|
567
|
+
:fire_extinguisher => 0xf134,
|
568
|
+
:first_aid => 0xf479,
|
569
|
+
:fish => 0xf578,
|
570
|
+
:fist_raised => 0xf6de,
|
571
|
+
:flag => 0xf024,
|
572
|
+
:flag_checkered => 0xf11e,
|
573
|
+
:flag_usa => 0xf74d,
|
574
|
+
:flask => 0xf0c3,
|
575
|
+
:flushed => 0xf579,
|
576
|
+
:folder => 0xf07b,
|
577
|
+
:folder_minus => 0xf65d,
|
578
|
+
:folder_open => 0xf07c,
|
579
|
+
:folder_plus => 0xf65e,
|
580
|
+
:font => 0xf031,
|
581
|
+
:football_ball => 0xf44e,
|
582
|
+
:forward => 0xf04e,
|
583
|
+
:frog => 0xf52e,
|
584
|
+
:frown => 0xf119,
|
585
|
+
:frown_open => 0xf57a,
|
586
|
+
:funnel_dollar => 0xf662,
|
587
|
+
:futbol => 0xf1e3,
|
588
|
+
:gamepad => 0xf11b,
|
589
|
+
:gas_pump => 0xf52f,
|
590
|
+
:gavel => 0xf0e3,
|
591
|
+
:gem => 0xf3a5,
|
592
|
+
:genderless => 0xf22d,
|
593
|
+
:ghost => 0xf6e2,
|
594
|
+
:gift => 0xf06b,
|
595
|
+
:gifts => 0xf79c,
|
596
|
+
:glass_cheers => 0xf79f,
|
597
|
+
:glass_martini => 0xf000,
|
598
|
+
:glass_martini_alt => 0xf57b,
|
599
|
+
:glass_whiskey => 0xf7a0,
|
600
|
+
:glasses => 0xf530,
|
601
|
+
:globe => 0xf0ac,
|
602
|
+
:globe_africa => 0xf57c,
|
603
|
+
:globe_americas => 0xf57d,
|
604
|
+
:globe_asia => 0xf57e,
|
605
|
+
:globe_europe => 0xf7a2,
|
606
|
+
:golf_ball => 0xf450,
|
607
|
+
:gopuram => 0xf664,
|
608
|
+
:graduation_cap => 0xf19d,
|
609
|
+
:greater_than => 0xf531,
|
610
|
+
:greater_than_equal => 0xf532,
|
611
|
+
:grimace => 0xf57f,
|
612
|
+
:grin => 0xf580,
|
613
|
+
:grin_alt => 0xf581,
|
614
|
+
:grin_beam => 0xf582,
|
615
|
+
:grin_beam_sweat => 0xf583,
|
616
|
+
:grin_hearts => 0xf584,
|
617
|
+
:grin_squint => 0xf585,
|
618
|
+
:grin_squint_tears => 0xf586,
|
619
|
+
:grin_stars => 0xf587,
|
620
|
+
:grin_tears => 0xf588,
|
621
|
+
:grin_tongue => 0xf589,
|
622
|
+
:grin_tongue_squint => 0xf58a,
|
623
|
+
:grin_tongue_wink => 0xf58b,
|
624
|
+
:grin_wink => 0xf58c,
|
625
|
+
:grip_horizontal => 0xf58d,
|
626
|
+
:grip_lines => 0xf7a4,
|
627
|
+
:grip_lines_vertical => 0xf7a5,
|
628
|
+
:grip_vertical => 0xf58e,
|
629
|
+
:guitar => 0xf7a6,
|
630
|
+
:h_square => 0xf0fd,
|
631
|
+
:hamburger => 0xf805,
|
632
|
+
:hammer => 0xf6e3,
|
633
|
+
:hamsa => 0xf665,
|
634
|
+
:hand_holding => 0xf4bd,
|
635
|
+
:hand_holding_heart => 0xf4be,
|
636
|
+
:hand_holding_usd => 0xf4c0,
|
637
|
+
:hand_holding_water => 0xf4c1,
|
638
|
+
:hand_lizard => 0xf258,
|
639
|
+
:hand_middle_finger => 0xf806,
|
640
|
+
:hand_paper => 0xf256,
|
641
|
+
:hand_peace => 0xf25b,
|
642
|
+
:hand_point_down => 0xf0a7,
|
643
|
+
:hand_point_left => 0xf0a5,
|
644
|
+
:hand_point_right => 0xf0a4,
|
645
|
+
:hand_point_up => 0xf0a6,
|
646
|
+
:hand_pointer => 0xf25a,
|
647
|
+
:hand_rock => 0xf255,
|
648
|
+
:hand_scissors => 0xf257,
|
649
|
+
:hand_spock => 0xf259,
|
650
|
+
:hands => 0xf4c2,
|
651
|
+
:hands_helping => 0xf4c4,
|
652
|
+
:handshake => 0xf2b5,
|
653
|
+
:hanukiah => 0xf6e6,
|
654
|
+
:hard_hat => 0xf807,
|
655
|
+
:hashtag => 0xf292,
|
656
|
+
:hat_cowboy => 0xf8c0,
|
657
|
+
:hat_cowboy_side => 0xf8c1,
|
658
|
+
:hat_wizard => 0xf6e8,
|
659
|
+
:hdd => 0xf0a0,
|
660
|
+
:heading => 0xf1dc,
|
661
|
+
:headphones => 0xf025,
|
662
|
+
:headphones_alt => 0xf58f,
|
663
|
+
:headset => 0xf590,
|
664
|
+
:heart => 0xf004,
|
665
|
+
:heart_broken => 0xf7a9,
|
666
|
+
:heartbeat => 0xf21e,
|
667
|
+
:helicopter => 0xf533,
|
668
|
+
:highlighter => 0xf591,
|
669
|
+
:hiking => 0xf6ec,
|
670
|
+
:hippo => 0xf6ed,
|
671
|
+
:history => 0xf1da,
|
672
|
+
:hockey_puck => 0xf453,
|
673
|
+
:holly_berry => 0xf7aa,
|
674
|
+
:home => 0xf015,
|
675
|
+
:horse => 0xf6f0,
|
676
|
+
:horse_head => 0xf7ab,
|
677
|
+
:hospital => 0xf0f8,
|
678
|
+
:hospital_alt => 0xf47d,
|
679
|
+
:hospital_symbol => 0xf47e,
|
680
|
+
:hospital_user => 0xf80d,
|
681
|
+
:hot_tub => 0xf593,
|
682
|
+
:hotdog => 0xf80f,
|
683
|
+
:hotel => 0xf594,
|
684
|
+
:hourglass => 0xf254,
|
685
|
+
:hourglass_end => 0xf253,
|
686
|
+
:hourglass_half => 0xf252,
|
687
|
+
:hourglass_start => 0xf251,
|
688
|
+
:house_damage => 0xf6f1,
|
689
|
+
:hryvnia => 0xf6f2,
|
690
|
+
:i_cursor => 0xf246,
|
691
|
+
:ice_cream => 0xf810,
|
692
|
+
:icicles => 0xf7ad,
|
693
|
+
:icons => 0xf86d,
|
694
|
+
:id_badge => 0xf2c1,
|
695
|
+
:id_card => 0xf2c2,
|
696
|
+
:id_card_alt => 0xf47f,
|
697
|
+
:igloo => 0xf7ae,
|
698
|
+
:image => 0xf03e,
|
699
|
+
:images => 0xf302,
|
700
|
+
:inbox => 0xf01c,
|
701
|
+
:indent => 0xf03c,
|
702
|
+
:industry => 0xf275,
|
703
|
+
:infinity => 0xf534,
|
704
|
+
:info => 0xf129,
|
705
|
+
:info_circle => 0xf05a,
|
706
|
+
:italic => 0xf033,
|
707
|
+
:jedi => 0xf669,
|
708
|
+
:joint => 0xf595,
|
709
|
+
:journal_whills => 0xf66a,
|
710
|
+
:kaaba => 0xf66b,
|
711
|
+
:key => 0xf084,
|
712
|
+
:keyboard => 0xf11c,
|
713
|
+
:khanda => 0xf66d,
|
714
|
+
:kiss => 0xf596,
|
715
|
+
:kiss_beam => 0xf597,
|
716
|
+
:kiss_wink_heart => 0xf598,
|
717
|
+
:kiwi_bird => 0xf535,
|
718
|
+
:landmark => 0xf66f,
|
719
|
+
:language => 0xf1ab,
|
720
|
+
:laptop => 0xf109,
|
721
|
+
:laptop_code => 0xf5fc,
|
722
|
+
:laptop_medical => 0xf812,
|
723
|
+
:laugh => 0xf599,
|
724
|
+
:laugh_beam => 0xf59a,
|
725
|
+
:laugh_squint => 0xf59b,
|
726
|
+
:laugh_wink => 0xf59c,
|
727
|
+
:layer_group => 0xf5fd,
|
728
|
+
:leaf => 0xf06c,
|
729
|
+
:lemon => 0xf094,
|
730
|
+
:less_than => 0xf536,
|
731
|
+
:less_than_equal => 0xf537,
|
732
|
+
:level_down_alt => 0xf3be,
|
733
|
+
:level_up_alt => 0xf3bf,
|
734
|
+
:life_ring => 0xf1cd,
|
735
|
+
:lightbulb => 0xf0eb,
|
736
|
+
:link => 0xf0c1,
|
737
|
+
:lira_sign => 0xf195,
|
738
|
+
:list => 0xf03a,
|
739
|
+
:list_alt => 0xf022,
|
740
|
+
:list_ol => 0xf0cb,
|
741
|
+
:list_ul => 0xf0ca,
|
742
|
+
:location_arrow => 0xf124,
|
743
|
+
:lock => 0xf023,
|
744
|
+
:lock_open => 0xf3c1,
|
745
|
+
:long_arrow_alt_down => 0xf309,
|
746
|
+
:long_arrow_alt_left => 0xf30a,
|
747
|
+
:long_arrow_alt_right => 0xf30b,
|
748
|
+
:long_arrow_alt_up => 0xf30c,
|
749
|
+
:low_vision => 0xf2a8,
|
750
|
+
:luggage_cart => 0xf59d,
|
751
|
+
:lungs => 0xf604,
|
752
|
+
:magic => 0xf0d0,
|
753
|
+
:magnet => 0xf076,
|
754
|
+
:mail_bulk => 0xf674,
|
755
|
+
:male => 0xf183,
|
756
|
+
:map => 0xf279,
|
757
|
+
:map_marked => 0xf59f,
|
758
|
+
:map_marked_alt => 0xf5a0,
|
759
|
+
:map_marker => 0xf041,
|
760
|
+
:map_marker_alt => 0xf3c5,
|
761
|
+
:map_pin => 0xf276,
|
762
|
+
:map_signs => 0xf277,
|
763
|
+
:marker => 0xf5a1,
|
764
|
+
:mars => 0xf222,
|
765
|
+
:mars_double => 0xf227,
|
766
|
+
:mars_stroke => 0xf229,
|
767
|
+
:mars_stroke_h => 0xf22b,
|
768
|
+
:mars_stroke_v => 0xf22a,
|
769
|
+
:mask => 0xf6fa,
|
770
|
+
:medal => 0xf5a2,
|
771
|
+
:medkit => 0xf0fa,
|
772
|
+
:meh => 0xf11a,
|
773
|
+
:meh_blank => 0xf5a4,
|
774
|
+
:meh_rolling_eyes => 0xf5a5,
|
775
|
+
:memory => 0xf538,
|
776
|
+
:menorah => 0xf676,
|
777
|
+
:mercury => 0xf223,
|
778
|
+
:meteor => 0xf753,
|
779
|
+
:microchip => 0xf2db,
|
780
|
+
:microphone => 0xf130,
|
781
|
+
:microphone_alt => 0xf3c9,
|
782
|
+
:microphone_alt_slash => 0xf539,
|
783
|
+
:microphone_slash => 0xf131,
|
784
|
+
:microscope => 0xf610,
|
785
|
+
:minus => 0xf068,
|
786
|
+
:minus_circle => 0xf056,
|
787
|
+
:minus_square => 0xf146,
|
788
|
+
:mitten => 0xf7b5,
|
789
|
+
:mobile => 0xf10b,
|
790
|
+
:mobile_alt => 0xf3cd,
|
791
|
+
:money_bill => 0xf0d6,
|
792
|
+
:money_bill_alt => 0xf3d1,
|
793
|
+
:money_bill_wave => 0xf53a,
|
794
|
+
:money_bill_wave_alt => 0xf53b,
|
795
|
+
:money_check => 0xf53c,
|
796
|
+
:money_check_alt => 0xf53d,
|
797
|
+
:monument => 0xf5a6,
|
798
|
+
:moon => 0xf186,
|
799
|
+
:mortar_pestle => 0xf5a7,
|
800
|
+
:mosque => 0xf678,
|
801
|
+
:motorcycle => 0xf21c,
|
802
|
+
:mountain => 0xf6fc,
|
803
|
+
:mouse => 0xf8cc,
|
804
|
+
:mouse_pointer => 0xf245,
|
805
|
+
:mug_hot => 0xf7b6,
|
806
|
+
:music => 0xf001,
|
807
|
+
:network_wired => 0xf6ff,
|
808
|
+
:neuter => 0xf22c,
|
809
|
+
:newspaper => 0xf1ea,
|
810
|
+
:not_equal => 0xf53e,
|
811
|
+
:notes_medical => 0xf481,
|
812
|
+
:object_group => 0xf247,
|
813
|
+
:object_ungroup => 0xf248,
|
814
|
+
:oil_can => 0xf613,
|
815
|
+
:om => 0xf679,
|
816
|
+
:otter => 0xf700,
|
817
|
+
:outdent => 0xf03b,
|
818
|
+
:pager => 0xf815,
|
819
|
+
:paint_brush => 0xf1fc,
|
820
|
+
:paint_roller => 0xf5aa,
|
821
|
+
:palette => 0xf53f,
|
822
|
+
:pallet => 0xf482,
|
823
|
+
:paper_plane => 0xf1d8,
|
824
|
+
:paperclip => 0xf0c6,
|
825
|
+
:parachute_box => 0xf4cd,
|
826
|
+
:paragraph => 0xf1dd,
|
827
|
+
:parking => 0xf540,
|
828
|
+
:passport => 0xf5ab,
|
829
|
+
:pastafarianism => 0xf67b,
|
830
|
+
:paste => 0xf0ea,
|
831
|
+
:pause => 0xf04c,
|
832
|
+
:pause_circle => 0xf28b,
|
833
|
+
:paw => 0xf1b0,
|
834
|
+
:peace => 0xf67c,
|
835
|
+
:pen => 0xf304,
|
836
|
+
:pen_alt => 0xf305,
|
837
|
+
:pen_fancy => 0xf5ac,
|
838
|
+
:pen_nib => 0xf5ad,
|
839
|
+
:pen_square => 0xf14b,
|
840
|
+
:pencil_alt => 0xf303,
|
841
|
+
:pencil_ruler => 0xf5ae,
|
842
|
+
:people_carry => 0xf4ce,
|
843
|
+
:pepper_hot => 0xf816,
|
844
|
+
:percent => 0xf295,
|
845
|
+
:percentage => 0xf541,
|
846
|
+
:person_booth => 0xf756,
|
847
|
+
:phone => 0xf095,
|
848
|
+
:phone_alt => 0xf879,
|
849
|
+
:phone_slash => 0xf3dd,
|
850
|
+
:phone_square => 0xf098,
|
851
|
+
:phone_square_alt => 0xf87b,
|
852
|
+
:phone_volume => 0xf2a0,
|
853
|
+
:photo_video => 0xf87c,
|
854
|
+
:piggy_bank => 0xf4d3,
|
855
|
+
:pills => 0xf484,
|
856
|
+
:pizza_slice => 0xf818,
|
857
|
+
:place_of_worship => 0xf67f,
|
858
|
+
:plane => 0xf072,
|
859
|
+
:plane_arrival => 0xf5af,
|
860
|
+
:plane_departure => 0xf5b0,
|
861
|
+
:play => 0xf04b,
|
862
|
+
:play_circle => 0xf144,
|
863
|
+
:plug => 0xf1e6,
|
864
|
+
:plus => 0xf067,
|
865
|
+
:plus_circle => 0xf055,
|
866
|
+
:plus_square => 0xf0fe,
|
867
|
+
:podcast => 0xf2ce,
|
868
|
+
:poll => 0xf681,
|
869
|
+
:poll_h => 0xf682,
|
870
|
+
:poo => 0xf2fe,
|
871
|
+
:poo_storm => 0xf75a,
|
872
|
+
:poop => 0xf619,
|
873
|
+
:portrait => 0xf3e0,
|
874
|
+
:pound_sign => 0xf154,
|
875
|
+
:power_off => 0xf011,
|
876
|
+
:pray => 0xf683,
|
877
|
+
:praying_hands => 0xf684,
|
878
|
+
:prescription => 0xf5b1,
|
879
|
+
:prescription_bottle => 0xf485,
|
880
|
+
:prescription_bottle_alt => 0xf486,
|
881
|
+
:print => 0xf02f,
|
882
|
+
:procedures => 0xf487,
|
883
|
+
:project_diagram => 0xf542,
|
884
|
+
:puzzle_piece => 0xf12e,
|
885
|
+
:qrcode => 0xf029,
|
886
|
+
:question => 0xf128,
|
887
|
+
:question_circle => 0xf059,
|
888
|
+
:quidditch => 0xf458,
|
889
|
+
:quote_left => 0xf10d,
|
890
|
+
:quote_right => 0xf10e,
|
891
|
+
:quran => 0xf687,
|
892
|
+
:radiation => 0xf7b9,
|
893
|
+
:radiation_alt => 0xf7ba,
|
894
|
+
:rainbow => 0xf75b,
|
895
|
+
:random => 0xf074,
|
896
|
+
:receipt => 0xf543,
|
897
|
+
:record_vinyl => 0xf8d9,
|
898
|
+
:recycle => 0xf1b8,
|
899
|
+
:redo => 0xf01e,
|
900
|
+
:redo_alt => 0xf2f9,
|
901
|
+
:registered => 0xf25d,
|
902
|
+
:remove_format => 0xf87d,
|
903
|
+
:reply => 0xf3e5,
|
904
|
+
:reply_all => 0xf122,
|
905
|
+
:republican => 0xf75e,
|
906
|
+
:restroom => 0xf7bd,
|
907
|
+
:retweet => 0xf079,
|
908
|
+
:ribbon => 0xf4d6,
|
909
|
+
:ring => 0xf70b,
|
910
|
+
:road => 0xf018,
|
911
|
+
:robot => 0xf544,
|
912
|
+
:rocket => 0xf135,
|
913
|
+
:route => 0xf4d7,
|
914
|
+
:rss => 0xf09e,
|
915
|
+
:rss_square => 0xf143,
|
916
|
+
:ruble_sign => 0xf158,
|
917
|
+
:ruler => 0xf545,
|
918
|
+
:ruler_combined => 0xf546,
|
919
|
+
:ruler_horizontal => 0xf547,
|
920
|
+
:ruler_vertical => 0xf548,
|
921
|
+
:running => 0xf70c,
|
922
|
+
:rupee_sign => 0xf156,
|
923
|
+
:sad_cry => 0xf5b3,
|
924
|
+
:sad_tear => 0xf5b4,
|
925
|
+
:satellite => 0xf7bf,
|
926
|
+
:satellite_dish => 0xf7c0,
|
927
|
+
:save => 0xf0c7,
|
928
|
+
:school => 0xf549,
|
929
|
+
:screwdriver => 0xf54a,
|
930
|
+
:scroll => 0xf70e,
|
931
|
+
:sd_card => 0xf7c2,
|
932
|
+
:search => 0xf002,
|
933
|
+
:search_dollar => 0xf688,
|
934
|
+
:search_location => 0xf689,
|
935
|
+
:search_minus => 0xf010,
|
936
|
+
:search_plus => 0xf00e,
|
937
|
+
:seedling => 0xf4d8,
|
938
|
+
:server => 0xf233,
|
939
|
+
:shapes => 0xf61f,
|
940
|
+
:share => 0xf064,
|
941
|
+
:share_alt => 0xf1e0,
|
942
|
+
:share_alt_square => 0xf1e1,
|
943
|
+
:share_square => 0xf14d,
|
944
|
+
:shekel_sign => 0xf20b,
|
945
|
+
:shield_alt => 0xf3ed,
|
946
|
+
:ship => 0xf21a,
|
947
|
+
:shipping_fast => 0xf48b,
|
948
|
+
:shoe_prints => 0xf54b,
|
949
|
+
:shopping_bag => 0xf290,
|
950
|
+
:shopping_basket => 0xf291,
|
951
|
+
:shopping_cart => 0xf07a,
|
952
|
+
:shower => 0xf2cc,
|
953
|
+
:shuttle_van => 0xf5b6,
|
954
|
+
:sign => 0xf4d9,
|
955
|
+
:sign_in_alt => 0xf2f6,
|
956
|
+
:sign_language => 0xf2a7,
|
957
|
+
:sign_out_alt => 0xf2f5,
|
958
|
+
:signal => 0xf012,
|
959
|
+
:signature => 0xf5b7,
|
960
|
+
:sim_card => 0xf7c4,
|
961
|
+
:sitemap => 0xf0e8,
|
962
|
+
:skating => 0xf7c5,
|
963
|
+
:skiing => 0xf7c9,
|
964
|
+
:skiing_nordic => 0xf7ca,
|
965
|
+
:skull => 0xf54c,
|
966
|
+
:skull_crossbones => 0xf714,
|
967
|
+
:slash => 0xf715,
|
968
|
+
:sleigh => 0xf7cc,
|
969
|
+
:sliders_h => 0xf1de,
|
970
|
+
:smile => 0xf118,
|
971
|
+
:smile_beam => 0xf5b8,
|
972
|
+
:smile_wink => 0xf4da,
|
973
|
+
:smog => 0xf75f,
|
974
|
+
:smoking => 0xf48d,
|
975
|
+
:smoking_ban => 0xf54d,
|
976
|
+
:sms => 0xf7cd,
|
977
|
+
:snowboarding => 0xf7ce,
|
978
|
+
:snowflake => 0xf2dc,
|
979
|
+
:snowman => 0xf7d0,
|
980
|
+
:snowplow => 0xf7d2,
|
981
|
+
:socks => 0xf696,
|
982
|
+
:solar_panel => 0xf5ba,
|
983
|
+
:sort => 0xf0dc,
|
984
|
+
:sort_alpha_down => 0xf15d,
|
985
|
+
:sort_alpha_down_alt => 0xf881,
|
986
|
+
:sort_alpha_up => 0xf15e,
|
987
|
+
:sort_alpha_up_alt => 0xf882,
|
988
|
+
:sort_amount_down => 0xf160,
|
989
|
+
:sort_amount_down_alt => 0xf884,
|
990
|
+
:sort_amount_up => 0xf161,
|
991
|
+
:sort_amount_up_alt => 0xf885,
|
992
|
+
:sort_down => 0xf0dd,
|
993
|
+
:sort_numeric_down => 0xf162,
|
994
|
+
:sort_numeric_down_alt => 0xf886,
|
995
|
+
:sort_numeric_up => 0xf163,
|
996
|
+
:sort_numeric_up_alt => 0xf887,
|
997
|
+
:sort_up => 0xf0de,
|
998
|
+
:spa => 0xf5bb,
|
999
|
+
:space_shuttle => 0xf197,
|
1000
|
+
:spell_check => 0xf891,
|
1001
|
+
:spider => 0xf717,
|
1002
|
+
:spinner => 0xf110,
|
1003
|
+
:splotch => 0xf5bc,
|
1004
|
+
:spray_can => 0xf5bd,
|
1005
|
+
:square => 0xf0c8,
|
1006
|
+
:square_full => 0xf45c,
|
1007
|
+
:square_root_alt => 0xf698,
|
1008
|
+
:stamp => 0xf5bf,
|
1009
|
+
:star => 0xf005,
|
1010
|
+
:star_and_crescent => 0xf699,
|
1011
|
+
:star_half => 0xf089,
|
1012
|
+
:star_half_alt => 0xf5c0,
|
1013
|
+
:star_of_david => 0xf69a,
|
1014
|
+
:star_of_life => 0xf621,
|
1015
|
+
:step_backward => 0xf048,
|
1016
|
+
:step_forward => 0xf051,
|
1017
|
+
:stethoscope => 0xf0f1,
|
1018
|
+
:sticky_note => 0xf249,
|
1019
|
+
:stop => 0xf04d,
|
1020
|
+
:stop_circle => 0xf28d,
|
1021
|
+
:stopwatch => 0xf2f2,
|
1022
|
+
:store => 0xf54e,
|
1023
|
+
:store_alt => 0xf54f,
|
1024
|
+
:stream => 0xf550,
|
1025
|
+
:street_view => 0xf21d,
|
1026
|
+
:strikethrough => 0xf0cc,
|
1027
|
+
:stroopwafel => 0xf551,
|
1028
|
+
:subscript => 0xf12c,
|
1029
|
+
:subway => 0xf239,
|
1030
|
+
:suitcase => 0xf0f2,
|
1031
|
+
:suitcase_rolling => 0xf5c1,
|
1032
|
+
:sun => 0xf185,
|
1033
|
+
:superscript => 0xf12b,
|
1034
|
+
:surprise => 0xf5c2,
|
1035
|
+
:swatchbook => 0xf5c3,
|
1036
|
+
:swimmer => 0xf5c4,
|
1037
|
+
:swimming_pool => 0xf5c5,
|
1038
|
+
:synagogue => 0xf69b,
|
1039
|
+
:sync => 0xf021,
|
1040
|
+
:sync_alt => 0xf2f1,
|
1041
|
+
:syringe => 0xf48e,
|
1042
|
+
:table => 0xf0ce,
|
1043
|
+
:table_tennis => 0xf45d,
|
1044
|
+
:tablet => 0xf10a,
|
1045
|
+
:tablet_alt => 0xf3fa,
|
1046
|
+
:tablets => 0xf490,
|
1047
|
+
:tachometer_alt => 0xf3fd,
|
1048
|
+
:tag => 0xf02b,
|
1049
|
+
:tags => 0xf02c,
|
1050
|
+
:tape => 0xf4db,
|
1051
|
+
:tasks => 0xf0ae,
|
1052
|
+
:taxi => 0xf1ba,
|
1053
|
+
:teeth => 0xf62e,
|
1054
|
+
:teeth_open => 0xf62f,
|
1055
|
+
:temperature_high => 0xf769,
|
1056
|
+
:temperature_low => 0xf76b,
|
1057
|
+
:tenge => 0xf7d7,
|
1058
|
+
:terminal => 0xf120,
|
1059
|
+
:text_height => 0xf034,
|
1060
|
+
:text_width => 0xf035,
|
1061
|
+
:th => 0xf00a,
|
1062
|
+
:th_large => 0xf009,
|
1063
|
+
:th_list => 0xf00b,
|
1064
|
+
:theater_masks => 0xf630,
|
1065
|
+
:thermometer => 0xf491,
|
1066
|
+
:thermometer_empty => 0xf2cb,
|
1067
|
+
:thermometer_full => 0xf2c7,
|
1068
|
+
:thermometer_half => 0xf2c9,
|
1069
|
+
:thermometer_quarter => 0xf2ca,
|
1070
|
+
:thermometer_three_quarters => 0xf2c8,
|
1071
|
+
:thumbs_down => 0xf165,
|
1072
|
+
:thumbs_up => 0xf164,
|
1073
|
+
:thumbtack => 0xf08d,
|
1074
|
+
:ticket_alt => 0xf3ff,
|
1075
|
+
:times => 0xf00d,
|
1076
|
+
:times_circle => 0xf057,
|
1077
|
+
:tint => 0xf043,
|
1078
|
+
:tint_slash => 0xf5c7,
|
1079
|
+
:tired => 0xf5c8,
|
1080
|
+
:toggle_off => 0xf204,
|
1081
|
+
:toggle_on => 0xf205,
|
1082
|
+
:toilet => 0xf7d8,
|
1083
|
+
:toilet_paper => 0xf71e,
|
1084
|
+
:toolbox => 0xf552,
|
1085
|
+
:tools => 0xf7d9,
|
1086
|
+
:tooth => 0xf5c9,
|
1087
|
+
:torah => 0xf6a0,
|
1088
|
+
:torii_gate => 0xf6a1,
|
1089
|
+
:tractor => 0xf722,
|
1090
|
+
:trademark => 0xf25c,
|
1091
|
+
:traffic_light => 0xf637,
|
1092
|
+
:train => 0xf238,
|
1093
|
+
:tram => 0xf7da,
|
1094
|
+
:transgender => 0xf224,
|
1095
|
+
:transgender_alt => 0xf225,
|
1096
|
+
:trash => 0xf1f8,
|
1097
|
+
:trash_alt => 0xf2ed,
|
1098
|
+
:trash_restore => 0xf829,
|
1099
|
+
:trash_restore_alt => 0xf82a,
|
1100
|
+
:tree => 0xf1bb,
|
1101
|
+
:trophy => 0xf091,
|
1102
|
+
:truck => 0xf0d1,
|
1103
|
+
:truck_loading => 0xf4de,
|
1104
|
+
:truck_monster => 0xf63b,
|
1105
|
+
:truck_moving => 0xf4df,
|
1106
|
+
:truck_pickup => 0xf63c,
|
1107
|
+
:tshirt => 0xf553,
|
1108
|
+
:tty => 0xf1e4,
|
1109
|
+
:tv => 0xf26c,
|
1110
|
+
:umbrella => 0xf0e9,
|
1111
|
+
:umbrella_beach => 0xf5ca,
|
1112
|
+
:underline => 0xf0cd,
|
1113
|
+
:undo => 0xf0e2,
|
1114
|
+
:undo_alt => 0xf2ea,
|
1115
|
+
:universal_access => 0xf29a,
|
1116
|
+
:university => 0xf19c,
|
1117
|
+
:unlink => 0xf127,
|
1118
|
+
:unlock => 0xf09c,
|
1119
|
+
:unlock_alt => 0xf13e,
|
1120
|
+
:upload => 0xf093,
|
1121
|
+
:user => 0xf007,
|
1122
|
+
:user_alt => 0xf406,
|
1123
|
+
:user_alt_slash => 0xf4fa,
|
1124
|
+
:user_astronaut => 0xf4fb,
|
1125
|
+
:user_check => 0xf4fc,
|
1126
|
+
:user_circle => 0xf2bd,
|
1127
|
+
:user_clock => 0xf4fd,
|
1128
|
+
:user_cog => 0xf4fe,
|
1129
|
+
:user_edit => 0xf4ff,
|
1130
|
+
:user_friends => 0xf500,
|
1131
|
+
:user_graduate => 0xf501,
|
1132
|
+
:user_injured => 0xf728,
|
1133
|
+
:user_lock => 0xf502,
|
1134
|
+
:user_md => 0xf0f0,
|
1135
|
+
:user_minus => 0xf503,
|
1136
|
+
:user_ninja => 0xf504,
|
1137
|
+
:user_nurse => 0xf82f,
|
1138
|
+
:user_plus => 0xf234,
|
1139
|
+
:user_secret => 0xf21b,
|
1140
|
+
:user_shield => 0xf505,
|
1141
|
+
:user_slash => 0xf506,
|
1142
|
+
:user_tag => 0xf507,
|
1143
|
+
:user_tie => 0xf508,
|
1144
|
+
:user_times => 0xf235,
|
1145
|
+
:users => 0xf0c0,
|
1146
|
+
:users_cog => 0xf509,
|
1147
|
+
:utensil_spoon => 0xf2e5,
|
1148
|
+
:utensils => 0xf2e7,
|
1149
|
+
:vector_square => 0xf5cb,
|
1150
|
+
:venus => 0xf221,
|
1151
|
+
:venus_double => 0xf226,
|
1152
|
+
:venus_mars => 0xf228,
|
1153
|
+
:vial => 0xf492,
|
1154
|
+
:vials => 0xf493,
|
1155
|
+
:video => 0xf03d,
|
1156
|
+
:video_slash => 0xf4e2,
|
1157
|
+
:vihara => 0xf6a7,
|
1158
|
+
:voicemail => 0xf897,
|
1159
|
+
:volleyball_ball => 0xf45f,
|
1160
|
+
:volume_down => 0xf027,
|
1161
|
+
:volume_mute => 0xf6a9,
|
1162
|
+
:volume_off => 0xf026,
|
1163
|
+
:volume_up => 0xf028,
|
1164
|
+
:vote_yea => 0xf772,
|
1165
|
+
:vr_cardboard => 0xf729,
|
1166
|
+
:walking => 0xf554,
|
1167
|
+
:wallet => 0xf555,
|
1168
|
+
:warehouse => 0xf494,
|
1169
|
+
:water => 0xf773,
|
1170
|
+
:wave_square => 0xf83e,
|
1171
|
+
:weight => 0xf496,
|
1172
|
+
:weight_hanging => 0xf5cd,
|
1173
|
+
:wheelchair => 0xf193,
|
1174
|
+
:wifi => 0xf1eb,
|
1175
|
+
:wind => 0xf72e,
|
1176
|
+
:window_close => 0xf410,
|
1177
|
+
:window_maximize => 0xf2d0,
|
1178
|
+
:window_minimize => 0xf2d1,
|
1179
|
+
:window_restore => 0xf2d2,
|
1180
|
+
:wine_bottle => 0xf72f,
|
1181
|
+
:wine_glass => 0xf4e3,
|
1182
|
+
:wine_glass_alt => 0xf5ce,
|
1183
|
+
:won_sign => 0xf159,
|
1184
|
+
:wrench => 0xf0ad,
|
1185
|
+
:x_ray => 0xf497,
|
1186
|
+
:yen_sign => 0xf157,
|
1187
|
+
:yin_yang => 0xf6ad,
|
1188
|
+
},
|
1189
|
+
|
1190
|
+
##
|
1191
|
+
# Brands symbols
|
1192
|
+
brands: {
|
1193
|
+
:logo_500px => 0xf26e,
|
1194
|
+
:accessible_icon => 0xf368,
|
1195
|
+
:accusoft => 0xf369,
|
1196
|
+
:acquisitions_incorporated => 0xf6af,
|
1197
|
+
:adn => 0xf170,
|
1198
|
+
:adobe => 0xf778,
|
1199
|
+
:adversal => 0xf36a,
|
1200
|
+
:affiliatetheme => 0xf36b,
|
1201
|
+
:airbnb => 0xf834,
|
1202
|
+
:algolia => 0xf36c,
|
1203
|
+
:alipay => 0xf642,
|
1204
|
+
:amazon => 0xf270,
|
1205
|
+
:amazon_pay => 0xf42c,
|
1206
|
+
:amilia => 0xf36d,
|
1207
|
+
:android => 0xf17b,
|
1208
|
+
:angellist => 0xf209,
|
1209
|
+
:angrycreative => 0xf36e,
|
1210
|
+
:angular => 0xf420,
|
1211
|
+
:app_store => 0xf36f,
|
1212
|
+
:app_store_ios => 0xf370,
|
1213
|
+
:apper => 0xf371,
|
1214
|
+
:apple => 0xf179,
|
1215
|
+
:apple_pay => 0xf415,
|
1216
|
+
:artstation => 0xf77a,
|
1217
|
+
:asymmetrik => 0xf372,
|
1218
|
+
:atlassian => 0xf77b,
|
1219
|
+
:audible => 0xf373,
|
1220
|
+
:autoprefixer => 0xf41c,
|
1221
|
+
:avianex => 0xf374,
|
1222
|
+
:aviato => 0xf421,
|
1223
|
+
:aws => 0xf375,
|
1224
|
+
:bandcamp => 0xf2d5,
|
1225
|
+
:battle_net => 0xf835,
|
1226
|
+
:behance => 0xf1b4,
|
1227
|
+
:behance_square => 0xf1b5,
|
1228
|
+
:bimobject => 0xf378,
|
1229
|
+
:bitbucket => 0xf171,
|
1230
|
+
:bitcoin => 0xf379,
|
1231
|
+
:bity => 0xf37a,
|
1232
|
+
:black_tie => 0xf27e,
|
1233
|
+
:blackberry => 0xf37b,
|
1234
|
+
:blogger => 0xf37c,
|
1235
|
+
:blogger_b => 0xf37d,
|
1236
|
+
:bluetooth => 0xf293,
|
1237
|
+
:bluetooth_b => 0xf294,
|
1238
|
+
:bootstrap => 0xf836,
|
1239
|
+
:btc => 0xf15a,
|
1240
|
+
:buffer => 0xf837,
|
1241
|
+
:buromobelexperte => 0xf37f,
|
1242
|
+
:buy_n_large => 0xf8a6,
|
1243
|
+
:buysellads => 0xf20d,
|
1244
|
+
:canadian_maple_leaf => 0xf785,
|
1245
|
+
:cc_amazon_pay => 0xf42d,
|
1246
|
+
:cc_amex => 0xf1f3,
|
1247
|
+
:cc_apple_pay => 0xf416,
|
1248
|
+
:cc_diners_club => 0xf24c,
|
1249
|
+
:cc_discover => 0xf1f2,
|
1250
|
+
:cc_jcb => 0xf24b,
|
1251
|
+
:cc_mastercard => 0xf1f1,
|
1252
|
+
:cc_paypal => 0xf1f4,
|
1253
|
+
:cc_stripe => 0xf1f5,
|
1254
|
+
:cc_visa => 0xf1f0,
|
1255
|
+
:centercode => 0xf380,
|
1256
|
+
:centos => 0xf789,
|
1257
|
+
:chrome => 0xf268,
|
1258
|
+
:chromecast => 0xf838,
|
1259
|
+
:cloudscale => 0xf383,
|
1260
|
+
:cloudsmith => 0xf384,
|
1261
|
+
:cloudversify => 0xf385,
|
1262
|
+
:codepen => 0xf1cb,
|
1263
|
+
:codiepie => 0xf284,
|
1264
|
+
:confluence => 0xf78d,
|
1265
|
+
:connectdevelop => 0xf20e,
|
1266
|
+
:contao => 0xf26d,
|
1267
|
+
:cotton_bureau => 0xf89e,
|
1268
|
+
:cpanel => 0xf388,
|
1269
|
+
:creative_commons => 0xf25e,
|
1270
|
+
:creative_commons_by => 0xf4e7,
|
1271
|
+
:creative_commons_nc => 0xf4e8,
|
1272
|
+
:creative_commons_nc_eu => 0xf4e9,
|
1273
|
+
:creative_commons_nc_jp => 0xf4ea,
|
1274
|
+
:creative_commons_nd => 0xf4eb,
|
1275
|
+
:creative_commons_pd => 0xf4ec,
|
1276
|
+
:creative_commons_pd_alt => 0xf4ed,
|
1277
|
+
:creative_commons_remix => 0xf4ee,
|
1278
|
+
:creative_commons_sa => 0xf4ef,
|
1279
|
+
:creative_commons_sampling => 0xf4f0,
|
1280
|
+
:creative_commons_sampling_plus => 0xf4f1,
|
1281
|
+
:creative_commons_share => 0xf4f2,
|
1282
|
+
:creative_commons_zero => 0xf4f3,
|
1283
|
+
:critical_role => 0xf6c9,
|
1284
|
+
:css3 => 0xf13c,
|
1285
|
+
:css3_alt => 0xf38b,
|
1286
|
+
:cuttlefish => 0xf38c,
|
1287
|
+
:d_and_d => 0xf38d,
|
1288
|
+
:d_and_d_beyond => 0xf6ca,
|
1289
|
+
:dashcube => 0xf210,
|
1290
|
+
:delicious => 0xf1a5,
|
1291
|
+
:deploydog => 0xf38e,
|
1292
|
+
:deskpro => 0xf38f,
|
1293
|
+
:dev => 0xf6cc,
|
1294
|
+
:deviantart => 0xf1bd,
|
1295
|
+
:dhl => 0xf790,
|
1296
|
+
:diaspora => 0xf791,
|
1297
|
+
:digg => 0xf1a6,
|
1298
|
+
:digital_ocean => 0xf391,
|
1299
|
+
:discord => 0xf392,
|
1300
|
+
:discourse => 0xf393,
|
1301
|
+
:dochub => 0xf394,
|
1302
|
+
:docker => 0xf395,
|
1303
|
+
:draft2digital => 0xf396,
|
1304
|
+
:dribbble => 0xf17d,
|
1305
|
+
:dribbble_square => 0xf397,
|
1306
|
+
:dropbox => 0xf16b,
|
1307
|
+
:drupal => 0xf1a9,
|
1308
|
+
:dyalog => 0xf399,
|
1309
|
+
:earlybirds => 0xf39a,
|
1310
|
+
:ebay => 0xf4f4,
|
1311
|
+
:edge => 0xf282,
|
1312
|
+
:elementor => 0xf430,
|
1313
|
+
:ello => 0xf5f1,
|
1314
|
+
:ember => 0xf423,
|
1315
|
+
:empire => 0xf1d1,
|
1316
|
+
:envira => 0xf299,
|
1317
|
+
:erlang => 0xf39d,
|
1318
|
+
:ethereum => 0xf42e,
|
1319
|
+
:etsy => 0xf2d7,
|
1320
|
+
:evernote => 0xf839,
|
1321
|
+
:expeditedssl => 0xf23e,
|
1322
|
+
:facebook => 0xf09a,
|
1323
|
+
:facebook_f => 0xf39e,
|
1324
|
+
:facebook_messenger => 0xf39f,
|
1325
|
+
:facebook_square => 0xf082,
|
1326
|
+
:fantasy_flight_games => 0xf6dc,
|
1327
|
+
:fedex => 0xf797,
|
1328
|
+
:fedora => 0xf798,
|
1329
|
+
:figma => 0xf799,
|
1330
|
+
:firefox => 0xf269,
|
1331
|
+
:first_order => 0xf2b0,
|
1332
|
+
:first_order_alt => 0xf50a,
|
1333
|
+
:firstdraft => 0xf3a1,
|
1334
|
+
:flickr => 0xf16e,
|
1335
|
+
:flipboard => 0xf44d,
|
1336
|
+
:fly => 0xf417,
|
1337
|
+
:font_awesome => 0xf2b4,
|
1338
|
+
:font_awesome_alt => 0xf35c,
|
1339
|
+
:font_awesome_flag => 0xf425,
|
1340
|
+
:fonticons => 0xf280,
|
1341
|
+
:fonticons_fi => 0xf3a2,
|
1342
|
+
:fort_awesome => 0xf286,
|
1343
|
+
:fort_awesome_alt => 0xf3a3,
|
1344
|
+
:forumbee => 0xf211,
|
1345
|
+
:foursquare => 0xf180,
|
1346
|
+
:free_code_camp => 0xf2c5,
|
1347
|
+
:freebsd => 0xf3a4,
|
1348
|
+
:fulcrum => 0xf50b,
|
1349
|
+
:galactic_republic => 0xf50c,
|
1350
|
+
:galactic_senate => 0xf50d,
|
1351
|
+
:get_pocket => 0xf265,
|
1352
|
+
:gg => 0xf260,
|
1353
|
+
:gg_circle => 0xf261,
|
1354
|
+
:git => 0xf1d3,
|
1355
|
+
:git_alt => 0xf841,
|
1356
|
+
:git_square => 0xf1d2,
|
1357
|
+
:github => 0xf09b,
|
1358
|
+
:github_alt => 0xf113,
|
1359
|
+
:github_square => 0xf092,
|
1360
|
+
:gitkraken => 0xf3a6,
|
1361
|
+
:gitlab => 0xf296,
|
1362
|
+
:gitter => 0xf426,
|
1363
|
+
:glide => 0xf2a5,
|
1364
|
+
:glide_g => 0xf2a6,
|
1365
|
+
:gofore => 0xf3a7,
|
1366
|
+
:goodreads => 0xf3a8,
|
1367
|
+
:goodreads_g => 0xf3a9,
|
1368
|
+
:google => 0xf1a0,
|
1369
|
+
:google_drive => 0xf3aa,
|
1370
|
+
:google_play => 0xf3ab,
|
1371
|
+
:google_plus => 0xf2b3,
|
1372
|
+
:google_plus_g => 0xf0d5,
|
1373
|
+
:google_plus_square => 0xf0d4,
|
1374
|
+
:google_wallet => 0xf1ee,
|
1375
|
+
:gratipay => 0xf184,
|
1376
|
+
:grav => 0xf2d6,
|
1377
|
+
:gripfire => 0xf3ac,
|
1378
|
+
:grunt => 0xf3ad,
|
1379
|
+
:gulp => 0xf3ae,
|
1380
|
+
:hacker_news => 0xf1d4,
|
1381
|
+
:hacker_news_square => 0xf3af,
|
1382
|
+
:hackerrank => 0xf5f7,
|
1383
|
+
:hips => 0xf452,
|
1384
|
+
:hire_a_helper => 0xf3b0,
|
1385
|
+
:hooli => 0xf427,
|
1386
|
+
:hornbill => 0xf592,
|
1387
|
+
:hotjar => 0xf3b1,
|
1388
|
+
:houzz => 0xf27c,
|
1389
|
+
:html5 => 0xf13b,
|
1390
|
+
:hubspot => 0xf3b2,
|
1391
|
+
:imdb => 0xf2d8,
|
1392
|
+
:instagram => 0xf16d,
|
1393
|
+
:intercom => 0xf7af,
|
1394
|
+
:internet_explorer => 0xf26b,
|
1395
|
+
:invision => 0xf7b0,
|
1396
|
+
:ioxhost => 0xf208,
|
1397
|
+
:itch_io => 0xf83a,
|
1398
|
+
:itunes => 0xf3b4,
|
1399
|
+
:itunes_note => 0xf3b5,
|
1400
|
+
:java => 0xf4e4,
|
1401
|
+
:jedi_order => 0xf50e,
|
1402
|
+
:jenkins => 0xf3b6,
|
1403
|
+
:jira => 0xf7b1,
|
1404
|
+
:joget => 0xf3b7,
|
1405
|
+
:joomla => 0xf1aa,
|
1406
|
+
:js => 0xf3b8,
|
1407
|
+
:js_square => 0xf3b9,
|
1408
|
+
:jsfiddle => 0xf1cc,
|
1409
|
+
:kaggle => 0xf5fa,
|
1410
|
+
:keybase => 0xf4f5,
|
1411
|
+
:keycdn => 0xf3ba,
|
1412
|
+
:kickstarter => 0xf3bb,
|
1413
|
+
:kickstarter_k => 0xf3bc,
|
1414
|
+
:korvue => 0xf42f,
|
1415
|
+
:laravel => 0xf3bd,
|
1416
|
+
:lastfm => 0xf202,
|
1417
|
+
:lastfm_square => 0xf203,
|
1418
|
+
:leanpub => 0xf212,
|
1419
|
+
:less => 0xf41d,
|
1420
|
+
:line => 0xf3c0,
|
1421
|
+
:linkedin => 0xf08c,
|
1422
|
+
:linkedin_in => 0xf0e1,
|
1423
|
+
:linode => 0xf2b8,
|
1424
|
+
:linux => 0xf17c,
|
1425
|
+
:lyft => 0xf3c3,
|
1426
|
+
:magento => 0xf3c4,
|
1427
|
+
:mailchimp => 0xf59e,
|
1428
|
+
:mandalorian => 0xf50f,
|
1429
|
+
:markdown => 0xf60f,
|
1430
|
+
:mastodon => 0xf4f6,
|
1431
|
+
:maxcdn => 0xf136,
|
1432
|
+
:mdb => 0xf8ca,
|
1433
|
+
:medapps => 0xf3c6,
|
1434
|
+
:medium => 0xf23a,
|
1435
|
+
:medium_m => 0xf3c7,
|
1436
|
+
:medrt => 0xf3c8,
|
1437
|
+
:meetup => 0xf2e0,
|
1438
|
+
:megaport => 0xf5a3,
|
1439
|
+
:mendeley => 0xf7b3,
|
1440
|
+
:microsoft => 0xf3ca,
|
1441
|
+
:mix => 0xf3cb,
|
1442
|
+
:mixcloud => 0xf289,
|
1443
|
+
:mizuni => 0xf3cc,
|
1444
|
+
:modx => 0xf285,
|
1445
|
+
:monero => 0xf3d0,
|
1446
|
+
:napster => 0xf3d2,
|
1447
|
+
:neos => 0xf612,
|
1448
|
+
:nimblr => 0xf5a8,
|
1449
|
+
:node => 0xf419,
|
1450
|
+
:node_js => 0xf3d3,
|
1451
|
+
:npm => 0xf3d4,
|
1452
|
+
:ns8 => 0xf3d5,
|
1453
|
+
:nutritionix => 0xf3d6,
|
1454
|
+
:odnoklassniki => 0xf263,
|
1455
|
+
:odnoklassniki_square => 0xf264,
|
1456
|
+
:old_republic => 0xf510,
|
1457
|
+
:opencart => 0xf23d,
|
1458
|
+
:openid => 0xf19b,
|
1459
|
+
:opera => 0xf26a,
|
1460
|
+
:optin_monster => 0xf23c,
|
1461
|
+
:orcid => 0xf8d2,
|
1462
|
+
:osi => 0xf41a,
|
1463
|
+
:page4 => 0xf3d7,
|
1464
|
+
:pagelines => 0xf18c,
|
1465
|
+
:palfed => 0xf3d8,
|
1466
|
+
:patreon => 0xf3d9,
|
1467
|
+
:paypal => 0xf1ed,
|
1468
|
+
:penny_arcade => 0xf704,
|
1469
|
+
:periscope => 0xf3da,
|
1470
|
+
:phabricator => 0xf3db,
|
1471
|
+
:phoenix_framework => 0xf3dc,
|
1472
|
+
:phoenix_squadron => 0xf511,
|
1473
|
+
:php => 0xf457,
|
1474
|
+
:pied_piper => 0xf2ae,
|
1475
|
+
:pied_piper_alt => 0xf1a8,
|
1476
|
+
:pied_piper_hat => 0xf4e5,
|
1477
|
+
:pied_piper_pp => 0xf1a7,
|
1478
|
+
:pinterest => 0xf0d2,
|
1479
|
+
:pinterest_p => 0xf231,
|
1480
|
+
:pinterest_square => 0xf0d3,
|
1481
|
+
:playstation => 0xf3df,
|
1482
|
+
:product_hunt => 0xf288,
|
1483
|
+
:pushed => 0xf3e1,
|
1484
|
+
:python => 0xf3e2,
|
1485
|
+
:qq => 0xf1d6,
|
1486
|
+
:quinscape => 0xf459,
|
1487
|
+
:quora => 0xf2c4,
|
1488
|
+
:r_project => 0xf4f7,
|
1489
|
+
:raspberry_pi => 0xf7bb,
|
1490
|
+
:ravelry => 0xf2d9,
|
1491
|
+
:react => 0xf41b,
|
1492
|
+
:reacteurope => 0xf75d,
|
1493
|
+
:readme => 0xf4d5,
|
1494
|
+
:rebel => 0xf1d0,
|
1495
|
+
:red_river => 0xf3e3,
|
1496
|
+
:reddit => 0xf1a1,
|
1497
|
+
:reddit_alien => 0xf281,
|
1498
|
+
:reddit_square => 0xf1a2,
|
1499
|
+
:redhat => 0xf7bc,
|
1500
|
+
:renren => 0xf18b,
|
1501
|
+
:replyd => 0xf3e6,
|
1502
|
+
:researchgate => 0xf4f8,
|
1503
|
+
:resolving => 0xf3e7,
|
1504
|
+
:rev => 0xf5b2,
|
1505
|
+
:rocketchat => 0xf3e8,
|
1506
|
+
:rockrms => 0xf3e9,
|
1507
|
+
:safari => 0xf267,
|
1508
|
+
:salesforce => 0xf83b,
|
1509
|
+
:sass => 0xf41e,
|
1510
|
+
:schlix => 0xf3ea,
|
1511
|
+
:scribd => 0xf28a,
|
1512
|
+
:searchengin => 0xf3eb,
|
1513
|
+
:sellcast => 0xf2da,
|
1514
|
+
:sellsy => 0xf213,
|
1515
|
+
:servicestack => 0xf3ec,
|
1516
|
+
:shirtsinbulk => 0xf214,
|
1517
|
+
:shopware => 0xf5b5,
|
1518
|
+
:simplybuilt => 0xf215,
|
1519
|
+
:sistrix => 0xf3ee,
|
1520
|
+
:sith => 0xf512,
|
1521
|
+
:sketch => 0xf7c6,
|
1522
|
+
:skyatlas => 0xf216,
|
1523
|
+
:skype => 0xf17e,
|
1524
|
+
:slack => 0xf198,
|
1525
|
+
:slack_hash => 0xf3ef,
|
1526
|
+
:slideshare => 0xf1e7,
|
1527
|
+
:snapchat => 0xf2ab,
|
1528
|
+
:snapchat_ghost => 0xf2ac,
|
1529
|
+
:snapchat_square => 0xf2ad,
|
1530
|
+
:soundcloud => 0xf1be,
|
1531
|
+
:sourcetree => 0xf7d3,
|
1532
|
+
:speakap => 0xf3f3,
|
1533
|
+
:speaker_deck => 0xf83c,
|
1534
|
+
:spotify => 0xf1bc,
|
1535
|
+
:squarespace => 0xf5be,
|
1536
|
+
:stack_exchange => 0xf18d,
|
1537
|
+
:stack_overflow => 0xf16c,
|
1538
|
+
:stackpath => 0xf842,
|
1539
|
+
:staylinked => 0xf3f5,
|
1540
|
+
:steam => 0xf1b6,
|
1541
|
+
:steam_square => 0xf1b7,
|
1542
|
+
:steam_symbol => 0xf3f6,
|
1543
|
+
:sticker_mule => 0xf3f7,
|
1544
|
+
:strava => 0xf428,
|
1545
|
+
:stripe => 0xf429,
|
1546
|
+
:stripe_s => 0xf42a,
|
1547
|
+
:studiovinari => 0xf3f8,
|
1548
|
+
:stumbleupon => 0xf1a4,
|
1549
|
+
:stumbleupon_circle => 0xf1a3,
|
1550
|
+
:superpowers => 0xf2dd,
|
1551
|
+
:supple => 0xf3f9,
|
1552
|
+
:suse => 0xf7d6,
|
1553
|
+
:swift => 0xf8e1,
|
1554
|
+
:symfony => 0xf83d,
|
1555
|
+
:teamspeak => 0xf4f9,
|
1556
|
+
:telegram => 0xf2c6,
|
1557
|
+
:telegram_plane => 0xf3fe,
|
1558
|
+
:tencent_weibo => 0xf1d5,
|
1559
|
+
:the_red_yeti => 0xf69d,
|
1560
|
+
:themeco => 0xf5c6,
|
1561
|
+
:themeisle => 0xf2b2,
|
1562
|
+
:think_peaks => 0xf731,
|
1563
|
+
:trade_federation => 0xf513,
|
1564
|
+
:trello => 0xf181,
|
1565
|
+
:tripadvisor => 0xf262,
|
1566
|
+
:tumblr => 0xf173,
|
1567
|
+
:tumblr_square => 0xf174,
|
1568
|
+
:twitch => 0xf1e8,
|
1569
|
+
:twitter => 0xf099,
|
1570
|
+
:twitter_square => 0xf081,
|
1571
|
+
:typo3 => 0xf42b,
|
1572
|
+
:uber => 0xf402,
|
1573
|
+
:ubuntu => 0xf7df,
|
1574
|
+
:uikit => 0xf403,
|
1575
|
+
:umbraco => 0xf8e8,
|
1576
|
+
:uniregistry => 0xf404,
|
1577
|
+
:untappd => 0xf405,
|
1578
|
+
:ups => 0xf7e0,
|
1579
|
+
:usb => 0xf287,
|
1580
|
+
:usps => 0xf7e1,
|
1581
|
+
:ussunnah => 0xf407,
|
1582
|
+
:vaadin => 0xf408,
|
1583
|
+
:viacoin => 0xf237,
|
1584
|
+
:viadeo => 0xf2a9,
|
1585
|
+
:viadeo_square => 0xf2aa,
|
1586
|
+
:viber => 0xf409,
|
1587
|
+
:vimeo => 0xf40a,
|
1588
|
+
:vimeo_square => 0xf194,
|
1589
|
+
:vimeo_v => 0xf27d,
|
1590
|
+
:vine => 0xf1ca,
|
1591
|
+
:vk => 0xf189,
|
1592
|
+
:vnv => 0xf40b,
|
1593
|
+
:vuejs => 0xf41f,
|
1594
|
+
:waze => 0xf83f,
|
1595
|
+
:weebly => 0xf5cc,
|
1596
|
+
:weibo => 0xf18a,
|
1597
|
+
:weixin => 0xf1d7,
|
1598
|
+
:whatsapp => 0xf232,
|
1599
|
+
:whatsapp_square => 0xf40c,
|
1600
|
+
:whmcs => 0xf40d,
|
1601
|
+
:wikipedia_w => 0xf266,
|
1602
|
+
:windows => 0xf17a,
|
1603
|
+
:wix => 0xf5cf,
|
1604
|
+
:wizards_of_the_coast => 0xf730,
|
1605
|
+
:wolf_pack_battalion => 0xf514,
|
1606
|
+
:wordpress => 0xf19a,
|
1607
|
+
:wordpress_simple => 0xf411,
|
1608
|
+
:wpbeginner => 0xf297,
|
1609
|
+
:wpexplorer => 0xf2de,
|
1610
|
+
:wpforms => 0xf298,
|
1611
|
+
:wpressr => 0xf3e4,
|
1612
|
+
:xbox => 0xf412,
|
1613
|
+
:xing => 0xf168,
|
1614
|
+
:xing_square => 0xf169,
|
1615
|
+
:y_combinator => 0xf23b,
|
1616
|
+
:yahoo => 0xf19e,
|
1617
|
+
:yammer => 0xf840,
|
1618
|
+
:yandex => 0xf413,
|
1619
|
+
:yandex_international => 0xf414,
|
1620
|
+
:yarn => 0xf7e3,
|
1621
|
+
:yelp => 0xf1e9,
|
1622
|
+
:yoast => 0xf2b1,
|
1623
|
+
:youtube => 0xf167,
|
1624
|
+
:youtube_square => 0xf431,
|
1625
|
+
:zhihu => 0xf63f,
|
1626
|
+
}
|
1627
|
+
}
|
1628
|
+
end
|
1629
|
+
end
|
1630
|
+
end
|