@rbxts/react-clean-ui 1.0.5
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/README.md +3 -0
- package/out/Components/Decorator/BoxShadow.d.ts +10 -0
- package/out/Components/Decorator/BoxShadow.luau +41 -0
- package/out/Components/Decorator/Corners.d.ts +7 -0
- package/out/Components/Decorator/Corners.luau +15 -0
- package/out/Components/Decorator/Padding.d.ts +3 -0
- package/out/Components/Decorator/Padding.luau +18 -0
- package/out/Components/Decorator/index.d.ts +3 -0
- package/out/Components/Decorator/init.luau +13 -0
- package/out/Components/Input/Button.d.ts +24 -0
- package/out/Components/Input/Button.luau +159 -0
- package/out/Components/Input/Checkbox.d.ts +12 -0
- package/out/Components/Input/Checkbox.luau +79 -0
- package/out/Components/Input/HoverButton.d.ts +16 -0
- package/out/Components/Input/HoverButton.luau +127 -0
- package/out/Components/Input/Input.d.ts +12 -0
- package/out/Components/Input/Input.luau +92 -0
- package/out/Components/Input/Select.d.ts +30 -0
- package/out/Components/Input/Select.luau +288 -0
- package/out/Components/Input/Slider.d.ts +51 -0
- package/out/Components/Input/Slider.luau +415 -0
- package/out/Components/Input/index.d.ts +6 -0
- package/out/Components/Input/init.luau +22 -0
- package/out/Components/Layout/Column.d.ts +13 -0
- package/out/Components/Layout/Column.luau +60 -0
- package/out/Components/Layout/Container.d.ts +6 -0
- package/out/Components/Layout/Container.luau +73 -0
- package/out/Components/Layout/Draggable.d.ts +46 -0
- package/out/Components/Layout/Draggable.luau +315 -0
- package/out/Components/Layout/Droppable.d.ts +10 -0
- package/out/Components/Layout/Droppable.luau +34 -0
- package/out/Components/Layout/Fieldset.d.ts +34 -0
- package/out/Components/Layout/Fieldset.luau +130 -0
- package/out/Components/Layout/FlexItem.d.ts +11 -0
- package/out/Components/Layout/FlexItem.luau +20 -0
- package/out/Components/Layout/Group.d.ts +34 -0
- package/out/Components/Layout/Group.luau +168 -0
- package/out/Components/Layout/HStack.d.ts +12 -0
- package/out/Components/Layout/HStack.luau +21 -0
- package/out/Components/Layout/Row.d.ts +15 -0
- package/out/Components/Layout/Row.luau +87 -0
- package/out/Components/Layout/Scroller.d.ts +7 -0
- package/out/Components/Layout/Scroller.luau +54 -0
- package/out/Components/Layout/Tabs.d.ts +31 -0
- package/out/Components/Layout/Tabs.luau +189 -0
- package/out/Components/Layout/VStack.d.ts +11 -0
- package/out/Components/Layout/VStack.luau +21 -0
- package/out/Components/Layout/index.d.ts +12 -0
- package/out/Components/Layout/init.luau +40 -0
- package/out/Components/Navigation/Menu.d.ts +19 -0
- package/out/Components/Navigation/Menu.luau +91 -0
- package/out/Components/Navigation/index.d.ts +1 -0
- package/out/Components/Navigation/init.luau +7 -0
- package/out/Components/Surface/Box.d.ts +7 -0
- package/out/Components/Surface/Box.luau +50 -0
- package/out/Components/Surface/Card.d.ts +25 -0
- package/out/Components/Surface/Card.luau +138 -0
- package/out/Components/Surface/Icon.d.ts +10 -0
- package/out/Components/Surface/Icon.luau +64 -0
- package/out/Components/Surface/Panel.d.ts +4 -0
- package/out/Components/Surface/Panel.luau +33 -0
- package/out/Components/Surface/index.d.ts +4 -0
- package/out/Components/Surface/init.luau +16 -0
- package/out/Components/Typography/Text.d.ts +18 -0
- package/out/Components/Typography/Text.luau +48 -0
- package/out/Components/Typography/index.d.ts +1 -0
- package/out/Components/Typography/init.luau +7 -0
- package/out/Components/index.d.ts +8 -0
- package/out/Components/init.luau +28 -0
- package/out/Contexts/draggable.context.d.ts +8 -0
- package/out/Contexts/draggable.context.luau +7 -0
- package/out/Contexts/droppable.context.d.ts +6 -0
- package/out/Contexts/droppable.context.luau +7 -0
- package/out/Contexts/index.d.ts +6 -0
- package/out/Contexts/init.luau +22 -0
- package/out/Contexts/navigation.context.d.ts +5 -0
- package/out/Contexts/navigation.context.luau +9 -0
- package/out/Contexts/overlay.context.d.ts +13 -0
- package/out/Contexts/overlay.context.luau +17 -0
- package/out/Contexts/row.context.d.ts +9 -0
- package/out/Contexts/row.context.luau +12 -0
- package/out/Contexts/theme.context.d.ts +3 -0
- package/out/Contexts/theme.context.luau +8 -0
- package/out/Helpers/breakpoint.helper.d.ts +7 -0
- package/out/Helpers/breakpoint.helper.luau +124 -0
- package/out/Helpers/color.helper.d.ts +5 -0
- package/out/Helpers/color.helper.luau +101 -0
- package/out/Helpers/create-ui-story.d.ts +16 -0
- package/out/Helpers/create-ui-story.luau +38 -0
- package/out/Helpers/css.helper.d.ts +12 -0
- package/out/Helpers/css.helper.luau +114 -0
- package/out/Helpers/gui.helper.d.ts +10 -0
- package/out/Helpers/gui.helper.luau +134 -0
- package/out/Helpers/index.d.ts +8 -0
- package/out/Helpers/init.luau +28 -0
- package/out/Helpers/size.helper.d.ts +14 -0
- package/out/Helpers/size.helper.luau +162 -0
- package/out/Helpers/spacing.helper.d.ts +7 -0
- package/out/Helpers/spacing.helper.luau +57 -0
- package/out/Helpers/typography.helper.d.ts +7 -0
- package/out/Helpers/typography.helper.luau +91 -0
- package/out/Interfaces/clean.element.props.d.ts +109 -0
- package/out/Interfaces/clean.element.props.luau +5 -0
- package/out/Interfaces/icon.d.ts +2 -0
- package/out/Interfaces/icon.luau +2 -0
- package/out/Interfaces/index.d.ts +3 -0
- package/out/Interfaces/init.luau +13 -0
- package/out/Interfaces/userinput.d.ts +22 -0
- package/out/Interfaces/userinput.luau +8 -0
- package/out/Providers/index.d.ts +3 -0
- package/out/Providers/init.luau +13 -0
- package/out/Providers/overlay.provider.d.ts +3 -0
- package/out/Providers/overlay.provider.luau +25 -0
- package/out/Providers/registry.provider.d.ts +33 -0
- package/out/Providers/registry.provider.luau +119 -0
- package/out/Providers/theme.provider.d.ts +8 -0
- package/out/Providers/theme.provider.luau +12 -0
- package/out/Theme/CleanTheme.d.ts +169 -0
- package/out/Theme/CleanTheme.luau +2 -0
- package/out/Theme/DefaultIcons.d.ts +2 -0
- package/out/Theme/DefaultIcons.luau +791 -0
- package/out/Theme/index.d.ts +3 -0
- package/out/Theme/init.luau +13 -0
- package/out/Theme/themes/dark.theme.d.ts +2 -0
- package/out/Theme/themes/dark.theme.luau +345 -0
- package/out/Theme/themes/default.theme.d.ts +2 -0
- package/out/Theme/themes/default.theme.luau +403 -0
- package/out/Theme/themes/index.d.ts +3 -0
- package/out/Theme/themes/init.luau +13 -0
- package/out/Theme/themes/sandstone.theme.d.ts +2 -0
- package/out/Theme/themes/sandstone.theme.luau +345 -0
- package/out/index.d.ts +6 -0
- package/out/init.luau +22 -0
- package/package.json +43 -0
|
@@ -0,0 +1,791 @@
|
|
|
1
|
+
-- Compiled with roblox-ts v3.0.0
|
|
2
|
+
local DefaultIconSet = {
|
|
3
|
+
["500px"] = 113506349901651,
|
|
4
|
+
["address-book-o"] = 78883600490069,
|
|
5
|
+
["address-book"] = 106409242940293,
|
|
6
|
+
["address-card-o"] = 118721245720399,
|
|
7
|
+
["address-card"] = 107044811692803,
|
|
8
|
+
adjust = 74512269511744,
|
|
9
|
+
adn = 110606896312923,
|
|
10
|
+
["align-center"] = 137981740850822,
|
|
11
|
+
["align-justify"] = 112941119009592,
|
|
12
|
+
["align-left"] = 87459867788516,
|
|
13
|
+
["align-right"] = 132280054366784,
|
|
14
|
+
amazon = 85422147674048,
|
|
15
|
+
ambulance = 134769361148283,
|
|
16
|
+
["american-sign-language-interpreting"] = 114784414556397,
|
|
17
|
+
anchor = 82584183575696,
|
|
18
|
+
android = 71203083599258,
|
|
19
|
+
angellist = 116287723619550,
|
|
20
|
+
["angle-double-down"] = 85002672649774,
|
|
21
|
+
["angle-double-left"] = 99497579628494,
|
|
22
|
+
["angle-double-right"] = 135320191049681,
|
|
23
|
+
["angle-double-up"] = 129433106600526,
|
|
24
|
+
["angle-down"] = 137008046984362,
|
|
25
|
+
["angle-left"] = 113978643960018,
|
|
26
|
+
["angle-right"] = 126016867809303,
|
|
27
|
+
["angle-up"] = 135370278469834,
|
|
28
|
+
apple = 104262581212396,
|
|
29
|
+
archive = 134535487492270,
|
|
30
|
+
["area-chart"] = 131836642532382,
|
|
31
|
+
["arrow-circle-down"] = 136714835520854,
|
|
32
|
+
["arrow-circle-left"] = 76154508085931,
|
|
33
|
+
["arrow-circle-o-down"] = 128349700346239,
|
|
34
|
+
["arrow-circle-o-left"] = 138631950151030,
|
|
35
|
+
["arrow-circle-o-right"] = 98657311095290,
|
|
36
|
+
["arrow-circle-o-up"] = 132899289811458,
|
|
37
|
+
["arrow-circle-right"] = 129102419021798,
|
|
38
|
+
["arrow-circle-up"] = 107631597969127,
|
|
39
|
+
["arrow-down"] = 103601971549928,
|
|
40
|
+
["arrow-left"] = 109466381929499,
|
|
41
|
+
["arrow-right"] = 137478559060507,
|
|
42
|
+
["arrow-up"] = 119076362943885,
|
|
43
|
+
["arrows-alt"] = 97493979074381,
|
|
44
|
+
["arrows-h"] = 129192565543565,
|
|
45
|
+
["arrows-v"] = 117369546394740,
|
|
46
|
+
arrows = 82501005067603,
|
|
47
|
+
["asl-interpreting"] = 96012641548070,
|
|
48
|
+
["assistive-listening-systems"] = 97881038169244,
|
|
49
|
+
asterisk = 130825428100135,
|
|
50
|
+
at = 94862745950638,
|
|
51
|
+
["audio-description"] = 111007626635980,
|
|
52
|
+
automobile = 100717230894593,
|
|
53
|
+
backward = 93044429030857,
|
|
54
|
+
["balance-scale"] = 80585442167858,
|
|
55
|
+
ban = 106809132806953,
|
|
56
|
+
bandcamp = 95744764872980,
|
|
57
|
+
bank = 83204731489525,
|
|
58
|
+
["bar-chart-o"] = 134157089174455,
|
|
59
|
+
["bar-chart"] = 120410355170136,
|
|
60
|
+
barcode = 126290705554660,
|
|
61
|
+
bars = 140311178889576,
|
|
62
|
+
bath = 88568986732442,
|
|
63
|
+
bathtub = 101565978188708,
|
|
64
|
+
["battery-0"] = 131067715261436,
|
|
65
|
+
["battery-1"] = 88446250754813,
|
|
66
|
+
["battery-2"] = 80065169498896,
|
|
67
|
+
["battery-3"] = 94150680166014,
|
|
68
|
+
["battery-4"] = 82465370086620,
|
|
69
|
+
["battery-empty"] = 93219147038058,
|
|
70
|
+
["battery-full"] = 95975156901439,
|
|
71
|
+
["battery-half"] = 117211634686202,
|
|
72
|
+
["battery-quarter"] = 140009069263729,
|
|
73
|
+
["battery-three-quarters"] = 82826651171313,
|
|
74
|
+
battery = 81146573050563,
|
|
75
|
+
bed = 136016979605098,
|
|
76
|
+
beer = 127283486000478,
|
|
77
|
+
["bell-o"] = 79221286795287,
|
|
78
|
+
["bell-slash-o"] = 97643985661133,
|
|
79
|
+
["bell-slash"] = 72730091906113,
|
|
80
|
+
bell = 99798098712409,
|
|
81
|
+
bicycle = 76884098816453,
|
|
82
|
+
binoculars = 120897437789223,
|
|
83
|
+
["birthday-cake"] = 72225864412539,
|
|
84
|
+
["bitbucket-square"] = 114024378505264,
|
|
85
|
+
bitbucket = 84582780864239,
|
|
86
|
+
bitcoin = 88384785502514,
|
|
87
|
+
["black-tie"] = 139782494145293,
|
|
88
|
+
blind = 119054637962850,
|
|
89
|
+
["bluetooth-b"] = 136651163613382,
|
|
90
|
+
bluetooth = 130690281027019,
|
|
91
|
+
bold = 99989713509694,
|
|
92
|
+
bolt = 114350785752758,
|
|
93
|
+
bomb = 111992459146936,
|
|
94
|
+
book = 102784168259056,
|
|
95
|
+
["bookmark-o"] = 117219916217372,
|
|
96
|
+
bookmark = 102875055496679,
|
|
97
|
+
braille = 140202201508060,
|
|
98
|
+
briefcase = 92091496181657,
|
|
99
|
+
btc = 88384785502514,
|
|
100
|
+
bug = 133750251410522,
|
|
101
|
+
["building-o"] = 138439447312041,
|
|
102
|
+
building = 80286409091015,
|
|
103
|
+
bullhorn = 133849593382072,
|
|
104
|
+
bullseye = 86146301463779,
|
|
105
|
+
bus = 117115134901266,
|
|
106
|
+
buysellads = 102212657607653,
|
|
107
|
+
cab = 127244979021266,
|
|
108
|
+
calculator = 76080704303035,
|
|
109
|
+
["calendar-check-o"] = 101539848370921,
|
|
110
|
+
["calendar-minus-o"] = 127465644867962,
|
|
111
|
+
["calendar-o"] = 117219233311380,
|
|
112
|
+
["calendar-plus-o"] = 107852313061515,
|
|
113
|
+
["calendar-times-o"] = 121863041974738,
|
|
114
|
+
calendar = 131073676370555,
|
|
115
|
+
["camera-retro"] = 90538444888057,
|
|
116
|
+
camera = 138770639513001,
|
|
117
|
+
car = 100717230894593,
|
|
118
|
+
["caret-down"] = 83951025977517,
|
|
119
|
+
["caret-left"] = 95963760815156,
|
|
120
|
+
["caret-right"] = 134055136182724,
|
|
121
|
+
["caret-square-o-down"] = 134966009814413,
|
|
122
|
+
["caret-square-o-left"] = 114371908625650,
|
|
123
|
+
["caret-square-o-right"] = 115115893213389,
|
|
124
|
+
["caret-square-o-up"] = 122311518800464,
|
|
125
|
+
["caret-up"] = 131176864795718,
|
|
126
|
+
["cart-arrow-down"] = 139157598768305,
|
|
127
|
+
["cart-plus"] = 114491415881767,
|
|
128
|
+
["cc-amex"] = 79498923806928,
|
|
129
|
+
["cc-diners-club"] = 89510932681386,
|
|
130
|
+
["cc-discover"] = 109561406287508,
|
|
131
|
+
["cc-jcb"] = 126325784239519,
|
|
132
|
+
["cc-mastercard"] = 122087387940759,
|
|
133
|
+
["cc-paypal"] = 128414394847363,
|
|
134
|
+
["cc-stripe"] = 111419655458298,
|
|
135
|
+
["cc-visa"] = 109628695578792,
|
|
136
|
+
cc = 79870548303620,
|
|
137
|
+
certificate = 131843410287905,
|
|
138
|
+
["chain-broken"] = 96461052585426,
|
|
139
|
+
chain = 111651972758592,
|
|
140
|
+
["check-circle-o"] = 101515916876772,
|
|
141
|
+
["check-circle"] = 76967850665509,
|
|
142
|
+
["check-square-o"] = 75422007102954,
|
|
143
|
+
["check-square"] = 126191695386020,
|
|
144
|
+
check = 126831029319673,
|
|
145
|
+
["chevron-circle-down"] = 99329479867760,
|
|
146
|
+
["chevron-circle-left"] = 126431687082721,
|
|
147
|
+
["chevron-circle-right"] = 93591939060842,
|
|
148
|
+
["chevron-circle-up"] = 102276941310476,
|
|
149
|
+
["chevron-down"] = 87233801135620,
|
|
150
|
+
["chevron-left"] = 97952389693266,
|
|
151
|
+
["chevron-right"] = 118506733715054,
|
|
152
|
+
["chevron-up"] = 127073071657389,
|
|
153
|
+
child = 135701207575168,
|
|
154
|
+
chrome = 123923803856501,
|
|
155
|
+
["circle-o-notch"] = 94632125714945,
|
|
156
|
+
["circle-o"] = 98241147563982,
|
|
157
|
+
["circle-thin"] = 126304090404547,
|
|
158
|
+
circle = 77071342233393,
|
|
159
|
+
clipboard = 115573881014710,
|
|
160
|
+
["clock-o"] = 72150982832353,
|
|
161
|
+
clone = 113102556195768,
|
|
162
|
+
close = 93735504090818,
|
|
163
|
+
["cloud-download"] = 131785264032620,
|
|
164
|
+
["cloud-upload"] = 105876885575703,
|
|
165
|
+
cloud = 94228317841523,
|
|
166
|
+
cny = 103661064571453,
|
|
167
|
+
["code-fork"] = 124868586496588,
|
|
168
|
+
code = 76617977606161,
|
|
169
|
+
codepen = 131678107124004,
|
|
170
|
+
codiepie = 96934617041026,
|
|
171
|
+
coffee = 140205935995416,
|
|
172
|
+
cog = 91767953110891,
|
|
173
|
+
cogs = 72929381302644,
|
|
174
|
+
columns = 120869199557055,
|
|
175
|
+
["comment-o"] = 129378038749320,
|
|
176
|
+
comment = 102267787756736,
|
|
177
|
+
["commenting-o"] = 72916670982576,
|
|
178
|
+
commenting = 102571878189405,
|
|
179
|
+
["comments-o"] = 118795417256532,
|
|
180
|
+
comments = 108949813497674,
|
|
181
|
+
compass = 81608871757914,
|
|
182
|
+
compress = 126805081455989,
|
|
183
|
+
connectdevelop = 105183498775177,
|
|
184
|
+
contao = 75212707061057,
|
|
185
|
+
copy = 104740239075691,
|
|
186
|
+
copyright = 96472869336182,
|
|
187
|
+
["creative-commons"] = 76509435721845,
|
|
188
|
+
["credit-card-alt"] = 110061097368365,
|
|
189
|
+
["credit-card"] = 106260605149128,
|
|
190
|
+
crop = 76393232415295,
|
|
191
|
+
crosshairs = 110537485886043,
|
|
192
|
+
css3 = 81472677531751,
|
|
193
|
+
cube = 95011097699854,
|
|
194
|
+
cubes = 117543007379953,
|
|
195
|
+
cut = 90239759331230,
|
|
196
|
+
cutlery = 92510733611465,
|
|
197
|
+
dashboard = 130064247010041,
|
|
198
|
+
dashcube = 133693800289577,
|
|
199
|
+
database = 101722888756803,
|
|
200
|
+
deaf = 82194139613761,
|
|
201
|
+
deafness = 114938640449026,
|
|
202
|
+
dedent = 113169711026782,
|
|
203
|
+
delicious = 129068908552037,
|
|
204
|
+
desktop = 118935663523314,
|
|
205
|
+
deviantart = 133655562275418,
|
|
206
|
+
diamond = 94639100806879,
|
|
207
|
+
digg = 106242802687335,
|
|
208
|
+
dollar = 78353652857437,
|
|
209
|
+
["dot-circle-o"] = 112879242760006,
|
|
210
|
+
download = 140241406744976,
|
|
211
|
+
dribbble = 91087292647415,
|
|
212
|
+
["drivers-license-o"] = 78591879993864,
|
|
213
|
+
["drivers-license"] = 98832221846625,
|
|
214
|
+
dropbox = 96961173701203,
|
|
215
|
+
drupal = 96503583015742,
|
|
216
|
+
edge = 114808652235265,
|
|
217
|
+
edit = 115514540191840,
|
|
218
|
+
eercast = 80950257932269,
|
|
219
|
+
eject = 76523110544322,
|
|
220
|
+
["ellipsis-h"] = 116573320032624,
|
|
221
|
+
["ellipsis-v"] = 106209572367704,
|
|
222
|
+
empire = 76082459637632,
|
|
223
|
+
["envelope-o"] = 110723348814323,
|
|
224
|
+
["envelope-open-o"] = 107920652867227,
|
|
225
|
+
["envelope-open"] = 117847316233064,
|
|
226
|
+
["envelope-square"] = 95255576781771,
|
|
227
|
+
envelope = 93388479889455,
|
|
228
|
+
envira = 73849181235686,
|
|
229
|
+
eraser = 125653768875396,
|
|
230
|
+
etsy = 79177577774119,
|
|
231
|
+
eur = 72590783434289,
|
|
232
|
+
euro = 70694193703272,
|
|
233
|
+
exchange = 135996097237549,
|
|
234
|
+
["exclamation-circle"] = 131432760021006,
|
|
235
|
+
["exclamation-triangle"] = 118972154746726,
|
|
236
|
+
exclamation = 71156086582935,
|
|
237
|
+
expand = 123085249149221,
|
|
238
|
+
expeditedssl = 131361279736759,
|
|
239
|
+
["external-link-square"] = 81061422914557,
|
|
240
|
+
["external-link"] = 128767011656182,
|
|
241
|
+
["eye-slash"] = 136602065581254,
|
|
242
|
+
eye = 100504114536115,
|
|
243
|
+
eyedropper = 101944044274987,
|
|
244
|
+
fa = 98235113147912,
|
|
245
|
+
["facebook-f"] = 110718152524923,
|
|
246
|
+
["facebook-official"] = 94051126396659,
|
|
247
|
+
["facebook-square"] = 112346641810021,
|
|
248
|
+
facebook = 132120902637594,
|
|
249
|
+
["fast-backward"] = 83007684597322,
|
|
250
|
+
["fast-forward"] = 83979589267673,
|
|
251
|
+
fax = 93281403586051,
|
|
252
|
+
feed = 134423981641803,
|
|
253
|
+
female = 92479452549296,
|
|
254
|
+
["fighter-jet"] = 75931794513557,
|
|
255
|
+
["file-archive-o"] = 77432958357035,
|
|
256
|
+
["file-audio-o"] = 72361280003100,
|
|
257
|
+
["file-code-o"] = 96577182505045,
|
|
258
|
+
["file-excel-o"] = 95139829277918,
|
|
259
|
+
["file-image-o"] = 106813414123115,
|
|
260
|
+
["file-movie-o"] = 139235542791274,
|
|
261
|
+
["file-o"] = 91844277319601,
|
|
262
|
+
["file-pdf-o"] = 91213597096654,
|
|
263
|
+
["file-photo-o"] = 116027960179256,
|
|
264
|
+
["file-picture-o"] = 116027960179256,
|
|
265
|
+
["file-powerpoint-o"] = 71074552064055,
|
|
266
|
+
["file-sound-o"] = 95958767266588,
|
|
267
|
+
["file-text-o"] = 102553939401288,
|
|
268
|
+
["file-text"] = 108757900162452,
|
|
269
|
+
["file-video-o"] = 107206260840823,
|
|
270
|
+
["file-word-o"] = 94729727948380,
|
|
271
|
+
["file-zip-o"] = 135098896714875,
|
|
272
|
+
file = 103452474527411,
|
|
273
|
+
["files-o"] = 104740239075691,
|
|
274
|
+
film = 131328964200214,
|
|
275
|
+
filter = 72557212870121,
|
|
276
|
+
["fire-extinguisher"] = 99758367404727,
|
|
277
|
+
fire = 139505547297236,
|
|
278
|
+
firefox = 104285841976958,
|
|
279
|
+
["first-order"] = 122477761566016,
|
|
280
|
+
["flag-checkered"] = 100918965794846,
|
|
281
|
+
["flag-o"] = 108913973896495,
|
|
282
|
+
flag = 126871816060800,
|
|
283
|
+
flash = 106201291109154,
|
|
284
|
+
flask = 114067732044594,
|
|
285
|
+
flickr = 90852322902263,
|
|
286
|
+
floppy = 105992506351136,
|
|
287
|
+
["floppy-o"] = 72767985829966,
|
|
288
|
+
["folder-o"] = 137291320920290,
|
|
289
|
+
["folder-open-o"] = 134231227596622,
|
|
290
|
+
["folder-open"] = 116274907047533,
|
|
291
|
+
folder = 77654464810527,
|
|
292
|
+
["font-awesome"] = 75341168273093,
|
|
293
|
+
font = 113298594121519,
|
|
294
|
+
fonticons = 102071214162254,
|
|
295
|
+
["fort-awesome"] = 78191354032528,
|
|
296
|
+
forumbee = 121749459025663,
|
|
297
|
+
forward = 114867309995940,
|
|
298
|
+
foursquare = 82054798104938,
|
|
299
|
+
["free-code-camp"] = 132131908677434,
|
|
300
|
+
["frown-o"] = 124036365701456,
|
|
301
|
+
["futbol-o"] = 138157922707031,
|
|
302
|
+
gamepad = 77644897224630,
|
|
303
|
+
gavel = 81297633710983,
|
|
304
|
+
gbp = 85086389341433,
|
|
305
|
+
ge = 93622486283861,
|
|
306
|
+
gear = 105361618427312,
|
|
307
|
+
gears = 111939502367016,
|
|
308
|
+
genderless = 114686547269426,
|
|
309
|
+
["get-pocket"] = 118491949598163,
|
|
310
|
+
["gg-circle"] = 104298013789162,
|
|
311
|
+
gg = 109482654520391,
|
|
312
|
+
gift = 76118014408980,
|
|
313
|
+
["git-square"] = 85338677297578,
|
|
314
|
+
git = 136652096416590,
|
|
315
|
+
["github-alt"] = 121305482478082,
|
|
316
|
+
["github-square"] = 102869465689538,
|
|
317
|
+
github = 107637572192589,
|
|
318
|
+
gitlab = 130684850548281,
|
|
319
|
+
gittip = 78243112843780,
|
|
320
|
+
glass = 70579090556088,
|
|
321
|
+
["glide-g"] = 137094626103517,
|
|
322
|
+
glide = 110480316136219,
|
|
323
|
+
globe = 82493273844150,
|
|
324
|
+
["google-plus-circle"] = 86197376885124,
|
|
325
|
+
["google-plus-official"] = 105347282579094,
|
|
326
|
+
["google-plus-square"] = 104009423157741,
|
|
327
|
+
["google-plus"] = 120100660179836,
|
|
328
|
+
["google-wallet"] = 114889016156436,
|
|
329
|
+
google = 86689603671461,
|
|
330
|
+
["graduation-cap"] = 131653658959766,
|
|
331
|
+
gratipay = 78243112843780,
|
|
332
|
+
grav = 111152202603414,
|
|
333
|
+
group = 95356073483940,
|
|
334
|
+
["h-square"] = 137259941628720,
|
|
335
|
+
["hacker-news"] = 126539177834739,
|
|
336
|
+
["hand-grab-o"] = 74824178109710,
|
|
337
|
+
["hand-lizard-o"] = 129049488779991,
|
|
338
|
+
["hand-o-down"] = 121439266705232,
|
|
339
|
+
["hand-o-left"] = 75942533745403,
|
|
340
|
+
["hand-o-right"] = 78977611122229,
|
|
341
|
+
["hand-o-up"] = 140686910009134,
|
|
342
|
+
["hand-paper-o"] = 127497983166394,
|
|
343
|
+
["hand-peace-o"] = 100311990466522,
|
|
344
|
+
["hand-pointer-o"] = 83562764860547,
|
|
345
|
+
["hand-rock-o"] = 74824178109710,
|
|
346
|
+
["hand-scissors-o"] = 137116111456687,
|
|
347
|
+
["hand-spock-o"] = 119716590598025,
|
|
348
|
+
["hand-stop-o"] = 111402759891066,
|
|
349
|
+
["handshake-o"] = 117078948381537,
|
|
350
|
+
["hard-of-hearing"] = 94684289688507,
|
|
351
|
+
hashtag = 70429008000720,
|
|
352
|
+
["hdd-o"] = 70730785509126,
|
|
353
|
+
header = 91453895159938,
|
|
354
|
+
headphones = 121201583356122,
|
|
355
|
+
["heart-o"] = 140364882343540,
|
|
356
|
+
heart = 77750790654504,
|
|
357
|
+
heartbeat = 108869113449830,
|
|
358
|
+
history = 136131607903530,
|
|
359
|
+
home = 128522260119590,
|
|
360
|
+
["hospital-o"] = 92102563732812,
|
|
361
|
+
hotel = 134491265127605,
|
|
362
|
+
["hourglass-1"] = 118950129977587,
|
|
363
|
+
["hourglass-2"] = 99984503066189,
|
|
364
|
+
["hourglass-3"] = 95257872338672,
|
|
365
|
+
["hourglass-end"] = 84504242266997,
|
|
366
|
+
["hourglass-half"] = 130558017581055,
|
|
367
|
+
["hourglass-o"] = 74419855540528,
|
|
368
|
+
["hourglass-start"] = 91427626397758,
|
|
369
|
+
hourglass = 130070012159335,
|
|
370
|
+
houzz = 136763842718057,
|
|
371
|
+
html5 = 102358610965278,
|
|
372
|
+
["i-cursor"] = 105268833261459,
|
|
373
|
+
["id-badge"] = 111817051965548,
|
|
374
|
+
["id-card-o"] = 79968320875712,
|
|
375
|
+
["id-card"] = 82921701683462,
|
|
376
|
+
ils = 92611874374044,
|
|
377
|
+
image = 88569234799126,
|
|
378
|
+
imdb = 82057375771850,
|
|
379
|
+
inbox = 135024636481165,
|
|
380
|
+
indent = 96834936248938,
|
|
381
|
+
industry = 135441534339492,
|
|
382
|
+
["info-circle"] = 74734988715878,
|
|
383
|
+
info = 74381867267773,
|
|
384
|
+
inr = 104976674363106,
|
|
385
|
+
instagram = 139368364571118,
|
|
386
|
+
institution = 78606571759208,
|
|
387
|
+
["internet-explorer"] = 128104297593666,
|
|
388
|
+
intersex = 97584157391203,
|
|
389
|
+
ioxhost = 82111700370342,
|
|
390
|
+
italic = 122896115193333,
|
|
391
|
+
joomla = 94006953398126,
|
|
392
|
+
jpy = 96265244487760,
|
|
393
|
+
jsfiddle = 108514017395268,
|
|
394
|
+
key = 71808929791263,
|
|
395
|
+
["keyboard-o"] = 101141441360334,
|
|
396
|
+
krw = 73273392384946,
|
|
397
|
+
language = 126240503330299,
|
|
398
|
+
laptop = 108689424636853,
|
|
399
|
+
["lastfm-square"] = 87758696544800,
|
|
400
|
+
lastfm = 132877107824801,
|
|
401
|
+
leaf = 126627564886123,
|
|
402
|
+
leanpub = 134784057268842,
|
|
403
|
+
legal = 85283633590479,
|
|
404
|
+
["lemon-o"] = 82752289179105,
|
|
405
|
+
["level-down"] = 124074312330206,
|
|
406
|
+
["level-up"] = 85420607790840,
|
|
407
|
+
["life-bouy"] = 80584690138097,
|
|
408
|
+
["life-buoy"] = 108939856422726,
|
|
409
|
+
["life-ring"] = 95747524687374,
|
|
410
|
+
["life-saver"] = 88204041965782,
|
|
411
|
+
["lightbulb-o"] = 122493932763764,
|
|
412
|
+
["line-chart"] = 85883354254321,
|
|
413
|
+
link = 111651972758592,
|
|
414
|
+
["linkedin-square"] = 130217511266048,
|
|
415
|
+
linkedin = 124520391296726,
|
|
416
|
+
linode = 85120467086006,
|
|
417
|
+
linux = 78864359116684,
|
|
418
|
+
["list-alt"] = 94032250680760,
|
|
419
|
+
["list-ol"] = 78807128462938,
|
|
420
|
+
["list-ul"] = 82476934477891,
|
|
421
|
+
list = 127686360749075,
|
|
422
|
+
["location-arrow"] = 72182008397041,
|
|
423
|
+
lock = 126969663733991,
|
|
424
|
+
["long-arrow-down"] = 138402611067688,
|
|
425
|
+
["long-arrow-left"] = 73580839670820,
|
|
426
|
+
["long-arrow-right"] = 136835051011058,
|
|
427
|
+
["long-arrow-up"] = 139793290042963,
|
|
428
|
+
["low-vision"] = 140581344505732,
|
|
429
|
+
magic = 139020029531274,
|
|
430
|
+
magnet = 90924611576676,
|
|
431
|
+
["mail-forward"] = 77032275760020,
|
|
432
|
+
["mail-reply-all"] = 74716024851353,
|
|
433
|
+
["mail-reply"] = 126236917241761,
|
|
434
|
+
male = 137254897291769,
|
|
435
|
+
["map-marker"] = 126784136984577,
|
|
436
|
+
["map-o"] = 136051230285955,
|
|
437
|
+
["map-pin"] = 77176800409502,
|
|
438
|
+
["map-signs"] = 72767563063417,
|
|
439
|
+
map = 111739741305682,
|
|
440
|
+
["mars-double"] = 104064405445008,
|
|
441
|
+
["mars-stroke-h"] = 138653677534332,
|
|
442
|
+
["mars-stroke-v"] = 128323064871213,
|
|
443
|
+
["mars-stroke"] = 96025723184004,
|
|
444
|
+
mars = 114010288443299,
|
|
445
|
+
maxcdn = 96893180472861,
|
|
446
|
+
meanpath = 78402265236480,
|
|
447
|
+
medium = 78519240751136,
|
|
448
|
+
medkit = 90988170430965,
|
|
449
|
+
meetup = 75522470668618,
|
|
450
|
+
["meh-o"] = 128502743250631,
|
|
451
|
+
mercury = 100536500397515,
|
|
452
|
+
microchip = 110277818431039,
|
|
453
|
+
["microphone-slash"] = 110449396638036,
|
|
454
|
+
microphone = 84411758810674,
|
|
455
|
+
["minus-circle"] = 132082726219052,
|
|
456
|
+
["minus-square-o"] = 106974347514900,
|
|
457
|
+
["minus-square"] = 103666451983146,
|
|
458
|
+
minus = 109320394475327,
|
|
459
|
+
mixcloud = 71223796926197,
|
|
460
|
+
["mobile-phone"] = 118895868315462,
|
|
461
|
+
mobile = 126612625335609,
|
|
462
|
+
modx = 111950689815203,
|
|
463
|
+
money = 125268916134842,
|
|
464
|
+
["moon-o"] = 99383621048230,
|
|
465
|
+
["mortar-board"] = 90534355983496,
|
|
466
|
+
motorcycle = 128100042779180,
|
|
467
|
+
["mouse-pointer"] = 73214324253688,
|
|
468
|
+
music = 100671176441768,
|
|
469
|
+
navicon = 112410243714520,
|
|
470
|
+
neuter = 85375286221276,
|
|
471
|
+
["newspaper-o"] = 88956097566215,
|
|
472
|
+
["object-group"] = 71978617560996,
|
|
473
|
+
["object-ungroup"] = 125085705518339,
|
|
474
|
+
["odnoklassniki-square"] = 127822059853683,
|
|
475
|
+
odnoklassniki = 85987956285353,
|
|
476
|
+
opencart = 82815749518542,
|
|
477
|
+
openid = 128390433769004,
|
|
478
|
+
opera = 95759462031854,
|
|
479
|
+
["optin-monster"] = 94990838612103,
|
|
480
|
+
outdent = 109847688749993,
|
|
481
|
+
pagelines = 71108990855974,
|
|
482
|
+
["paint-brush"] = 102088000270242,
|
|
483
|
+
["paper-plane-o"] = 127498665509058,
|
|
484
|
+
["paper-plane"] = 81710302459293,
|
|
485
|
+
paperclip = 79290170671693,
|
|
486
|
+
paragraph = 72672141894265,
|
|
487
|
+
paste = 95593018351883,
|
|
488
|
+
["pause-circle-o"] = 109483494872186,
|
|
489
|
+
["pause-circle"] = 128927168932244,
|
|
490
|
+
pause = 101009124784832,
|
|
491
|
+
paw = 113251564720462,
|
|
492
|
+
paypal = 126297540065954,
|
|
493
|
+
["pencil-square-o"] = 127817290332656,
|
|
494
|
+
["pencil-square"] = 138349648392938,
|
|
495
|
+
pencil = 95369284064420,
|
|
496
|
+
percent = 140456558452696,
|
|
497
|
+
["phone-square"] = 80726178730175,
|
|
498
|
+
phone = 102201953416424,
|
|
499
|
+
photo = 88760431818198,
|
|
500
|
+
["picture-o"] = 88569234799126,
|
|
501
|
+
["pie-chart"] = 72899100516970,
|
|
502
|
+
["pied-piper-alt"] = 89518804705091,
|
|
503
|
+
["pied-piper-pp"] = 87304485662295,
|
|
504
|
+
["pied-piper"] = 136306064978046,
|
|
505
|
+
["pinterest-p"] = 72582093196419,
|
|
506
|
+
["pinterest-square"] = 114826834352130,
|
|
507
|
+
pinterest = 135823326525656,
|
|
508
|
+
plane = 118777065293206,
|
|
509
|
+
["play-circle-o"] = 93924239093291,
|
|
510
|
+
["play-circle"] = 127028487460237,
|
|
511
|
+
play = 92353641775067,
|
|
512
|
+
plug = 108986056429848,
|
|
513
|
+
["plus-circle"] = 91300364388323,
|
|
514
|
+
["plus-square-o"] = 127799877864486,
|
|
515
|
+
["plus-square"] = 120574763479587,
|
|
516
|
+
plus = 103580849161329,
|
|
517
|
+
podcast = 116875708069686,
|
|
518
|
+
["power-off"] = 118814689486953,
|
|
519
|
+
print = 115872178798914,
|
|
520
|
+
["product-hunt"] = 114949890533782,
|
|
521
|
+
["puzzle-piece"] = 84103009839238,
|
|
522
|
+
qq = 84335382588292,
|
|
523
|
+
qrcode = 97823433635348,
|
|
524
|
+
["question-circle-o"] = 138114187583216,
|
|
525
|
+
["question-circle"] = 109656385337289,
|
|
526
|
+
question = 96919178486254,
|
|
527
|
+
quora = 121726356137021,
|
|
528
|
+
["quote-left"] = 81047153820484,
|
|
529
|
+
["quote-right"] = 124589201337739,
|
|
530
|
+
ra = 83529046925730,
|
|
531
|
+
random = 77644163030342,
|
|
532
|
+
ravelry = 88356674241221,
|
|
533
|
+
rebel = 90457948788521,
|
|
534
|
+
recycle = 125418930130017,
|
|
535
|
+
["reddit-alien"] = 124189042809326,
|
|
536
|
+
["reddit-square"] = 81327565331109,
|
|
537
|
+
reddit = 104715726805312,
|
|
538
|
+
refresh = 117479397421085,
|
|
539
|
+
registered = 109361459682595,
|
|
540
|
+
remove = 91724347453055,
|
|
541
|
+
renren = 98461194489145,
|
|
542
|
+
reorder = 122968596040138,
|
|
543
|
+
["repeat"] = 95819794302564,
|
|
544
|
+
["reply-all"] = 91382669145189,
|
|
545
|
+
reply = 107803261694231,
|
|
546
|
+
resistance = 105741180342153,
|
|
547
|
+
retweet = 70401692287451,
|
|
548
|
+
rmb = 96265244487760,
|
|
549
|
+
road = 124631831066471,
|
|
550
|
+
rocket = 83815488457394,
|
|
551
|
+
["rotate-left"] = 93085885165896,
|
|
552
|
+
["rotate-right"] = 91276271477118,
|
|
553
|
+
rouble = 76099336137602,
|
|
554
|
+
["rss-square"] = 131525335353123,
|
|
555
|
+
rss = 91527357568012,
|
|
556
|
+
rub = 135835490131036,
|
|
557
|
+
ruble = 76099336137602,
|
|
558
|
+
rupee = 75765673749149,
|
|
559
|
+
s15 = 72288515472652,
|
|
560
|
+
safari = 88136705233541,
|
|
561
|
+
save = 103162031395655,
|
|
562
|
+
scissors = 99366489021474,
|
|
563
|
+
scribd = 102237677677202,
|
|
564
|
+
["search-minus"] = 122652741669101,
|
|
565
|
+
["search-plus"] = 127449969563859,
|
|
566
|
+
search = 134309677762446,
|
|
567
|
+
sellsy = 95857951116140,
|
|
568
|
+
["send-o"] = 91790795203556,
|
|
569
|
+
send = 81710302459293,
|
|
570
|
+
server = 74738388742529,
|
|
571
|
+
["share-alt-square"] = 111766330481255,
|
|
572
|
+
["share-alt"] = 80971277464515,
|
|
573
|
+
["share-square-o"] = 102394269631532,
|
|
574
|
+
["share-square"] = 76526588082545,
|
|
575
|
+
share = 71077107473264,
|
|
576
|
+
shekel = 92611874374044,
|
|
577
|
+
sheqel = 92611874374044,
|
|
578
|
+
shield = 96241052146139,
|
|
579
|
+
ship = 92813423956988,
|
|
580
|
+
shirtsinbulk = 81676742436431,
|
|
581
|
+
["shopping-bag"] = 134948803881213,
|
|
582
|
+
["shopping-basket"] = 82581268223764,
|
|
583
|
+
["shopping-cart"] = 82265081920175,
|
|
584
|
+
shower = 80357397092251,
|
|
585
|
+
["sign-in"] = 106077938772544,
|
|
586
|
+
["sign-language"] = 125775192798144,
|
|
587
|
+
["sign-out"] = 86849062933800,
|
|
588
|
+
signal = 130415569681184,
|
|
589
|
+
signing = 82948527464709,
|
|
590
|
+
simplybuilt = 105472617621342,
|
|
591
|
+
sitemap = 94728446071524,
|
|
592
|
+
skyatlas = 129682271929869,
|
|
593
|
+
skype = 91338671212955,
|
|
594
|
+
slack = 138157155656509,
|
|
595
|
+
sliders = 123965113984180,
|
|
596
|
+
slideshare = 125037181823341,
|
|
597
|
+
["smile-o"] = 136850137693835,
|
|
598
|
+
["snapchat-ghost"] = 78790353996310,
|
|
599
|
+
["snapchat-square"] = 139926744966908,
|
|
600
|
+
snapchat = 130984714814550,
|
|
601
|
+
["snowflake-o"] = 98205885649096,
|
|
602
|
+
["soccer-ball-o"] = 71627289668692,
|
|
603
|
+
["sort-alpha-asc"] = 70873919988328,
|
|
604
|
+
["sort-alpha-desc"] = 78791789624403,
|
|
605
|
+
["sort-amount-asc"] = 128882194525224,
|
|
606
|
+
["sort-amount-desc"] = 115012829966794,
|
|
607
|
+
["sort-asc"] = 136607249068023,
|
|
608
|
+
["sort-desc"] = 92437918560237,
|
|
609
|
+
["sort-down"] = 92437918560237,
|
|
610
|
+
["sort-numeric-asc"] = 83640713018570,
|
|
611
|
+
["sort-numeric-desc"] = 133687453448709,
|
|
612
|
+
["sort-up"] = 107965212683963,
|
|
613
|
+
sort = 116983726337997,
|
|
614
|
+
soundcloud = 90848655645519,
|
|
615
|
+
["space-shuttle"] = 71273104299163,
|
|
616
|
+
spinner = 91838904176522,
|
|
617
|
+
spoon = 93547853521040,
|
|
618
|
+
spotify = 105026220661149,
|
|
619
|
+
["square-o"] = 119174269766046,
|
|
620
|
+
square = 103778044333523,
|
|
621
|
+
["stack-exchange"] = 83046414396050,
|
|
622
|
+
["stack-overflow"] = 103743150567367,
|
|
623
|
+
["star-half-empty"] = 140519434610578,
|
|
624
|
+
["star-half-full"] = 140519434610578,
|
|
625
|
+
["star-half-o"] = 140519434610578,
|
|
626
|
+
["star-half"] = 87651003195293,
|
|
627
|
+
["star-o"] = 139593561762031,
|
|
628
|
+
star = 90284110323245,
|
|
629
|
+
["steam-square"] = 104876745206299,
|
|
630
|
+
steam = 99934537154910,
|
|
631
|
+
["step-backward"] = 106501312402571,
|
|
632
|
+
["step-forward"] = 75830134366137,
|
|
633
|
+
stethoscope = 90892613968340,
|
|
634
|
+
["sticky-note-o"] = 139745312826316,
|
|
635
|
+
["sticky-note"] = 122452000094253,
|
|
636
|
+
["stop-circle-o"] = 129853516087111,
|
|
637
|
+
["stop-circle"] = 100770694124727,
|
|
638
|
+
stop = 99559665176334,
|
|
639
|
+
["street-view"] = 96387251082091,
|
|
640
|
+
strikethrough = 91955132474422,
|
|
641
|
+
["stumbleupon-circle"] = 110336101389319,
|
|
642
|
+
stumbleupon = 74073790791958,
|
|
643
|
+
subscript = 135770937567955,
|
|
644
|
+
subway = 90749937818636,
|
|
645
|
+
suitcase = 74757642581276,
|
|
646
|
+
["sun-o"] = 73182512067632,
|
|
647
|
+
superpowers = 125316355650106,
|
|
648
|
+
superscript = 85718189550396,
|
|
649
|
+
support = 123200490468180,
|
|
650
|
+
table = 115919508775172,
|
|
651
|
+
tablet = 104724791945300,
|
|
652
|
+
tachometer = 81222170631687,
|
|
653
|
+
tag = 97980368575171,
|
|
654
|
+
tags = 109090333714923,
|
|
655
|
+
tasks = 74795254650366,
|
|
656
|
+
taxi = 107625613655987,
|
|
657
|
+
telegram = 118526162334856,
|
|
658
|
+
television = 71313584418360,
|
|
659
|
+
["tencent-weibo"] = 137264479823167,
|
|
660
|
+
terminal = 98701046222411,
|
|
661
|
+
["text-height"] = 119002015899443,
|
|
662
|
+
["text-width"] = 133173960430933,
|
|
663
|
+
["th-large"] = 122139514428796,
|
|
664
|
+
["th-list"] = 90862396223916,
|
|
665
|
+
th = 131917426466460,
|
|
666
|
+
themeisle = 83473152789896,
|
|
667
|
+
["thermometer-0"] = 132254068077373,
|
|
668
|
+
["thermometer-1"] = 83995657452519,
|
|
669
|
+
["thermometer-2"] = 74456522466720,
|
|
670
|
+
["thermometer-3"] = 108224314061299,
|
|
671
|
+
["thermometer-4"] = 102980973370483,
|
|
672
|
+
["thermometer-empty"] = 132254068077373,
|
|
673
|
+
["thermometer-full"] = 84999827856573,
|
|
674
|
+
["thermometer-half"] = 134942349068236,
|
|
675
|
+
["thermometer-quarter"] = 83995657452519,
|
|
676
|
+
["thermometer-three-quarters"] = 108224314061299,
|
|
677
|
+
thermometer = 121373355070588,
|
|
678
|
+
["thumb-tack"] = 129104676210603,
|
|
679
|
+
["thumbs-down"] = 140344948596844,
|
|
680
|
+
["thumbs-o-down"] = 88486200420598,
|
|
681
|
+
["thumbs-o-up"] = 87338414184087,
|
|
682
|
+
["thumbs-up"] = 76673887500109,
|
|
683
|
+
ticket = 86913254414861,
|
|
684
|
+
["times-circle-o"] = 116974412840935,
|
|
685
|
+
["times-circle"] = 74236298969789,
|
|
686
|
+
["times-rectangle-o"] = 139554547008650,
|
|
687
|
+
["times-rectangle"] = 106937217928814,
|
|
688
|
+
times = 95815740118912,
|
|
689
|
+
tint = 112267664155968,
|
|
690
|
+
["toggle-down"] = 126562513685026,
|
|
691
|
+
["toggle-left"] = 121292886738479,
|
|
692
|
+
["toggle-off"] = 80153292814227,
|
|
693
|
+
["toggle-on"] = 115360124167989,
|
|
694
|
+
["toggle-right"] = 91264257990767,
|
|
695
|
+
["toggle-up"] = 122311518800464,
|
|
696
|
+
trademark = 131474622669620,
|
|
697
|
+
train = 110161582200257,
|
|
698
|
+
["transgender-alt"] = 83611610588472,
|
|
699
|
+
transgender = 122970929348209,
|
|
700
|
+
["trash-o"] = 72993951539736,
|
|
701
|
+
trash = 84964919756639,
|
|
702
|
+
tree = 76076720569333,
|
|
703
|
+
trello = 119125679094122,
|
|
704
|
+
tripadvisor = 124637142473674,
|
|
705
|
+
trophy = 85825750018791,
|
|
706
|
+
truck = 103689448175398,
|
|
707
|
+
try = 130347791938177,
|
|
708
|
+
tty = 139308300368465,
|
|
709
|
+
["tumblr-square"] = 83160614243727,
|
|
710
|
+
tumblr = 119051907031200,
|
|
711
|
+
["turkish-lira"] = 102549824903171,
|
|
712
|
+
tv = 98135706347935,
|
|
713
|
+
twitch = 78271342127204,
|
|
714
|
+
["twitter-square"] = 74760509346443,
|
|
715
|
+
twitter = 103466920550107,
|
|
716
|
+
umbrella = 126631752136147,
|
|
717
|
+
underline = 103351621066747,
|
|
718
|
+
undo = 93085885165896,
|
|
719
|
+
["universal-access"] = 101334206129013,
|
|
720
|
+
university = 98655223624103,
|
|
721
|
+
unlink = 118208509554156,
|
|
722
|
+
["unlock-alt"] = 96937481560221,
|
|
723
|
+
unlock = 94032807115389,
|
|
724
|
+
unsorted = 119897697487929,
|
|
725
|
+
upload = 126415098889518,
|
|
726
|
+
usb = 97289206715952,
|
|
727
|
+
usd = 126641745134652,
|
|
728
|
+
["user-circle-o"] = 123675639997798,
|
|
729
|
+
["user-circle"] = 84949033999045,
|
|
730
|
+
["user-md"] = 118646812044781,
|
|
731
|
+
["user-o"] = 117468798193911,
|
|
732
|
+
["user-plus"] = 81590429348716,
|
|
733
|
+
["user-secret"] = 92463216639057,
|
|
734
|
+
["user-times"] = 98487888563839,
|
|
735
|
+
user = 117038030530466,
|
|
736
|
+
users = 89581578040857,
|
|
737
|
+
["vcard-o"] = 104627604867578,
|
|
738
|
+
vcard = 128393182288515,
|
|
739
|
+
["venus-double"] = 85786567919948,
|
|
740
|
+
["venus-mars"] = 126834708243563,
|
|
741
|
+
venus = 122991313665200,
|
|
742
|
+
viacoin = 127627632457822,
|
|
743
|
+
["viadeo-square"] = 130560293911165,
|
|
744
|
+
viadeo = 120875002654730,
|
|
745
|
+
["video-camera"] = 108197617604504,
|
|
746
|
+
["vimeo-square"] = 108787283659942,
|
|
747
|
+
vimeo = 74796362500012,
|
|
748
|
+
vine = 100041742903724,
|
|
749
|
+
vk = 77139642293808,
|
|
750
|
+
["volume-control-phone"] = 128518491262805,
|
|
751
|
+
["volume-down"] = 98559163885804,
|
|
752
|
+
["volume-off"] = 113005016922196,
|
|
753
|
+
["volume-up"] = 133747135247296,
|
|
754
|
+
warning = 80630684465900,
|
|
755
|
+
wechat = 110285404770593,
|
|
756
|
+
weibo = 85669023009488,
|
|
757
|
+
weixin = 115094840980323,
|
|
758
|
+
whatsapp = 72711848314470,
|
|
759
|
+
["wheelchair-alt"] = 92240765200979,
|
|
760
|
+
wheelchair = 84844044279921,
|
|
761
|
+
wifi = 128628049552934,
|
|
762
|
+
["wikipedia-w"] = 77928692026113,
|
|
763
|
+
["window-close-o"] = 76912248097249,
|
|
764
|
+
["window-close"] = 74561489124651,
|
|
765
|
+
["window-maximize"] = 81914678607468,
|
|
766
|
+
["window-minimize"] = 116479129021678,
|
|
767
|
+
["window-restore"] = 134625778993114,
|
|
768
|
+
windows = 137111917802639,
|
|
769
|
+
won = 73273392384946,
|
|
770
|
+
wordpress = 114821214834995,
|
|
771
|
+
wpbeginner = 74632061801864,
|
|
772
|
+
wpexplorer = 99132465173872,
|
|
773
|
+
wpforms = 103930463076487,
|
|
774
|
+
wrench = 88516053843731,
|
|
775
|
+
["xing-square"] = 94354622537551,
|
|
776
|
+
xing = 116690997474631,
|
|
777
|
+
["y-combinator-square"] = 130927655906093,
|
|
778
|
+
["y-combinator"] = 84854227226831,
|
|
779
|
+
yahoo = 137799327393142,
|
|
780
|
+
["yc-square"] = 116708863218464,
|
|
781
|
+
yc = 81822443042270,
|
|
782
|
+
yelp = 77232973935801,
|
|
783
|
+
yen = 79088914821514,
|
|
784
|
+
yoast = 133459957020711,
|
|
785
|
+
["youtube-play"] = 125992651093466,
|
|
786
|
+
["youtube-square"] = 72655126921765,
|
|
787
|
+
youtube = 134777410053692,
|
|
788
|
+
}
|
|
789
|
+
return {
|
|
790
|
+
DefaultIconSet = DefaultIconSet,
|
|
791
|
+
}
|